Reset connman_network device pointer when it is no longer referenced
[platform/upstream/connman.git] / src / device.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2010  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 <errno.h>
27 #include <string.h>
28
29 #include <gdbus.h>
30
31 #include "connman.h"
32
33 static DBusConnection *connection = NULL;
34
35 struct connman_device {
36         struct connman_element element;
37         enum connman_device_type type;
38         enum connman_device_mode mode;
39         connman_bool_t offlinemode;
40         connman_bool_t blocked;
41         connman_bool_t powered;
42         connman_bool_t powered_pending;
43         connman_bool_t powered_persistent;
44         connman_bool_t scanning;
45         connman_bool_t disconnected;
46         connman_bool_t reconnect;
47         connman_uint16_t scan_interval;
48         char *name;
49         char *node;
50         char *address;
51         char *interface;
52         char *control;
53         char *ident;
54         int phyindex;
55         unsigned int connections;
56         guint scan_timeout;
57
58         struct connman_device_driver *driver;
59         void *driver_data;
60
61         connman_bool_t registered;
62
63         char *last_network;
64         struct connman_network *network;
65         GHashTable *networks;
66
67         DBusMessage *pending;
68         guint timeout;
69 };
70
71 static gboolean device_scan_trigger(gpointer user_data)
72 {
73         struct connman_device *device = user_data;
74
75         DBG("device %p", device);
76
77         if (device->driver == NULL) {
78                 device->scan_timeout = 0;
79                 return FALSE;
80         }
81
82         if (device->driver->scan)
83                 device->driver->scan(device);
84
85         return TRUE;
86 }
87
88 static void clear_scan_trigger(struct connman_device *device)
89 {
90         if (device->scan_timeout > 0) {
91                 g_source_remove(device->scan_timeout);
92                 device->scan_timeout = 0;
93         }
94 }
95
96 static void reset_scan_trigger(struct connman_device *device)
97 {
98         clear_scan_trigger(device);
99
100         if (device->scan_interval > 0) {
101                 guint interval = device->scan_interval;
102                 device->scan_timeout = g_timeout_add_seconds(interval,
103                                         device_scan_trigger, device);
104         }
105 }
106
107 static void force_scan_trigger(struct connman_device *device)
108 {
109         clear_scan_trigger(device);
110
111         device->scan_timeout = g_timeout_add_seconds(5,
112                                         device_scan_trigger, device);
113 }
114
115 void connman_device_schedule_scan(struct connman_device *device)
116 {
117         reset_scan_trigger(device);
118 }
119
120 static const char *type2description(enum connman_device_type type)
121 {
122         switch (type) {
123         case CONNMAN_DEVICE_TYPE_UNKNOWN:
124         case CONNMAN_DEVICE_TYPE_VENDOR:
125                 break;
126         case CONNMAN_DEVICE_TYPE_ETHERNET:
127                 return "Ethernet";
128         case CONNMAN_DEVICE_TYPE_WIFI:
129                 return "Wireless";
130         case CONNMAN_DEVICE_TYPE_WIMAX:
131                 return "WiMAX";
132         case CONNMAN_DEVICE_TYPE_BLUETOOTH:
133                 return "Bluetooth";
134         case CONNMAN_DEVICE_TYPE_GPS:
135                 return "GPS";
136         case CONNMAN_DEVICE_TYPE_CELLULAR:
137                 return "Cellular";
138         }
139
140         return NULL;
141 }
142
143 static const char *type2string(enum connman_device_type type)
144 {
145         switch (type) {
146         case CONNMAN_DEVICE_TYPE_UNKNOWN:
147         case CONNMAN_DEVICE_TYPE_VENDOR:
148                 break;
149         case CONNMAN_DEVICE_TYPE_ETHERNET:
150                 return "ethernet";
151         case CONNMAN_DEVICE_TYPE_WIFI:
152                 return "wifi";
153         case CONNMAN_DEVICE_TYPE_WIMAX:
154                 return "wimax";
155         case CONNMAN_DEVICE_TYPE_BLUETOOTH:
156                 return "bluetooth";
157         case CONNMAN_DEVICE_TYPE_GPS:
158                 return "gps";
159         case CONNMAN_DEVICE_TYPE_CELLULAR:
160                 return "cellular";
161         }
162
163         return NULL;
164 }
165
166 enum connman_service_type __connman_device_get_service_type(struct connman_device *device)
167 {
168         enum connman_device_type type = connman_device_get_type(device);
169
170         switch (type) {
171         case CONNMAN_DEVICE_TYPE_UNKNOWN:
172         case CONNMAN_DEVICE_TYPE_VENDOR:
173         case CONNMAN_DEVICE_TYPE_GPS:
174                 break;
175         case CONNMAN_DEVICE_TYPE_ETHERNET:
176                 return CONNMAN_SERVICE_TYPE_ETHERNET;
177         case CONNMAN_DEVICE_TYPE_WIFI:
178                 return CONNMAN_SERVICE_TYPE_WIFI;
179         case CONNMAN_DEVICE_TYPE_WIMAX:
180                 return CONNMAN_SERVICE_TYPE_WIMAX;
181         case CONNMAN_DEVICE_TYPE_BLUETOOTH:
182                 return CONNMAN_SERVICE_TYPE_BLUETOOTH;
183         case CONNMAN_DEVICE_TYPE_CELLULAR:
184                 return CONNMAN_SERVICE_TYPE_CELLULAR;
185         }
186
187         return CONNMAN_SERVICE_TYPE_UNKNOWN;
188 }
189
190 static void powered_changed(struct connman_device *device)
191 {
192         connman_dbus_property_changed_basic(device->element.path,
193                                 CONNMAN_DEVICE_INTERFACE, "Powered",
194                                         DBUS_TYPE_BOOLEAN, &device->powered);
195 }
196
197 static int set_powered(struct connman_device *device, connman_bool_t powered)
198 {
199         struct connman_device_driver *driver = device->driver;
200         int err;
201
202         DBG("device %p powered %d", device, powered);
203
204         if (device->powered_pending == powered)
205                 return -EALREADY;
206
207         if (!driver)
208                 return -EINVAL;
209
210         if (powered == TRUE) {
211                 if (driver->enable) {
212                         device->powered_pending = powered;
213
214                         err = driver->enable(device);
215                         if (err == 0)
216                                 __connman_technology_enable_device(device);
217                 } else
218                         err = -EINVAL;
219         } else {
220                 device->powered_pending = powered;
221
222                 device->reconnect = FALSE;
223
224                 clear_scan_trigger(device);
225
226                 g_hash_table_remove_all(device->networks);
227
228                 if (driver->disable) {
229                         err = driver->disable(device);
230                         if (err == 0)
231                                 __connman_technology_disable_device(device);
232                 } else
233                         err = -EINVAL;
234         }
235
236         if (err == 0) {
237                 device->powered = powered;
238
239                 if (device->registered == TRUE)
240                         powered_changed(device);
241         }
242
243         return err;
244 }
245
246 void __connman_device_list(DBusMessageIter *iter, void *user_data)
247 {
248         __connman_element_list(NULL, CONNMAN_ELEMENT_TYPE_DEVICE, iter);
249 }
250
251 static void append_path(gpointer key, gpointer value, gpointer user_data)
252 {
253         struct connman_element *element = value;
254         DBusMessageIter *iter = user_data;
255
256         dbus_message_iter_append_basic(iter, DBUS_TYPE_OBJECT_PATH,
257                                                         &element->path);
258 }
259
260 static void append_networks(DBusMessageIter *iter, void *user_data)
261 {
262         struct connman_device *device = user_data;
263
264         g_hash_table_foreach(device->networks, append_path, iter);
265 }
266
267 static DBusMessage *get_properties(DBusConnection *conn,
268                                         DBusMessage *msg, void *data)
269 {
270         struct connman_device *device = data;
271         DBusMessage *reply;
272         DBusMessageIter array, dict;
273         const char *str;
274
275         DBG("conn %p", conn);
276
277         if (__connman_security_check_privilege(msg,
278                                         CONNMAN_SECURITY_PRIVILEGE_PUBLIC) < 0)
279                 return __connman_error_permission_denied(msg);
280
281         reply = dbus_message_new_method_return(msg);
282         if (reply == NULL)
283                 return NULL;
284
285         dbus_message_iter_init_append(reply, &array);
286
287         connman_dbus_dict_open(&array, &dict);
288
289         if (device->name != NULL)
290                 connman_dbus_dict_append_basic(&dict, "Name",
291                                         DBUS_TYPE_STRING, &device->name);
292
293         str = type2string(device->type);
294         if (str != NULL)
295                 connman_dbus_dict_append_basic(&dict, "Type",
296                                                 DBUS_TYPE_STRING, &str);
297
298         if (device->address != NULL)
299                 connman_dbus_dict_append_basic(&dict, "Address",
300                                         DBUS_TYPE_STRING, &device->address);
301
302         if (device->interface != NULL)
303                 connman_dbus_dict_append_basic(&dict, "Interface",
304                                         DBUS_TYPE_STRING, &device->interface);
305
306         connman_dbus_dict_append_basic(&dict, "Powered",
307                                         DBUS_TYPE_BOOLEAN, &device->powered);
308
309         if (device->driver && device->driver->scan)
310                 connman_dbus_dict_append_basic(&dict, "Scanning",
311                                         DBUS_TYPE_BOOLEAN, &device->scanning);
312
313         switch (device->mode) {
314         case CONNMAN_DEVICE_MODE_UNKNOWN:
315                 break;
316         case CONNMAN_DEVICE_MODE_NETWORK_SINGLE:
317         case CONNMAN_DEVICE_MODE_NETWORK_MULTIPLE:
318                 if (device->scan_interval > 0)
319                         connman_dbus_dict_append_basic(&dict, "ScanInterval",
320                                 DBUS_TYPE_UINT16, &device->scan_interval);
321
322                 connman_dbus_dict_append_array(&dict, "Networks",
323                                 DBUS_TYPE_OBJECT_PATH, append_networks, device);
324                 break;
325         }
326
327         connman_dbus_dict_close(&array, &dict);
328
329         return reply;
330 }
331
332 static gboolean powered_timeout(gpointer user_data)
333 {
334         struct connman_device *device = user_data;
335
336         DBG("device %p", device);
337
338         device->timeout = 0;
339
340         if (device->pending != NULL) {
341                 DBusMessage *reply;
342
343                 reply = __connman_error_operation_timeout(device->pending);
344                 if (reply != NULL)
345                         g_dbus_send_message(connection, reply);
346
347                 dbus_message_unref(device->pending);
348                 device->pending = NULL;
349         }
350
351         return FALSE;
352 }
353
354 static DBusMessage *set_property(DBusConnection *conn,
355                                         DBusMessage *msg, void *data)
356 {
357         struct connman_device *device = data;
358         DBusMessageIter iter, value;
359         const char *name;
360         int type;
361
362         DBG("conn %p", conn);
363
364         if (dbus_message_iter_init(msg, &iter) == FALSE)
365                 return __connman_error_invalid_arguments(msg);
366
367         dbus_message_iter_get_basic(&iter, &name);
368         dbus_message_iter_next(&iter);
369         dbus_message_iter_recurse(&iter, &value);
370
371         if (__connman_security_check_privilege(msg,
372                                         CONNMAN_SECURITY_PRIVILEGE_MODIFY) < 0)
373                 return __connman_error_permission_denied(msg);
374
375         type = dbus_message_iter_get_arg_type(&value);
376
377         if (g_str_equal(name, "Powered") == TRUE) {
378                 connman_bool_t powered;
379                 int err;
380
381                 if (type != DBUS_TYPE_BOOLEAN)
382                         return __connman_error_invalid_arguments(msg);
383
384                 dbus_message_iter_get_basic(&value, &powered);
385
386                 device->powered_persistent = powered;
387
388                 __connman_storage_save_device(device);
389
390                 if (device->powered == powered)
391                         return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
392
393                 if (device->pending != NULL)
394                         return __connman_error_in_progress(msg);
395
396                 err = set_powered(device, powered);
397                 if (err < 0) {
398                         if (err != -EINPROGRESS)
399                                 return __connman_error_failed(msg, -err);
400
401                         device->pending = dbus_message_ref(msg);
402
403                         device->timeout = g_timeout_add_seconds(15,
404                                                 powered_timeout, device);
405
406                         return NULL;
407                 }
408         } else if (g_str_equal(name, "ScanInterval") == TRUE) {
409                 connman_uint16_t interval;
410
411                 switch (device->mode) {
412                 case CONNMAN_DEVICE_MODE_UNKNOWN:
413                 case CONNMAN_DEVICE_MODE_NETWORK_SINGLE:
414                 case CONNMAN_DEVICE_MODE_NETWORK_MULTIPLE:
415                         break;
416                 }
417
418                 if (type != DBUS_TYPE_UINT16)
419                         return __connman_error_invalid_arguments(msg);
420
421                 dbus_message_iter_get_basic(&value, &interval);
422
423                 if (device->scan_interval != interval) {
424                         device->scan_interval = interval;
425
426                         __connman_storage_save_device(device);
427
428                         reset_scan_trigger(device);
429                 }
430         } else
431                 return __connman_error_invalid_property(msg);
432
433         return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
434 }
435
436 static DBusMessage *propose_scan(DBusConnection *conn,
437                                         DBusMessage *msg, void *data)
438 {
439         struct connman_device *device = data;
440         int err;
441
442         DBG("conn %p", conn);
443
444         switch (device->mode) {
445         case CONNMAN_DEVICE_MODE_UNKNOWN:
446                 return __connman_error_not_supported(msg);
447         case CONNMAN_DEVICE_MODE_NETWORK_SINGLE:
448         case CONNMAN_DEVICE_MODE_NETWORK_MULTIPLE:
449                 break;
450         }
451
452         err = __connman_device_scan(device);
453         if (err < 0)
454                 return __connman_error_failed(msg, -err);
455
456         return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
457 }
458
459 static GDBusMethodTable device_methods[] = {
460         { "GetProperties", "",      "a{sv}", get_properties },
461         { "SetProperty",   "sv",    "",      set_property,
462                                                 G_DBUS_METHOD_FLAG_ASYNC },
463         { "ProposeScan",   "",      "",      propose_scan   },
464         { },
465 };
466
467 static GDBusSignalTable device_signals[] = {
468         { "PropertyChanged", "sv" },
469         { },
470 };
471
472 static int register_interface(struct connman_element *element)
473 {
474         struct connman_device *device = element->device;
475
476         DBG("element %p name %s", element, element->name);
477
478         if (g_dbus_register_interface(connection, element->path,
479                                         CONNMAN_DEVICE_INTERFACE,
480                                         device_methods, device_signals,
481                                         NULL, device, NULL) == FALSE) {
482                 connman_error("Failed to register %s device", element->path);
483                 return -EIO;
484         }
485
486         device->registered = TRUE;
487
488         return 0;
489 }
490
491 static void unregister_interface(struct connman_element *element)
492 {
493         struct connman_device *device = element->device;
494
495         DBG("element %p name %s", element, element->name);
496
497         device->registered = FALSE;
498
499         g_dbus_unregister_interface(connection, element->path,
500                                                 CONNMAN_DEVICE_INTERFACE);
501 }
502
503 static int setup_device(struct connman_device *device)
504 {
505         int err;
506
507         DBG("device %p", device);
508
509         err = register_interface(&device->element);
510         if (err < 0) {
511                 if (device->driver->remove)
512                         device->driver->remove(device);
513                 device->driver = NULL;
514                 return err;
515         }
516
517         __connman_technology_add_device(device);
518
519         switch (device->mode) {
520         case CONNMAN_DEVICE_MODE_UNKNOWN:
521         case CONNMAN_DEVICE_MODE_NETWORK_SINGLE:
522         case CONNMAN_DEVICE_MODE_NETWORK_MULTIPLE:
523                 break;
524         }
525
526         if (__connman_udev_get_blocked(device->phyindex) == TRUE)
527                 return 0;
528
529         if (device->offlinemode == FALSE &&
530                                 device->powered_persistent == TRUE)
531                 __connman_device_enable(device);
532
533         return 0;
534 }
535
536 static void probe_driver(struct connman_element *element, gpointer user_data)
537 {
538         struct connman_device_driver *driver = user_data;
539
540         DBG("element %p name %s", element, element->name);
541
542         if (element->device == NULL)
543                 return;
544
545         if (element->device->driver != NULL)
546                 return;
547
548         if (driver->type != element->device->type)
549                 return;
550
551         if (driver->probe(element->device) < 0)
552                 return;
553
554         element->device->driver = driver;
555
556         setup_device(element->device);
557 }
558
559 static void remove_device(struct connman_device *device)
560 {
561         DBG("device %p", device);
562
563         __connman_device_disable(device);
564
565         switch (device->mode) {
566         case CONNMAN_DEVICE_MODE_UNKNOWN:
567         case CONNMAN_DEVICE_MODE_NETWORK_SINGLE:
568         case CONNMAN_DEVICE_MODE_NETWORK_MULTIPLE:
569                 break;
570         }
571
572         __connman_technology_remove_device(device);
573
574         unregister_interface(&device->element);
575
576         if (device->driver->remove)
577                 device->driver->remove(device);
578
579         device->driver = NULL;
580 }
581
582 static void remove_driver(struct connman_element *element, gpointer user_data)
583 {
584         struct connman_device_driver *driver = user_data;
585
586         DBG("element %p name %s", element, element->name);
587
588         if (element->device == NULL)
589                 return;
590
591         if (element->device->driver == driver)
592                 remove_device(element->device);
593 }
594
595 connman_bool_t __connman_device_has_driver(struct connman_device *device)
596 {
597         if (device == NULL || device->driver == NULL)
598                 return FALSE;
599
600         return device->registered;
601 }
602
603 static GSList *driver_list = NULL;
604
605 static gint compare_priority(gconstpointer a, gconstpointer b)
606 {
607         const struct connman_device_driver *driver1 = a;
608         const struct connman_device_driver *driver2 = b;
609
610         return driver2->priority - driver1->priority;
611 }
612
613 /**
614  * connman_device_driver_register:
615  * @driver: device driver definition
616  *
617  * Register a new device driver
618  *
619  * Returns: %0 on success
620  */
621 int connman_device_driver_register(struct connman_device_driver *driver)
622 {
623         DBG("driver %p name %s", driver, driver->name);
624
625         driver_list = g_slist_insert_sorted(driver_list, driver,
626                                                         compare_priority);
627
628         __connman_element_foreach(NULL, CONNMAN_ELEMENT_TYPE_DEVICE,
629                                                 probe_driver, driver);
630
631         return 0;
632 }
633
634 /**
635  * connman_device_driver_unregister:
636  * @driver: device driver definition
637  *
638  * Remove a previously registered device driver
639  */
640 void connman_device_driver_unregister(struct connman_device_driver *driver)
641 {
642         DBG("driver %p name %s", driver, driver->name);
643
644         driver_list = g_slist_remove(driver_list, driver);
645
646         __connman_element_foreach(NULL, CONNMAN_ELEMENT_TYPE_DEVICE,
647                                                 remove_driver, driver);
648 }
649
650 static void unregister_network(gpointer data)
651 {
652         struct connman_network *network = data;
653
654         DBG("network %p", network);
655
656         connman_element_unregister((struct connman_element *) network);
657
658         connman_network_unref(network);
659 }
660
661 static void device_destruct(struct connman_element *element)
662 {
663         struct connman_device *device = element->device;
664
665         DBG("element %p name %s", element, element->name);
666
667         if (device->timeout > 0) {
668                 g_source_remove(device->timeout);
669                 device->timeout = 0;
670         }
671
672         clear_scan_trigger(device);
673
674         if (device->pending != NULL) {
675                 dbus_message_unref(device->pending);
676                 device->pending = NULL;
677         }
678
679         g_free(device->ident);
680         g_free(device->node);
681         g_free(device->name);
682         g_free(device->address);
683         g_free(device->control);
684         g_free(device->interface);
685
686         g_free(device->last_network);
687
688         g_hash_table_destroy(device->networks);
689         device->networks = NULL;
690 }
691
692 /**
693  * connman_device_create:
694  * @node: device node name (for example an address)
695  * @type: device type
696  *
697  * Allocate a new device of given #type and assign the #node name to it.
698  *
699  * Returns: a newly-allocated #connman_device structure
700  */
701 struct connman_device *connman_device_create(const char *node,
702                                                 enum connman_device_type type)
703 {
704         struct connman_device *device;
705         const char *str;
706
707         DBG("node %s type %d", node, type);
708
709         device = g_try_new0(struct connman_device, 1);
710         if (device == NULL)
711                 return NULL;
712
713         DBG("device %p", device);
714
715         __connman_element_initialize(&device->element);
716
717         device->element.name = g_strdup(node);
718         device->element.type = CONNMAN_ELEMENT_TYPE_DEVICE;
719
720         device->element.device = device;
721         device->element.destruct = device_destruct;
722
723         str = type2string(type);
724         if (str != NULL)
725                 connman_element_set_string(&device->element,
726                                         CONNMAN_PROPERTY_ID_TYPE, str);
727
728         device->element.ipv4.method = CONNMAN_IPCONFIG_METHOD_DHCP;
729
730         device->type = type;
731         device->name = g_strdup(type2description(device->type));
732         device->mode = CONNMAN_DEVICE_MODE_UNKNOWN;
733
734         device->powered_persistent = TRUE;
735
736         device->phyindex = -1;
737
738         switch (type) {
739         case CONNMAN_DEVICE_TYPE_UNKNOWN:
740         case CONNMAN_DEVICE_TYPE_VENDOR:
741                 device->scan_interval = 0;
742                 break;
743         case CONNMAN_DEVICE_TYPE_ETHERNET:
744         case CONNMAN_DEVICE_TYPE_WIFI:
745                 device->scan_interval = 300;
746                 break;
747         case CONNMAN_DEVICE_TYPE_WIMAX:
748                 device->scan_interval = 0;
749                 break;
750         case CONNMAN_DEVICE_TYPE_BLUETOOTH:
751                 device->scan_interval = 0;
752                 break;
753         case CONNMAN_DEVICE_TYPE_GPS:
754                 device->scan_interval = 0;
755                 break;
756         case CONNMAN_DEVICE_TYPE_CELLULAR:
757                 device->scan_interval = 0;
758                 break;
759         }
760
761         device->networks = g_hash_table_new_full(g_str_hash, g_str_equal,
762                                                 g_free, unregister_network);
763
764         return device;
765 }
766
767 /**
768  * connman_device_ref:
769  * @device: device structure
770  *
771  * Increase reference counter of device
772  */
773 struct connman_device *connman_device_ref(struct connman_device *device)
774 {
775         if (connman_element_ref(&device->element) == NULL)
776                 return NULL;
777
778         return device;
779 }
780
781 /**
782  * connman_device_unref:
783  * @device: device structure
784  *
785  * Decrease reference counter of device
786  */
787 void connman_device_unref(struct connman_device *device)
788 {
789         connman_element_unref(&device->element);
790 }
791
792 const char *__connman_device_get_type(struct connman_device *device)
793 {
794         return type2string(device->type);
795 }
796
797 /**
798  * connman_device_get_type:
799  * @device: device structure
800  *
801  * Get type of device
802  */
803 enum connman_device_type connman_device_get_type(struct connman_device *device)
804 {
805         return device->type;
806 }
807
808 /**
809  * connman_device_get_name:
810  * @device: device structure
811  *
812  * Get unique name of device
813  */
814 const char *connman_device_get_name(struct connman_device *device)
815 {
816         return device->element.name;
817 }
818
819 /**
820  * connman_device_get_path:
821  * @device: device structure
822  *
823  * Get path name of device
824  */
825 const char *connman_device_get_path(struct connman_device *device)
826 {
827         return device->element.path;
828 }
829
830 /**
831  * connman_device_set_index:
832  * @device: device structure
833  * @index: index number
834  *
835  * Set index number of device
836  */
837 void connman_device_set_index(struct connman_device *device, int index)
838 {
839         device->element.index = index;
840 }
841
842 /**
843  * connman_device_get_index:
844  * @device: device structure
845  *
846  * Get index number of device
847  */
848 int connman_device_get_index(struct connman_device *device)
849 {
850         return device->element.index;
851 }
852
853 int __connman_device_get_phyindex(struct connman_device *device)
854 {
855         return device->phyindex;
856 }
857
858 void __connman_device_set_phyindex(struct connman_device *device,
859                                                         int phyindex)
860 {
861         device->phyindex = phyindex;
862 }
863
864 /**
865  * connman_device_set_interface:
866  * @device: device structure
867  * @interface: interface name
868  * @control: control interface
869  *
870  * Set interface name of device
871  */
872 void connman_device_set_interface(struct connman_device *device,
873                                 const char *interface, const char *control)
874 {
875         g_free(device->element.devname);
876         device->element.devname = g_strdup(interface);
877
878         g_free(device->interface);
879         device->interface = g_strdup(interface);
880
881         g_free(device->control);
882         device->control = g_strdup(control);
883
884         if (device->name == NULL) {
885                 const char *str = type2description(device->type);
886                 if (str != NULL && device->interface != NULL)
887                         device->name = g_strdup_printf("%s (%s)", str,
888                                                         device->interface);
889         }
890 }
891
892 const char *connman_device_get_control(struct connman_device *device)
893 {
894         return device->control;
895 }
896
897 /**
898  * connman_device_set_ident:
899  * @device: device structure
900  * @ident: unique identifier
901  *
902  * Set unique identifier of device
903  */
904 void connman_device_set_ident(struct connman_device *device,
905                                                         const char *ident)
906 {
907         g_free(device->ident);
908         device->ident = g_strdup(ident);
909 }
910
911 const char *__connman_device_get_ident(struct connman_device *device)
912 {
913         return device->ident;
914 }
915
916 /**
917  * connman_device_set_mode:
918  * @device: device structure
919  * @mode: network mode
920  *
921  * Change network mode of device
922  */
923 void connman_device_set_mode(struct connman_device *device,
924                                                 enum connman_device_mode mode)
925 {
926         device->mode = mode;
927 }
928
929 /**
930  * connman_device_get_mode:
931  * @device: device structure
932  *
933  * Get network mode of device
934  */
935 enum connman_device_mode connman_device_get_mode(struct connman_device *device)
936 {
937         return device->mode;
938 }
939
940 /**
941  * connman_device_set_powered:
942  * @device: device structure
943  * @powered: powered state
944  *
945  * Change power state of device
946  */
947 int connman_device_set_powered(struct connman_device *device,
948                                                 connman_bool_t powered)
949 {
950         DBG("driver %p powered %d", device, powered);
951
952         if (device->timeout > 0) {
953                 g_source_remove(device->timeout);
954                 device->timeout = 0;
955         }
956
957         if (device->pending != NULL) {
958                 g_dbus_send_reply(connection, device->pending,
959                                                         DBUS_TYPE_INVALID);
960
961                 dbus_message_unref(device->pending);
962                 device->pending = NULL;
963         }
964
965         if (device->powered == powered)
966                 return -EALREADY;
967
968         if (powered == TRUE)
969                 __connman_device_enable(device);
970         else
971                 __connman_device_disable(device);
972
973         device->powered = powered;
974         device->powered_pending = powered;
975
976         if (device->powered == TRUE)
977                 __connman_technology_enable_device(device);
978         else
979                 __connman_technology_disable_device(device);
980
981         if (device->registered == FALSE)
982                 return 0;
983
984         powered_changed(device);
985
986         if (powered == FALSE)
987                 return 0;
988
989         reset_scan_trigger(device);
990
991         if (device->driver->scan)
992                 device->driver->scan(device);
993
994         return 0;
995 }
996
997 int __connman_device_set_blocked(struct connman_device *device,
998                                                 connman_bool_t blocked)
999 {
1000         connman_bool_t powered;
1001
1002         DBG("device %p blocked %d", device, blocked);
1003
1004         device->blocked = blocked;
1005
1006         if (device->offlinemode == TRUE)
1007                 return 0;
1008
1009         connman_info("%s {rfkill} blocked %d", device->interface, blocked);
1010
1011         if (blocked == FALSE)
1012                 powered = device->powered_persistent;
1013         else
1014                 powered = FALSE;
1015
1016         return set_powered(device, powered);
1017 }
1018
1019 int __connman_device_scan(struct connman_device *device)
1020 {
1021         if (!device->driver || !device->driver->scan)
1022                 return -EOPNOTSUPP;
1023
1024         if (device->powered == FALSE)
1025                 return -ENOLINK;
1026
1027         reset_scan_trigger(device);
1028
1029         return device->driver->scan(device);
1030 }
1031
1032 int __connman_device_enable(struct connman_device *device)
1033 {
1034         int err;
1035
1036         DBG("device %p", device);
1037
1038         if (!device->driver || !device->driver->enable)
1039                 return -EOPNOTSUPP;
1040
1041         if (device->powered_pending == TRUE)
1042                 return -EALREADY;
1043
1044         device->powered_pending = TRUE;
1045
1046         err = device->driver->enable(device);
1047         if (err < 0)
1048                 return err;
1049
1050         device->powered = TRUE;
1051
1052         __connman_technology_enable_device(device);
1053
1054         return 0;
1055 }
1056
1057 int __connman_device_enable_persistent(struct connman_device *device)
1058 {
1059         DBG("device %p", device);
1060
1061         device->powered_persistent = TRUE;
1062
1063         __connman_storage_save_device(device);
1064
1065         return __connman_device_enable(device);
1066 }
1067
1068 int __connman_device_disable(struct connman_device *device)
1069 {
1070         int err;
1071
1072         DBG("device %p", device);
1073
1074         if (!device->driver || !device->driver->disable)
1075                 return -EOPNOTSUPP;
1076
1077         if (device->powered == FALSE)
1078                 return -ENOLINK;
1079
1080         if (device->powered_pending == FALSE)
1081                 return -EALREADY;
1082
1083         device->powered_pending = FALSE;
1084
1085         device->reconnect = FALSE;
1086
1087         clear_scan_trigger(device);
1088
1089         g_hash_table_remove_all(device->networks);
1090
1091         err = device->driver->disable(device);
1092         if (err < 0)
1093                 return err;
1094
1095         device->powered = FALSE;
1096
1097         __connman_technology_disable_device(device);
1098
1099         return 0;
1100 }
1101
1102 int __connman_device_disable_persistent(struct connman_device *device)
1103 {
1104         DBG("device %p", device);
1105
1106         device->powered_persistent = FALSE;
1107
1108         __connman_storage_save_device(device);
1109
1110         return __connman_device_disable(device);
1111 }
1112
1113 int __connman_device_disconnect(struct connman_device *device)
1114 {
1115         GHashTableIter iter;
1116         gpointer key, value;
1117
1118         DBG("device %p", device);
1119
1120         connman_device_set_disconnected(device, TRUE);
1121
1122         g_hash_table_iter_init(&iter, device->networks);
1123
1124         while (g_hash_table_iter_next(&iter, &key, &value) == TRUE) {
1125                 struct connman_network *network = value;
1126
1127                 if (__connman_network_get_connecting(network) == TRUE) {
1128                         /*
1129                          * Skip network in the process of connecting.
1130                          * This is a workaround for WiFi networks serviced
1131                          * by the supplicant plugin that hold a reference
1132                          * to the network.  If we disconnect the network
1133                          * here then the referenced object will not be
1134                          * registered and usage (like launching DHCP client)
1135                          * will fail.  There is nothing to be gained by
1136                          * removing the network here anyway.
1137                          */
1138                         connman_warn("Skipping disconnect of %s",
1139                                 connman_network_get_identifier(network));
1140                         continue;
1141                 }
1142
1143                 __connman_network_disconnect(network);
1144         }
1145
1146         return 0;
1147 }
1148
1149 static void mark_network_unavailable(gpointer key, gpointer value,
1150                                                         gpointer user_data)
1151 {
1152         struct connman_network *network = value;
1153
1154         if (connman_network_get_connected(network) == TRUE)
1155                 return;
1156
1157         connman_network_set_available(network, FALSE);
1158 }
1159
1160 static gboolean remove_unavailable_network(gpointer key, gpointer value,
1161                                                         gpointer user_data)
1162 {
1163         struct connman_network *network = value;
1164
1165         if (connman_network_get_connected(network) == TRUE)
1166                 return FALSE;
1167
1168         if (connman_network_get_available(network) == TRUE)
1169                 return FALSE;
1170
1171         return TRUE;
1172 }
1173
1174 void __connman_device_cleanup_networks(struct connman_device *device)
1175 {
1176         g_hash_table_foreach_remove(device->networks,
1177                                         remove_unavailable_network, NULL);
1178 }
1179
1180 static void scanning_changed(struct connman_device *device)
1181 {
1182         connman_dbus_property_changed_basic(device->element.path,
1183                                 CONNMAN_DEVICE_INTERFACE, "Scanning",
1184                                         DBUS_TYPE_BOOLEAN, &device->scanning);
1185 }
1186
1187 static void mark_network_available(gpointer key, gpointer value,
1188                                                 gpointer user_data)
1189 {
1190         struct connman_network *network = value;
1191
1192         connman_network_set_available(network, TRUE);
1193 }
1194
1195 void connman_device_cleanup_scanning(struct connman_device *device)
1196 {
1197         device->scanning = FALSE;
1198
1199         scanning_changed(device);
1200
1201         g_hash_table_foreach(device->networks,
1202                                 mark_network_available, NULL);
1203 }
1204
1205 /**
1206  * connman_device_set_scanning:
1207  * @device: device structure
1208  * @scanning: scanning state
1209  *
1210  * Change scanning state of device
1211  */
1212 int connman_device_set_scanning(struct connman_device *device,
1213                                                 connman_bool_t scanning)
1214 {
1215         DBG("device %p scanning %d", device, scanning);
1216
1217         if (!device->driver || !device->driver->scan)
1218                 return -EINVAL;
1219
1220         if (device->scanning == scanning)
1221                 return -EALREADY;
1222
1223         device->scanning = scanning;
1224
1225         scanning_changed(device);
1226
1227         if (scanning == TRUE) {
1228                 reset_scan_trigger(device);
1229
1230                 g_hash_table_foreach(device->networks,
1231                                         mark_network_unavailable, NULL);
1232
1233                 return 0;
1234         }
1235
1236         __connman_device_cleanup_networks(device);
1237
1238         if (device->connections > 0)
1239                 return 0;
1240
1241         if (device->disconnected == TRUE)
1242                 return 0;
1243
1244         __connman_service_auto_connect();
1245
1246         return 0;
1247 }
1248
1249 /**
1250  * connman_device_set_disconnected:
1251  * @device: device structure
1252  * @disconnected: disconnected state
1253  *
1254  * Change disconnected state of device (only for device with networks)
1255  */
1256 int connman_device_set_disconnected(struct connman_device *device,
1257                                                 connman_bool_t disconnected)
1258 {
1259         DBG("device %p disconnected %d", device, disconnected);
1260
1261         switch (device->mode) {
1262         case CONNMAN_DEVICE_MODE_UNKNOWN:
1263                 return -EINVAL;
1264         case CONNMAN_DEVICE_MODE_NETWORK_SINGLE:
1265         case CONNMAN_DEVICE_MODE_NETWORK_MULTIPLE:
1266                 break;
1267         }
1268
1269         if (device->disconnected == disconnected)
1270                 return -EALREADY;
1271
1272         device->disconnected = disconnected;
1273
1274         if (disconnected == TRUE)
1275                 force_scan_trigger(device);
1276
1277         return 0;
1278 }
1279
1280 /**
1281  * connman_device_get_disconnected:
1282  * @device: device structure
1283  *
1284  * Get device disconnected state
1285  */
1286 connman_bool_t connman_device_get_disconnected(struct connman_device *device)
1287 {
1288         return device->disconnected;
1289 }
1290
1291 /**
1292  * connman_device_set_string:
1293  * @device: device structure
1294  * @key: unique identifier
1295  * @value: string value
1296  *
1297  * Set string value for specific key
1298  */
1299 int connman_device_set_string(struct connman_device *device,
1300                                         const char *key, const char *value)
1301 {
1302         DBG("device %p key %s value %s", device, key, value);
1303
1304         if (g_str_equal(key, "Address") == TRUE) {
1305                 g_free(device->address);
1306                 device->address = g_strdup(value);
1307         } else if (g_str_equal(key, "Name") == TRUE) {
1308                 g_free(device->name);
1309                 device->name = g_strdup(value);
1310         } else if (g_str_equal(key, "Node") == TRUE) {
1311                 g_free(device->node);
1312                 device->node = g_strdup(value);
1313         }
1314
1315         return connman_element_set_string(&device->element, key, value);
1316 }
1317
1318 /**
1319  * connman_device_get_string:
1320  * @device: device structure
1321  * @key: unique identifier
1322  *
1323  * Get string value for specific key
1324  */
1325 const char *connman_device_get_string(struct connman_device *device,
1326                                                         const char *key)
1327 {
1328         DBG("device %p key %s", device, key);
1329
1330         if (g_str_equal(key, "Address") == TRUE)
1331                 return device->address;
1332         else if (g_str_equal(key, "Name") == TRUE)
1333                 return device->name;
1334         else if (g_str_equal(key, "Node") == TRUE)
1335                 return device->node;
1336
1337         return connman_element_get_string(&device->element, key);
1338 }
1339
1340 static void set_offlinemode(struct connman_element *element, gpointer user_data)
1341 {
1342         struct connman_device *device = element->device;
1343         connman_bool_t offlinemode = GPOINTER_TO_UINT(user_data);
1344         connman_bool_t powered;
1345
1346         DBG("element %p name %s", element, element->name);
1347
1348         if (device == NULL)
1349                 return;
1350
1351         device->offlinemode = offlinemode;
1352
1353         powered = (offlinemode == TRUE) ? FALSE : TRUE;
1354
1355         if (device->powered == powered)
1356                 return;
1357
1358         if (device->powered_persistent == FALSE)
1359                 powered = FALSE;
1360
1361         set_powered(device, powered);
1362 }
1363
1364 int __connman_device_set_offlinemode(connman_bool_t offlinemode)
1365 {
1366         DBG("offlinmode %d", offlinemode);
1367
1368         __connman_element_foreach(NULL, CONNMAN_ELEMENT_TYPE_DEVICE,
1369                         set_offlinemode, GUINT_TO_POINTER(offlinemode));
1370
1371         __connman_notifier_offlinemode(offlinemode);
1372
1373         return 0;
1374 }
1375
1376 void __connman_device_increase_connections(struct connman_device *device)
1377 {
1378         device->connections++;
1379 }
1380
1381 void __connman_device_decrease_connections(struct connman_device *device)
1382 {
1383         device->connections--;
1384 }
1385
1386 /**
1387  * connman_device_add_network:
1388  * @device: device structure
1389  * @network: network structure
1390  *
1391  * Add new network to the device
1392  */
1393 int connman_device_add_network(struct connman_device *device,
1394                                         struct connman_network *network)
1395 {
1396         const char *identifier = connman_network_get_identifier(network);
1397         int err;
1398
1399         DBG("device %p network %p", device, network);
1400
1401         if (identifier == NULL)
1402                 return -EINVAL;
1403
1404         switch (device->mode) {
1405         case CONNMAN_DEVICE_MODE_UNKNOWN:
1406                 return -EINVAL;
1407         case CONNMAN_DEVICE_MODE_NETWORK_SINGLE:
1408         case CONNMAN_DEVICE_MODE_NETWORK_MULTIPLE:
1409                 break;
1410         }
1411
1412         __connman_network_set_device(network, device);
1413
1414         err = connman_element_register((struct connman_element *) network,
1415                                                         &device->element);
1416         if (err < 0) {
1417                 __connman_network_set_device(network, NULL);
1418                 return err;
1419         }
1420
1421         g_hash_table_insert(device->networks, g_strdup(identifier),
1422                                                                 network);
1423
1424         return 0;
1425 }
1426
1427 /**
1428  * connman_device_get_network:
1429  * @device: device structure
1430  * @identifier: network identifier
1431  *
1432  * Get network for given identifier
1433  */
1434 struct connman_network *connman_device_get_network(struct connman_device *device,
1435                                                         const char *identifier)
1436 {
1437         DBG("device %p identifier %s", device, identifier);
1438
1439         return g_hash_table_lookup(device->networks, identifier);
1440 }
1441
1442 /**
1443  * connman_device_remove_network:
1444  * @device: device structure
1445  * @identifier: network identifier
1446  *
1447  * Remove network for given identifier
1448  */
1449 int connman_device_remove_network(struct connman_device *device,
1450                                                         const char *identifier)
1451 {
1452         DBG("device %p identifier %s", device, identifier);
1453
1454         g_hash_table_remove(device->networks, identifier);
1455
1456         return 0;
1457 }
1458
1459 void connman_device_remove_all_networks(struct connman_device *device)
1460 {
1461         g_hash_table_remove_all(device->networks);
1462 }
1463
1464 void __connman_device_set_network(struct connman_device *device,
1465                                         struct connman_network *network)
1466 {
1467         const char *name;
1468
1469         if (device == NULL)
1470                 return;
1471
1472         if (device->network == network)
1473                 return;
1474
1475         if (device->network != NULL)
1476                 connman_network_unref(device->network);
1477
1478         if (network != NULL) {
1479                 name = connman_network_get_string(network,
1480                                                 CONNMAN_PROPERTY_ID_NAME);
1481                 g_free(device->last_network);
1482                 device->last_network = g_strdup(name);
1483
1484                 device->network = connman_network_ref(network);
1485         } else {
1486                 g_free(device->last_network);
1487                 device->last_network = NULL;
1488
1489                 device->network = NULL;
1490         }
1491 }
1492
1493 void __connman_device_set_reconnect(struct connman_device *device,
1494                                                 connman_bool_t reconnect)
1495 {
1496         device->reconnect = reconnect;
1497 }
1498
1499 connman_bool_t  __connman_device_get_reconnect(
1500                                 struct connman_device *device)
1501 {
1502         return device->reconnect;
1503 }
1504
1505 /**
1506  * connman_device_register:
1507  * @device: device structure
1508  *
1509  * Register device with the system
1510  */
1511 int connman_device_register(struct connman_device *device)
1512 {
1513         __connman_storage_load_device(device);
1514
1515         device->offlinemode = __connman_profile_get_offlinemode();
1516
1517         return connman_element_register(&device->element, NULL);
1518 }
1519
1520 /**
1521  * connman_device_unregister:
1522  * @device: device structure
1523  *
1524  * Unregister device with the system
1525  */
1526 void connman_device_unregister(struct connman_device *device)
1527 {
1528         __connman_storage_save_device(device);
1529
1530         connman_element_unregister(&device->element);
1531 }
1532
1533 /**
1534  * connman_device_get_data:
1535  * @device: device structure
1536  *
1537  * Get private device data pointer
1538  */
1539 void *connman_device_get_data(struct connman_device *device)
1540 {
1541         return device->driver_data;
1542 }
1543
1544 /**
1545  * connman_device_set_data:
1546  * @device: device structure
1547  * @data: data pointer
1548  *
1549  * Set private device data pointer
1550  */
1551 void connman_device_set_data(struct connman_device *device, void *data)
1552 {
1553         device->driver_data = data;
1554 }
1555
1556 static gboolean match_driver(struct connman_device *device,
1557                                         struct connman_device_driver *driver)
1558 {
1559         if (device->type == driver->type ||
1560                         driver->type == CONNMAN_DEVICE_TYPE_UNKNOWN)
1561                 return TRUE;
1562
1563         return FALSE;
1564 }
1565
1566 static int device_probe(struct connman_element *element)
1567 {
1568         struct connman_device *device = element->device;
1569         GSList *list;
1570
1571         DBG("element %p name %s", element, element->name);
1572
1573         if (device == NULL)
1574                 return -ENODEV;
1575
1576         if (device->driver != NULL)
1577                 return -EALREADY;
1578
1579         for (list = driver_list; list; list = list->next) {
1580                 struct connman_device_driver *driver = list->data;
1581
1582                 if (match_driver(device, driver) == FALSE)
1583                         continue;
1584
1585                 DBG("driver %p name %s", driver, driver->name);
1586
1587                 if (driver->probe(device) == 0) {
1588                         device->driver = driver;
1589                         break;
1590                 }
1591         }
1592
1593         if (device->driver == NULL)
1594                 return -ENODEV;
1595
1596         return setup_device(device);
1597 }
1598
1599 static void device_remove(struct connman_element *element)
1600 {
1601         struct connman_device *device = element->device;
1602
1603         DBG("element %p name %s", element, element->name);
1604
1605         if (device == NULL)
1606                 return;
1607
1608         if (device->driver == NULL)
1609                 return;
1610
1611         remove_device(device);
1612 }
1613
1614 static struct connman_driver device_driver = {
1615         .name           = "device",
1616         .type           = CONNMAN_ELEMENT_TYPE_DEVICE,
1617         .priority       = CONNMAN_DRIVER_PRIORITY_LOW,
1618         .probe          = device_probe,
1619         .remove         = device_remove,
1620 };
1621
1622 static int device_load(struct connman_device *device)
1623 {
1624         const char *ident = __connman_profile_active_ident();
1625         GKeyFile *keyfile;
1626         GError *error = NULL;
1627         gchar *identifier;
1628         connman_bool_t powered;
1629         int val;
1630
1631         DBG("device %p", device);
1632
1633         keyfile = __connman_storage_open_profile(ident);
1634         if (keyfile == NULL)
1635                 return 0;
1636
1637         identifier = g_strdup_printf("device_%s", device->element.name);
1638         if (identifier == NULL)
1639                 goto done;
1640
1641         powered = g_key_file_get_boolean(keyfile, identifier,
1642                                                 "Powered", &error);
1643         if (error == NULL)
1644                 device->powered_persistent = powered;
1645         g_clear_error(&error);
1646
1647         switch (device->mode) {
1648         case CONNMAN_DEVICE_MODE_UNKNOWN:
1649                 break;
1650         case CONNMAN_DEVICE_MODE_NETWORK_SINGLE:
1651         case CONNMAN_DEVICE_MODE_NETWORK_MULTIPLE:
1652                 val = g_key_file_get_integer(keyfile, identifier,
1653                                                 "ScanInterval", &error);
1654                 if (error == NULL && val > 0)
1655                         device->scan_interval = val;
1656                 g_clear_error(&error);
1657                 break;
1658         }
1659
1660 done:
1661         g_free(identifier);
1662
1663         __connman_storage_close_profile(ident, keyfile, FALSE);
1664
1665         return 0;
1666 }
1667
1668 static int device_save(struct connman_device *device)
1669 {
1670         const char *ident = __connman_profile_active_ident();
1671         GKeyFile *keyfile;
1672         gchar *identifier;
1673
1674         DBG("device %p", device);
1675
1676         keyfile = __connman_storage_open_profile(ident);
1677         if (keyfile == NULL)
1678                 return 0;
1679
1680         identifier = g_strdup_printf("device_%s", device->element.name);
1681         if (identifier == NULL)
1682                 goto done;
1683
1684         g_key_file_set_boolean(keyfile, identifier,
1685                                         "Powered", device->powered_persistent);
1686
1687         switch (device->mode) {
1688         case CONNMAN_DEVICE_MODE_UNKNOWN:
1689                 break;
1690         case CONNMAN_DEVICE_MODE_NETWORK_SINGLE:
1691         case CONNMAN_DEVICE_MODE_NETWORK_MULTIPLE:
1692                 if (device->scan_interval > 0)
1693                         g_key_file_set_integer(keyfile, identifier,
1694                                         "ScanInterval", device->scan_interval);
1695                 break;
1696         }
1697
1698 done:
1699         g_free(identifier);
1700
1701         __connman_storage_close_profile(ident, keyfile, TRUE);
1702
1703         return 0;
1704 }
1705
1706 static struct connman_storage device_storage = {
1707         .name           = "device",
1708         .priority       = CONNMAN_STORAGE_PRIORITY_LOW,
1709         .device_load    = device_load,
1710         .device_save    = device_save,
1711 };
1712
1713 int __connman_device_init(void)
1714 {
1715         DBG("");
1716
1717         connection = connman_dbus_get_connection();
1718
1719         if (connman_storage_register(&device_storage) < 0)
1720                 connman_error("Failed to register device storage");
1721
1722         return connman_driver_register(&device_driver);
1723 }
1724
1725 void __connman_device_cleanup(void)
1726 {
1727         DBG("");
1728
1729         connman_driver_unregister(&device_driver);
1730
1731         connman_storage_unregister(&device_storage);
1732
1733         dbus_connection_unref(connection);
1734 }