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 int technology_enabled(struct connman_technology *technology);
89 static int technology_disabled(struct connman_technology *technology);
91 static gint compare_priority(gconstpointer a, gconstpointer b)
93 const struct connman_technology_driver *driver1 = a;
94 const struct connman_technology_driver *driver2 = b;
96 return driver2->priority - driver1->priority;
99 static void rfkill_check(gpointer key, gpointer value, gpointer user_data)
101 struct connman_rfkill *rfkill = value;
102 enum connman_service_type type = GPOINTER_TO_INT(user_data);
104 /* Calling _technology_rfkill_add will update the tech. */
105 if (rfkill->type == type)
106 __connman_technology_add_rfkill(rfkill->index, type,
107 rfkill->softblock, rfkill->hardblock);
111 connman_technology_is_tethering_allowed(enum connman_service_type type)
113 static char *allowed_default[] = { "wifi", "bluetooth", "gadget",
115 const char *type_str = __connman_service_type2string(type);
122 allowed = connman_setting_get_string_list("TetheringTechnologies");
124 allowed = allowed_default;
126 for (i = 0; allowed[i]; i++) {
127 if (g_strcmp0(allowed[i], type_str) == 0)
134 static const char *get_name(enum connman_service_type type)
137 case CONNMAN_SERVICE_TYPE_UNKNOWN:
138 case CONNMAN_SERVICE_TYPE_SYSTEM:
139 case CONNMAN_SERVICE_TYPE_GPS:
140 case CONNMAN_SERVICE_TYPE_VPN:
142 case CONNMAN_SERVICE_TYPE_GADGET:
144 case CONNMAN_SERVICE_TYPE_ETHERNET:
146 case CONNMAN_SERVICE_TYPE_WIFI:
148 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
150 case CONNMAN_SERVICE_TYPE_CELLULAR:
152 case CONNMAN_SERVICE_TYPE_P2P:
159 static void technology_save(struct connman_technology *technology)
163 const char *name = get_name(technology->type);
165 DBG("technology %p type %d name %s", technology, technology->type,
170 keyfile = __connman_storage_load_global();
172 keyfile = g_key_file_new();
174 identifier = g_strdup_printf("%s", name);
178 g_key_file_set_boolean(keyfile, identifier, "Enable",
179 technology->enable_persistent);
181 g_key_file_set_boolean(keyfile, identifier, "Tethering",
182 technology->tethering_persistent);
184 g_key_file_set_boolean(keyfile, identifier, "Hidden",
185 technology->tethering_hidden);
187 if (technology->tethering_ident)
188 g_key_file_set_string(keyfile, identifier,
189 "Tethering.Identifier",
190 technology->tethering_ident);
192 if (technology->tethering_passphrase)
193 g_key_file_set_string(keyfile, identifier,
194 "Tethering.Passphrase",
195 technology->tethering_passphrase);
200 __connman_storage_save_global(keyfile);
202 g_key_file_free(keyfile);
207 static void tethering_changed(struct connman_technology *technology)
209 dbus_bool_t tethering = technology->tethering;
211 connman_dbus_property_changed_basic(technology->path,
212 CONNMAN_TECHNOLOGY_INTERFACE, "Tethering",
213 DBUS_TYPE_BOOLEAN, &tethering);
215 technology_save(technology);
218 void connman_technology_tethering_notify(struct connman_technology *technology,
221 DBG("technology %p enabled %u", technology, enabled);
223 if (technology->tethering == enabled)
226 technology->tethering = enabled;
228 tethering_changed(technology);
231 __connman_tethering_set_enabled();
233 __connman_tethering_set_disabled();
236 static int set_tethering(struct connman_technology *technology,
239 int result = -EOPNOTSUPP;
241 const char *ident, *passphrase, *bridge;
242 GSList *tech_drivers;
245 ident = technology->tethering_ident;
246 passphrase = technology->tethering_passphrase;
247 hidden = technology->tethering_hidden;
249 __sync_synchronize();
250 if (!technology->enabled)
253 bridge = __connman_tethering_get_bridge();
257 if (technology->type == CONNMAN_SERVICE_TYPE_WIFI && (!ident))
260 for (tech_drivers = technology->driver_list; tech_drivers;
261 tech_drivers = g_slist_next(tech_drivers)) {
262 struct connman_technology_driver *driver = tech_drivers->data;
264 if (!driver || !driver->set_tethering)
267 err = driver->set_tethering(technology, ident, passphrase,
268 bridge, enabled, hidden);
270 if (result == -EINPROGRESS)
273 if (err == -EINPROGRESS || err == 0) {
282 void connman_technology_regdom_notify(struct connman_technology *technology,
288 connman_error("Failed to set regulatory domain");
290 DBG("Regulatory domain set to %s", alpha2);
292 g_free(technology->regdom);
293 technology->regdom = g_strdup(alpha2);
296 static int set_regdom_by_device(struct connman_technology *technology,
301 for (list = technology->device_list; list; list = list->next) {
302 struct connman_device *device = list->data;
304 if (connman_device_set_regdom(device, alpha2) != 0)
311 int connman_technology_set_regdom(const char *alpha2)
313 GSList *list, *tech_drivers;
315 for (list = technology_list; list; list = list->next) {
316 struct connman_technology *technology = list->data;
318 if (set_regdom_by_device(technology, alpha2) != 0) {
320 for (tech_drivers = technology->driver_list;
322 tech_drivers = g_slist_next(tech_drivers)) {
324 struct connman_technology_driver *driver =
327 if (driver->set_regdom)
328 driver->set_regdom(technology, alpha2);
336 static struct connman_technology *technology_find(enum connman_service_type type)
340 DBG("type %d", type);
342 for (list = technology_list; list; list = list->next) {
343 struct connman_technology *technology = list->data;
345 if (technology->type == type)
352 bool connman_technology_get_wifi_tethering(const char **ssid,
355 struct connman_technology *technology;
362 technology = technology_find(CONNMAN_SERVICE_TYPE_WIFI);
366 if (!technology->tethering)
369 *ssid = technology->tethering_ident;
370 *psk = technology->tethering_passphrase;
375 static void free_rfkill(gpointer data)
377 struct connman_rfkill *rfkill = data;
382 static void technology_load(struct connman_technology *technology)
386 GError *error = NULL;
387 bool enable, need_saving = false;
389 DBG("technology %p", technology);
391 keyfile = __connman_storage_load_global();
392 /* Fallback on disabling technology if file not found. */
394 if (technology->type == CONNMAN_SERVICE_TYPE_ETHERNET)
395 /* We enable ethernet by default */
396 technology->enable_persistent = true;
398 technology->enable_persistent = false;
402 identifier = g_strdup_printf("%s", get_name(technology->type));
406 enable = g_key_file_get_boolean(keyfile, identifier, "Enable", &error);
408 technology->enable_persistent = enable;
410 if (technology->type == CONNMAN_SERVICE_TYPE_ETHERNET)
411 technology->enable_persistent = true;
413 technology->enable_persistent = false;
416 g_clear_error(&error);
419 enable = g_key_file_get_boolean(keyfile, identifier,
420 "Tethering", &error);
422 technology->tethering_persistent = enable;
425 g_clear_error(&error);
429 technology_save(technology);
431 technology->tethering_ident = g_key_file_get_string(keyfile,
432 identifier, "Tethering.Identifier", NULL);
434 technology->tethering_passphrase = g_key_file_get_string(keyfile,
435 identifier, "Tethering.Passphrase", NULL);
439 g_key_file_free(keyfile);
444 bool __connman_technology_get_offlinemode(void)
446 return global_offlinemode;
449 static void connman_technology_save_offlinemode(void)
453 keyfile = __connman_storage_load_global();
455 keyfile = g_key_file_new();
457 g_key_file_set_boolean(keyfile, "global",
458 "OfflineMode", global_offlinemode);
460 __connman_storage_save_global(keyfile);
462 g_key_file_free(keyfile);
467 static bool connman_technology_load_offlinemode(void)
470 GError *error = NULL;
473 /* If there is a error, we enable offlinemode */
474 keyfile = __connman_storage_load_global();
478 offlinemode = g_key_file_get_boolean(keyfile, "global",
479 "OfflineMode", &error);
482 g_clear_error(&error);
485 g_key_file_free(keyfile);
490 static void append_properties(DBusMessageIter *iter,
491 struct connman_technology *technology)
493 DBusMessageIter dict;
497 connman_dbus_dict_open(iter, &dict);
499 str = get_name(technology->type);
501 connman_dbus_dict_append_basic(&dict, "Name",
502 DBUS_TYPE_STRING, &str);
504 str = __connman_service_type2string(technology->type);
506 connman_dbus_dict_append_basic(&dict, "Type",
507 DBUS_TYPE_STRING, &str);
509 __sync_synchronize();
510 val = technology->enabled;
511 connman_dbus_dict_append_basic(&dict, "Powered",
515 val = technology->connected;
516 connman_dbus_dict_append_basic(&dict, "Connected",
520 val = technology->tethering;
521 connman_dbus_dict_append_basic(&dict, "Tethering",
525 if (technology->tethering_ident)
526 connman_dbus_dict_append_basic(&dict, "TetheringIdentifier",
528 &technology->tethering_ident);
530 if (technology->tethering_passphrase)
531 connman_dbus_dict_append_basic(&dict, "TetheringPassphrase",
533 &technology->tethering_passphrase);
535 val = technology->tethering_hidden;
536 connman_dbus_dict_append_basic(&dict, "Hidden",
540 connman_dbus_dict_close(iter, &dict);
543 static void technology_added_signal(struct connman_technology *technology)
546 DBusMessageIter iter;
548 signal = dbus_message_new_signal(CONNMAN_MANAGER_PATH,
549 CONNMAN_MANAGER_INTERFACE, "TechnologyAdded");
553 dbus_message_iter_init_append(signal, &iter);
554 dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
556 append_properties(&iter, technology);
558 dbus_connection_send(connection, signal, NULL);
559 dbus_message_unref(signal);
562 static void technology_removed_signal(struct connman_technology *technology)
564 g_dbus_emit_signal(connection, CONNMAN_MANAGER_PATH,
565 CONNMAN_MANAGER_INTERFACE, "TechnologyRemoved",
566 DBUS_TYPE_OBJECT_PATH, &technology->path,
570 static DBusMessage *get_properties(DBusConnection *conn,
571 DBusMessage *message, void *user_data)
573 struct connman_technology *technology = user_data;
575 DBusMessageIter iter;
577 reply = dbus_message_new_method_return(message);
581 dbus_message_iter_init_append(reply, &iter);
582 append_properties(&iter, technology);
587 void __connman_technology_list_struct(DBusMessageIter *array)
590 DBusMessageIter entry;
592 for (list = technology_list; list; list = list->next) {
593 struct connman_technology *technology = list->data;
595 if (!technology->path ||
596 (technology->rfkill_driven &&
597 technology->hardblocked))
600 dbus_message_iter_open_container(array, DBUS_TYPE_STRUCT,
602 dbus_message_iter_append_basic(&entry, DBUS_TYPE_OBJECT_PATH,
604 append_properties(&entry, technology);
605 dbus_message_iter_close_container(array, &entry);
609 static gboolean technology_pending_reply(gpointer user_data)
611 struct connman_technology *technology = user_data;
614 /* Power request timedout, send ETIMEDOUT. */
615 if (technology->pending_reply) {
616 reply = __connman_error_failed(technology->pending_reply, ETIMEDOUT);
618 g_dbus_send_message(connection, reply);
620 dbus_message_unref(technology->pending_reply);
621 technology->pending_reply = NULL;
622 technology->pending_timeout = 0;
628 static int technology_affect_devices(struct connman_technology *technology,
631 int err = 0, err_dev;
634 if (technology->type == CONNMAN_SERVICE_TYPE_P2P) {
636 __connman_technology_enabled(technology->type);
638 __connman_technology_disabled(technology->type);
642 for (list = technology->device_list; list; list = list->next) {
643 struct connman_device *device = list->data;
646 err_dev = __connman_device_enable(device);
648 err_dev = __connman_device_disable(device);
650 if (err_dev < 0 && err_dev != -EALREADY)
657 static void powered_changed(struct connman_technology *technology)
661 if (!technology->dbus_registered)
664 if (technology->pending_reply) {
665 g_dbus_send_reply(connection,
666 technology->pending_reply, DBUS_TYPE_INVALID);
667 dbus_message_unref(technology->pending_reply);
668 technology->pending_reply = NULL;
670 g_source_remove(technology->pending_timeout);
671 technology->pending_timeout = 0;
674 __sync_synchronize();
675 enabled = technology->enabled;
676 connman_dbus_property_changed_basic(technology->path,
677 CONNMAN_TECHNOLOGY_INTERFACE, "Powered",
678 DBUS_TYPE_BOOLEAN, &enabled);
681 static void enable_tethering(struct connman_technology *technology)
685 if (!connman_setting_get_bool("PersistentTetheringMode"))
688 ret = set_tethering(technology, true);
689 if (ret < 0 && ret != -EALREADY)
690 DBG("Cannot enable tethering yet for %s (%d/%s)",
691 get_name(technology->type),
692 -ret, strerror(-ret));
695 static int technology_enabled(struct connman_technology *technology)
697 __sync_synchronize();
698 if (technology->enabled)
701 technology->enabled = true;
703 if (technology->type == CONNMAN_SERVICE_TYPE_WIFI) {
704 struct connman_technology *p2p;
706 p2p = technology_find(CONNMAN_SERVICE_TYPE_P2P);
707 if (p2p && !p2p->enabled && p2p->enable_persistent)
708 technology_enabled(p2p);
711 if (technology->tethering_persistent)
712 enable_tethering(technology);
714 powered_changed(technology);
719 static int technology_enable(struct connman_technology *technology)
724 DBG("technology %p enable", technology);
726 __sync_synchronize();
728 if (technology->type == CONNMAN_SERVICE_TYPE_P2P) {
729 struct connman_technology *wifi;
731 wifi = technology_find(CONNMAN_SERVICE_TYPE_WIFI);
732 if (wifi && wifi->enabled)
733 return technology_enabled(technology);
737 if (technology->enabled)
740 if (technology->pending_reply)
743 if (connman_setting_get_bool("PersistentTetheringMode") &&
744 technology->tethering)
745 set_tethering(technology, true);
747 if (technology->rfkill_driven)
748 err = __connman_rfkill_block(technology->type, false);
750 err_dev = technology_affect_devices(technology, true);
752 if (!technology->rfkill_driven)
758 static int technology_disabled(struct connman_technology *technology)
760 __sync_synchronize();
761 if (!technology->enabled)
764 technology->enabled = false;
766 powered_changed(technology);
771 static int technology_disable(struct connman_technology *technology)
775 DBG("technology %p disable", technology);
777 __sync_synchronize();
779 if (technology->type == CONNMAN_SERVICE_TYPE_P2P) {
780 technology->enable_persistent = false;
781 return technology_disabled(technology);
782 } else if (technology->type == CONNMAN_SERVICE_TYPE_WIFI) {
783 struct connman_technology *p2p;
785 p2p = technology_find(CONNMAN_SERVICE_TYPE_P2P);
786 if (p2p && p2p->enabled) {
787 p2p->enable_persistent = true;
788 technology_disabled(p2p);
792 if (!technology->enabled)
795 if (technology->pending_reply)
798 if (technology->tethering)
799 set_tethering(technology, false);
801 err = technology_affect_devices(technology, false);
803 if (technology->rfkill_driven)
804 err = __connman_rfkill_block(technology->type, true);
809 static DBusMessage *set_powered(struct connman_technology *technology,
810 DBusMessage *msg, bool powered)
812 DBusMessage *reply = NULL;
815 if (technology->rfkill_driven && technology->hardblocked) {
821 err = technology_enable(technology);
823 err = technology_disable(technology);
826 technology->enable_persistent = powered;
827 technology_save(technology);
831 if (err == -EINPROGRESS) {
832 technology->pending_reply = dbus_message_ref(msg);
833 technology->pending_timeout = g_timeout_add_seconds(10,
834 technology_pending_reply, technology);
835 } else if (err == -EALREADY) {
837 reply = __connman_error_already_enabled(msg);
839 reply = __connman_error_already_disabled(msg);
841 reply = __connman_error_failed(msg, -err);
843 reply = g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
848 static DBusMessage *set_property(DBusConnection *conn,
849 DBusMessage *msg, void *data)
851 struct connman_technology *technology = data;
852 DBusMessageIter iter, value;
856 DBG("conn %p", conn);
858 if (!dbus_message_iter_init(msg, &iter))
859 return __connman_error_invalid_arguments(msg);
861 if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_STRING)
862 return __connman_error_invalid_arguments(msg);
864 dbus_message_iter_get_basic(&iter, &name);
865 dbus_message_iter_next(&iter);
867 if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_VARIANT)
868 return __connman_error_invalid_arguments(msg);
870 dbus_message_iter_recurse(&iter, &value);
872 type = dbus_message_iter_get_arg_type(&value);
874 DBG("property %s", name);
876 if (technology->type == CONNMAN_SERVICE_TYPE_WIFI && technology->connected) {
878 if (connman_dbus_get_connection_unix_user_sync(conn,
879 dbus_message_get_sender(msg),
881 DBG("Can not get unix user id!");
882 return __connman_error_permission_denied(msg);
885 if (!__connman_service_is_user_allowed(CONNMAN_SERVICE_TYPE_WIFI, uid)) {
886 DBG("Not allow this user to operate wifi technology now!");
887 return __connman_error_permission_denied(msg);
891 if (g_str_equal(name, "Tethering")) {
892 dbus_bool_t tethering;
895 if (type != DBUS_TYPE_BOOLEAN)
896 return __connman_error_invalid_arguments(msg);
898 if (!connman_technology_is_tethering_allowed(technology->type)) {
899 DBG("%s tethering not allowed by config file",
900 __connman_service_type2string(technology->type));
901 return __connman_error_not_supported(msg);
904 dbus_message_iter_get_basic(&value, &tethering);
906 if (technology->tethering == tethering) {
908 return __connman_error_already_disabled(msg);
910 return __connman_error_already_enabled(msg);
913 err = set_tethering(technology, tethering);
915 return __connman_error_failed(msg, -err);
917 technology->tethering_persistent = tethering;
919 technology_save(technology);
921 } else if (g_str_equal(name, "TetheringIdentifier")) {
924 dbus_message_iter_get_basic(&value, &str);
926 if (technology->type != CONNMAN_SERVICE_TYPE_WIFI)
927 return __connman_error_not_supported(msg);
929 if (strlen(str) < 1 || strlen(str) > 32)
930 return __connman_error_invalid_arguments(msg);
932 if (g_strcmp0(technology->tethering_ident, str) != 0) {
933 g_free(technology->tethering_ident);
934 technology->tethering_ident = g_strdup(str);
935 technology_save(technology);
937 connman_dbus_property_changed_basic(technology->path,
938 CONNMAN_TECHNOLOGY_INTERFACE,
939 "TetheringIdentifier",
941 &technology->tethering_ident);
943 } else if (g_str_equal(name, "TetheringPassphrase")) {
946 dbus_message_iter_get_basic(&value, &str);
948 if (technology->type != CONNMAN_SERVICE_TYPE_WIFI)
949 return __connman_error_not_supported(msg);
951 if (strlen(str) < 8 || strlen(str) > 63) {
952 if (g_str_equal(str, "")) {
953 technology->tethering_passphrase = NULL;
955 connman_dbus_property_changed_basic(technology->path,
956 CONNMAN_TECHNOLOGY_INTERFACE,
957 "TetheringPassphrase",
962 return __connman_error_passphrase_required(msg);
964 if (g_strcmp0(technology->tethering_passphrase, str) != 0) {
965 g_free(technology->tethering_passphrase);
966 technology->tethering_passphrase = g_strdup(str);
967 technology_save(technology);
969 connman_dbus_property_changed_basic(technology->path,
970 CONNMAN_TECHNOLOGY_INTERFACE,
971 "TetheringPassphrase",
973 &technology->tethering_passphrase);
976 } else if (g_str_equal(name, "Hidden")) {
979 if (type != DBUS_TYPE_BOOLEAN)
980 return __connman_error_invalid_arguments(msg);
982 dbus_message_iter_get_basic(&value, &hidden);
984 if (technology->type != CONNMAN_SERVICE_TYPE_WIFI)
985 return __connman_error_not_supported(msg);
987 technology->tethering_hidden = hidden;
988 technology_save(technology);
990 connman_dbus_property_changed_basic(technology->path,
991 CONNMAN_TECHNOLOGY_INTERFACE,
995 } else if (g_str_equal(name, "Powered")) {
998 if (type != DBUS_TYPE_BOOLEAN)
999 return __connman_error_invalid_arguments(msg);
1001 dbus_message_iter_get_basic(&value, &enable);
1003 return set_powered(technology, msg, enable);
1005 return __connman_error_invalid_property(msg);
1007 return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
1010 static void reply_scan_pending(struct connman_technology *technology, int err)
1014 DBG("technology %p err %d", technology, err);
1016 while (technology->scan_pending) {
1017 DBusMessage *msg = technology->scan_pending->data;
1019 DBG("reply to %s", dbus_message_get_sender(msg));
1022 reply = g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
1024 reply = __connman_error_failed(msg, -err);
1025 g_dbus_send_message(connection, reply);
1026 dbus_message_unref(msg);
1028 technology->scan_pending =
1029 g_slist_delete_link(technology->scan_pending,
1030 technology->scan_pending);
1034 #if defined TIZEN_EXT
1035 dbus_bool_t __connman_technology_notify_scan_changed(const char *key, void *val)
1038 DBusMessage *signal;
1039 DBusMessageIter iter;
1040 dbus_bool_t result = FALSE;
1042 signal = dbus_message_new_signal(CONNMAN_MANAGER_PATH,
1043 CONNMAN_MANAGER_INTERFACE, "ScanChanged");
1047 dbus_message_iter_init_append(signal, &iter);
1048 connman_dbus_property_append_basic(&iter, key, DBUS_TYPE_BOOLEAN, val);
1050 result = dbus_connection_send(connection, signal, NULL);
1051 dbus_message_unref(signal);
1053 DBG("Successfuly sent signal");
1059 void __connman_technology_scan_started(struct connman_device *device)
1061 DBG("device %p", device);
1062 #if defined TIZEN_EXT
1063 dbus_bool_t status = 1;
1064 __connman_technology_notify_scan_changed("scan_started", &status);
1068 void __connman_technology_scan_stopped(struct connman_device *device,
1069 enum connman_service_type type)
1072 struct connman_technology *technology;
1075 technology = technology_find(type);
1077 DBG("technology %p device %p", technology, device);
1082 for (list = technology->device_list; list; list = list->next) {
1083 struct connman_device *other_device = list->data;
1085 if (device == other_device)
1088 if (__connman_device_get_service_type(other_device) != type)
1091 if (connman_device_get_scanning(other_device))
1095 #if defined TIZEN_EXT
1097 DBusMessage *signal;
1098 dbus_bool_t status = 0;
1099 __connman_technology_notify_scan_changed("scan_done", &status);
1101 signal = dbus_message_new_signal(CONNMAN_MANAGER_PATH,
1102 CONNMAN_MANAGER_INTERFACE, "ScanDone");
1106 dbus_connection_send(connection, signal, NULL);
1107 dbus_message_unref(signal);
1108 reply_scan_pending(technology, 0);
1112 reply_scan_pending(technology, 0);
1116 void __connman_technology_notify_regdom_by_device(struct connman_device *device,
1117 int result, const char *alpha2)
1119 bool regdom_set = false;
1120 struct connman_technology *technology;
1121 enum connman_service_type type;
1122 GSList *tech_drivers;
1124 type = __connman_device_get_service_type(device);
1125 technology = technology_find(type);
1132 for (tech_drivers = technology->driver_list;
1134 tech_drivers = g_slist_next(tech_drivers)) {
1135 struct connman_technology_driver *driver =
1138 if (driver->set_regdom) {
1139 driver->set_regdom(technology, alpha2);
1149 connman_technology_regdom_notify(technology, alpha2);
1152 static DBusMessage *scan(DBusConnection *conn, DBusMessage *msg, void *data)
1154 struct connman_technology *technology = data;
1157 DBG("technology %p request from %s", technology,
1158 dbus_message_get_sender(msg));
1160 dbus_message_ref(msg);
1161 technology->scan_pending =
1162 g_slist_prepend(technology->scan_pending, msg);
1164 err = __connman_device_request_scan(technology->type);
1166 reply_scan_pending(technology, err);
1171 #if defined TIZEN_EXT
1172 static DBusMessage *get_scan_state(DBusConnection *conn, DBusMessage *msg, void *data)
1175 DBusMessageIter iter, dict;
1177 struct connman_technology *technology = data;
1178 dbus_bool_t scanning = false;
1180 DBG("technology %p", technology);
1182 for (list = technology->device_list; list; list = list->next) {
1183 struct connman_device *device = list->data;
1184 scanning = connman_device_get_scanning(device);
1189 DBG("scanning : %d", scanning);
1190 reply = dbus_message_new_method_return(msg);
1194 dbus_message_iter_init_append(reply, &iter);
1196 connman_dbus_dict_open(&iter, &dict);
1197 connman_dbus_dict_append_basic(&dict, "Scanstate",
1201 connman_dbus_dict_close(&iter, &dict);
1207 static const GDBusMethodTable technology_methods[] = {
1208 { GDBUS_DEPRECATED_METHOD("GetProperties",
1209 NULL, GDBUS_ARGS({ "properties", "a{sv}" }),
1211 { GDBUS_ASYNC_METHOD("SetProperty",
1212 GDBUS_ARGS({ "name", "s" }, { "value", "v" }),
1213 NULL, set_property) },
1214 { GDBUS_ASYNC_METHOD("Scan", NULL, NULL, scan) },
1215 #if defined TIZEN_EXT
1216 { GDBUS_METHOD("GetScanState", NULL, GDBUS_ARGS({ "scan_state", "a{sv}" }),
1222 static const GDBusSignalTable technology_signals[] = {
1223 { GDBUS_SIGNAL("PropertyChanged",
1224 GDBUS_ARGS({ "name", "s" }, { "value", "v" })) },
1225 { GDBUS_SIGNAL("DhcpConnected",
1226 GDBUS_ARGS({ "aptype", "s" },
1229 { "hostname", "s" })) },
1230 { GDBUS_SIGNAL("DhcpLeaseDeleted",
1231 GDBUS_ARGS({ "aptype", "s" },
1234 { "hostname", "s" })) },
1238 static bool technology_dbus_register(struct connman_technology *technology)
1240 if (technology->dbus_registered ||
1241 (technology->rfkill_driven &&
1242 technology->hardblocked))
1245 if (!g_dbus_register_interface(connection, technology->path,
1246 CONNMAN_TECHNOLOGY_INTERFACE,
1247 technology_methods, technology_signals,
1248 NULL, technology, NULL)) {
1249 connman_error("Failed to register %s", technology->path);
1253 technology_added_signal(technology);
1254 technology->dbus_registered = true;
1259 static void technology_dbus_unregister(struct connman_technology *technology)
1261 if (!technology->dbus_registered)
1264 technology_removed_signal(technology);
1265 g_dbus_unregister_interface(connection, technology->path,
1266 CONNMAN_TECHNOLOGY_INTERFACE);
1268 technology->dbus_registered = false;
1271 static void technology_put(struct connman_technology *technology)
1273 DBG("technology %p", technology);
1275 if (__sync_sub_and_fetch(&technology->refcount, 1) > 0)
1278 reply_scan_pending(technology, -EINTR);
1280 while (technology->driver_list) {
1281 struct connman_technology_driver *driver;
1283 driver = technology->driver_list->data;
1286 driver->remove(technology);
1288 technology->driver_list =
1289 g_slist_delete_link(technology->driver_list,
1290 technology->driver_list);
1293 technology_list = g_slist_remove(technology_list, technology);
1295 technology_dbus_unregister(technology);
1297 g_slist_free(technology->device_list);
1299 g_free(technology->path);
1300 g_free(technology->regdom);
1301 g_free(technology->tethering_ident);
1302 g_free(technology->tethering_passphrase);
1306 static struct connman_technology *technology_get(enum connman_service_type type)
1308 GSList *tech_drivers = NULL;
1309 struct connman_technology_driver *driver;
1310 struct connman_technology *technology;
1314 DBG("type %d", type);
1316 str = __connman_service_type2string(type);
1320 technology = technology_find(type);
1322 if (type != CONNMAN_SERVICE_TYPE_P2P)
1323 __sync_fetch_and_add(&technology->refcount, 1);
1327 /* First check if we have a driver for this technology type */
1328 for (list = driver_list; list; list = list->next) {
1329 driver = list->data;
1331 if (driver->type == type) {
1332 DBG("technology %p driver %p", technology, driver);
1333 tech_drivers = g_slist_append(tech_drivers, driver);
1337 if (!tech_drivers) {
1338 DBG("No matching drivers found for %s.",
1339 __connman_service_type2string(type));
1343 technology = g_try_new0(struct connman_technology, 1);
1347 technology->refcount = 1;
1348 technology->type = type;
1349 technology->tethering_hidden = FALSE;
1350 technology->path = g_strdup_printf("%s/technology/%s",
1353 technology_load(technology);
1354 technology_list = g_slist_prepend(technology_list, technology);
1355 technology->driver_list = tech_drivers;
1357 for (list = tech_drivers; list; list = list->next) {
1358 driver = list->data;
1360 if (driver->probe && driver->probe(technology) < 0)
1361 DBG("Driver probe failed for technology %p",
1365 if (!technology_dbus_register(technology)) {
1366 technology_put(technology);
1370 if (type == CONNMAN_SERVICE_TYPE_P2P) {
1371 struct connman_technology *wifi;
1374 enable = technology->enable_persistent;
1376 wifi = technology_find(CONNMAN_SERVICE_TYPE_WIFI);
1378 enable = wifi->enabled;
1380 technology_affect_devices(technology, enable);
1383 DBG("technology %p %s", technology, get_name(technology->type));
1388 int connman_technology_driver_register(struct connman_technology_driver *driver)
1391 struct connman_device *device;
1392 enum connman_service_type type;
1394 for (list = driver_list; list; list = list->next) {
1395 if (list->data == driver)
1399 DBG("Registering %s driver", driver->name);
1401 driver_list = g_slist_insert_sorted(driver_list, driver,
1405 * Check for technology less devices if this driver
1406 * can service any of them.
1408 for (list = techless_device_list; list; list = list->next) {
1409 device = list->data;
1411 type = __connman_device_get_service_type(device);
1412 if (type != driver->type)
1415 techless_device_list = g_slist_remove(techless_device_list,
1418 __connman_technology_add_device(device);
1421 /* Check for orphaned rfkill switches. */
1422 g_hash_table_foreach(rfkill_list, rfkill_check,
1423 GINT_TO_POINTER(driver->type));
1426 if (driver->type == CONNMAN_SERVICE_TYPE_P2P) {
1427 if (!technology_get(CONNMAN_SERVICE_TYPE_P2P))
1434 void connman_technology_driver_unregister(struct connman_technology_driver *driver)
1436 GSList *list, *tech_drivers;
1437 struct connman_technology *technology;
1438 struct connman_technology_driver *current;
1440 DBG("Unregistering driver %p name %s", driver, driver->name);
1442 for (list = technology_list; list; list = list->next) {
1443 technology = list->data;
1445 for (tech_drivers = technology->driver_list; tech_drivers;
1446 tech_drivers = g_slist_next(tech_drivers)) {
1447 current = tech_drivers->data;
1448 if (driver != current)
1452 driver->remove(technology);
1454 technology->driver_list =
1455 g_slist_remove(technology->driver_list,
1461 driver_list = g_slist_remove(driver_list, driver);
1463 if (driver->type == CONNMAN_SERVICE_TYPE_P2P) {
1464 technology = technology_find(CONNMAN_SERVICE_TYPE_P2P);
1466 technology_put(technology);
1470 void __connman_technology_add_interface(enum connman_service_type type,
1471 int index, const char *ident)
1473 struct connman_technology *technology;
1474 GSList *tech_drivers;
1475 struct connman_technology_driver *driver;
1479 case CONNMAN_SERVICE_TYPE_UNKNOWN:
1480 case CONNMAN_SERVICE_TYPE_SYSTEM:
1482 case CONNMAN_SERVICE_TYPE_ETHERNET:
1483 case CONNMAN_SERVICE_TYPE_WIFI:
1484 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
1485 case CONNMAN_SERVICE_TYPE_CELLULAR:
1486 case CONNMAN_SERVICE_TYPE_GPS:
1487 case CONNMAN_SERVICE_TYPE_VPN:
1488 case CONNMAN_SERVICE_TYPE_GADGET:
1489 case CONNMAN_SERVICE_TYPE_P2P:
1493 name = connman_inet_ifname(index);
1494 connman_info("Adding interface %s [ %s ]", name,
1495 __connman_service_type2string(type));
1497 technology = technology_find(type);
1502 for (tech_drivers = technology->driver_list; tech_drivers;
1503 tech_drivers = g_slist_next(tech_drivers)) {
1504 driver = tech_drivers->data;
1506 if (driver->add_interface)
1507 driver->add_interface(technology, index, name, ident);
1511 * At this point we can try to enable tethering automatically as
1512 * now the interfaces are set properly.
1514 if (technology->tethering_persistent)
1515 enable_tethering(technology);
1521 void __connman_technology_remove_interface(enum connman_service_type type,
1522 int index, const char *ident)
1524 struct connman_technology *technology;
1525 GSList *tech_drivers;
1526 struct connman_technology_driver *driver;
1530 case CONNMAN_SERVICE_TYPE_UNKNOWN:
1531 case CONNMAN_SERVICE_TYPE_SYSTEM:
1533 case CONNMAN_SERVICE_TYPE_ETHERNET:
1534 case CONNMAN_SERVICE_TYPE_WIFI:
1535 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
1536 case CONNMAN_SERVICE_TYPE_CELLULAR:
1537 case CONNMAN_SERVICE_TYPE_GPS:
1538 case CONNMAN_SERVICE_TYPE_VPN:
1539 case CONNMAN_SERVICE_TYPE_GADGET:
1540 case CONNMAN_SERVICE_TYPE_P2P:
1544 name = connman_inet_ifname(index);
1545 connman_info("Remove interface %s [ %s ]", name,
1546 __connman_service_type2string(type));
1549 technology = technology_find(type);
1554 for (tech_drivers = technology->driver_list; tech_drivers;
1555 tech_drivers = g_slist_next(tech_drivers)) {
1556 driver = tech_drivers->data;
1558 if (driver->remove_interface)
1559 driver->remove_interface(technology, index);
1563 int __connman_technology_add_device(struct connman_device *device)
1565 struct connman_technology *technology;
1566 enum connman_service_type type;
1568 type = __connman_device_get_service_type(device);
1570 DBG("device %p type %s", device, get_name(type));
1572 technology = technology_get(type);
1575 * Since no driver can be found for this device at the moment we
1576 * add it to the techless device list.
1578 techless_device_list = g_slist_prepend(techless_device_list,
1584 __sync_synchronize();
1585 if (technology->rfkill_driven) {
1586 if (technology->enabled)
1587 __connman_device_enable(device);
1589 __connman_device_disable(device);
1594 if (technology->enable_persistent &&
1595 !global_offlinemode) {
1596 int err = __connman_device_enable(device);
1598 * connman_technology_add_device() calls __connman_device_enable()
1599 * but since the device is already enabled, the calls does not
1600 * propagate through to connman_technology_enabled via
1601 * connman_device_set_powered.
1603 if (err == -EALREADY)
1604 __connman_technology_enabled(type);
1606 /* if technology persistent state is offline */
1607 if (!technology->enable_persistent)
1608 __connman_device_disable(device);
1611 technology->device_list = g_slist_prepend(technology->device_list,
1617 int __connman_technology_remove_device(struct connman_device *device)
1619 struct connman_technology *technology;
1620 enum connman_service_type type;
1622 DBG("device %p", device);
1624 type = __connman_device_get_service_type(device);
1626 technology = technology_find(type);
1628 techless_device_list = g_slist_remove(techless_device_list,
1633 technology->device_list = g_slist_remove(technology->device_list,
1636 if (technology->tethering)
1637 set_tethering(technology, false);
1639 technology_put(technology);
1644 int __connman_technology_enabled(enum connman_service_type type)
1646 struct connman_technology *technology;
1648 technology = technology_find(type);
1652 DBG("technology %p type %s rfkill %d enabled %d", technology,
1653 get_name(type), technology->rfkill_driven,
1654 technology->enabled);
1655 #if !defined TIZEN_EXT
1656 if (technology->rfkill_driven) {
1657 if (technology->tethering_persistent)
1658 enable_tethering(technology);
1663 return technology_enabled(technology);
1666 int __connman_technology_disabled(enum connman_service_type type)
1668 struct connman_technology *technology;
1671 technology = technology_find(type);
1674 #if !defined TIZEN_EXT
1675 if (technology->rfkill_driven)
1678 for (list = technology->device_list; list; list = list->next) {
1679 struct connman_device *device = list->data;
1681 if (connman_device_get_powered(device))
1685 return technology_disabled(technology);
1688 int __connman_technology_set_offlinemode(bool offlinemode)
1691 int err = -EINVAL, enabled_tech_count = 0;
1693 if (global_offlinemode == offlinemode)
1696 DBG("offlinemode %s", offlinemode ? "On" : "Off");
1699 * This is a bit tricky. When you set offlinemode, there is no
1700 * way to differentiate between attempting offline mode and
1701 * resuming offlinemode from last saved profile. We need that
1702 * information in rfkill_update, otherwise it falls back on the
1703 * technology's persistent state. Hence we set the offline mode here
1704 * but save it & call the notifier only if its successful.
1707 global_offlinemode = offlinemode;
1709 /* Traverse technology list, enable/disable each technology. */
1710 for (list = technology_list; list; list = list->next) {
1711 struct connman_technology *technology = list->data;
1714 err = technology_disable(technology);
1716 if (technology->hardblocked)
1719 if (technology->enable_persistent) {
1720 err = technology_enable(technology);
1721 enabled_tech_count++;
1726 if (err == 0 || err == -EINPROGRESS || err == -EALREADY ||
1727 (err == -EINVAL && enabled_tech_count == 0)) {
1728 connman_technology_save_offlinemode();
1729 __connman_notifier_offlinemode(offlinemode);
1731 global_offlinemode = connman_technology_load_offlinemode();
1736 void __connman_technology_set_connected(enum connman_service_type type,
1739 struct connman_technology *technology;
1742 technology = technology_find(type);
1746 DBG("technology %p connected %d", technology, connected);
1748 technology->connected = connected;
1751 connman_dbus_property_changed_basic(technology->path,
1752 CONNMAN_TECHNOLOGY_INTERFACE, "Connected",
1753 DBUS_TYPE_BOOLEAN, &val);
1756 static bool technology_apply_rfkill_change(struct connman_technology *technology,
1761 bool hardblock_changed = false;
1763 GList *start, *list;
1765 DBG("technology %p --> %d/%d vs %d/%d",
1766 technology, softblock, hardblock,
1767 technology->softblocked, technology->hardblocked);
1769 if (technology->hardblocked == hardblock)
1770 goto softblock_change;
1772 if (!(new_rfkill && !hardblock)) {
1773 start = g_hash_table_get_values(rfkill_list);
1775 for (list = start; list; list = list->next) {
1776 struct connman_rfkill *rfkill = list->data;
1778 if (rfkill->type != technology->type)
1781 if (rfkill->hardblock != hardblock)
1789 goto softblock_change;
1791 technology->hardblocked = hardblock;
1792 hardblock_changed = true;
1795 if (!apply && technology->softblocked != softblock)
1799 return technology->hardblocked;
1801 technology->softblocked = softblock;
1803 if (technology->hardblocked ||
1804 technology->softblocked) {
1805 if (technology_disabled(technology) != -EALREADY)
1806 technology_affect_devices(technology, false);
1807 } else if (!technology->hardblocked &&
1808 !technology->softblocked) {
1809 if (technology_enabled(technology) != -EALREADY)
1810 technology_affect_devices(technology, true);
1813 if (hardblock_changed) {
1814 if (technology->hardblocked) {
1815 DBG("%s is switched off.", get_name(technology->type));
1816 technology_dbus_unregister(technology);
1818 DBG("%s is switched on.", get_name(technology->type));
1819 technology_dbus_register(technology);
1821 if (global_offlinemode)
1822 __connman_rfkill_block(technology->type, true);
1826 return technology->hardblocked;
1829 int __connman_technology_add_rfkill(unsigned int index,
1830 enum connman_service_type type,
1834 struct connman_technology *technology;
1835 struct connman_rfkill *rfkill;
1837 DBG("index %u type %d soft %u hard %u", index, type,
1838 softblock, hardblock);
1840 rfkill = g_hash_table_lookup(rfkill_list, GINT_TO_POINTER(index));
1844 rfkill = g_try_new0(struct connman_rfkill, 1);
1848 rfkill->index = index;
1849 rfkill->type = type;
1850 rfkill->softblock = softblock;
1851 rfkill->hardblock = hardblock;
1853 g_hash_table_insert(rfkill_list, GINT_TO_POINTER(index), rfkill);
1856 technology = technology_get(type);
1857 /* If there is no driver for this type, ignore it. */
1861 technology->rfkill_driven = true;
1863 #if !defined TIZEN_EXT
1864 /* If hardblocked, there is no need to handle softblocked state */
1865 if (technology_apply_rfkill_change(technology,
1866 softblock, hardblock, true))
1869 if (global_offlinemode)
1873 * Depending on softblocked state we unblock/block according to
1874 * offlinemode and persistente state.
1876 if (technology->softblocked &&
1877 technology->enable_persistent)
1878 return __connman_rfkill_block(type, false);
1879 else if (!technology->softblocked &&
1880 !technology->enable_persistent)
1881 return __connman_rfkill_block(type, true);
1886 int __connman_technology_update_rfkill(unsigned int index,
1887 enum connman_service_type type,
1891 struct connman_technology *technology;
1892 struct connman_rfkill *rfkill;
1894 DBG("index %u soft %u hard %u", index, softblock, hardblock);
1896 rfkill = g_hash_table_lookup(rfkill_list, GINT_TO_POINTER(index));
1900 if (rfkill->softblock == softblock &&
1901 rfkill->hardblock == hardblock)
1904 rfkill->softblock = softblock;
1905 rfkill->hardblock = hardblock;
1907 technology = technology_find(type);
1908 /* If there is no driver for this type, ignore it. */
1912 technology_apply_rfkill_change(technology, softblock, hardblock,
1915 if (technology->hardblocked)
1916 DBG("%s hardblocked", get_name(technology->type));
1918 DBG("%s is%s softblocked", get_name(technology->type),
1919 technology->softblocked ? "" : " not");
1924 int __connman_technology_remove_rfkill(unsigned int index,
1925 enum connman_service_type type)
1927 struct connman_technology *technology;
1928 struct connman_rfkill *rfkill;
1930 DBG("index %u", index);
1932 rfkill = g_hash_table_lookup(rfkill_list, GINT_TO_POINTER(index));
1936 g_hash_table_remove(rfkill_list, GINT_TO_POINTER(index));
1938 technology = technology_find(type);
1942 technology_apply_rfkill_change(technology,
1943 technology->softblocked, !technology->hardblocked, false);
1945 technology_put(technology);
1950 int __connman_technology_init(void)
1954 connection = connman_dbus_get_connection();
1956 rfkill_list = g_hash_table_new_full(g_direct_hash, g_direct_equal,
1959 global_offlinemode = connman_technology_load_offlinemode();
1961 /* This will create settings file if it is missing */
1962 connman_technology_save_offlinemode();
1967 void __connman_technology_cleanup(void)
1971 while (technology_list) {
1972 struct connman_technology *technology = technology_list->data;
1973 technology_list = g_slist_remove(technology_list, technology);
1974 technology_put(technology);
1977 g_hash_table_destroy(rfkill_list);
1979 dbus_connection_unref(connection);