5 * Copyright (C) 2007-2010 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
31 static GSList *device_list = NULL;
32 static gchar **device_filter = NULL;
33 static gchar **nodevice_filter = NULL;
35 enum connman_pending_type {
41 struct connman_device {
43 enum connman_device_type type;
44 enum connman_pending_type powered_pending; /* Indicates a pending
45 enable/disable request */
46 connman_bool_t powered;
47 connman_bool_t scanning;
48 connman_bool_t disconnected;
49 connman_bool_t reconnect;
50 connman_uint16_t scan_interval;
51 connman_uint16_t backoff_interval;
61 unsigned int connections;
63 guint pending_timeout;
65 struct connman_device_driver *driver;
69 struct connman_network *network;
73 #define SCAN_INITIAL_DELAY 10
75 static gboolean device_scan_trigger(gpointer user_data)
77 struct connman_device *device = user_data;
79 DBG("device %p", device);
81 if (device->driver == NULL) {
82 device->scan_timeout = 0;
86 if (device->driver->scan)
87 device->driver->scan(device);
92 static void clear_scan_trigger(struct connman_device *device)
94 if (device->scan_timeout > 0) {
95 g_source_remove(device->scan_timeout);
96 device->scan_timeout = 0;
100 static void reset_scan_trigger(struct connman_device *device)
102 clear_scan_trigger(device);
104 if (device->scan_interval > 0) {
107 if (g_hash_table_size(device->networks) == 0) {
108 if (device->backoff_interval >= device->scan_interval)
109 device->backoff_interval = SCAN_INITIAL_DELAY;
110 interval = device->backoff_interval;
112 interval = device->scan_interval;
114 DBG("interval %d", interval);
116 device->scan_timeout = g_timeout_add_seconds(interval,
117 device_scan_trigger, device);
119 device->backoff_interval *= 2;
120 if (device->backoff_interval > device->scan_interval)
121 device->backoff_interval = device->scan_interval;
125 static void force_scan_trigger(struct connman_device *device)
127 clear_scan_trigger(device);
129 device->scan_timeout = g_timeout_add_seconds(5,
130 device_scan_trigger, device);
133 void connman_device_schedule_scan(struct connman_device *device)
135 reset_scan_trigger(device);
138 static const char *type2description(enum connman_device_type type)
141 case CONNMAN_DEVICE_TYPE_UNKNOWN:
142 case CONNMAN_DEVICE_TYPE_VENDOR:
144 case CONNMAN_DEVICE_TYPE_ETHERNET:
146 case CONNMAN_DEVICE_TYPE_WIFI:
148 case CONNMAN_DEVICE_TYPE_WIMAX:
150 case CONNMAN_DEVICE_TYPE_BLUETOOTH:
152 case CONNMAN_DEVICE_TYPE_GPS:
154 case CONNMAN_DEVICE_TYPE_CELLULAR:
156 case CONNMAN_DEVICE_TYPE_GADGET:
164 static const char *type2string(enum connman_device_type type)
167 case CONNMAN_DEVICE_TYPE_UNKNOWN:
168 case CONNMAN_DEVICE_TYPE_VENDOR:
170 case CONNMAN_DEVICE_TYPE_ETHERNET:
172 case CONNMAN_DEVICE_TYPE_WIFI:
174 case CONNMAN_DEVICE_TYPE_WIMAX:
176 case CONNMAN_DEVICE_TYPE_BLUETOOTH:
178 case CONNMAN_DEVICE_TYPE_GPS:
180 case CONNMAN_DEVICE_TYPE_CELLULAR:
182 case CONNMAN_DEVICE_TYPE_GADGET:
190 enum connman_service_type __connman_device_get_service_type(struct connman_device *device)
192 enum connman_device_type type = connman_device_get_type(device);
195 case CONNMAN_DEVICE_TYPE_UNKNOWN:
196 case CONNMAN_DEVICE_TYPE_VENDOR:
197 case CONNMAN_DEVICE_TYPE_GPS:
199 case CONNMAN_DEVICE_TYPE_ETHERNET:
200 return CONNMAN_SERVICE_TYPE_ETHERNET;
201 case CONNMAN_DEVICE_TYPE_WIFI:
202 return CONNMAN_SERVICE_TYPE_WIFI;
203 case CONNMAN_DEVICE_TYPE_WIMAX:
204 return CONNMAN_SERVICE_TYPE_WIMAX;
205 case CONNMAN_DEVICE_TYPE_BLUETOOTH:
206 return CONNMAN_SERVICE_TYPE_BLUETOOTH;
207 case CONNMAN_DEVICE_TYPE_CELLULAR:
208 return CONNMAN_SERVICE_TYPE_CELLULAR;
209 case CONNMAN_DEVICE_TYPE_GADGET:
210 return CONNMAN_SERVICE_TYPE_GADGET;
214 return CONNMAN_SERVICE_TYPE_UNKNOWN;
217 static gboolean device_pending_reset(gpointer user_data)
219 struct connman_device *device = user_data;
221 DBG("device %p", device);
223 /* Power request timedout, reset power pending state. */
224 device->pending_timeout = 0;
225 device->powered_pending = PENDING_NONE;
230 int __connman_device_enable(struct connman_device *device)
234 DBG("device %p", device);
236 if (!device->driver || !device->driver->enable)
239 /* There is an ongoing power disable request. */
240 if (device->powered_pending == PENDING_DISABLE)
243 if (device->powered_pending == PENDING_ENABLE)
246 if (device->powered_pending == PENDING_NONE && device->powered == TRUE)
249 device->powered_pending = PENDING_ENABLE;
251 err = device->driver->enable(device);
253 * device gets enabled right away.
254 * Invoke the callback
257 connman_device_set_powered(device, TRUE);
261 if (err == -EALREADY) {
262 /* If device is already powered, but connman is not updated */
263 connman_device_set_powered(device, TRUE);
267 * if err == -EINPROGRESS, then the DBus call to the respective daemon
268 * was successful. We set a 4 sec timeout so if the daemon never
269 * returns a reply, we would reset the pending request.
271 if (err == -EINPROGRESS)
272 device->pending_timeout = g_timeout_add_seconds(4,
273 device_pending_reset, device);
278 int __connman_device_disable(struct connman_device *device)
282 DBG("device %p", device);
284 if (!device->driver || !device->driver->disable)
287 /* Ongoing power enable request */
288 if (device->powered_pending == PENDING_ENABLE)
291 if (device->powered_pending == PENDING_DISABLE)
294 if (device->powered_pending == PENDING_NONE && device->powered == FALSE)
297 device->powered_pending = PENDING_DISABLE;
298 device->reconnect = FALSE;
300 clear_scan_trigger(device);
302 err = device->driver->disable(device);
304 connman_device_set_powered(device, FALSE);
308 if (err == -EALREADY) {
309 connman_device_set_powered(device, FALSE);
313 if (err == -EINPROGRESS)
314 device->pending_timeout = g_timeout_add_seconds(4,
315 device_pending_reset, device);
320 static void probe_driver(struct connman_device_driver *driver)
324 DBG("driver %p name %s", driver, driver->name);
326 for (list = device_list; list != NULL; list = list->next) {
327 struct connman_device *device = list->data;
329 if (device->driver != NULL)
332 if (driver->type != device->type)
335 if (driver->probe(device) < 0)
338 device->driver = driver;
340 __connman_technology_add_device(device);
344 static void remove_device(struct connman_device *device)
346 DBG("device %p", device);
348 __connman_device_disable(device);
350 __connman_technology_remove_device(device);
352 if (device->driver->remove)
353 device->driver->remove(device);
355 device->driver = NULL;
358 static void remove_driver(struct connman_device_driver *driver)
362 DBG("driver %p name %s", driver, driver->name);
364 for (list = device_list; list != NULL; list = list->next) {
365 struct connman_device *device = list->data;
367 if (device->driver == driver)
368 remove_device(device);
372 connman_bool_t __connman_device_has_driver(struct connman_device *device)
374 if (device == NULL || device->driver == NULL)
380 static GSList *driver_list = NULL;
382 static gint compare_priority(gconstpointer a, gconstpointer b)
384 const struct connman_device_driver *driver1 = a;
385 const struct connman_device_driver *driver2 = b;
387 return driver2->priority - driver1->priority;
391 * connman_device_driver_register:
392 * @driver: device driver definition
394 * Register a new device driver
396 * Returns: %0 on success
398 int connman_device_driver_register(struct connman_device_driver *driver)
400 DBG("driver %p name %s", driver, driver->name);
402 driver_list = g_slist_insert_sorted(driver_list, driver,
404 probe_driver(driver);
410 * connman_device_driver_unregister:
411 * @driver: device driver definition
413 * Remove a previously registered device driver
415 void connman_device_driver_unregister(struct connman_device_driver *driver)
417 DBG("driver %p name %s", driver, driver->name);
419 driver_list = g_slist_remove(driver_list, driver);
421 remove_driver(driver);
424 static void free_network(gpointer data)
426 struct connman_network *network = data;
428 DBG("network %p", network);
430 __connman_network_set_device(network, NULL);
432 connman_network_unref(network);
435 static void device_destruct(struct connman_device *device)
437 DBG("device %p name %s", device, device->name);
439 clear_scan_trigger(device);
441 g_free(device->ident);
442 g_free(device->node);
443 g_free(device->name);
444 g_free(device->address);
445 g_free(device->interface);
446 g_free(device->path);
447 g_free(device->devname);
449 g_free(device->last_network);
451 g_hash_table_destroy(device->networks);
452 device->networks = NULL;
458 * connman_device_create:
459 * @node: device node name (for example an address)
462 * Allocate a new device of given #type and assign the #node name to it.
464 * Returns: a newly-allocated #connman_device structure
466 struct connman_device *connman_device_create(const char *node,
467 enum connman_device_type type)
469 struct connman_device *device;
470 connman_bool_t bg_scan;
472 DBG("node %s type %d", node, type);
474 device = g_try_new0(struct connman_device, 1);
478 DBG("device %p", device);
480 device->refcount = 1;
482 bg_scan = connman_setting_get_bool("BackgroundScanning");
485 device->name = g_strdup(type2description(device->type));
487 device->phyindex = -1;
489 device->backoff_interval = SCAN_INITIAL_DELAY;
492 case CONNMAN_DEVICE_TYPE_UNKNOWN:
493 case CONNMAN_DEVICE_TYPE_ETHERNET:
494 case CONNMAN_DEVICE_TYPE_WIMAX:
495 case CONNMAN_DEVICE_TYPE_BLUETOOTH:
496 case CONNMAN_DEVICE_TYPE_CELLULAR:
497 case CONNMAN_DEVICE_TYPE_GPS:
498 case CONNMAN_DEVICE_TYPE_GADGET:
499 case CONNMAN_DEVICE_TYPE_VENDOR:
500 device->scan_interval = 0;
502 case CONNMAN_DEVICE_TYPE_WIFI:
504 device->scan_interval = 300;
506 device->scan_interval = 0;
510 device->networks = g_hash_table_new_full(g_str_hash, g_str_equal,
511 g_free, free_network);
513 device_list = g_slist_append(device_list, device);
519 * connman_device_ref:
520 * @device: device structure
522 * Increase reference counter of device
524 struct connman_device *connman_device_ref(struct connman_device *device)
528 g_atomic_int_inc(&device->refcount);
534 * connman_device_unref:
535 * @device: device structure
537 * Decrease reference counter of device
539 void connman_device_unref(struct connman_device *device)
541 if (g_atomic_int_dec_and_test(&device->refcount) == FALSE)
544 if (device->driver) {
545 device->driver->remove(device);
546 device->driver = NULL;
549 device_list = g_slist_remove(device_list, device);
551 device_destruct(device);
554 const char *__connman_device_get_type(struct connman_device *device)
556 return type2string(device->type);
560 * connman_device_get_type:
561 * @device: device structure
565 enum connman_device_type connman_device_get_type(struct connman_device *device)
571 * connman_device_set_index:
572 * @device: device structure
573 * @index: index number
575 * Set index number of device
577 void connman_device_set_index(struct connman_device *device, int index)
579 device->index = index;
583 * connman_device_get_index:
584 * @device: device structure
586 * Get index number of device
588 int connman_device_get_index(struct connman_device *device)
590 return device->index;
593 int __connman_device_get_phyindex(struct connman_device *device)
595 return device->phyindex;
598 void __connman_device_set_phyindex(struct connman_device *device,
601 device->phyindex = phyindex;
605 * connman_device_set_interface:
606 * @device: device structure
607 * @interface: interface name
609 * Set interface name of device
611 void connman_device_set_interface(struct connman_device *device,
612 const char *interface)
614 g_free(device->devname);
615 device->devname = g_strdup(interface);
617 g_free(device->interface);
618 device->interface = g_strdup(interface);
620 if (device->name == NULL) {
621 const char *str = type2description(device->type);
622 if (str != NULL && device->interface != NULL)
623 device->name = g_strdup_printf("%s (%s)", str,
629 * connman_device_set_ident:
630 * @device: device structure
631 * @ident: unique identifier
633 * Set unique identifier of device
635 void connman_device_set_ident(struct connman_device *device,
638 g_free(device->ident);
639 device->ident = g_strdup(ident);
642 const char *connman_device_get_ident(struct connman_device *device)
644 return device->ident;
648 * connman_device_set_powered:
649 * @device: device structure
650 * @powered: powered state
652 * Change power state of device
654 int connman_device_set_powered(struct connman_device *device,
655 connman_bool_t powered)
657 enum connman_service_type type;
659 DBG("driver %p powered %d", device, powered);
661 if (device->powered == powered)
664 if (device->pending_timeout) {
665 /* Reset pending request */
666 g_source_remove(device->pending_timeout);
667 device->pending_timeout = 0;
670 device->powered_pending = PENDING_NONE;
672 device->powered = powered;
674 type = __connman_device_get_service_type(device);
676 if (device->powered == TRUE)
677 __connman_technology_enabled(type);
679 __connman_technology_disabled(type);
681 if (powered == FALSE) {
682 device->connections = 0;
686 connman_device_set_disconnected(device, FALSE);
687 device->scanning = FALSE;
689 reset_scan_trigger(device);
691 if (device->driver && device->driver->scan_fast)
692 device->driver->scan_fast(device);
693 else if (device->driver && device->driver->scan)
694 device->driver->scan(device);
699 static int device_scan(struct connman_device *device)
701 if (!device->driver || !device->driver->scan)
704 if (device->powered == FALSE)
707 reset_scan_trigger(device);
709 return device->driver->scan(device);
712 int __connman_device_disconnect(struct connman_device *device)
717 DBG("device %p", device);
719 connman_device_set_disconnected(device, TRUE);
721 g_hash_table_iter_init(&iter, device->networks);
723 while (g_hash_table_iter_next(&iter, &key, &value) == TRUE) {
724 struct connman_network *network = value;
726 if (connman_network_get_connecting(network) == TRUE) {
728 * Skip network in the process of connecting.
729 * This is a workaround for WiFi networks serviced
730 * by the supplicant plugin that hold a reference
731 * to the network. If we disconnect the network
732 * here then the referenced object will not be
733 * registered and usage (like launching DHCP client)
734 * will fail. There is nothing to be gained by
735 * removing the network here anyway.
737 connman_warn("Skipping disconnect of %s, network is connecting.",
738 connman_network_get_identifier(network));
742 __connman_network_disconnect(network);
748 static void mark_network_available(gpointer key, gpointer value,
751 struct connman_network *network = value;
753 connman_network_set_available(network, TRUE);
756 static void mark_network_unavailable(gpointer key, gpointer value,
759 struct connman_network *network = value;
761 if (connman_network_get_connected(network) == TRUE)
764 connman_network_set_available(network, FALSE);
767 static gboolean remove_unavailable_network(gpointer key, gpointer value,
770 struct connman_network *network = value;
772 if (connman_network_get_connected(network) == TRUE)
775 if (connman_network_get_available(network) == TRUE)
781 void __connman_device_cleanup_networks(struct connman_device *device)
783 g_hash_table_foreach_remove(device->networks,
784 remove_unavailable_network, NULL);
787 connman_bool_t __connman_device_scanning(struct connman_device *device)
789 return device->scanning;
792 void connman_device_reset_scanning(struct connman_device *device)
794 device->scanning = FALSE;
796 g_hash_table_foreach(device->networks,
797 mark_network_available, NULL);
802 * connman_device_set_scanning:
803 * @device: device structure
804 * @scanning: scanning state
806 * Change scanning state of device
808 int connman_device_set_scanning(struct connman_device *device,
809 connman_bool_t scanning)
811 DBG("device %p scanning %d", device, scanning);
813 if (!device->driver || !device->driver->scan)
816 if (device->scanning == scanning)
819 device->scanning = scanning;
821 if (scanning == TRUE) {
822 reset_scan_trigger(device);
824 g_hash_table_foreach(device->networks,
825 mark_network_unavailable, NULL);
830 __connman_device_cleanup_networks(device);
832 if (device->connections > 0)
835 __connman_service_auto_connect();
841 * connman_device_set_disconnected:
842 * @device: device structure
843 * @disconnected: disconnected state
845 * Change disconnected state of device (only for device with networks)
847 int connman_device_set_disconnected(struct connman_device *device,
848 connman_bool_t disconnected)
850 DBG("device %p disconnected %d", device, disconnected);
852 if (device->disconnected == disconnected)
855 device->disconnected = disconnected;
857 if (disconnected == TRUE)
858 force_scan_trigger(device);
864 * connman_device_get_disconnected:
865 * @device: device structure
867 * Get device disconnected state
869 connman_bool_t connman_device_get_disconnected(struct connman_device *device)
871 return device->disconnected;
875 * connman_device_set_string:
876 * @device: device structure
877 * @key: unique identifier
878 * @value: string value
880 * Set string value for specific key
882 int connman_device_set_string(struct connman_device *device,
883 const char *key, const char *value)
885 DBG("device %p key %s value %s", device, key, value);
887 if (g_str_equal(key, "Address") == TRUE) {
888 g_free(device->address);
889 device->address = g_strdup(value);
890 } else if (g_str_equal(key, "Name") == TRUE) {
891 g_free(device->name);
892 device->name = g_strdup(value);
893 } else if (g_str_equal(key, "Node") == TRUE) {
894 g_free(device->node);
895 device->node = g_strdup(value);
896 } else if (g_str_equal(key, "Path") == TRUE) {
897 g_free(device->path);
898 device->path = g_strdup(value);
907 * connman_device_get_string:
908 * @device: device structure
909 * @key: unique identifier
911 * Get string value for specific key
913 const char *connman_device_get_string(struct connman_device *device,
916 DBG("device %p key %s", device, key);
918 if (g_str_equal(key, "Address") == TRUE)
919 return device->address;
920 else if (g_str_equal(key, "Name") == TRUE)
922 else if (g_str_equal(key, "Node") == TRUE)
924 else if (g_str_equal(key, "Interface") == TRUE)
925 return device->interface;
926 else if (g_str_equal(key, "Path") == TRUE)
932 void __connman_device_increase_connections(struct connman_device *device)
937 device->connections++;
940 void __connman_device_decrease_connections(struct connman_device *device)
945 device->connections--;
947 if (device->connections == 0)
948 device->backoff_interval = SCAN_INITIAL_DELAY;
952 * connman_device_add_network:
953 * @device: device structure
954 * @network: network structure
956 * Add new network to the device
958 int connman_device_add_network(struct connman_device *device,
959 struct connman_network *network)
961 const char *identifier = connman_network_get_identifier(network);
963 DBG("device %p network %p", device, network);
965 if (identifier == NULL)
968 connman_network_ref(network);
970 __connman_network_set_device(network, device);
972 g_hash_table_insert(device->networks, g_strdup(identifier),
979 * connman_device_get_network:
980 * @device: device structure
981 * @identifier: network identifier
983 * Get network for given identifier
985 struct connman_network *connman_device_get_network(struct connman_device *device,
986 const char *identifier)
988 DBG("device %p identifier %s", device, identifier);
990 return g_hash_table_lookup(device->networks, identifier);
994 * connman_device_remove_network:
995 * @device: device structure
996 * @identifier: network identifier
998 * Remove network for given identifier
1000 int connman_device_remove_network(struct connman_device *device,
1001 struct connman_network *network)
1003 const char *identifier;
1005 DBG("device %p network %p", device, network);
1007 if (network == NULL)
1010 identifier = connman_network_get_identifier(network);
1011 g_hash_table_remove(device->networks, identifier);
1016 void connman_device_remove_all_networks(struct connman_device *device)
1018 g_hash_table_remove_all(device->networks);
1021 void __connman_device_set_network(struct connman_device *device,
1022 struct connman_network *network)
1029 if (device->network == network)
1032 if (network != NULL) {
1033 name = connman_network_get_string(network, "Name");
1034 g_free(device->last_network);
1035 device->last_network = g_strdup(name);
1037 device->network = network;
1039 g_free(device->last_network);
1040 device->last_network = NULL;
1042 device->network = NULL;
1046 void __connman_device_set_reconnect(struct connman_device *device,
1047 connman_bool_t reconnect)
1049 device->reconnect = reconnect;
1052 connman_bool_t __connman_device_get_reconnect(
1053 struct connman_device *device)
1055 return device->reconnect;
1058 static gboolean match_driver(struct connman_device *device,
1059 struct connman_device_driver *driver)
1061 if (device->type == driver->type ||
1062 driver->type == CONNMAN_DEVICE_TYPE_UNKNOWN)
1069 * connman_device_register:
1070 * @device: device structure
1072 * Register device with the system
1074 int connman_device_register(struct connman_device *device)
1078 DBG("device %p name %s", device, device->name);
1080 if (device->driver != NULL)
1083 for (list = driver_list; list; list = list->next) {
1084 struct connman_device_driver *driver = list->data;
1086 if (match_driver(device, driver) == FALSE)
1089 DBG("driver %p name %s", driver, driver->name);
1091 if (driver->probe(device) == 0) {
1092 device->driver = driver;
1097 if (device->driver == NULL)
1100 return __connman_technology_add_device(device);
1104 * connman_device_unregister:
1105 * @device: device structure
1107 * Unregister device with the system
1109 void connman_device_unregister(struct connman_device *device)
1111 DBG("device %p name %s", device, device->name);
1113 if (device->driver == NULL)
1116 remove_device(device);
1120 * connman_device_get_data:
1121 * @device: device structure
1123 * Get private device data pointer
1125 void *connman_device_get_data(struct connman_device *device)
1127 return device->driver_data;
1131 * connman_device_set_data:
1132 * @device: device structure
1133 * @data: data pointer
1135 * Set private device data pointer
1137 void connman_device_set_data(struct connman_device *device, void *data)
1139 device->driver_data = data;
1142 struct connman_device *__connman_device_find_device(
1143 enum connman_service_type type)
1147 for (list = device_list; list != NULL; list = list->next) {
1148 struct connman_device *device = list->data;
1149 enum connman_service_type service_type =
1150 __connman_device_get_service_type(device);
1152 if (service_type != type)
1161 int __connman_device_request_scan(enum connman_service_type type)
1167 case CONNMAN_SERVICE_TYPE_UNKNOWN:
1168 case CONNMAN_SERVICE_TYPE_SYSTEM:
1169 case CONNMAN_SERVICE_TYPE_ETHERNET:
1170 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
1171 case CONNMAN_SERVICE_TYPE_CELLULAR:
1172 case CONNMAN_SERVICE_TYPE_GPS:
1173 case CONNMAN_SERVICE_TYPE_VPN:
1174 case CONNMAN_SERVICE_TYPE_GADGET:
1176 case CONNMAN_SERVICE_TYPE_WIFI:
1177 case CONNMAN_SERVICE_TYPE_WIMAX:
1181 for (list = device_list; list != NULL; list = list->next) {
1182 struct connman_device *device = list->data;
1183 enum connman_service_type service_type =
1184 __connman_device_get_service_type(device);
1186 if (service_type != CONNMAN_SERVICE_TYPE_UNKNOWN &&
1187 service_type != type) {
1191 err = device_scan(device);
1192 if (err < 0 && err != -EINPROGRESS) {
1194 /* XXX maybe only a continue? */
1202 connman_bool_t __connman_device_isfiltered(const char *devname)
1206 if (device_filter == NULL)
1209 for (pattern = device_filter; *pattern; pattern++) {
1210 if (g_pattern_match_simple(*pattern, devname) == FALSE) {
1211 DBG("ignoring device %s (match)", devname);
1217 if (g_pattern_match_simple("dummy*", devname) == TRUE) {
1218 DBG("ignoring dummy networking devices");
1222 if (nodevice_filter == NULL)
1225 for (pattern = nodevice_filter; *pattern; pattern++) {
1226 if (g_pattern_match_simple(*pattern, devname) == TRUE) {
1227 DBG("ignoring device %s (no match)", devname);
1235 int __connman_device_init(const char *device, const char *nodevice)
1240 device_filter = g_strsplit(device, ",", -1);
1242 if (nodevice != NULL)
1243 nodevice_filter = g_strsplit(nodevice, ",", -1);
1248 void __connman_device_cleanup(void)
1252 g_strfreev(nodevice_filter);
1253 g_strfreev(device_filter);