Add detection support for Novatel devices
[connman] / src / udev.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2009  Intel Corporation. All rights reserved.
6  *
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.
10  *
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.
15  *
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
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <sys/types.h>
27
28 #define LIBUDEV_I_KNOW_THE_API_IS_SUBJECT_TO_CHANGE
29 #include <libudev.h>
30
31 #include <glib.h>
32
33 #include "connman.h"
34
35 #ifdef NEED_UDEV_DEVICE_GET_PARENT_WITH_DEVTYPE
36 static struct udev_device *udev_device_get_parent_with_devtype(struct udev_device *device,
37                                                                 const char *devtype)
38 {
39         return NULL;
40 }
41 #endif
42
43 #ifdef NEED_UDEV_ENUMERATE_ADD_MATCH_PROPERTY
44 static int udev_enumerate_add_match_property(struct udev_enumerate *enumerate,
45                                         const char *property, const char *value)
46 {
47         return 0;
48 }
49 #endif
50
51 static GSList *device_list = NULL;
52
53 static struct connman_device *find_device(const char *interface)
54 {
55         GSList *list;
56
57         if (interface == NULL)
58                 return NULL;
59
60         for (list = device_list; list; list = list->next) {
61                 struct connman_device *device = list->data;
62                 const char *device_interface;
63
64                 device_interface = connman_device_get_interface(device);
65                 if (device_interface == NULL)
66                         continue;
67
68                 if (g_str_equal(device_interface, interface) == TRUE)
69                         return device;
70         }
71
72         return NULL;
73 }
74
75 static void add_device(struct udev_device *udev_device)
76 {
77         enum connman_device_type devtype = CONNMAN_DEVICE_TYPE_UNKNOWN;
78         struct connman_device *device;
79         struct udev_list_entry *entry;
80         const char *type = NULL, *interface = NULL;
81
82         DBG("");
83
84         entry = udev_device_get_properties_list_entry(udev_device);
85         while (entry) {
86                 const char *name = udev_list_entry_get_name(entry);
87
88                 if (g_str_has_prefix(name, "CONNMAN_TYPE") == TRUE)
89                         type = udev_list_entry_get_value(entry);
90                 else if (g_str_has_prefix(name, "CONNMAN_INTERFACE") == TRUE)
91                         interface = udev_list_entry_get_value(entry);
92
93                 entry = udev_list_entry_get_next(entry);
94         }
95
96         device = find_device(interface);
97         if (device != NULL)
98                 return;
99
100         if (type == NULL || interface == NULL)
101                 return;
102
103         if (g_str_equal(interface, "ttyUSB0") == FALSE)
104                 return;
105
106         if (g_str_equal(type, "huawei") == TRUE)
107                 devtype = CONNMAN_DEVICE_TYPE_HUAWEI;
108         else if (g_str_equal(type, "novatel") == TRUE)
109                 devtype = CONNMAN_DEVICE_TYPE_NOVATEL;
110         else
111                 return;
112
113         device = connman_device_create(interface, devtype);
114         if (device == NULL)
115                 return;
116
117         connman_device_set_mode(device, CONNMAN_DEVICE_MODE_NETWORK_SINGLE);
118         connman_device_set_policy(device, CONNMAN_DEVICE_POLICY_MANUAL);
119
120         connman_device_set_interface(device, interface);
121
122         if (connman_device_register(device) < 0) {
123                 connman_device_unref(device);
124                 return;
125         }
126
127         device_list = g_slist_append(device_list, device);
128 }
129
130 static void remove_device(struct udev_device *udev_device)
131 {
132         struct connman_device *device;
133         struct udev_list_entry *entry;
134         const char *interface = NULL;
135
136         DBG("");
137
138         entry = udev_device_get_properties_list_entry(udev_device);
139         while (entry) {
140                 const char *name = udev_list_entry_get_name(entry);
141
142                 if (g_str_has_prefix(name, "CONNMAN_INTERFACE") == TRUE)
143                         interface = udev_list_entry_get_value(entry);
144
145                 entry = udev_list_entry_get_next(entry);
146         }
147
148         device = find_device(interface);
149         if (device == NULL)
150                 return;
151
152         device_list = g_slist_remove(device_list, device);
153
154         connman_device_unregister(device);
155         connman_device_unref(device);
156 }
157
158 static void print_properties(struct udev_device *device, const char *prefix)
159 {
160         struct udev_list_entry *entry;
161
162         entry = udev_device_get_properties_list_entry(device);
163         while (entry) {
164                 const char *name = udev_list_entry_get_name(entry);
165                 const char *value = udev_list_entry_get_value(entry);
166
167                 if (g_str_has_prefix(name, "CONNMAN") == TRUE ||
168                                 g_str_equal(name, "DEVNAME") == TRUE ||
169                                         g_str_equal(name, "DEVPATH") == TRUE)
170                         connman_debug("%s%s = %s", prefix, name, value);
171
172                 entry = udev_list_entry_get_next(entry);
173         }
174 }
175
176 static void print_device(struct udev_device *device, const char *action)
177 {
178         struct udev_device *parent;
179
180         connman_debug("=== %s ===", action);
181         print_properties(device, "");
182
183         parent = udev_device_get_parent_with_devtype(device, "usb_device");
184         print_properties(parent, "    ");
185 }
186
187 static void enumerate_devices(struct udev *context)
188 {
189         struct udev_enumerate *enumerate;
190         struct udev_list_entry *entry;
191
192         enumerate = udev_enumerate_new(context);
193         if (enumerate == NULL)
194                 return;
195
196         udev_enumerate_add_match_property(enumerate, "CONNMAN_TYPE", "?*");
197
198         udev_enumerate_scan_devices(enumerate);
199
200         entry = udev_enumerate_get_list_entry(enumerate);
201         while (entry) {
202                 const char *syspath = udev_list_entry_get_name(entry);
203                 struct udev_device *device;
204
205                 device = udev_device_new_from_syspath(context, syspath);
206
207                 print_device(device, "coldplug");
208
209                 add_device(device);
210
211                 udev_device_unref(device);
212
213                 entry = udev_list_entry_get_next(entry);
214         }
215
216         udev_enumerate_unref(enumerate);
217 }
218
219 static gboolean udev_event(GIOChannel *channel,
220                                 GIOCondition condition, gpointer user_data)
221 {
222         struct udev_monitor *monitor = user_data;
223         struct udev_device *device;
224         const char *action;
225
226         device = udev_monitor_receive_device(monitor);
227         if (device == NULL)
228                 return TRUE;
229
230         action = udev_device_get_action(device);
231         if (action == NULL)
232                 goto done;
233
234         print_device(device, action);
235
236         if (g_str_equal(action, "add") == TRUE)
237                 add_device(device);
238         else if (g_str_equal(action, "remove") == TRUE)
239                 remove_device(device);
240
241 done:
242         udev_device_unref(device);
243
244         return TRUE;
245 }
246
247 static struct udev *udev_ctx;
248 static struct udev_monitor *udev_mon;
249 static guint udev_watch = 0;
250
251 int __connman_udev_init(void)
252 {
253         GIOChannel *channel;
254         int fd;
255
256         DBG("");
257
258         udev_ctx = udev_new();
259         if (udev_ctx == NULL) {
260                 connman_error("Failed to create udev context");
261                 return -1;
262         }
263
264         udev_mon = udev_monitor_new_from_socket(udev_ctx,
265                                                 "@/org/moblin/connman/udev");
266         if (udev_mon == NULL) {
267                 connman_error("Failed to create udev monitor");
268                 udev_unref(udev_ctx);
269                 udev_ctx = NULL;
270                 return -1;
271         }
272
273         if (udev_monitor_enable_receiving(udev_mon) < 0) {
274                 connman_error("Failed to enable udev monitor");
275                 udev_unref(udev_ctx);
276                 udev_ctx = NULL;
277                 udev_monitor_unref(udev_mon);
278                 return -1;
279         }
280
281         enumerate_devices(udev_ctx);
282
283         fd = udev_monitor_get_fd(udev_mon);
284
285         channel = g_io_channel_unix_new(fd);
286         if (channel == NULL)
287                 return 0;
288
289         udev_watch = g_io_add_watch(channel, G_IO_IN, udev_event, udev_mon);
290
291         g_io_channel_unref(channel);
292
293         return 0;
294 }
295
296 void __connman_udev_cleanup(void)
297 {
298         GSList *list;
299
300         DBG("");
301
302         if (udev_watch > 0)
303                 g_source_remove(udev_watch);
304
305         for (list = device_list; list; list = list->next) {
306                 struct connman_device *device = list->data;
307
308                 connman_device_unregister(device);
309                 connman_device_unref(device);
310         }
311
312         g_slist_free(device_list);
313         device_list = NULL;
314
315         if (udev_ctx == NULL)
316                 return;
317
318         udev_monitor_unref(udev_mon);
319         udev_unref(udev_ctx);
320 }