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;
77 connman_bool_t dbus_registered;
80 static GSList *driver_list = NULL;
82 static gint compare_priority(gconstpointer a, gconstpointer b)
84 const struct connman_technology_driver *driver1 = a;
85 const struct connman_technology_driver *driver2 = b;
87 return driver2->priority - driver1->priority;
90 static void rfkill_check(gpointer key, gpointer value, gpointer user_data)
92 struct connman_rfkill *rfkill = value;
93 enum connman_service_type type = GPOINTER_TO_INT(user_data);
95 /* Calling _technology_rfkill_add will update the tech. */
96 if (rfkill->type == type)
97 __connman_technology_add_rfkill(rfkill->index, type,
98 rfkill->softblock, rfkill->hardblock);
102 * connman_technology_driver_register:
103 * @driver: Technology driver definition
105 * Register a new technology driver
107 * Returns: %0 on success
109 int connman_technology_driver_register(struct connman_technology_driver *driver)
112 struct connman_device *device;
113 enum connman_service_type type;
115 DBG("Registering %s driver", driver->name);
117 driver_list = g_slist_insert_sorted(driver_list, driver,
120 if (techless_device_list == NULL)
124 * Check for technology less devices if this driver
125 * can service any of them.
127 for (list = techless_device_list; list; list = list->next) {
130 type = __connman_device_get_service_type(device);
131 if (type != driver->type)
134 techless_device_list = g_slist_remove(techless_device_list,
137 __connman_technology_add_device(device);
141 /* Check for orphaned rfkill switches. */
142 g_hash_table_foreach(rfkill_list, rfkill_check,
143 GINT_TO_POINTER(driver->type));
149 * connman_technology_driver_unregister:
150 * @driver: Technology driver definition
152 * Remove a previously registered technology driver
154 void connman_technology_driver_unregister(struct connman_technology_driver *driver)
157 struct connman_technology *technology;
159 DBG("Unregistering driver %p name %s", driver, driver->name);
161 for (list = technology_list; list; list = list->next) {
162 technology = list->data;
164 if (technology->driver == NULL)
167 if (technology->type == driver->type) {
168 technology->driver->remove(technology);
169 technology->driver = NULL;
173 driver_list = g_slist_remove(driver_list, driver);
176 static void tethering_changed(struct connman_technology *technology)
178 connman_bool_t tethering = technology->tethering;
180 connman_dbus_property_changed_basic(technology->path,
181 CONNMAN_TECHNOLOGY_INTERFACE, "Tethering",
182 DBUS_TYPE_BOOLEAN, &tethering);
185 void connman_technology_tethering_notify(struct connman_technology *technology,
186 connman_bool_t enabled)
190 DBG("technology %p enabled %u", technology, enabled);
192 if (technology->tethering == enabled)
195 technology->tethering = enabled;
197 tethering_changed(technology);
200 __connman_tethering_set_enabled();
202 for (list = technology_list; list; list = list->next) {
203 struct connman_technology *other_tech = list->data;
204 if (other_tech->tethering == TRUE)
208 __connman_tethering_set_disabled();
212 static int set_tethering(struct connman_technology *technology,
213 connman_bool_t enabled)
215 const char *ident, *passphrase, *bridge;
217 ident = technology->tethering_ident;
218 passphrase = technology->tethering_passphrase;
220 if (technology->driver == NULL ||
221 technology->driver->set_tethering == NULL)
224 bridge = __connman_tethering_get_bridge();
228 if (technology->type == CONNMAN_SERVICE_TYPE_WIFI &&
229 (ident == NULL || passphrase == NULL))
232 return technology->driver->set_tethering(technology, ident, passphrase,
236 void connman_technology_regdom_notify(struct connman_technology *technology,
242 connman_error("Failed to set regulatory domain");
244 DBG("Regulatory domain set to %s", alpha2);
246 g_free(technology->regdom);
247 technology->regdom = g_strdup(alpha2);
250 static int set_regdom_by_device(struct connman_technology *technology,
255 for (list = technology->device_list; list; list = list->next) {
256 struct connman_device *device = list->data;
258 if (connman_device_set_regdom(device, alpha2) != 0)
265 int connman_technology_set_regdom(const char *alpha2)
269 for (list = technology_list; list; list = list->next) {
270 struct connman_technology *technology = list->data;
272 if (set_regdom_by_device(technology, alpha2) != 0) {
273 if (technology->driver == NULL)
276 if (technology->driver->set_regdom != NULL)
277 technology->driver->set_regdom(technology,
285 static void free_rfkill(gpointer data)
287 struct connman_rfkill *rfkill = data;
292 static const char *get_name(enum connman_service_type type)
295 case CONNMAN_SERVICE_TYPE_UNKNOWN:
296 case CONNMAN_SERVICE_TYPE_SYSTEM:
297 case CONNMAN_SERVICE_TYPE_GPS:
298 case CONNMAN_SERVICE_TYPE_VPN:
299 case CONNMAN_SERVICE_TYPE_GADGET:
301 case CONNMAN_SERVICE_TYPE_ETHERNET:
303 case CONNMAN_SERVICE_TYPE_WIFI:
305 case CONNMAN_SERVICE_TYPE_WIMAX:
307 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
309 case CONNMAN_SERVICE_TYPE_CELLULAR:
316 static void technology_save(struct connman_technology *technology)
321 DBG("technology %p", technology);
323 keyfile = __connman_storage_load_global();
325 keyfile = g_key_file_new();
327 identifier = g_strdup_printf("%s", get_name(technology->type));
328 if (identifier == NULL)
331 g_key_file_set_boolean(keyfile, identifier, "Enable",
332 technology->enable_persistent);
334 if (technology->tethering_ident != NULL)
335 g_key_file_set_string(keyfile, identifier,
336 "Tethering.Identifier",
337 technology->tethering_ident);
339 if (technology->tethering_passphrase != NULL)
340 g_key_file_set_string(keyfile, identifier,
341 "Tethering.Passphrase",
342 technology->tethering_passphrase);
347 __connman_storage_save_global(keyfile);
349 g_key_file_free(keyfile);
354 static void technology_load(struct connman_technology *technology)
358 GError *error = NULL;
359 connman_bool_t enable;
361 DBG("technology %p", technology);
363 keyfile = __connman_storage_load_global();
364 /* Fallback on disabling technology if file not found. */
365 if (keyfile == NULL) {
366 if (technology->type == CONNMAN_SERVICE_TYPE_ETHERNET)
367 /* We enable ethernet by default */
368 technology->enable_persistent = TRUE;
370 technology->enable_persistent = FALSE;
374 identifier = g_strdup_printf("%s", get_name(technology->type));
375 if (identifier == NULL)
378 enable = g_key_file_get_boolean(keyfile, identifier, "Enable", &error);
380 technology->enable_persistent = enable;
382 if (technology->type == CONNMAN_SERVICE_TYPE_ETHERNET)
383 technology->enable_persistent = TRUE;
385 technology->enable_persistent = FALSE;
387 technology_save(technology);
388 g_clear_error(&error);
391 technology->tethering_ident = g_key_file_get_string(keyfile,
392 identifier, "Tethering.Identifier", NULL);
394 technology->tethering_passphrase = g_key_file_get_string(keyfile,
395 identifier, "Tethering.Passphrase", NULL);
399 g_key_file_free(keyfile);
404 connman_bool_t __connman_technology_get_offlinemode(void)
406 return global_offlinemode;
409 static void connman_technology_save_offlinemode()
413 keyfile = __connman_storage_load_global();
415 keyfile = g_key_file_new();
417 g_key_file_set_boolean(keyfile, "global",
418 "OfflineMode", global_offlinemode);
420 __connman_storage_save_global(keyfile);
422 g_key_file_free(keyfile);
427 static connman_bool_t connman_technology_load_offlinemode()
430 GError *error = NULL;
431 connman_bool_t offlinemode;
433 /* If there is a error, we enable offlinemode */
434 keyfile = __connman_storage_load_global();
438 offlinemode = g_key_file_get_boolean(keyfile, "global",
439 "OfflineMode", &error);
442 g_clear_error(&error);
445 g_key_file_free(keyfile);
450 static void append_properties(DBusMessageIter *iter,
451 struct connman_technology *technology)
453 DBusMessageIter dict;
455 connman_bool_t powered;
457 connman_dbus_dict_open(iter, &dict);
459 str = get_name(technology->type);
461 connman_dbus_dict_append_basic(&dict, "Name",
462 DBUS_TYPE_STRING, &str);
464 str = __connman_service_type2string(technology->type);
466 connman_dbus_dict_append_basic(&dict, "Type",
467 DBUS_TYPE_STRING, &str);
469 __sync_synchronize();
470 if (technology->enabled > 0)
474 connman_dbus_dict_append_basic(&dict, "Powered",
475 DBUS_TYPE_BOOLEAN, &powered);
477 connman_dbus_dict_append_basic(&dict, "Connected",
479 &technology->connected);
481 connman_dbus_dict_append_basic(&dict, "Tethering",
483 &technology->tethering);
485 if (technology->tethering_ident != NULL)
486 connman_dbus_dict_append_basic(&dict, "TetheringIdentifier",
488 &technology->tethering_ident);
490 if (technology->tethering_passphrase != NULL)
491 connman_dbus_dict_append_basic(&dict, "TetheringPassphrase",
493 &technology->tethering_passphrase);
495 connman_dbus_dict_close(iter, &dict);
498 static void technology_added_signal(struct connman_technology *technology)
501 DBusMessageIter iter;
503 signal = dbus_message_new_signal(CONNMAN_MANAGER_PATH,
504 CONNMAN_MANAGER_INTERFACE, "TechnologyAdded");
508 dbus_message_iter_init_append(signal, &iter);
509 dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
511 append_properties(&iter, technology);
513 dbus_connection_send(connection, signal, NULL);
514 dbus_message_unref(signal);
517 static void technology_removed_signal(struct connman_technology *technology)
519 g_dbus_emit_signal(connection, CONNMAN_MANAGER_PATH,
520 CONNMAN_MANAGER_INTERFACE, "TechnologyRemoved",
521 DBUS_TYPE_OBJECT_PATH, &technology->path,
525 static DBusMessage *get_properties(DBusConnection *conn,
526 DBusMessage *message, void *user_data)
528 struct connman_technology *technology = user_data;
530 DBusMessageIter iter;
532 reply = dbus_message_new_method_return(message);
536 dbus_message_iter_init_append(reply, &iter);
537 append_properties(&iter, technology);
542 void __connman_technology_list_struct(DBusMessageIter *array)
545 DBusMessageIter entry;
547 for (list = technology_list; list; list = list->next) {
548 struct connman_technology *technology = list->data;
550 if (technology->path == NULL ||
551 technology->hardblocked == TRUE)
554 dbus_message_iter_open_container(array, DBUS_TYPE_STRUCT,
556 dbus_message_iter_append_basic(&entry, DBUS_TYPE_OBJECT_PATH,
558 append_properties(&entry, technology);
559 dbus_message_iter_close_container(array, &entry);
563 static gboolean technology_pending_reply(gpointer user_data)
565 struct connman_technology *technology = user_data;
568 /* Power request timedout, send ETIMEDOUT. */
569 if (technology->pending_reply != NULL) {
570 reply = __connman_error_failed(technology->pending_reply, ETIMEDOUT);
572 g_dbus_send_message(connection, reply);
574 dbus_message_unref(technology->pending_reply);
575 technology->pending_reply = NULL;
576 technology->pending_timeout = 0;
582 static int technology_enable(struct connman_technology *technology,
583 connman_bool_t hardblock)
588 DBG("technology %p enable", technology);
590 __sync_synchronize();
591 if (technology->enabled > 0) {
596 if (technology->pending_reply != NULL) {
601 if (hardblock == TRUE && technology->enable_persistent == FALSE)
604 __connman_rfkill_block(technology->type, FALSE);
606 for (list = technology->device_list; list; list = list->next) {
607 struct connman_device *device = list->data;
609 err = __connman_device_enable(device);
616 static int technology_disable(struct connman_technology *technology,
617 connman_bool_t hardblock)
622 DBG("technology %p disable", technology);
624 __sync_synchronize();
625 if (technology->enabled == 0) {
630 if (technology->pending_reply != NULL) {
635 if (technology->tethering == TRUE)
636 set_tethering(technology, FALSE);
638 if (hardblock == FALSE)
639 __connman_rfkill_block(technology->type, TRUE);
641 for (list = technology->device_list; list; list = list->next) {
642 struct connman_device *device = list->data;
644 err = __connman_device_disable(device);
651 static DBusMessage *set_powered(struct connman_technology *technology,
652 DBusMessage *msg, connman_bool_t powered)
654 DBusMessage *reply = NULL;
657 if (technology->hardblocked == TRUE) {
663 err = technology_enable(technology, FALSE);
665 err = technology_disable(technology, FALSE);
668 technology->enable_persistent = powered;
669 technology_save(technology);
673 if (err == -EINPROGRESS) {
674 technology->pending_reply = dbus_message_ref(msg);
675 technology->pending_timeout = g_timeout_add_seconds(10,
676 technology_pending_reply, technology);
677 } else if (err == -EALREADY) {
679 reply = __connman_error_already_enabled(msg);
681 reply = __connman_error_already_disabled(msg);
683 reply = __connman_error_failed(msg, -err);
685 reply = g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
690 static DBusMessage *set_property(DBusConnection *conn,
691 DBusMessage *msg, void *data)
693 struct connman_technology *technology = data;
694 DBusMessageIter iter, value;
698 DBG("conn %p", conn);
700 if (dbus_message_iter_init(msg, &iter) == FALSE)
701 return __connman_error_invalid_arguments(msg);
703 if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_STRING)
704 return __connman_error_invalid_arguments(msg);
706 dbus_message_iter_get_basic(&iter, &name);
707 dbus_message_iter_next(&iter);
709 if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_VARIANT)
710 return __connman_error_invalid_arguments(msg);
712 dbus_message_iter_recurse(&iter, &value);
714 type = dbus_message_iter_get_arg_type(&value);
716 DBG("property %s", name);
718 if (g_str_equal(name, "Tethering") == TRUE) {
720 connman_bool_t tethering;
722 if (type != DBUS_TYPE_BOOLEAN)
723 return __connman_error_invalid_arguments(msg);
725 dbus_message_iter_get_basic(&value, &tethering);
727 if (technology->tethering == tethering) {
728 if (tethering == FALSE)
729 return __connman_error_already_disabled(msg);
731 return __connman_error_already_enabled(msg);
734 err = set_tethering(technology, tethering);
736 return __connman_error_failed(msg, -err);
738 } else if (g_str_equal(name, "TetheringIdentifier") == TRUE) {
741 dbus_message_iter_get_basic(&value, &str);
743 if (technology->type != CONNMAN_SERVICE_TYPE_WIFI)
744 return __connman_error_not_supported(msg);
746 if (strlen(str) < 1 || strlen(str) > 32)
747 return __connman_error_invalid_arguments(msg);
749 if (g_strcmp0(technology->tethering_ident, str) != 0) {
750 g_free(technology->tethering_ident);
751 technology->tethering_ident = g_strdup(str);
752 technology_save(technology);
754 connman_dbus_property_changed_basic(technology->path,
755 CONNMAN_TECHNOLOGY_INTERFACE,
756 "TetheringIdentifier",
758 &technology->tethering_ident);
760 } else if (g_str_equal(name, "TetheringPassphrase") == TRUE) {
763 dbus_message_iter_get_basic(&value, &str);
765 if (technology->type != CONNMAN_SERVICE_TYPE_WIFI)
766 return __connman_error_not_supported(msg);
768 if (strlen(str) < 8 || strlen(str) > 63)
769 return __connman_error_passphrase_required(msg);
771 if (g_strcmp0(technology->tethering_passphrase, str) != 0) {
772 g_free(technology->tethering_passphrase);
773 technology->tethering_passphrase = g_strdup(str);
774 technology_save(technology);
776 connman_dbus_property_changed_basic(technology->path,
777 CONNMAN_TECHNOLOGY_INTERFACE,
778 "TetheringPassphrase",
780 &technology->tethering_passphrase);
782 } else if (g_str_equal(name, "Powered") == TRUE) {
783 connman_bool_t enable;
785 if (type != DBUS_TYPE_BOOLEAN)
786 return __connman_error_invalid_arguments(msg);
788 dbus_message_iter_get_basic(&value, &enable);
790 return set_powered(technology, msg, enable);
792 return __connman_error_invalid_property(msg);
794 return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
797 static struct connman_technology *technology_find(enum connman_service_type type)
801 DBG("type %d", type);
803 for (list = technology_list; list; list = list->next) {
804 struct connman_technology *technology = list->data;
806 if (technology->type == type)
813 static void reply_scan_pending(struct connman_technology *technology, int err)
817 DBG("technology %p err %d", technology, err);
819 while (technology->scan_pending != NULL) {
820 DBusMessage *msg = technology->scan_pending->data;
822 DBG("reply to %s", dbus_message_get_sender(msg));
825 reply = g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
827 reply = __connman_error_failed(msg, -err);
828 g_dbus_send_message(connection, reply);
829 dbus_message_unref(msg);
831 technology->scan_pending =
832 g_slist_delete_link(technology->scan_pending,
833 technology->scan_pending);
837 void __connman_technology_scan_started(struct connman_device *device)
839 DBG("device %p", device);
842 void __connman_technology_scan_stopped(struct connman_device *device)
845 struct connman_technology *technology;
846 enum connman_service_type type;
849 type = __connman_device_get_service_type(device);
850 technology = technology_find(type);
852 DBG("technology %p device %p", technology, device);
854 if (technology == NULL)
857 for (list = technology->device_list; list != NULL; list = list->next) {
858 struct connman_device *other_device = list->data;
860 if (device == other_device)
863 if (__connman_device_get_service_type(other_device) != type)
866 if (connman_device_get_scanning(other_device) == TRUE)
871 reply_scan_pending(technology, 0);
874 void __connman_technology_notify_regdom_by_device(struct connman_device *device,
875 int result, const char *alpha2)
877 struct connman_technology *technology;
878 enum connman_service_type type;
880 type = __connman_device_get_service_type(device);
881 technology = technology_find(type);
883 if (technology == NULL)
887 if (technology->driver != NULL &&
888 technology->driver->set_regdom != NULL) {
889 technology->driver->set_regdom(technology, alpha2);
896 connman_technology_regdom_notify(technology, alpha2);
899 static DBusMessage *scan(DBusConnection *conn, DBusMessage *msg, void *data)
901 struct connman_technology *technology = data;
904 DBG ("technology %p request from %s", technology,
905 dbus_message_get_sender(msg));
907 dbus_message_ref(msg);
908 technology->scan_pending =
909 g_slist_prepend(technology->scan_pending, msg);
911 err = __connman_device_request_scan(technology->type);
913 reply_scan_pending(technology, err);
918 static const GDBusMethodTable technology_methods[] = {
919 { GDBUS_DEPRECATED_METHOD("GetProperties",
920 NULL, GDBUS_ARGS({ "properties", "a{sv}" }),
922 { GDBUS_ASYNC_METHOD("SetProperty",
923 GDBUS_ARGS({ "name", "s" }, { "value", "v" }),
924 NULL, set_property) },
925 { GDBUS_ASYNC_METHOD("Scan", NULL, NULL, scan) },
929 static const GDBusSignalTable technology_signals[] = {
930 { GDBUS_SIGNAL("PropertyChanged",
931 GDBUS_ARGS({ "name", "s" }, { "value", "v" })) },
935 static gboolean technology_dbus_register(struct connman_technology *technology)
937 if (technology->dbus_registered == TRUE ||
938 technology->hardblocked == TRUE)
941 if (g_dbus_register_interface(connection, technology->path,
942 CONNMAN_TECHNOLOGY_INTERFACE,
943 technology_methods, technology_signals,
944 NULL, technology, NULL) == FALSE) {
945 connman_error("Failed to register %s", technology->path);
949 technology_added_signal(technology);
950 technology->dbus_registered = TRUE;
955 static struct connman_technology *technology_get(enum connman_service_type type)
957 struct connman_technology *technology;
958 struct connman_technology_driver *driver = NULL;
963 DBG("type %d", type);
965 str = __connman_service_type2string(type);
969 technology = technology_find(type);
970 if (technology != NULL) {
971 __sync_fetch_and_add(&technology->refcount, 1);
975 /* First check if we have a driver for this technology type */
976 for (list = driver_list; list; list = list->next) {
979 if (driver->type == type)
985 if (driver == NULL) {
986 DBG("No matching driver found for %s.",
987 __connman_service_type2string(type));
991 technology = g_try_new0(struct connman_technology, 1);
992 if (technology == NULL)
995 technology->refcount = 1;
997 if (type == CONNMAN_SERVICE_TYPE_ETHERNET)
998 technology->hardblocked = FALSE;
1000 technology->hardblocked = TRUE;
1002 technology->type = type;
1003 technology->path = g_strdup_printf("%s/technology/%s",
1006 technology->device_list = NULL;
1008 technology->pending_reply = NULL;
1010 technology_load(technology);
1012 if (technology_dbus_register(technology) == FALSE) {
1017 technology_list = g_slist_prepend(technology_list, technology);
1019 technology->driver = driver;
1020 err = driver->probe(technology);
1022 DBG("Driver probe failed for technology %p", technology);
1024 DBG("technology %p", technology);
1029 static void technology_dbus_unregister(struct connman_technology *technology)
1031 if (technology->dbus_registered == FALSE)
1034 technology_removed_signal(technology);
1035 g_dbus_unregister_interface(connection, technology->path,
1036 CONNMAN_TECHNOLOGY_INTERFACE);
1038 technology->dbus_registered = FALSE;
1041 static void technology_put(struct connman_technology *technology)
1043 DBG("technology %p", technology);
1045 if (__sync_sub_and_fetch(&technology->refcount, 1) > 0)
1048 reply_scan_pending(technology, -EINTR);
1050 if (technology->driver) {
1051 technology->driver->remove(technology);
1052 technology->driver = NULL;
1055 technology_list = g_slist_remove(technology_list, technology);
1057 technology_dbus_unregister(technology);
1059 g_slist_free(technology->device_list);
1061 g_free(technology->path);
1062 g_free(technology->regdom);
1063 g_free(technology->tethering_ident);
1064 g_free(technology->tethering_passphrase);
1068 void __connman_technology_add_interface(enum connman_service_type type,
1069 int index, const char *name, const char *ident)
1071 struct connman_technology *technology;
1074 case CONNMAN_SERVICE_TYPE_UNKNOWN:
1075 case CONNMAN_SERVICE_TYPE_SYSTEM:
1077 case CONNMAN_SERVICE_TYPE_ETHERNET:
1078 case CONNMAN_SERVICE_TYPE_WIFI:
1079 case CONNMAN_SERVICE_TYPE_WIMAX:
1080 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
1081 case CONNMAN_SERVICE_TYPE_CELLULAR:
1082 case CONNMAN_SERVICE_TYPE_GPS:
1083 case CONNMAN_SERVICE_TYPE_VPN:
1084 case CONNMAN_SERVICE_TYPE_GADGET:
1088 connman_info("Adding interface %s [ %s ]", name,
1089 __connman_service_type2string(type));
1091 technology = technology_find(type);
1093 if (technology == NULL || technology->driver == NULL
1094 || technology->driver->add_interface == NULL)
1097 technology->driver->add_interface(technology,
1098 index, name, ident);
1101 void __connman_technology_remove_interface(enum connman_service_type type,
1102 int index, const char *name, const char *ident)
1104 struct connman_technology *technology;
1107 case CONNMAN_SERVICE_TYPE_UNKNOWN:
1108 case CONNMAN_SERVICE_TYPE_SYSTEM:
1110 case CONNMAN_SERVICE_TYPE_ETHERNET:
1111 case CONNMAN_SERVICE_TYPE_WIFI:
1112 case CONNMAN_SERVICE_TYPE_WIMAX:
1113 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
1114 case CONNMAN_SERVICE_TYPE_CELLULAR:
1115 case CONNMAN_SERVICE_TYPE_GPS:
1116 case CONNMAN_SERVICE_TYPE_VPN:
1117 case CONNMAN_SERVICE_TYPE_GADGET:
1121 connman_info("Remove interface %s [ %s ]", name,
1122 __connman_service_type2string(type));
1124 technology = technology_find(type);
1126 if (technology == NULL || technology->driver == NULL)
1129 if (technology->driver->remove_interface)
1130 technology->driver->remove_interface(technology, index);
1133 int __connman_technology_add_device(struct connman_device *device)
1135 struct connman_technology *technology;
1136 enum connman_service_type type;
1138 DBG("device %p", device);
1140 type = __connman_device_get_service_type(device);
1142 technology = technology_get(type);
1143 if (technology == NULL) {
1145 * Since no driver can be found for this device at the moment we
1146 * add it to the techless device list.
1148 techless_device_list = g_slist_prepend(techless_device_list,
1154 if (technology->enable_persistent &&
1155 global_offlinemode == FALSE &&
1156 technology->hardblocked == FALSE) {
1157 int err = __connman_device_enable(device);
1159 * connman_technology_add_device() calls __connman_device_enable()
1160 * but since the device is already enabled, the calls does not
1161 * propagate through to connman_technology_enabled via
1162 * connman_device_set_powered.
1164 if (err == -EALREADY)
1165 __connman_technology_enabled(type);
1167 /* if technology persistent state is offline or hardblocked */
1168 if (technology->enable_persistent == FALSE ||
1169 technology->hardblocked == TRUE)
1170 __connman_device_disable(device);
1172 technology->device_list = g_slist_prepend(technology->device_list,
1178 int __connman_technology_remove_device(struct connman_device *device)
1180 struct connman_technology *technology;
1181 enum connman_service_type type;
1183 DBG("device %p", device);
1185 type = __connman_device_get_service_type(device);
1187 technology = technology_find(type);
1188 if (technology == NULL) {
1189 techless_device_list = g_slist_remove(techless_device_list,
1194 technology->device_list = g_slist_remove(technology->device_list,
1196 technology_put(technology);
1201 static void powered_changed(struct connman_technology *technology)
1203 connman_bool_t powered;
1205 __sync_synchronize();
1206 if (technology->enabled >0)
1211 connman_dbus_property_changed_basic(technology->path,
1212 CONNMAN_TECHNOLOGY_INTERFACE, "Powered",
1213 DBUS_TYPE_BOOLEAN, &powered);
1216 int __connman_technology_enabled(enum connman_service_type type)
1218 struct connman_technology *technology;
1220 technology = technology_find(type);
1221 if (technology == NULL)
1224 if (__sync_fetch_and_add(&technology->enabled, 1) != 0)
1227 powered_changed(technology);
1229 if (technology->pending_reply != NULL) {
1230 g_dbus_send_reply(connection, technology->pending_reply, DBUS_TYPE_INVALID);
1231 dbus_message_unref(technology->pending_reply);
1232 g_source_remove(technology->pending_timeout);
1233 technology->pending_reply = NULL;
1234 technology->pending_timeout = 0;
1240 int __connman_technology_disabled(enum connman_service_type type)
1242 struct connman_technology *technology;
1244 technology = technology_find(type);
1245 if (technology == NULL)
1248 if (__sync_fetch_and_sub(&technology->enabled, 1) != 1)
1249 return -EINPROGRESS;
1251 if (technology->pending_reply != NULL) {
1252 g_dbus_send_reply(connection, technology->pending_reply, DBUS_TYPE_INVALID);
1253 dbus_message_unref(technology->pending_reply);
1254 g_source_remove(technology->pending_timeout);
1255 technology->pending_reply = NULL;
1256 technology->pending_timeout = 0;
1259 powered_changed(technology);
1264 int __connman_technology_set_offlinemode(connman_bool_t offlinemode)
1269 if (global_offlinemode == offlinemode)
1272 DBG("offlinemode %s", offlinemode ? "On" : "Off");
1275 * This is a bit tricky. When you set offlinemode, there is no
1276 * way to differentiate between attempting offline mode and
1277 * resuming offlinemode from last saved profile. We need that
1278 * information in rfkill_update, otherwise it falls back on the
1279 * technology's persistent state. Hence we set the offline mode here
1280 * but save it & call the notifier only if its successful.
1283 global_offlinemode = offlinemode;
1285 /* Traverse technology list, enable/disable each technology. */
1286 for (list = technology_list; list; list = list->next) {
1287 struct connman_technology *technology = list->data;
1290 err = technology_disable(technology, FALSE);
1292 if (!offlinemode && technology->enable_persistent)
1293 err = technology_enable(technology, FALSE);
1296 if (err == 0 || err == -EINPROGRESS || err == -EALREADY) {
1297 connman_technology_save_offlinemode();
1298 __connman_notifier_offlinemode(offlinemode);
1300 global_offlinemode = connman_technology_load_offlinemode();
1305 void __connman_technology_set_connected(enum connman_service_type type,
1306 connman_bool_t connected)
1308 struct connman_technology *technology;
1310 technology = technology_find(type);
1311 if (technology == NULL)
1314 DBG("technology %p connected %d", technology, connected);
1316 technology->connected = connected;
1318 connman_dbus_property_changed_basic(technology->path,
1319 CONNMAN_TECHNOLOGY_INTERFACE, "Connected",
1320 DBUS_TYPE_BOOLEAN, &connected);
1323 static void technology_apply_hardblock_change(struct connman_technology *technology,
1324 connman_bool_t hardblock)
1326 gboolean apply = TRUE;
1327 GList *start, *list;
1329 if (technology->hardblocked == hardblock)
1332 start = g_hash_table_get_values(rfkill_list);
1333 for (list = start; list != NULL; list = list->next) {
1334 struct connman_rfkill *rfkill = list->data;
1336 if (rfkill->type != technology->type)
1339 if (rfkill->hardblock != hardblock)
1348 technology->hardblocked = hardblock;
1350 if (hardblock == TRUE) {
1351 DBG("%s is switched off.", get_name(technology->type));
1352 technology_disable(technology, TRUE);
1353 technology_dbus_unregister(technology);
1355 technology_enable(technology, TRUE);
1356 technology_dbus_register(technology);
1360 int __connman_technology_add_rfkill(unsigned int index,
1361 enum connman_service_type type,
1362 connman_bool_t softblock,
1363 connman_bool_t hardblock)
1365 struct connman_technology *technology;
1366 struct connman_rfkill *rfkill;
1368 DBG("index %u type %d soft %u hard %u", index, type,
1369 softblock, hardblock);
1371 rfkill = g_hash_table_lookup(rfkill_list, GINT_TO_POINTER(index));
1375 rfkill = g_try_new0(struct connman_rfkill, 1);
1379 rfkill->index = index;
1380 rfkill->type = type;
1381 rfkill->softblock = softblock;
1382 rfkill->hardblock = hardblock;
1384 g_hash_table_insert(rfkill_list, GINT_TO_POINTER(index), rfkill);
1387 technology = technology_get(type);
1388 /* If there is no driver for this type, ignore it. */
1389 if (technology == NULL)
1392 technology_apply_hardblock_change(technology, hardblock);
1395 * If Offline mode is on, we softblock the device if it isnt already.
1396 * If Offline mode is off, we rely on the persistent state of tech.
1398 if (global_offlinemode) {
1400 return __connman_rfkill_block(type, TRUE);
1402 if (technology->enable_persistent && softblock)
1403 return __connman_rfkill_block(type, FALSE);
1404 /* if technology persistent state is offline */
1405 if (!technology->enable_persistent && !softblock)
1406 return __connman_rfkill_block(type, TRUE);
1412 int __connman_technology_update_rfkill(unsigned int index,
1413 enum connman_service_type type,
1414 connman_bool_t softblock,
1415 connman_bool_t hardblock)
1417 struct connman_technology *technology;
1418 struct connman_rfkill *rfkill;
1420 DBG("index %u soft %u hard %u", index, softblock, hardblock);
1422 rfkill = g_hash_table_lookup(rfkill_list, GINT_TO_POINTER(index));
1426 if (rfkill->softblock == softblock &&
1427 rfkill->hardblock == hardblock)
1430 rfkill->softblock = softblock;
1431 rfkill->hardblock = hardblock;
1433 technology = technology_find(type);
1434 /* If there is no driver for this type, ignore it. */
1435 if (technology == NULL)
1438 technology_apply_hardblock_change(technology, hardblock);
1440 if (!global_offlinemode) {
1441 if (technology->enable_persistent && softblock)
1442 return __connman_rfkill_block(type, FALSE);
1443 if (!technology->enable_persistent && !softblock)
1444 return __connman_rfkill_block(type, TRUE);
1450 int __connman_technology_remove_rfkill(unsigned int index,
1451 enum connman_service_type type)
1453 struct connman_technology *technology;
1454 struct connman_rfkill *rfkill;
1456 DBG("index %u", index);
1458 rfkill = g_hash_table_lookup(rfkill_list, GINT_TO_POINTER(index));
1462 g_hash_table_remove(rfkill_list, GINT_TO_POINTER(index));
1464 technology = technology_find(type);
1465 if (technology == NULL)
1468 technology_put(technology);
1473 int __connman_technology_init(void)
1477 connection = connman_dbus_get_connection();
1479 rfkill_list = g_hash_table_new_full(g_direct_hash, g_direct_equal,
1482 global_offlinemode = connman_technology_load_offlinemode();
1484 /* This will create settings file if it is missing */
1485 connman_technology_save_offlinemode();
1490 void __connman_technology_cleanup(void)
1494 g_hash_table_destroy(rfkill_list);
1496 dbus_connection_unref(connection);