5 * Copyright (C) 2007-2013 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 bool global_offlinemode;
46 struct connman_rfkill {
48 enum connman_service_type type;
53 struct connman_technology {
55 enum connman_service_type type;
63 bool tethering_persistent; /* Tells the save status, needed
64 * as offline mode might set
67 char *tethering_ident;
68 char *tethering_passphrase;
69 bool tethering_hidden;
71 bool enable_persistent; /* Save the tech state */
75 DBusMessage *pending_reply;
76 guint pending_timeout;
86 static GSList *driver_list = NULL;
88 static gint compare_priority(gconstpointer a, gconstpointer b)
90 const struct connman_technology_driver *driver1 = a;
91 const struct connman_technology_driver *driver2 = b;
93 return driver2->priority - driver1->priority;
96 static void rfkill_check(gpointer key, gpointer value, gpointer user_data)
98 struct connman_rfkill *rfkill = value;
99 enum connman_service_type type = GPOINTER_TO_INT(user_data);
101 /* Calling _technology_rfkill_add will update the tech. */
102 if (rfkill->type == type)
103 __connman_technology_add_rfkill(rfkill->index, type,
104 rfkill->softblock, rfkill->hardblock);
108 connman_technology_is_tethering_allowed(enum connman_service_type type)
110 static char *allowed_default[] = { "wifi", "bluetooth", "gadget",
112 const char *type_str = __connman_service_type2string(type);
119 allowed = connman_setting_get_string_list("TetheringTechnologies");
121 allowed = allowed_default;
123 for (i = 0; allowed[i]; i++) {
124 if (g_strcmp0(allowed[i], type_str) == 0)
131 static const char *get_name(enum connman_service_type type)
134 case CONNMAN_SERVICE_TYPE_UNKNOWN:
135 case CONNMAN_SERVICE_TYPE_SYSTEM:
136 case CONNMAN_SERVICE_TYPE_GPS:
137 case CONNMAN_SERVICE_TYPE_VPN:
139 case CONNMAN_SERVICE_TYPE_GADGET:
141 case CONNMAN_SERVICE_TYPE_ETHERNET:
143 case CONNMAN_SERVICE_TYPE_WIFI:
145 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
147 case CONNMAN_SERVICE_TYPE_CELLULAR:
149 case CONNMAN_SERVICE_TYPE_P2P:
156 static void technology_save(struct connman_technology *technology)
160 const char *name = get_name(technology->type);
162 DBG("technology %p type %d name %s", technology, technology->type,
167 keyfile = __connman_storage_load_global();
169 keyfile = g_key_file_new();
171 identifier = g_strdup_printf("%s", name);
175 g_key_file_set_boolean(keyfile, identifier, "Enable",
176 technology->enable_persistent);
178 g_key_file_set_boolean(keyfile, identifier, "Tethering",
179 technology->tethering_persistent);
181 g_key_file_set_boolean(keyfile, identifier, "Hidden",
182 technology->tethering_hidden);
184 if (technology->tethering_ident)
185 g_key_file_set_string(keyfile, identifier,
186 "Tethering.Identifier",
187 technology->tethering_ident);
189 if (technology->tethering_passphrase)
190 g_key_file_set_string(keyfile, identifier,
191 "Tethering.Passphrase",
192 technology->tethering_passphrase);
197 __connman_storage_save_global(keyfile);
199 g_key_file_free(keyfile);
204 static void tethering_changed(struct connman_technology *technology)
206 dbus_bool_t tethering = technology->tethering;
208 connman_dbus_property_changed_basic(technology->path,
209 CONNMAN_TECHNOLOGY_INTERFACE, "Tethering",
210 DBUS_TYPE_BOOLEAN, &tethering);
212 technology_save(technology);
215 void connman_technology_tethering_notify(struct connman_technology *technology,
218 DBG("technology %p enabled %u", technology, enabled);
220 if (technology->tethering == enabled)
223 technology->tethering = enabled;
225 tethering_changed(technology);
228 __connman_tethering_set_enabled();
230 __connman_tethering_set_disabled();
233 static int set_tethering(struct connman_technology *technology,
236 int result = -EOPNOTSUPP;
238 const char *ident, *passphrase, *bridge;
239 GSList *tech_drivers;
242 ident = technology->tethering_ident;
243 passphrase = technology->tethering_passphrase;
244 hidden = technology->tethering_hidden;
246 __sync_synchronize();
247 if (!technology->enabled)
250 bridge = __connman_tethering_get_bridge();
254 if (technology->type == CONNMAN_SERVICE_TYPE_WIFI && (!ident))
257 for (tech_drivers = technology->driver_list; tech_drivers;
258 tech_drivers = g_slist_next(tech_drivers)) {
259 struct connman_technology_driver *driver = tech_drivers->data;
261 if (!driver || !driver->set_tethering)
264 err = driver->set_tethering(technology, ident, passphrase,
265 bridge, enabled, hidden);
267 if (result == -EINPROGRESS)
270 if (err == -EINPROGRESS || err == 0) {
279 void connman_technology_regdom_notify(struct connman_technology *technology,
285 connman_error("Failed to set regulatory domain");
287 DBG("Regulatory domain set to %s", alpha2);
289 g_free(technology->regdom);
290 technology->regdom = g_strdup(alpha2);
293 static int set_regdom_by_device(struct connman_technology *technology,
298 for (list = technology->device_list; list; list = list->next) {
299 struct connman_device *device = list->data;
301 if (connman_device_set_regdom(device, alpha2) != 0)
308 int connman_technology_set_regdom(const char *alpha2)
310 GSList *list, *tech_drivers;
312 for (list = technology_list; list; list = list->next) {
313 struct connman_technology *technology = list->data;
315 if (set_regdom_by_device(technology, alpha2) != 0) {
317 for (tech_drivers = technology->driver_list;
319 tech_drivers = g_slist_next(tech_drivers)) {
321 struct connman_technology_driver *driver =
324 if (driver->set_regdom)
325 driver->set_regdom(technology, alpha2);
333 static struct connman_technology *technology_find(enum connman_service_type type)
337 DBG("type %d", type);
339 for (list = technology_list; list; list = list->next) {
340 struct connman_technology *technology = list->data;
342 if (technology->type == type)
349 bool connman_technology_get_wifi_tethering(const char **ssid,
352 struct connman_technology *technology;
359 technology = technology_find(CONNMAN_SERVICE_TYPE_WIFI);
363 if (!technology->tethering)
366 *ssid = technology->tethering_ident;
367 *psk = technology->tethering_passphrase;
372 static void free_rfkill(gpointer data)
374 struct connman_rfkill *rfkill = data;
379 static void technology_load(struct connman_technology *technology)
383 GError *error = NULL;
384 bool enable, need_saving = false;
386 DBG("technology %p", technology);
388 keyfile = __connman_storage_load_global();
389 /* Fallback on disabling technology if file not found. */
391 if (technology->type == CONNMAN_SERVICE_TYPE_ETHERNET)
392 /* We enable ethernet by default */
393 technology->enable_persistent = true;
395 technology->enable_persistent = false;
399 identifier = g_strdup_printf("%s", get_name(technology->type));
403 enable = g_key_file_get_boolean(keyfile, identifier, "Enable", &error);
405 technology->enable_persistent = enable;
407 if (technology->type == CONNMAN_SERVICE_TYPE_ETHERNET)
408 technology->enable_persistent = true;
410 technology->enable_persistent = false;
413 g_clear_error(&error);
416 enable = g_key_file_get_boolean(keyfile, identifier,
417 "Tethering", &error);
419 technology->tethering_persistent = enable;
422 g_clear_error(&error);
426 technology_save(technology);
428 technology->tethering_ident = g_key_file_get_string(keyfile,
429 identifier, "Tethering.Identifier", NULL);
431 technology->tethering_passphrase = g_key_file_get_string(keyfile,
432 identifier, "Tethering.Passphrase", NULL);
436 g_key_file_free(keyfile);
441 bool __connman_technology_get_offlinemode(void)
443 return global_offlinemode;
446 static void connman_technology_save_offlinemode(void)
450 keyfile = __connman_storage_load_global();
452 keyfile = g_key_file_new();
454 g_key_file_set_boolean(keyfile, "global",
455 "OfflineMode", global_offlinemode);
457 __connman_storage_save_global(keyfile);
459 g_key_file_free(keyfile);
464 static bool connman_technology_load_offlinemode(void)
467 GError *error = NULL;
470 /* If there is a error, we enable offlinemode */
471 keyfile = __connman_storage_load_global();
475 offlinemode = g_key_file_get_boolean(keyfile, "global",
476 "OfflineMode", &error);
479 g_clear_error(&error);
482 g_key_file_free(keyfile);
487 static void append_properties(DBusMessageIter *iter,
488 struct connman_technology *technology)
490 DBusMessageIter dict;
494 connman_dbus_dict_open(iter, &dict);
496 str = get_name(technology->type);
498 connman_dbus_dict_append_basic(&dict, "Name",
499 DBUS_TYPE_STRING, &str);
501 str = __connman_service_type2string(technology->type);
503 connman_dbus_dict_append_basic(&dict, "Type",
504 DBUS_TYPE_STRING, &str);
506 __sync_synchronize();
507 val = technology->enabled;
508 connman_dbus_dict_append_basic(&dict, "Powered",
512 val = technology->connected;
513 connman_dbus_dict_append_basic(&dict, "Connected",
517 val = technology->tethering;
518 connman_dbus_dict_append_basic(&dict, "Tethering",
522 if (technology->tethering_ident)
523 connman_dbus_dict_append_basic(&dict, "TetheringIdentifier",
525 &technology->tethering_ident);
527 if (technology->tethering_passphrase)
528 connman_dbus_dict_append_basic(&dict, "TetheringPassphrase",
530 &technology->tethering_passphrase);
532 val = technology->tethering_hidden;
533 connman_dbus_dict_append_basic(&dict, "Hidden",
537 connman_dbus_dict_close(iter, &dict);
540 static void technology_added_signal(struct connman_technology *technology)
543 DBusMessageIter iter;
545 signal = dbus_message_new_signal(CONNMAN_MANAGER_PATH,
546 CONNMAN_MANAGER_INTERFACE, "TechnologyAdded");
550 dbus_message_iter_init_append(signal, &iter);
551 dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
553 append_properties(&iter, technology);
555 dbus_connection_send(connection, signal, NULL);
556 dbus_message_unref(signal);
559 static void technology_removed_signal(struct connman_technology *technology)
561 g_dbus_emit_signal(connection, CONNMAN_MANAGER_PATH,
562 CONNMAN_MANAGER_INTERFACE, "TechnologyRemoved",
563 DBUS_TYPE_OBJECT_PATH, &technology->path,
567 static DBusMessage *get_properties(DBusConnection *conn,
568 DBusMessage *message, void *user_data)
570 struct connman_technology *technology = user_data;
572 DBusMessageIter iter;
574 reply = dbus_message_new_method_return(message);
578 dbus_message_iter_init_append(reply, &iter);
579 append_properties(&iter, technology);
584 void __connman_technology_list_struct(DBusMessageIter *array)
587 DBusMessageIter entry;
589 for (list = technology_list; list; list = list->next) {
590 struct connman_technology *technology = list->data;
592 if (!technology->path ||
593 (technology->rfkill_driven &&
594 technology->hardblocked))
597 dbus_message_iter_open_container(array, DBUS_TYPE_STRUCT,
599 dbus_message_iter_append_basic(&entry, DBUS_TYPE_OBJECT_PATH,
601 append_properties(&entry, technology);
602 dbus_message_iter_close_container(array, &entry);
606 static gboolean technology_pending_reply(gpointer user_data)
608 struct connman_technology *technology = user_data;
611 /* Power request timedout, send ETIMEDOUT. */
612 if (technology->pending_reply) {
613 reply = __connman_error_failed(technology->pending_reply, ETIMEDOUT);
615 g_dbus_send_message(connection, reply);
617 dbus_message_unref(technology->pending_reply);
618 technology->pending_reply = NULL;
619 technology->pending_timeout = 0;
625 static int technology_affect_devices(struct connman_technology *technology,
631 if (technology->type == CONNMAN_SERVICE_TYPE_P2P)
634 for (list = technology->device_list; list; list = list->next) {
635 struct connman_device *device = list->data;
638 err = __connman_device_enable(device);
640 err = __connman_device_disable(device);
646 static void powered_changed(struct connman_technology *technology)
650 if (!technology->dbus_registered)
653 if (technology->pending_reply) {
654 g_dbus_send_reply(connection,
655 technology->pending_reply, DBUS_TYPE_INVALID);
656 dbus_message_unref(technology->pending_reply);
657 technology->pending_reply = NULL;
659 g_source_remove(technology->pending_timeout);
660 technology->pending_timeout = 0;
663 __sync_synchronize();
664 enabled = technology->enabled;
665 connman_dbus_property_changed_basic(technology->path,
666 CONNMAN_TECHNOLOGY_INTERFACE, "Powered",
667 DBUS_TYPE_BOOLEAN, &enabled);
670 static void enable_tethering(struct connman_technology *technology)
674 if (!connman_setting_get_bool("PersistentTetheringMode"))
677 ret = set_tethering(technology, true);
678 if (ret < 0 && ret != -EALREADY)
679 DBG("Cannot enable tethering yet for %s (%d/%s)",
680 get_name(technology->type),
681 -ret, strerror(-ret));
684 static int technology_enabled(struct connman_technology *technology)
686 __sync_synchronize();
687 if (technology->enabled)
690 technology->enabled = true;
692 if (technology->type == CONNMAN_SERVICE_TYPE_WIFI) {
693 struct connman_technology *p2p;
695 p2p = technology_find(CONNMAN_SERVICE_TYPE_P2P);
696 if (p2p && !p2p->enabled && p2p->enable_persistent)
697 technology_enabled(p2p);
700 if (technology->tethering_persistent)
701 enable_tethering(technology);
703 powered_changed(technology);
708 static int technology_enable(struct connman_technology *technology)
713 DBG("technology %p enable", technology);
715 __sync_synchronize();
717 if (technology->type == CONNMAN_SERVICE_TYPE_P2P) {
718 struct connman_technology *wifi;
720 wifi = technology_find(CONNMAN_SERVICE_TYPE_WIFI);
721 if (wifi && wifi->enabled)
722 return technology_enabled(technology);
726 if (technology->enabled)
729 if (technology->pending_reply)
732 if (connman_setting_get_bool("PersistentTetheringMode") &&
733 technology->tethering)
734 set_tethering(technology, true);
736 if (technology->rfkill_driven)
737 err = __connman_rfkill_block(technology->type, false);
739 err_dev = technology_affect_devices(technology, true);
741 if (!technology->rfkill_driven)
747 static int technology_disabled(struct connman_technology *technology)
749 __sync_synchronize();
750 if (!technology->enabled)
753 technology->enabled = false;
755 powered_changed(technology);
760 static int technology_disable(struct connman_technology *technology)
764 DBG("technology %p disable", technology);
766 __sync_synchronize();
768 if (technology->type == CONNMAN_SERVICE_TYPE_P2P) {
769 technology->enable_persistent = false;
770 return technology_disabled(technology);
771 } else if (technology->type == CONNMAN_SERVICE_TYPE_WIFI) {
772 struct connman_technology *p2p;
774 p2p = technology_find(CONNMAN_SERVICE_TYPE_P2P);
775 if (p2p && p2p->enabled) {
776 p2p->enable_persistent = true;
777 technology_disabled(p2p);
781 if (!technology->enabled)
784 if (technology->pending_reply)
787 if (technology->tethering)
788 set_tethering(technology, false);
790 err = technology_affect_devices(technology, false);
792 if (technology->rfkill_driven)
793 err = __connman_rfkill_block(technology->type, true);
798 static DBusMessage *set_powered(struct connman_technology *technology,
799 DBusMessage *msg, bool powered)
801 DBusMessage *reply = NULL;
804 if (technology->rfkill_driven && technology->hardblocked) {
810 err = technology_enable(technology);
812 err = technology_disable(technology);
815 technology->enable_persistent = powered;
816 technology_save(technology);
820 if (err == -EINPROGRESS) {
821 technology->pending_reply = dbus_message_ref(msg);
822 technology->pending_timeout = g_timeout_add_seconds(10,
823 technology_pending_reply, technology);
824 } else if (err == -EALREADY) {
826 reply = __connman_error_already_enabled(msg);
828 reply = __connman_error_already_disabled(msg);
830 reply = __connman_error_failed(msg, -err);
832 reply = g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
837 static DBusMessage *set_property(DBusConnection *conn,
838 DBusMessage *msg, void *data)
840 struct connman_technology *technology = data;
841 DBusMessageIter iter, value;
845 DBG("conn %p", conn);
847 if (!dbus_message_iter_init(msg, &iter))
848 return __connman_error_invalid_arguments(msg);
850 if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_STRING)
851 return __connman_error_invalid_arguments(msg);
853 dbus_message_iter_get_basic(&iter, &name);
854 dbus_message_iter_next(&iter);
856 if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_VARIANT)
857 return __connman_error_invalid_arguments(msg);
859 dbus_message_iter_recurse(&iter, &value);
861 type = dbus_message_iter_get_arg_type(&value);
863 DBG("property %s", name);
865 if (technology->type == CONNMAN_SERVICE_TYPE_WIFI && technology->connected) {
867 if (connman_dbus_get_connection_unix_user_sync(conn,
868 dbus_message_get_sender(msg),
870 DBG("Can not get unix user id!");
871 return __connman_error_permission_denied(msg);
874 if (!__connman_service_is_user_allowed(CONNMAN_SERVICE_TYPE_WIFI, uid)) {
875 DBG("Not allow this user to operate wifi technology now!");
876 return __connman_error_permission_denied(msg);
880 if (g_str_equal(name, "Tethering")) {
881 dbus_bool_t tethering;
884 if (type != DBUS_TYPE_BOOLEAN)
885 return __connman_error_invalid_arguments(msg);
887 if (!connman_technology_is_tethering_allowed(technology->type)) {
888 DBG("%s tethering not allowed by config file",
889 __connman_service_type2string(technology->type));
890 return __connman_error_not_supported(msg);
893 dbus_message_iter_get_basic(&value, &tethering);
895 if (technology->tethering == tethering) {
897 return __connman_error_already_disabled(msg);
899 return __connman_error_already_enabled(msg);
902 err = set_tethering(technology, tethering);
904 return __connman_error_failed(msg, -err);
906 technology->tethering_persistent = tethering;
908 technology_save(technology);
910 } else if (g_str_equal(name, "TetheringIdentifier")) {
913 dbus_message_iter_get_basic(&value, &str);
915 if (technology->type != CONNMAN_SERVICE_TYPE_WIFI)
916 return __connman_error_not_supported(msg);
918 if (strlen(str) < 1 || strlen(str) > 32)
919 return __connman_error_invalid_arguments(msg);
921 if (g_strcmp0(technology->tethering_ident, str) != 0) {
922 g_free(technology->tethering_ident);
923 technology->tethering_ident = g_strdup(str);
924 technology_save(technology);
926 connman_dbus_property_changed_basic(technology->path,
927 CONNMAN_TECHNOLOGY_INTERFACE,
928 "TetheringIdentifier",
930 &technology->tethering_ident);
932 } else if (g_str_equal(name, "TetheringPassphrase")) {
935 dbus_message_iter_get_basic(&value, &str);
937 if (technology->type != CONNMAN_SERVICE_TYPE_WIFI)
938 return __connman_error_not_supported(msg);
940 if (strlen(str) < 8 || strlen(str) > 63) {
941 if (g_str_equal(str, "")) {
942 technology->tethering_passphrase = NULL;
944 connman_dbus_property_changed_basic(technology->path,
945 CONNMAN_TECHNOLOGY_INTERFACE,
946 "TetheringPassphrase",
951 return __connman_error_passphrase_required(msg);
953 if (g_strcmp0(technology->tethering_passphrase, str) != 0) {
954 g_free(technology->tethering_passphrase);
955 technology->tethering_passphrase = g_strdup(str);
956 technology_save(technology);
958 connman_dbus_property_changed_basic(technology->path,
959 CONNMAN_TECHNOLOGY_INTERFACE,
960 "TetheringPassphrase",
962 &technology->tethering_passphrase);
965 } else if (g_str_equal(name, "Hidden")) {
968 if (type != DBUS_TYPE_BOOLEAN)
969 return __connman_error_invalid_arguments(msg);
971 dbus_message_iter_get_basic(&value, &hidden);
973 if (technology->type != CONNMAN_SERVICE_TYPE_WIFI)
974 return __connman_error_not_supported(msg);
976 technology->tethering_hidden = hidden;
977 technology_save(technology);
979 connman_dbus_property_changed_basic(technology->path,
980 CONNMAN_TECHNOLOGY_INTERFACE,
984 } else if (g_str_equal(name, "Powered")) {
987 if (type != DBUS_TYPE_BOOLEAN)
988 return __connman_error_invalid_arguments(msg);
990 dbus_message_iter_get_basic(&value, &enable);
992 return set_powered(technology, msg, enable);
994 return __connman_error_invalid_property(msg);
996 return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
999 static void reply_scan_pending(struct connman_technology *technology, int err)
1003 DBG("technology %p err %d", technology, err);
1005 while (technology->scan_pending) {
1006 DBusMessage *msg = technology->scan_pending->data;
1008 DBG("reply to %s", dbus_message_get_sender(msg));
1011 reply = g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
1013 reply = __connman_error_failed(msg, -err);
1014 g_dbus_send_message(connection, reply);
1015 dbus_message_unref(msg);
1017 technology->scan_pending =
1018 g_slist_delete_link(technology->scan_pending,
1019 technology->scan_pending);
1023 void __connman_technology_scan_started(struct connman_device *device)
1025 DBG("device %p", device);
1028 void __connman_technology_scan_stopped(struct connman_device *device,
1029 enum connman_service_type type)
1032 struct connman_technology *technology;
1035 technology = technology_find(type);
1037 DBG("technology %p device %p", technology, device);
1042 for (list = technology->device_list; list; list = list->next) {
1043 struct connman_device *other_device = list->data;
1045 if (device == other_device)
1048 if (__connman_device_get_service_type(other_device) != type)
1051 if (connman_device_get_scanning(other_device))
1056 reply_scan_pending(technology, 0);
1059 void __connman_technology_notify_regdom_by_device(struct connman_device *device,
1060 int result, const char *alpha2)
1062 bool regdom_set = false;
1063 struct connman_technology *technology;
1064 enum connman_service_type type;
1065 GSList *tech_drivers;
1067 type = __connman_device_get_service_type(device);
1068 technology = technology_find(type);
1075 for (tech_drivers = technology->driver_list;
1077 tech_drivers = g_slist_next(tech_drivers)) {
1078 struct connman_technology_driver *driver =
1081 if (driver->set_regdom) {
1082 driver->set_regdom(technology, alpha2);
1092 connman_technology_regdom_notify(technology, alpha2);
1095 static DBusMessage *scan(DBusConnection *conn, DBusMessage *msg, void *data)
1097 struct connman_technology *technology = data;
1100 DBG("technology %p request from %s", technology,
1101 dbus_message_get_sender(msg));
1103 dbus_message_ref(msg);
1104 technology->scan_pending =
1105 g_slist_prepend(technology->scan_pending, msg);
1107 err = __connman_device_request_scan(technology->type);
1109 reply_scan_pending(technology, err);
1114 static const GDBusMethodTable technology_methods[] = {
1115 { GDBUS_DEPRECATED_METHOD("GetProperties",
1116 NULL, GDBUS_ARGS({ "properties", "a{sv}" }),
1118 { GDBUS_ASYNC_METHOD("SetProperty",
1119 GDBUS_ARGS({ "name", "s" }, { "value", "v" }),
1120 NULL, set_property) },
1121 { GDBUS_ASYNC_METHOD("Scan", NULL, NULL, scan) },
1125 static const GDBusSignalTable technology_signals[] = {
1126 { GDBUS_SIGNAL("PropertyChanged",
1127 GDBUS_ARGS({ "name", "s" }, { "value", "v" })) },
1128 { GDBUS_SIGNAL("DhcpConnected",
1129 GDBUS_ARGS({ "aptype", "s" },
1132 { "hostname", "s" })) },
1133 { GDBUS_SIGNAL("DhcpLeaseDeleted",
1134 GDBUS_ARGS({ "aptype", "s" },
1137 { "hostname", "s" })) },
1141 static bool technology_dbus_register(struct connman_technology *technology)
1143 if (technology->dbus_registered ||
1144 (technology->rfkill_driven &&
1145 technology->hardblocked))
1148 if (!g_dbus_register_interface(connection, technology->path,
1149 CONNMAN_TECHNOLOGY_INTERFACE,
1150 technology_methods, technology_signals,
1151 NULL, technology, NULL)) {
1152 connman_error("Failed to register %s", technology->path);
1156 technology_added_signal(technology);
1157 technology->dbus_registered = true;
1162 static void technology_dbus_unregister(struct connman_technology *technology)
1164 if (!technology->dbus_registered)
1167 technology_removed_signal(technology);
1168 g_dbus_unregister_interface(connection, technology->path,
1169 CONNMAN_TECHNOLOGY_INTERFACE);
1171 technology->dbus_registered = false;
1174 static void technology_put(struct connman_technology *technology)
1176 DBG("technology %p", technology);
1178 if (__sync_sub_and_fetch(&technology->refcount, 1) > 0)
1181 reply_scan_pending(technology, -EINTR);
1183 while (technology->driver_list) {
1184 struct connman_technology_driver *driver;
1186 driver = technology->driver_list->data;
1189 driver->remove(technology);
1191 technology->driver_list =
1192 g_slist_delete_link(technology->driver_list,
1193 technology->driver_list);
1196 technology_list = g_slist_remove(technology_list, technology);
1198 technology_dbus_unregister(technology);
1200 g_slist_free(technology->device_list);
1202 g_free(technology->path);
1203 g_free(technology->regdom);
1204 g_free(technology->tethering_ident);
1205 g_free(technology->tethering_passphrase);
1209 static struct connman_technology *technology_get(enum connman_service_type type)
1211 GSList *tech_drivers = NULL;
1212 struct connman_technology_driver *driver;
1213 struct connman_technology *technology;
1217 DBG("type %d", type);
1219 str = __connman_service_type2string(type);
1223 technology = technology_find(type);
1225 if (type != CONNMAN_SERVICE_TYPE_P2P)
1226 __sync_fetch_and_add(&technology->refcount, 1);
1230 /* First check if we have a driver for this technology type */
1231 for (list = driver_list; list; list = list->next) {
1232 driver = list->data;
1234 if (driver->type == type) {
1235 DBG("technology %p driver %p", technology, driver);
1236 tech_drivers = g_slist_append(tech_drivers, driver);
1240 if (!tech_drivers) {
1241 DBG("No matching drivers found for %s.",
1242 __connman_service_type2string(type));
1246 technology = g_try_new0(struct connman_technology, 1);
1250 technology->refcount = 1;
1251 technology->type = type;
1252 technology->tethering_hidden = FALSE;
1253 technology->path = g_strdup_printf("%s/technology/%s",
1255 if (type == CONNMAN_SERVICE_TYPE_P2P) {
1256 struct connman_technology *wifi;
1258 wifi = technology_find(CONNMAN_SERVICE_TYPE_WIFI);
1260 technology->enabled = wifi->enabled;
1263 technology_load(technology);
1264 technology_list = g_slist_prepend(technology_list, technology);
1265 technology->driver_list = tech_drivers;
1267 for (list = tech_drivers; list; list = list->next) {
1268 driver = list->data;
1270 if (driver->probe && driver->probe(technology) < 0)
1271 DBG("Driver probe failed for technology %p",
1275 if (!technology_dbus_register(technology)) {
1276 technology_put(technology);
1280 DBG("technology %p", technology);
1285 int connman_technology_driver_register(struct connman_technology_driver *driver)
1288 struct connman_device *device;
1289 enum connman_service_type type;
1291 for (list = driver_list; list; list = list->next) {
1292 if (list->data == driver)
1296 DBG("Registering %s driver", driver->name);
1298 driver_list = g_slist_insert_sorted(driver_list, driver,
1302 * Check for technology less devices if this driver
1303 * can service any of them.
1305 for (list = techless_device_list; list; list = list->next) {
1306 device = list->data;
1308 type = __connman_device_get_service_type(device);
1309 if (type != driver->type)
1312 techless_device_list = g_slist_remove(techless_device_list,
1315 __connman_technology_add_device(device);
1318 /* Check for orphaned rfkill switches. */
1319 g_hash_table_foreach(rfkill_list, rfkill_check,
1320 GINT_TO_POINTER(driver->type));
1323 if (driver->type == CONNMAN_SERVICE_TYPE_P2P) {
1324 if (!technology_get(CONNMAN_SERVICE_TYPE_P2P))
1331 void connman_technology_driver_unregister(struct connman_technology_driver *driver)
1333 GSList *list, *tech_drivers;
1334 struct connman_technology *technology;
1335 struct connman_technology_driver *current;
1337 DBG("Unregistering driver %p name %s", driver, driver->name);
1339 for (list = technology_list; list; list = list->next) {
1340 technology = list->data;
1342 for (tech_drivers = technology->driver_list; tech_drivers;
1343 tech_drivers = g_slist_next(tech_drivers)) {
1344 current = tech_drivers->data;
1345 if (driver != current)
1349 driver->remove(technology);
1351 technology->driver_list =
1352 g_slist_remove(technology->driver_list,
1358 driver_list = g_slist_remove(driver_list, driver);
1360 if (driver->type == CONNMAN_SERVICE_TYPE_P2P) {
1361 technology = technology_find(CONNMAN_SERVICE_TYPE_P2P);
1363 technology_put(technology);
1367 void __connman_technology_add_interface(enum connman_service_type type,
1368 int index, const char *ident)
1370 struct connman_technology *technology;
1371 GSList *tech_drivers;
1372 struct connman_technology_driver *driver;
1376 case CONNMAN_SERVICE_TYPE_UNKNOWN:
1377 case CONNMAN_SERVICE_TYPE_SYSTEM:
1379 case CONNMAN_SERVICE_TYPE_ETHERNET:
1380 case CONNMAN_SERVICE_TYPE_WIFI:
1381 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
1382 case CONNMAN_SERVICE_TYPE_CELLULAR:
1383 case CONNMAN_SERVICE_TYPE_GPS:
1384 case CONNMAN_SERVICE_TYPE_VPN:
1385 case CONNMAN_SERVICE_TYPE_GADGET:
1386 case CONNMAN_SERVICE_TYPE_P2P:
1390 name = connman_inet_ifname(index);
1391 connman_info("Adding interface %s [ %s ]", name,
1392 __connman_service_type2string(type));
1394 technology = technology_find(type);
1399 for (tech_drivers = technology->driver_list; tech_drivers;
1400 tech_drivers = g_slist_next(tech_drivers)) {
1401 driver = tech_drivers->data;
1403 if (driver->add_interface)
1404 driver->add_interface(technology, index, name, ident);
1408 * At this point we can try to enable tethering automatically as
1409 * now the interfaces are set properly.
1411 if (technology->tethering_persistent)
1412 enable_tethering(technology);
1418 void __connman_technology_remove_interface(enum connman_service_type type,
1419 int index, const char *ident)
1421 struct connman_technology *technology;
1422 GSList *tech_drivers;
1423 struct connman_technology_driver *driver;
1427 case CONNMAN_SERVICE_TYPE_UNKNOWN:
1428 case CONNMAN_SERVICE_TYPE_SYSTEM:
1430 case CONNMAN_SERVICE_TYPE_ETHERNET:
1431 case CONNMAN_SERVICE_TYPE_WIFI:
1432 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
1433 case CONNMAN_SERVICE_TYPE_CELLULAR:
1434 case CONNMAN_SERVICE_TYPE_GPS:
1435 case CONNMAN_SERVICE_TYPE_VPN:
1436 case CONNMAN_SERVICE_TYPE_GADGET:
1437 case CONNMAN_SERVICE_TYPE_P2P:
1441 name = connman_inet_ifname(index);
1442 connman_info("Remove interface %s [ %s ]", name,
1443 __connman_service_type2string(type));
1446 technology = technology_find(type);
1451 for (tech_drivers = technology->driver_list; tech_drivers;
1452 tech_drivers = g_slist_next(tech_drivers)) {
1453 driver = tech_drivers->data;
1455 if (driver->remove_interface)
1456 driver->remove_interface(technology, index);
1460 int __connman_technology_add_device(struct connman_device *device)
1462 struct connman_technology *technology;
1463 enum connman_service_type type;
1465 type = __connman_device_get_service_type(device);
1467 DBG("device %p type %s", device, get_name(type));
1469 technology = technology_get(type);
1472 * Since no driver can be found for this device at the moment we
1473 * add it to the techless device list.
1475 techless_device_list = g_slist_prepend(techless_device_list,
1481 __sync_synchronize();
1482 if (technology->rfkill_driven) {
1483 if (technology->enabled)
1484 __connman_device_enable(device);
1486 __connman_device_disable(device);
1491 if (technology->enable_persistent &&
1492 !global_offlinemode) {
1493 int err = __connman_device_enable(device);
1495 * connman_technology_add_device() calls __connman_device_enable()
1496 * but since the device is already enabled, the calls does not
1497 * propagate through to connman_technology_enabled via
1498 * connman_device_set_powered.
1500 if (err == -EALREADY)
1501 __connman_technology_enabled(type);
1503 /* if technology persistent state is offline */
1504 if (!technology->enable_persistent)
1505 __connman_device_disable(device);
1508 technology->device_list = g_slist_prepend(technology->device_list,
1514 int __connman_technology_remove_device(struct connman_device *device)
1516 struct connman_technology *technology;
1517 enum connman_service_type type;
1519 DBG("device %p", device);
1521 type = __connman_device_get_service_type(device);
1523 technology = technology_find(type);
1525 techless_device_list = g_slist_remove(techless_device_list,
1530 technology->device_list = g_slist_remove(technology->device_list,
1533 if (technology->tethering)
1534 set_tethering(technology, false);
1536 technology_put(technology);
1541 int __connman_technology_enabled(enum connman_service_type type)
1543 struct connman_technology *technology;
1545 technology = technology_find(type);
1549 DBG("technology %p type %s rfkill %d enabled %d", technology,
1550 get_name(type), technology->rfkill_driven,
1551 technology->enabled);
1553 if (technology->rfkill_driven) {
1554 if (technology->tethering_persistent)
1555 enable_tethering(technology);
1559 return technology_enabled(technology);
1562 int __connman_technology_disabled(enum connman_service_type type)
1564 struct connman_technology *technology;
1567 technology = technology_find(type);
1571 if (technology->rfkill_driven)
1574 for (list = technology->device_list; list; list = list->next) {
1575 struct connman_device *device = list->data;
1577 if (connman_device_get_powered(device))
1581 return technology_disabled(technology);
1584 int __connman_technology_set_offlinemode(bool offlinemode)
1587 int err = -EINVAL, enabled_tech_count = 0;
1589 if (global_offlinemode == offlinemode)
1592 DBG("offlinemode %s", offlinemode ? "On" : "Off");
1595 * This is a bit tricky. When you set offlinemode, there is no
1596 * way to differentiate between attempting offline mode and
1597 * resuming offlinemode from last saved profile. We need that
1598 * information in rfkill_update, otherwise it falls back on the
1599 * technology's persistent state. Hence we set the offline mode here
1600 * but save it & call the notifier only if its successful.
1603 global_offlinemode = offlinemode;
1605 /* Traverse technology list, enable/disable each technology. */
1606 for (list = technology_list; list; list = list->next) {
1607 struct connman_technology *technology = list->data;
1610 err = technology_disable(technology);
1612 if (technology->hardblocked)
1615 if (technology->enable_persistent) {
1616 err = technology_enable(technology);
1617 enabled_tech_count++;
1622 if (err == 0 || err == -EINPROGRESS || err == -EALREADY ||
1623 (err == -EINVAL && enabled_tech_count == 0)) {
1624 connman_technology_save_offlinemode();
1625 __connman_notifier_offlinemode(offlinemode);
1627 global_offlinemode = connman_technology_load_offlinemode();
1632 void __connman_technology_set_connected(enum connman_service_type type,
1635 struct connman_technology *technology;
1638 technology = technology_find(type);
1642 DBG("technology %p connected %d", technology, connected);
1644 technology->connected = connected;
1647 connman_dbus_property_changed_basic(technology->path,
1648 CONNMAN_TECHNOLOGY_INTERFACE, "Connected",
1649 DBUS_TYPE_BOOLEAN, &val);
1652 static bool technology_apply_rfkill_change(struct connman_technology *technology,
1657 bool hardblock_changed = false;
1659 GList *start, *list;
1661 DBG("technology %p --> %d/%d vs %d/%d",
1662 technology, softblock, hardblock,
1663 technology->softblocked, technology->hardblocked);
1665 if (technology->hardblocked == hardblock)
1666 goto softblock_change;
1668 if (!(new_rfkill && !hardblock)) {
1669 start = g_hash_table_get_values(rfkill_list);
1671 for (list = start; list; list = list->next) {
1672 struct connman_rfkill *rfkill = list->data;
1674 if (rfkill->type != technology->type)
1677 if (rfkill->hardblock != hardblock)
1685 goto softblock_change;
1687 technology->hardblocked = hardblock;
1688 hardblock_changed = true;
1691 if (!apply && technology->softblocked != softblock)
1695 return technology->hardblocked;
1697 technology->softblocked = softblock;
1699 if (technology->hardblocked ||
1700 technology->softblocked) {
1701 if (technology_disabled(technology) != -EALREADY)
1702 technology_affect_devices(technology, false);
1703 } else if (!technology->hardblocked &&
1704 !technology->softblocked) {
1705 if (technology_enabled(technology) != -EALREADY)
1706 technology_affect_devices(technology, true);
1709 if (hardblock_changed) {
1710 if (technology->hardblocked) {
1711 DBG("%s is switched off.", get_name(technology->type));
1712 technology_dbus_unregister(technology);
1714 DBG("%s is switched on.", get_name(technology->type));
1715 technology_dbus_register(technology);
1717 if (global_offlinemode)
1718 __connman_rfkill_block(technology->type, true);
1722 return technology->hardblocked;
1725 int __connman_technology_add_rfkill(unsigned int index,
1726 enum connman_service_type type,
1730 struct connman_technology *technology;
1731 struct connman_rfkill *rfkill;
1733 DBG("index %u type %d soft %u hard %u", index, type,
1734 softblock, hardblock);
1736 rfkill = g_hash_table_lookup(rfkill_list, GINT_TO_POINTER(index));
1740 rfkill = g_try_new0(struct connman_rfkill, 1);
1744 rfkill->index = index;
1745 rfkill->type = type;
1746 rfkill->softblock = softblock;
1747 rfkill->hardblock = hardblock;
1749 g_hash_table_insert(rfkill_list, GINT_TO_POINTER(index), rfkill);
1752 technology = technology_get(type);
1753 /* If there is no driver for this type, ignore it. */
1757 technology->rfkill_driven = true;
1759 /* If hardblocked, there is no need to handle softblocked state */
1760 if (technology_apply_rfkill_change(technology,
1761 softblock, hardblock, true))
1764 if (global_offlinemode)
1768 * Depending on softblocked state we unblock/block according to
1769 * offlinemode and persistente state.
1771 if (technology->softblocked &&
1772 technology->enable_persistent)
1773 return __connman_rfkill_block(type, false);
1774 else if (!technology->softblocked &&
1775 !technology->enable_persistent)
1776 return __connman_rfkill_block(type, true);
1781 int __connman_technology_update_rfkill(unsigned int index,
1782 enum connman_service_type type,
1786 struct connman_technology *technology;
1787 struct connman_rfkill *rfkill;
1789 DBG("index %u soft %u hard %u", index, softblock, hardblock);
1791 rfkill = g_hash_table_lookup(rfkill_list, GINT_TO_POINTER(index));
1795 if (rfkill->softblock == softblock &&
1796 rfkill->hardblock == hardblock)
1799 rfkill->softblock = softblock;
1800 rfkill->hardblock = hardblock;
1802 technology = technology_find(type);
1803 /* If there is no driver for this type, ignore it. */
1807 technology_apply_rfkill_change(technology, softblock, hardblock,
1810 if (technology->hardblocked)
1811 DBG("%s hardblocked", get_name(technology->type));
1813 DBG("%s is%s softblocked", get_name(technology->type),
1814 technology->softblocked ? "" : " not");
1819 int __connman_technology_remove_rfkill(unsigned int index,
1820 enum connman_service_type type)
1822 struct connman_technology *technology;
1823 struct connman_rfkill *rfkill;
1825 DBG("index %u", index);
1827 rfkill = g_hash_table_lookup(rfkill_list, GINT_TO_POINTER(index));
1831 g_hash_table_remove(rfkill_list, GINT_TO_POINTER(index));
1833 technology = technology_find(type);
1837 technology_apply_rfkill_change(technology,
1838 technology->softblocked, !technology->hardblocked, false);
1840 technology_put(technology);
1845 int __connman_technology_init(void)
1849 connection = connman_dbus_get_connection();
1851 rfkill_list = g_hash_table_new_full(g_direct_hash, g_direct_equal,
1854 global_offlinemode = connman_technology_load_offlinemode();
1856 /* This will create settings file if it is missing */
1857 connman_technology_save_offlinemode();
1862 void __connman_technology_cleanup(void)
1866 g_hash_table_destroy(rfkill_list);
1868 dbus_connection_unref(connection);