5 * Copyright (C) 2007-2008 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
27 #include <dbus/dbus.h>
29 #include <connman/plugin.h>
30 #include <connman/driver.h>
31 #include <connman/log.h>
33 #include "supplicant.h"
40 static struct connman_element *find_element(struct wifi_data *data,
41 const char *identifier)
45 for (list = data->list; list; list = list->next) {
46 struct connman_element *element = list->data;
48 if (element->network.identifier == NULL)
51 if (g_str_equal(element->network.identifier,
59 static void scan_result(struct connman_element *parent,
60 struct supplicant_network *network)
62 struct wifi_data *data = connman_element_get_data(parent);
63 struct connman_element *element;
67 DBG("network %p identifier %s", network, network->identifier);
72 if (network->identifier == NULL)
75 if (network->identifier[0] == '\0')
78 temp = g_strdup(network->identifier);
80 for (i = 0; i < strlen(temp); i++) {
81 if (temp[i] == ' ' || temp[i] == '.')
83 temp[i] = g_ascii_tolower(temp[i]);
86 g_static_mutex_lock(&data->mutex);
88 element = find_element(data, temp);
89 if (element == NULL) {
90 element = connman_element_create();
92 element->type = CONNMAN_ELEMENT_TYPE_NETWORK;
95 element->network.identifier = g_strdup(temp);
97 data->list = g_slist_append(data->list, element);
99 connman_element_add_static_property(element, "SSID",
100 DBUS_TYPE_STRING, &network->identifier);
102 connman_element_register(element, parent);
106 g_static_mutex_unlock(&data->mutex);
109 static struct supplicant_callback wifi_callback = {
110 .scan_result = scan_result,
113 static int wifi_probe(struct connman_element *element)
115 struct wifi_data *data;
118 DBG("element %p name %s", element, element->name);
120 data = g_try_new0(struct wifi_data, 1);
124 g_static_mutex_init(&data->mutex);
126 connman_element_set_data(element, data);
128 err = __supplicant_start(element, &wifi_callback);
132 __supplicant_scan(element);
137 static void wifi_remove(struct connman_element *element)
139 struct wifi_data *data = connman_element_get_data(element);
142 DBG("element %p name %s", element, element->name);
144 __supplicant_stop(element);
146 connman_element_set_data(element, NULL);
151 g_static_mutex_lock(&data->mutex);
153 for (list = data->list; list; list = list->next) {
154 struct connman_element *network = list->data;
156 connman_element_unregister(network);
157 connman_element_unref(network);
160 g_slist_free(data->list);
162 g_static_mutex_unlock(&data->mutex);
167 static struct connman_driver wifi_driver = {
169 .type = CONNMAN_ELEMENT_TYPE_DEVICE,
170 .subtype = CONNMAN_ELEMENT_SUBTYPE_WIFI,
172 .remove = wifi_remove,
175 static int wifi_init(void)
177 return connman_driver_register(&wifi_driver);
180 static void wifi_exit(void)
182 connman_driver_unregister(&wifi_driver);
185 CONNMAN_PLUGIN_DEFINE("WiFi", "WiFi interface plugin", VERSION,
186 wifi_init, wifi_exit)