technology: Refactor enable/disable technology
[platform/upstream/connman.git] / src / technology.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2012  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;
34
35 static GSList *technology_list = NULL;
36
37 /*
38  * List of devices with no technology associated with them either because of
39  * no compiled in support or the driver is not yet loaded.
40 */
41 static GSList *techless_device_list = NULL;
42 static GHashTable *rfkill_list;
43
44 static connman_bool_t global_offlinemode;
45
46 struct connman_rfkill {
47         unsigned int index;
48         enum connman_service_type type;
49         connman_bool_t softblock;
50         connman_bool_t hardblock;
51 };
52
53 struct connman_technology {
54         int refcount;
55         enum connman_service_type type;
56         char *path;
57         GSList *device_list;
58         int enabled;
59         char *regdom;
60         connman_bool_t connected;
61
62         connman_bool_t tethering;
63         char *tethering_ident;
64         char *tethering_passphrase;
65
66         connman_bool_t enable_persistent; /* Save the tech state */
67
68         struct connman_technology_driver *driver;
69         void *driver_data;
70
71         DBusMessage *pending_reply;
72         guint pending_timeout;
73
74         GSList *scan_pending;
75 };
76
77 static GSList *driver_list = NULL;
78
79 static gint compare_priority(gconstpointer a, gconstpointer b)
80 {
81         const struct connman_technology_driver *driver1 = a;
82         const struct connman_technology_driver *driver2 = b;
83
84         return driver2->priority - driver1->priority;
85 }
86
87 static void rfkill_check(gpointer key, gpointer value, gpointer user_data)
88 {
89         struct connman_rfkill *rfkill = value;
90         enum connman_service_type type = GPOINTER_TO_INT(user_data);
91
92         /* Calling _technology_rfkill_add will update the tech. */
93         if (rfkill->type == type)
94                 __connman_technology_add_rfkill(rfkill->index, type,
95                                 rfkill->softblock, rfkill->hardblock);
96 }
97
98 /**
99  * connman_technology_driver_register:
100  * @driver: Technology driver definition
101  *
102  * Register a new technology driver
103  *
104  * Returns: %0 on success
105  */
106 int connman_technology_driver_register(struct connman_technology_driver *driver)
107 {
108         GSList *list;
109         struct connman_device *device;
110         enum connman_service_type type;
111
112         DBG("Registering %s driver", driver->name);
113
114         driver_list = g_slist_insert_sorted(driver_list, driver,
115                                                         compare_priority);
116
117         if (techless_device_list == NULL)
118                 goto check_rfkill;
119
120         /*
121          * Check for technology less devices if this driver
122          * can service any of them.
123         */
124         for (list = techless_device_list; list; list = list->next) {
125                 device = list->data;
126
127                 type = __connman_device_get_service_type(device);
128                 if (type != driver->type)
129                         continue;
130
131                 techless_device_list = g_slist_remove(techless_device_list,
132                                                                 device);
133
134                 __connman_technology_add_device(device);
135         }
136
137 check_rfkill:
138         /* Check for orphaned rfkill switches. */
139         g_hash_table_foreach(rfkill_list, rfkill_check,
140                                         GINT_TO_POINTER(driver->type));
141
142         return 0;
143 }
144
145 /**
146  * connman_technology_driver_unregister:
147  * @driver: Technology driver definition
148  *
149  * Remove a previously registered technology driver
150  */
151 void connman_technology_driver_unregister(struct connman_technology_driver *driver)
152 {
153         GSList *list;
154         struct connman_technology *technology;
155
156         DBG("Unregistering driver %p name %s", driver, driver->name);
157
158         for (list = technology_list; list; list = list->next) {
159                 technology = list->data;
160
161                 if (technology->driver == NULL)
162                         continue;
163
164                 if (technology->type == driver->type) {
165                         technology->driver->remove(technology);
166                         technology->driver = NULL;
167                 }
168         }
169
170         driver_list = g_slist_remove(driver_list, driver);
171 }
172
173 static void tethering_changed(struct connman_technology *technology)
174 {
175         connman_bool_t tethering = technology->tethering;
176
177         connman_dbus_property_changed_basic(technology->path,
178                                 CONNMAN_TECHNOLOGY_INTERFACE, "Tethering",
179                                                 DBUS_TYPE_BOOLEAN, &tethering);
180 }
181
182 void connman_technology_tethering_notify(struct connman_technology *technology,
183                                                         connman_bool_t enabled)
184 {
185         GSList *list;
186
187         DBG("technology %p enabled %u", technology, enabled);
188
189         if (technology->tethering == enabled)
190                 return;
191
192         technology->tethering = enabled;
193
194         tethering_changed(technology);
195
196         if (enabled == TRUE)
197                 __connman_tethering_set_enabled();
198         else {
199                 for (list = technology_list; list; list = list->next) {
200                         struct connman_technology *other_tech = list->data;
201                         if (other_tech->tethering == TRUE)
202                                 break;
203                 }
204                 if (list == NULL)
205                         __connman_tethering_set_disabled();
206         }
207 }
208
209 static int set_tethering(struct connman_technology *technology,
210                                 connman_bool_t enabled)
211 {
212         const char *ident, *passphrase, *bridge;
213
214         ident = technology->tethering_ident;
215         passphrase = technology->tethering_passphrase;
216
217         if (technology->driver == NULL ||
218                         technology->driver->set_tethering == NULL)
219                 return -EOPNOTSUPP;
220
221         bridge = __connman_tethering_get_bridge();
222         if (bridge == NULL)
223                 return -EOPNOTSUPP;
224
225         if (technology->type == CONNMAN_SERVICE_TYPE_WIFI &&
226             (ident == NULL || passphrase == NULL))
227                 return -EINVAL;
228
229         return technology->driver->set_tethering(technology, ident, passphrase,
230                                                         bridge, enabled);
231 }
232
233 void connman_technology_regdom_notify(struct connman_technology *technology,
234                                                         const char *alpha2)
235 {
236         DBG("");
237
238         if (alpha2 == NULL)
239                 connman_error("Failed to set regulatory domain");
240         else
241                 DBG("Regulatory domain set to %s", alpha2);
242
243         g_free(technology->regdom);
244         technology->regdom = g_strdup(alpha2);
245 }
246
247 static int set_regdom_by_device(struct connman_technology *technology,
248                                                         const char *alpha2)
249 {
250         GSList *list;
251
252         for (list = technology->device_list; list; list = list->next) {
253                 struct connman_device *device = list->data;
254
255                 if (connman_device_set_regdom(device, alpha2) != 0)
256                         return -ENOTSUP;
257         }
258
259         return 0;
260 }
261
262 int connman_technology_set_regdom(const char *alpha2)
263 {
264         GSList *list;
265
266         for (list = technology_list; list; list = list->next) {
267                 struct connman_technology *technology = list->data;
268
269                 if (set_regdom_by_device(technology, alpha2) != 0) {
270                         if (technology->driver == NULL)
271                                 continue;
272
273                         if (technology->driver->set_regdom != NULL)
274                                 technology->driver->set_regdom(technology,
275                                                                 alpha2);
276                 }
277         }
278
279         return 0;
280 }
281
282 static void free_rfkill(gpointer data)
283 {
284         struct connman_rfkill *rfkill = data;
285
286         g_free(rfkill);
287 }
288
289 static const char *get_name(enum connman_service_type type)
290 {
291         switch (type) {
292         case CONNMAN_SERVICE_TYPE_UNKNOWN:
293         case CONNMAN_SERVICE_TYPE_SYSTEM:
294         case CONNMAN_SERVICE_TYPE_GPS:
295         case CONNMAN_SERVICE_TYPE_VPN:
296         case CONNMAN_SERVICE_TYPE_GADGET:
297                 break;
298         case CONNMAN_SERVICE_TYPE_ETHERNET:
299                 return "Wired";
300         case CONNMAN_SERVICE_TYPE_WIFI:
301                 return "WiFi";
302         case CONNMAN_SERVICE_TYPE_WIMAX:
303                 return "WiMAX";
304         case CONNMAN_SERVICE_TYPE_BLUETOOTH:
305                 return "Bluetooth";
306         case CONNMAN_SERVICE_TYPE_CELLULAR:
307                 return "Cellular";
308         }
309
310         return NULL;
311 }
312
313 static void technology_save(struct connman_technology *technology)
314 {
315         GKeyFile *keyfile;
316         gchar *identifier;
317
318         DBG("technology %p", technology);
319
320         keyfile = __connman_storage_load_global();
321         if (keyfile == NULL)
322                 keyfile = g_key_file_new();
323
324         identifier = g_strdup_printf("%s", get_name(technology->type));
325         if (identifier == NULL)
326                 goto done;
327
328         g_key_file_set_boolean(keyfile, identifier, "Enable",
329                                 technology->enable_persistent);
330
331         if (technology->tethering_ident != NULL)
332                 g_key_file_set_string(keyfile, identifier,
333                                         "Tethering.Identifier",
334                                         technology->tethering_ident);
335
336         if (technology->tethering_passphrase != NULL)
337                 g_key_file_set_string(keyfile, identifier,
338                                         "Tethering.Passphrase",
339                                         technology->tethering_passphrase);
340
341 done:
342         g_free(identifier);
343
344         __connman_storage_save_global(keyfile);
345
346         g_key_file_free(keyfile);
347
348         return;
349 }
350
351 static void technology_load(struct connman_technology *technology)
352 {
353         GKeyFile *keyfile;
354         gchar *identifier;
355         GError *error = NULL;
356         connman_bool_t enable;
357
358         DBG("technology %p", technology);
359
360         keyfile = __connman_storage_load_global();
361         /* Fallback on disabling technology if file not found. */
362         if (keyfile == NULL) {
363                 if (technology->type == CONNMAN_SERVICE_TYPE_ETHERNET)
364                         /* We enable ethernet by default */
365                         technology->enable_persistent = TRUE;
366                 else
367                         technology->enable_persistent = FALSE;
368                 return;
369         }
370
371         identifier = g_strdup_printf("%s", get_name(technology->type));
372         if (identifier == NULL)
373                 goto done;
374
375         enable = g_key_file_get_boolean(keyfile, identifier, "Enable", &error);
376         if (error == NULL)
377                 technology->enable_persistent = enable;
378         else {
379                 if (technology->type == CONNMAN_SERVICE_TYPE_ETHERNET)
380                         technology->enable_persistent = TRUE;
381                 else
382                         technology->enable_persistent = FALSE;
383
384                 technology_save(technology);
385                 g_clear_error(&error);
386         }
387
388         technology->tethering_ident = g_key_file_get_string(keyfile,
389                                 identifier, "Tethering.Identifier", NULL);
390
391         technology->tethering_passphrase = g_key_file_get_string(keyfile,
392                                 identifier, "Tethering.Passphrase", NULL);
393 done:
394         g_free(identifier);
395
396         g_key_file_free(keyfile);
397
398         return;
399 }
400
401 connman_bool_t __connman_technology_get_offlinemode(void)
402 {
403         return global_offlinemode;
404 }
405
406 static void connman_technology_save_offlinemode()
407 {
408         GKeyFile *keyfile;
409
410         keyfile = __connman_storage_load_global();
411         if (keyfile == NULL)
412                 keyfile = g_key_file_new();
413
414         g_key_file_set_boolean(keyfile, "global",
415                                         "OfflineMode", global_offlinemode);
416
417         __connman_storage_save_global(keyfile);
418
419         g_key_file_free(keyfile);
420
421         return;
422 }
423
424 static connman_bool_t connman_technology_load_offlinemode()
425 {
426         GKeyFile *keyfile;
427         GError *error = NULL;
428         connman_bool_t offlinemode;
429
430         /* If there is a error, we enable offlinemode */
431         keyfile = __connman_storage_load_global();
432         if (keyfile == NULL)
433                 return FALSE;
434
435         offlinemode = g_key_file_get_boolean(keyfile, "global",
436                                                 "OfflineMode", &error);
437         if (error != NULL) {
438                 offlinemode = FALSE;
439                 g_clear_error(&error);
440         }
441
442         g_key_file_free(keyfile);
443
444         return offlinemode;
445 }
446
447 static void append_properties(DBusMessageIter *iter,
448                 struct connman_technology *technology)
449 {
450         DBusMessageIter dict;
451         const char *str;
452         connman_bool_t powered;
453
454         connman_dbus_dict_open(iter, &dict);
455
456         str = get_name(technology->type);
457         if (str != NULL)
458                 connman_dbus_dict_append_basic(&dict, "Name",
459                                                 DBUS_TYPE_STRING, &str);
460
461         str = __connman_service_type2string(technology->type);
462         if (str != NULL)
463                 connman_dbus_dict_append_basic(&dict, "Type",
464                                                 DBUS_TYPE_STRING, &str);
465
466         __sync_synchronize();
467         if (technology->enabled > 0)
468                 powered = TRUE;
469         else
470                 powered = FALSE;
471         connman_dbus_dict_append_basic(&dict, "Powered",
472                                         DBUS_TYPE_BOOLEAN, &powered);
473
474         connman_dbus_dict_append_basic(&dict, "Connected",
475                                         DBUS_TYPE_BOOLEAN,
476                                         &technology->connected);
477
478         connman_dbus_dict_append_basic(&dict, "Tethering",
479                                         DBUS_TYPE_BOOLEAN,
480                                         &technology->tethering);
481
482         if (technology->tethering_ident != NULL)
483                 connman_dbus_dict_append_basic(&dict, "TetheringIdentifier",
484                                                 DBUS_TYPE_STRING,
485                                                 &technology->tethering_ident);
486
487         if (technology->tethering_passphrase != NULL)
488                 connman_dbus_dict_append_basic(&dict, "TetheringPassphrase",
489                                                 DBUS_TYPE_STRING,
490                                                 &technology->tethering_passphrase);
491
492         connman_dbus_dict_close(iter, &dict);
493 }
494
495 static void technology_added_signal(struct connman_technology *technology)
496 {
497         DBusMessage *signal;
498         DBusMessageIter iter;
499
500         signal = dbus_message_new_signal(CONNMAN_MANAGER_PATH,
501                         CONNMAN_MANAGER_INTERFACE, "TechnologyAdded");
502         if (signal == NULL)
503                 return;
504
505         dbus_message_iter_init_append(signal, &iter);
506         dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
507                                                         &technology->path);
508         append_properties(&iter, technology);
509
510         dbus_connection_send(connection, signal, NULL);
511         dbus_message_unref(signal);
512 }
513
514 static void technology_removed_signal(struct connman_technology *technology)
515 {
516         g_dbus_emit_signal(connection, CONNMAN_MANAGER_PATH,
517                         CONNMAN_MANAGER_INTERFACE, "TechnologyRemoved",
518                         DBUS_TYPE_OBJECT_PATH, &technology->path,
519                         DBUS_TYPE_INVALID);
520 }
521
522 static DBusMessage *get_properties(DBusConnection *conn,
523                                         DBusMessage *message, void *user_data)
524 {
525         struct connman_technology *technology = user_data;
526         DBusMessage *reply;
527         DBusMessageIter iter;
528
529         reply = dbus_message_new_method_return(message);
530         if (reply == NULL)
531                 return NULL;
532
533         dbus_message_iter_init_append(reply, &iter);
534         append_properties(&iter, technology);
535
536         return reply;
537 }
538
539 void __connman_technology_list_struct(DBusMessageIter *array)
540 {
541         GSList *list;
542         DBusMessageIter entry;
543
544         for (list = technology_list; list; list = list->next) {
545                 struct connman_technology *technology = list->data;
546
547                 if (technology->path == NULL)
548                         continue;
549
550                 dbus_message_iter_open_container(array, DBUS_TYPE_STRUCT,
551                                 NULL, &entry);
552                 dbus_message_iter_append_basic(&entry, DBUS_TYPE_OBJECT_PATH,
553                                 &technology->path);
554                 append_properties(&entry, technology);
555                 dbus_message_iter_close_container(array, &entry);
556         }
557 }
558
559 static gboolean technology_pending_reply(gpointer user_data)
560 {
561         struct connman_technology *technology = user_data;
562         DBusMessage *reply;
563
564         /* Power request timedout, send ETIMEDOUT. */
565         if (technology->pending_reply != NULL) {
566                 reply = __connman_error_failed(technology->pending_reply, ETIMEDOUT);
567                 if (reply != NULL)
568                         g_dbus_send_message(connection, reply);
569
570                 dbus_message_unref(technology->pending_reply);
571                 technology->pending_reply = NULL;
572                 technology->pending_timeout = 0;
573         }
574
575         return FALSE;
576 }
577
578 static int technology_enable(struct connman_technology *technology)
579 {
580         GSList *list;
581         int err = 0;
582
583         DBG("technology %p enable", technology);
584
585         __sync_synchronize();
586         if (technology->enabled > 0) {
587                 err = -EALREADY;
588                 goto done;
589         }
590
591         if (technology->pending_reply != NULL) {
592                 err = -EBUSY;
593                 goto done;
594         }
595
596         __connman_rfkill_block(technology->type, FALSE);
597
598         for (list = technology->device_list; list; list = list->next) {
599                 struct connman_device *device = list->data;
600
601                 err = __connman_device_enable(device);
602         }
603
604 done:
605         return err;
606 }
607
608 static int technology_disable(struct connman_technology *technology)
609 {
610         GSList *list;
611         int err = 0;
612
613         DBG("technology %p disable", technology);
614
615         __sync_synchronize();
616         if (technology->enabled == 0) {
617                 err = -EALREADY;
618                 goto done;
619         }
620
621         if (technology->pending_reply != NULL) {
622                 err = -EBUSY;
623                 goto done;
624         }
625
626         if (technology->tethering == TRUE)
627                 set_tethering(technology, FALSE);
628
629         __connman_rfkill_block(technology->type, TRUE);
630
631         for (list = technology->device_list; list; list = list->next) {
632                 struct connman_device *device = list->data;
633
634                 err = __connman_device_disable(device);
635         }
636
637 done:
638         return err;
639 }
640
641 static DBusMessage *set_powered(struct connman_technology *technology,
642                                 DBusMessage *msg, connman_bool_t powered)
643 {
644         DBusMessage *reply = NULL;
645         connman_bool_t persistent;
646         int err;
647
648         if (powered == TRUE) {
649                 err = technology_enable(technology);
650                 persistent = TRUE;
651         } else {
652                 err = technology_disable(technology);
653                 persistent = FALSE;
654         }
655
656         if (err != -EBUSY) {
657                 technology->enable_persistent = persistent;
658                 technology_save(technology);
659         }
660
661         if (err == -EINPROGRESS) {
662                 technology->pending_reply = dbus_message_ref(msg);
663                 technology->pending_timeout = g_timeout_add_seconds(10,
664                                         technology_pending_reply, technology);
665         } else if (err == -EALREADY) {
666                 if (powered == TRUE)
667                         reply = __connman_error_already_enabled(msg);
668                 else
669                         reply = __connman_error_already_disabled(msg);
670         } else if (err < 0)
671                 reply = __connman_error_failed(msg, -err);
672         else
673                 reply = g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
674
675         return reply;
676 }
677
678 static DBusMessage *set_property(DBusConnection *conn,
679                                         DBusMessage *msg, void *data)
680 {
681         struct connman_technology *technology = data;
682         DBusMessageIter iter, value;
683         const char *name;
684         int type;
685
686         DBG("conn %p", conn);
687
688         if (dbus_message_iter_init(msg, &iter) == FALSE)
689                 return __connman_error_invalid_arguments(msg);
690
691         if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_STRING)
692                 return __connman_error_invalid_arguments(msg);
693
694         dbus_message_iter_get_basic(&iter, &name);
695         dbus_message_iter_next(&iter);
696
697         if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_VARIANT)
698                 return __connman_error_invalid_arguments(msg);
699
700         dbus_message_iter_recurse(&iter, &value);
701
702         type = dbus_message_iter_get_arg_type(&value);
703
704         DBG("property %s", name);
705
706         if (g_str_equal(name, "Tethering") == TRUE) {
707                 int err;
708                 connman_bool_t tethering;
709
710                 if (type != DBUS_TYPE_BOOLEAN)
711                         return __connman_error_invalid_arguments(msg);
712
713                 dbus_message_iter_get_basic(&value, &tethering);
714
715                 if (technology->tethering == tethering)
716                         return __connman_error_already_enabled(msg);
717
718                 err = set_tethering(technology, tethering);
719                 if (err < 0)
720                         return __connman_error_failed(msg, -err);
721
722         } else if (g_str_equal(name, "TetheringIdentifier") == TRUE) {
723                 const char *str;
724
725                 dbus_message_iter_get_basic(&value, &str);
726
727                 if (technology->type != CONNMAN_SERVICE_TYPE_WIFI)
728                         return __connman_error_not_supported(msg);
729
730                 if (strlen(str) < 1 || strlen(str) > 32)
731                         return __connman_error_invalid_arguments(msg);
732
733                 technology->tethering_ident = g_strdup(str);
734                 technology_save(technology);
735         } else if (g_str_equal(name, "TetheringPassphrase") == TRUE) {
736                 const char *str;
737
738                 dbus_message_iter_get_basic(&value, &str);
739
740                 if (technology->type != CONNMAN_SERVICE_TYPE_WIFI)
741                         return __connman_error_not_supported(msg);
742
743                 if (strlen(str) < 8 || strlen(str) > 63)
744                         return __connman_error_passphrase_required(msg);
745
746                 technology->tethering_passphrase = g_strdup(str);
747                 technology_save(technology);
748         } else if (g_str_equal(name, "Powered") == TRUE) {
749                 connman_bool_t enable;
750
751                 if (type != DBUS_TYPE_BOOLEAN)
752                         return __connman_error_invalid_arguments(msg);
753
754                 dbus_message_iter_get_basic(&value, &enable);
755
756                 return set_powered(technology, msg, enable);
757         } else
758                 return __connman_error_invalid_property(msg);
759
760         return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
761 }
762
763 static struct connman_technology *technology_find(enum connman_service_type type)
764 {
765         GSList *list;
766
767         DBG("type %d", type);
768
769         for (list = technology_list; list; list = list->next) {
770                 struct connman_technology *technology = list->data;
771
772                 if (technology->type == type)
773                         return technology;
774         }
775
776         return NULL;
777 }
778
779 static void reply_scan_pending(struct connman_technology *technology, int err)
780 {
781         DBusMessage *reply;
782
783         DBG("technology %p err %d", technology, err);
784
785         while (technology->scan_pending != NULL) {
786                 DBusMessage *msg = technology->scan_pending->data;
787
788                 DBG("reply to %s", dbus_message_get_sender(msg));
789
790                 if (err == 0)
791                         reply = g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
792                 else
793                         reply = __connman_error_failed(msg, -err);
794                 g_dbus_send_message(connection, reply);
795                 dbus_message_unref(msg);
796
797                 technology->scan_pending =
798                         g_slist_delete_link(technology->scan_pending,
799                                         technology->scan_pending);
800         }
801 }
802
803 void __connman_technology_scan_started(struct connman_device *device)
804 {
805         DBG("device %p", device);
806 }
807
808 void __connman_technology_scan_stopped(struct connman_device *device)
809 {
810         int count = 0;
811         struct connman_technology *technology;
812         enum connman_service_type type;
813         GSList *list;
814
815         type = __connman_device_get_service_type(device);
816         technology = technology_find(type);
817
818         DBG("technology %p device %p", technology, device);
819
820         if (technology == NULL)
821                 return;
822
823         for (list = technology->device_list; list != NULL; list = list->next) {
824                 struct connman_device *other_device = list->data;
825
826                 if (device == other_device)
827                         continue;
828
829                 if (__connman_device_get_service_type(other_device) != type)
830                         continue;
831
832                 if (connman_device_get_scanning(other_device) == TRUE)
833                         count += 1;
834         }
835
836         if (count == 0)
837                 reply_scan_pending(technology, 0);
838 }
839
840 void __connman_technology_notify_regdom_by_device(struct connman_device *device,
841                                                 int result, const char *alpha2)
842 {
843         struct connman_technology *technology;
844         enum connman_service_type type;
845
846         type = __connman_device_get_service_type(device);
847         technology = technology_find(type);
848
849         if (technology == NULL)
850                 return;
851
852         if (result < 0) {
853                 if (technology->driver != NULL &&
854                                 technology->driver->set_regdom != NULL) {
855                         technology->driver->set_regdom(technology, alpha2);
856                         return;
857                 }
858
859                 alpha2 = NULL;
860         }
861
862         connman_technology_regdom_notify(technology, alpha2);
863 }
864
865 static DBusMessage *scan(DBusConnection *conn, DBusMessage *msg, void *data)
866 {
867         struct connman_technology *technology = data;
868         int err;
869
870         DBG ("technology %p request from %s", technology,
871                         dbus_message_get_sender(msg));
872
873         dbus_message_ref(msg);
874         technology->scan_pending =
875                 g_slist_prepend(technology->scan_pending, msg);
876
877         err = __connman_device_request_scan(technology->type);
878         if (err < 0)
879                 reply_scan_pending(technology, err);
880
881         return NULL;
882 }
883
884 static const GDBusMethodTable technology_methods[] = {
885         { GDBUS_DEPRECATED_METHOD("GetProperties",
886                         NULL, GDBUS_ARGS({ "properties", "a{sv}" }),
887                         get_properties) },
888         { GDBUS_METHOD("SetProperty",
889                         GDBUS_ARGS({ "name", "s" }, { "value", "v" }),
890                         NULL, set_property) },
891         { GDBUS_ASYNC_METHOD("Scan", NULL, NULL, scan) },
892         { },
893 };
894
895 static const GDBusSignalTable technology_signals[] = {
896         { GDBUS_SIGNAL("PropertyChanged",
897                         GDBUS_ARGS({ "name", "s" }, { "value", "v" })) },
898         { },
899 };
900
901 static struct connman_technology *technology_get(enum connman_service_type type)
902 {
903         struct connman_technology *technology;
904         struct connman_technology_driver *driver = NULL;
905         const char *str;
906         GSList *list;
907         int err;
908
909         DBG("type %d", type);
910
911         str = __connman_service_type2string(type);
912         if (str == NULL)
913                 return NULL;
914
915         technology = technology_find(type);
916         if (technology != NULL) {
917                 __sync_fetch_and_add(&technology->refcount, 1);
918                 return technology;
919         }
920
921         /* First check if we have a driver for this technology type */
922         for (list = driver_list; list; list = list->next) {
923                 driver = list->data;
924
925                 if (driver->type == type)
926                         break;
927                 else
928                         driver = NULL;
929         }
930
931         if (driver == NULL) {
932                 DBG("No matching driver found for %s.",
933                                 __connman_service_type2string(type));
934                 return NULL;
935         }
936
937         technology = g_try_new0(struct connman_technology, 1);
938         if (technology == NULL)
939                 return NULL;
940
941         technology->refcount = 1;
942
943         technology->type = type;
944         technology->path = g_strdup_printf("%s/technology/%s",
945                                                         CONNMAN_PATH, str);
946
947         technology->device_list = NULL;
948
949         technology->pending_reply = NULL;
950
951         technology_load(technology);
952
953         if (g_dbus_register_interface(connection, technology->path,
954                                         CONNMAN_TECHNOLOGY_INTERFACE,
955                                         technology_methods, technology_signals,
956                                         NULL, technology, NULL) == FALSE) {
957                 connman_error("Failed to register %s", technology->path);
958                 g_free(technology);
959                 return NULL;
960         }
961
962         technology_list = g_slist_append(technology_list, technology);
963
964         technology_added_signal(technology);
965
966         technology->driver = driver;
967         err = driver->probe(technology);
968         if (err != 0)
969                 DBG("Driver probe failed for technology %p", technology);
970
971         DBG("technology %p", technology);
972
973         return technology;
974 }
975
976 static void technology_put(struct connman_technology *technology)
977 {
978         DBG("technology %p", technology);
979
980         if (__sync_sub_and_fetch(&technology->refcount, 1) > 0)
981                 return;
982
983         reply_scan_pending(technology, -EINTR);
984
985         if (technology->driver) {
986                 technology->driver->remove(technology);
987                 technology->driver = NULL;
988         }
989
990         technology_list = g_slist_remove(technology_list, technology);
991
992         technology_removed_signal(technology);
993
994         g_dbus_unregister_interface(connection, technology->path,
995                                                 CONNMAN_TECHNOLOGY_INTERFACE);
996
997         g_slist_free(technology->device_list);
998
999         g_free(technology->path);
1000         g_free(technology->regdom);
1001         g_free(technology);
1002 }
1003
1004 void __connman_technology_add_interface(enum connman_service_type type,
1005                                 int index, const char *name, const char *ident)
1006 {
1007         struct connman_technology *technology;
1008
1009         switch (type) {
1010         case CONNMAN_SERVICE_TYPE_UNKNOWN:
1011         case CONNMAN_SERVICE_TYPE_SYSTEM:
1012                 return;
1013         case CONNMAN_SERVICE_TYPE_ETHERNET:
1014         case CONNMAN_SERVICE_TYPE_WIFI:
1015         case CONNMAN_SERVICE_TYPE_WIMAX:
1016         case CONNMAN_SERVICE_TYPE_BLUETOOTH:
1017         case CONNMAN_SERVICE_TYPE_CELLULAR:
1018         case CONNMAN_SERVICE_TYPE_GPS:
1019         case CONNMAN_SERVICE_TYPE_VPN:
1020         case CONNMAN_SERVICE_TYPE_GADGET:
1021                 break;
1022         }
1023
1024         connman_info("Adding interface %s [ %s ]", name,
1025                                 __connman_service_type2string(type));
1026
1027         technology = technology_find(type);
1028
1029         if (technology == NULL || technology->driver == NULL
1030                         || technology->driver->add_interface == NULL)
1031                 return;
1032
1033         technology->driver->add_interface(technology,
1034                                         index, name, ident);
1035 }
1036
1037 void __connman_technology_remove_interface(enum connman_service_type type,
1038                                 int index, const char *name, const char *ident)
1039 {
1040         struct connman_technology *technology;
1041
1042         switch (type) {
1043         case CONNMAN_SERVICE_TYPE_UNKNOWN:
1044         case CONNMAN_SERVICE_TYPE_SYSTEM:
1045                 return;
1046         case CONNMAN_SERVICE_TYPE_ETHERNET:
1047         case CONNMAN_SERVICE_TYPE_WIFI:
1048         case CONNMAN_SERVICE_TYPE_WIMAX:
1049         case CONNMAN_SERVICE_TYPE_BLUETOOTH:
1050         case CONNMAN_SERVICE_TYPE_CELLULAR:
1051         case CONNMAN_SERVICE_TYPE_GPS:
1052         case CONNMAN_SERVICE_TYPE_VPN:
1053         case CONNMAN_SERVICE_TYPE_GADGET:
1054                 break;
1055         }
1056
1057         connman_info("Remove interface %s [ %s ]", name,
1058                                 __connman_service_type2string(type));
1059
1060         technology = technology_find(type);
1061
1062         if (technology == NULL || technology->driver == NULL)
1063                 return;
1064
1065         if (technology->driver->remove_interface)
1066                 technology->driver->remove_interface(technology, index);
1067 }
1068
1069 int __connman_technology_add_device(struct connman_device *device)
1070 {
1071         struct connman_technology *technology;
1072         enum connman_service_type type;
1073
1074         DBG("device %p", device);
1075
1076         type = __connman_device_get_service_type(device);
1077
1078         technology = technology_get(type);
1079         if (technology == NULL) {
1080                 /*
1081                  * Since no driver can be found for this device at the moment we
1082                  * add it to the techless device list.
1083                 */
1084                 techless_device_list = g_slist_prepend(techless_device_list,
1085                                                                 device);
1086
1087                 return -ENXIO;
1088         }
1089
1090         if (technology->enable_persistent && !global_offlinemode) {
1091                 int err = __connman_device_enable(device);
1092                 /*
1093                  * connman_technology_add_device() calls __connman_device_enable()
1094                  * but since the device is already enabled, the calls does not
1095                  * propagate through to connman_technology_enabled via
1096                  * connman_device_set_powered.
1097                  */
1098                 if (err == -EALREADY)
1099                         __connman_technology_enabled(type);
1100         }
1101         /* if technology persistent state is offline */
1102         if (!technology->enable_persistent)
1103                 __connman_device_disable(device);
1104
1105         technology->device_list = g_slist_append(technology->device_list,
1106                                                                 device);
1107
1108         return 0;
1109 }
1110
1111 int __connman_technology_remove_device(struct connman_device *device)
1112 {
1113         struct connman_technology *technology;
1114         enum connman_service_type type;
1115
1116         DBG("device %p", device);
1117
1118         type = __connman_device_get_service_type(device);
1119
1120         technology = technology_find(type);
1121         if (technology == NULL) {
1122                 techless_device_list = g_slist_remove(techless_device_list,
1123                                                                 device);
1124                 return -ENXIO;
1125         }
1126
1127         technology->device_list = g_slist_remove(technology->device_list,
1128                                                                 device);
1129         technology_put(technology);
1130
1131         return 0;
1132 }
1133
1134 static void powered_changed(struct connman_technology *technology)
1135 {
1136         connman_bool_t powered;
1137
1138         __sync_synchronize();
1139         if (technology->enabled >0)
1140                 powered = TRUE;
1141         else
1142                 powered = FALSE;
1143
1144         connman_dbus_property_changed_basic(technology->path,
1145                         CONNMAN_TECHNOLOGY_INTERFACE, "Powered",
1146                         DBUS_TYPE_BOOLEAN, &powered);
1147 }
1148
1149 int __connman_technology_enabled(enum connman_service_type type)
1150 {
1151         struct connman_technology *technology;
1152
1153         technology = technology_find(type);
1154         if (technology == NULL)
1155                 return -ENXIO;
1156
1157         if (__sync_fetch_and_add(&technology->enabled, 1) != 0)
1158                 return -EALREADY;
1159
1160         powered_changed(technology);
1161
1162         if (technology->pending_reply != NULL) {
1163                 g_dbus_send_reply(connection, technology->pending_reply, DBUS_TYPE_INVALID);
1164                 dbus_message_unref(technology->pending_reply);
1165                 g_source_remove(technology->pending_timeout);
1166                 technology->pending_reply = NULL;
1167                 technology->pending_timeout = 0;
1168         }
1169
1170         return 0;
1171 }
1172
1173 int __connman_technology_disabled(enum connman_service_type type)
1174 {
1175         struct connman_technology *technology;
1176
1177         technology = technology_find(type);
1178         if (technology == NULL)
1179                 return -ENXIO;
1180
1181         if (__sync_fetch_and_sub(&technology->enabled, 1) != 1)
1182                 return -EINPROGRESS;
1183
1184         if (technology->pending_reply != NULL) {
1185                 g_dbus_send_reply(connection, technology->pending_reply, DBUS_TYPE_INVALID);
1186                 dbus_message_unref(technology->pending_reply);
1187                 g_source_remove(technology->pending_timeout);
1188                 technology->pending_reply = NULL;
1189                 technology->pending_timeout = 0;
1190         }
1191
1192         powered_changed(technology);
1193
1194         return 0;
1195 }
1196
1197 int __connman_technology_set_offlinemode(connman_bool_t offlinemode)
1198 {
1199         GSList *list;
1200         int err = -EINVAL;
1201
1202         if (global_offlinemode == offlinemode)
1203                 return 0;
1204
1205         DBG("offlinemode %s", offlinemode ? "On" : "Off");
1206
1207         /*
1208          * This is a bit tricky. When you set offlinemode, there is no
1209          * way to differentiate between attempting offline mode and
1210          * resuming offlinemode from last saved profile. We need that
1211          * information in rfkill_update, otherwise it falls back on the
1212          * technology's persistent state. Hence we set the offline mode here
1213          * but save it & call the notifier only if its successful.
1214          */
1215
1216         global_offlinemode = offlinemode;
1217
1218         /* Traverse technology list, enable/disable each technology. */
1219         for (list = technology_list; list; list = list->next) {
1220                 struct connman_technology *technology = list->data;
1221
1222                 if (offlinemode)
1223                         err = technology_disable(technology);
1224
1225                 if (!offlinemode && technology->enable_persistent)
1226                         err = technology_enable(technology);
1227         }
1228
1229         if (err == 0 || err == -EINPROGRESS || err == -EALREADY) {
1230                 connman_technology_save_offlinemode();
1231                 __connman_notifier_offlinemode(offlinemode);
1232         } else
1233                 global_offlinemode = connman_technology_load_offlinemode();
1234
1235         return err;
1236 }
1237
1238 void __connman_technology_set_connected(enum connman_service_type type,
1239                 connman_bool_t connected)
1240 {
1241         struct connman_technology *technology;
1242
1243         technology = technology_find(type);
1244         if (technology == NULL)
1245                 return;
1246
1247         DBG("technology %p connected %d", technology, connected);
1248
1249         technology->connected = connected;
1250
1251         connman_dbus_property_changed_basic(technology->path,
1252                         CONNMAN_TECHNOLOGY_INTERFACE, "Connected",
1253                         DBUS_TYPE_BOOLEAN, &connected);
1254 }
1255
1256 int __connman_technology_add_rfkill(unsigned int index,
1257                                         enum connman_service_type type,
1258                                                 connman_bool_t softblock,
1259                                                 connman_bool_t hardblock)
1260 {
1261         struct connman_technology *technology;
1262         struct connman_rfkill *rfkill;
1263
1264         DBG("index %u type %d soft %u hard %u", index, type,
1265                                                         softblock, hardblock);
1266
1267         rfkill = g_hash_table_lookup(rfkill_list, &index);
1268         if (rfkill != NULL)
1269                 goto done;
1270
1271         rfkill = g_try_new0(struct connman_rfkill, 1);
1272         if (rfkill == NULL)
1273                 return -ENOMEM;
1274
1275         rfkill->index = index;
1276         rfkill->type = type;
1277         rfkill->softblock = softblock;
1278         rfkill->hardblock = hardblock;
1279
1280         g_hash_table_insert(rfkill_list, &rfkill->index, rfkill);
1281
1282 done:
1283         technology = technology_get(type);
1284         /* If there is no driver for this type, ignore it. */
1285         if (technology == NULL)
1286                 return -ENXIO;
1287
1288         if (hardblock) {
1289                 DBG("%s is switched off.", get_name(type));
1290                 return 0;
1291         }
1292
1293         /*
1294          * If Offline mode is on, we softblock the device if it isnt already.
1295          * If Offline mode is off, we rely on the persistent state of tech.
1296          */
1297         if (global_offlinemode) {
1298                 if (!softblock)
1299                         return __connman_rfkill_block(type, TRUE);
1300         } else {
1301                 if (technology->enable_persistent && softblock)
1302                         return __connman_rfkill_block(type, FALSE);
1303                 /* if technology persistent state is offline */
1304                 if (!technology->enable_persistent && !softblock)
1305                         return __connman_rfkill_block(type, TRUE);
1306         }
1307
1308         return 0;
1309 }
1310
1311 int __connman_technology_update_rfkill(unsigned int index,
1312                                         enum connman_service_type type,
1313                                                 connman_bool_t softblock,
1314                                                 connman_bool_t hardblock)
1315 {
1316         struct connman_technology *technology;
1317         struct connman_rfkill *rfkill;
1318
1319         DBG("index %u soft %u hard %u", index, softblock, hardblock);
1320
1321         rfkill = g_hash_table_lookup(rfkill_list, &index);
1322         if (rfkill == NULL)
1323                 return -ENXIO;
1324
1325         if (rfkill->softblock == softblock &&
1326                 rfkill->hardblock == hardblock)
1327                 return 0;
1328
1329         rfkill->softblock = softblock;
1330         rfkill->hardblock = hardblock;
1331
1332         if (hardblock) {
1333                 DBG("%s is switched off.", get_name(type));
1334                 return 0;
1335         }
1336
1337         technology = technology_find(type);
1338         /* If there is no driver for this type, ignore it. */
1339         if (technology == NULL)
1340                 return -ENXIO;
1341
1342         if (!global_offlinemode) {
1343                 if (technology->enable_persistent && softblock)
1344                         return __connman_rfkill_block(type, FALSE);
1345                 if (!technology->enable_persistent && !softblock)
1346                         return __connman_rfkill_block(type, TRUE);
1347         }
1348
1349         return 0;
1350 }
1351
1352 int __connman_technology_remove_rfkill(unsigned int index,
1353                                         enum connman_service_type type)
1354 {
1355         struct connman_technology *technology;
1356         struct connman_rfkill *rfkill;
1357
1358         DBG("index %u", index);
1359
1360         rfkill = g_hash_table_lookup(rfkill_list, &index);
1361         if (rfkill == NULL)
1362                 return -ENXIO;
1363
1364         g_hash_table_remove(rfkill_list, &index);
1365
1366         technology = technology_find(type);
1367         if (technology == NULL)
1368                 return -ENXIO;
1369
1370         technology_put(technology);
1371
1372         return 0;
1373 }
1374
1375 int __connman_technology_init(void)
1376 {
1377         DBG("");
1378
1379         connection = connman_dbus_get_connection();
1380
1381         rfkill_list = g_hash_table_new_full(g_int_hash, g_int_equal,
1382                                                         NULL, free_rfkill);
1383
1384         global_offlinemode = connman_technology_load_offlinemode();
1385
1386         /* This will create settings file if it is missing */
1387         connman_technology_save_offlinemode();
1388
1389         return 0;
1390 }
1391
1392 void __connman_technology_cleanup(void)
1393 {
1394         DBG("");
1395
1396         g_hash_table_destroy(rfkill_list);
1397
1398         dbus_connection_unref(connection);
1399 }