technology: Register a rfkilled technology in technology_add_rfkill
[framework/connectivity/connman.git] / src / technology.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2010  Intel Corporation. All rights reserved.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License version 2 as
9  *  published by the Free Software Foundation.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <errno.h>
27 #include <string.h>
28
29 #include <gdbus.h>
30
31 #include "connman.h"
32
33 static DBusConnection *connection;
34
35 static GSList *technology_list = NULL;
36
37 static connman_bool_t global_offlinemode;
38
39 struct connman_rfkill {
40         unsigned int index;
41         enum connman_service_type type;
42         connman_bool_t softblock;
43         connman_bool_t hardblock;
44 };
45
46 enum connman_technology_state {
47         CONNMAN_TECHNOLOGY_STATE_UNKNOWN   = 0,
48         CONNMAN_TECHNOLOGY_STATE_OFFLINE   = 1,
49         CONNMAN_TECHNOLOGY_STATE_ENABLED   = 2,
50         CONNMAN_TECHNOLOGY_STATE_CONNECTED = 3,
51 };
52
53 struct connman_technology {
54         gint refcount;
55         enum connman_service_type type;
56         enum connman_technology_state state;
57         char *path;
58         GHashTable *rfkill_list;
59         GSList *device_list;
60         gint enabled;
61         char *regdom;
62
63         connman_bool_t tethering;
64         char *tethering_ident;
65         char *tethering_passphrase;
66
67         connman_bool_t enable_persistent; /* Save the tech state */
68
69         struct connman_technology_driver *driver;
70         void *driver_data;
71
72         DBusMessage *pending_reply;
73         guint pending_timeout;
74 };
75
76 static GSList *driver_list = NULL;
77
78 static gint compare_priority(gconstpointer a, gconstpointer b)
79 {
80         const struct connman_technology_driver *driver1 = a;
81         const struct connman_technology_driver *driver2 = b;
82
83         return driver2->priority - driver1->priority;
84 }
85
86 /**
87  * connman_technology_driver_register:
88  * @driver: Technology driver definition
89  *
90  * Register a new technology driver
91  *
92  * Returns: %0 on success
93  */
94 int connman_technology_driver_register(struct connman_technology_driver *driver)
95 {
96         GSList *list;
97         struct connman_technology *technology;
98
99         DBG("driver %p name %s", driver, driver->name);
100
101         driver_list = g_slist_insert_sorted(driver_list, driver,
102                                                         compare_priority);
103
104         for (list = technology_list; list; list = list->next) {
105                 technology = list->data;
106
107                 if (technology->driver != NULL)
108                         continue;
109
110                 if (technology->type == driver->type)
111                         technology->driver = driver;
112         }
113
114         return 0;
115 }
116
117 /**
118  * connman_technology_driver_unregister:
119  * @driver: Technology driver definition
120  *
121  * Remove a previously registered technology driver
122  */
123 void connman_technology_driver_unregister(struct connman_technology_driver *driver)
124 {
125         GSList *list;
126         struct connman_technology *technology;
127
128         DBG("driver %p name %s", driver, driver->name);
129
130         for (list = technology_list; list; list = list->next) {
131                 technology = list->data;
132
133                 if (technology->driver == NULL)
134                         continue;
135
136                 if (technology->type == driver->type) {
137                         technology->driver->remove(technology);
138                         technology->driver = NULL;
139                 }
140         }
141
142         driver_list = g_slist_remove(driver_list, driver);
143 }
144
145 static void tethering_changed(struct connman_technology *technology)
146 {
147         connman_bool_t tethering = technology->tethering;
148
149         connman_dbus_property_changed_basic(technology->path,
150                                 CONNMAN_TECHNOLOGY_INTERFACE, "Tethering",
151                                                 DBUS_TYPE_BOOLEAN, &tethering);
152 }
153
154 void connman_technology_tethering_notify(struct connman_technology *technology,
155                                                         connman_bool_t enabled)
156 {
157         GSList *list;
158
159         DBG("technology %p enabled %u", technology, enabled);
160
161         if (technology->tethering == enabled)
162                 return;
163
164         technology->tethering = enabled;
165
166         tethering_changed(technology);
167
168         if (enabled == TRUE)
169                 __connman_tethering_set_enabled();
170         else {
171                 for (list = technology_list; list; list = list->next) {
172                         struct connman_technology *other_tech = list->data;
173                         if (other_tech->tethering == TRUE)
174                                 break;
175                 }
176                 if (list == NULL)
177                         __connman_tethering_set_disabled();
178         }
179 }
180
181 static int set_tethering(struct connman_technology *technology,
182                                 connman_bool_t enabled)
183 {
184         const char *ident, *passphrase, *bridge;
185
186         ident = technology->tethering_ident;
187         passphrase = technology->tethering_passphrase;
188
189         if (technology->driver == NULL ||
190                         technology->driver->set_tethering == NULL)
191                 return -EOPNOTSUPP;
192
193         bridge = __connman_tethering_get_bridge();
194         if (bridge == NULL)
195                 return -EOPNOTSUPP;
196
197         if (technology->type == CONNMAN_SERVICE_TYPE_WIFI &&
198             (ident == NULL || passphrase == NULL))
199                 return -EINVAL;
200
201         return technology->driver->set_tethering(technology, ident, passphrase,
202                                                         bridge, enabled);
203 }
204
205 void connman_technology_regdom_notify(struct connman_technology *technology,
206                                                         const char *alpha2)
207 {
208         DBG("");
209
210         if (alpha2 == NULL)
211                 connman_error("Failed to set regulatory domain");
212         else
213                 DBG("Regulatory domain set to %s", alpha2);
214
215         g_free(technology->regdom);
216         technology->regdom = g_strdup(alpha2);
217 }
218
219 int connman_technology_set_regdom(const char *alpha2)
220 {
221         GSList *list;
222
223         for (list = technology_list; list; list = list->next) {
224                 struct connman_technology *technology = list->data;
225
226                 if (technology->driver == NULL)
227                         continue;
228
229                 if (technology->driver->set_regdom)
230                         technology->driver->set_regdom(technology, alpha2);
231         }
232
233         return 0;
234 }
235
236 static void free_rfkill(gpointer data)
237 {
238         struct connman_rfkill *rfkill = data;
239
240         g_free(rfkill);
241 }
242
243 void __connman_technology_list(DBusMessageIter *iter, void *user_data)
244 {
245         GSList *list;
246
247         for (list = technology_list; list; list = list->next) {
248                 struct connman_technology *technology = list->data;
249
250                 if (technology->path == NULL)
251                         continue;
252
253                 dbus_message_iter_append_basic(iter, DBUS_TYPE_OBJECT_PATH,
254                                                         &technology->path);
255         }
256 }
257
258 static void technologies_changed(void)
259 {
260         connman_dbus_property_changed_array(CONNMAN_MANAGER_PATH,
261                         CONNMAN_MANAGER_INTERFACE, "Technologies",
262                         DBUS_TYPE_OBJECT_PATH, __connman_technology_list, NULL);
263 }
264
265 static const char *state2string(enum connman_technology_state state)
266 {
267         switch (state) {
268         case CONNMAN_TECHNOLOGY_STATE_UNKNOWN:
269                 break;
270         case CONNMAN_TECHNOLOGY_STATE_OFFLINE:
271                 return "offline";
272         case CONNMAN_TECHNOLOGY_STATE_ENABLED:
273                 return "enabled";
274         case CONNMAN_TECHNOLOGY_STATE_CONNECTED:
275                 return "connected";
276         }
277
278         return NULL;
279 }
280
281 static void state_changed(struct connman_technology *technology)
282 {
283         const char *str;
284
285         str = state2string(technology->state);
286         if (str == NULL)
287                 return;
288
289         connman_dbus_property_changed_basic(technology->path,
290                                 CONNMAN_TECHNOLOGY_INTERFACE, "State",
291                                                 DBUS_TYPE_STRING, &str);
292 }
293
294 static const char *get_name(enum connman_service_type type)
295 {
296         switch (type) {
297         case CONNMAN_SERVICE_TYPE_UNKNOWN:
298         case CONNMAN_SERVICE_TYPE_SYSTEM:
299         case CONNMAN_SERVICE_TYPE_GPS:
300         case CONNMAN_SERVICE_TYPE_VPN:
301         case CONNMAN_SERVICE_TYPE_GADGET:
302                 break;
303         case CONNMAN_SERVICE_TYPE_ETHERNET:
304                 return "Wired";
305         case CONNMAN_SERVICE_TYPE_WIFI:
306                 return "WiFi";
307         case CONNMAN_SERVICE_TYPE_WIMAX:
308                 return "WiMAX";
309         case CONNMAN_SERVICE_TYPE_BLUETOOTH:
310                 return "Bluetooth";
311         case CONNMAN_SERVICE_TYPE_CELLULAR:
312                 return "3G";
313         }
314
315         return NULL;
316 }
317
318 static void load_state(struct connman_technology *technology)
319 {
320         GKeyFile *keyfile;
321         gchar *identifier;
322         GError *error = NULL;
323         connman_bool_t enable;
324
325         DBG("technology %p", technology);
326
327         keyfile = __connman_storage_load_global();
328         /* Fallback on disabling technology if file not found. */
329         if (keyfile == NULL) {
330                 technology->enable_persistent = FALSE;
331                 return;
332         }
333
334         identifier = g_strdup_printf("%s", get_name(technology->type));
335         if (identifier == NULL)
336                 goto done;
337
338         enable = g_key_file_get_boolean(keyfile, identifier, "Enable", &error);
339         if (error == NULL)
340                 technology->enable_persistent = enable;
341         else {
342                 technology->enable_persistent = FALSE;
343                 g_clear_error(&error);
344         }
345 done:
346         g_free(identifier);
347
348         g_key_file_free(keyfile);
349
350         return;
351 }
352
353 static void save_state(struct connman_technology *technology)
354 {
355         GKeyFile *keyfile;
356         gchar *identifier;
357
358         DBG("technology %p", technology);
359
360         keyfile = __connman_storage_load_global();
361         if (keyfile == NULL)
362                 keyfile = g_key_file_new();
363
364         identifier = g_strdup_printf("%s", get_name(technology->type));
365         if (identifier == NULL)
366                 goto done;
367
368         g_key_file_set_boolean(keyfile, identifier, "Enable",
369                                 technology->enable_persistent);
370
371 done:
372         g_free(identifier);
373
374         __connman_storage_save_global(keyfile);
375
376         g_key_file_free(keyfile);
377
378         return;
379 }
380
381 connman_bool_t __connman_technology_get_offlinemode(void)
382 {
383         return global_offlinemode;
384 }
385
386 static void connman_technology_save_offlinemode()
387 {
388         GKeyFile *keyfile;
389
390         keyfile = __connman_storage_load_global();
391         if (keyfile == NULL)
392                 keyfile = g_key_file_new();
393
394         g_key_file_set_boolean(keyfile, "global",
395                                         "OfflineMode", global_offlinemode);
396
397         __connman_storage_save_global(keyfile);
398
399         g_key_file_free(keyfile);
400
401         return;
402 }
403
404 static connman_bool_t connman_technology_load_offlinemode()
405 {
406         GKeyFile *keyfile;
407         GError *error = NULL;
408         connman_bool_t offlinemode;
409
410         /* If there is a error, we enable offlinemode */
411         keyfile = __connman_storage_load_global();
412         if (keyfile == NULL)
413                 return TRUE;
414
415         offlinemode = g_key_file_get_boolean(keyfile, "global",
416                                                 "OfflineMode", &error);
417         if (error != NULL) {
418                 offlinemode = TRUE;
419                 g_clear_error(&error);
420         }
421
422         g_key_file_free(keyfile);
423
424         return offlinemode;
425 }
426
427 static DBusMessage *get_properties(DBusConnection *conn,
428                                         DBusMessage *message, void *user_data)
429 {
430         struct connman_technology *technology = user_data;
431         DBusMessage *reply;
432         DBusMessageIter array, dict;
433         const char *str;
434
435         reply = dbus_message_new_method_return(message);
436         if (reply == NULL)
437                 return NULL;
438
439         dbus_message_iter_init_append(reply, &array);
440
441         connman_dbus_dict_open(&array, &dict);
442
443         str = state2string(technology->state);
444         if (str != NULL)
445                 connman_dbus_dict_append_basic(&dict, "State",
446                                                 DBUS_TYPE_STRING, &str);
447
448         str = get_name(technology->type);
449         if (str != NULL)
450                 connman_dbus_dict_append_basic(&dict, "Name",
451                                                 DBUS_TYPE_STRING, &str);
452
453         str = __connman_service_type2string(technology->type);
454         if (str != NULL)
455                 connman_dbus_dict_append_basic(&dict, "Type",
456                                                 DBUS_TYPE_STRING, &str);
457
458         connman_dbus_dict_append_basic(&dict, "Tethering",
459                                         DBUS_TYPE_BOOLEAN,
460                                         &technology->tethering);
461
462         if (technology->tethering_ident != NULL)
463                 connman_dbus_dict_append_basic(&dict, "TetheringIdentifier",
464                                                 DBUS_TYPE_STRING,
465                                                 &technology->tethering_ident);
466
467         if (technology->tethering_passphrase != NULL)
468                 connman_dbus_dict_append_basic(&dict, "TetheringPassphrase",
469                                                 DBUS_TYPE_STRING,
470                                                 &technology->tethering_passphrase);
471
472         connman_dbus_dict_close(&array, &dict);
473
474         return reply;
475 }
476
477 static DBusMessage *set_property(DBusConnection *conn,
478                                         DBusMessage *msg, void *data)
479 {
480         struct connman_technology *technology = data;
481         DBusMessageIter iter, value;
482         const char *name;
483         int type;
484
485         DBG("conn %p", conn);
486
487         if (dbus_message_iter_init(msg, &iter) == FALSE)
488                 return __connman_error_invalid_arguments(msg);
489
490         dbus_message_iter_get_basic(&iter, &name);
491         dbus_message_iter_next(&iter);
492         dbus_message_iter_recurse(&iter, &value);
493
494         type = dbus_message_iter_get_arg_type(&value);
495
496         DBG("property %s", name);
497
498         if (g_str_equal(name, "Tethering") == TRUE) {
499                 int err;
500                 connman_bool_t tethering;
501
502                 if (type != DBUS_TYPE_BOOLEAN)
503                         return __connman_error_invalid_arguments(msg);
504
505                 dbus_message_iter_get_basic(&value, &tethering);
506
507                 if (technology->tethering == tethering)
508                         return __connman_error_in_progress(msg);
509
510                 err = set_tethering(technology, tethering);
511                 if (err < 0)
512                         return __connman_error_failed(msg, -err);
513
514         } else if (g_str_equal(name, "TetheringIdentifier") == TRUE) {
515                 const char *str;
516
517                 dbus_message_iter_get_basic(&value, &str);
518
519                 if (technology->type != CONNMAN_SERVICE_TYPE_WIFI)
520                         return __connman_error_not_supported(msg);
521
522                 technology->tethering_ident = g_strdup(str);
523         } else if (g_str_equal(name, "TetheringPassphrase") == TRUE) {
524                 const char *str;
525
526                 dbus_message_iter_get_basic(&value, &str);
527
528                 if (technology->type != CONNMAN_SERVICE_TYPE_WIFI)
529                         return __connman_error_not_supported(msg);
530
531                 if (strlen(str) < 8)
532                         return __connman_error_invalid_arguments(msg);
533
534                 technology->tethering_passphrase = g_strdup(str);
535         } else
536                 return __connman_error_invalid_property(msg);
537
538         return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
539 }
540
541 static GDBusMethodTable technology_methods[] = {
542         { "GetProperties", "",   "a{sv}", get_properties },
543         { "SetProperty",   "sv", "",      set_property   },
544         { },
545 };
546
547 static GDBusSignalTable technology_signals[] = {
548         { "PropertyChanged", "sv" },
549         { },
550 };
551
552 static struct connman_technology *technology_find(enum connman_service_type type)
553 {
554         GSList *list;
555
556         DBG("type %d", type);
557
558         for (list = technology_list; list; list = list->next) {
559                 struct connman_technology *technology = list->data;
560
561                 if (technology->type == type)
562                         return technology;
563         }
564
565         return NULL;
566 }
567
568 static struct connman_technology *technology_get(enum connman_service_type type)
569 {
570         struct connman_technology *technology;
571         const char *str;
572         GSList *list;
573
574         DBG("type %d", type);
575
576         technology = technology_find(type);
577         if (technology != NULL) {
578                 g_atomic_int_inc(&technology->refcount);
579                 goto done;
580         }
581
582         str = __connman_service_type2string(type);
583         if (str == NULL)
584                 return NULL;
585
586         technology = g_try_new0(struct connman_technology, 1);
587         if (technology == NULL)
588                 return NULL;
589
590         technology->refcount = 1;
591
592         technology->type = type;
593         technology->path = g_strdup_printf("%s/technology/%s",
594                                                         CONNMAN_PATH, str);
595
596         technology->rfkill_list = g_hash_table_new_full(g_int_hash, g_int_equal,
597                                                         NULL, free_rfkill);
598         technology->device_list = NULL;
599
600         technology->pending_reply = NULL;
601         technology->state = CONNMAN_TECHNOLOGY_STATE_OFFLINE;
602
603         load_state(technology);
604
605         if (g_dbus_register_interface(connection, technology->path,
606                                         CONNMAN_TECHNOLOGY_INTERFACE,
607                                         technology_methods, technology_signals,
608                                         NULL, technology, NULL) == FALSE) {
609                 connman_error("Failed to register %s", technology->path);
610                 g_free(technology);
611                 return NULL;
612         }
613
614         technology_list = g_slist_append(technology_list, technology);
615
616         technologies_changed();
617
618         if (technology->driver != NULL)
619                 goto done;
620
621         for (list = driver_list; list; list = list->next) {
622                 struct connman_technology_driver *driver = list->data;
623
624                 DBG("driver %p name %s", driver, driver->name);
625
626                 if (driver->type != technology->type)
627                         continue;
628
629                 if (driver->probe(technology) == 0) {
630                         technology->driver = driver;
631                         break;
632                 }
633         }
634
635 done:
636         DBG("technology %p", technology);
637
638         return technology;
639 }
640
641 static void technology_put(struct connman_technology *technology)
642 {
643         DBG("technology %p", technology);
644
645         if (g_atomic_int_dec_and_test(&technology->refcount) == FALSE)
646                 return;
647
648         if (technology->driver) {
649                 technology->driver->remove(technology);
650                 technology->driver = NULL;
651         }
652
653         technology_list = g_slist_remove(technology_list, technology);
654
655         technologies_changed();
656
657         g_dbus_unregister_interface(connection, technology->path,
658                                                 CONNMAN_TECHNOLOGY_INTERFACE);
659
660         g_slist_free(technology->device_list);
661         g_hash_table_destroy(technology->rfkill_list);
662
663         g_free(technology->path);
664         g_free(technology->regdom);
665         g_free(technology);
666 }
667
668 void __connman_technology_add_interface(enum connman_service_type type,
669                                 int index, const char *name, const char *ident)
670 {
671         struct connman_technology *technology;
672
673         switch (type) {
674         case CONNMAN_SERVICE_TYPE_UNKNOWN:
675         case CONNMAN_SERVICE_TYPE_SYSTEM:
676                 return;
677         case CONNMAN_SERVICE_TYPE_ETHERNET:
678         case CONNMAN_SERVICE_TYPE_WIFI:
679         case CONNMAN_SERVICE_TYPE_WIMAX:
680         case CONNMAN_SERVICE_TYPE_BLUETOOTH:
681         case CONNMAN_SERVICE_TYPE_CELLULAR:
682         case CONNMAN_SERVICE_TYPE_GPS:
683         case CONNMAN_SERVICE_TYPE_VPN:
684         case CONNMAN_SERVICE_TYPE_GADGET:
685                 break;
686         }
687
688         connman_info("Create interface %s [ %s ]", name,
689                                 __connman_service_type2string(type));
690
691         technology = technology_get(type);
692
693         if (technology == NULL || technology->driver == NULL
694                         || technology->driver->add_interface == NULL)
695                 return;
696
697         technology->driver->add_interface(technology,
698                                         index, name, ident);
699 }
700
701 void __connman_technology_remove_interface(enum connman_service_type type,
702                                 int index, const char *name, const char *ident)
703 {
704         struct connman_technology *technology;
705
706         switch (type) {
707         case CONNMAN_SERVICE_TYPE_UNKNOWN:
708         case CONNMAN_SERVICE_TYPE_SYSTEM:
709                 return;
710         case CONNMAN_SERVICE_TYPE_ETHERNET:
711         case CONNMAN_SERVICE_TYPE_WIFI:
712         case CONNMAN_SERVICE_TYPE_WIMAX:
713         case CONNMAN_SERVICE_TYPE_BLUETOOTH:
714         case CONNMAN_SERVICE_TYPE_CELLULAR:
715         case CONNMAN_SERVICE_TYPE_GPS:
716         case CONNMAN_SERVICE_TYPE_VPN:
717         case CONNMAN_SERVICE_TYPE_GADGET:
718                 break;
719         }
720
721         connman_info("Remove interface %s [ %s ]", name,
722                                 __connman_service_type2string(type));
723
724         technology = technology_find(type);
725
726         if (technology == NULL || technology->driver == NULL)
727                 return;
728
729         if (technology->driver->remove_interface)
730                 technology->driver->remove_interface(technology, index);
731
732         technology_put(technology);
733 }
734
735 int __connman_technology_add_device(struct connman_device *device)
736 {
737         struct connman_technology *technology;
738         enum connman_service_type type;
739
740         DBG("device %p", device);
741
742         type = __connman_device_get_service_type(device);
743         __connman_notifier_register(type);
744
745         technology = technology_get(type);
746         if (technology == NULL)
747                 return -ENXIO;
748
749         if (technology->enable_persistent && !global_offlinemode)
750                 __connman_device_enable(device);
751         /* if technology persistent state is offline */
752         if (!technology->enable_persistent)
753                 __connman_device_disable(device);
754
755         technology->device_list = g_slist_append(technology->device_list,
756                                                                 device);
757
758         return 0;
759 }
760
761 int __connman_technology_remove_device(struct connman_device *device)
762 {
763         struct connman_technology *technology;
764         enum connman_service_type type;
765
766         DBG("device %p", device);
767
768         type = __connman_device_get_service_type(device);
769         __connman_notifier_unregister(type);
770
771         technology = technology_find(type);
772         if (technology == NULL)
773                 return -ENXIO;
774
775         technology->device_list = g_slist_remove(technology->device_list,
776                                                                 device);
777         if (technology->device_list == NULL) {
778                 technology->state = CONNMAN_TECHNOLOGY_STATE_OFFLINE;
779                 state_changed(technology);
780         }
781
782         return 0;
783 }
784
785 static gboolean technology_pending_reply(gpointer user_data)
786 {
787         struct connman_technology *technology = user_data;
788         DBusMessage *reply;
789
790         /* Power request timedout, send ETIMEDOUT. */
791         if (technology->pending_reply != NULL) {
792                 reply = __connman_error_failed(technology->pending_reply, ETIMEDOUT);
793                 if (reply != NULL)
794                         g_dbus_send_message(connection, reply);
795
796                 dbus_message_unref(technology->pending_reply);
797                 technology->pending_reply = NULL;
798                 technology->pending_timeout = 0;
799         }
800
801         return FALSE;
802 }
803
804 int __connman_technology_enabled(enum connman_service_type type)
805 {
806         struct connman_technology *technology;
807
808         technology = technology_find(type);
809         if (technology == NULL)
810                 return -ENXIO;
811
812         if (g_atomic_int_exchange_and_add(&technology->enabled, 1) == 0) {
813                 __connman_notifier_enable(type);
814                 technology->state = CONNMAN_TECHNOLOGY_STATE_ENABLED;
815                 state_changed(technology);
816         }
817
818         if (technology->pending_reply != NULL) {
819                 g_dbus_send_reply(connection, technology->pending_reply, DBUS_TYPE_INVALID);
820                 dbus_message_unref(technology->pending_reply);
821                 technology->pending_reply = NULL;
822                 technology->pending_timeout = 0;
823         }
824
825         return 0;
826 }
827
828 int __connman_technology_enable(enum connman_service_type type, DBusMessage *msg)
829 {
830         struct connman_technology *technology;
831         GSList *list;
832         int err = 0;
833         int ret = -ENODEV;
834         DBusMessage *reply;
835
836         DBG("type %d enable", type);
837
838         technology = technology_find(type);
839         if (technology == NULL) {
840                 err = -ENXIO;
841                 goto done;
842         }
843
844         if (technology->pending_reply != NULL) {
845                 err = -EBUSY;
846                 goto done;
847         }
848
849         if (msg != NULL) {
850                 technology->pending_reply = dbus_message_ref(msg);
851                 /*
852                  * This is a bit of a trick. When msg is not NULL it means
853                  * thats technology_enable was invoked from the manager API. Hence we save
854                  * the state here.
855                  */
856                 technology->enable_persistent = TRUE;
857                 save_state(technology);
858         }
859
860         __connman_rfkill_block(technology->type, FALSE);
861
862         /*
863          * An empty device list means that devices in the technology
864          * were rfkill blocked. The unblock above will enable the devs.
865          */
866         if (technology->device_list == NULL)
867                 return 0;
868
869         for (list = technology->device_list; list; list = list->next) {
870                 struct connman_device *device = list->data;
871
872                 err = __connman_device_enable(device);
873                 /*
874                  * err = 0 : Device was enabled right away.
875                  * If atleast one device gets enabled, we consider
876                  * the technology to be enabled.
877                  */
878                 if (err == 0)
879                         ret = 0;
880         }
881
882 done:
883         if (ret == 0)
884                 return ret;
885
886         if (msg != NULL) {
887                 if (err == -EINPROGRESS)
888                         technology->pending_timeout = g_timeout_add_seconds(10,
889                                         technology_pending_reply, technology);
890                 else {
891                         reply = __connman_error_failed(msg, -err);
892                         if (reply != NULL)
893                                 g_dbus_send_message(connection, reply);
894                 }
895         }
896
897         return err;
898 }
899
900 int __connman_technology_disabled(enum connman_service_type type)
901 {
902         struct connman_technology *technology;
903
904         technology = technology_find(type);
905         if (technology == NULL)
906                 return -ENXIO;
907
908         if (technology->pending_reply != NULL) {
909                 g_dbus_send_reply(connection, technology->pending_reply, DBUS_TYPE_INVALID);
910                 dbus_message_unref(technology->pending_reply);
911                 technology->pending_reply = NULL;
912         }
913
914         if (g_atomic_int_dec_and_test(&technology->enabled) == TRUE) {
915                 __connman_notifier_disable(type);
916                 technology->state = CONNMAN_TECHNOLOGY_STATE_OFFLINE;
917                 state_changed(technology);
918         }
919
920         return 0;
921 }
922
923 int __connman_technology_disable(enum connman_service_type type, DBusMessage *msg)
924 {
925         struct connman_technology *technology;
926         GSList *list;
927         int err = 0;
928         int ret = -ENODEV;
929         DBusMessage *reply;
930
931         DBG("type %d disable", type);
932
933         technology = technology_find(type);
934         if (technology == NULL) {
935                 err = -ENXIO;
936                 goto done;
937         }
938
939         if (technology->pending_reply != NULL) {
940                 err = -EBUSY;
941                 goto done;
942         }
943
944         if (technology->tethering == TRUE)
945                 set_tethering(technology, FALSE);
946
947         if (msg != NULL) {
948                 technology->pending_reply = dbus_message_ref(msg);
949                 technology->enable_persistent = FALSE;
950                 save_state(technology);
951         }
952
953         __connman_rfkill_block(technology->type, TRUE);
954
955         for (list = technology->device_list; list; list = list->next) {
956                 struct connman_device *device = list->data;
957
958                 err = __connman_device_disable(device);
959                 if (err == 0)
960                         ret = 0;
961         }
962
963 done:
964         if (ret == 0)
965                 return ret;
966
967         if (msg != NULL) {
968                 if (err == -EINPROGRESS)
969                         technology->pending_timeout = g_timeout_add_seconds(10,
970                                         technology_pending_reply, technology);
971                 else {
972                         reply = __connman_error_failed(msg, -err);
973                         if (reply != NULL)
974                                 g_dbus_send_message(connection, reply);
975                 }
976         }
977
978         return err;
979 }
980
981 int __connman_technology_set_offlinemode(connman_bool_t offlinemode)
982 {
983         GSList *list;
984         int err = -EINVAL;
985
986         if (global_offlinemode == offlinemode)
987                 return 0;
988
989         DBG("offlinemode %s", offlinemode ? "On" : "Off");
990
991         /*
992          * This is a bit tricky. When you set offlinemode, there is no
993          * way to differentiate between attempting offline mode and
994          * resuming offlinemode from last saved profile. We need that
995          * information in rfkill_update, otherwise it falls back on the
996          * technology's persistent state. Hence we set the offline mode here
997          * but save it & call the notifier only if its successful.
998          */
999
1000         global_offlinemode = offlinemode;
1001
1002         /* Traverse technology list, enable/disable each technology. */
1003         for (list = technology_list; list; list = list->next) {
1004                 struct connman_technology *technology = list->data;
1005
1006                 if (offlinemode)
1007                         err = __connman_technology_disable(technology->type, NULL);
1008
1009                 if (!offlinemode && technology->enable_persistent)
1010                         err = __connman_technology_enable(technology->type, NULL);
1011         }
1012
1013         if (err == 0 || err == -EINPROGRESS || err == -EALREADY) {
1014                 connman_technology_save_offlinemode();
1015                 __connman_notifier_offlinemode(offlinemode);
1016         } else
1017                 global_offlinemode = connman_technology_load_offlinemode();
1018
1019         return err;
1020 }
1021
1022 int __connman_technology_add_rfkill(unsigned int index,
1023                                         enum connman_service_type type,
1024                                                 connman_bool_t softblock,
1025                                                 connman_bool_t hardblock)
1026 {
1027         struct connman_technology *technology;
1028         struct connman_rfkill *rfkill;
1029
1030         DBG("index %u type %d soft %u hard %u", index, type,
1031                                                         softblock, hardblock);
1032
1033         technology = technology_get(type);
1034         if (technology == NULL)
1035                 return -ENXIO;
1036
1037         rfkill = g_try_new0(struct connman_rfkill, 1);
1038         if (rfkill == NULL)
1039                 return -ENOMEM;
1040
1041         __connman_notifier_register(type);
1042
1043         rfkill->index = index;
1044         rfkill->type = type;
1045         rfkill->softblock = softblock;
1046         rfkill->hardblock = hardblock;
1047
1048         g_hash_table_replace(technology->rfkill_list, &rfkill->index, rfkill);
1049
1050         if (hardblock) {
1051                 DBG("%s is switched off.", get_name(type));
1052                 return 0;
1053         }
1054
1055         /*
1056          * If Offline mode is on, we softblock the device if it isnt already.
1057          * If Offline mode is off, we rely on the persistent state of tech.
1058          */
1059         if (global_offlinemode) {
1060                 if (!softblock)
1061                         return __connman_rfkill_block(type, TRUE);
1062         } else {
1063                 if (technology->enable_persistent && softblock)
1064                         return __connman_rfkill_block(type, FALSE);
1065                 /* if technology persistent state is offline */
1066                 if (!technology->enable_persistent && !softblock)
1067                         return __connman_rfkill_block(type, TRUE);
1068         }
1069
1070         return 0;
1071 }
1072
1073 int __connman_technology_update_rfkill(unsigned int index,
1074                                         enum connman_service_type type,
1075                                                 connman_bool_t softblock,
1076                                                 connman_bool_t hardblock)
1077 {
1078         struct connman_technology *technology;
1079         struct connman_rfkill *rfkill;
1080
1081         DBG("index %u soft %u hard %u", index, softblock, hardblock);
1082
1083         technology = technology_find(type);
1084         if (technology == NULL)
1085                 return -ENXIO;
1086
1087         rfkill = g_hash_table_lookup(technology->rfkill_list, &index);
1088         if (rfkill == NULL)
1089                 return -ENXIO;
1090
1091         if (rfkill->softblock == softblock &&
1092                 rfkill->hardblock == hardblock)
1093                 return 0;
1094
1095         rfkill->softblock = softblock;
1096         rfkill->hardblock = hardblock;
1097
1098         if (hardblock) {
1099                 DBG("%s is switched off.", get_name(type));
1100                 return 0;
1101         }
1102
1103         if (!global_offlinemode) {
1104                 if (technology->enable_persistent && softblock)
1105                         return __connman_rfkill_block(type, FALSE);
1106                 if (!technology->enable_persistent && !softblock)
1107                         return __connman_rfkill_block(type, TRUE);
1108         }
1109
1110         return 0;
1111 }
1112
1113 int __connman_technology_remove_rfkill(unsigned int index,
1114                                         enum connman_service_type type)
1115 {
1116         struct connman_technology *technology;
1117         struct connman_rfkill *rfkill;
1118
1119         DBG("index %u", index);
1120
1121         technology = technology_find(type);
1122         if (technology == NULL)
1123                 return -ENXIO;
1124
1125         rfkill = g_hash_table_lookup(technology->rfkill_list, &index);
1126         if (rfkill == NULL)
1127                 return -ENXIO;
1128
1129         g_hash_table_remove(technology->rfkill_list, &index);
1130
1131         technology_put(technology);
1132
1133         return 0;
1134 }
1135
1136 int __connman_technology_init(void)
1137 {
1138         DBG("");
1139
1140         connection = connman_dbus_get_connection();
1141
1142         global_offlinemode = connman_technology_load_offlinemode();
1143
1144         return 0;
1145 }
1146
1147 void __connman_technology_cleanup(void)
1148 {
1149         DBG("");
1150
1151         dbus_connection_unref(connection);
1152 }