5 * Copyright (C) 2007-2008 Intel Corporation. All rights reserved.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
32 #include <sys/ioctl.h>
33 #include <sys/socket.h>
34 #include <net/ethernet.h>
35 #include <linux/if_arp.h>
36 #include <linux/wireless.h>
42 static GSList *device_list = NULL;
44 static struct connman_device *find_device(int index)
48 for (list = device_list; list; list = list->next) {
49 struct connman_device *device = list->data;
51 if (connman_device_get_index(device) == index)
58 static char *index2name(int index)
66 sk = socket(PF_INET, SOCK_DGRAM, 0);
70 memset(&ifr, 0, sizeof(ifr));
71 ifr.ifr_ifindex = index;
73 err = ioctl(sk, SIOCGIFNAME, &ifr);
80 return strdup(ifr.ifr_name);
83 static char *index2ident(int index, const char *prefix)
86 struct ether_addr *eth;
93 sk = socket(PF_INET, SOCK_DGRAM, 0);
97 memset(&ifr, 0, sizeof(ifr));
98 ifr.ifr_ifindex = index;
100 err = ioctl(sk, SIOCGIFNAME, &ifr);
103 err = ioctl(sk, SIOCGIFHWADDR, &ifr);
110 len = prefix ? strlen(prefix) + 18 : 18;
116 eth = (void *) &ifr.ifr_hwaddr.sa_data;
117 snprintf(str, len, "%s%02X_%02X_%02X_%02X_%02X_%02X",
118 prefix ? prefix : "",
119 eth->ether_addr_octet[0],
120 eth->ether_addr_octet[1],
121 eth->ether_addr_octet[2],
122 eth->ether_addr_octet[3],
123 eth->ether_addr_octet[4],
124 eth->ether_addr_octet[5]);
129 static void detect_newlink(unsigned short type, int index,
130 unsigned flags, unsigned change)
132 enum connman_device_type devtype = CONNMAN_DEVICE_TYPE_UNKNOWN;
133 struct connman_device *device;
134 gchar *name, *devname;
136 DBG("type %d index %d", type, index);
138 device = find_device(index);
142 devname = index2name(index);
146 if (type == ARPHRD_ETHER) {
147 char bridge_path[PATH_MAX], wimax_path[PATH_MAX];
152 snprintf(bridge_path, PATH_MAX,
153 "/sys/class/net/%s/bridge", devname);
154 snprintf(wimax_path, PATH_MAX,
155 "/sys/class/net/%s/wimax", devname);
157 memset(&iwr, 0, sizeof(iwr));
158 strncpy(iwr.ifr_ifrn.ifrn_name, devname, IFNAMSIZ);
160 sk = socket(PF_INET, SOCK_DGRAM, 0);
162 if (g_str_has_prefix(devname, "bnep") == TRUE)
163 devtype = CONNMAN_DEVICE_TYPE_UNKNOWN;
164 else if (stat(bridge_path, &st) == 0 && (st.st_mode & S_IFDIR))
165 devtype = CONNMAN_DEVICE_TYPE_UNKNOWN;
166 else if (stat(wimax_path, &st) == 0 && (st.st_mode & S_IFDIR))
167 devtype = CONNMAN_DEVICE_TYPE_WIMAX;
168 else if (ioctl(sk, SIOCGIWNAME, &iwr) == 0)
169 devtype = CONNMAN_DEVICE_TYPE_UNKNOWN;
171 devtype = CONNMAN_DEVICE_TYPE_ETHERNET;
174 } else if (type == ARPHRD_NONE) {
175 if (g_str_has_prefix(devname, "hso") == TRUE)
176 devtype = CONNMAN_DEVICE_TYPE_HSO;
179 if (devtype == CONNMAN_DEVICE_TYPE_UNKNOWN) {
185 case CONNMAN_DEVICE_TYPE_HSO:
186 name = strdup(devname);
189 name = index2ident(index, "dev_");
193 device = connman_device_create(name, devtype);
194 if (device == NULL) {
201 case CONNMAN_DEVICE_TYPE_HSO:
202 connman_device_set_policy(device, CONNMAN_DEVICE_POLICY_MANUAL);
203 connman_device_set_mode(device,
204 CONNMAN_DEVICE_MODE_SINGLE_NETWORK);
210 connman_device_set_index(device, index);
211 connman_device_set_interface(device, devname);
216 if (connman_device_register(device) < 0) {
217 connman_device_unref(device);
221 device_list = g_slist_append(device_list, device);
224 static void detect_dellink(unsigned short type, int index,
225 unsigned flags, unsigned change)
227 struct connman_device *device;
229 DBG("type %d index %d", type, index);
231 device = find_device(index);
235 device_list = g_slist_remove(device_list, device);
237 connman_device_unregister(device);
238 connman_device_unref(device);
241 static struct connman_rtnl detect_rtnl = {
243 .priority = CONNMAN_RTNL_PRIORITY_LOW,
244 .newlink = detect_newlink,
245 .dellink = detect_dellink,
248 int __connman_detect_init(void)
252 err = connman_rtnl_register(&detect_rtnl);
256 connman_rtnl_send_getlink();
261 void __connman_detect_cleanup(void)
265 connman_rtnl_unregister(&detect_rtnl);
267 for (list = device_list; list; list = list->next) {
268 struct connman_device *device = list->data;
270 connman_device_unregister(device);
271 connman_device_unref(device);
274 g_slist_free(device_list);