5 * Copyright (C) 2007-2012 Intel Corporation. All rights reserved.
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.
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.
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
33 static DBusConnection *connection;
35 static GSList *technology_list = NULL;
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.
41 static GSList *techless_device_list = NULL;
42 static GHashTable *rfkill_list;
44 static connman_bool_t global_offlinemode;
46 struct connman_rfkill {
48 enum connman_service_type type;
49 connman_bool_t softblock;
50 connman_bool_t hardblock;
53 struct connman_technology {
55 enum connman_service_type type;
60 connman_bool_t connected;
62 connman_bool_t tethering;
63 char *tethering_ident;
64 char *tethering_passphrase;
66 connman_bool_t enable_persistent; /* Save the tech state */
68 struct connman_technology_driver *driver;
71 DBusMessage *pending_reply;
72 guint pending_timeout;
76 connman_bool_t hardblocked;
79 static GSList *driver_list = NULL;
81 static gint compare_priority(gconstpointer a, gconstpointer b)
83 const struct connman_technology_driver *driver1 = a;
84 const struct connman_technology_driver *driver2 = b;
86 return driver2->priority - driver1->priority;
89 static void rfkill_check(gpointer key, gpointer value, gpointer user_data)
91 struct connman_rfkill *rfkill = value;
92 enum connman_service_type type = GPOINTER_TO_INT(user_data);
94 /* Calling _technology_rfkill_add will update the tech. */
95 if (rfkill->type == type)
96 __connman_technology_add_rfkill(rfkill->index, type,
97 rfkill->softblock, rfkill->hardblock);
101 * connman_technology_driver_register:
102 * @driver: Technology driver definition
104 * Register a new technology driver
106 * Returns: %0 on success
108 int connman_technology_driver_register(struct connman_technology_driver *driver)
111 struct connman_device *device;
112 enum connman_service_type type;
114 DBG("Registering %s driver", driver->name);
116 driver_list = g_slist_insert_sorted(driver_list, driver,
119 if (techless_device_list == NULL)
123 * Check for technology less devices if this driver
124 * can service any of them.
126 for (list = techless_device_list; list; list = list->next) {
129 type = __connman_device_get_service_type(device);
130 if (type != driver->type)
133 techless_device_list = g_slist_remove(techless_device_list,
136 __connman_technology_add_device(device);
140 /* Check for orphaned rfkill switches. */
141 g_hash_table_foreach(rfkill_list, rfkill_check,
142 GINT_TO_POINTER(driver->type));
148 * connman_technology_driver_unregister:
149 * @driver: Technology driver definition
151 * Remove a previously registered technology driver
153 void connman_technology_driver_unregister(struct connman_technology_driver *driver)
156 struct connman_technology *technology;
158 DBG("Unregistering driver %p name %s", driver, driver->name);
160 for (list = technology_list; list; list = list->next) {
161 technology = list->data;
163 if (technology->driver == NULL)
166 if (technology->type == driver->type) {
167 technology->driver->remove(technology);
168 technology->driver = NULL;
172 driver_list = g_slist_remove(driver_list, driver);
175 static void tethering_changed(struct connman_technology *technology)
177 connman_bool_t tethering = technology->tethering;
179 connman_dbus_property_changed_basic(technology->path,
180 CONNMAN_TECHNOLOGY_INTERFACE, "Tethering",
181 DBUS_TYPE_BOOLEAN, &tethering);
184 void connman_technology_tethering_notify(struct connman_technology *technology,
185 connman_bool_t enabled)
189 DBG("technology %p enabled %u", technology, enabled);
191 if (technology->tethering == enabled)
194 technology->tethering = enabled;
196 tethering_changed(technology);
199 __connman_tethering_set_enabled();
201 for (list = technology_list; list; list = list->next) {
202 struct connman_technology *other_tech = list->data;
203 if (other_tech->tethering == TRUE)
207 __connman_tethering_set_disabled();
211 static int set_tethering(struct connman_technology *technology,
212 connman_bool_t enabled)
214 const char *ident, *passphrase, *bridge;
216 ident = technology->tethering_ident;
217 passphrase = technology->tethering_passphrase;
219 if (technology->driver == NULL ||
220 technology->driver->set_tethering == NULL)
223 bridge = __connman_tethering_get_bridge();
227 if (technology->type == CONNMAN_SERVICE_TYPE_WIFI &&
228 (ident == NULL || passphrase == NULL))
231 return technology->driver->set_tethering(technology, ident, passphrase,
235 void connman_technology_regdom_notify(struct connman_technology *technology,
241 connman_error("Failed to set regulatory domain");
243 DBG("Regulatory domain set to %s", alpha2);
245 g_free(technology->regdom);
246 technology->regdom = g_strdup(alpha2);
249 static int set_regdom_by_device(struct connman_technology *technology,
254 for (list = technology->device_list; list; list = list->next) {
255 struct connman_device *device = list->data;
257 if (connman_device_set_regdom(device, alpha2) != 0)
264 int connman_technology_set_regdom(const char *alpha2)
268 for (list = technology_list; list; list = list->next) {
269 struct connman_technology *technology = list->data;
271 if (set_regdom_by_device(technology, alpha2) != 0) {
272 if (technology->driver == NULL)
275 if (technology->driver->set_regdom != NULL)
276 technology->driver->set_regdom(technology,
284 static void free_rfkill(gpointer data)
286 struct connman_rfkill *rfkill = data;
291 static const char *get_name(enum connman_service_type type)
294 case CONNMAN_SERVICE_TYPE_UNKNOWN:
295 case CONNMAN_SERVICE_TYPE_SYSTEM:
296 case CONNMAN_SERVICE_TYPE_GPS:
297 case CONNMAN_SERVICE_TYPE_VPN:
298 case CONNMAN_SERVICE_TYPE_GADGET:
300 case CONNMAN_SERVICE_TYPE_ETHERNET:
302 case CONNMAN_SERVICE_TYPE_WIFI:
304 case CONNMAN_SERVICE_TYPE_WIMAX:
306 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
308 case CONNMAN_SERVICE_TYPE_CELLULAR:
315 static void technology_save(struct connman_technology *technology)
320 DBG("technology %p", technology);
322 keyfile = __connman_storage_load_global();
324 keyfile = g_key_file_new();
326 identifier = g_strdup_printf("%s", get_name(technology->type));
327 if (identifier == NULL)
330 g_key_file_set_boolean(keyfile, identifier, "Enable",
331 technology->enable_persistent);
333 if (technology->tethering_ident != NULL)
334 g_key_file_set_string(keyfile, identifier,
335 "Tethering.Identifier",
336 technology->tethering_ident);
338 if (technology->tethering_passphrase != NULL)
339 g_key_file_set_string(keyfile, identifier,
340 "Tethering.Passphrase",
341 technology->tethering_passphrase);
346 __connman_storage_save_global(keyfile);
348 g_key_file_free(keyfile);
353 static void technology_load(struct connman_technology *technology)
357 GError *error = NULL;
358 connman_bool_t enable;
360 DBG("technology %p", technology);
362 keyfile = __connman_storage_load_global();
363 /* Fallback on disabling technology if file not found. */
364 if (keyfile == NULL) {
365 if (technology->type == CONNMAN_SERVICE_TYPE_ETHERNET)
366 /* We enable ethernet by default */
367 technology->enable_persistent = TRUE;
369 technology->enable_persistent = FALSE;
373 identifier = g_strdup_printf("%s", get_name(technology->type));
374 if (identifier == NULL)
377 enable = g_key_file_get_boolean(keyfile, identifier, "Enable", &error);
379 technology->enable_persistent = enable;
381 if (technology->type == CONNMAN_SERVICE_TYPE_ETHERNET)
382 technology->enable_persistent = TRUE;
384 technology->enable_persistent = FALSE;
386 technology_save(technology);
387 g_clear_error(&error);
390 technology->tethering_ident = g_key_file_get_string(keyfile,
391 identifier, "Tethering.Identifier", NULL);
393 technology->tethering_passphrase = g_key_file_get_string(keyfile,
394 identifier, "Tethering.Passphrase", NULL);
398 g_key_file_free(keyfile);
403 connman_bool_t __connman_technology_get_offlinemode(void)
405 return global_offlinemode;
408 static void connman_technology_save_offlinemode()
412 keyfile = __connman_storage_load_global();
414 keyfile = g_key_file_new();
416 g_key_file_set_boolean(keyfile, "global",
417 "OfflineMode", global_offlinemode);
419 __connman_storage_save_global(keyfile);
421 g_key_file_free(keyfile);
426 static connman_bool_t connman_technology_load_offlinemode()
429 GError *error = NULL;
430 connman_bool_t offlinemode;
432 /* If there is a error, we enable offlinemode */
433 keyfile = __connman_storage_load_global();
437 offlinemode = g_key_file_get_boolean(keyfile, "global",
438 "OfflineMode", &error);
441 g_clear_error(&error);
444 g_key_file_free(keyfile);
449 static void append_properties(DBusMessageIter *iter,
450 struct connman_technology *technology)
452 DBusMessageIter dict;
454 connman_bool_t powered;
456 connman_dbus_dict_open(iter, &dict);
458 str = get_name(technology->type);
460 connman_dbus_dict_append_basic(&dict, "Name",
461 DBUS_TYPE_STRING, &str);
463 str = __connman_service_type2string(technology->type);
465 connman_dbus_dict_append_basic(&dict, "Type",
466 DBUS_TYPE_STRING, &str);
468 __sync_synchronize();
469 if (technology->enabled > 0)
473 connman_dbus_dict_append_basic(&dict, "Powered",
474 DBUS_TYPE_BOOLEAN, &powered);
476 connman_dbus_dict_append_basic(&dict, "Connected",
478 &technology->connected);
480 connman_dbus_dict_append_basic(&dict, "Tethering",
482 &technology->tethering);
484 if (technology->tethering_ident != NULL)
485 connman_dbus_dict_append_basic(&dict, "TetheringIdentifier",
487 &technology->tethering_ident);
489 if (technology->tethering_passphrase != NULL)
490 connman_dbus_dict_append_basic(&dict, "TetheringPassphrase",
492 &technology->tethering_passphrase);
494 connman_dbus_dict_close(iter, &dict);
497 static void technology_added_signal(struct connman_technology *technology)
500 DBusMessageIter iter;
502 signal = dbus_message_new_signal(CONNMAN_MANAGER_PATH,
503 CONNMAN_MANAGER_INTERFACE, "TechnologyAdded");
507 dbus_message_iter_init_append(signal, &iter);
508 dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
510 append_properties(&iter, technology);
512 dbus_connection_send(connection, signal, NULL);
513 dbus_message_unref(signal);
516 static void technology_removed_signal(struct connman_technology *technology)
518 g_dbus_emit_signal(connection, CONNMAN_MANAGER_PATH,
519 CONNMAN_MANAGER_INTERFACE, "TechnologyRemoved",
520 DBUS_TYPE_OBJECT_PATH, &technology->path,
524 static DBusMessage *get_properties(DBusConnection *conn,
525 DBusMessage *message, void *user_data)
527 struct connman_technology *technology = user_data;
529 DBusMessageIter iter;
531 reply = dbus_message_new_method_return(message);
535 dbus_message_iter_init_append(reply, &iter);
536 append_properties(&iter, technology);
541 void __connman_technology_list_struct(DBusMessageIter *array)
544 DBusMessageIter entry;
546 for (list = technology_list; list; list = list->next) {
547 struct connman_technology *technology = list->data;
549 if (technology->path == NULL)
552 dbus_message_iter_open_container(array, DBUS_TYPE_STRUCT,
554 dbus_message_iter_append_basic(&entry, DBUS_TYPE_OBJECT_PATH,
556 append_properties(&entry, technology);
557 dbus_message_iter_close_container(array, &entry);
561 static gboolean technology_pending_reply(gpointer user_data)
563 struct connman_technology *technology = user_data;
566 /* Power request timedout, send ETIMEDOUT. */
567 if (technology->pending_reply != NULL) {
568 reply = __connman_error_failed(technology->pending_reply, ETIMEDOUT);
570 g_dbus_send_message(connection, reply);
572 dbus_message_unref(technology->pending_reply);
573 technology->pending_reply = NULL;
574 technology->pending_timeout = 0;
580 static int technology_enable(struct connman_technology *technology,
581 connman_bool_t hardblock)
586 DBG("technology %p enable", technology);
588 __sync_synchronize();
589 if (technology->enabled > 0) {
594 if (technology->pending_reply != NULL) {
599 if (hardblock == TRUE && technology->enable_persistent == FALSE)
602 __connman_rfkill_block(technology->type, FALSE);
604 for (list = technology->device_list; list; list = list->next) {
605 struct connman_device *device = list->data;
607 err = __connman_device_enable(device);
614 static int technology_disable(struct connman_technology *technology,
615 connman_bool_t hardblock)
620 DBG("technology %p disable", technology);
622 __sync_synchronize();
623 if (technology->enabled == 0) {
628 if (technology->pending_reply != NULL) {
633 if (technology->tethering == TRUE)
634 set_tethering(technology, FALSE);
636 if (hardblock == FALSE)
637 __connman_rfkill_block(technology->type, TRUE);
639 for (list = technology->device_list; list; list = list->next) {
640 struct connman_device *device = list->data;
642 err = __connman_device_disable(device);
649 static DBusMessage *set_powered(struct connman_technology *technology,
650 DBusMessage *msg, connman_bool_t powered)
652 DBusMessage *reply = NULL;
653 connman_bool_t persistent;
656 if (powered == TRUE) {
657 err = technology_enable(technology, FALSE);
660 err = technology_disable(technology, FALSE);
665 technology->enable_persistent = persistent;
666 technology_save(technology);
669 if (err == -EINPROGRESS) {
670 technology->pending_reply = dbus_message_ref(msg);
671 technology->pending_timeout = g_timeout_add_seconds(10,
672 technology_pending_reply, technology);
673 } else if (err == -EALREADY) {
675 reply = __connman_error_already_enabled(msg);
677 reply = __connman_error_already_disabled(msg);
679 reply = __connman_error_failed(msg, -err);
681 reply = g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
686 static DBusMessage *set_property(DBusConnection *conn,
687 DBusMessage *msg, void *data)
689 struct connman_technology *technology = data;
690 DBusMessageIter iter, value;
694 DBG("conn %p", conn);
696 if (dbus_message_iter_init(msg, &iter) == FALSE)
697 return __connman_error_invalid_arguments(msg);
699 if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_STRING)
700 return __connman_error_invalid_arguments(msg);
702 dbus_message_iter_get_basic(&iter, &name);
703 dbus_message_iter_next(&iter);
705 if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_VARIANT)
706 return __connman_error_invalid_arguments(msg);
708 dbus_message_iter_recurse(&iter, &value);
710 type = dbus_message_iter_get_arg_type(&value);
712 DBG("property %s", name);
714 if (g_str_equal(name, "Tethering") == TRUE) {
716 connman_bool_t tethering;
718 if (type != DBUS_TYPE_BOOLEAN)
719 return __connman_error_invalid_arguments(msg);
721 dbus_message_iter_get_basic(&value, &tethering);
723 if (technology->tethering == tethering) {
724 if (tethering == FALSE)
725 return __connman_error_already_disabled(msg);
727 return __connman_error_already_enabled(msg);
730 err = set_tethering(technology, tethering);
732 return __connman_error_failed(msg, -err);
734 } else if (g_str_equal(name, "TetheringIdentifier") == TRUE) {
737 dbus_message_iter_get_basic(&value, &str);
739 if (technology->type != CONNMAN_SERVICE_TYPE_WIFI)
740 return __connman_error_not_supported(msg);
742 if (strlen(str) < 1 || strlen(str) > 32)
743 return __connman_error_invalid_arguments(msg);
745 if (g_strcmp0(technology->tethering_ident, str) != 0) {
746 g_free(technology->tethering_ident);
747 technology->tethering_ident = g_strdup(str);
748 technology_save(technology);
750 connman_dbus_property_changed_basic(technology->path,
751 CONNMAN_TECHNOLOGY_INTERFACE,
752 "TetheringIdentifier",
754 &technology->tethering_ident);
756 } else if (g_str_equal(name, "TetheringPassphrase") == TRUE) {
759 dbus_message_iter_get_basic(&value, &str);
761 if (technology->type != CONNMAN_SERVICE_TYPE_WIFI)
762 return __connman_error_not_supported(msg);
764 if (strlen(str) < 8 || strlen(str) > 63)
765 return __connman_error_passphrase_required(msg);
767 if (g_strcmp0(technology->tethering_passphrase, str) != 0) {
768 g_free(technology->tethering_passphrase);
769 technology->tethering_passphrase = g_strdup(str);
770 technology_save(technology);
772 connman_dbus_property_changed_basic(technology->path,
773 CONNMAN_TECHNOLOGY_INTERFACE,
774 "TetheringPassphrase",
776 &technology->tethering_passphrase);
778 } else if (g_str_equal(name, "Powered") == TRUE) {
779 connman_bool_t enable;
781 if (type != DBUS_TYPE_BOOLEAN)
782 return __connman_error_invalid_arguments(msg);
784 dbus_message_iter_get_basic(&value, &enable);
786 return set_powered(technology, msg, enable);
788 return __connman_error_invalid_property(msg);
790 return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
793 static struct connman_technology *technology_find(enum connman_service_type type)
797 DBG("type %d", type);
799 for (list = technology_list; list; list = list->next) {
800 struct connman_technology *technology = list->data;
802 if (technology->type == type)
809 static void reply_scan_pending(struct connman_technology *technology, int err)
813 DBG("technology %p err %d", technology, err);
815 while (technology->scan_pending != NULL) {
816 DBusMessage *msg = technology->scan_pending->data;
818 DBG("reply to %s", dbus_message_get_sender(msg));
821 reply = g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
823 reply = __connman_error_failed(msg, -err);
824 g_dbus_send_message(connection, reply);
825 dbus_message_unref(msg);
827 technology->scan_pending =
828 g_slist_delete_link(technology->scan_pending,
829 technology->scan_pending);
833 void __connman_technology_scan_started(struct connman_device *device)
835 DBG("device %p", device);
838 void __connman_technology_scan_stopped(struct connman_device *device)
841 struct connman_technology *technology;
842 enum connman_service_type type;
845 type = __connman_device_get_service_type(device);
846 technology = technology_find(type);
848 DBG("technology %p device %p", technology, device);
850 if (technology == NULL)
853 for (list = technology->device_list; list != NULL; list = list->next) {
854 struct connman_device *other_device = list->data;
856 if (device == other_device)
859 if (__connman_device_get_service_type(other_device) != type)
862 if (connman_device_get_scanning(other_device) == TRUE)
867 reply_scan_pending(technology, 0);
870 void __connman_technology_notify_regdom_by_device(struct connman_device *device,
871 int result, const char *alpha2)
873 struct connman_technology *technology;
874 enum connman_service_type type;
876 type = __connman_device_get_service_type(device);
877 technology = technology_find(type);
879 if (technology == NULL)
883 if (technology->driver != NULL &&
884 technology->driver->set_regdom != NULL) {
885 technology->driver->set_regdom(technology, alpha2);
892 connman_technology_regdom_notify(technology, alpha2);
895 static DBusMessage *scan(DBusConnection *conn, DBusMessage *msg, void *data)
897 struct connman_technology *technology = data;
900 DBG ("technology %p request from %s", technology,
901 dbus_message_get_sender(msg));
903 dbus_message_ref(msg);
904 technology->scan_pending =
905 g_slist_prepend(technology->scan_pending, msg);
907 err = __connman_device_request_scan(technology->type);
909 reply_scan_pending(technology, err);
914 static const GDBusMethodTable technology_methods[] = {
915 { GDBUS_DEPRECATED_METHOD("GetProperties",
916 NULL, GDBUS_ARGS({ "properties", "a{sv}" }),
918 { GDBUS_ASYNC_METHOD("SetProperty",
919 GDBUS_ARGS({ "name", "s" }, { "value", "v" }),
920 NULL, set_property) },
921 { GDBUS_ASYNC_METHOD("Scan", NULL, NULL, scan) },
925 static const GDBusSignalTable technology_signals[] = {
926 { GDBUS_SIGNAL("PropertyChanged",
927 GDBUS_ARGS({ "name", "s" }, { "value", "v" })) },
931 static struct connman_technology *technology_get(enum connman_service_type type)
933 struct connman_technology *technology;
934 struct connman_technology_driver *driver = NULL;
939 DBG("type %d", type);
941 str = __connman_service_type2string(type);
945 technology = technology_find(type);
946 if (technology != NULL) {
947 __sync_fetch_and_add(&technology->refcount, 1);
951 /* First check if we have a driver for this technology type */
952 for (list = driver_list; list; list = list->next) {
955 if (driver->type == type)
961 if (driver == NULL) {
962 DBG("No matching driver found for %s.",
963 __connman_service_type2string(type));
967 technology = g_try_new0(struct connman_technology, 1);
968 if (technology == NULL)
971 technology->refcount = 1;
973 if (type == CONNMAN_SERVICE_TYPE_ETHERNET)
974 technology->hardblocked = FALSE;
976 technology->hardblocked = TRUE;
978 technology->type = type;
979 technology->path = g_strdup_printf("%s/technology/%s",
982 technology->device_list = NULL;
984 technology->pending_reply = NULL;
986 technology_load(technology);
988 if (g_dbus_register_interface(connection, technology->path,
989 CONNMAN_TECHNOLOGY_INTERFACE,
990 technology_methods, technology_signals,
991 NULL, technology, NULL) == FALSE) {
992 connman_error("Failed to register %s", technology->path);
997 technology_list = g_slist_prepend(technology_list, technology);
999 technology_added_signal(technology);
1001 technology->driver = driver;
1002 err = driver->probe(technology);
1004 DBG("Driver probe failed for technology %p", technology);
1006 DBG("technology %p", technology);
1011 static void technology_put(struct connman_technology *technology)
1013 DBG("technology %p", technology);
1015 if (__sync_sub_and_fetch(&technology->refcount, 1) > 0)
1018 reply_scan_pending(technology, -EINTR);
1020 if (technology->driver) {
1021 technology->driver->remove(technology);
1022 technology->driver = NULL;
1025 technology_list = g_slist_remove(technology_list, technology);
1027 technology_removed_signal(technology);
1029 g_dbus_unregister_interface(connection, technology->path,
1030 CONNMAN_TECHNOLOGY_INTERFACE);
1032 g_slist_free(technology->device_list);
1034 g_free(technology->path);
1035 g_free(technology->regdom);
1036 g_free(technology->tethering_ident);
1037 g_free(technology->tethering_passphrase);
1041 void __connman_technology_add_interface(enum connman_service_type type,
1042 int index, const char *name, const char *ident)
1044 struct connman_technology *technology;
1047 case CONNMAN_SERVICE_TYPE_UNKNOWN:
1048 case CONNMAN_SERVICE_TYPE_SYSTEM:
1050 case CONNMAN_SERVICE_TYPE_ETHERNET:
1051 case CONNMAN_SERVICE_TYPE_WIFI:
1052 case CONNMAN_SERVICE_TYPE_WIMAX:
1053 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
1054 case CONNMAN_SERVICE_TYPE_CELLULAR:
1055 case CONNMAN_SERVICE_TYPE_GPS:
1056 case CONNMAN_SERVICE_TYPE_VPN:
1057 case CONNMAN_SERVICE_TYPE_GADGET:
1061 connman_info("Adding interface %s [ %s ]", name,
1062 __connman_service_type2string(type));
1064 technology = technology_find(type);
1066 if (technology == NULL || technology->driver == NULL
1067 || technology->driver->add_interface == NULL)
1070 technology->driver->add_interface(technology,
1071 index, name, ident);
1074 void __connman_technology_remove_interface(enum connman_service_type type,
1075 int index, const char *name, const char *ident)
1077 struct connman_technology *technology;
1080 case CONNMAN_SERVICE_TYPE_UNKNOWN:
1081 case CONNMAN_SERVICE_TYPE_SYSTEM:
1083 case CONNMAN_SERVICE_TYPE_ETHERNET:
1084 case CONNMAN_SERVICE_TYPE_WIFI:
1085 case CONNMAN_SERVICE_TYPE_WIMAX:
1086 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
1087 case CONNMAN_SERVICE_TYPE_CELLULAR:
1088 case CONNMAN_SERVICE_TYPE_GPS:
1089 case CONNMAN_SERVICE_TYPE_VPN:
1090 case CONNMAN_SERVICE_TYPE_GADGET:
1094 connman_info("Remove interface %s [ %s ]", name,
1095 __connman_service_type2string(type));
1097 technology = technology_find(type);
1099 if (technology == NULL || technology->driver == NULL)
1102 if (technology->driver->remove_interface)
1103 technology->driver->remove_interface(technology, index);
1106 int __connman_technology_add_device(struct connman_device *device)
1108 struct connman_technology *technology;
1109 enum connman_service_type type;
1111 DBG("device %p", device);
1113 type = __connman_device_get_service_type(device);
1115 technology = technology_get(type);
1116 if (technology == NULL) {
1118 * Since no driver can be found for this device at the moment we
1119 * add it to the techless device list.
1121 techless_device_list = g_slist_prepend(techless_device_list,
1127 if (technology->enable_persistent &&
1128 global_offlinemode == FALSE &&
1129 technology->hardblocked == FALSE) {
1130 int err = __connman_device_enable(device);
1132 * connman_technology_add_device() calls __connman_device_enable()
1133 * but since the device is already enabled, the calls does not
1134 * propagate through to connman_technology_enabled via
1135 * connman_device_set_powered.
1137 if (err == -EALREADY)
1138 __connman_technology_enabled(type);
1140 /* if technology persistent state is offline or hardblocked */
1141 if (technology->enable_persistent == FALSE ||
1142 technology->hardblocked == TRUE)
1143 __connman_device_disable(device);
1145 technology->device_list = g_slist_prepend(technology->device_list,
1151 int __connman_technology_remove_device(struct connman_device *device)
1153 struct connman_technology *technology;
1154 enum connman_service_type type;
1156 DBG("device %p", device);
1158 type = __connman_device_get_service_type(device);
1160 technology = technology_find(type);
1161 if (technology == NULL) {
1162 techless_device_list = g_slist_remove(techless_device_list,
1167 technology->device_list = g_slist_remove(technology->device_list,
1169 technology_put(technology);
1174 static void powered_changed(struct connman_technology *technology)
1176 connman_bool_t powered;
1178 __sync_synchronize();
1179 if (technology->enabled >0)
1184 connman_dbus_property_changed_basic(technology->path,
1185 CONNMAN_TECHNOLOGY_INTERFACE, "Powered",
1186 DBUS_TYPE_BOOLEAN, &powered);
1189 int __connman_technology_enabled(enum connman_service_type type)
1191 struct connman_technology *technology;
1193 technology = technology_find(type);
1194 if (technology == NULL)
1197 if (__sync_fetch_and_add(&technology->enabled, 1) != 0)
1200 powered_changed(technology);
1202 if (technology->pending_reply != NULL) {
1203 g_dbus_send_reply(connection, technology->pending_reply, DBUS_TYPE_INVALID);
1204 dbus_message_unref(technology->pending_reply);
1205 g_source_remove(technology->pending_timeout);
1206 technology->pending_reply = NULL;
1207 technology->pending_timeout = 0;
1213 int __connman_technology_disabled(enum connman_service_type type)
1215 struct connman_technology *technology;
1217 technology = technology_find(type);
1218 if (technology == NULL)
1221 if (__sync_fetch_and_sub(&technology->enabled, 1) != 1)
1222 return -EINPROGRESS;
1224 if (technology->pending_reply != NULL) {
1225 g_dbus_send_reply(connection, technology->pending_reply, DBUS_TYPE_INVALID);
1226 dbus_message_unref(technology->pending_reply);
1227 g_source_remove(technology->pending_timeout);
1228 technology->pending_reply = NULL;
1229 technology->pending_timeout = 0;
1232 powered_changed(technology);
1237 int __connman_technology_set_offlinemode(connman_bool_t offlinemode)
1242 if (global_offlinemode == offlinemode)
1245 DBG("offlinemode %s", offlinemode ? "On" : "Off");
1248 * This is a bit tricky. When you set offlinemode, there is no
1249 * way to differentiate between attempting offline mode and
1250 * resuming offlinemode from last saved profile. We need that
1251 * information in rfkill_update, otherwise it falls back on the
1252 * technology's persistent state. Hence we set the offline mode here
1253 * but save it & call the notifier only if its successful.
1256 global_offlinemode = offlinemode;
1258 /* Traverse technology list, enable/disable each technology. */
1259 for (list = technology_list; list; list = list->next) {
1260 struct connman_technology *technology = list->data;
1263 err = technology_disable(technology, FALSE);
1265 if (!offlinemode && technology->enable_persistent)
1266 err = technology_enable(technology, FALSE);
1269 if (err == 0 || err == -EINPROGRESS || err == -EALREADY) {
1270 connman_technology_save_offlinemode();
1271 __connman_notifier_offlinemode(offlinemode);
1273 global_offlinemode = connman_technology_load_offlinemode();
1278 void __connman_technology_set_connected(enum connman_service_type type,
1279 connman_bool_t connected)
1281 struct connman_technology *technology;
1283 technology = technology_find(type);
1284 if (technology == NULL)
1287 DBG("technology %p connected %d", technology, connected);
1289 technology->connected = connected;
1291 connman_dbus_property_changed_basic(technology->path,
1292 CONNMAN_TECHNOLOGY_INTERFACE, "Connected",
1293 DBUS_TYPE_BOOLEAN, &connected);
1296 static void technology_apply_hardblock_change(struct connman_technology *technology,
1297 connman_bool_t hardblock)
1299 gboolean apply = TRUE;
1300 GList *start, *list;
1302 if (technology->hardblocked == hardblock)
1305 start = g_hash_table_get_values(rfkill_list);
1306 for (list = start; list != NULL; list = list->next) {
1307 struct connman_rfkill *rfkill = list->data;
1309 if (rfkill->type != technology->type)
1312 if (rfkill->hardblock != hardblock)
1321 technology->hardblocked = hardblock;
1323 if (hardblock == TRUE) {
1324 DBG("%s is switched off.", get_name(technology->type));
1325 technology_disable(technology, TRUE);
1327 technology_enable(technology, TRUE);
1331 int __connman_technology_add_rfkill(unsigned int index,
1332 enum connman_service_type type,
1333 connman_bool_t softblock,
1334 connman_bool_t hardblock)
1336 struct connman_technology *technology;
1337 struct connman_rfkill *rfkill;
1339 DBG("index %u type %d soft %u hard %u", index, type,
1340 softblock, hardblock);
1342 rfkill = g_hash_table_lookup(rfkill_list, GINT_TO_POINTER(index));
1346 rfkill = g_try_new0(struct connman_rfkill, 1);
1350 rfkill->index = index;
1351 rfkill->type = type;
1352 rfkill->softblock = softblock;
1353 rfkill->hardblock = hardblock;
1355 g_hash_table_insert(rfkill_list, GINT_TO_POINTER(index), rfkill);
1358 technology = technology_get(type);
1359 /* If there is no driver for this type, ignore it. */
1360 if (technology == NULL)
1363 technology_apply_hardblock_change(technology, hardblock);
1366 * If Offline mode is on, we softblock the device if it isnt already.
1367 * If Offline mode is off, we rely on the persistent state of tech.
1369 if (global_offlinemode) {
1371 return __connman_rfkill_block(type, TRUE);
1373 if (technology->enable_persistent && softblock)
1374 return __connman_rfkill_block(type, FALSE);
1375 /* if technology persistent state is offline */
1376 if (!technology->enable_persistent && !softblock)
1377 return __connman_rfkill_block(type, TRUE);
1383 int __connman_technology_update_rfkill(unsigned int index,
1384 enum connman_service_type type,
1385 connman_bool_t softblock,
1386 connman_bool_t hardblock)
1388 struct connman_technology *technology;
1389 struct connman_rfkill *rfkill;
1391 DBG("index %u soft %u hard %u", index, softblock, hardblock);
1393 rfkill = g_hash_table_lookup(rfkill_list, GINT_TO_POINTER(index));
1397 if (rfkill->softblock == softblock &&
1398 rfkill->hardblock == hardblock)
1401 rfkill->softblock = softblock;
1402 rfkill->hardblock = hardblock;
1404 technology = technology_find(type);
1405 /* If there is no driver for this type, ignore it. */
1406 if (technology == NULL)
1409 technology_apply_hardblock_change(technology, hardblock);
1411 if (!global_offlinemode) {
1412 if (technology->enable_persistent && softblock)
1413 return __connman_rfkill_block(type, FALSE);
1414 if (!technology->enable_persistent && !softblock)
1415 return __connman_rfkill_block(type, TRUE);
1421 int __connman_technology_remove_rfkill(unsigned int index,
1422 enum connman_service_type type)
1424 struct connman_technology *technology;
1425 struct connman_rfkill *rfkill;
1427 DBG("index %u", index);
1429 rfkill = g_hash_table_lookup(rfkill_list, GINT_TO_POINTER(index));
1433 g_hash_table_remove(rfkill_list, GINT_TO_POINTER(index));
1435 technology = technology_find(type);
1436 if (technology == NULL)
1439 technology_put(technology);
1444 int __connman_technology_init(void)
1448 connection = connman_dbus_get_connection();
1450 rfkill_list = g_hash_table_new_full(g_direct_hash, g_direct_equal,
1453 global_offlinemode = connman_technology_load_offlinemode();
1455 /* This will create settings file if it is missing */
1456 connman_technology_save_offlinemode();
1461 void __connman_technology_cleanup(void)
1465 g_hash_table_destroy(rfkill_list);
1467 dbus_connection_unref(connection);