Fix network identifier checking
[connman] / plugins / wifi.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2008  Intel Corporation. All rights reserved.
6  *
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.
10  *
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.
15  *
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
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <string.h>
27
28 #include <connman/plugin.h>
29 #include <connman/driver.h>
30 #include <connman/log.h>
31
32 #include "supplicant.h"
33
34 struct wifi_data {
35         GStaticMutex mutex;
36         GSList *list;
37 };
38
39 static struct connman_element *find_element(struct wifi_data *data,
40                                                 const char *identifier)
41 {
42         GSList *list;
43
44         for (list = data->list; list; list = list->next) {
45                 struct connman_element *element = list->data;
46
47                 if (element->network.identifier == NULL)
48                         continue;
49
50                 if (g_str_equal(element->network.identifier,
51                                                         identifier) == TRUE)
52                         return element;
53         }
54
55         return NULL;
56 }
57
58 static void scan_result(struct connman_element *parent,
59                                         struct supplicant_network *network)
60 {
61         struct wifi_data *data = connman_element_get_data(parent);
62         struct connman_element *element;
63         gchar *temp;
64         int i;
65
66         DBG("network %p identifier %s", network, network->identifier);
67
68         if (data == NULL)
69                 return;
70
71         temp = g_strdup(network->identifier);
72
73         for (i = 0; i < strlen(temp); i++) {
74                 if (temp[i] == ' ' || temp[i] == '.')
75                         temp[i] = '_';
76                 temp[i] = g_ascii_tolower(temp[i]);
77         }
78
79         g_static_mutex_lock(&data->mutex);
80
81         element = find_element(data, temp);
82         if (element == NULL) {
83                 element = connman_element_create();
84
85                 element->type = CONNMAN_ELEMENT_TYPE_NETWORK;
86                 element->name = temp;
87
88                 element->network.identifier = g_strdup(temp);
89
90                 data->list = g_slist_append(data->list, element);
91
92                 connman_element_register(element, parent);
93         } else
94                 g_free(temp);
95
96         g_static_mutex_unlock(&data->mutex);
97 }
98
99 static struct supplicant_callback wifi_callback = {
100         .scan_result    = scan_result,
101 };
102
103 static int wifi_probe(struct connman_element *element)
104 {
105         struct wifi_data *data;
106         int err;
107
108         DBG("element %p name %s", element, element->name);
109
110         data = g_try_new0(struct wifi_data, 1);
111         if (data == NULL)
112                 return -ENOMEM;
113
114         g_static_mutex_init(&data->mutex);
115
116         connman_element_set_data(element, data);
117
118         err = __supplicant_start(element, &wifi_callback);
119         if (err < 0)
120                 return err;
121
122         __supplicant_scan(element);
123
124         return 0;
125 }
126
127 static void wifi_remove(struct connman_element *element)
128 {
129         struct wifi_data *data = connman_element_get_data(element);
130         GSList *list;
131
132         DBG("element %p name %s", element, element->name);
133
134         __supplicant_stop(element);
135
136         connman_element_set_data(element, NULL);
137
138         if (data == NULL)
139                 return;
140
141         g_static_mutex_lock(&data->mutex);
142
143         for (list = data->list; list; list = list->next) {
144                 struct connman_element *network = list->data;
145
146                 connman_element_unregister(network);
147                 connman_element_unref(network);
148         }
149
150         g_slist_free(data->list);
151
152         g_static_mutex_unlock(&data->mutex);
153
154         g_free(data);
155 }
156
157 static struct connman_driver wifi_driver = {
158         .name           = "wifi",
159         .type           = CONNMAN_ELEMENT_TYPE_DEVICE,
160         .subtype        = CONNMAN_ELEMENT_SUBTYPE_WIFI,
161         .probe          = wifi_probe,
162         .remove         = wifi_remove,
163 };
164
165 static int wifi_init(void)
166 {
167         return connman_driver_register(&wifi_driver);
168 }
169
170 static void wifi_exit(void)
171 {
172         connman_driver_unregister(&wifi_driver);
173 }
174
175 CONNMAN_PLUGIN_DEFINE("WiFi", "WiFi interface plugin", VERSION,
176                                                         wifi_init, wifi_exit)