technology: Returns the right error when setting tethering
[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                         if (tethering == FALSE)
717                                 return __connman_error_already_disabled(msg);
718                         else
719                                 return __connman_error_already_enabled(msg);
720                 }
721
722                 err = set_tethering(technology, tethering);
723                 if (err < 0)
724                         return __connman_error_failed(msg, -err);
725
726         } else if (g_str_equal(name, "TetheringIdentifier") == TRUE) {
727                 const char *str;
728
729                 dbus_message_iter_get_basic(&value, &str);
730
731                 if (technology->type != CONNMAN_SERVICE_TYPE_WIFI)
732                         return __connman_error_not_supported(msg);
733
734                 if (strlen(str) < 1 || strlen(str) > 32)
735                         return __connman_error_invalid_arguments(msg);
736
737                 g_free(technology->tethering_ident);
738                 technology->tethering_ident = g_strdup(str);
739                 technology_save(technology);
740         } else if (g_str_equal(name, "TetheringPassphrase") == TRUE) {
741                 const char *str;
742
743                 dbus_message_iter_get_basic(&value, &str);
744
745                 if (technology->type != CONNMAN_SERVICE_TYPE_WIFI)
746                         return __connman_error_not_supported(msg);
747
748                 if (strlen(str) < 8 || strlen(str) > 63)
749                         return __connman_error_passphrase_required(msg);
750
751                 g_free(technology->tethering_passphrase);
752                 technology->tethering_passphrase = g_strdup(str);
753                 technology_save(technology);
754         } else if (g_str_equal(name, "Powered") == TRUE) {
755                 connman_bool_t enable;
756
757                 if (type != DBUS_TYPE_BOOLEAN)
758                         return __connman_error_invalid_arguments(msg);
759
760                 dbus_message_iter_get_basic(&value, &enable);
761
762                 return set_powered(technology, msg, enable);
763         } else
764                 return __connman_error_invalid_property(msg);
765
766         return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
767 }
768
769 static struct connman_technology *technology_find(enum connman_service_type type)
770 {
771         GSList *list;
772
773         DBG("type %d", type);
774
775         for (list = technology_list; list; list = list->next) {
776                 struct connman_technology *technology = list->data;
777
778                 if (technology->type == type)
779                         return technology;
780         }
781
782         return NULL;
783 }
784
785 static void reply_scan_pending(struct connman_technology *technology, int err)
786 {
787         DBusMessage *reply;
788
789         DBG("technology %p err %d", technology, err);
790
791         while (technology->scan_pending != NULL) {
792                 DBusMessage *msg = technology->scan_pending->data;
793
794                 DBG("reply to %s", dbus_message_get_sender(msg));
795
796                 if (err == 0)
797                         reply = g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
798                 else
799                         reply = __connman_error_failed(msg, -err);
800                 g_dbus_send_message(connection, reply);
801                 dbus_message_unref(msg);
802
803                 technology->scan_pending =
804                         g_slist_delete_link(technology->scan_pending,
805                                         technology->scan_pending);
806         }
807 }
808
809 void __connman_technology_scan_started(struct connman_device *device)
810 {
811         DBG("device %p", device);
812 }
813
814 void __connman_technology_scan_stopped(struct connman_device *device)
815 {
816         int count = 0;
817         struct connman_technology *technology;
818         enum connman_service_type type;
819         GSList *list;
820
821         type = __connman_device_get_service_type(device);
822         technology = technology_find(type);
823
824         DBG("technology %p device %p", technology, device);
825
826         if (technology == NULL)
827                 return;
828
829         for (list = technology->device_list; list != NULL; list = list->next) {
830                 struct connman_device *other_device = list->data;
831
832                 if (device == other_device)
833                         continue;
834
835                 if (__connman_device_get_service_type(other_device) != type)
836                         continue;
837
838                 if (connman_device_get_scanning(other_device) == TRUE)
839                         count += 1;
840         }
841
842         if (count == 0)
843                 reply_scan_pending(technology, 0);
844 }
845
846 void __connman_technology_notify_regdom_by_device(struct connman_device *device,
847                                                 int result, const char *alpha2)
848 {
849         struct connman_technology *technology;
850         enum connman_service_type type;
851
852         type = __connman_device_get_service_type(device);
853         technology = technology_find(type);
854
855         if (technology == NULL)
856                 return;
857
858         if (result < 0) {
859                 if (technology->driver != NULL &&
860                                 technology->driver->set_regdom != NULL) {
861                         technology->driver->set_regdom(technology, alpha2);
862                         return;
863                 }
864
865                 alpha2 = NULL;
866         }
867
868         connman_technology_regdom_notify(technology, alpha2);
869 }
870
871 static DBusMessage *scan(DBusConnection *conn, DBusMessage *msg, void *data)
872 {
873         struct connman_technology *technology = data;
874         int err;
875
876         DBG ("technology %p request from %s", technology,
877                         dbus_message_get_sender(msg));
878
879         dbus_message_ref(msg);
880         technology->scan_pending =
881                 g_slist_prepend(technology->scan_pending, msg);
882
883         err = __connman_device_request_scan(technology->type);
884         if (err < 0)
885                 reply_scan_pending(technology, err);
886
887         return NULL;
888 }
889
890 static const GDBusMethodTable technology_methods[] = {
891         { GDBUS_DEPRECATED_METHOD("GetProperties",
892                         NULL, GDBUS_ARGS({ "properties", "a{sv}" }),
893                         get_properties) },
894         { GDBUS_ASYNC_METHOD("SetProperty",
895                         GDBUS_ARGS({ "name", "s" }, { "value", "v" }),
896                         NULL, set_property) },
897         { GDBUS_ASYNC_METHOD("Scan", NULL, NULL, scan) },
898         { },
899 };
900
901 static const GDBusSignalTable technology_signals[] = {
902         { GDBUS_SIGNAL("PropertyChanged",
903                         GDBUS_ARGS({ "name", "s" }, { "value", "v" })) },
904         { },
905 };
906
907 static struct connman_technology *technology_get(enum connman_service_type type)
908 {
909         struct connman_technology *technology;
910         struct connman_technology_driver *driver = NULL;
911         const char *str;
912         GSList *list;
913         int err;
914
915         DBG("type %d", type);
916
917         str = __connman_service_type2string(type);
918         if (str == NULL)
919                 return NULL;
920
921         technology = technology_find(type);
922         if (technology != NULL) {
923                 __sync_fetch_and_add(&technology->refcount, 1);
924                 return technology;
925         }
926
927         /* First check if we have a driver for this technology type */
928         for (list = driver_list; list; list = list->next) {
929                 driver = list->data;
930
931                 if (driver->type == type)
932                         break;
933                 else
934                         driver = NULL;
935         }
936
937         if (driver == NULL) {
938                 DBG("No matching driver found for %s.",
939                                 __connman_service_type2string(type));
940                 return NULL;
941         }
942
943         technology = g_try_new0(struct connman_technology, 1);
944         if (technology == NULL)
945                 return NULL;
946
947         technology->refcount = 1;
948
949         technology->type = type;
950         technology->path = g_strdup_printf("%s/technology/%s",
951                                                         CONNMAN_PATH, str);
952
953         technology->device_list = NULL;
954
955         technology->pending_reply = NULL;
956
957         technology_load(technology);
958
959         if (g_dbus_register_interface(connection, technology->path,
960                                         CONNMAN_TECHNOLOGY_INTERFACE,
961                                         technology_methods, technology_signals,
962                                         NULL, technology, NULL) == FALSE) {
963                 connman_error("Failed to register %s", technology->path);
964                 g_free(technology);
965                 return NULL;
966         }
967
968         technology_list = g_slist_prepend(technology_list, technology);
969
970         technology_added_signal(technology);
971
972         technology->driver = driver;
973         err = driver->probe(technology);
974         if (err != 0)
975                 DBG("Driver probe failed for technology %p", technology);
976
977         DBG("technology %p", technology);
978
979         return technology;
980 }
981
982 static void technology_put(struct connman_technology *technology)
983 {
984         DBG("technology %p", technology);
985
986         if (__sync_sub_and_fetch(&technology->refcount, 1) > 0)
987                 return;
988
989         reply_scan_pending(technology, -EINTR);
990
991         if (technology->driver) {
992                 technology->driver->remove(technology);
993                 technology->driver = NULL;
994         }
995
996         technology_list = g_slist_remove(technology_list, technology);
997
998         technology_removed_signal(technology);
999
1000         g_dbus_unregister_interface(connection, technology->path,
1001                                                 CONNMAN_TECHNOLOGY_INTERFACE);
1002
1003         g_slist_free(technology->device_list);
1004
1005         g_free(technology->path);
1006         g_free(technology->regdom);
1007         g_free(technology->tethering_ident);
1008         g_free(technology->tethering_passphrase);
1009         g_free(technology);
1010 }
1011
1012 void __connman_technology_add_interface(enum connman_service_type type,
1013                                 int index, const char *name, const char *ident)
1014 {
1015         struct connman_technology *technology;
1016
1017         switch (type) {
1018         case CONNMAN_SERVICE_TYPE_UNKNOWN:
1019         case CONNMAN_SERVICE_TYPE_SYSTEM:
1020                 return;
1021         case CONNMAN_SERVICE_TYPE_ETHERNET:
1022         case CONNMAN_SERVICE_TYPE_WIFI:
1023         case CONNMAN_SERVICE_TYPE_WIMAX:
1024         case CONNMAN_SERVICE_TYPE_BLUETOOTH:
1025         case CONNMAN_SERVICE_TYPE_CELLULAR:
1026         case CONNMAN_SERVICE_TYPE_GPS:
1027         case CONNMAN_SERVICE_TYPE_VPN:
1028         case CONNMAN_SERVICE_TYPE_GADGET:
1029                 break;
1030         }
1031
1032         connman_info("Adding interface %s [ %s ]", name,
1033                                 __connman_service_type2string(type));
1034
1035         technology = technology_find(type);
1036
1037         if (technology == NULL || technology->driver == NULL
1038                         || technology->driver->add_interface == NULL)
1039                 return;
1040
1041         technology->driver->add_interface(technology,
1042                                         index, name, ident);
1043 }
1044
1045 void __connman_technology_remove_interface(enum connman_service_type type,
1046                                 int index, const char *name, const char *ident)
1047 {
1048         struct connman_technology *technology;
1049
1050         switch (type) {
1051         case CONNMAN_SERVICE_TYPE_UNKNOWN:
1052         case CONNMAN_SERVICE_TYPE_SYSTEM:
1053                 return;
1054         case CONNMAN_SERVICE_TYPE_ETHERNET:
1055         case CONNMAN_SERVICE_TYPE_WIFI:
1056         case CONNMAN_SERVICE_TYPE_WIMAX:
1057         case CONNMAN_SERVICE_TYPE_BLUETOOTH:
1058         case CONNMAN_SERVICE_TYPE_CELLULAR:
1059         case CONNMAN_SERVICE_TYPE_GPS:
1060         case CONNMAN_SERVICE_TYPE_VPN:
1061         case CONNMAN_SERVICE_TYPE_GADGET:
1062                 break;
1063         }
1064
1065         connman_info("Remove interface %s [ %s ]", name,
1066                                 __connman_service_type2string(type));
1067
1068         technology = technology_find(type);
1069
1070         if (technology == NULL || technology->driver == NULL)
1071                 return;
1072
1073         if (technology->driver->remove_interface)
1074                 technology->driver->remove_interface(technology, index);
1075 }
1076
1077 int __connman_technology_add_device(struct connman_device *device)
1078 {
1079         struct connman_technology *technology;
1080         enum connman_service_type type;
1081
1082         DBG("device %p", device);
1083
1084         type = __connman_device_get_service_type(device);
1085
1086         technology = technology_get(type);
1087         if (technology == NULL) {
1088                 /*
1089                  * Since no driver can be found for this device at the moment we
1090                  * add it to the techless device list.
1091                 */
1092                 techless_device_list = g_slist_prepend(techless_device_list,
1093                                                                 device);
1094
1095                 return -ENXIO;
1096         }
1097
1098         if (technology->enable_persistent && !global_offlinemode) {
1099                 int err = __connman_device_enable(device);
1100                 /*
1101                  * connman_technology_add_device() calls __connman_device_enable()
1102                  * but since the device is already enabled, the calls does not
1103                  * propagate through to connman_technology_enabled via
1104                  * connman_device_set_powered.
1105                  */
1106                 if (err == -EALREADY)
1107                         __connman_technology_enabled(type);
1108         }
1109         /* if technology persistent state is offline */
1110         if (!technology->enable_persistent)
1111                 __connman_device_disable(device);
1112
1113         technology->device_list = g_slist_prepend(technology->device_list,
1114                                                                 device);
1115
1116         return 0;
1117 }
1118
1119 int __connman_technology_remove_device(struct connman_device *device)
1120 {
1121         struct connman_technology *technology;
1122         enum connman_service_type type;
1123
1124         DBG("device %p", device);
1125
1126         type = __connman_device_get_service_type(device);
1127
1128         technology = technology_find(type);
1129         if (technology == NULL) {
1130                 techless_device_list = g_slist_remove(techless_device_list,
1131                                                                 device);
1132                 return -ENXIO;
1133         }
1134
1135         technology->device_list = g_slist_remove(technology->device_list,
1136                                                                 device);
1137         technology_put(technology);
1138
1139         return 0;
1140 }
1141
1142 static void powered_changed(struct connman_technology *technology)
1143 {
1144         connman_bool_t powered;
1145
1146         __sync_synchronize();
1147         if (technology->enabled >0)
1148                 powered = TRUE;
1149         else
1150                 powered = FALSE;
1151
1152         connman_dbus_property_changed_basic(technology->path,
1153                         CONNMAN_TECHNOLOGY_INTERFACE, "Powered",
1154                         DBUS_TYPE_BOOLEAN, &powered);
1155 }
1156
1157 int __connman_technology_enabled(enum connman_service_type type)
1158 {
1159         struct connman_technology *technology;
1160
1161         technology = technology_find(type);
1162         if (technology == NULL)
1163                 return -ENXIO;
1164
1165         if (__sync_fetch_and_add(&technology->enabled, 1) != 0)
1166                 return -EALREADY;
1167
1168         powered_changed(technology);
1169
1170         if (technology->pending_reply != NULL) {
1171                 g_dbus_send_reply(connection, technology->pending_reply, DBUS_TYPE_INVALID);
1172                 dbus_message_unref(technology->pending_reply);
1173                 g_source_remove(technology->pending_timeout);
1174                 technology->pending_reply = NULL;
1175                 technology->pending_timeout = 0;
1176         }
1177
1178         return 0;
1179 }
1180
1181 int __connman_technology_disabled(enum connman_service_type type)
1182 {
1183         struct connman_technology *technology;
1184
1185         technology = technology_find(type);
1186         if (technology == NULL)
1187                 return -ENXIO;
1188
1189         if (__sync_fetch_and_sub(&technology->enabled, 1) != 1)
1190                 return -EINPROGRESS;
1191
1192         if (technology->pending_reply != NULL) {
1193                 g_dbus_send_reply(connection, technology->pending_reply, DBUS_TYPE_INVALID);
1194                 dbus_message_unref(technology->pending_reply);
1195                 g_source_remove(technology->pending_timeout);
1196                 technology->pending_reply = NULL;
1197                 technology->pending_timeout = 0;
1198         }
1199
1200         powered_changed(technology);
1201
1202         return 0;
1203 }
1204
1205 int __connman_technology_set_offlinemode(connman_bool_t offlinemode)
1206 {
1207         GSList *list;
1208         int err = -EINVAL;
1209
1210         if (global_offlinemode == offlinemode)
1211                 return 0;
1212
1213         DBG("offlinemode %s", offlinemode ? "On" : "Off");
1214
1215         /*
1216          * This is a bit tricky. When you set offlinemode, there is no
1217          * way to differentiate between attempting offline mode and
1218          * resuming offlinemode from last saved profile. We need that
1219          * information in rfkill_update, otherwise it falls back on the
1220          * technology's persistent state. Hence we set the offline mode here
1221          * but save it & call the notifier only if its successful.
1222          */
1223
1224         global_offlinemode = offlinemode;
1225
1226         /* Traverse technology list, enable/disable each technology. */
1227         for (list = technology_list; list; list = list->next) {
1228                 struct connman_technology *technology = list->data;
1229
1230                 if (offlinemode)
1231                         err = technology_disable(technology);
1232
1233                 if (!offlinemode && technology->enable_persistent)
1234                         err = technology_enable(technology);
1235         }
1236
1237         if (err == 0 || err == -EINPROGRESS || err == -EALREADY) {
1238                 connman_technology_save_offlinemode();
1239                 __connman_notifier_offlinemode(offlinemode);
1240         } else
1241                 global_offlinemode = connman_technology_load_offlinemode();
1242
1243         return err;
1244 }
1245
1246 void __connman_technology_set_connected(enum connman_service_type type,
1247                 connman_bool_t connected)
1248 {
1249         struct connman_technology *technology;
1250
1251         technology = technology_find(type);
1252         if (technology == NULL)
1253                 return;
1254
1255         DBG("technology %p connected %d", technology, connected);
1256
1257         technology->connected = connected;
1258
1259         connman_dbus_property_changed_basic(technology->path,
1260                         CONNMAN_TECHNOLOGY_INTERFACE, "Connected",
1261                         DBUS_TYPE_BOOLEAN, &connected);
1262 }
1263
1264 int __connman_technology_add_rfkill(unsigned int index,
1265                                         enum connman_service_type type,
1266                                                 connman_bool_t softblock,
1267                                                 connman_bool_t hardblock)
1268 {
1269         struct connman_technology *technology;
1270         struct connman_rfkill *rfkill;
1271
1272         DBG("index %u type %d soft %u hard %u", index, type,
1273                                                         softblock, hardblock);
1274
1275         rfkill = g_hash_table_lookup(rfkill_list, &index);
1276         if (rfkill != NULL)
1277                 goto done;
1278
1279         rfkill = g_try_new0(struct connman_rfkill, 1);
1280         if (rfkill == NULL)
1281                 return -ENOMEM;
1282
1283         rfkill->index = index;
1284         rfkill->type = type;
1285         rfkill->softblock = softblock;
1286         rfkill->hardblock = hardblock;
1287
1288         g_hash_table_insert(rfkill_list, &rfkill->index, rfkill);
1289
1290 done:
1291         technology = technology_get(type);
1292         /* If there is no driver for this type, ignore it. */
1293         if (technology == NULL)
1294                 return -ENXIO;
1295
1296         if (hardblock) {
1297                 DBG("%s is switched off.", get_name(type));
1298                 return 0;
1299         }
1300
1301         /*
1302          * If Offline mode is on, we softblock the device if it isnt already.
1303          * If Offline mode is off, we rely on the persistent state of tech.
1304          */
1305         if (global_offlinemode) {
1306                 if (!softblock)
1307                         return __connman_rfkill_block(type, TRUE);
1308         } else {
1309                 if (technology->enable_persistent && softblock)
1310                         return __connman_rfkill_block(type, FALSE);
1311                 /* if technology persistent state is offline */
1312                 if (!technology->enable_persistent && !softblock)
1313                         return __connman_rfkill_block(type, TRUE);
1314         }
1315
1316         return 0;
1317 }
1318
1319 int __connman_technology_update_rfkill(unsigned int index,
1320                                         enum connman_service_type type,
1321                                                 connman_bool_t softblock,
1322                                                 connman_bool_t hardblock)
1323 {
1324         struct connman_technology *technology;
1325         struct connman_rfkill *rfkill;
1326
1327         DBG("index %u soft %u hard %u", index, softblock, hardblock);
1328
1329         rfkill = g_hash_table_lookup(rfkill_list, &index);
1330         if (rfkill == NULL)
1331                 return -ENXIO;
1332
1333         if (rfkill->softblock == softblock &&
1334                 rfkill->hardblock == hardblock)
1335                 return 0;
1336
1337         rfkill->softblock = softblock;
1338         rfkill->hardblock = hardblock;
1339
1340         if (hardblock) {
1341                 DBG("%s is switched off.", get_name(type));
1342                 return 0;
1343         }
1344
1345         technology = technology_find(type);
1346         /* If there is no driver for this type, ignore it. */
1347         if (technology == NULL)
1348                 return -ENXIO;
1349
1350         if (!global_offlinemode) {
1351                 if (technology->enable_persistent && softblock)
1352                         return __connman_rfkill_block(type, FALSE);
1353                 if (!technology->enable_persistent && !softblock)
1354                         return __connman_rfkill_block(type, TRUE);
1355         }
1356
1357         return 0;
1358 }
1359
1360 int __connman_technology_remove_rfkill(unsigned int index,
1361                                         enum connman_service_type type)
1362 {
1363         struct connman_technology *technology;
1364         struct connman_rfkill *rfkill;
1365
1366         DBG("index %u", index);
1367
1368         rfkill = g_hash_table_lookup(rfkill_list, &index);
1369         if (rfkill == NULL)
1370                 return -ENXIO;
1371
1372         g_hash_table_remove(rfkill_list, &index);
1373
1374         technology = technology_find(type);
1375         if (technology == NULL)
1376                 return -ENXIO;
1377
1378         technology_put(technology);
1379
1380         return 0;
1381 }
1382
1383 int __connman_technology_init(void)
1384 {
1385         DBG("");
1386
1387         connection = connman_dbus_get_connection();
1388
1389         rfkill_list = g_hash_table_new_full(g_int_hash, g_int_equal,
1390                                                         NULL, free_rfkill);
1391
1392         global_offlinemode = connman_technology_load_offlinemode();
1393
1394         /* This will create settings file if it is missing */
1395         connman_technology_save_offlinemode();
1396
1397         return 0;
1398 }
1399
1400 void __connman_technology_cleanup(void)
1401 {
1402         DBG("");
1403
1404         g_hash_table_destroy(rfkill_list);
1405
1406         dbus_connection_unref(connection);
1407 }