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 __connman_service_auto_connect();
838 * connman_device_set_disconnected:
839 * @device: device structure
840 * @disconnected: disconnected state
842 * Change disconnected state of device (only for device with networks)
844 int connman_device_set_disconnected(struct connman_device *device,
845 connman_bool_t disconnected)
847 DBG("device %p disconnected %d", device, disconnected);
849 if (device->disconnected == disconnected)
852 device->disconnected = disconnected;
854 if (disconnected == TRUE)
855 force_scan_trigger(device);
861 * connman_device_get_disconnected:
862 * @device: device structure
864 * Get device disconnected state
866 connman_bool_t connman_device_get_disconnected(struct connman_device *device)
868 return device->disconnected;
872 * connman_device_set_string:
873 * @device: device structure
874 * @key: unique identifier
875 * @value: string value
877 * Set string value for specific key
879 int connman_device_set_string(struct connman_device *device,
880 const char *key, const char *value)
882 DBG("device %p key %s value %s", device, key, value);
884 if (g_str_equal(key, "Address") == TRUE) {
885 g_free(device->address);
886 device->address = g_strdup(value);
887 } else if (g_str_equal(key, "Name") == TRUE) {
888 g_free(device->name);
889 device->name = g_strdup(value);
890 } else if (g_str_equal(key, "Node") == TRUE) {
891 g_free(device->node);
892 device->node = g_strdup(value);
893 } else if (g_str_equal(key, "Path") == TRUE) {
894 g_free(device->path);
895 device->path = g_strdup(value);
904 * connman_device_get_string:
905 * @device: device structure
906 * @key: unique identifier
908 * Get string value for specific key
910 const char *connman_device_get_string(struct connman_device *device,
913 DBG("device %p key %s", device, key);
915 if (g_str_equal(key, "Address") == TRUE)
916 return device->address;
917 else if (g_str_equal(key, "Name") == TRUE)
919 else if (g_str_equal(key, "Node") == TRUE)
921 else if (g_str_equal(key, "Interface") == TRUE)
922 return device->interface;
923 else if (g_str_equal(key, "Path") == TRUE)
929 void __connman_device_increase_connections(struct connman_device *device)
934 device->connections++;
937 void __connman_device_decrease_connections(struct connman_device *device)
942 device->connections--;
944 if (device->connections == 0)
945 device->backoff_interval = SCAN_INITIAL_DELAY;
949 * connman_device_add_network:
950 * @device: device structure
951 * @network: network structure
953 * Add new network to the device
955 int connman_device_add_network(struct connman_device *device,
956 struct connman_network *network)
958 const char *identifier = connman_network_get_identifier(network);
960 DBG("device %p network %p", device, network);
962 if (identifier == NULL)
965 connman_network_ref(network);
967 __connman_network_set_device(network, device);
969 g_hash_table_insert(device->networks, g_strdup(identifier),
976 * connman_device_get_network:
977 * @device: device structure
978 * @identifier: network identifier
980 * Get network for given identifier
982 struct connman_network *connman_device_get_network(struct connman_device *device,
983 const char *identifier)
985 DBG("device %p identifier %s", device, identifier);
987 return g_hash_table_lookup(device->networks, identifier);
991 * connman_device_remove_network:
992 * @device: device structure
993 * @identifier: network identifier
995 * Remove network for given identifier
997 int connman_device_remove_network(struct connman_device *device,
998 struct connman_network *network)
1000 const char *identifier;
1002 DBG("device %p network %p", device, network);
1004 if (network == NULL)
1007 identifier = connman_network_get_identifier(network);
1008 g_hash_table_remove(device->networks, identifier);
1013 void connman_device_remove_all_networks(struct connman_device *device)
1015 g_hash_table_remove_all(device->networks);
1018 void __connman_device_set_network(struct connman_device *device,
1019 struct connman_network *network)
1026 if (device->network == network)
1029 if (network != NULL) {
1030 name = connman_network_get_string(network, "Name");
1031 g_free(device->last_network);
1032 device->last_network = g_strdup(name);
1034 device->network = network;
1036 g_free(device->last_network);
1037 device->last_network = NULL;
1039 device->network = NULL;
1043 void __connman_device_set_reconnect(struct connman_device *device,
1044 connman_bool_t reconnect)
1046 device->reconnect = reconnect;
1049 connman_bool_t __connman_device_get_reconnect(
1050 struct connman_device *device)
1052 return device->reconnect;
1055 static gboolean match_driver(struct connman_device *device,
1056 struct connman_device_driver *driver)
1058 if (device->type == driver->type ||
1059 driver->type == CONNMAN_DEVICE_TYPE_UNKNOWN)
1066 * connman_device_register:
1067 * @device: device structure
1069 * Register device with the system
1071 int connman_device_register(struct connman_device *device)
1075 DBG("device %p name %s", device, device->name);
1077 if (device->driver != NULL)
1080 for (list = driver_list; list; list = list->next) {
1081 struct connman_device_driver *driver = list->data;
1083 if (match_driver(device, driver) == FALSE)
1086 DBG("driver %p name %s", driver, driver->name);
1088 if (driver->probe(device) == 0) {
1089 device->driver = driver;
1094 if (device->driver == NULL)
1097 return __connman_technology_add_device(device);
1101 * connman_device_unregister:
1102 * @device: device structure
1104 * Unregister device with the system
1106 void connman_device_unregister(struct connman_device *device)
1108 DBG("device %p name %s", device, device->name);
1110 if (device->driver == NULL)
1113 remove_device(device);
1117 * connman_device_get_data:
1118 * @device: device structure
1120 * Get private device data pointer
1122 void *connman_device_get_data(struct connman_device *device)
1124 return device->driver_data;
1128 * connman_device_set_data:
1129 * @device: device structure
1130 * @data: data pointer
1132 * Set private device data pointer
1134 void connman_device_set_data(struct connman_device *device, void *data)
1136 device->driver_data = data;
1139 struct connman_device *__connman_device_find_device(
1140 enum connman_service_type type)
1144 for (list = device_list; list != NULL; list = list->next) {
1145 struct connman_device *device = list->data;
1146 enum connman_service_type service_type =
1147 __connman_device_get_service_type(device);
1149 if (service_type != type)
1158 int __connman_device_request_scan(enum connman_service_type type)
1164 case CONNMAN_SERVICE_TYPE_UNKNOWN:
1165 case CONNMAN_SERVICE_TYPE_SYSTEM:
1166 case CONNMAN_SERVICE_TYPE_ETHERNET:
1167 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
1168 case CONNMAN_SERVICE_TYPE_CELLULAR:
1169 case CONNMAN_SERVICE_TYPE_GPS:
1170 case CONNMAN_SERVICE_TYPE_VPN:
1171 case CONNMAN_SERVICE_TYPE_GADGET:
1173 case CONNMAN_SERVICE_TYPE_WIFI:
1174 case CONNMAN_SERVICE_TYPE_WIMAX:
1178 for (list = device_list; list != NULL; list = list->next) {
1179 struct connman_device *device = list->data;
1180 enum connman_service_type service_type =
1181 __connman_device_get_service_type(device);
1183 if (service_type != CONNMAN_SERVICE_TYPE_UNKNOWN &&
1184 service_type != type) {
1188 err = device_scan(device);
1189 if (err < 0 && err != -EINPROGRESS) {
1191 /* XXX maybe only a continue? */
1199 connman_bool_t __connman_device_isfiltered(const char *devname)
1203 if (device_filter == NULL)
1206 for (pattern = device_filter; *pattern; pattern++) {
1207 if (g_pattern_match_simple(*pattern, devname) == FALSE) {
1208 DBG("ignoring device %s (match)", devname);
1214 if (g_pattern_match_simple("dummy*", devname) == TRUE) {
1215 DBG("ignoring dummy networking devices");
1219 if (nodevice_filter == NULL)
1222 for (pattern = nodevice_filter; *pattern; pattern++) {
1223 if (g_pattern_match_simple(*pattern, devname) == TRUE) {
1224 DBG("ignoring device %s (no match)", devname);
1232 int __connman_device_init(const char *device, const char *nodevice)
1237 device_filter = g_strsplit(device, ",", -1);
1239 if (nodevice != NULL)
1240 nodevice_filter = g_strsplit(nodevice, ",", -1);
1245 void __connman_device_cleanup(void)
1249 g_strfreev(nodevice_filter);
1250 g_strfreev(device_filter);