619fe5e3ea9b7e43b2e3dd9144c8099147d0fe90
[framework/connectivity/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 /**
1188  * connman_device_set_scanning:
1189  * @device: device structure
1190  * @scanning: scanning state
1191  *
1192  * Change scanning state of device
1193  */
1194 int connman_device_set_scanning(struct connman_device *device,
1195                                                 connman_bool_t scanning)
1196 {
1197         DBG("device %p scanning %d", device, scanning);
1198
1199         if (!device->driver || !device->driver->scan)
1200                 return -EINVAL;
1201
1202         if (device->scanning == scanning)
1203                 return -EALREADY;
1204
1205         device->scanning = scanning;
1206
1207         scanning_changed(device);
1208
1209         if (scanning == TRUE) {
1210                 reset_scan_trigger(device);
1211
1212                 g_hash_table_foreach(device->networks,
1213                                         mark_network_unavailable, NULL);
1214
1215                 return 0;
1216         }
1217
1218         __connman_device_cleanup_networks(device);
1219
1220         if (device->connections > 0)
1221                 return 0;
1222
1223         if (device->disconnected == TRUE)
1224                 return 0;
1225
1226         __connman_service_auto_connect();
1227
1228         return 0;
1229 }
1230
1231 /**
1232  * connman_device_set_disconnected:
1233  * @device: device structure
1234  * @disconnected: disconnected state
1235  *
1236  * Change disconnected state of device (only for device with networks)
1237  */
1238 int connman_device_set_disconnected(struct connman_device *device,
1239                                                 connman_bool_t disconnected)
1240 {
1241         DBG("device %p disconnected %d", device, disconnected);
1242
1243         switch (device->mode) {
1244         case CONNMAN_DEVICE_MODE_UNKNOWN:
1245                 return -EINVAL;
1246         case CONNMAN_DEVICE_MODE_NETWORK_SINGLE:
1247         case CONNMAN_DEVICE_MODE_NETWORK_MULTIPLE:
1248                 break;
1249         }
1250
1251         if (device->disconnected == disconnected)
1252                 return -EALREADY;
1253
1254         device->disconnected = disconnected;
1255
1256         if (disconnected == TRUE)
1257                 force_scan_trigger(device);
1258
1259         return 0;
1260 }
1261
1262 /**
1263  * connman_device_get_disconnected:
1264  * @device: device structure
1265  *
1266  * Get device disconnected state
1267  */
1268 connman_bool_t connman_device_get_disconnected(struct connman_device *device)
1269 {
1270         return device->disconnected;
1271 }
1272
1273 /**
1274  * connman_device_set_string:
1275  * @device: device structure
1276  * @key: unique identifier
1277  * @value: string value
1278  *
1279  * Set string value for specific key
1280  */
1281 int connman_device_set_string(struct connman_device *device,
1282                                         const char *key, const char *value)
1283 {
1284         DBG("device %p key %s value %s", device, key, value);
1285
1286         if (g_str_equal(key, "Address") == TRUE) {
1287                 g_free(device->address);
1288                 device->address = g_strdup(value);
1289         } else if (g_str_equal(key, "Name") == TRUE) {
1290                 g_free(device->name);
1291                 device->name = g_strdup(value);
1292         } else if (g_str_equal(key, "Node") == TRUE) {
1293                 g_free(device->node);
1294                 device->node = g_strdup(value);
1295         }
1296
1297         return connman_element_set_string(&device->element, key, value);
1298 }
1299
1300 /**
1301  * connman_device_get_string:
1302  * @device: device structure
1303  * @key: unique identifier
1304  *
1305  * Get string value for specific key
1306  */
1307 const char *connman_device_get_string(struct connman_device *device,
1308                                                         const char *key)
1309 {
1310         DBG("device %p key %s", device, key);
1311
1312         if (g_str_equal(key, "Address") == TRUE)
1313                 return device->address;
1314         else if (g_str_equal(key, "Name") == TRUE)
1315                 return device->name;
1316         else if (g_str_equal(key, "Node") == TRUE)
1317                 return device->node;
1318
1319         return connman_element_get_string(&device->element, key);
1320 }
1321
1322 static void set_offlinemode(struct connman_element *element, gpointer user_data)
1323 {
1324         struct connman_device *device = element->device;
1325         connman_bool_t offlinemode = GPOINTER_TO_UINT(user_data);
1326         connman_bool_t powered;
1327
1328         DBG("element %p name %s", element, element->name);
1329
1330         if (device == NULL)
1331                 return;
1332
1333         device->offlinemode = offlinemode;
1334
1335         powered = (offlinemode == TRUE) ? FALSE : TRUE;
1336
1337         if (device->powered == powered)
1338                 return;
1339
1340         if (device->powered_persistent == FALSE)
1341                 powered = FALSE;
1342
1343         set_powered(device, powered);
1344 }
1345
1346 int __connman_device_set_offlinemode(connman_bool_t offlinemode)
1347 {
1348         DBG("offlinmode %d", offlinemode);
1349
1350         __connman_element_foreach(NULL, CONNMAN_ELEMENT_TYPE_DEVICE,
1351                         set_offlinemode, GUINT_TO_POINTER(offlinemode));
1352
1353         __connman_notifier_offlinemode(offlinemode);
1354
1355         return 0;
1356 }
1357
1358 void __connman_device_increase_connections(struct connman_device *device)
1359 {
1360         device->connections++;
1361 }
1362
1363 void __connman_device_decrease_connections(struct connman_device *device)
1364 {
1365         device->connections--;
1366 }
1367
1368 /**
1369  * connman_device_add_network:
1370  * @device: device structure
1371  * @network: network structure
1372  *
1373  * Add new network to the device
1374  */
1375 int connman_device_add_network(struct connman_device *device,
1376                                         struct connman_network *network)
1377 {
1378         const char *identifier = connman_network_get_identifier(network);
1379         int err;
1380
1381         DBG("device %p network %p", device, network);
1382
1383         if (identifier == NULL)
1384                 return -EINVAL;
1385
1386         switch (device->mode) {
1387         case CONNMAN_DEVICE_MODE_UNKNOWN:
1388                 return -EINVAL;
1389         case CONNMAN_DEVICE_MODE_NETWORK_SINGLE:
1390         case CONNMAN_DEVICE_MODE_NETWORK_MULTIPLE:
1391                 break;
1392         }
1393
1394         __connman_network_set_device(network, device);
1395
1396         err = connman_element_register((struct connman_element *) network,
1397                                                         &device->element);
1398         if (err < 0) {
1399                 __connman_network_set_device(network, NULL);
1400                 return err;
1401         }
1402
1403         g_hash_table_insert(device->networks, g_strdup(identifier),
1404                                                                 network);
1405
1406         return 0;
1407 }
1408
1409 /**
1410  * connman_device_get_network:
1411  * @device: device structure
1412  * @identifier: network identifier
1413  *
1414  * Get network for given identifier
1415  */
1416 struct connman_network *connman_device_get_network(struct connman_device *device,
1417                                                         const char *identifier)
1418 {
1419         DBG("device %p identifier %s", device, identifier);
1420
1421         return g_hash_table_lookup(device->networks, identifier);
1422 }
1423
1424 /**
1425  * connman_device_remove_network:
1426  * @device: device structure
1427  * @identifier: network identifier
1428  *
1429  * Remove network for given identifier
1430  */
1431 int connman_device_remove_network(struct connman_device *device,
1432                                                         const char *identifier)
1433 {
1434         DBG("device %p identifier %s", device, identifier);
1435
1436         g_hash_table_remove(device->networks, identifier);
1437
1438         return 0;
1439 }
1440
1441 void connman_device_remove_all_networks(struct connman_device *device)
1442 {
1443         g_hash_table_remove_all(device->networks);
1444 }
1445
1446 void __connman_device_set_network(struct connman_device *device,
1447                                         struct connman_network *network)
1448 {
1449         const char *name;
1450
1451         if (device == NULL)
1452                 return;
1453
1454         if (device->network == network)
1455                 return;
1456
1457         if (device->network != NULL)
1458                 connman_network_unref(device->network);
1459
1460         if (network != NULL) {
1461                 name = connman_network_get_string(network,
1462                                                 CONNMAN_PROPERTY_ID_NAME);
1463                 g_free(device->last_network);
1464                 device->last_network = g_strdup(name);
1465
1466                 device->network = connman_network_ref(network);
1467         } else {
1468                 g_free(device->last_network);
1469                 device->last_network = NULL;
1470
1471                 device->network = NULL;
1472         }
1473 }
1474
1475 void __connman_device_set_reconnect(struct connman_device *device,
1476                                                 connman_bool_t reconnect)
1477 {
1478         device->reconnect = reconnect;
1479 }
1480
1481 connman_bool_t  __connman_device_get_reconnect(
1482                                 struct connman_device *device)
1483 {
1484         return device->reconnect;
1485 }
1486
1487 /**
1488  * connman_device_register:
1489  * @device: device structure
1490  *
1491  * Register device with the system
1492  */
1493 int connman_device_register(struct connman_device *device)
1494 {
1495         __connman_storage_load_device(device);
1496
1497         device->offlinemode = __connman_profile_get_offlinemode();
1498
1499         return connman_element_register(&device->element, NULL);
1500 }
1501
1502 /**
1503  * connman_device_unregister:
1504  * @device: device structure
1505  *
1506  * Unregister device with the system
1507  */
1508 void connman_device_unregister(struct connman_device *device)
1509 {
1510         __connman_storage_save_device(device);
1511
1512         connman_element_unregister(&device->element);
1513 }
1514
1515 /**
1516  * connman_device_get_data:
1517  * @device: device structure
1518  *
1519  * Get private device data pointer
1520  */
1521 void *connman_device_get_data(struct connman_device *device)
1522 {
1523         return device->driver_data;
1524 }
1525
1526 /**
1527  * connman_device_set_data:
1528  * @device: device structure
1529  * @data: data pointer
1530  *
1531  * Set private device data pointer
1532  */
1533 void connman_device_set_data(struct connman_device *device, void *data)
1534 {
1535         device->driver_data = data;
1536 }
1537
1538 static gboolean match_driver(struct connman_device *device,
1539                                         struct connman_device_driver *driver)
1540 {
1541         if (device->type == driver->type ||
1542                         driver->type == CONNMAN_DEVICE_TYPE_UNKNOWN)
1543                 return TRUE;
1544
1545         return FALSE;
1546 }
1547
1548 static int device_probe(struct connman_element *element)
1549 {
1550         struct connman_device *device = element->device;
1551         GSList *list;
1552
1553         DBG("element %p name %s", element, element->name);
1554
1555         if (device == NULL)
1556                 return -ENODEV;
1557
1558         if (device->driver != NULL)
1559                 return -EALREADY;
1560
1561         for (list = driver_list; list; list = list->next) {
1562                 struct connman_device_driver *driver = list->data;
1563
1564                 if (match_driver(device, driver) == FALSE)
1565                         continue;
1566
1567                 DBG("driver %p name %s", driver, driver->name);
1568
1569                 if (driver->probe(device) == 0) {
1570                         device->driver = driver;
1571                         break;
1572                 }
1573         }
1574
1575         if (device->driver == NULL)
1576                 return -ENODEV;
1577
1578         return setup_device(device);
1579 }
1580
1581 static void device_remove(struct connman_element *element)
1582 {
1583         struct connman_device *device = element->device;
1584
1585         DBG("element %p name %s", element, element->name);
1586
1587         if (device == NULL)
1588                 return;
1589
1590         if (device->driver == NULL)
1591                 return;
1592
1593         remove_device(device);
1594 }
1595
1596 static struct connman_driver device_driver = {
1597         .name           = "device",
1598         .type           = CONNMAN_ELEMENT_TYPE_DEVICE,
1599         .priority       = CONNMAN_DRIVER_PRIORITY_LOW,
1600         .probe          = device_probe,
1601         .remove         = device_remove,
1602 };
1603
1604 static int device_load(struct connman_device *device)
1605 {
1606         const char *ident = __connman_profile_active_ident();
1607         GKeyFile *keyfile;
1608         GError *error = NULL;
1609         gchar *identifier;
1610         connman_bool_t powered;
1611         int val;
1612
1613         DBG("device %p", device);
1614
1615         keyfile = __connman_storage_open_profile(ident);
1616         if (keyfile == NULL)
1617                 return 0;
1618
1619         identifier = g_strdup_printf("device_%s", device->element.name);
1620         if (identifier == NULL)
1621                 goto done;
1622
1623         powered = g_key_file_get_boolean(keyfile, identifier,
1624                                                 "Powered", &error);
1625         if (error == NULL)
1626                 device->powered_persistent = powered;
1627         g_clear_error(&error);
1628
1629         switch (device->mode) {
1630         case CONNMAN_DEVICE_MODE_UNKNOWN:
1631                 break;
1632         case CONNMAN_DEVICE_MODE_NETWORK_SINGLE:
1633         case CONNMAN_DEVICE_MODE_NETWORK_MULTIPLE:
1634                 val = g_key_file_get_integer(keyfile, identifier,
1635                                                 "ScanInterval", &error);
1636                 if (error == NULL && val > 0)
1637                         device->scan_interval = val;
1638                 g_clear_error(&error);
1639                 break;
1640         }
1641
1642 done:
1643         g_free(identifier);
1644
1645         __connman_storage_close_profile(ident, keyfile, FALSE);
1646
1647         return 0;
1648 }
1649
1650 static int device_save(struct connman_device *device)
1651 {
1652         const char *ident = __connman_profile_active_ident();
1653         GKeyFile *keyfile;
1654         gchar *identifier;
1655
1656         DBG("device %p", device);
1657
1658         keyfile = __connman_storage_open_profile(ident);
1659         if (keyfile == NULL)
1660                 return 0;
1661
1662         identifier = g_strdup_printf("device_%s", device->element.name);
1663         if (identifier == NULL)
1664                 goto done;
1665
1666         g_key_file_set_boolean(keyfile, identifier,
1667                                         "Powered", device->powered_persistent);
1668
1669         switch (device->mode) {
1670         case CONNMAN_DEVICE_MODE_UNKNOWN:
1671                 break;
1672         case CONNMAN_DEVICE_MODE_NETWORK_SINGLE:
1673         case CONNMAN_DEVICE_MODE_NETWORK_MULTIPLE:
1674                 if (device->scan_interval > 0)
1675                         g_key_file_set_integer(keyfile, identifier,
1676                                         "ScanInterval", device->scan_interval);
1677                 break;
1678         }
1679
1680 done:
1681         g_free(identifier);
1682
1683         __connman_storage_close_profile(ident, keyfile, TRUE);
1684
1685         return 0;
1686 }
1687
1688 static struct connman_storage device_storage = {
1689         .name           = "device",
1690         .priority       = CONNMAN_STORAGE_PRIORITY_LOW,
1691         .device_load    = device_load,
1692         .device_save    = device_save,
1693 };
1694
1695 int __connman_device_init(void)
1696 {
1697         DBG("");
1698
1699         connection = connman_dbus_get_connection();
1700
1701         if (connman_storage_register(&device_storage) < 0)
1702                 connman_error("Failed to register device storage");
1703
1704         return connman_driver_register(&device_driver);
1705 }
1706
1707 void __connman_device_cleanup(void)
1708 {
1709         DBG("");
1710
1711         connman_driver_unregister(&device_driver);
1712
1713         connman_storage_unregister(&device_storage);
1714
1715         dbus_connection_unref(connection);
1716 }