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
28 #include <connman/plugin.h>
29 #include <connman/driver.h>
30 #include <connman/log.h>
32 #include "supplicant.h"
39 static struct connman_element *find_element(struct wifi_data *data,
40 const char *identifier)
44 for (list = data->list; list; list = list->next) {
45 struct connman_element *element = list->data;
47 if (element->network.identifier == NULL)
50 if (g_str_equal(element->network.identifier,
58 static void scan_result(struct connman_element *parent,
59 struct supplicant_network *network)
61 struct wifi_data *data = connman_element_get_data(parent);
62 struct connman_element *element;
66 DBG("network %p identifier %s", network, network->identifier);
71 if (network->identifier == NULL)
74 if (network->identifier[0] == '\0')
77 temp = g_strdup(network->identifier);
79 for (i = 0; i < strlen(temp); i++) {
80 if (temp[i] == ' ' || temp[i] == '.')
82 temp[i] = g_ascii_tolower(temp[i]);
85 g_static_mutex_lock(&data->mutex);
87 element = find_element(data, temp);
88 if (element == NULL) {
89 element = connman_element_create();
91 element->type = CONNMAN_ELEMENT_TYPE_NETWORK;
94 element->network.identifier = g_strdup(temp);
96 data->list = g_slist_append(data->list, element);
98 connman_element_register(element, parent);
102 g_static_mutex_unlock(&data->mutex);
105 static struct supplicant_callback wifi_callback = {
106 .scan_result = scan_result,
109 static int wifi_probe(struct connman_element *element)
111 struct wifi_data *data;
114 DBG("element %p name %s", element, element->name);
116 data = g_try_new0(struct wifi_data, 1);
120 g_static_mutex_init(&data->mutex);
122 connman_element_set_data(element, data);
124 err = __supplicant_start(element, &wifi_callback);
128 __supplicant_scan(element);
133 static void wifi_remove(struct connman_element *element)
135 struct wifi_data *data = connman_element_get_data(element);
138 DBG("element %p name %s", element, element->name);
140 __supplicant_stop(element);
142 connman_element_set_data(element, NULL);
147 g_static_mutex_lock(&data->mutex);
149 for (list = data->list; list; list = list->next) {
150 struct connman_element *network = list->data;
152 connman_element_unregister(network);
153 connman_element_unref(network);
156 g_slist_free(data->list);
158 g_static_mutex_unlock(&data->mutex);
163 static struct connman_driver wifi_driver = {
165 .type = CONNMAN_ELEMENT_TYPE_DEVICE,
166 .subtype = CONNMAN_ELEMENT_SUBTYPE_WIFI,
168 .remove = wifi_remove,
171 static int wifi_init(void)
173 return connman_driver_register(&wifi_driver);
176 static void wifi_exit(void)
178 connman_driver_unregister(&wifi_driver);
181 CONNMAN_PLUGIN_DEFINE("WiFi", "WiFi interface plugin", VERSION,
182 wifi_init, wifi_exit)