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>
40 #include <connman/device.h>
41 #include <connman/rtnl.h>
42 #include <connman/log.h>
46 static GSList *device_list = NULL;
48 static struct connman_device *find_device(int index)
52 for (list = device_list; list; list = list->next) {
53 struct connman_device *device = list->data;
55 if (connman_device_get_index(device) == index)
62 static char *index2name(int index)
70 sk = socket(PF_INET, SOCK_DGRAM, 0);
74 memset(&ifr, 0, sizeof(ifr));
75 ifr.ifr_ifindex = index;
77 err = ioctl(sk, SIOCGIFNAME, &ifr);
84 return strdup(ifr.ifr_name);
87 static char *index2ident(int index, const char *prefix)
90 struct ether_addr *eth;
97 sk = socket(PF_INET, SOCK_DGRAM, 0);
101 memset(&ifr, 0, sizeof(ifr));
102 ifr.ifr_ifindex = index;
104 err = ioctl(sk, SIOCGIFNAME, &ifr);
107 err = ioctl(sk, SIOCGIFHWADDR, &ifr);
114 len = prefix ? strlen(prefix) + 18 : 18;
120 eth = (void *) &ifr.ifr_hwaddr.sa_data;
121 snprintf(str, len, "%s%02X_%02X_%02X_%02X_%02X_%02X",
122 prefix ? prefix : "",
123 eth->ether_addr_octet[0],
124 eth->ether_addr_octet[1],
125 eth->ether_addr_octet[2],
126 eth->ether_addr_octet[3],
127 eth->ether_addr_octet[4],
128 eth->ether_addr_octet[5]);
133 static void detect_newlink(unsigned short type, int index,
134 unsigned flags, unsigned change)
136 enum connman_device_type devtype = CONNMAN_DEVICE_TYPE_UNKNOWN;
137 struct connman_device *device;
138 gchar *name, *devname;
140 DBG("type %d index %d", type, index);
142 device = find_device(index);
146 devname = index2name(index);
148 if (type == ARPHRD_ETHER) {
149 char bridge_path[PATH_MAX], wimax_path[PATH_MAX];
154 snprintf(bridge_path, PATH_MAX,
155 "/sys/class/net/%s/bridge", devname);
156 snprintf(wimax_path, PATH_MAX,
157 "/sys/class/net/%s/wimax", devname);
159 memset(&iwr, 0, sizeof(iwr));
160 strncpy(iwr.ifr_ifrn.ifrn_name, devname, IFNAMSIZ);
162 sk = socket(PF_INET, SOCK_DGRAM, 0);
164 if (g_str_has_prefix(devname, "bnep") == TRUE)
165 devtype = CONNMAN_DEVICE_TYPE_UNKNOWN;
166 else if (stat(bridge_path, &st) == 0 && (st.st_mode & S_IFDIR))
167 devtype = CONNMAN_DEVICE_TYPE_UNKNOWN;
168 else if (stat(wimax_path, &st) == 0 && (st.st_mode & S_IFDIR))
169 devtype = CONNMAN_DEVICE_TYPE_WIMAX;
170 else if (ioctl(sk, SIOCGIWNAME, &iwr) == 0)
171 devtype = CONNMAN_DEVICE_TYPE_UNKNOWN;
173 devtype = CONNMAN_DEVICE_TYPE_ETHERNET;
176 } else if (type == ARPHRD_NONE) {
177 if (g_str_has_prefix(devname, "hso") == TRUE)
178 devtype = CONNMAN_DEVICE_TYPE_HSO;
181 if (devtype == CONNMAN_DEVICE_TYPE_UNKNOWN) {
187 case CONNMAN_DEVICE_TYPE_HSO:
188 name = strdup(devname);
191 name = index2ident(index, "dev_");
195 device = connman_device_create(name, devtype);
196 if (device == NULL) {
203 case CONNMAN_DEVICE_TYPE_BLUETOOTH:
204 case CONNMAN_DEVICE_TYPE_HSO:
205 connman_device_set_policy(device, CONNMAN_DEVICE_POLICY_MANUAL);
211 connman_device_set_index(device, index);
212 connman_device_set_interface(device, devname);
217 if (connman_device_register(device) < 0) {
218 connman_device_unref(device);
222 device_list = g_slist_append(device_list, device);
225 static void detect_dellink(unsigned short type, int index,
226 unsigned flags, unsigned change)
228 struct connman_device *device;
230 DBG("type %d index %d", type, index);
232 device = find_device(index);
236 device_list = g_slist_remove(device_list, device);
238 connman_device_unregister(device);
239 connman_device_unref(device);
242 static struct connman_rtnl detect_rtnl = {
244 .priority = CONNMAN_RTNL_PRIORITY_LOW,
245 .newlink = detect_newlink,
246 .dellink = detect_dellink,
249 int __connman_detect_init(void)
253 err = connman_rtnl_register(&detect_rtnl);
257 connman_rtnl_send_getlink();
262 void __connman_detect_cleanup(void)
266 connman_rtnl_unregister(&detect_rtnl);
268 for (list = device_list; list; list = list->next) {
269 struct connman_device *device = list->data;
271 connman_device_unregister(device);
272 connman_device_unref(device);
275 g_slist_free(device_list);