Print properties with ID_MODEM prefix
[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                                 g_str_equal(interface, "noz0") == FALSE)
105                 return;
106
107         if (g_str_equal(type, "nozomi") == TRUE)
108                 devtype = CONNMAN_DEVICE_TYPE_NOZOMI;
109         else if (g_str_equal(type, "huawei") == TRUE)
110                 devtype = CONNMAN_DEVICE_TYPE_HUAWEI;
111         else if (g_str_equal(type, "novatel") == TRUE)
112                 devtype = CONNMAN_DEVICE_TYPE_NOVATEL;
113         else
114                 return;
115
116         device = connman_device_create(interface, devtype);
117         if (device == NULL)
118                 return;
119
120         connman_device_set_mode(device, CONNMAN_DEVICE_MODE_NETWORK_SINGLE);
121         connman_device_set_policy(device, CONNMAN_DEVICE_POLICY_MANUAL);
122
123         connman_device_set_interface(device, interface);
124
125         if (connman_device_register(device) < 0) {
126                 connman_device_unref(device);
127                 return;
128         }
129
130         device_list = g_slist_append(device_list, device);
131 }
132
133 static void remove_device(struct udev_device *udev_device)
134 {
135         struct connman_device *device;
136         struct udev_list_entry *entry;
137         const char *interface = NULL;
138
139         DBG("");
140
141         entry = udev_device_get_properties_list_entry(udev_device);
142         while (entry) {
143                 const char *name = udev_list_entry_get_name(entry);
144
145                 if (g_str_has_prefix(name, "CONNMAN_INTERFACE") == TRUE)
146                         interface = udev_list_entry_get_value(entry);
147
148                 entry = udev_list_entry_get_next(entry);
149         }
150
151         device = find_device(interface);
152         if (device == NULL)
153                 return;
154
155         device_list = g_slist_remove(device_list, device);
156
157         connman_device_unregister(device);
158         connman_device_unref(device);
159 }
160
161 static void print_properties(struct udev_device *device, const char *prefix)
162 {
163         struct udev_list_entry *entry;
164
165         entry = udev_device_get_properties_list_entry(device);
166         while (entry) {
167                 const char *name = udev_list_entry_get_name(entry);
168                 const char *value = udev_list_entry_get_value(entry);
169
170                 if (g_str_has_prefix(name, "CONNMAN") == TRUE ||
171                                 g_str_has_prefix(name, "ID_MODEM") == TRUE ||
172                                         g_str_equal(name, "DEVNAME") == TRUE ||
173                                         g_str_equal(name, "DEVPATH") == TRUE)
174                         connman_debug("%s%s = %s", prefix, name, value);
175
176                 entry = udev_list_entry_get_next(entry);
177         }
178 }
179
180 static void print_device(struct udev_device *device, const char *action)
181 {
182         struct udev_device *parent;
183
184         connman_debug("=== %s ===", action);
185         print_properties(device, "");
186
187         parent = udev_device_get_parent_with_devtype(device, "usb_device");
188         print_properties(parent, "    ");
189 }
190
191 static void enumerate_devices(struct udev *context)
192 {
193         struct udev_enumerate *enumerate;
194         struct udev_list_entry *entry;
195
196         enumerate = udev_enumerate_new(context);
197         if (enumerate == NULL)
198                 return;
199
200         udev_enumerate_add_match_property(enumerate, "CONNMAN_TYPE", "?*");
201
202         udev_enumerate_scan_devices(enumerate);
203
204         entry = udev_enumerate_get_list_entry(enumerate);
205         while (entry) {
206                 const char *syspath = udev_list_entry_get_name(entry);
207                 struct udev_device *device;
208
209                 device = udev_device_new_from_syspath(context, syspath);
210
211                 print_device(device, "coldplug");
212
213                 add_device(device);
214
215                 udev_device_unref(device);
216
217                 entry = udev_list_entry_get_next(entry);
218         }
219
220         udev_enumerate_unref(enumerate);
221 }
222
223 static gboolean udev_event(GIOChannel *channel,
224                                 GIOCondition condition, gpointer user_data)
225 {
226         struct udev_monitor *monitor = user_data;
227         struct udev_device *device;
228         const char *action;
229
230         device = udev_monitor_receive_device(monitor);
231         if (device == NULL)
232                 return TRUE;
233
234         action = udev_device_get_action(device);
235         if (action == NULL)
236                 goto done;
237
238         print_device(device, action);
239
240         if (g_str_equal(action, "add") == TRUE)
241                 add_device(device);
242         else if (g_str_equal(action, "remove") == TRUE)
243                 remove_device(device);
244
245 done:
246         udev_device_unref(device);
247
248         return TRUE;
249 }
250
251 static struct udev *udev_ctx;
252 static struct udev_monitor *udev_mon;
253 static guint udev_watch = 0;
254
255 int __connman_udev_init(void)
256 {
257         GIOChannel *channel;
258         int fd;
259
260         DBG("");
261
262         udev_ctx = udev_new();
263         if (udev_ctx == NULL) {
264                 connman_error("Failed to create udev context");
265                 return -1;
266         }
267
268         udev_mon = udev_monitor_new_from_socket(udev_ctx,
269                                                 "@/org/moblin/connman/udev");
270         if (udev_mon == NULL) {
271                 connman_error("Failed to create udev monitor");
272                 udev_unref(udev_ctx);
273                 udev_ctx = NULL;
274                 return -1;
275         }
276
277         if (udev_monitor_enable_receiving(udev_mon) < 0) {
278                 connman_error("Failed to enable udev monitor");
279                 udev_unref(udev_ctx);
280                 udev_ctx = NULL;
281                 udev_monitor_unref(udev_mon);
282                 return -1;
283         }
284
285         enumerate_devices(udev_ctx);
286
287         fd = udev_monitor_get_fd(udev_mon);
288
289         channel = g_io_channel_unix_new(fd);
290         if (channel == NULL)
291                 return 0;
292
293         udev_watch = g_io_add_watch(channel, G_IO_IN, udev_event, udev_mon);
294
295         g_io_channel_unref(channel);
296
297         return 0;
298 }
299
300 void __connman_udev_cleanup(void)
301 {
302         GSList *list;
303
304         DBG("");
305
306         if (udev_watch > 0)
307                 g_source_remove(udev_watch);
308
309         for (list = device_list; list; list = list->next) {
310                 struct connman_device *device = list->data;
311
312                 connman_device_unregister(device);
313                 connman_device_unref(device);
314         }
315
316         g_slist_free(device_list);
317         device_list = NULL;
318
319         if (udev_ctx == NULL)
320                 return;
321
322         udev_monitor_unref(udev_mon);
323         udev_unref(udev_ctx);
324 }