Remove obsolete file.
[connman] / plugins / supplicant.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2009  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 <stdio.h>
27 #include <errno.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <net/ethernet.h>
31
32 #include <gdbus.h>
33
34 #define CONNMAN_API_SUBJECT_TO_CHANGE
35 #include <connman/device.h>
36 #include <connman/option.h>
37 #include <connman/inet.h>
38 #include <connman/dbus.h>
39 #include <connman/log.h>
40
41 #include "supplicant.h"
42
43 #define TIMEOUT 5000
44
45 #define IEEE80211_CAP_ESS       0x0001
46 #define IEEE80211_CAP_IBSS      0x0002
47 #define IEEE80211_CAP_PRIVACY   0x0010
48
49 #define SUPPLICANT_NAME  "fi.epitest.hostap.WPASupplicant"
50 #define SUPPLICANT_INTF  "fi.epitest.hostap.WPASupplicant"
51 #define SUPPLICANT_PATH  "/fi/epitest/hostap/WPASupplicant"
52
53 /* Taken from "WPA Supplicant - Common definitions" */
54 enum supplicant_state {
55         /**
56          * WPA_DISCONNECTED - Disconnected state
57          *
58          * This state indicates that client is not associated, but is likely to
59          * start looking for an access point. This state is entered when a
60          * connection is lost.
61          */
62         WPA_DISCONNECTED,
63
64         /**
65          * WPA_INACTIVE - Inactive state (wpa_supplicant disabled)
66          *
67          * This state is entered if there are no enabled networks in the
68          * configuration. wpa_supplicant is not trying to associate with a new
69          * network and external interaction (e.g., ctrl_iface call to add or
70          * enable a network) is needed to start association.
71          */
72         WPA_INACTIVE,
73
74         /**
75          * WPA_SCANNING - Scanning for a network
76          *
77          * This state is entered when wpa_supplicant starts scanning for a
78          * network.
79          */
80         WPA_SCANNING,
81
82         /**
83          * WPA_ASSOCIATING - Trying to associate with a BSS/SSID
84          *
85          * This state is entered when wpa_supplicant has found a suitable BSS
86          * to associate with and the driver is configured to try to associate
87          * with this BSS in ap_scan=1 mode. When using ap_scan=2 mode, this
88          * state is entered when the driver is configured to try to associate
89          * with a network using the configured SSID and security policy.
90          */
91         WPA_ASSOCIATING,
92
93         /**
94          * WPA_ASSOCIATED - Association completed
95          *
96          * This state is entered when the driver reports that association has
97          * been successfully completed with an AP. If IEEE 802.1X is used
98          * (with or without WPA/WPA2), wpa_supplicant remains in this state
99          * until the IEEE 802.1X/EAPOL authentication has been completed.
100          */
101         WPA_ASSOCIATED,
102
103         /**
104          * WPA_4WAY_HANDSHAKE - WPA 4-Way Key Handshake in progress
105          *
106          * This state is entered when WPA/WPA2 4-Way Handshake is started. In
107          * case of WPA-PSK, this happens when receiving the first EAPOL-Key
108          * frame after association. In case of WPA-EAP, this state is entered
109          * when the IEEE 802.1X/EAPOL authentication has been completed.
110          */
111         WPA_4WAY_HANDSHAKE,
112
113         /**
114          * WPA_GROUP_HANDSHAKE - WPA Group Key Handshake in progress
115          *
116          * This state is entered when 4-Way Key Handshake has been completed
117          * (i.e., when the supplicant sends out message 4/4) and when Group
118          * Key rekeying is started by the AP (i.e., when supplicant receives
119          * message 1/2).
120          */
121         WPA_GROUP_HANDSHAKE,
122
123         /**
124          * WPA_COMPLETED - All authentication completed
125          *
126          * This state is entered when the full authentication process is
127          * completed. In case of WPA2, this happens when the 4-Way Handshake is
128          * successfully completed. With WPA, this state is entered after the
129          * Group Key Handshake; with IEEE 802.1X (non-WPA) connection is
130          * completed after dynamic keys are received (or if not used, after
131          * the EAP authentication has been completed). With static WEP keys and
132          * plaintext connections, this state is entered when an association
133          * has been completed.
134          *
135          * This state indicates that the supplicant has completed its
136          * processing for the association phase and that data connection is
137          * fully configured.
138          */
139         WPA_COMPLETED,
140
141         /**
142          * WPA_INVALID - Invalid state (parsing error)
143          *
144          * This state is returned if the string input is invalid. It is not
145          * an official wpa_supplicant state.
146          */
147         WPA_INVALID,
148 };
149
150 struct supplicant_result {
151         char *path;
152         char *name;
153         unsigned char *addr;
154         unsigned int addr_len;
155         unsigned char *ssid;
156         unsigned int ssid_len;
157         dbus_uint16_t capabilities;
158         gboolean adhoc;
159         gboolean has_wep;
160         gboolean has_wpa;
161         gboolean has_rsn;
162         gboolean has_wps;
163         dbus_int32_t frequency;
164         dbus_int32_t quality;
165         dbus_int32_t noise;
166         dbus_int32_t level;
167         dbus_int32_t maxrate;
168 };
169
170 struct supplicant_task {
171         int ifindex;
172         char *ifname;
173         struct connman_device *device;
174         struct connman_network *network;
175         char *path;
176         char *netpath;
177         gboolean created;
178         enum supplicant_state state;
179         gboolean noscan;
180         GSList *scan_results;
181 };
182
183 static GSList *task_list = NULL;
184
185 static DBusConnection *connection;
186
187 static void free_task(struct supplicant_task *task)
188 {
189         DBG("task %p", task);
190
191         g_free(task->ifname);
192         g_free(task->path);
193         g_free(task);
194 }
195
196 static struct supplicant_task *find_task_by_index(int index)
197 {
198         GSList *list;
199
200         for (list = task_list; list; list = list->next) {
201                 struct supplicant_task *task = list->data;
202
203                 if (task->ifindex == index)
204                         return task;
205         }
206
207         return NULL;
208 }
209
210 static struct supplicant_task *find_task_by_path(const char *path)
211 {
212         GSList *list;
213
214         for (list = task_list; list; list = list->next) {
215                 struct supplicant_task *task = list->data;
216
217                 if (g_strcmp0(task->path, path) == 0)
218                         return task;
219         }
220
221         return NULL;
222 }
223
224 static void add_interface_reply(DBusPendingCall *call, void *user_data)
225 {
226         struct supplicant_task *task = user_data;
227         DBusMessage *reply;
228         DBusError error;
229         const char *path;
230
231         DBG("task %p", task);
232
233         reply = dbus_pending_call_steal_reply(call);
234         if (reply == NULL)
235                 return;
236
237         if (dbus_message_get_type(reply) == DBUS_MESSAGE_TYPE_ERROR)
238                 goto failed;
239
240         dbus_error_init(&error);
241
242         if (dbus_message_get_args(reply, &error, DBUS_TYPE_OBJECT_PATH, &path,
243                                                 DBUS_TYPE_INVALID) == FALSE) {
244                 if (dbus_error_is_set(&error) == TRUE) {
245                         connman_error("%s", error.message);
246                         dbus_error_free(&error);
247                 } else
248                         connman_error("Wrong arguments for add interface");
249                 goto failed;
250         }
251
252         DBG("path %s", path);
253
254         task->path = g_strdup(path);
255         task->created = TRUE;
256
257         connman_device_set_powered(task->device, TRUE);
258
259         dbus_message_unref(reply);
260
261         return;
262
263 failed:
264         task_list = g_slist_remove(task_list, task);
265
266         connman_device_unref(task->device);
267
268         free_task(task);
269 }
270
271 static int add_interface(struct supplicant_task *task)
272 {
273         const char *driver = connman_option_get_string("wifi");
274         DBusMessage *message;
275         DBusMessageIter array, dict;
276         DBusPendingCall *call;
277
278         DBG("task %p", task);
279
280         message = dbus_message_new_method_call(SUPPLICANT_NAME, SUPPLICANT_PATH,
281                                         SUPPLICANT_INTF, "addInterface");
282         if (message == NULL)
283                 return -ENOMEM;
284
285         dbus_message_iter_init_append(message, &array);
286
287         dbus_message_iter_append_basic(&array,
288                                         DBUS_TYPE_STRING, &task->ifname);
289
290         dbus_message_iter_open_container(&array, DBUS_TYPE_ARRAY,
291                         DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
292                         DBUS_TYPE_STRING_AS_STRING DBUS_TYPE_VARIANT_AS_STRING
293                         DBUS_DICT_ENTRY_END_CHAR_AS_STRING, &dict);
294
295         connman_dbus_dict_append_variant(&dict, "driver",
296                                                 DBUS_TYPE_STRING, &driver);
297
298         dbus_message_iter_close_container(&array, &dict);
299
300         if (dbus_connection_send_with_reply(connection, message,
301                                                 &call, TIMEOUT) == FALSE) {
302                 connman_error("Failed to add interface");
303                 dbus_message_unref(message);
304                 return -EIO;
305         }
306
307         if (call == NULL) {
308                 connman_error("D-Bus connection not available");
309                 dbus_message_unref(message);
310                 return -EIO;
311         }
312
313         dbus_pending_call_set_notify(call, add_interface_reply, task, NULL);
314
315         dbus_message_unref(message);
316
317         return -EINPROGRESS;
318 }
319
320 static void get_interface_reply(DBusPendingCall *call, void *user_data)
321 {
322         struct supplicant_task *task = user_data;
323         DBusMessage *reply;
324         DBusError error;
325         const char *path;
326
327         DBG("task %p", task);
328
329         reply = dbus_pending_call_steal_reply(call);
330         if (reply == NULL)
331                 return;
332
333         if (dbus_message_get_type(reply) == DBUS_MESSAGE_TYPE_ERROR) {
334                 add_interface(task);
335                 goto done;
336         }
337
338         dbus_error_init(&error);
339
340         if (dbus_message_get_args(reply, &error, DBUS_TYPE_OBJECT_PATH, &path,
341                                                 DBUS_TYPE_INVALID) == FALSE) {
342                 if (dbus_error_is_set(&error) == TRUE) {
343                         connman_error("%s", error.message);
344                         dbus_error_free(&error);
345                 } else
346                         connman_error("Wrong arguments for get interface");
347                 goto done;
348         }
349
350         DBG("path %s", path);
351
352         task->path = g_strdup(path);
353         task->created = FALSE;
354
355         connman_device_set_powered(task->device, TRUE);
356
357 done:
358         dbus_message_unref(reply);
359 }
360
361 static int create_interface(struct supplicant_task *task)
362 {
363         DBusMessage *message;
364         DBusPendingCall *call;
365
366         DBG("task %p", task);
367
368         message = dbus_message_new_method_call(SUPPLICANT_NAME, SUPPLICANT_PATH,
369                                         SUPPLICANT_INTF, "getInterface");
370         if (message == NULL)
371                 return -ENOMEM;
372
373         dbus_message_append_args(message, DBUS_TYPE_STRING, &task->ifname,
374                                                         DBUS_TYPE_INVALID);
375
376         if (dbus_connection_send_with_reply(connection, message,
377                                                 &call, TIMEOUT) == FALSE) {
378                 connman_error("Failed to get interface");
379                 dbus_message_unref(message);
380                 return -EIO;
381         }
382
383         if (call == NULL) {
384                 connman_error("D-Bus connection not available");
385                 dbus_message_unref(message);
386                 return -EIO;
387         }
388
389         dbus_pending_call_set_notify(call, get_interface_reply, task, NULL);
390
391         dbus_message_unref(message);
392
393         return -EINPROGRESS;
394 }
395
396 static void remove_interface_reply(DBusPendingCall *call, void *user_data)
397 {
398         struct supplicant_task *task = user_data;
399         DBusMessage *reply;
400
401         DBG("task %p", task);
402
403         reply = dbus_pending_call_steal_reply(call);
404
405         connman_device_set_powered(task->device, FALSE);
406
407         connman_device_unref(task->device);
408
409         connman_inet_ifdown(task->ifindex);
410
411         free_task(task);
412
413         dbus_message_unref(reply);
414 }
415
416 static int remove_interface(struct supplicant_task *task)
417 {
418         DBusMessage *message;
419         DBusPendingCall *call;
420
421         DBG("task %p", task);
422
423         if (task->created == FALSE) {
424                 connman_device_set_powered(task->device, FALSE);
425                 return 0;
426         }
427
428         message = dbus_message_new_method_call(SUPPLICANT_NAME, SUPPLICANT_PATH,
429                                         SUPPLICANT_INTF, "removeInterface");
430         if (message == NULL)
431                 return -ENOMEM;
432
433         dbus_message_append_args(message, DBUS_TYPE_OBJECT_PATH, &task->path,
434                                                         DBUS_TYPE_INVALID);
435
436         if (dbus_connection_send_with_reply(connection, message,
437                                                 &call, TIMEOUT) == FALSE) {
438                 connman_error("Failed to remove interface");
439                 dbus_message_unref(message);
440                 return -EIO;
441         }
442
443         if (call == NULL) {
444                 connman_error("D-Bus connection not available");
445                 dbus_message_unref(message);
446                 return -EIO;
447         }
448
449         dbus_pending_call_set_notify(call, remove_interface_reply, task, NULL);
450
451         dbus_message_unref(message);
452
453         return -EINPROGRESS;
454 }
455
456 #if 0
457 static int set_ap_scan(struct supplicant_task *task)
458 {
459         DBusMessage *message, *reply;
460         DBusError error;
461         guint32 ap_scan = 1;
462
463         DBG("task %p", task);
464
465         message = dbus_message_new_method_call(SUPPLICANT_NAME, task->path,
466                                 SUPPLICANT_INTF ".Interface", "setAPScan");
467         if (message == NULL)
468                 return -ENOMEM;
469
470         dbus_message_append_args(message, DBUS_TYPE_UINT32, &ap_scan,
471                                                         DBUS_TYPE_INVALID);
472
473         dbus_error_init(&error);
474
475         reply = dbus_connection_send_with_reply_and_block(connection,
476                                                         message, -1, &error);
477         if (reply == NULL) {
478                 if (dbus_error_is_set(&error) == TRUE) {
479                         connman_error("%s", error.message);
480                         dbus_error_free(&error);
481                 } else
482                         connman_error("Failed to set AP scan");
483                 dbus_message_unref(message);
484                 return -EIO;
485         }
486
487         dbus_message_unref(message);
488
489         dbus_message_unref(reply);
490
491         return 0;
492 }
493 #endif
494
495 static int add_network(struct supplicant_task *task)
496 {
497         DBusMessage *message, *reply;
498         DBusError error;
499         const char *path;
500
501         DBG("task %p", task);
502
503         if (task->netpath != NULL)
504                 return -EALREADY;
505
506         message = dbus_message_new_method_call(SUPPLICANT_NAME, task->path,
507                                 SUPPLICANT_INTF ".Interface", "addNetwork");
508         if (message == NULL)
509                 return -ENOMEM;
510
511         dbus_error_init(&error);
512
513         reply = dbus_connection_send_with_reply_and_block(connection,
514                                                         message, -1, &error);
515         if (reply == NULL) {
516                 if (dbus_error_is_set(&error) == TRUE) {
517                         connman_error("%s", error.message);
518                         dbus_error_free(&error);
519                 } else
520                         connman_error("Failed to add network");
521                 dbus_message_unref(message);
522                 return -EIO;
523         }
524
525         dbus_message_unref(message);
526
527         dbus_error_init(&error);
528
529         if (dbus_message_get_args(reply, &error, DBUS_TYPE_OBJECT_PATH, &path,
530                                                 DBUS_TYPE_INVALID) == FALSE) {
531                 if (dbus_error_is_set(&error) == TRUE) {
532                         connman_error("%s", error.message);
533                         dbus_error_free(&error);
534                 } else
535                         connman_error("Wrong arguments for network");
536                 dbus_message_unref(reply);
537                 return -EIO;
538         }
539
540         DBG("path %s", path);
541
542         task->netpath = g_strdup(path);
543
544         dbus_message_unref(reply);
545
546         return 0;
547 }
548
549 static int remove_network(struct supplicant_task *task)
550 {
551         DBusMessage *message, *reply;
552         DBusError error;
553
554         DBG("task %p", task);
555
556         if (task->netpath == NULL)
557                 return -EINVAL;
558
559         message = dbus_message_new_method_call(SUPPLICANT_NAME, task->path,
560                                 SUPPLICANT_INTF ".Interface", "removeNetwork");
561         if (message == NULL)
562                 return -ENOMEM;
563
564         dbus_message_append_args(message, DBUS_TYPE_OBJECT_PATH, &task->netpath,
565                                                         DBUS_TYPE_INVALID);
566
567         dbus_error_init(&error);
568
569         reply = dbus_connection_send_with_reply_and_block(connection,
570                                                         message, -1, &error);
571         if (reply == NULL) {
572                 if (dbus_error_is_set(&error) == TRUE) {
573                         connman_error("%s", error.message);
574                         dbus_error_free(&error);
575                 } else
576                         connman_error("Failed to remove network");
577                 dbus_message_unref(message);
578                 return -EIO;
579         }
580
581         dbus_message_unref(message);
582
583         dbus_message_unref(reply);
584
585         g_free(task->netpath);
586         task->netpath = NULL;
587
588         return 0;
589 }
590
591 static int select_network(struct supplicant_task *task)
592 {
593         DBusMessage *message, *reply;
594         DBusError error;
595
596         DBG("task %p", task);
597
598         if (task->netpath == NULL)
599                 return -EINVAL;
600
601         message = dbus_message_new_method_call(SUPPLICANT_NAME, task->path,
602                                 SUPPLICANT_INTF ".Interface", "selectNetwork");
603         if (message == NULL)
604                 return -ENOMEM;
605
606         dbus_message_append_args(message, DBUS_TYPE_OBJECT_PATH, &task->netpath,
607                                                         DBUS_TYPE_INVALID);
608
609         dbus_error_init(&error);
610
611         reply = dbus_connection_send_with_reply_and_block(connection,
612                                                         message, -1, &error);
613         if (reply == NULL) {
614                 if (dbus_error_is_set(&error) == TRUE) {
615                         connman_error("%s", error.message);
616                         dbus_error_free(&error);
617                 } else
618                         connman_error("Failed to select network");
619                 dbus_message_unref(message);
620                 return -EIO;
621         }
622
623         dbus_message_unref(message);
624
625         dbus_message_unref(reply);
626
627         return 0;
628 }
629
630 static int enable_network(struct supplicant_task *task)
631 {
632         DBusMessage *message, *reply;
633         DBusError error;
634
635         DBG("task %p", task);
636
637         if (task->netpath == NULL)
638                 return -EINVAL;
639
640         message = dbus_message_new_method_call(SUPPLICANT_NAME, task->netpath,
641                                         SUPPLICANT_INTF ".Network", "enable");
642         if (message == NULL)
643                 return -ENOMEM;
644
645         dbus_error_init(&error);
646
647         reply = dbus_connection_send_with_reply_and_block(connection,
648                                                         message, -1, &error);
649         if (reply == NULL) {
650                 if (dbus_error_is_set(&error) == TRUE) {
651                         connman_error("%s", error.message);
652                         dbus_error_free(&error);
653                 } else
654                         connman_error("Failed to enable network");
655                 dbus_message_unref(message);
656                 return -EIO;
657         }
658
659         dbus_message_unref(message);
660
661         dbus_message_unref(reply);
662
663         return 0;
664 }
665
666 static int disable_network(struct supplicant_task *task)
667 {
668         DBusMessage *message, *reply;
669         DBusError error;
670
671         DBG("task %p", task);
672
673         if (task->netpath == NULL)
674                 return -EINVAL;
675
676         message = dbus_message_new_method_call(SUPPLICANT_NAME, task->netpath,
677                                         SUPPLICANT_INTF ".Network", "disable");
678         if (message == NULL)
679                 return -ENOMEM;
680
681         dbus_error_init(&error);
682
683         reply = dbus_connection_send_with_reply_and_block(connection,
684                                                         message, -1, &error);
685         if (reply == NULL) {
686                 if (dbus_error_is_set(&error) == TRUE) {
687                         connman_error("%s", error.message);
688                         dbus_error_free(&error);
689                 } else
690                         connman_error("Failed to disable network");
691                 dbus_message_unref(message);
692                 return -EIO;
693         }
694
695         dbus_message_unref(message);
696
697         dbus_message_unref(reply);
698
699         return 0;
700 }
701
702 static int set_network(struct supplicant_task *task,
703                                 const unsigned char *network, int len,
704                                 const char *address, const char *security,
705                                                         const char *passphrase)
706 {
707         DBusMessage *message, *reply;
708         DBusMessageIter array, dict;
709         DBusError error;
710
711         DBG("task %p", task);
712
713         if (task->netpath == NULL)
714                 return -EINVAL;
715
716         message = dbus_message_new_method_call(SUPPLICANT_NAME, task->netpath,
717                                         SUPPLICANT_INTF ".Network", "set");
718         if (message == NULL)
719                 return -ENOMEM;
720
721         dbus_message_iter_init_append(message, &array);
722
723         dbus_message_iter_open_container(&array, DBUS_TYPE_ARRAY,
724                         DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
725                         DBUS_TYPE_STRING_AS_STRING DBUS_TYPE_VARIANT_AS_STRING
726                         DBUS_DICT_ENTRY_END_CHAR_AS_STRING, &dict);
727
728         if (address == NULL) {
729                 dbus_uint32_t scan_ssid = 1;
730                 connman_dbus_dict_append_variant(&dict, "scan_ssid",
731                                                 DBUS_TYPE_UINT32, &scan_ssid);
732         } else
733                 connman_dbus_dict_append_variant(&dict, "bssid",
734                                                 DBUS_TYPE_STRING, &address);
735
736         connman_dbus_dict_append_array(&dict, "ssid",
737                                         DBUS_TYPE_BYTE, &network, len);
738
739         if (g_ascii_strcasecmp(security, "wpa") == 0 ||
740                                 g_ascii_strcasecmp(security, "rsn") == 0) {
741                 const char *key_mgmt = "WPA-PSK";
742                 connman_dbus_dict_append_variant(&dict, "key_mgmt",
743                                                 DBUS_TYPE_STRING, &key_mgmt);
744
745                 if (passphrase && strlen(passphrase) > 0)
746                         connman_dbus_dict_append_variant(&dict, "psk",
747                                                 DBUS_TYPE_STRING, &passphrase);
748         } else if (g_ascii_strcasecmp(security, "wep") == 0) {
749                 const char *key_mgmt = "NONE", *index = "0";
750                 connman_dbus_dict_append_variant(&dict, "key_mgmt",
751                                                 DBUS_TYPE_STRING, &key_mgmt);
752
753                 if (passphrase) {
754                         int size = strlen(passphrase);
755                         if (size == 10 || size == 26) {
756                                 unsigned char *key = malloc(13);
757                                 char tmp[3];
758                                 int i;
759                                 memset(tmp, 0, sizeof(tmp));
760                                 if (key == NULL)
761                                         size = 0;
762                                 for (i = 0; i < size / 2; i++) {
763                                         memcpy(tmp, passphrase + (i * 2), 2);
764                                         key[i] = (unsigned char) strtol(tmp,
765                                                                 NULL, 16);
766                                 }
767                                 connman_dbus_dict_append_array(&dict,
768                                                 "wep_key0", DBUS_TYPE_BYTE,
769                                                         &key, size / 2);
770                                 free(key);
771                         } else
772                                 connman_dbus_dict_append_variant(&dict,
773                                                 "wep_key0", DBUS_TYPE_STRING,
774                                                                 &passphrase);
775                         connman_dbus_dict_append_variant(&dict, "wep_tx_keyidx",
776                                                 DBUS_TYPE_STRING, &index);
777                 }
778         } else {
779                 const char *key_mgmt = "NONE";
780                 connman_dbus_dict_append_variant(&dict, "key_mgmt",
781                                                 DBUS_TYPE_STRING, &key_mgmt);
782         }
783
784         dbus_message_iter_close_container(&array, &dict);
785
786         dbus_error_init(&error);
787
788         reply = dbus_connection_send_with_reply_and_block(connection,
789                                                         message, -1, &error);
790         if (reply == NULL) {
791                 if (dbus_error_is_set(&error) == TRUE) {
792                         connman_error("%s", error.message);
793                         dbus_error_free(&error);
794                 } else
795                         connman_error("Failed to set network options");
796                 dbus_message_unref(message);
797                 return -EIO;
798         }
799
800         dbus_message_unref(message);
801
802         dbus_message_unref(reply);
803
804         return 0;
805 }
806
807 static int initiate_scan(struct supplicant_task *task)
808 {
809         DBusMessage *message;
810         DBusPendingCall *call;
811
812         DBG("task %p", task);
813
814         message = dbus_message_new_method_call(SUPPLICANT_NAME, task->path,
815                                         SUPPLICANT_INTF ".Interface", "scan");
816         if (message == NULL)
817                 return -ENOMEM;
818
819         if (dbus_connection_send_with_reply(connection, message,
820                                                 &call, TIMEOUT) == FALSE) {
821                 connman_error("Failed to initiate scan");
822                 dbus_message_unref(message);
823                 return -EIO;
824         }
825
826         dbus_message_unref(message);
827
828         return 0;
829 }
830
831 static struct {
832         char *name;
833         char *value;
834 } special_ssid[] = {
835         { "<hidden>", "hidden"  },
836         { "default",  "linksys" },
837         { "wireless"  },
838         { "linksys"   },
839         { "netgear"   },
840         { "dlink"     },
841         { "2wire"     },
842         { "compaq"    },
843         { "tsunami"   },
844         { "comcomcom", "3com"     },
845         { "3Com",      "3com"     },
846         { "Symbol",    "symbol"   },
847         { "Motorola",  "motorola" },
848         { "Wireless" , "wireless" },
849         { "WLAN",      "wlan"     },
850         { }
851 };
852
853 static char *build_group(const char *addr, const char *name,
854                         const unsigned char *ssid, unsigned int ssid_len,
855                                         const char *mode, const char *security)
856 {
857         GString *str;
858         unsigned int i;
859
860         if (addr == NULL)
861                 return NULL;
862
863         str = g_string_sized_new((ssid_len * 2) + 24);
864         if (str == NULL)
865                 return NULL;
866
867         for (i = 0; special_ssid[i].name; i++) {
868                 if (g_strcmp0(special_ssid[i].name, name) == 0) {
869                         if (special_ssid[i].value == NULL)
870                                 g_string_append_printf(str, "%s_%s",
871                                                                 name, addr);
872                         else
873                                 g_string_append_printf(str, "%s_%s",
874                                                 special_ssid[i].value, addr);
875                         goto done;
876                 }
877         }
878
879         if (ssid_len > 0 && ssid[0] != '\0') {
880                 for (i = 0; i < ssid_len; i++)
881                         g_string_append_printf(str, "%02x", ssid[i]);
882         } else
883                 g_string_append_printf(str, "hidden_%s", addr);
884
885 done:
886         g_string_append_printf(str, "_%s_%s", mode, security);
887
888         return g_string_free(str, FALSE);
889 }
890
891 static void extract_addr(DBusMessageIter *value,
892                                         struct supplicant_result *result)
893 {
894         DBusMessageIter array;
895         struct ether_addr *eth;
896         unsigned char *addr;
897         int addr_len;
898
899         dbus_message_iter_recurse(value, &array);
900         dbus_message_iter_get_fixed_array(&array, &addr, &addr_len);
901
902         if (addr_len != 6)
903                 return;
904
905         result->addr = g_try_malloc(addr_len);
906         if (result->addr == NULL)
907                 return;
908
909         memcpy(result->addr, addr, addr_len);
910         result->addr_len = addr_len;
911
912         result->path = g_try_malloc0(13);
913         if (result->path == NULL)
914                 return;
915
916         eth = (void *) addr;
917
918         snprintf(result->path, 13, "%02x%02x%02x%02x%02x%02x",
919                                                 eth->ether_addr_octet[0],
920                                                 eth->ether_addr_octet[1],
921                                                 eth->ether_addr_octet[2],
922                                                 eth->ether_addr_octet[3],
923                                                 eth->ether_addr_octet[4],
924                                                 eth->ether_addr_octet[5]);
925 }
926
927 static void extract_ssid(DBusMessageIter *value,
928                                         struct supplicant_result *result)
929 {
930         DBusMessageIter array;
931         unsigned char *ssid;
932         int ssid_len;
933
934         dbus_message_iter_recurse(value, &array);
935         dbus_message_iter_get_fixed_array(&array, &ssid, &ssid_len);
936
937         if (ssid_len < 1)
938                 return;
939
940         result->ssid = g_try_malloc(ssid_len);
941         if (result->ssid == NULL)
942                 return;
943
944         memcpy(result->ssid, ssid, ssid_len);
945         result->ssid_len = ssid_len;
946
947         result->name = g_try_malloc0(ssid_len + 1);
948         if (result->name == NULL)
949                 return;
950
951         memcpy(result->name, ssid, ssid_len);
952 }
953
954 static void extract_wpaie(DBusMessageIter *value,
955                                         struct supplicant_result *result)
956 {
957         DBusMessageIter array;
958         unsigned char *ie;
959         int ie_len;
960
961         dbus_message_iter_recurse(value, &array);
962         dbus_message_iter_get_fixed_array(&array, &ie, &ie_len);
963
964         if (ie_len > 0)
965                 result->has_wpa = TRUE;
966 }
967
968 static void extract_rsnie(DBusMessageIter *value,
969                                         struct supplicant_result *result)
970 {
971         DBusMessageIter array;
972         unsigned char *ie;
973         int ie_len;
974
975         dbus_message_iter_recurse(value, &array);
976         dbus_message_iter_get_fixed_array(&array, &ie, &ie_len);
977
978         if (ie_len > 0)
979                 result->has_rsn = TRUE;
980 }
981
982 static void extract_wpsie(DBusMessageIter *value,
983                                         struct supplicant_result *result)
984 {
985         DBusMessageIter array;
986         unsigned char *ie;
987         int ie_len;
988
989         dbus_message_iter_recurse(value, &array);
990         dbus_message_iter_get_fixed_array(&array, &ie, &ie_len);
991
992         if (ie_len > 0)
993                 result->has_wps = TRUE;
994 }
995
996 static void extract_capabilites(DBusMessageIter *value,
997                                         struct supplicant_result *result)
998 {
999         dbus_message_iter_get_basic(value, &result->capabilities);
1000
1001         if (result->capabilities & IEEE80211_CAP_ESS)
1002                 result->adhoc = FALSE;
1003         else if (result->capabilities & IEEE80211_CAP_IBSS)
1004                 result->adhoc = TRUE;
1005
1006         if (result->capabilities & IEEE80211_CAP_PRIVACY)
1007                 result->has_wep = TRUE;
1008 }
1009
1010 static unsigned char calculate_strength(struct supplicant_result *result)
1011 {
1012         if (result->quality < 0) {
1013                 unsigned char strength;
1014
1015                 if (result->level > 0)
1016                         strength = 100 - result->level;
1017                 else
1018                         strength = 120 + result->level;
1019
1020                 if (strength > 100)
1021                         strength = 100;
1022
1023                 return strength;
1024         }
1025
1026         return result->quality;
1027 }
1028
1029 static unsigned short calculate_channel(struct supplicant_result *result)
1030 {
1031         if (result->frequency < 0)
1032                 return 0;
1033
1034         return (result->frequency - 2407) / 5;
1035 }
1036
1037 static void get_properties(struct supplicant_task *task);
1038
1039 static void properties_reply(DBusPendingCall *call, void *user_data)
1040 {
1041         struct supplicant_task *task = user_data;
1042         struct supplicant_result result;
1043         struct connman_network *network;
1044         DBusMessage *reply;
1045         DBusMessageIter array, dict;
1046         unsigned char strength;
1047         unsigned short channel, frequency;
1048         const char *mode, *security;
1049         char *group;
1050
1051         DBG("task %p", task);
1052
1053         reply = dbus_pending_call_steal_reply(call);
1054         if (reply == NULL) {
1055                 get_properties(task);
1056                 return;
1057         }
1058
1059         if (dbus_message_get_type(reply) == DBUS_MESSAGE_TYPE_ERROR) {
1060                 dbus_message_unref(reply);
1061                 get_properties(task);
1062                 return;
1063         }
1064
1065         memset(&result, 0, sizeof(result));
1066         result.frequency = -1;
1067         result.quality = -1;
1068         result.level = 0;
1069         result.noise = 0;
1070
1071         dbus_message_iter_init(reply, &array);
1072
1073         dbus_message_iter_recurse(&array, &dict);
1074
1075         while (dbus_message_iter_get_arg_type(&dict) == DBUS_TYPE_DICT_ENTRY) {
1076                 DBusMessageIter entry, value;
1077                 const char *key;
1078
1079                 dbus_message_iter_recurse(&dict, &entry);
1080                 dbus_message_iter_get_basic(&entry, &key);
1081
1082                 dbus_message_iter_next(&entry);
1083
1084                 dbus_message_iter_recurse(&entry, &value);
1085
1086                 //type = dbus_message_iter_get_arg_type(&value);
1087                 //dbus_message_iter_get_basic(&value, &val);
1088
1089                 /* 
1090                  * bssid        : a (97)
1091                  * ssid         : a (97)
1092                  * wpaie        : a (97)
1093                  * rsnie        : a (97)
1094                  * wpsie        : a (97)
1095                  * frequency    : i (105)
1096                  * capabilities : q (113)
1097                  * quality      : i (105)
1098                  * noise        : i (105)
1099                  * level        : i (105)
1100                  * maxrate      : i (105)
1101                  */
1102
1103                 if (g_str_equal(key, "bssid") == TRUE)
1104                         extract_addr(&value, &result);
1105                 else if (g_str_equal(key, "ssid") == TRUE)
1106                         extract_ssid(&value, &result);
1107                 else if (g_str_equal(key, "wpaie") == TRUE)
1108                         extract_wpaie(&value, &result);
1109                 else if (g_str_equal(key, "rsnie") == TRUE)
1110                         extract_rsnie(&value, &result);
1111                 else if (g_str_equal(key, "wpsie") == TRUE)
1112                         extract_wpsie(&value, &result);
1113                 else if (g_str_equal(key, "capabilities") == TRUE)
1114                         extract_capabilites(&value, &result);
1115                 else if (g_str_equal(key, "frequency") == TRUE)
1116                         dbus_message_iter_get_basic(&value, &result.frequency);
1117                 else if (g_str_equal(key, "quality") == TRUE)
1118                         dbus_message_iter_get_basic(&value, &result.quality);
1119                 else if (g_str_equal(key, "noise") == TRUE)
1120                         dbus_message_iter_get_basic(&value, &result.noise);
1121                 else if (g_str_equal(key, "level") == TRUE)
1122                         dbus_message_iter_get_basic(&value, &result.level);
1123                 else if (g_str_equal(key, "maxrate") == TRUE)
1124                         dbus_message_iter_get_basic(&value, &result.maxrate);
1125
1126                 dbus_message_iter_next(&dict);
1127         }
1128
1129         if (result.path == NULL)
1130                 goto done;
1131
1132         if (result.path[0] == '\0')
1133                 goto done;
1134
1135         if (result.frequency > 0 && result.frequency < 14)
1136                 result.frequency = 2407 + (5 * result.frequency);
1137         else if (result.frequency == 14)
1138                 result.frequency = 2484;
1139
1140         strength = calculate_strength(&result);
1141         channel  = calculate_channel(&result);
1142
1143         frequency = (result.frequency < 0) ? 0 : result.frequency;
1144
1145         if (result.has_rsn == TRUE)
1146                 security = "rsn";
1147         else if (result.has_wpa == TRUE)
1148                 security = "wpa";
1149         else if (result.has_wep == TRUE)
1150                 security = "wep";
1151         else
1152                 security = "none";
1153
1154         mode = (result.adhoc == TRUE) ? "adhoc" : "managed";
1155
1156         group = build_group(result.path, result.name,
1157                                         result.ssid, result.ssid_len,
1158                                                         mode, security);
1159
1160         network = connman_device_get_network(task->device, result.path);
1161         if (network == NULL) {
1162                 int index;
1163
1164                 network = connman_network_create(result.path,
1165                                                 CONNMAN_NETWORK_TYPE_WIFI);
1166                 if (network == NULL)
1167                         goto done;
1168
1169                 index = connman_device_get_index(task->device);
1170                 connman_network_set_index(network, index);
1171
1172                 connman_network_set_protocol(network,
1173                                                 CONNMAN_NETWORK_PROTOCOL_IP);
1174
1175                 connman_network_set_address(network, result.addr,
1176                                                         result.addr_len);
1177
1178                 if (connman_device_add_network(task->device, network) < 0) {
1179                         connman_network_unref(network);
1180                         goto done;
1181                 }
1182         }
1183
1184         if (result.name != NULL && result.name[0] != '\0')
1185                 connman_network_set_name(network, result.name);
1186
1187         connman_network_set_blob(network, "WiFi.SSID",
1188                                                 result.ssid, result.ssid_len);
1189
1190         connman_network_set_string(network, "WiFi.Mode", mode);
1191
1192         DBG("%s (%s %s) strength %d (%s)",
1193                                 result.name, mode, security, strength,
1194                                 (result.has_wps == TRUE) ? "WPS" : "no WPS");
1195
1196         connman_network_set_available(network, TRUE);
1197         connman_network_set_strength(network, strength);
1198
1199         connman_network_set_uint16(network, "Frequency", frequency);
1200         connman_network_set_uint16(network, "WiFi.Channel", channel);
1201         connman_network_set_string(network, "WiFi.Security", security);
1202
1203         connman_network_set_group(network, group);
1204
1205         g_free(group);
1206
1207 done:
1208         g_free(result.path);
1209         g_free(result.addr);
1210         g_free(result.name);
1211         g_free(result.ssid);
1212
1213         dbus_message_unref(reply);
1214
1215         get_properties(task);
1216 }
1217
1218 static void get_properties(struct supplicant_task *task)
1219 {
1220         DBusMessage *message;
1221         DBusPendingCall *call;
1222         char *path;
1223
1224         path = g_slist_nth_data(task->scan_results, 0);
1225         if (path == NULL)
1226                 goto noscan;
1227
1228         message = dbus_message_new_method_call(SUPPLICANT_NAME, path,
1229                                                 SUPPLICANT_INTF ".BSSID",
1230                                                                 "properties");
1231
1232         task->scan_results = g_slist_remove(task->scan_results, path);
1233         g_free(path);
1234
1235         if (message == NULL)
1236                 goto noscan;
1237
1238         if (dbus_connection_send_with_reply(connection, message,
1239                                                 &call, TIMEOUT) == FALSE) {
1240                 connman_error("Failed to get network properties");
1241                 dbus_message_unref(message);
1242                 goto noscan;
1243         }
1244
1245         if (call == NULL) {
1246                 connman_error("D-Bus connection not available");
1247                 dbus_message_unref(message);
1248                 goto noscan;
1249         }
1250
1251         dbus_pending_call_set_notify(call, properties_reply, task, NULL);
1252
1253         dbus_message_unref(message);
1254
1255         return;
1256
1257 noscan:
1258         if (task->noscan == FALSE)
1259                 connman_device_set_scanning(task->device, FALSE);
1260 }
1261
1262 static void scan_results_reply(DBusPendingCall *call, void *user_data)
1263 {
1264         struct supplicant_task *task = user_data;
1265         DBusMessage *reply;
1266         DBusError error;
1267         char **results;
1268         int i, num_results;
1269
1270         DBG("task %p", task);
1271
1272         reply = dbus_pending_call_steal_reply(call);
1273         if (reply == NULL)
1274                 goto noscan;
1275
1276         if (dbus_message_get_type(reply) == DBUS_MESSAGE_TYPE_ERROR)
1277                 goto done;
1278
1279         dbus_error_init(&error);
1280
1281         if (dbus_message_get_args(reply, &error,
1282                                 DBUS_TYPE_ARRAY, DBUS_TYPE_OBJECT_PATH,
1283                                                 &results, &num_results,
1284                                                 DBUS_TYPE_INVALID) == FALSE) {
1285                 if (dbus_error_is_set(&error) == TRUE) {
1286                         connman_error("%s", error.message);
1287                         dbus_error_free(&error);
1288                 } else
1289                         connman_error("Wrong arguments for scan result");
1290                 goto done;
1291         }
1292
1293         if (num_results == 0)
1294                 goto done;
1295
1296         for (i = 0; i < num_results; i++) {
1297                 char *path = g_strdup(results[i]);
1298                 if (path == NULL)
1299                         continue;
1300
1301                 task->scan_results = g_slist_append(task->scan_results, path);
1302         }
1303
1304         g_strfreev(results);
1305
1306         dbus_message_unref(reply);
1307
1308         get_properties(task);
1309
1310         return;
1311
1312 done:
1313         dbus_message_unref(reply);
1314
1315 noscan:
1316         if (task->noscan == FALSE)
1317                 connman_device_set_scanning(task->device, FALSE);
1318 }
1319
1320 static void scan_results_available(struct supplicant_task *task)
1321 {
1322         DBusMessage *message;
1323         DBusPendingCall *call;
1324
1325         DBG("task %p", task);
1326
1327         message = dbus_message_new_method_call(SUPPLICANT_NAME, task->path,
1328                                                 SUPPLICANT_INTF ".Interface",
1329                                                         "scanResults");
1330         if (message == NULL)
1331                 return;
1332
1333         if (dbus_connection_send_with_reply(connection, message,
1334                                                 &call, TIMEOUT) == FALSE) {
1335                 connman_error("Failed to request scan result");
1336                 goto done;
1337         }
1338
1339         if (task->noscan == FALSE)
1340                 connman_device_set_scanning(task->device, TRUE);
1341
1342         if (call == NULL) {
1343                 connman_error("D-Bus connection not available");
1344                 goto done;
1345         }
1346
1347         dbus_pending_call_set_notify(call, scan_results_reply, task, NULL);
1348
1349 done:
1350         dbus_message_unref(message);
1351 }
1352
1353 static enum supplicant_state string2state(const char *state)
1354 {
1355         if (g_str_equal(state, "INACTIVE") == TRUE)
1356                 return WPA_INACTIVE;
1357         else if (g_str_equal(state, "SCANNING") == TRUE)
1358                 return WPA_SCANNING;
1359         else if (g_str_equal(state, "ASSOCIATING") == TRUE)
1360                 return WPA_ASSOCIATING;
1361         else if (g_str_equal(state, "ASSOCIATED") == TRUE)
1362                 return WPA_ASSOCIATED;
1363         else if (g_str_equal(state, "GROUP_HANDSHAKE") == TRUE)
1364                 return WPA_GROUP_HANDSHAKE;
1365         else if (g_str_equal(state, "4WAY_HANDSHAKE") == TRUE)
1366                 return WPA_4WAY_HANDSHAKE;
1367         else if (g_str_equal(state, "COMPLETED") == TRUE)
1368                 return WPA_COMPLETED;
1369         else if (g_str_equal(state, "DISCONNECTED") == TRUE)
1370                 return WPA_DISCONNECTED;
1371         else
1372                 return WPA_INVALID;
1373 }
1374
1375 static void state_change(struct supplicant_task *task, DBusMessage *msg)
1376 {
1377         DBusError error;
1378         const char *newstate, *oldstate;
1379         enum supplicant_state state;
1380
1381         dbus_error_init(&error);
1382
1383         if (dbus_message_get_args(msg, &error, DBUS_TYPE_STRING, &newstate,
1384                                                 DBUS_TYPE_STRING, &oldstate,
1385                                                 DBUS_TYPE_INVALID) == FALSE) {
1386                 if (dbus_error_is_set(&error) == TRUE) {
1387                         connman_error("%s", error.message);
1388                         dbus_error_free(&error);
1389                 } else
1390                         connman_error("Wrong arguments for state change");
1391                 return;
1392         }
1393
1394         DBG("state %s ==> %s", oldstate, newstate);
1395
1396         state = string2state(newstate);
1397         if (state == WPA_INVALID)
1398                 return;
1399
1400         task->state = state;
1401
1402         switch (task->state) {
1403         case WPA_SCANNING:
1404                 task->noscan = TRUE;
1405                 connman_device_set_scanning(task->device, TRUE);
1406                 break;
1407         case WPA_ASSOCIATING:
1408         case WPA_ASSOCIATED:
1409         case WPA_4WAY_HANDSHAKE:
1410         case WPA_GROUP_HANDSHAKE:
1411                 task->noscan = TRUE;
1412                 break;
1413         case WPA_COMPLETED:
1414         case WPA_DISCONNECTED:
1415                 task->noscan = FALSE;
1416                 break;
1417         case WPA_INACTIVE:
1418                 task->noscan = FALSE;
1419                 connman_device_set_scanning(task->device, FALSE);
1420                 break;
1421         case WPA_INVALID:
1422                 break;
1423         }
1424
1425         if (task->network == NULL)
1426                 return;
1427
1428         switch (task->state) {
1429         case WPA_COMPLETED:
1430                 /* carrier on */
1431                 connman_network_set_connected(task->network, TRUE);
1432                 connman_device_set_scanning(task->device, FALSE);
1433                 break;
1434         case WPA_DISCONNECTED:
1435                 /* carrier off */
1436                 connman_network_set_connected(task->network, FALSE);
1437                 connman_device_set_scanning(task->device, FALSE);
1438                 break;
1439         case WPA_ASSOCIATING:
1440                 connman_network_set_associating(task->network, TRUE);
1441                 break;
1442         default:
1443                 connman_network_set_associating(task->network, FALSE);
1444                 break;
1445         }
1446 }
1447
1448 static DBusHandlerResult supplicant_filter(DBusConnection *conn,
1449                                                 DBusMessage *msg, void *data)
1450 {
1451         struct supplicant_task *task;
1452         const char *member, *path;
1453
1454         if (dbus_message_has_interface(msg,
1455                                 SUPPLICANT_INTF ".Interface") == FALSE)
1456                 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
1457
1458         member = dbus_message_get_member(msg);
1459         if (member == NULL)
1460                 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
1461
1462         path = dbus_message_get_path(msg);
1463         if (path == NULL)
1464                 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
1465
1466         task = find_task_by_path(path);
1467         if (task == NULL)
1468                 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
1469
1470         DBG("task %p member %s", task, member);
1471
1472         if (g_str_equal(member, "ScanResultsAvailable") == TRUE)
1473                 scan_results_available(task);
1474         else if (g_str_equal(member, "StateChange") == TRUE)
1475                 state_change(task, msg);
1476
1477         return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
1478 }
1479
1480 int supplicant_start(struct connman_device *device)
1481 {
1482         struct supplicant_task *task;
1483
1484         DBG("device %p", device);
1485
1486         task = g_try_new0(struct supplicant_task, 1);
1487         if (task == NULL)
1488                 return -ENOMEM;
1489
1490         task->ifindex = connman_device_get_index(device);
1491         task->ifname = connman_inet_ifname(task->ifindex);
1492
1493         if (task->ifname == NULL) {
1494                 g_free(task);
1495                 return -ENOMEM;
1496         }
1497
1498         task->device = connman_device_ref(device);
1499
1500         task->created = FALSE;
1501         task->noscan = FALSE;
1502         task->state = WPA_INVALID;
1503
1504         task_list = g_slist_append(task_list, task);
1505
1506         return create_interface(task);
1507 }
1508
1509 int supplicant_stop(struct connman_device *device)
1510 {
1511         int index = connman_device_get_index(device);
1512         struct supplicant_task *task;
1513
1514         DBG("device %p", device);
1515
1516         task = find_task_by_index(index);
1517         if (task == NULL)
1518                 return -ENODEV;
1519
1520         task_list = g_slist_remove(task_list, task);
1521
1522         disable_network(task);
1523
1524         remove_network(task);
1525
1526         return remove_interface(task);
1527 }
1528
1529 int supplicant_scan(struct connman_device *device)
1530 {
1531         int index = connman_device_get_index(device);
1532         struct supplicant_task *task;
1533         int err;
1534
1535         DBG("device %p", device);
1536
1537         task = find_task_by_index(index);
1538         if (task == NULL)
1539                 return -ENODEV;
1540
1541         switch (task->state) {
1542         case WPA_SCANNING:
1543                 return -EALREADY;
1544         case WPA_ASSOCIATING:
1545         case WPA_ASSOCIATED:
1546         case WPA_4WAY_HANDSHAKE:
1547         case WPA_GROUP_HANDSHAKE:
1548                 return -EBUSY;
1549         default:
1550                 break;
1551         }
1552
1553         err = initiate_scan(task);
1554
1555         return 0;
1556 }
1557
1558 int supplicant_connect(struct connman_network *network)
1559 {
1560         struct supplicant_task *task;
1561         const char *address, *security, *passphrase;
1562         const void *ssid;
1563         unsigned int ssid_len;
1564         int index;
1565
1566         DBG("network %p", network);
1567
1568         address = connman_network_get_string(network, "Address");
1569         security = connman_network_get_string(network, "WiFi.Security");
1570         passphrase = connman_network_get_string(network, "WiFi.Passphrase");
1571
1572         ssid = connman_network_get_blob(network, "WiFi.SSID", &ssid_len);
1573
1574         DBG("address %s security %s passphrase %s",
1575                                         address, security, passphrase);
1576
1577         if (security == NULL && passphrase == NULL)
1578                 return -EINVAL;
1579
1580         if (g_str_equal(security, "none") == FALSE && passphrase == NULL)
1581                 return -EINVAL;
1582
1583         index = connman_network_get_index(network);
1584
1585         task = find_task_by_index(index);
1586         if (task == NULL)
1587                 return -ENODEV;
1588
1589         task->network = connman_network_ref(network);
1590
1591         add_network(task);
1592
1593         select_network(task);
1594         disable_network(task);
1595
1596         set_network(task, ssid, ssid_len, address, security, passphrase);
1597
1598         enable_network(task);
1599
1600         connman_network_set_associating(task->network, TRUE);
1601
1602         return 0;
1603 }
1604
1605 int supplicant_disconnect(struct connman_network *network)
1606 {
1607         struct supplicant_task *task;
1608         int index;
1609
1610         DBG("network %p", network);
1611
1612         index = connman_network_get_index(network);
1613
1614         task = find_task_by_index(index);
1615         if (task == NULL)
1616                 return -ENODEV;
1617
1618         disable_network(task);
1619
1620         remove_network(task);
1621
1622         connman_network_set_connected(task->network, FALSE);
1623
1624         connman_network_unref(task->network);
1625
1626         return 0;
1627 }
1628
1629 static void supplicant_activate(DBusConnection *conn)
1630 {
1631         DBusMessage *message;
1632
1633         DBG("conn %p", conn);
1634
1635         message = dbus_message_new_method_call(SUPPLICANT_NAME, "/",
1636                                 DBUS_INTERFACE_INTROSPECTABLE, "Introspect");
1637         if (message == NULL)
1638                 return;
1639
1640         dbus_message_set_no_reply(message, TRUE);
1641
1642         dbus_connection_send(conn, message, NULL);
1643
1644         dbus_message_unref(message);
1645 }
1646
1647 static GSList *driver_list = NULL;
1648
1649 static void supplicant_probe(DBusConnection *conn, void *user_data)
1650 {
1651         GSList *list;
1652
1653         DBG("conn %p", conn);
1654
1655         for (list = driver_list; list; list = list->next) {
1656                 struct supplicant_driver *driver = list->data;
1657
1658                 DBG("driver %p name %s", driver, driver->name);
1659
1660                 if (driver->probe)
1661                         driver->probe();
1662         }
1663 }
1664
1665 static void supplicant_remove(DBusConnection *conn, void *user_data)
1666 {
1667         GSList *list;
1668
1669         DBG("conn %p", conn);
1670
1671         for (list = driver_list; list; list = list->next) {
1672                 struct supplicant_driver *driver = list->data;
1673
1674                 DBG("driver %p name %s", driver, driver->name);
1675
1676                 if (driver->remove)
1677                         driver->remove();
1678         }
1679 }
1680
1681 static const char *supplicant_rule = "type=signal,"
1682                                 "interface=" SUPPLICANT_INTF ".Interface";
1683 static guint watch;
1684
1685 static int supplicant_create(void)
1686 {
1687         if (g_slist_length(driver_list) > 0)
1688                 return 0;
1689
1690         connection = connman_dbus_get_connection();
1691         if (connection == NULL)
1692                 return -EIO;
1693
1694         DBG("connection %p", connection);
1695
1696         if (dbus_connection_add_filter(connection,
1697                                 supplicant_filter, NULL, NULL) == FALSE) {
1698                 connection = connman_dbus_get_connection();
1699                 return -EIO;
1700         }
1701
1702         dbus_bus_add_match(connection, supplicant_rule, NULL);
1703         dbus_connection_flush(connection);
1704
1705         watch = g_dbus_add_service_watch(connection, SUPPLICANT_NAME,
1706                         supplicant_probe, supplicant_remove, NULL, NULL);
1707
1708         return 0;
1709 }
1710
1711 static void supplicant_destroy(void)
1712 {
1713         if (g_slist_length(driver_list) > 0)
1714                 return;
1715
1716         DBG("connection %p", connection);
1717
1718         if (watch > 0)
1719                 g_dbus_remove_watch(connection, watch);
1720
1721         dbus_bus_remove_match(connection, supplicant_rule, NULL);
1722         dbus_connection_flush(connection);
1723
1724         dbus_connection_remove_filter(connection, supplicant_filter, NULL);
1725
1726         dbus_connection_unref(connection);
1727         connection = NULL;
1728 }
1729
1730 int supplicant_register(struct supplicant_driver *driver)
1731 {
1732         int err;
1733
1734         DBG("driver %p name %s", driver, driver->name);
1735
1736         err = supplicant_create();
1737         if (err < 0)
1738                 return err;
1739
1740         driver_list = g_slist_append(driver_list, driver);
1741
1742         if (g_dbus_check_service(connection, SUPPLICANT_NAME) == TRUE)
1743                 supplicant_probe(connection, NULL);
1744         else
1745                 supplicant_activate(connection);
1746
1747         return 0;
1748 }
1749
1750 void supplicant_unregister(struct supplicant_driver *driver)
1751 {
1752         DBG("driver %p name %s", driver, driver->name);
1753
1754         supplicant_remove(connection, NULL);
1755
1756         driver_list = g_slist_remove(driver_list, driver);
1757
1758         supplicant_destroy();
1759 }