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;
77 static GSList *driver_list = NULL;
79 static gint compare_priority(gconstpointer a, gconstpointer b)
81 const struct connman_technology_driver *driver1 = a;
82 const struct connman_technology_driver *driver2 = b;
84 return driver2->priority - driver1->priority;
87 static void rfkill_check(gpointer key, gpointer value, gpointer user_data)
89 struct connman_rfkill *rfkill = value;
90 enum connman_service_type type = GPOINTER_TO_INT(user_data);
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);
99 * connman_technology_driver_register:
100 * @driver: Technology driver definition
102 * Register a new technology driver
104 * Returns: %0 on success
106 int connman_technology_driver_register(struct connman_technology_driver *driver)
109 struct connman_device *device;
110 enum connman_service_type type;
112 DBG("Registering %s driver", driver->name);
114 driver_list = g_slist_insert_sorted(driver_list, driver,
117 if (techless_device_list == NULL)
121 * Check for technology less devices if this driver
122 * can service any of them.
124 for (list = techless_device_list; list; list = list->next) {
127 type = __connman_device_get_service_type(device);
128 if (type != driver->type)
131 techless_device_list = g_slist_remove(techless_device_list,
134 __connman_technology_add_device(device);
138 /* Check for orphaned rfkill switches. */
139 g_hash_table_foreach(rfkill_list, rfkill_check,
140 GINT_TO_POINTER(driver->type));
146 * connman_technology_driver_unregister:
147 * @driver: Technology driver definition
149 * Remove a previously registered technology driver
151 void connman_technology_driver_unregister(struct connman_technology_driver *driver)
154 struct connman_technology *technology;
156 DBG("Unregistering driver %p name %s", driver, driver->name);
158 for (list = technology_list; list; list = list->next) {
159 technology = list->data;
161 if (technology->driver == NULL)
164 if (technology->type == driver->type) {
165 technology->driver->remove(technology);
166 technology->driver = NULL;
170 driver_list = g_slist_remove(driver_list, driver);
173 static void tethering_changed(struct connman_technology *technology)
175 connman_bool_t tethering = technology->tethering;
177 connman_dbus_property_changed_basic(technology->path,
178 CONNMAN_TECHNOLOGY_INTERFACE, "Tethering",
179 DBUS_TYPE_BOOLEAN, &tethering);
182 void connman_technology_tethering_notify(struct connman_technology *technology,
183 connman_bool_t enabled)
187 DBG("technology %p enabled %u", technology, enabled);
189 if (technology->tethering == enabled)
192 technology->tethering = enabled;
194 tethering_changed(technology);
197 __connman_tethering_set_enabled();
199 for (list = technology_list; list; list = list->next) {
200 struct connman_technology *other_tech = list->data;
201 if (other_tech->tethering == TRUE)
205 __connman_tethering_set_disabled();
209 static int set_tethering(struct connman_technology *technology,
210 connman_bool_t enabled)
212 const char *ident, *passphrase, *bridge;
214 ident = technology->tethering_ident;
215 passphrase = technology->tethering_passphrase;
217 if (technology->driver == NULL ||
218 technology->driver->set_tethering == NULL)
221 bridge = __connman_tethering_get_bridge();
225 if (technology->type == CONNMAN_SERVICE_TYPE_WIFI &&
226 (ident == NULL || passphrase == NULL))
229 return technology->driver->set_tethering(technology, ident, passphrase,
233 void connman_technology_regdom_notify(struct connman_technology *technology,
239 connman_error("Failed to set regulatory domain");
241 DBG("Regulatory domain set to %s", alpha2);
243 g_free(technology->regdom);
244 technology->regdom = g_strdup(alpha2);
247 int connman_technology_set_regdom(const char *alpha2)
251 for (list = technology_list; list; list = list->next) {
252 struct connman_technology *technology = list->data;
254 if (technology->driver == NULL)
257 if (technology->driver->set_regdom)
258 technology->driver->set_regdom(technology, alpha2);
264 static void free_rfkill(gpointer data)
266 struct connman_rfkill *rfkill = data;
271 static const char *get_name(enum connman_service_type type)
274 case CONNMAN_SERVICE_TYPE_UNKNOWN:
275 case CONNMAN_SERVICE_TYPE_SYSTEM:
276 case CONNMAN_SERVICE_TYPE_GPS:
277 case CONNMAN_SERVICE_TYPE_VPN:
278 case CONNMAN_SERVICE_TYPE_GADGET:
280 case CONNMAN_SERVICE_TYPE_ETHERNET:
282 case CONNMAN_SERVICE_TYPE_WIFI:
284 case CONNMAN_SERVICE_TYPE_WIMAX:
286 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
288 case CONNMAN_SERVICE_TYPE_CELLULAR:
295 static void save_state(struct connman_technology *technology)
300 DBG("technology %p", technology);
302 keyfile = __connman_storage_load_global();
304 keyfile = g_key_file_new();
306 identifier = g_strdup_printf("%s", get_name(technology->type));
307 if (identifier == NULL)
310 g_key_file_set_boolean(keyfile, identifier, "Enable",
311 technology->enable_persistent);
316 __connman_storage_save_global(keyfile);
318 g_key_file_free(keyfile);
323 static void load_state(struct connman_technology *technology)
327 GError *error = NULL;
328 connman_bool_t enable;
330 DBG("technology %p", technology);
332 keyfile = __connman_storage_load_global();
333 /* Fallback on disabling technology if file not found. */
334 if (keyfile == NULL) {
335 if (technology->type == CONNMAN_SERVICE_TYPE_ETHERNET)
336 /* We enable ethernet by default */
337 technology->enable_persistent = TRUE;
339 technology->enable_persistent = FALSE;
343 identifier = g_strdup_printf("%s", get_name(technology->type));
344 if (identifier == NULL)
347 enable = g_key_file_get_boolean(keyfile, identifier, "Enable", &error);
349 technology->enable_persistent = enable;
351 if (technology->type == CONNMAN_SERVICE_TYPE_ETHERNET)
352 technology->enable_persistent = TRUE;
354 technology->enable_persistent = FALSE;
356 save_state(technology);
357 g_clear_error(&error);
362 g_key_file_free(keyfile);
367 connman_bool_t __connman_technology_get_offlinemode(void)
369 return global_offlinemode;
372 static void connman_technology_save_offlinemode()
376 keyfile = __connman_storage_load_global();
378 keyfile = g_key_file_new();
380 g_key_file_set_boolean(keyfile, "global",
381 "OfflineMode", global_offlinemode);
383 __connman_storage_save_global(keyfile);
385 g_key_file_free(keyfile);
390 static connman_bool_t connman_technology_load_offlinemode()
393 GError *error = NULL;
394 connman_bool_t offlinemode;
396 /* If there is a error, we enable offlinemode */
397 keyfile = __connman_storage_load_global();
401 offlinemode = g_key_file_get_boolean(keyfile, "global",
402 "OfflineMode", &error);
405 g_clear_error(&error);
408 g_key_file_free(keyfile);
413 static void append_properties(DBusMessageIter *iter,
414 struct connman_technology *technology)
416 DBusMessageIter dict;
418 connman_bool_t powered;
420 connman_dbus_dict_open(iter, &dict);
422 str = get_name(technology->type);
424 connman_dbus_dict_append_basic(&dict, "Name",
425 DBUS_TYPE_STRING, &str);
427 str = __connman_service_type2string(technology->type);
429 connman_dbus_dict_append_basic(&dict, "Type",
430 DBUS_TYPE_STRING, &str);
432 __sync_synchronize();
433 if (technology->enabled > 0)
437 connman_dbus_dict_append_basic(&dict, "Powered",
438 DBUS_TYPE_BOOLEAN, &powered);
440 connman_dbus_dict_append_basic(&dict, "Connected",
442 &technology->connected);
444 connman_dbus_dict_append_basic(&dict, "Tethering",
446 &technology->tethering);
448 if (technology->tethering_ident != NULL)
449 connman_dbus_dict_append_basic(&dict, "TetheringIdentifier",
451 &technology->tethering_ident);
453 if (technology->tethering_passphrase != NULL)
454 connman_dbus_dict_append_basic(&dict, "TetheringPassphrase",
456 &technology->tethering_passphrase);
458 connman_dbus_dict_close(iter, &dict);
461 static void technology_added_signal(struct connman_technology *technology)
464 DBusMessageIter iter;
466 signal = dbus_message_new_signal(CONNMAN_MANAGER_PATH,
467 CONNMAN_MANAGER_INTERFACE, "TechnologyAdded");
471 dbus_message_iter_init_append(signal, &iter);
472 dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
474 append_properties(&iter, technology);
476 dbus_connection_send(connection, signal, NULL);
477 dbus_message_unref(signal);
480 static void technology_removed_signal(struct connman_technology *technology)
482 g_dbus_emit_signal(connection, CONNMAN_MANAGER_PATH,
483 CONNMAN_MANAGER_INTERFACE, "TechnologyRemoved",
484 DBUS_TYPE_OBJECT_PATH, &technology->path,
488 static DBusMessage *get_properties(DBusConnection *conn,
489 DBusMessage *message, void *user_data)
491 struct connman_technology *technology = user_data;
493 DBusMessageIter iter;
495 reply = dbus_message_new_method_return(message);
499 dbus_message_iter_init_append(reply, &iter);
500 append_properties(&iter, technology);
505 void __connman_technology_list_struct(DBusMessageIter *array)
508 DBusMessageIter entry;
510 for (list = technology_list; list; list = list->next) {
511 struct connman_technology *technology = list->data;
513 if (technology->path == NULL)
516 dbus_message_iter_open_container(array, DBUS_TYPE_STRUCT,
518 dbus_message_iter_append_basic(&entry, DBUS_TYPE_OBJECT_PATH,
520 append_properties(&entry, technology);
521 dbus_message_iter_close_container(array, &entry);
525 static gboolean technology_pending_reply(gpointer user_data)
527 struct connman_technology *technology = user_data;
530 /* Power request timedout, send ETIMEDOUT. */
531 if (technology->pending_reply != NULL) {
532 reply = __connman_error_failed(technology->pending_reply, ETIMEDOUT);
534 g_dbus_send_message(connection, reply);
536 dbus_message_unref(technology->pending_reply);
537 technology->pending_reply = NULL;
538 technology->pending_timeout = 0;
544 static int technology_enable(struct connman_technology *technology,
552 DBG("technology %p enable", technology);
554 __sync_synchronize();
555 if (technology->enabled > 0) {
560 if (technology->pending_reply != NULL) {
567 * This is a bit of a trick. When msg is not NULL it means
568 * thats technology_enable was invoked from the manager API.
569 * Hence we save the state here.
571 technology->enable_persistent = TRUE;
572 save_state(technology);
575 __connman_rfkill_block(technology->type, FALSE);
578 * An empty device list means that devices in the technology
579 * were rfkill blocked. The unblock above will enable the devs.
581 if (technology->device_list == NULL) {
586 for (list = technology->device_list; list; list = list->next) {
587 struct connman_device *device = list->data;
589 err = __connman_device_enable(device);
591 * err = 0 : Device was enabled right away.
592 * If atleast one device gets enabled, we consider
593 * the technology to be enabled.
602 g_dbus_send_reply(connection, msg, DBUS_TYPE_INVALID);
607 if (err == -EINPROGRESS) {
608 technology->pending_reply = dbus_message_ref(msg);
609 technology->pending_timeout = g_timeout_add_seconds(10,
610 technology_pending_reply, technology);
612 reply = __connman_error_failed(msg, -err);
614 g_dbus_send_message(connection, reply);
621 static int technology_disable(struct connman_technology *technology,
629 DBG("technology %p disable", technology);
631 __sync_synchronize();
632 if (technology->enabled == 0) {
637 if (technology->pending_reply != NULL) {
642 if (technology->tethering == TRUE)
643 set_tethering(technology, FALSE);
646 technology->enable_persistent = FALSE;
647 save_state(technology);
650 __connman_rfkill_block(technology->type, TRUE);
652 for (list = technology->device_list; list; list = list->next) {
653 struct connman_device *device = list->data;
655 err = __connman_device_disable(device);
663 g_dbus_send_reply(connection, msg, DBUS_TYPE_INVALID);
668 if (err == -EINPROGRESS) {
669 technology->pending_reply = dbus_message_ref(msg);
670 technology->pending_timeout = g_timeout_add_seconds(10,
671 technology_pending_reply, technology);
673 reply = __connman_error_failed(msg, -err);
675 g_dbus_send_message(connection, reply);
682 static DBusMessage *set_property(DBusConnection *conn,
683 DBusMessage *msg, void *data)
685 struct connman_technology *technology = data;
686 DBusMessageIter iter, value;
690 DBG("conn %p", conn);
692 if (dbus_message_iter_init(msg, &iter) == FALSE)
693 return __connman_error_invalid_arguments(msg);
695 if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_STRING)
696 return __connman_error_invalid_arguments(msg);
698 dbus_message_iter_get_basic(&iter, &name);
699 dbus_message_iter_next(&iter);
701 if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_VARIANT)
702 return __connman_error_invalid_arguments(msg);
704 dbus_message_iter_recurse(&iter, &value);
706 type = dbus_message_iter_get_arg_type(&value);
708 DBG("property %s", name);
710 if (g_str_equal(name, "Tethering") == TRUE) {
712 connman_bool_t tethering;
714 if (type != DBUS_TYPE_BOOLEAN)
715 return __connman_error_invalid_arguments(msg);
717 dbus_message_iter_get_basic(&value, &tethering);
719 if (technology->tethering == tethering)
720 return __connman_error_in_progress(msg);
722 err = set_tethering(technology, tethering);
724 return __connman_error_failed(msg, -err);
726 } else if (g_str_equal(name, "TetheringIdentifier") == TRUE) {
729 dbus_message_iter_get_basic(&value, &str);
731 if (technology->type != CONNMAN_SERVICE_TYPE_WIFI)
732 return __connman_error_not_supported(msg);
734 technology->tethering_ident = g_strdup(str);
735 } else if (g_str_equal(name, "TetheringPassphrase") == TRUE) {
738 dbus_message_iter_get_basic(&value, &str);
740 if (technology->type != CONNMAN_SERVICE_TYPE_WIFI)
741 return __connman_error_not_supported(msg);
744 return __connman_error_invalid_arguments(msg);
746 technology->tethering_passphrase = g_strdup(str);
747 } else if (g_str_equal(name, "Powered") == TRUE) {
748 connman_bool_t enable;
750 if (type != DBUS_TYPE_BOOLEAN)
751 return __connman_error_invalid_arguments(msg);
753 dbus_message_iter_get_basic(&value, &enable);
755 technology_enable(technology, msg);
757 technology_disable(technology, msg);
760 return __connman_error_invalid_property(msg);
762 return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
765 static struct connman_technology *technology_find(enum connman_service_type type)
769 DBG("type %d", type);
771 for (list = technology_list; list; list = list->next) {
772 struct connman_technology *technology = list->data;
774 if (technology->type == type)
781 static void reply_scan_pending(struct connman_technology *technology, int err)
785 DBG("technology %p err %d", technology, err);
787 while (technology->scan_pending != NULL) {
788 DBusMessage *msg = technology->scan_pending->data;
790 DBG("reply to %s", dbus_message_get_sender(msg));
793 reply = g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
795 reply = __connman_error_failed(msg, -err);
796 g_dbus_send_message(connection, reply);
797 dbus_message_unref(msg);
799 technology->scan_pending =
800 g_slist_delete_link(technology->scan_pending,
801 technology->scan_pending);
805 void __connman_technology_scan_started(struct connman_device *device)
807 DBG("device %p", device);
810 void __connman_technology_scan_stopped(struct connman_device *device)
813 struct connman_technology *technology;
814 enum connman_service_type type;
817 type = __connman_device_get_service_type(device);
818 technology = technology_find(type);
820 DBG("technology %p device %p", technology, device);
822 if (technology == NULL)
825 for (list = technology->device_list; list != NULL; list = list->next) {
826 struct connman_device *other_device = list->data;
828 if (device == other_device)
831 if (__connman_device_get_service_type(other_device) != type)
834 if (connman_device_get_scanning(other_device) == TRUE)
839 reply_scan_pending(technology, 0);
842 static DBusMessage *scan(DBusConnection *conn, DBusMessage *msg, void *data)
844 struct connman_technology *technology = data;
847 DBG ("technology %p request from %s", technology,
848 dbus_message_get_sender(msg));
850 dbus_message_ref(msg);
851 technology->scan_pending =
852 g_slist_prepend(technology->scan_pending, msg);
854 err = __connman_device_request_scan(technology->type);
856 reply_scan_pending(technology, err);
861 static const GDBusMethodTable technology_methods[] = {
862 { GDBUS_DEPRECATED_METHOD("GetProperties",
863 NULL, GDBUS_ARGS({ "properties", "a{sv}" }),
865 { GDBUS_METHOD("SetProperty",
866 GDBUS_ARGS({ "name", "s" }, { "value", "v" }),
867 NULL, set_property) },
868 { GDBUS_ASYNC_METHOD("Scan", NULL, NULL, scan) },
872 static const GDBusSignalTable technology_signals[] = {
873 { GDBUS_SIGNAL("PropertyChanged",
874 GDBUS_ARGS({ "name", "s" }, { "value", "v" })) },
878 static struct connman_technology *technology_get(enum connman_service_type type)
880 struct connman_technology *technology;
881 struct connman_technology_driver *driver = NULL;
886 DBG("type %d", type);
888 str = __connman_service_type2string(type);
892 technology = technology_find(type);
893 if (technology != NULL) {
894 __sync_fetch_and_add(&technology->refcount, 1);
898 /* First check if we have a driver for this technology type */
899 for (list = driver_list; list; list = list->next) {
902 if (driver->type == type)
908 if (driver == NULL) {
909 DBG("No matching driver found for %s.",
910 __connman_service_type2string(type));
914 technology = g_try_new0(struct connman_technology, 1);
915 if (technology == NULL)
918 technology->refcount = 1;
920 technology->type = type;
921 technology->path = g_strdup_printf("%s/technology/%s",
924 technology->device_list = NULL;
926 technology->pending_reply = NULL;
928 load_state(technology);
930 if (g_dbus_register_interface(connection, technology->path,
931 CONNMAN_TECHNOLOGY_INTERFACE,
932 technology_methods, technology_signals,
933 NULL, technology, NULL) == FALSE) {
934 connman_error("Failed to register %s", technology->path);
939 technology_list = g_slist_append(technology_list, technology);
941 technology_added_signal(technology);
943 technology->driver = driver;
944 err = driver->probe(technology);
946 DBG("Driver probe failed for technology %p", technology);
948 DBG("technology %p", technology);
953 static void technology_put(struct connman_technology *technology)
955 DBG("technology %p", technology);
957 if (__sync_sub_and_fetch(&technology->refcount, 1) > 0)
960 reply_scan_pending(technology, -EINTR);
962 if (technology->driver) {
963 technology->driver->remove(technology);
964 technology->driver = NULL;
967 technology_list = g_slist_remove(technology_list, technology);
969 technology_removed_signal(technology);
971 g_dbus_unregister_interface(connection, technology->path,
972 CONNMAN_TECHNOLOGY_INTERFACE);
974 g_slist_free(technology->device_list);
976 g_free(technology->path);
977 g_free(technology->regdom);
981 void __connman_technology_add_interface(enum connman_service_type type,
982 int index, const char *name, const char *ident)
984 struct connman_technology *technology;
987 case CONNMAN_SERVICE_TYPE_UNKNOWN:
988 case CONNMAN_SERVICE_TYPE_SYSTEM:
990 case CONNMAN_SERVICE_TYPE_ETHERNET:
991 case CONNMAN_SERVICE_TYPE_WIFI:
992 case CONNMAN_SERVICE_TYPE_WIMAX:
993 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
994 case CONNMAN_SERVICE_TYPE_CELLULAR:
995 case CONNMAN_SERVICE_TYPE_GPS:
996 case CONNMAN_SERVICE_TYPE_VPN:
997 case CONNMAN_SERVICE_TYPE_GADGET:
1001 connman_info("Adding interface %s [ %s ]", name,
1002 __connman_service_type2string(type));
1004 technology = technology_find(type);
1006 if (technology == NULL || technology->driver == NULL
1007 || technology->driver->add_interface == NULL)
1010 technology->driver->add_interface(technology,
1011 index, name, ident);
1014 void __connman_technology_remove_interface(enum connman_service_type type,
1015 int index, const char *name, const char *ident)
1017 struct connman_technology *technology;
1020 case CONNMAN_SERVICE_TYPE_UNKNOWN:
1021 case CONNMAN_SERVICE_TYPE_SYSTEM:
1023 case CONNMAN_SERVICE_TYPE_ETHERNET:
1024 case CONNMAN_SERVICE_TYPE_WIFI:
1025 case CONNMAN_SERVICE_TYPE_WIMAX:
1026 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
1027 case CONNMAN_SERVICE_TYPE_CELLULAR:
1028 case CONNMAN_SERVICE_TYPE_GPS:
1029 case CONNMAN_SERVICE_TYPE_VPN:
1030 case CONNMAN_SERVICE_TYPE_GADGET:
1034 connman_info("Remove interface %s [ %s ]", name,
1035 __connman_service_type2string(type));
1037 technology = technology_find(type);
1039 if (technology == NULL || technology->driver == NULL)
1042 if (technology->driver->remove_interface)
1043 technology->driver->remove_interface(technology, index);
1046 int __connman_technology_add_device(struct connman_device *device)
1048 struct connman_technology *technology;
1049 enum connman_service_type type;
1051 DBG("device %p", device);
1053 type = __connman_device_get_service_type(device);
1055 technology = technology_get(type);
1056 if (technology == NULL) {
1058 * Since no driver can be found for this device at the moment we
1059 * add it to the techless device list.
1061 techless_device_list = g_slist_prepend(techless_device_list,
1067 if (technology->enable_persistent && !global_offlinemode) {
1068 int err = __connman_device_enable(device);
1070 * connman_technology_add_device() calls __connman_device_enable()
1071 * but since the device is already enabled, the calls does not
1072 * propagate through to connman_technology_enabled via
1073 * connman_device_set_powered.
1075 if (err == -EALREADY)
1076 __connman_technology_enabled(type);
1078 /* if technology persistent state is offline */
1079 if (!technology->enable_persistent)
1080 __connman_device_disable(device);
1082 technology->device_list = g_slist_append(technology->device_list,
1088 int __connman_technology_remove_device(struct connman_device *device)
1090 struct connman_technology *technology;
1091 enum connman_service_type type;
1093 DBG("device %p", device);
1095 type = __connman_device_get_service_type(device);
1097 technology = technology_find(type);
1098 if (technology == NULL) {
1099 techless_device_list = g_slist_remove(techless_device_list,
1104 if (connman_device_get_scanning(device) == TRUE)
1105 __connman_technology_scan_stopped(device);
1107 technology->device_list = g_slist_remove(technology->device_list,
1109 technology_put(technology);
1114 static void powered_changed(struct connman_technology *technology)
1116 connman_bool_t powered;
1118 __sync_synchronize();
1119 if (technology->enabled >0)
1124 connman_dbus_property_changed_basic(technology->path,
1125 CONNMAN_TECHNOLOGY_INTERFACE, "Powered",
1126 DBUS_TYPE_BOOLEAN, &powered);
1129 int __connman_technology_enabled(enum connman_service_type type)
1131 struct connman_technology *technology;
1133 technology = technology_find(type);
1134 if (technology == NULL)
1137 if (__sync_fetch_and_add(&technology->enabled, 1) == 0)
1138 powered_changed(technology);
1140 if (technology->pending_reply != NULL) {
1141 g_dbus_send_reply(connection, technology->pending_reply, DBUS_TYPE_INVALID);
1142 dbus_message_unref(technology->pending_reply);
1143 g_source_remove(technology->pending_timeout);
1144 technology->pending_reply = NULL;
1145 technology->pending_timeout = 0;
1151 int __connman_technology_disabled(enum connman_service_type type)
1153 struct connman_technology *technology;
1155 technology = technology_find(type);
1156 if (technology == NULL)
1159 if (technology->pending_reply != NULL) {
1160 g_dbus_send_reply(connection, technology->pending_reply, DBUS_TYPE_INVALID);
1161 dbus_message_unref(technology->pending_reply);
1162 g_source_remove(technology->pending_timeout);
1163 technology->pending_reply = NULL;
1164 technology->pending_timeout = 0;
1167 if (__sync_fetch_and_sub(&technology->enabled, 1) == 1)
1168 powered_changed(technology);
1173 int __connman_technology_set_offlinemode(connman_bool_t offlinemode)
1178 if (global_offlinemode == offlinemode)
1181 DBG("offlinemode %s", offlinemode ? "On" : "Off");
1184 * This is a bit tricky. When you set offlinemode, there is no
1185 * way to differentiate between attempting offline mode and
1186 * resuming offlinemode from last saved profile. We need that
1187 * information in rfkill_update, otherwise it falls back on the
1188 * technology's persistent state. Hence we set the offline mode here
1189 * but save it & call the notifier only if its successful.
1192 global_offlinemode = offlinemode;
1194 /* Traverse technology list, enable/disable each technology. */
1195 for (list = technology_list; list; list = list->next) {
1196 struct connman_technology *technology = list->data;
1199 err = technology_disable(technology, NULL);
1201 if (!offlinemode && technology->enable_persistent)
1202 err = technology_enable(technology, NULL);
1205 if (err == 0 || err == -EINPROGRESS || err == -EALREADY) {
1206 connman_technology_save_offlinemode();
1207 __connman_notifier_offlinemode(offlinemode);
1209 global_offlinemode = connman_technology_load_offlinemode();
1214 void __connman_technology_set_connected(enum connman_service_type type,
1215 connman_bool_t connected)
1217 struct connman_technology *technology;
1219 technology = technology_find(type);
1220 if (technology == NULL)
1223 DBG("technology %p connected %d", technology, connected);
1225 technology->connected = connected;
1227 connman_dbus_property_changed_basic(technology->path,
1228 CONNMAN_TECHNOLOGY_INTERFACE, "Connected",
1229 DBUS_TYPE_BOOLEAN, &connected);
1232 int __connman_technology_add_rfkill(unsigned int index,
1233 enum connman_service_type type,
1234 connman_bool_t softblock,
1235 connman_bool_t hardblock)
1237 struct connman_technology *technology;
1238 struct connman_rfkill *rfkill;
1240 DBG("index %u type %d soft %u hard %u", index, type,
1241 softblock, hardblock);
1243 rfkill = g_hash_table_lookup(rfkill_list, &index);
1247 rfkill = g_try_new0(struct connman_rfkill, 1);
1251 rfkill->index = index;
1252 rfkill->type = type;
1253 rfkill->softblock = softblock;
1254 rfkill->hardblock = hardblock;
1256 g_hash_table_insert(rfkill_list, &rfkill->index, rfkill);
1259 technology = technology_get(type);
1260 /* If there is no driver for this type, ignore it. */
1261 if (technology == NULL)
1265 DBG("%s is switched off.", get_name(type));
1270 * If Offline mode is on, we softblock the device if it isnt already.
1271 * If Offline mode is off, we rely on the persistent state of tech.
1273 if (global_offlinemode) {
1275 return __connman_rfkill_block(type, TRUE);
1277 if (technology->enable_persistent && softblock)
1278 return __connman_rfkill_block(type, FALSE);
1279 /* if technology persistent state is offline */
1280 if (!technology->enable_persistent && !softblock)
1281 return __connman_rfkill_block(type, TRUE);
1287 int __connman_technology_update_rfkill(unsigned int index,
1288 enum connman_service_type type,
1289 connman_bool_t softblock,
1290 connman_bool_t hardblock)
1292 struct connman_technology *technology;
1293 struct connman_rfkill *rfkill;
1295 DBG("index %u soft %u hard %u", index, softblock, hardblock);
1297 rfkill = g_hash_table_lookup(rfkill_list, &index);
1301 if (rfkill->softblock == softblock &&
1302 rfkill->hardblock == hardblock)
1305 rfkill->softblock = softblock;
1306 rfkill->hardblock = hardblock;
1309 DBG("%s is switched off.", get_name(type));
1313 technology = technology_find(type);
1314 /* If there is no driver for this type, ignore it. */
1315 if (technology == NULL)
1318 if (!global_offlinemode) {
1319 if (technology->enable_persistent && softblock)
1320 return __connman_rfkill_block(type, FALSE);
1321 if (!technology->enable_persistent && !softblock)
1322 return __connman_rfkill_block(type, TRUE);
1328 int __connman_technology_remove_rfkill(unsigned int index,
1329 enum connman_service_type type)
1331 struct connman_technology *technology;
1332 struct connman_rfkill *rfkill;
1334 DBG("index %u", index);
1336 rfkill = g_hash_table_lookup(rfkill_list, &index);
1340 g_hash_table_remove(rfkill_list, &index);
1342 technology = technology_find(type);
1343 if (technology == NULL)
1346 technology_put(technology);
1351 int __connman_technology_init(void)
1355 connection = connman_dbus_get_connection();
1357 rfkill_list = g_hash_table_new_full(g_int_hash, g_int_equal,
1360 global_offlinemode = connman_technology_load_offlinemode();
1362 /* This will create settings file if it is missing */
1363 connman_technology_save_offlinemode();
1368 void __connman_technology_cleanup(void)
1372 g_hash_table_destroy(rfkill_list);
1374 dbus_connection_unref(connection);