5 * Copyright (C) 2007-2010 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;
37 static connman_bool_t global_offlinemode;
39 struct connman_rfkill {
41 enum connman_service_type type;
42 connman_bool_t softblock;
43 connman_bool_t hardblock;
46 enum connman_technology_state {
47 CONNMAN_TECHNOLOGY_STATE_UNKNOWN = 0,
48 CONNMAN_TECHNOLOGY_STATE_OFFLINE = 1,
49 CONNMAN_TECHNOLOGY_STATE_ENABLED = 2,
50 CONNMAN_TECHNOLOGY_STATE_CONNECTED = 3,
53 struct connman_technology {
55 enum connman_service_type type;
56 enum connman_technology_state state;
58 GHashTable *rfkill_list;
63 connman_bool_t tethering;
64 char *tethering_ident;
65 char *tethering_passphrase;
67 connman_bool_t enable_persistent; /* Save the tech state */
69 struct connman_technology_driver *driver;
72 DBusMessage *pending_reply;
73 guint pending_timeout;
76 static GSList *driver_list = NULL;
78 static gint compare_priority(gconstpointer a, gconstpointer b)
80 const struct connman_technology_driver *driver1 = a;
81 const struct connman_technology_driver *driver2 = b;
83 return driver2->priority - driver1->priority;
87 * connman_technology_driver_register:
88 * @driver: Technology driver definition
90 * Register a new technology driver
92 * Returns: %0 on success
94 int connman_technology_driver_register(struct connman_technology_driver *driver)
97 struct connman_technology *technology;
99 DBG("driver %p name %s", driver, driver->name);
101 driver_list = g_slist_insert_sorted(driver_list, driver,
104 for (list = technology_list; list; list = list->next) {
105 technology = list->data;
107 if (technology->driver != NULL)
110 if (technology->type == driver->type)
111 technology->driver = driver;
118 * connman_technology_driver_unregister:
119 * @driver: Technology driver definition
121 * Remove a previously registered technology driver
123 void connman_technology_driver_unregister(struct connman_technology_driver *driver)
126 struct connman_technology *technology;
128 DBG("driver %p name %s", driver, driver->name);
130 for (list = technology_list; list; list = list->next) {
131 technology = list->data;
133 if (technology->driver == NULL)
136 if (technology->type == driver->type) {
137 technology->driver->remove(technology);
138 technology->driver = NULL;
142 driver_list = g_slist_remove(driver_list, driver);
145 static void tethering_changed(struct connman_technology *technology)
147 connman_bool_t tethering = technology->tethering;
149 connman_dbus_property_changed_basic(technology->path,
150 CONNMAN_TECHNOLOGY_INTERFACE, "Tethering",
151 DBUS_TYPE_BOOLEAN, &tethering);
154 void connman_technology_tethering_notify(struct connman_technology *technology,
155 connman_bool_t enabled)
159 DBG("technology %p enabled %u", technology, enabled);
161 if (technology->tethering == enabled)
164 technology->tethering = enabled;
166 tethering_changed(technology);
169 __connman_tethering_set_enabled();
171 for (list = technology_list; list; list = list->next) {
172 struct connman_technology *other_tech = list->data;
173 if (other_tech->tethering == TRUE)
177 __connman_tethering_set_disabled();
181 static int set_tethering(struct connman_technology *technology,
182 connman_bool_t enabled)
184 const char *ident, *passphrase, *bridge;
186 ident = technology->tethering_ident;
187 passphrase = technology->tethering_passphrase;
189 if (technology->driver == NULL ||
190 technology->driver->set_tethering == NULL)
193 bridge = __connman_tethering_get_bridge();
197 if (technology->type == CONNMAN_SERVICE_TYPE_WIFI &&
198 (ident == NULL || passphrase == NULL))
201 return technology->driver->set_tethering(technology, ident, passphrase,
205 void connman_technology_regdom_notify(struct connman_technology *technology,
211 connman_error("Failed to set regulatory domain");
213 DBG("Regulatory domain set to %s", alpha2);
215 g_free(technology->regdom);
216 technology->regdom = g_strdup(alpha2);
219 int connman_technology_set_regdom(const char *alpha2)
223 for (list = technology_list; list; list = list->next) {
224 struct connman_technology *technology = list->data;
226 if (technology->driver == NULL)
229 if (technology->driver->set_regdom)
230 technology->driver->set_regdom(technology, alpha2);
236 static void free_rfkill(gpointer data)
238 struct connman_rfkill *rfkill = data;
243 void __connman_technology_list(DBusMessageIter *iter, void *user_data)
247 for (list = technology_list; list; list = list->next) {
248 struct connman_technology *technology = list->data;
250 if (technology->path == NULL)
253 dbus_message_iter_append_basic(iter, DBUS_TYPE_OBJECT_PATH,
258 static void technologies_changed(void)
260 connman_dbus_property_changed_array(CONNMAN_MANAGER_PATH,
261 CONNMAN_MANAGER_INTERFACE, "Technologies",
262 DBUS_TYPE_OBJECT_PATH, __connman_technology_list, NULL);
265 static const char *state2string(enum connman_technology_state state)
268 case CONNMAN_TECHNOLOGY_STATE_UNKNOWN:
270 case CONNMAN_TECHNOLOGY_STATE_OFFLINE:
272 case CONNMAN_TECHNOLOGY_STATE_ENABLED:
274 case CONNMAN_TECHNOLOGY_STATE_CONNECTED:
281 static void state_changed(struct connman_technology *technology)
285 str = state2string(technology->state);
289 connman_dbus_property_changed_basic(technology->path,
290 CONNMAN_TECHNOLOGY_INTERFACE, "State",
291 DBUS_TYPE_STRING, &str);
294 static const char *get_name(enum connman_service_type type)
297 case CONNMAN_SERVICE_TYPE_UNKNOWN:
298 case CONNMAN_SERVICE_TYPE_SYSTEM:
299 case CONNMAN_SERVICE_TYPE_GPS:
300 case CONNMAN_SERVICE_TYPE_VPN:
301 case CONNMAN_SERVICE_TYPE_GADGET:
303 case CONNMAN_SERVICE_TYPE_ETHERNET:
305 case CONNMAN_SERVICE_TYPE_WIFI:
307 case CONNMAN_SERVICE_TYPE_WIMAX:
309 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
311 case CONNMAN_SERVICE_TYPE_CELLULAR:
318 static void load_state(struct connman_technology *technology)
322 GError *error = NULL;
323 connman_bool_t enable;
325 DBG("technology %p", technology);
327 keyfile = __connman_storage_load_global();
328 /* Fallback on disabling technology if file not found. */
329 if (keyfile == NULL) {
330 technology->enable_persistent = FALSE;
334 identifier = g_strdup_printf("%s", get_name(technology->type));
335 if (identifier == NULL)
338 enable = g_key_file_get_boolean(keyfile, identifier, "Enable", &error);
340 technology->enable_persistent = enable;
342 technology->enable_persistent = FALSE;
343 g_clear_error(&error);
348 g_key_file_free(keyfile);
353 static void save_state(struct connman_technology *technology)
358 DBG("technology %p", technology);
360 keyfile = __connman_storage_load_global();
362 keyfile = g_key_file_new();
364 identifier = g_strdup_printf("%s", get_name(technology->type));
365 if (identifier == NULL)
368 g_key_file_set_boolean(keyfile, identifier, "Enable",
369 technology->enable_persistent);
374 __connman_storage_save_global(keyfile);
376 g_key_file_free(keyfile);
381 connman_bool_t __connman_technology_get_offlinemode(void)
383 return global_offlinemode;
386 static void connman_technology_save_offlinemode()
390 keyfile = __connman_storage_load_global();
392 keyfile = g_key_file_new();
394 g_key_file_set_boolean(keyfile, "global",
395 "OfflineMode", global_offlinemode);
397 __connman_storage_save_global(keyfile);
399 g_key_file_free(keyfile);
404 static connman_bool_t connman_technology_load_offlinemode()
407 GError *error = NULL;
408 connman_bool_t offlinemode;
410 /* If there is a error, we enable offlinemode */
411 keyfile = __connman_storage_load_global();
415 offlinemode = g_key_file_get_boolean(keyfile, "global",
416 "OfflineMode", &error);
419 g_clear_error(&error);
422 g_key_file_free(keyfile);
427 static void append_properties(DBusMessageIter *iter,
428 struct connman_technology *technology)
430 DBusMessageIter dict;
433 connman_dbus_dict_open(iter, &dict);
435 str = state2string(technology->state);
437 connman_dbus_dict_append_basic(&dict, "State",
438 DBUS_TYPE_STRING, &str);
440 str = get_name(technology->type);
442 connman_dbus_dict_append_basic(&dict, "Name",
443 DBUS_TYPE_STRING, &str);
445 str = __connman_service_type2string(technology->type);
447 connman_dbus_dict_append_basic(&dict, "Type",
448 DBUS_TYPE_STRING, &str);
450 connman_dbus_dict_append_basic(&dict, "Tethering",
452 &technology->tethering);
454 if (technology->tethering_ident != NULL)
455 connman_dbus_dict_append_basic(&dict, "TetheringIdentifier",
457 &technology->tethering_ident);
459 if (technology->tethering_passphrase != NULL)
460 connman_dbus_dict_append_basic(&dict, "TetheringPassphrase",
462 &technology->tethering_passphrase);
464 connman_dbus_dict_close(iter, &dict);
467 static void technology_added_signal(struct connman_technology *technology)
470 DBusMessageIter iter;
472 signal = dbus_message_new_signal(CONNMAN_MANAGER_PATH,
473 CONNMAN_MANAGER_INTERFACE, "TechnologyAdded");
477 dbus_message_iter_init_append(signal, &iter);
478 append_properties(&iter, technology);
480 dbus_connection_send(connection, signal, NULL);
481 dbus_message_unref(signal);
484 static void technology_removed_signal(struct connman_technology *technology)
486 g_dbus_emit_signal(connection, CONNMAN_MANAGER_PATH,
487 CONNMAN_MANAGER_INTERFACE, "TechnologyRemoved",
488 DBUS_TYPE_OBJECT_PATH, technology->path);
491 static DBusMessage *get_properties(DBusConnection *conn,
492 DBusMessage *message, void *user_data)
494 struct connman_technology *technology = user_data;
496 DBusMessageIter iter;
498 reply = dbus_message_new_method_return(message);
502 dbus_message_iter_init_append(reply, &iter);
503 append_properties(&iter, technology);
508 void __connman_technology_list_struct(DBusMessageIter *array)
511 DBusMessageIter entry;
513 for (list = technology_list; list; list = list->next) {
514 struct connman_technology *technology = list->data;
516 if (technology->path == NULL)
519 dbus_message_iter_open_container(array, DBUS_TYPE_STRUCT,
521 dbus_message_iter_append_basic(&entry, DBUS_TYPE_OBJECT_PATH,
523 append_properties(&entry, technology);
524 dbus_message_iter_close_container(array, &entry);
528 static DBusMessage *set_property(DBusConnection *conn,
529 DBusMessage *msg, void *data)
531 struct connman_technology *technology = data;
532 DBusMessageIter iter, value;
536 DBG("conn %p", conn);
538 if (dbus_message_iter_init(msg, &iter) == FALSE)
539 return __connman_error_invalid_arguments(msg);
541 dbus_message_iter_get_basic(&iter, &name);
542 dbus_message_iter_next(&iter);
543 dbus_message_iter_recurse(&iter, &value);
545 type = dbus_message_iter_get_arg_type(&value);
547 DBG("property %s", name);
549 if (g_str_equal(name, "Tethering") == TRUE) {
551 connman_bool_t tethering;
553 if (type != DBUS_TYPE_BOOLEAN)
554 return __connman_error_invalid_arguments(msg);
556 dbus_message_iter_get_basic(&value, &tethering);
558 if (technology->tethering == tethering)
559 return __connman_error_in_progress(msg);
561 err = set_tethering(technology, tethering);
563 return __connman_error_failed(msg, -err);
565 } else if (g_str_equal(name, "TetheringIdentifier") == TRUE) {
568 dbus_message_iter_get_basic(&value, &str);
570 if (technology->type != CONNMAN_SERVICE_TYPE_WIFI)
571 return __connman_error_not_supported(msg);
573 technology->tethering_ident = g_strdup(str);
574 } else if (g_str_equal(name, "TetheringPassphrase") == TRUE) {
577 dbus_message_iter_get_basic(&value, &str);
579 if (technology->type != CONNMAN_SERVICE_TYPE_WIFI)
580 return __connman_error_not_supported(msg);
583 return __connman_error_invalid_arguments(msg);
585 technology->tethering_passphrase = g_strdup(str);
587 return __connman_error_invalid_property(msg);
589 return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
592 static GDBusMethodTable technology_methods[] = {
593 { "GetProperties", "", "a{sv}", get_properties },
594 { "SetProperty", "sv", "", set_property },
598 static GDBusSignalTable technology_signals[] = {
599 { "PropertyChanged", "sv" },
603 static struct connman_technology *technology_find(enum connman_service_type type)
607 DBG("type %d", type);
609 for (list = technology_list; list; list = list->next) {
610 struct connman_technology *technology = list->data;
612 if (technology->type == type)
619 static struct connman_technology *technology_get(enum connman_service_type type)
621 struct connman_technology *technology;
625 DBG("type %d", type);
627 technology = technology_find(type);
628 if (technology != NULL) {
629 __sync_fetch_and_add(&technology->refcount, 1);
633 str = __connman_service_type2string(type);
637 technology = g_try_new0(struct connman_technology, 1);
638 if (technology == NULL)
641 technology->refcount = 1;
643 technology->type = type;
644 technology->path = g_strdup_printf("%s/technology/%s",
647 technology->rfkill_list = g_hash_table_new_full(g_int_hash, g_int_equal,
649 technology->device_list = NULL;
651 technology->pending_reply = NULL;
652 technology->state = CONNMAN_TECHNOLOGY_STATE_OFFLINE;
654 load_state(technology);
656 if (g_dbus_register_interface(connection, technology->path,
657 CONNMAN_TECHNOLOGY_INTERFACE,
658 technology_methods, technology_signals,
659 NULL, technology, NULL) == FALSE) {
660 connman_error("Failed to register %s", technology->path);
665 technology_list = g_slist_append(technology_list, technology);
667 technologies_changed();
668 technology_added_signal(technology);
670 if (technology->driver != NULL)
673 for (list = driver_list; list; list = list->next) {
674 struct connman_technology_driver *driver = list->data;
676 DBG("driver %p name %s", driver, driver->name);
678 if (driver->type != technology->type)
681 if (driver->probe(technology) == 0) {
682 technology->driver = driver;
688 DBG("technology %p", technology);
693 static void technology_put(struct connman_technology *technology)
695 DBG("technology %p", technology);
697 if (__sync_fetch_and_sub(&technology->refcount, 1) != 1)
700 if (technology->driver) {
701 technology->driver->remove(technology);
702 technology->driver = NULL;
705 technology_list = g_slist_remove(technology_list, technology);
707 technologies_changed();
708 technology_removed_signal(technology);
710 g_dbus_unregister_interface(connection, technology->path,
711 CONNMAN_TECHNOLOGY_INTERFACE);
713 g_slist_free(technology->device_list);
714 g_hash_table_destroy(technology->rfkill_list);
716 g_free(technology->path);
717 g_free(technology->regdom);
721 void __connman_technology_add_interface(enum connman_service_type type,
722 int index, const char *name, const char *ident)
724 struct connman_technology *technology;
727 case CONNMAN_SERVICE_TYPE_UNKNOWN:
728 case CONNMAN_SERVICE_TYPE_SYSTEM:
730 case CONNMAN_SERVICE_TYPE_ETHERNET:
731 case CONNMAN_SERVICE_TYPE_WIFI:
732 case CONNMAN_SERVICE_TYPE_WIMAX:
733 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
734 case CONNMAN_SERVICE_TYPE_CELLULAR:
735 case CONNMAN_SERVICE_TYPE_GPS:
736 case CONNMAN_SERVICE_TYPE_VPN:
737 case CONNMAN_SERVICE_TYPE_GADGET:
741 connman_info("Create interface %s [ %s ]", name,
742 __connman_service_type2string(type));
744 technology = technology_get(type);
746 if (technology == NULL || technology->driver == NULL
747 || technology->driver->add_interface == NULL)
750 technology->driver->add_interface(technology,
754 void __connman_technology_remove_interface(enum connman_service_type type,
755 int index, const char *name, const char *ident)
757 struct connman_technology *technology;
760 case CONNMAN_SERVICE_TYPE_UNKNOWN:
761 case CONNMAN_SERVICE_TYPE_SYSTEM:
763 case CONNMAN_SERVICE_TYPE_ETHERNET:
764 case CONNMAN_SERVICE_TYPE_WIFI:
765 case CONNMAN_SERVICE_TYPE_WIMAX:
766 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
767 case CONNMAN_SERVICE_TYPE_CELLULAR:
768 case CONNMAN_SERVICE_TYPE_GPS:
769 case CONNMAN_SERVICE_TYPE_VPN:
770 case CONNMAN_SERVICE_TYPE_GADGET:
774 connman_info("Remove interface %s [ %s ]", name,
775 __connman_service_type2string(type));
777 technology = technology_find(type);
779 if (technology == NULL || technology->driver == NULL)
782 if (technology->driver->remove_interface)
783 technology->driver->remove_interface(technology, index);
785 technology_put(technology);
788 int __connman_technology_add_device(struct connman_device *device)
790 struct connman_technology *technology;
791 enum connman_service_type type;
793 DBG("device %p", device);
795 type = __connman_device_get_service_type(device);
796 __connman_notifier_register(type);
798 technology = technology_get(type);
799 if (technology == NULL)
802 if (technology->enable_persistent && !global_offlinemode)
803 __connman_device_enable(device);
804 /* if technology persistent state is offline */
805 if (!technology->enable_persistent)
806 __connman_device_disable(device);
808 technology->device_list = g_slist_append(technology->device_list,
814 int __connman_technology_remove_device(struct connman_device *device)
816 struct connman_technology *technology;
817 enum connman_service_type type;
819 DBG("device %p", device);
821 type = __connman_device_get_service_type(device);
822 __connman_notifier_unregister(type);
824 technology = technology_find(type);
825 if (technology == NULL)
828 technology->device_list = g_slist_remove(technology->device_list,
830 if (technology->device_list == NULL) {
831 technology->state = CONNMAN_TECHNOLOGY_STATE_OFFLINE;
832 state_changed(technology);
838 static gboolean technology_pending_reply(gpointer user_data)
840 struct connman_technology *technology = user_data;
843 /* Power request timedout, send ETIMEDOUT. */
844 if (technology->pending_reply != NULL) {
845 reply = __connman_error_failed(technology->pending_reply, ETIMEDOUT);
847 g_dbus_send_message(connection, reply);
849 dbus_message_unref(technology->pending_reply);
850 technology->pending_reply = NULL;
851 technology->pending_timeout = 0;
857 int __connman_technology_enabled(enum connman_service_type type)
859 struct connman_technology *technology;
861 technology = technology_find(type);
862 if (technology == NULL)
865 if (__sync_fetch_and_add(&technology->enabled, 1) == 0) {
866 __connman_notifier_enable(type);
867 technology->state = CONNMAN_TECHNOLOGY_STATE_ENABLED;
868 state_changed(technology);
871 if (technology->pending_reply != NULL) {
872 g_dbus_send_reply(connection, technology->pending_reply, DBUS_TYPE_INVALID);
873 dbus_message_unref(technology->pending_reply);
874 g_source_remove(technology->pending_timeout);
875 technology->pending_reply = NULL;
876 technology->pending_timeout = 0;
882 int __connman_technology_enable(enum connman_service_type type, DBusMessage *msg)
884 struct connman_technology *technology;
890 DBG("type %d enable", type);
892 technology = technology_find(type);
893 if (technology == NULL) {
898 if (technology->pending_reply != NULL) {
905 * This is a bit of a trick. When msg is not NULL it means
906 * thats technology_enable was invoked from the manager API. Hence we save
909 technology->enable_persistent = TRUE;
910 save_state(technology);
913 __connman_rfkill_block(technology->type, FALSE);
916 * An empty device list means that devices in the technology
917 * were rfkill blocked. The unblock above will enable the devs.
919 if (technology->device_list == NULL)
922 for (list = technology->device_list; list; list = list->next) {
923 struct connman_device *device = list->data;
925 err = __connman_device_enable(device);
927 * err = 0 : Device was enabled right away.
928 * If atleast one device gets enabled, we consider
929 * the technology to be enabled.
938 g_dbus_send_reply(connection, msg, DBUS_TYPE_INVALID);
943 if (err == -EINPROGRESS) {
944 technology->pending_reply = dbus_message_ref(msg);
945 technology->pending_timeout = g_timeout_add_seconds(10,
946 technology_pending_reply, technology);
948 reply = __connman_error_failed(msg, -err);
950 g_dbus_send_message(connection, reply);
957 int __connman_technology_disabled(enum connman_service_type type)
959 struct connman_technology *technology;
961 technology = technology_find(type);
962 if (technology == NULL)
965 if (technology->pending_reply != NULL) {
966 g_dbus_send_reply(connection, technology->pending_reply, DBUS_TYPE_INVALID);
967 dbus_message_unref(technology->pending_reply);
968 g_source_remove(technology->pending_timeout);
969 technology->pending_reply = NULL;
970 technology->pending_timeout = 0;
973 if (__sync_fetch_and_sub(&technology->enabled, 1) != 1)
976 __connman_notifier_disable(type);
977 technology->state = CONNMAN_TECHNOLOGY_STATE_OFFLINE;
978 state_changed(technology);
983 int __connman_technology_disable(enum connman_service_type type, DBusMessage *msg)
985 struct connman_technology *technology;
991 DBG("type %d disable", type);
993 technology = technology_find(type);
994 if (technology == NULL) {
999 if (technology->pending_reply != NULL) {
1004 if (technology->tethering == TRUE)
1005 set_tethering(technology, FALSE);
1008 technology->enable_persistent = FALSE;
1009 save_state(technology);
1012 __connman_rfkill_block(technology->type, TRUE);
1014 for (list = technology->device_list; list; list = list->next) {
1015 struct connman_device *device = list->data;
1017 err = __connman_device_disable(device);
1025 g_dbus_send_reply(connection, msg, DBUS_TYPE_INVALID);
1030 if (err == -EINPROGRESS) {
1031 technology->pending_reply = dbus_message_ref(msg);
1032 technology->pending_timeout = g_timeout_add_seconds(10,
1033 technology_pending_reply, technology);
1035 reply = __connman_error_failed(msg, -err);
1037 g_dbus_send_message(connection, reply);
1044 int __connman_technology_set_offlinemode(connman_bool_t offlinemode)
1049 if (global_offlinemode == offlinemode)
1052 DBG("offlinemode %s", offlinemode ? "On" : "Off");
1055 * This is a bit tricky. When you set offlinemode, there is no
1056 * way to differentiate between attempting offline mode and
1057 * resuming offlinemode from last saved profile. We need that
1058 * information in rfkill_update, otherwise it falls back on the
1059 * technology's persistent state. Hence we set the offline mode here
1060 * but save it & call the notifier only if its successful.
1063 global_offlinemode = offlinemode;
1065 /* Traverse technology list, enable/disable each technology. */
1066 for (list = technology_list; list; list = list->next) {
1067 struct connman_technology *technology = list->data;
1070 err = __connman_technology_disable(technology->type, NULL);
1072 if (!offlinemode && technology->enable_persistent)
1073 err = __connman_technology_enable(technology->type, NULL);
1076 if (err == 0 || err == -EINPROGRESS || err == -EALREADY) {
1077 connman_technology_save_offlinemode();
1078 __connman_notifier_offlinemode(offlinemode);
1080 global_offlinemode = connman_technology_load_offlinemode();
1085 int __connman_technology_add_rfkill(unsigned int index,
1086 enum connman_service_type type,
1087 connman_bool_t softblock,
1088 connman_bool_t hardblock)
1090 struct connman_technology *technology;
1091 struct connman_rfkill *rfkill;
1093 DBG("index %u type %d soft %u hard %u", index, type,
1094 softblock, hardblock);
1096 technology = technology_get(type);
1097 if (technology == NULL)
1100 rfkill = g_try_new0(struct connman_rfkill, 1);
1104 __connman_notifier_register(type);
1106 rfkill->index = index;
1107 rfkill->type = type;
1108 rfkill->softblock = softblock;
1109 rfkill->hardblock = hardblock;
1111 g_hash_table_replace(technology->rfkill_list, &rfkill->index, rfkill);
1114 DBG("%s is switched off.", get_name(type));
1119 * If Offline mode is on, we softblock the device if it isnt already.
1120 * If Offline mode is off, we rely on the persistent state of tech.
1122 if (global_offlinemode) {
1124 return __connman_rfkill_block(type, TRUE);
1126 if (technology->enable_persistent && softblock)
1127 return __connman_rfkill_block(type, FALSE);
1128 /* if technology persistent state is offline */
1129 if (!technology->enable_persistent && !softblock)
1130 return __connman_rfkill_block(type, TRUE);
1136 int __connman_technology_update_rfkill(unsigned int index,
1137 enum connman_service_type type,
1138 connman_bool_t softblock,
1139 connman_bool_t hardblock)
1141 struct connman_technology *technology;
1142 struct connman_rfkill *rfkill;
1144 DBG("index %u soft %u hard %u", index, softblock, hardblock);
1146 technology = technology_find(type);
1147 if (technology == NULL)
1150 rfkill = g_hash_table_lookup(technology->rfkill_list, &index);
1154 if (rfkill->softblock == softblock &&
1155 rfkill->hardblock == hardblock)
1158 rfkill->softblock = softblock;
1159 rfkill->hardblock = hardblock;
1162 DBG("%s is switched off.", get_name(type));
1166 if (!global_offlinemode) {
1167 if (technology->enable_persistent && softblock)
1168 return __connman_rfkill_block(type, FALSE);
1169 if (!technology->enable_persistent && !softblock)
1170 return __connman_rfkill_block(type, TRUE);
1176 int __connman_technology_remove_rfkill(unsigned int index,
1177 enum connman_service_type type)
1179 struct connman_technology *technology;
1180 struct connman_rfkill *rfkill;
1182 DBG("index %u", index);
1184 technology = technology_find(type);
1185 if (technology == NULL)
1188 rfkill = g_hash_table_lookup(technology->rfkill_list, &index);
1192 g_hash_table_remove(technology->rfkill_list, &index);
1194 technology_put(technology);
1199 int __connman_technology_init(void)
1203 connection = connman_dbus_get_connection();
1205 global_offlinemode = connman_technology_load_offlinemode();
1210 void __connman_technology_cleanup(void)
1214 dbus_connection_unref(connection);