5 * Copyright (C) 2007-2012 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
30 static GSList *device_list = NULL;
32 static struct connman_device *find_device(int index)
36 for (list = device_list; list; list = list->next) {
37 struct connman_device *device = list->data;
39 if (connman_device_get_index(device) == index)
46 static void detect_newlink(unsigned short type, int index,
47 unsigned flags, unsigned change)
49 struct connman_device *device;
50 enum connman_device_type devtype;
52 DBG("type %d index %d", type, index);
54 devtype = __connman_rtnl_get_device_type(index);
57 case CONNMAN_DEVICE_TYPE_UNKNOWN:
58 case CONNMAN_DEVICE_TYPE_VENDOR:
59 case CONNMAN_DEVICE_TYPE_WIMAX:
60 case CONNMAN_DEVICE_TYPE_BLUETOOTH:
61 case CONNMAN_DEVICE_TYPE_CELLULAR:
62 case CONNMAN_DEVICE_TYPE_GPS:
64 case CONNMAN_DEVICE_TYPE_ETHERNET:
65 case CONNMAN_DEVICE_TYPE_WIFI:
66 case CONNMAN_DEVICE_TYPE_GADGET:
70 device = find_device(index);
74 device = connman_device_create_from_index(index);
78 if (connman_device_register(device) < 0) {
79 connman_device_unref(device);
83 device_list = g_slist_prepend(device_list, device);
86 static void detect_dellink(unsigned short type, int index,
87 unsigned flags, unsigned change)
89 struct connman_device *device;
91 DBG("type %d index %d", type, index);
93 device = find_device(index);
97 device_list = g_slist_remove(device_list, device);
99 connman_device_unregister(device);
100 connman_device_unref(device);
103 static struct connman_rtnl detect_rtnl = {
105 .priority = CONNMAN_RTNL_PRIORITY_LOW,
106 .newlink = detect_newlink,
107 .dellink = detect_dellink,
110 int __connman_detect_init(void)
114 return connman_rtnl_register(&detect_rtnl);
117 void __connman_detect_cleanup(void)
123 connman_rtnl_unregister(&detect_rtnl);
125 for (list = device_list; list; list = list->next) {
126 struct connman_device *device = list->data;
128 connman_device_unregister(device);
129 connman_device_unref(device);
132 g_slist_free(device_list);