Add messages in supplicant plugin
[framework/connectivity/connman.git] / plugins / supplicant.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2010  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 <unistd.h>
28 #include <errno.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <sys/ioctl.h>
32 #include <sys/socket.h>
33 #include <linux/if_arp.h>
34 #include <linux/wireless.h>
35 #include <net/ethernet.h>
36
37 #include <gdbus.h>
38
39 #define CONNMAN_API_SUBJECT_TO_CHANGE
40 #include <connman/device.h>
41 #include <connman/option.h>
42 #include <connman/inet.h>
43 #include <connman/dbus.h>
44 #include <connman/wifi.h>
45 #include <connman/log.h>
46
47 #include "supplicant.h"
48
49 #define TIMEOUT 5000
50
51 #define IEEE80211_CAP_ESS       0x0001
52 #define IEEE80211_CAP_IBSS      0x0002
53 #define IEEE80211_CAP_PRIVACY   0x0010
54
55 #define SUPPLICANT_NAME  "fi.epitest.hostap.WPASupplicant"
56 #define SUPPLICANT_INTF  "fi.epitest.hostap.WPASupplicant"
57 #define SUPPLICANT_PATH  "/fi/epitest/hostap/WPASupplicant"
58
59 /* Taken from "WPA Supplicant - Common definitions" */
60 enum supplicant_state {
61         /**
62          * WPA_DISCONNECTED - Disconnected state
63          *
64          * This state indicates that client is not associated, but is likely to
65          * start looking for an access point. This state is entered when a
66          * connection is lost.
67          */
68         WPA_DISCONNECTED,
69
70         /**
71          * WPA_INACTIVE - Inactive state (wpa_supplicant disabled)
72          *
73          * This state is entered if there are no enabled networks in the
74          * configuration. wpa_supplicant is not trying to associate with a new
75          * network and external interaction (e.g., ctrl_iface call to add or
76          * enable a network) is needed to start association.
77          */
78         WPA_INACTIVE,
79
80         /**
81          * WPA_SCANNING - Scanning for a network
82          *
83          * This state is entered when wpa_supplicant starts scanning for a
84          * network.
85          */
86         WPA_SCANNING,
87
88         /**
89          * WPA_ASSOCIATING - Trying to associate with a BSS/SSID
90          *
91          * This state is entered when wpa_supplicant has found a suitable BSS
92          * to associate with and the driver is configured to try to associate
93          * with this BSS in ap_scan=1 mode. When using ap_scan=2 mode, this
94          * state is entered when the driver is configured to try to associate
95          * with a network using the configured SSID and security policy.
96          */
97         WPA_ASSOCIATING,
98
99         /**
100          * WPA_ASSOCIATED - Association completed
101          *
102          * This state is entered when the driver reports that association has
103          * been successfully completed with an AP. If IEEE 802.1X is used
104          * (with or without WPA/WPA2), wpa_supplicant remains in this state
105          * until the IEEE 802.1X/EAPOL authentication has been completed.
106          */
107         WPA_ASSOCIATED,
108
109         /**
110          * WPA_4WAY_HANDSHAKE - WPA 4-Way Key Handshake in progress
111          *
112          * This state is entered when WPA/WPA2 4-Way Handshake is started. In
113          * case of WPA-PSK, this happens when receiving the first EAPOL-Key
114          * frame after association. In case of WPA-EAP, this state is entered
115          * when the IEEE 802.1X/EAPOL authentication has been completed.
116          */
117         WPA_4WAY_HANDSHAKE,
118
119         /**
120          * WPA_GROUP_HANDSHAKE - WPA Group Key Handshake in progress
121          *
122          * This state is entered when 4-Way Key Handshake has been completed
123          * (i.e., when the supplicant sends out message 4/4) and when Group
124          * Key rekeying is started by the AP (i.e., when supplicant receives
125          * message 1/2).
126          */
127         WPA_GROUP_HANDSHAKE,
128
129         /**
130          * WPA_COMPLETED - All authentication completed
131          *
132          * This state is entered when the full authentication process is
133          * completed. In case of WPA2, this happens when the 4-Way Handshake is
134          * successfully completed. With WPA, this state is entered after the
135          * Group Key Handshake; with IEEE 802.1X (non-WPA) connection is
136          * completed after dynamic keys are received (or if not used, after
137          * the EAP authentication has been completed). With static WEP keys and
138          * plaintext connections, this state is entered when an association
139          * has been completed.
140          *
141          * This state indicates that the supplicant has completed its
142          * processing for the association phase and that data connection is
143          * fully configured.
144          */
145         WPA_COMPLETED,
146
147         /**
148          * WPA_INVALID - Invalid state (parsing error)
149          *
150          * This state is returned if the string input is invalid. It is not
151          * an official wpa_supplicant state.
152          */
153         WPA_INVALID,
154 };
155
156 struct supplicant_result {
157         char *path;
158         char *name;
159         unsigned char *addr;
160         unsigned int addr_len;
161         unsigned char *ssid;
162         unsigned int ssid_len;
163         dbus_uint16_t capabilities;
164         gboolean adhoc;
165         gboolean has_wep;
166         gboolean has_psk;
167         gboolean has_8021x;
168         gboolean has_wpa;
169         gboolean has_rsn;
170         gboolean has_wps;
171         dbus_int32_t frequency;
172         dbus_int32_t quality;
173         dbus_int32_t noise;
174         dbus_int32_t level;
175         dbus_int32_t maxrate;
176 };
177
178 struct supplicant_block {
179         unsigned char *ssid;
180         char *netpath;
181         gboolean enabled;
182         int num_scans;
183 };
184
185 struct supplicant_task {
186         int ifindex;
187         char *ifname;
188         gboolean cfg80211;
189         struct connman_device *device;
190         struct connman_network *network;
191         struct connman_network *pending_network;
192         char *path;
193         char *netpath;
194         gboolean hidden_found;
195         GHashTable *hidden_blocks;
196         gboolean created;
197         enum supplicant_state state;
198         gboolean scanning;
199         GSList *scan_results;
200         DBusPendingCall *scan_call;
201         DBusPendingCall *result_call;
202         struct iw_range *range;
203         gboolean disconnecting;
204 };
205
206 static GSList *task_list = NULL;
207
208 static DBusConnection *connection;
209
210 static void free_task(struct supplicant_task *task)
211 {
212         DBG("task %p", task);
213
214         g_free(task->ifname);
215         g_free(task->path);
216         g_free(task);
217 }
218
219 static void remove_block(gpointer user_data)
220 {
221         struct supplicant_block *block = user_data;
222
223         DBG("");
224
225         g_free(block->ssid);
226         g_free(block->netpath);
227 }
228
229 static struct supplicant_task *find_task_by_index(int index)
230 {
231         GSList *list;
232
233         for (list = task_list; list; list = list->next) {
234                 struct supplicant_task *task = list->data;
235
236                 if (task->ifindex == index)
237                         return task;
238         }
239
240         return NULL;
241 }
242
243 static struct supplicant_task *find_task_by_path(const char *path)
244 {
245         GSList *list;
246
247         for (list = task_list; list; list = list->next) {
248                 struct supplicant_task *task = list->data;
249
250                 if (g_strcmp0(task->path, path) == 0)
251                         return task;
252         }
253
254         return NULL;
255 }
256
257 static int get_range(struct supplicant_task *task)
258 {
259         struct iwreq wrq;
260         int fd, err;
261
262         fd = socket(PF_INET, SOCK_DGRAM, 0);
263         if (fd < 0)
264                 return -1;
265
266         memset(&wrq, 0, sizeof(struct iwreq));
267         strncpy(wrq.ifr_name, task->ifname, IFNAMSIZ);
268         wrq.u.data.pointer = task->range;
269         wrq.u.data.length = sizeof(struct iw_range);
270
271         err = ioctl(fd, SIOCGIWRANGE, &wrq);
272
273         close(fd);
274
275         if (err < 0)
276                 task->range->max_qual.updated |= IW_QUAL_ALL_INVALID;
277
278         connman_info("%s {scan} capabilities 0x%02x", task->ifname,
279                                                 task->range->scan_capa);
280
281         connman_info("%s {quality} flags 0x%02x", task->ifname,
282                                         task->range->max_qual.updated);
283
284         return err;
285 }
286
287 static int get_bssid(struct connman_device *device,
288                                 unsigned char *bssid, unsigned int *bssid_len)
289 {
290         struct iwreq wrq;
291         char *ifname;
292         int ifindex;
293         int fd, err;
294
295         ifindex = connman_device_get_index(device);
296         if (ifindex < 0)
297                 return -EINVAL;
298
299         ifname = connman_inet_ifname(ifindex);
300         if (ifname == NULL)
301                 return -EINVAL;
302
303         fd = socket(PF_INET, SOCK_DGRAM, 0);
304         if (fd < 0) {
305                 g_free(ifname);
306                 return -EINVAL;
307         }
308
309         memset(&wrq, 0, sizeof(wrq));
310         strncpy(wrq.ifr_name, ifname, IFNAMSIZ);
311
312         err = ioctl(fd, SIOCGIWAP, &wrq);
313
314         g_free(ifname);
315         close(fd);
316
317         if (err < 0)
318                 return -EIO;
319
320         memcpy(bssid, wrq.u.ap_addr.sa_data, ETH_ALEN);
321         *bssid_len = ETH_ALEN;
322
323         return 0;
324 }
325
326 static int enable_network(struct supplicant_task *task, const char *netpath,
327                           connman_bool_t enable)
328 {
329         DBusMessage *message, *reply;
330         DBusError error;
331         char *enable_string;
332
333         DBG("enable %d", enable);
334
335         enable_string = enable ? "enable" : "disable";
336
337         message = dbus_message_new_method_call(SUPPLICANT_NAME, netpath,
338                                 SUPPLICANT_INTF ".Network", enable_string);
339         if (message == NULL)
340                 return -ENOMEM;
341
342         dbus_message_set_auto_start(message, FALSE);
343
344         dbus_error_init(&error);
345
346         reply = dbus_connection_send_with_reply_and_block(connection,
347                                                         message, -1, &error);
348         if (reply == NULL) {
349                 if (dbus_error_is_set(&error) == TRUE) {
350                         connman_error("%s", error.message);
351                         dbus_error_free(&error);
352                 } else
353                         connman_error("Failed to select network");
354                 dbus_message_unref(message);
355                 return -EIO;
356         }
357
358         dbus_message_unref(reply);
359
360         dbus_message_unref(message);
361
362         return 0;
363 }
364
365 static int set_hidden_network(struct supplicant_task *task, const char *netpath,
366                                 const unsigned char *ssid, int ssid_len)
367 {
368         DBusMessage *message, *reply;
369         DBusMessageIter array, dict;
370         DBusError error;
371         dbus_uint32_t scan_ssid = 1;
372         const char *invalid_address = "ff:ff:ff:ff:ff:ff";
373
374         message = dbus_message_new_method_call(SUPPLICANT_NAME, netpath,
375                                         SUPPLICANT_INTF ".Network", "set");
376         if (message == NULL)
377                 return -ENOMEM;
378
379         dbus_message_set_auto_start(message, FALSE);
380
381         dbus_message_iter_init_append(message, &array);
382
383         connman_dbus_dict_open(&array, &dict);
384
385         connman_dbus_dict_append_basic(&dict, "scan_ssid",
386                                          DBUS_TYPE_UINT32, &scan_ssid);
387
388         connman_dbus_dict_append_fixed_array(&dict, "ssid",
389                                         DBUS_TYPE_BYTE, &ssid, ssid_len);
390
391         /*
392          * We're setting an invalid BSSID to prevent wpa_s from associating
393          * automatically to this block once it's found.
394          */
395         connman_dbus_dict_append_basic(&dict, "bssid",
396                                         DBUS_TYPE_STRING, &invalid_address);
397
398         connman_dbus_dict_close(&array, &dict);
399
400         dbus_error_init(&error);
401
402         reply = dbus_connection_send_with_reply_and_block(connection,
403                                                         message, -1, &error);
404         if (reply == NULL) {
405                 if (dbus_error_is_set(&error) == TRUE) {
406                         connman_error("%s", error.message);
407                         dbus_error_free(&error);
408                 } else
409                         connman_error("Failed to set network options");
410                 dbus_message_unref(message);
411                 return -EIO;
412         }
413
414         dbus_message_unref(reply);
415
416         dbus_message_unref(message);
417
418         return 0;
419 }
420
421 static void block_reset(gpointer key, gpointer value, gpointer user_data)
422 {
423         struct supplicant_block *block = value;
424         struct supplicant_task *task = user_data;
425
426         block->num_scans = 0;
427         if (block->enabled)
428                 enable_network(task, block->netpath, FALSE);
429
430         block->enabled = FALSE;
431 }
432
433 #define MAX_BLOCK_SCANS 2
434 static void hidden_block_enable(struct supplicant_task *task)
435 {
436         GHashTableIter iter;
437         gpointer key, value;
438         struct supplicant_block *block;
439
440         DBG("network %p", task->network);
441
442         if (g_hash_table_size(task->hidden_blocks) == 0)
443                 return;
444
445         /*
446          * If we're associated or associating, we no longer need to
447          * look for hidden networks.
448          */
449         if (task->network)
450                 return;
451
452         /*
453          * We go through the block list and:
454          * - If we scanned it more than twice, we disable it and move
455          *   on to the next block.
456          * - If the next block is not enabled, we enable it, start
457          *   the scan counter, and return. This routine will be called
458          *   again when the next scan results are available.
459          * - If we're done with all the blocks there, we just reset them.
460          */
461         g_hash_table_iter_init(&iter, task->hidden_blocks);
462         while (g_hash_table_iter_next(&iter, &key, &value)) {
463                 block = value;
464
465                 DBG("%s num of scans %d enabled %d",
466                         block->ssid, block->num_scans, block->enabled);
467
468                 if (block->num_scans > MAX_BLOCK_SCANS) {
469                         if (block->enabled == FALSE)
470                                 continue;
471
472                         enable_network(task, block->netpath, FALSE);
473                         block->enabled = FALSE;
474                         continue;
475                 }
476
477                 if (block->enabled == FALSE) {
478                         enable_network(task, block->netpath, TRUE);
479                         block->enabled = TRUE;
480                 }
481
482                 block->num_scans++;
483
484                 return;
485         }
486
487         g_hash_table_foreach(task->hidden_blocks, block_reset, task);
488 }
489
490 static int add_hidden_network(struct supplicant_task *task,
491                                 const unsigned char *ssid, int ssid_len)
492 {
493         DBusMessage *message, *reply;
494         DBusError error;
495         const char *path;
496         struct supplicant_block *block;
497         char *netpath = NULL;
498         int ret, i;
499
500         DBG("task %p", task);
501
502         message = dbus_message_new_method_call(SUPPLICANT_NAME, task->path,
503                                 SUPPLICANT_INTF ".Interface", "addNetwork");
504         if (message == NULL)
505                 return -ENOMEM;
506
507         dbus_message_set_auto_start(message, FALSE);
508
509         dbus_error_init(&error);
510
511         reply = dbus_connection_send_with_reply_and_block(connection,
512                                                         message, -1, &error);
513         if (reply == NULL) {
514                 if (dbus_error_is_set(&error) == TRUE) {
515                         connman_error("%s", error.message);
516                         dbus_error_free(&error);
517                 } else
518                         connman_error("Failed to add network");
519                 dbus_message_unref(message);
520                 return -EIO;
521         }
522
523         dbus_error_init(&error);
524
525         if (dbus_message_get_args(reply, &error, DBUS_TYPE_OBJECT_PATH, &path,
526                                                 DBUS_TYPE_INVALID) == FALSE) {
527                 if (dbus_error_is_set(&error) == TRUE) {
528                         connman_error("%s", error.message);
529                         dbus_error_free(&error);
530                 } else
531                         connman_error("Wrong arguments for network");
532                 dbus_message_unref(reply);
533                 return -EIO;
534         }
535
536         netpath = g_strdup(path);
537
538         ret = set_hidden_network(task, netpath, ssid, ssid_len);
539         if (ret < 0)
540                 goto done;
541
542         block = g_try_new0(struct supplicant_block, 1);
543         if (block == NULL)
544                 goto done;
545
546         block->ssid = g_try_malloc0(ssid_len + 1);
547         if (block->ssid == NULL) {
548                 g_free(block);
549                 goto done;
550         }
551
552         for (i = 0; i < ssid_len; i++) {
553                 if (g_ascii_isprint(ssid[i]))
554                         block->ssid[i] = ssid[i];
555                 else
556                         block->ssid[i] = ' ';
557         }
558
559         block->netpath = netpath;
560         block->enabled = FALSE;
561         block->num_scans = 0;
562
563         DBG("path %s ssid %s", block->netpath, block->ssid);
564
565         g_hash_table_replace(task->hidden_blocks, block->ssid, block);
566
567         return 0;
568 done:
569         g_free(netpath);
570
571         dbus_message_unref(reply);
572
573         dbus_message_unref(message);
574
575         return ret;
576 }
577
578 static void add_interface_reply(DBusPendingCall *call, void *user_data)
579 {
580         struct supplicant_task *task = user_data;
581         DBusMessage *reply;
582         DBusError error;
583         const char *path;
584         char **hex_ssids, *hex_ssid;
585         int i;
586
587         DBG("task %p", task);
588
589         reply = dbus_pending_call_steal_reply(call);
590
591         if (dbus_message_get_type(reply) == DBUS_MESSAGE_TYPE_ERROR)
592                 goto failed;
593
594         dbus_error_init(&error);
595
596         if (dbus_message_get_args(reply, &error, DBUS_TYPE_OBJECT_PATH, &path,
597                                                 DBUS_TYPE_INVALID) == FALSE) {
598                 if (dbus_error_is_set(&error) == TRUE) {
599                         connman_error("%s", error.message);
600                         dbus_error_free(&error);
601                 } else
602                         connman_error("Wrong arguments for add interface");
603                 goto failed;
604         }
605
606         DBG("path %s", path);
607
608         task->path = g_strdup(path);
609         task->created = TRUE;
610
611         connman_device_set_powered(task->device, TRUE);
612
613         dbus_message_unref(reply);
614
615         dbus_pending_call_unref(call);
616
617         hex_ssids = connman_wifi_load_ssid();
618         if (hex_ssids == NULL)
619                 return;
620
621         for (i = 0; hex_ssids[i]; i++) {
622                 unsigned char *ssid;
623                 unsigned int j, k = 0, hex;
624                 size_t hex_ssid_len;
625
626                 hex_ssid = hex_ssids[i];
627                 hex_ssid_len = strlen(hex_ssid);
628
629                 ssid = g_try_malloc0(hex_ssid_len / 2 + 1);
630                 if (ssid == NULL)
631                         break;
632
633                 for (j = 0, k = 0; j < hex_ssid_len; j += 2) {
634                         sscanf(hex_ssid + j, "%02x", &hex);
635                         ssid[k++] = hex;
636                 }
637
638                 if (add_hidden_network(task, ssid, hex_ssid_len / 2) < 0)
639                         break;
640         }
641
642         g_strfreev(hex_ssids);
643
644         return;
645
646 failed:
647         dbus_message_unref(reply);
648
649         dbus_pending_call_unref(call);
650
651         task_list = g_slist_remove(task_list, task);
652
653         connman_device_unref(task->device);
654
655         free_task(task);
656 }
657
658 static int add_interface(struct supplicant_task *task)
659 {
660         const char *driver = connman_option_get_string("wifi");
661         DBusMessage *message;
662         DBusMessageIter array, dict;
663         DBusPendingCall *call;
664
665         DBG("task %p", task);
666
667         message = dbus_message_new_method_call(SUPPLICANT_NAME, SUPPLICANT_PATH,
668                                         SUPPLICANT_INTF, "addInterface");
669         if (message == NULL)
670                 return -ENOMEM;
671
672         dbus_message_set_auto_start(message, FALSE);
673
674         dbus_message_iter_init_append(message, &array);
675
676         dbus_message_iter_append_basic(&array,
677                                         DBUS_TYPE_STRING, &task->ifname);
678
679         connman_dbus_dict_open(&array, &dict);
680
681         connman_dbus_dict_append_basic(&dict, "driver",
682                                                 DBUS_TYPE_STRING, &driver);
683
684         connman_dbus_dict_close(&array, &dict);
685
686         if (dbus_connection_send_with_reply(connection, message,
687                                                 &call, TIMEOUT) == FALSE) {
688                 connman_error("Failed to add interface");
689                 dbus_message_unref(message);
690                 return -EIO;
691         }
692
693         if (call == NULL) {
694                 connman_error("D-Bus connection not available");
695                 dbus_message_unref(message);
696                 return -EIO;
697         }
698
699         dbus_pending_call_set_notify(call, add_interface_reply, task, NULL);
700
701         dbus_message_unref(message);
702
703         return -EINPROGRESS;
704 }
705
706 static void get_interface_reply(DBusPendingCall *call, void *user_data)
707 {
708         struct supplicant_task *task = user_data;
709         DBusMessage *reply;
710         DBusError error;
711         const char *path;
712
713         DBG("task %p", task);
714
715         reply = dbus_pending_call_steal_reply(call);
716
717         if (dbus_message_get_type(reply) == DBUS_MESSAGE_TYPE_ERROR) {
718                 add_interface(task);
719                 goto done;
720         }
721
722         dbus_error_init(&error);
723
724         if (dbus_message_get_args(reply, &error, DBUS_TYPE_OBJECT_PATH, &path,
725                                                 DBUS_TYPE_INVALID) == FALSE) {
726                 if (dbus_error_is_set(&error) == TRUE) {
727                         connman_error("%s", error.message);
728                         dbus_error_free(&error);
729                 } else
730                         connman_error("Wrong arguments for get interface");
731                 goto done;
732         }
733
734         DBG("path %s", path);
735
736         task->path = g_strdup(path);
737         task->created = FALSE;
738
739         connman_device_set_powered(task->device, TRUE);
740
741 done:
742         dbus_message_unref(reply);
743
744         dbus_pending_call_unref(call);
745 }
746
747 static int create_interface(struct supplicant_task *task)
748 {
749         DBusMessage *message;
750         DBusPendingCall *call;
751
752         DBG("task %p", task);
753
754         message = dbus_message_new_method_call(SUPPLICANT_NAME, SUPPLICANT_PATH,
755                                         SUPPLICANT_INTF, "getInterface");
756         if (message == NULL)
757                 return -ENOMEM;
758
759         dbus_message_set_auto_start(message, FALSE);
760
761         dbus_message_append_args(message, DBUS_TYPE_STRING, &task->ifname,
762                                                         DBUS_TYPE_INVALID);
763
764         if (dbus_connection_send_with_reply(connection, message,
765                                                 &call, TIMEOUT) == FALSE) {
766                 connman_error("Failed to get interface");
767                 dbus_message_unref(message);
768                 return -EIO;
769         }
770
771         if (call == NULL) {
772                 connman_error("D-Bus connection not available");
773                 dbus_message_unref(message);
774                 return -EIO;
775         }
776
777         dbus_pending_call_set_notify(call, get_interface_reply, task, NULL);
778
779         dbus_message_unref(message);
780
781         return -EINPROGRESS;
782 }
783
784 static void remove_interface_reply(DBusPendingCall *call, void *user_data)
785 {
786         struct supplicant_task *task = user_data;
787         DBusMessage *reply;
788
789         DBG("task %p", task);
790
791         reply = dbus_pending_call_steal_reply(call);
792
793         connman_device_set_powered(task->device, FALSE);
794
795         connman_device_unref(task->device);
796
797         connman_inet_ifdown(task->ifindex);
798
799         free_task(task);
800
801         dbus_message_unref(reply);
802
803         dbus_pending_call_unref(call);
804 }
805
806 static int remove_interface(struct supplicant_task *task)
807 {
808         DBusMessage *message;
809         DBusPendingCall *call;
810
811         DBG("task %p", task);
812
813         if (task->path == NULL)
814                 return 0;
815
816 #if 0
817         if (task->created == FALSE) {
818                 connman_device_set_powered(task->device, FALSE);
819                 return 0;
820         }
821 #endif
822
823         message = dbus_message_new_method_call(SUPPLICANT_NAME, SUPPLICANT_PATH,
824                                         SUPPLICANT_INTF, "removeInterface");
825         if (message == NULL)
826                 return -ENOMEM;
827
828         dbus_message_set_auto_start(message, FALSE);
829
830         dbus_message_append_args(message, DBUS_TYPE_OBJECT_PATH, &task->path,
831                                                         DBUS_TYPE_INVALID);
832
833         if (dbus_connection_send_with_reply(connection, message,
834                                                 &call, TIMEOUT) == FALSE) {
835                 connman_error("Failed to remove interface");
836                 dbus_message_unref(message);
837                 return -EIO;
838         }
839
840         if (call == NULL) {
841                 connman_error("D-Bus connection not available");
842                 dbus_message_unref(message);
843                 return -EIO;
844         }
845
846         dbus_pending_call_set_notify(call, remove_interface_reply, task, NULL);
847
848         dbus_message_unref(message);
849
850         return -EINPROGRESS;
851 }
852
853 static int set_ap_scan(struct supplicant_task *task)
854 {
855         DBusMessage *message, *reply;
856         DBusError error;
857         guint32 ap_scan = 1;
858
859         DBG("task %p", task);
860
861         message = dbus_message_new_method_call(SUPPLICANT_NAME, task->path,
862                                 SUPPLICANT_INTF ".Interface", "setAPScan");
863         if (message == NULL)
864                 return -ENOMEM;
865
866         dbus_message_set_auto_start(message, FALSE);
867
868         dbus_message_append_args(message, DBUS_TYPE_UINT32, &ap_scan,
869                                                         DBUS_TYPE_INVALID);
870
871         dbus_error_init(&error);
872
873         reply = dbus_connection_send_with_reply_and_block(connection,
874                                                         message, -1, &error);
875         if (reply == NULL) {
876                 if (dbus_error_is_set(&error) == TRUE) {
877                         connman_error("%s", error.message);
878                         dbus_error_free(&error);
879                 } else
880                         connman_error("Failed to set AP scan");
881                 dbus_message_unref(message);
882                 return -EIO;
883         }
884
885         dbus_message_unref(message);
886
887         dbus_message_unref(reply);
888
889         return 0;
890 }
891
892 static int add_network(struct supplicant_task *task)
893 {
894         DBusMessage *message, *reply;
895         DBusError error;
896         const char *path;
897
898         DBG("task %p", task);
899
900         if (task->netpath != NULL)
901                 return -EALREADY;
902
903         message = dbus_message_new_method_call(SUPPLICANT_NAME, task->path,
904                                 SUPPLICANT_INTF ".Interface", "addNetwork");
905         if (message == NULL)
906                 return -ENOMEM;
907
908         dbus_message_set_auto_start(message, FALSE);
909
910         dbus_error_init(&error);
911
912         reply = dbus_connection_send_with_reply_and_block(connection,
913                                                         message, -1, &error);
914         if (reply == NULL) {
915                 if (dbus_error_is_set(&error) == TRUE) {
916                         connman_error("%s", error.message);
917                         dbus_error_free(&error);
918                 } else
919                         connman_error("Failed to add network");
920                 dbus_message_unref(message);
921                 return -EIO;
922         }
923
924         dbus_message_unref(message);
925
926         dbus_error_init(&error);
927
928         if (dbus_message_get_args(reply, &error, DBUS_TYPE_OBJECT_PATH, &path,
929                                                 DBUS_TYPE_INVALID) == FALSE) {
930                 if (dbus_error_is_set(&error) == TRUE) {
931                         connman_error("%s", error.message);
932                         dbus_error_free(&error);
933                 } else
934                         connman_error("Wrong arguments for network");
935                 dbus_message_unref(reply);
936                 return -EIO;
937         }
938
939         DBG("path %s", path);
940
941         task->netpath = g_strdup(path);
942
943         dbus_message_unref(reply);
944
945         return 0;
946 }
947
948 static int remove_network(struct supplicant_task *task)
949 {
950         DBusMessage *message, *reply;
951         DBusError error;
952
953         DBG("task %p", task);
954
955         if (task->netpath == NULL || task->path == NULL)
956                 return -EINVAL;
957
958         message = dbus_message_new_method_call(SUPPLICANT_NAME, task->path,
959                                 SUPPLICANT_INTF ".Interface", "removeNetwork");
960         if (message == NULL)
961                 return -ENOMEM;
962
963         dbus_message_set_auto_start(message, FALSE);
964
965         dbus_message_append_args(message, DBUS_TYPE_OBJECT_PATH, &task->netpath,
966                                                         DBUS_TYPE_INVALID);
967
968         dbus_error_init(&error);
969
970         reply = dbus_connection_send_with_reply_and_block(connection,
971                                                         message, -1, &error);
972         if (reply == NULL) {
973                 if (dbus_error_is_set(&error) == TRUE) {
974                         connman_error("%s", error.message);
975                         dbus_error_free(&error);
976                 } else
977                         connman_error("Failed to remove network");
978                 dbus_message_unref(message);
979                 return -EIO;
980         }
981
982         dbus_message_unref(message);
983
984         dbus_message_unref(reply);
985
986         g_free(task->netpath);
987         task->netpath = NULL;
988
989         return 0;
990 }
991
992 static int select_network(struct supplicant_task *task)
993 {
994         DBusMessage *message, *reply;
995         DBusError error;
996
997         DBG("task %p", task);
998
999         if (task->netpath == NULL)
1000                 return -EINVAL;
1001
1002         message = dbus_message_new_method_call(SUPPLICANT_NAME, task->path,
1003                                 SUPPLICANT_INTF ".Interface", "selectNetwork");
1004         if (message == NULL)
1005                 return -ENOMEM;
1006
1007         dbus_message_set_auto_start(message, FALSE);
1008
1009         dbus_message_append_args(message, DBUS_TYPE_OBJECT_PATH, &task->netpath,
1010                                                         DBUS_TYPE_INVALID);
1011
1012         dbus_error_init(&error);
1013
1014         reply = dbus_connection_send_with_reply_and_block(connection,
1015                                                         message, -1, &error);
1016         if (reply == NULL) {
1017                 if (dbus_error_is_set(&error) == TRUE) {
1018                         connman_error("%s", error.message);
1019                         dbus_error_free(&error);
1020                 } else
1021                         connman_error("Failed to select network");
1022                 dbus_message_unref(message);
1023                 return -EIO;
1024         }
1025
1026         dbus_message_unref(message);
1027
1028         dbus_message_unref(reply);
1029
1030         return 0;
1031 }
1032
1033 static int disconnect_network(struct supplicant_task *task)
1034 {
1035         DBusMessage *message, *reply;
1036         DBusError error;
1037
1038         DBG("task %p", task);
1039
1040         if (task->path == NULL)
1041                 return -EINVAL;
1042
1043         message = dbus_message_new_method_call(SUPPLICANT_NAME, task->path,
1044                                 SUPPLICANT_INTF ".Interface", "disconnect");
1045         if (message == NULL)
1046                 return -ENOMEM;
1047
1048         dbus_message_set_auto_start(message, FALSE);
1049
1050         dbus_error_init(&error);
1051
1052         reply = dbus_connection_send_with_reply_and_block(connection,
1053                                                         message, -1, &error);
1054         if (reply == NULL) {
1055                 if (dbus_error_is_set(&error) == TRUE) {
1056                         connman_error("%s", error.message);
1057                         dbus_error_free(&error);
1058                 } else
1059                         connman_error("Failed to disconnect network");
1060                 dbus_message_unref(message);
1061                 return -EIO;
1062         }
1063
1064         dbus_message_unref(message);
1065
1066         dbus_message_unref(reply);
1067
1068         return 0;
1069 }
1070
1071 static int set_network_tls(struct connman_network *network,
1072                            DBusMessageIter *dict)
1073 {
1074         const char *private_key, *client_cert, *ca_cert;
1075         const char *private_key_password;
1076
1077         /*
1078          * For TLS, we at least need:
1079          *              The client certificate
1080          *              The client private key file
1081          *              The client private key file password
1082          *
1083          * The Authority certificate is optional.
1084          */
1085         client_cert = connman_network_get_string(network,
1086                                                 "WiFi.ClientCertFile");
1087         if (client_cert == NULL) {
1088                 connman_error("Error in TLS authentication: "
1089                               "a ClientCertFile must be defined\n");
1090                 return -EINVAL;
1091         }
1092
1093         private_key = connman_network_get_string(network,
1094                                                 "WiFi.PrivateKeyFile");
1095         if (private_key == NULL) {
1096                 connman_error("Error in TLS authentication: "
1097                               "a PrivateKeyFile must be defined\n");
1098                 return -EINVAL;
1099         }
1100
1101         private_key_password = connman_network_get_string(network,
1102                                                 "WiFi.PrivateKeyPassphrase");
1103         if (private_key_password == NULL) {
1104                 connman_error("Error in TLS authentication: "
1105                               "a PrivateKeyPassphrase must be defined\n");
1106                 return -EINVAL;
1107         }
1108
1109         ca_cert = connman_network_get_string(network, "WiFi.CACertFile");
1110         if (ca_cert)
1111                 connman_dbus_dict_append_basic(dict, "ca_cert",
1112                                                 DBUS_TYPE_STRING, &ca_cert);
1113         else
1114                 connman_info("No CACertFile has been provided "
1115                              "to do the TLS authentication\n");
1116
1117         DBG("client cert %s private key %s", client_cert, private_key);
1118
1119         connman_dbus_dict_append_basic(dict, "private_key",
1120                                                 DBUS_TYPE_STRING, &private_key);
1121         connman_dbus_dict_append_basic(dict, "private_key_passwd",
1122                                                         DBUS_TYPE_STRING,
1123                                                         &private_key_password);
1124         connman_dbus_dict_append_basic(dict, "client_cert",
1125                                                 DBUS_TYPE_STRING, &client_cert);
1126
1127         return 0;
1128 }
1129
1130 static int set_network_peap(struct connman_network *network,
1131                             DBusMessageIter *dict, const char *passphrase)
1132 {
1133         const char *client_cert, *ca_cert, *phase2;
1134         char *phase2_auth;
1135
1136         /*
1137          * For PEAP/TTLS, we at least need
1138          *              The authority certificate
1139          *              The 2nd phase authentication method
1140          *              The 2nd phase passphrase
1141          *
1142          * The Client certificate is optional although strongly required
1143          * When setting it, we need in addition
1144          *              The Client private key file
1145          *              The Client private key file password
1146          */
1147         ca_cert = connman_network_get_string(network, "WiFi.CACertFile");
1148         if (ca_cert == NULL) {
1149                 connman_error("Error in PEAP/TTLS authentication: "
1150                               "CACertFile must be defined\n");
1151                 return -EINVAL;
1152         }
1153
1154         phase2 = connman_network_get_string(network, "WiFi.Phase2");
1155         if (phase2 == NULL) {
1156                 connman_error("Error in PEAP/TTLS authentication: "
1157                               "Phase2 must be defined\n");
1158                 return -EINVAL;
1159         }
1160
1161         DBG("CA cert %s phase2 auth %s", ca_cert, phase2);
1162
1163         client_cert = connman_network_get_string(network,
1164                                                         "WiFi.ClientCertFile");
1165         if (client_cert) {
1166                 const char *private_key, *private_key_password;
1167
1168                 private_key = connman_network_get_string(network,
1169                                                         "WiFi.PrivateKeyFile");
1170                 if (private_key == NULL) {
1171                         connman_error("Error in PEAP/TTLS authentication: "
1172                                       "with ClientCertFile, "
1173                                       "PrivateKeyFile must be defined\n");
1174                         return -EINVAL;
1175                 }
1176
1177                 private_key_password =
1178                         connman_network_get_string(network,
1179                                                 "WiFi.PrivateKeyPassphrase");
1180                 if (private_key_password == NULL) {
1181                         connman_error("Error in PEAP/TTLS authentication: "
1182                                       "with ClientCertFile, "
1183                                       "PrivateKeyPassphrase must be defined\n");
1184                         return -EINVAL;
1185                 }
1186
1187                 connman_dbus_dict_append_basic(dict, "client_cert",
1188                                                 DBUS_TYPE_STRING, &client_cert);
1189
1190                 connman_dbus_dict_append_basic(dict, "private_key",
1191                                                 DBUS_TYPE_STRING, &private_key);
1192
1193                 connman_dbus_dict_append_basic(dict, "private_key_passwd",
1194                                                         DBUS_TYPE_STRING,
1195                                                         &private_key_password);
1196
1197                 DBG("client cert %s private key %s", client_cert, private_key);
1198         } else
1199                 connman_info("No client certificate has been provided "
1200                              "to do the PEAP/TTLS authentication\n");
1201
1202         phase2_auth = g_strdup_printf("\"auth=%s\"", phase2);
1203
1204         connman_dbus_dict_append_basic(dict, "password",
1205                                                 DBUS_TYPE_STRING, &passphrase);
1206
1207         connman_dbus_dict_append_basic(dict, "ca_cert",
1208                                                 DBUS_TYPE_STRING, &ca_cert);
1209
1210         connman_dbus_dict_append_basic(dict, "phase2",
1211                                                 DBUS_TYPE_STRING, &phase2_auth);
1212
1213         g_free(phase2_auth);
1214
1215         return 0;
1216 }
1217
1218 static int set_network(struct supplicant_task *task,
1219                                 const unsigned char *network, int len,
1220                                 const char *address, const char *security,
1221                                                         const char *passphrase)
1222 {
1223         DBusMessage *message, *reply;
1224         DBusMessageIter array, dict;
1225         DBusError error;
1226         dbus_uint32_t scan_ssid = 1;
1227
1228         DBG("task %p", task);
1229
1230         if (task->netpath == NULL)
1231                 return -EINVAL;
1232
1233         message = dbus_message_new_method_call(SUPPLICANT_NAME, task->netpath,
1234                                         SUPPLICANT_INTF ".Network", "set");
1235         if (message == NULL)
1236                 return -ENOMEM;
1237
1238         dbus_message_set_auto_start(message, FALSE);
1239
1240         dbus_message_iter_init_append(message, &array);
1241
1242         connman_dbus_dict_open(&array, &dict);
1243
1244         connman_dbus_dict_append_basic(&dict, "scan_ssid",
1245                                          DBUS_TYPE_UINT32, &scan_ssid);
1246
1247         if (network)
1248                 connman_dbus_dict_append_fixed_array(&dict, "ssid",
1249                                                 DBUS_TYPE_BYTE, &network, len);
1250         else if (address)
1251                 connman_dbus_dict_append_basic(&dict, "bssid",
1252                                                 DBUS_TYPE_STRING, &address);
1253
1254         if (g_ascii_strcasecmp(security, "psk") == 0 ||
1255                                 g_ascii_strcasecmp(security, "wpa") == 0 ||
1256                                 g_ascii_strcasecmp(security, "rsn") == 0) {
1257                 const char *key_mgmt = "WPA-PSK";
1258                 connman_dbus_dict_append_basic(&dict, "key_mgmt",
1259                                                 DBUS_TYPE_STRING, &key_mgmt);
1260
1261                 if (passphrase && strlen(passphrase) > 0)
1262                         connman_dbus_dict_append_basic(&dict, "psk",
1263                                                 DBUS_TYPE_STRING, &passphrase);
1264         } else if (g_ascii_strcasecmp(security, "ieee8021x") == 0) {
1265                 struct connman_network *network = task->network;
1266                 const char *key_mgmt = "WPA-EAP", *eap, *identity;
1267                 char *eap_value;
1268
1269                 /*
1270                  * If our private key password is unset,
1271                  * we use the supplied passphrase. That is needed
1272                  * for PEAP where 2 passphrases (identity and client
1273                  * cert may have to be provided.
1274                  */
1275                 if (connman_network_get_string(network,
1276                                         "WiFi.PrivateKeyPassphrase") == NULL)
1277                         connman_network_set_string(network,
1278                                                 "WiFi.PrivateKeyPassphrase",
1279                                                                 passphrase);
1280
1281                 eap = connman_network_get_string(network, "WiFi.EAP");
1282                 if (eap == NULL)
1283                         goto invalid;
1284
1285                 /* We must have an identity for both PEAP and TLS */
1286                 identity = connman_network_get_string(network, "WiFi.Identity");
1287                 if (identity == NULL)
1288                         goto invalid;
1289
1290                 DBG("key_mgmt %s eap %s identity %s", key_mgmt, eap, identity);
1291
1292                 if (g_strcmp0(eap, "tls") == 0) {
1293                         int err;
1294
1295                         err = set_network_tls(network, &dict);
1296                         if (err < 0) {
1297                                 dbus_message_unref(message);
1298                                 return err;
1299                         }
1300                 } else if (g_strcmp0(eap, "peap") == 0 ||
1301                                    g_strcmp0(eap, "ttls") == 0) {
1302                         int err;
1303
1304                         err = set_network_peap(network, &dict, passphrase);
1305                         if (err < 0) {
1306                                 dbus_message_unref(message);
1307                                 return err;
1308                         }
1309                 } else {
1310                         connman_error("Unknown EAP %s", eap);
1311                         goto invalid;
1312                 }
1313
1314                 /* wpa_supplicant only accepts upper case EAPs */
1315                 eap_value = g_ascii_strup(eap, -1);
1316
1317                 connman_dbus_dict_append_basic(&dict, "key_mgmt",
1318                                                         DBUS_TYPE_STRING,
1319                                                         &key_mgmt);
1320                 connman_dbus_dict_append_basic(&dict, "eap",
1321                                                         DBUS_TYPE_STRING,
1322                                                         &eap_value);
1323                 connman_dbus_dict_append_basic(&dict, "identity",
1324                                                         DBUS_TYPE_STRING,
1325                                                         &identity);
1326
1327                 g_free(eap_value);
1328
1329         } else if (g_ascii_strcasecmp(security, "wep") == 0) {
1330                 const char *key_mgmt = "NONE";
1331                 const char *auth_alg = "OPEN";
1332                 const char *key_index = "0";
1333
1334                 if (task->cfg80211 == TRUE)
1335                         auth_alg = "OPEN SHARED";
1336
1337                 connman_dbus_dict_append_basic(&dict, "auth_alg",
1338                                                 DBUS_TYPE_STRING, &auth_alg);
1339
1340                 connman_dbus_dict_append_basic(&dict, "key_mgmt",
1341                                                 DBUS_TYPE_STRING, &key_mgmt);
1342
1343                 if (passphrase) {
1344                         int size = strlen(passphrase);
1345                         if (size == 10 || size == 26) {
1346                                 unsigned char *key = malloc(13);
1347                                 char tmp[3];
1348                                 int i;
1349                                 memset(tmp, 0, sizeof(tmp));
1350                                 if (key == NULL)
1351                                         size = 0;
1352                                 for (i = 0; i < size / 2; i++) {
1353                                         memcpy(tmp, passphrase + (i * 2), 2);
1354                                         key[i] = (unsigned char) strtol(tmp,
1355                                                                 NULL, 16);
1356                                 }
1357                                 connman_dbus_dict_append_fixed_array(&dict,
1358                                                 "wep_key0", DBUS_TYPE_BYTE,
1359                                                         &key, size / 2);
1360                                 free(key);
1361                         } else if (size == 5 || size == 13) {
1362                                 unsigned char *key = malloc(13);
1363                                 int i;
1364                                 if (key == NULL)
1365                                         size = 0;
1366                                 for (i = 0; i < size; i++)
1367                                         key[i] = (unsigned char) passphrase[i];
1368                                 connman_dbus_dict_append_fixed_array(&dict,
1369                                                 "wep_key0", DBUS_TYPE_BYTE,
1370                                                                 &key, size);
1371                                 free(key);
1372                         } else
1373                                 connman_dbus_dict_append_basic(&dict,
1374                                                 "wep_key0", DBUS_TYPE_STRING,
1375                                                                 &passphrase);
1376
1377                         connman_dbus_dict_append_basic(&dict, "wep_tx_keyidx",
1378                                                 DBUS_TYPE_STRING, &key_index);
1379                 }
1380         } else {
1381                 const char *key_mgmt = "NONE";
1382                 connman_dbus_dict_append_basic(&dict, "key_mgmt",
1383                                                 DBUS_TYPE_STRING, &key_mgmt);
1384         }
1385
1386         connman_dbus_dict_close(&array, &dict);
1387
1388         dbus_error_init(&error);
1389
1390         reply = dbus_connection_send_with_reply_and_block(connection,
1391                                                         message, -1, &error);
1392         if (reply == NULL) {
1393                 if (dbus_error_is_set(&error) == TRUE) {
1394                         connman_error("%s", error.message);
1395                         dbus_error_free(&error);
1396                 } else
1397                         connman_error("Failed to set network options");
1398                 dbus_message_unref(message);
1399                 return -EIO;
1400         }
1401
1402         dbus_message_unref(message);
1403
1404         dbus_message_unref(reply);
1405
1406         return 0;
1407
1408 invalid:
1409         dbus_message_unref(message);
1410         return -EINVAL;
1411 }
1412
1413 static void scan_reply(DBusPendingCall *call, void *user_data)
1414 {
1415         struct supplicant_task *task = user_data;
1416         DBusMessage *reply;
1417
1418         DBG("task %p", task);
1419
1420         task->scan_call = NULL;
1421
1422         reply = dbus_pending_call_steal_reply(call);
1423
1424         if (dbus_message_get_type(reply) == DBUS_MESSAGE_TYPE_ERROR) {
1425                 connman_device_set_scanning(task->device, FALSE);
1426                 goto done;
1427         }
1428
1429         if (task->scanning == TRUE)
1430                 connman_device_set_scanning(task->device, TRUE);
1431
1432 done:
1433         dbus_message_unref(reply);
1434
1435         dbus_pending_call_unref(call);
1436 }
1437
1438
1439 static int initiate_scan(struct supplicant_task *task)
1440 {
1441         DBusMessage *message;
1442
1443         DBG("task %p", task);
1444
1445         if (task->path == NULL)
1446                 return -EINVAL;
1447
1448         if (task->scan_call != NULL)
1449                 return -EALREADY;
1450
1451         message = dbus_message_new_method_call(SUPPLICANT_NAME, task->path,
1452                                         SUPPLICANT_INTF ".Interface", "scan");
1453         if (message == NULL)
1454                 return -ENOMEM;
1455
1456         dbus_message_set_auto_start(message, FALSE);
1457
1458         if (dbus_connection_send_with_reply(connection, message,
1459                                         &task->scan_call, TIMEOUT) == FALSE) {
1460                 connman_error("Failed to initiate scan");
1461                 dbus_message_unref(message);
1462                 return -EIO;
1463         }
1464
1465         if (task->scan_call == NULL) {
1466                 connman_error("D-Bus connection not available");
1467                 dbus_message_unref(message);
1468                 return -EIO;
1469         }
1470
1471         dbus_pending_call_set_notify(task->scan_call, scan_reply, task, NULL);
1472
1473         dbus_message_unref(message);
1474
1475         return -EINPROGRESS;
1476 }
1477
1478 static struct {
1479         char *name;
1480         char *value;
1481 } special_ssid[] = {
1482         { "<hidden>", "hidden"  },
1483         { "default",  "linksys" },
1484         { "wireless"  },
1485         { "linksys"   },
1486         { "netgear"   },
1487         { "dlink"     },
1488         { "2wire"     },
1489         { "compaq"    },
1490         { "tsunami"   },
1491         { "comcomcom", "3com"     },
1492         { "3Com",      "3com"     },
1493         { "Symbol",    "symbol"   },
1494         { "Motorola",  "motorola" },
1495         { "Wireless" , "wireless" },
1496         { "WLAN",      "wlan"     },
1497         { }
1498 };
1499
1500 static char *build_group(const char *addr, const char *name,
1501                         const unsigned char *ssid, unsigned int ssid_len,
1502                                         const char *mode, const char *security)
1503 {
1504         GString *str;
1505         unsigned int i;
1506
1507         if (addr == NULL)
1508                 return NULL;
1509
1510         str = g_string_sized_new((ssid_len * 2) + 24);
1511         if (str == NULL)
1512                 return NULL;
1513
1514         if (ssid == NULL) {
1515                 g_string_append_printf(str, "hidden_%s", addr);
1516                 goto done;
1517         }
1518
1519         for (i = 0; special_ssid[i].name; i++) {
1520                 if (g_strcmp0(special_ssid[i].name, name) == 0) {
1521                         if (special_ssid[i].value == NULL)
1522                                 g_string_append_printf(str, "%s_%s",
1523                                                                 name, addr);
1524                         else
1525                                 g_string_append_printf(str, "%s_%s",
1526                                                 special_ssid[i].value, addr);
1527                         goto done;
1528                 }
1529         }
1530
1531         if (ssid_len > 0 && ssid[0] != '\0') {
1532                 for (i = 0; i < ssid_len; i++)
1533                         g_string_append_printf(str, "%02x", ssid[i]);
1534         } else
1535                 g_string_append_printf(str, "hidden_%s", addr);
1536
1537 done:
1538         g_string_append_printf(str, "_%s_%s", mode, security);
1539
1540         return g_string_free(str, FALSE);
1541 }
1542
1543 static void extract_addr(DBusMessageIter *value,
1544                                         struct supplicant_result *result)
1545 {
1546         DBusMessageIter array;
1547         struct ether_addr eth;
1548         unsigned char *addr;
1549         int addr_len;
1550
1551         dbus_message_iter_recurse(value, &array);
1552         dbus_message_iter_get_fixed_array(&array, &addr, &addr_len);
1553
1554         if (addr_len != 6)
1555                 return;
1556
1557         result->addr = g_try_malloc(addr_len);
1558         if (result->addr == NULL)
1559                 return;
1560
1561         memcpy(result->addr, addr, addr_len);
1562         result->addr_len = addr_len;
1563
1564         result->path = g_try_malloc0(13);
1565         if (result->path == NULL)
1566                 return;
1567
1568         memcpy(&eth, addr, sizeof(eth));
1569         snprintf(result->path, 13, "%02x%02x%02x%02x%02x%02x",
1570                                                 eth.ether_addr_octet[0],
1571                                                 eth.ether_addr_octet[1],
1572                                                 eth.ether_addr_octet[2],
1573                                                 eth.ether_addr_octet[3],
1574                                                 eth.ether_addr_octet[4],
1575                                                 eth.ether_addr_octet[5]);
1576 }
1577
1578 static void extract_ssid(DBusMessageIter *value,
1579                                         struct supplicant_result *result)
1580 {
1581         DBusMessageIter array;
1582         unsigned char *ssid;
1583         int ssid_len, i;
1584
1585         dbus_message_iter_recurse(value, &array);
1586         dbus_message_iter_get_fixed_array(&array, &ssid, &ssid_len);
1587
1588         if (ssid_len < 1)
1589                 return;
1590
1591         if (ssid[0] == '\0')
1592                 return;
1593
1594         result->ssid = g_try_malloc(ssid_len);
1595         if (result->ssid == NULL)
1596                 return;
1597
1598         memcpy(result->ssid, ssid, ssid_len);
1599         result->ssid_len = ssid_len;
1600
1601         result->name = g_try_malloc0(ssid_len + 1);
1602         if (result->name == NULL)
1603                 return;
1604
1605         for (i = 0; i < ssid_len; i++) {
1606                 if (g_ascii_isprint(ssid[i]))
1607                         result->name[i] = ssid[i];
1608                 else
1609                         result->name[i] = ' ';
1610         }
1611 }
1612
1613 static unsigned char wifi_oui[3]      = { 0x00, 0x50, 0xf2 };
1614 static unsigned char ieee80211_oui[3] = { 0x00, 0x0f, 0xac };
1615
1616 static void extract_rsn(struct supplicant_result *result,
1617                                         const unsigned char *buf, int len)
1618 {
1619         uint16_t count;
1620         int i;
1621
1622         /* Version */
1623         if (len < 2)
1624                 return;
1625
1626         buf += 2;
1627         len -= 2;
1628
1629         /* Group cipher */
1630         if (len < 4)
1631                 return;
1632
1633         buf += 4;
1634         len -= 4;
1635
1636         /* Pairwise cipher */
1637         if (len < 2)
1638                 return;
1639
1640         count = buf[0] | (buf[1] << 8);
1641         if (2 + (count * 4) > len)
1642                 return;
1643
1644         buf += 2 + (count * 4);
1645         len -= 2 + (count * 4);
1646
1647         /* Authentication */
1648         if (len < 2)
1649                 return;
1650
1651         count = buf[0] | (buf[1] << 8);
1652         if (2 + (count * 4) > len)
1653                 return;
1654
1655         for (i = 0; i < count; i++) {
1656                 const unsigned char *ptr = buf + 2 + (i * 4);
1657
1658                 if (memcmp(ptr, wifi_oui, 3) == 0) {
1659                         switch (ptr[3]) {
1660                         case 1:
1661                                 result->has_8021x = TRUE;
1662                                 break;
1663                         case 2:
1664                                 result->has_psk = TRUE;
1665                                 break;
1666                         }
1667                 } else if (memcmp(ptr, ieee80211_oui, 3) == 0) {
1668                         switch (ptr[3]) {
1669                         case 1:
1670                                 result->has_8021x = TRUE;
1671                                 break;
1672                         case 2:
1673                                 result->has_psk = TRUE;
1674                                 break;
1675                         }
1676                 }
1677         }
1678
1679         buf += 2 + (count * 4);
1680         len -= 2 + (count * 4);
1681 }
1682
1683 static void extract_wpaie(DBusMessageIter *value,
1684                                         struct supplicant_result *result)
1685 {
1686         DBusMessageIter array;
1687         unsigned char *ie;
1688         int ie_len;
1689
1690         dbus_message_iter_recurse(value, &array);
1691         dbus_message_iter_get_fixed_array(&array, &ie, &ie_len);
1692
1693         if (ie_len > 6) {
1694                 result->has_wpa = TRUE;
1695                 extract_rsn(result, ie + 6, ie_len - 6);
1696         }
1697 }
1698
1699 static void extract_rsnie(DBusMessageIter *value,
1700                                         struct supplicant_result *result)
1701 {
1702         DBusMessageIter array;
1703         unsigned char *ie;
1704         int ie_len;
1705
1706         dbus_message_iter_recurse(value, &array);
1707         dbus_message_iter_get_fixed_array(&array, &ie, &ie_len);
1708
1709         if (ie_len > 2) {
1710                 result->has_rsn = TRUE;
1711                 extract_rsn(result, ie + 2, ie_len - 2);
1712         }
1713 }
1714
1715 static void extract_wpsie(DBusMessageIter *value,
1716                                         struct supplicant_result *result)
1717 {
1718         DBusMessageIter array;
1719         unsigned char *ie;
1720         int ie_len;
1721
1722         dbus_message_iter_recurse(value, &array);
1723         dbus_message_iter_get_fixed_array(&array, &ie, &ie_len);
1724
1725         if (ie_len > 0)
1726                 result->has_wps = TRUE;
1727 }
1728
1729 static void extract_capabilites(DBusMessageIter *value,
1730                                         struct supplicant_result *result)
1731 {
1732         dbus_message_iter_get_basic(value, &result->capabilities);
1733
1734         if (result->capabilities & IEEE80211_CAP_ESS)
1735                 result->adhoc = FALSE;
1736         else if (result->capabilities & IEEE80211_CAP_IBSS)
1737                 result->adhoc = TRUE;
1738
1739         if (result->capabilities & IEEE80211_CAP_PRIVACY)
1740                 result->has_wep = TRUE;
1741 }
1742
1743 static unsigned char calculate_strength(struct supplicant_task *task,
1744                                         struct supplicant_result *result)
1745 {
1746         if (result->quality == -1 || task->range->max_qual.qual == 0) {
1747                 unsigned char strength;
1748
1749                 if (result->level > 0)
1750                         strength = 100 - result->level;
1751                 else
1752                         strength = 120 + result->level;
1753
1754                 if (strength > 100)
1755                         strength = 100;
1756
1757                 return strength;
1758         }
1759
1760         return (result->quality * 100) / task->range->max_qual.qual;
1761 }
1762
1763 static unsigned short calculate_channel(struct supplicant_result *result)
1764 {
1765         if (result->frequency < 0)
1766                 return 0;
1767
1768         return (result->frequency - 2407) / 5;
1769 }
1770
1771 static void get_properties(struct supplicant_task *task);
1772
1773 static void properties_reply(DBusPendingCall *call, void *user_data)
1774 {
1775         struct supplicant_task *task = user_data;
1776         struct supplicant_result result;
1777         struct supplicant_block *block;
1778         struct connman_network *network;
1779         DBusMessage *reply;
1780         DBusMessageIter array, dict;
1781         unsigned char strength;
1782         unsigned short channel, frequency;
1783         const char *mode, *security;
1784         char *group = NULL;
1785
1786         DBG("task %p", task);
1787
1788         reply = dbus_pending_call_steal_reply(call);
1789
1790         if (dbus_message_get_type(reply) == DBUS_MESSAGE_TYPE_ERROR)
1791                 goto unref;
1792
1793         memset(&result, 0, sizeof(result));
1794         result.frequency = -1;
1795         result.quality = -1;
1796         result.level = 0;
1797         result.noise = 0;
1798
1799         dbus_message_iter_init(reply, &array);
1800
1801         dbus_message_iter_recurse(&array, &dict);
1802
1803         while (dbus_message_iter_get_arg_type(&dict) == DBUS_TYPE_DICT_ENTRY) {
1804                 DBusMessageIter entry, value;
1805                 const char *key;
1806
1807                 dbus_message_iter_recurse(&dict, &entry);
1808                 dbus_message_iter_get_basic(&entry, &key);
1809
1810                 dbus_message_iter_next(&entry);
1811
1812                 dbus_message_iter_recurse(&entry, &value);
1813
1814                 //type = dbus_message_iter_get_arg_type(&value);
1815                 //dbus_message_iter_get_basic(&value, &val);
1816
1817                 /* 
1818                  * bssid        : a (97)
1819                  * ssid         : a (97)
1820                  * wpaie        : a (97)
1821                  * rsnie        : a (97)
1822                  * wpsie        : a (97)
1823                  * frequency    : i (105)
1824                  * capabilities : q (113)
1825                  * quality      : i (105)
1826                  * noise        : i (105)
1827                  * level        : i (105)
1828                  * maxrate      : i (105)
1829                  */
1830
1831                 if (g_str_equal(key, "bssid") == TRUE)
1832                         extract_addr(&value, &result);
1833                 else if (g_str_equal(key, "ssid") == TRUE)
1834                         extract_ssid(&value, &result);
1835                 else if (g_str_equal(key, "wpaie") == TRUE)
1836                         extract_wpaie(&value, &result);
1837                 else if (g_str_equal(key, "rsnie") == TRUE)
1838                         extract_rsnie(&value, &result);
1839                 else if (g_str_equal(key, "wpsie") == TRUE)
1840                         extract_wpsie(&value, &result);
1841                 else if (g_str_equal(key, "capabilities") == TRUE)
1842                         extract_capabilites(&value, &result);
1843                 else if (g_str_equal(key, "frequency") == TRUE)
1844                         dbus_message_iter_get_basic(&value, &result.frequency);
1845                 else if (g_str_equal(key, "quality") == TRUE)
1846                         dbus_message_iter_get_basic(&value, &result.quality);
1847                 else if (g_str_equal(key, "noise") == TRUE)
1848                         dbus_message_iter_get_basic(&value, &result.noise);
1849                 else if (g_str_equal(key, "level") == TRUE)
1850                         dbus_message_iter_get_basic(&value, &result.level);
1851                 else if (g_str_equal(key, "maxrate") == TRUE)
1852                         dbus_message_iter_get_basic(&value, &result.maxrate);
1853
1854                 dbus_message_iter_next(&dict);
1855         }
1856
1857         DBG("capabilties %u frequency %d "
1858                         "quality %d noise %d level %d maxrate %d",
1859                                         result.capabilities, result.frequency,
1860                                                 result.quality, result.noise,
1861                                                 result.level, result.maxrate);
1862
1863         if (result.path == NULL)
1864                 goto done;
1865
1866         if (result.path[0] == '\0')
1867                 goto done;
1868
1869         if (result.name) {
1870                 block = g_hash_table_lookup(task->hidden_blocks, result.name);
1871                 if (block) {
1872                         enable_network(task, block->netpath, FALSE);
1873                         g_hash_table_remove(task->hidden_blocks, block->ssid);
1874                 }
1875         }
1876
1877         if (result.ssid == NULL)
1878                 task->hidden_found = TRUE;
1879
1880         if (result.frequency > 0 && result.frequency < 14)
1881                 result.frequency = 2407 + (5 * result.frequency);
1882         else if (result.frequency == 14)
1883                 result.frequency = 2484;
1884
1885         strength = calculate_strength(task, &result);
1886         channel  = calculate_channel(&result);
1887
1888         frequency = (result.frequency < 0) ? 0 : result.frequency;
1889
1890         if (result.has_8021x == TRUE)
1891                 security = "ieee8021x";
1892         else if (result.has_psk == TRUE)
1893                 security = "psk";
1894         else if (result.has_wep == TRUE)
1895                 security = "wep";
1896         else
1897                 security = "none";
1898
1899         mode = (result.adhoc == TRUE) ? "adhoc" : "managed";
1900
1901         group = build_group(result.path, result.name,
1902                                         result.ssid, result.ssid_len,
1903                                                         mode, security);
1904
1905         if (result.has_psk == TRUE) {
1906                 if (result.has_rsn == TRUE)
1907                         security = "rsn";
1908                 else if (result.has_wpa == TRUE)
1909                         security = "wpa";
1910         }
1911
1912         network = connman_device_get_network(task->device, result.path);
1913         if (network == NULL) {
1914                 int index;
1915
1916                 network = connman_network_create(result.path,
1917                                                 CONNMAN_NETWORK_TYPE_WIFI);
1918                 if (network == NULL)
1919                         goto done;
1920
1921                 index = connman_device_get_index(task->device);
1922                 connman_network_set_index(network, index);
1923
1924                 connman_network_set_protocol(network,
1925                                                 CONNMAN_NETWORK_PROTOCOL_IP);
1926
1927                 connman_network_set_address(network, result.addr,
1928                                                         result.addr_len);
1929
1930                 if (connman_device_add_network(task->device, network) < 0) {
1931                         connman_network_unref(network);
1932                         goto done;
1933                 }
1934         }
1935
1936         if (result.name != NULL && result.name[0] != '\0')
1937                 connman_network_set_name(network, result.name);
1938
1939         if (result.ssid_len != 0)
1940                 connman_network_set_blob(network, "WiFi.SSID",
1941                                                 result.ssid, result.ssid_len);
1942
1943         connman_network_set_string(network, "WiFi.Mode", mode);
1944
1945         DBG("%s (%s %s) strength %d (%s)",
1946                                 result.name, mode, security, strength,
1947                                 (result.has_wps == TRUE) ? "WPS" : "no WPS");
1948
1949         connman_network_set_available(network, TRUE);
1950         connman_network_set_strength(network, strength);
1951
1952         connman_network_set_uint16(network, "Frequency", frequency);
1953         connman_network_set_uint16(network, "WiFi.Channel", channel);
1954         connman_network_set_string(network, "WiFi.Security", security);
1955
1956         if (result.ssid != NULL)
1957                 connman_network_set_group(network, group);
1958
1959 done:
1960         g_free(group);
1961
1962         g_free(result.path);
1963         g_free(result.addr);
1964         g_free(result.name);
1965         g_free(result.ssid);
1966
1967 unref:
1968         dbus_message_unref(reply);
1969
1970         dbus_pending_call_unref(call);
1971
1972         get_properties(task);
1973 }
1974
1975 static void get_properties(struct supplicant_task *task)
1976 {
1977         DBusMessage *message;
1978         char *path;
1979
1980         path = g_slist_nth_data(task->scan_results, 0);
1981         if (path == NULL) {
1982                 if (task->hidden_found == TRUE) {
1983                         /*
1984                          * We're done with regular scanning, let's enable
1985                          * the missing network blocks if there are hidden
1986                          * SSIDs around.
1987                          */
1988                         hidden_block_enable(task);
1989                 }
1990                 goto noscan;
1991         }
1992
1993         message = dbus_message_new_method_call(SUPPLICANT_NAME, path,
1994                                                 SUPPLICANT_INTF ".BSSID",
1995                                                                 "properties");
1996
1997         task->scan_results = g_slist_remove(task->scan_results, path);
1998         g_free(path);
1999
2000         if (message == NULL)
2001                 goto noscan;
2002
2003         dbus_message_set_auto_start(message, FALSE);
2004
2005         if (dbus_connection_send_with_reply(connection, message,
2006                                 &task->result_call, TIMEOUT) == FALSE) {
2007                 connman_error("Failed to get network properties");
2008                 dbus_message_unref(message);
2009                 goto noscan;
2010         }
2011
2012         if (task->result_call == NULL) {
2013                 connman_error("D-Bus connection not available");
2014                 dbus_message_unref(message);
2015                 goto noscan;
2016         }
2017
2018         dbus_pending_call_set_notify(task->result_call,
2019                                         properties_reply, task, NULL);
2020
2021         dbus_message_unref(message);
2022
2023         return;
2024
2025 noscan:
2026         task->result_call = NULL;
2027
2028         if (task->scanning == TRUE) {
2029                 connman_device_set_scanning(task->device, FALSE);
2030                 task->scanning = FALSE;
2031         }
2032 }
2033
2034 static void scan_results_reply(DBusPendingCall *call, void *user_data)
2035 {
2036         struct supplicant_task *task = user_data;
2037         DBusMessage *reply;
2038         DBusError error;
2039         char **results;
2040         int i, num_results;
2041
2042         DBG("task %p", task);
2043
2044         reply = dbus_pending_call_steal_reply(call);
2045
2046         if (dbus_message_get_type(reply) == DBUS_MESSAGE_TYPE_ERROR)
2047                 goto done;
2048
2049         dbus_error_init(&error);
2050
2051         if (dbus_message_get_args(reply, &error,
2052                                 DBUS_TYPE_ARRAY, DBUS_TYPE_OBJECT_PATH,
2053                                                 &results, &num_results,
2054                                                 DBUS_TYPE_INVALID) == FALSE) {
2055                 if (dbus_error_is_set(&error) == TRUE) {
2056                         connman_error("%s", error.message);
2057                         dbus_error_free(&error);
2058                 } else
2059                         connman_error("Wrong arguments for scan result");
2060                 goto done;
2061         }
2062
2063         if (num_results == 0)
2064                 goto done;
2065
2066         for (i = 0; i < num_results; i++) {
2067                 char *path = g_strdup(results[i]);
2068                 if (path == NULL)
2069                         continue;
2070
2071                 task->scan_results = g_slist_append(task->scan_results, path);
2072         }
2073
2074         task->hidden_found = FALSE;
2075
2076         g_strfreev(results);
2077
2078         dbus_message_unref(reply);
2079
2080         dbus_pending_call_unref(call);
2081
2082         get_properties(task);
2083
2084         return;
2085
2086 done:
2087         dbus_message_unref(reply);
2088
2089         dbus_pending_call_unref(call);
2090
2091         task->result_call = NULL;
2092
2093         if (task->scanning == TRUE) {
2094                 connman_device_set_scanning(task->device, FALSE);
2095                 task->scanning = FALSE;
2096         }
2097 }
2098
2099 static void scan_results_available(struct supplicant_task *task)
2100 {
2101         DBusMessage *message;
2102
2103         DBG("task %p", task);
2104
2105         if (task->result_call != NULL)
2106                 return;
2107
2108         message = dbus_message_new_method_call(SUPPLICANT_NAME, task->path,
2109                                                 SUPPLICANT_INTF ".Interface",
2110                                                         "scanResults");
2111         if (message == NULL)
2112                 return;
2113
2114         dbus_message_set_auto_start(message, FALSE);
2115
2116         if (dbus_connection_send_with_reply(connection, message,
2117                                 &task->result_call, TIMEOUT) == FALSE) {
2118                 connman_error("Failed to request scan result");
2119                 goto done;
2120         }
2121
2122         if (task->result_call == NULL) {
2123                 connman_error("D-Bus connection not available");
2124                 goto done;
2125         }
2126
2127         if (task->scanning == TRUE)
2128                 connman_device_set_scanning(task->device, TRUE);
2129
2130         dbus_pending_call_set_notify(task->result_call,
2131                                         scan_results_reply, task, NULL);
2132
2133 done:
2134         dbus_message_unref(message);
2135 }
2136
2137 static enum supplicant_state string2state(const char *state)
2138 {
2139         if (g_str_equal(state, "INACTIVE") == TRUE)
2140                 return WPA_INACTIVE;
2141         else if (g_str_equal(state, "SCANNING") == TRUE)
2142                 return WPA_SCANNING;
2143         else if (g_str_equal(state, "ASSOCIATING") == TRUE)
2144                 return WPA_ASSOCIATING;
2145         else if (g_str_equal(state, "ASSOCIATED") == TRUE)
2146                 return WPA_ASSOCIATED;
2147         else if (g_str_equal(state, "GROUP_HANDSHAKE") == TRUE)
2148                 return WPA_GROUP_HANDSHAKE;
2149         else if (g_str_equal(state, "4WAY_HANDSHAKE") == TRUE)
2150                 return WPA_4WAY_HANDSHAKE;
2151         else if (g_str_equal(state, "COMPLETED") == TRUE)
2152                 return WPA_COMPLETED;
2153         else if (g_str_equal(state, "DISCONNECTED") == TRUE)
2154                 return WPA_DISCONNECTED;
2155         else
2156                 return WPA_INVALID;
2157 }
2158
2159 static int task_connect(struct supplicant_task *task)
2160 {
2161         const char *address, *security, *passphrase;
2162         const void *ssid;
2163         unsigned int ssid_len;
2164         int err;
2165
2166         g_hash_table_foreach(task->hidden_blocks, block_reset, task);
2167
2168         connman_inet_ifup(task->ifindex);
2169
2170         address = connman_network_get_string(task->network, "Address");
2171         security = connman_network_get_string(task->network, "WiFi.Security");
2172         passphrase = connman_network_get_string(task->network, "WiFi.Passphrase");
2173
2174         ssid = connman_network_get_blob(task->network, "WiFi.SSID", &ssid_len);
2175
2176         DBG("address %s security %s", address, security);
2177
2178         if (security == NULL)
2179                 return -EINVAL;
2180
2181         if (passphrase == NULL && g_str_equal(security, "none") == FALSE &&
2182                                 g_str_equal(security, "ieee8021x") == FALSE)
2183                 return -EINVAL;
2184
2185         remove_network(task);
2186
2187         set_ap_scan(task);
2188
2189         add_network(task);
2190
2191         err = set_network(task, ssid, ssid_len, address, security, passphrase);
2192         if (err < 0)
2193                 return err;
2194
2195         err = select_network(task);
2196         if (err < 0)
2197                 return err;
2198
2199         return -EINPROGRESS;
2200 }
2201
2202 static void scanning(struct supplicant_task *task, DBusMessage *msg)
2203 {
2204         DBusError error;
2205         dbus_bool_t scanning;
2206
2207         dbus_error_init(&error);
2208
2209         if (dbus_message_get_args(msg, &error, DBUS_TYPE_BOOLEAN, &scanning,
2210                                                 DBUS_TYPE_INVALID) == FALSE) {
2211                 if (dbus_error_is_set(&error) == TRUE) {
2212                         connman_error("%s", error.message);
2213                         dbus_error_free(&error);
2214                 } else
2215                         connman_error("Wrong arguments for scanning");
2216                 return;
2217         }
2218
2219         connman_info("%s scanning %s", task->ifname,
2220                                 scanning == TRUE ? "started" : "finished");
2221 }
2222
2223 static void state_change(struct supplicant_task *task, DBusMessage *msg)
2224 {
2225         DBusError error;
2226         const char *newstate, *oldstate;
2227         unsigned char bssid[ETH_ALEN];
2228         unsigned int bssid_len;
2229         enum supplicant_state state, prevstate;
2230
2231         dbus_error_init(&error);
2232
2233         if (dbus_message_get_args(msg, &error, DBUS_TYPE_STRING, &newstate,
2234                                                 DBUS_TYPE_STRING, &oldstate,
2235                                                 DBUS_TYPE_INVALID) == FALSE) {
2236                 if (dbus_error_is_set(&error) == TRUE) {
2237                         connman_error("%s", error.message);
2238                         dbus_error_free(&error);
2239                 } else
2240                         connman_error("Wrong arguments for state change");
2241                 return;
2242         }
2243
2244         DBG("state %s ==> %s", oldstate, newstate);
2245
2246         connman_info("%s %s%s", task->ifname, newstate,
2247                                 task->scanning == TRUE ? " (scanning)" : "");
2248
2249         state = string2state(newstate);
2250         if (state == WPA_INVALID)
2251                 return;
2252
2253         prevstate = task->state;
2254         task->state = state;
2255
2256         if (task->network == NULL)
2257                 return;
2258
2259         switch (task->state) {
2260         case WPA_COMPLETED:
2261                 switch (prevstate) {
2262                 case WPA_ASSOCIATED:
2263                 case WPA_GROUP_HANDSHAKE:
2264                         break;
2265                 default:
2266                         goto badstate;
2267                 }
2268
2269                 /* reset scan trigger and schedule background scan */
2270                 connman_device_schedule_scan(task->device);
2271
2272                 if (get_bssid(task->device, bssid, &bssid_len) == 0)
2273                         connman_network_set_address(task->network,
2274                                                         bssid, bssid_len);
2275
2276                 /* carrier on */
2277                 connman_network_set_connected(task->network, TRUE);
2278                 break;
2279
2280         case WPA_ASSOCIATING:
2281                 switch (prevstate) {
2282                 case WPA_COMPLETED:
2283                         break;
2284                 case WPA_SCANNING:
2285                         connman_network_set_associating(task->network, TRUE);
2286                         break;
2287                 default:
2288                         goto badstate;
2289                 }
2290                 break;
2291
2292         case WPA_INACTIVE:
2293                 switch (prevstate) {
2294                 case WPA_SCANNING:
2295                 case WPA_DISCONNECTED:
2296                         break;
2297                 default:
2298                         goto badstate;
2299                 }
2300                 /* fall through */
2301
2302         case WPA_DISCONNECTED:
2303                 /* carrier off */
2304                 connman_network_set_connected(task->network, FALSE);
2305
2306                 if (task->disconnecting == TRUE) {
2307                         connman_network_unref(task->network);
2308                         task->disconnecting = FALSE;
2309
2310                         if (task->pending_network != NULL) {
2311                                 task->network = task->pending_network;
2312                                 task->pending_network = NULL;
2313                                 task_connect(task);
2314                         } else
2315                                 task->network = NULL;
2316                 }
2317                 break;
2318
2319         default:
2320                 connman_network_set_associating(task->network, FALSE);
2321                 break;
2322         }
2323
2324         return;
2325
2326 badstate:
2327         connman_error("%s invalid state change %s -> %s", task->ifname,
2328                                                         oldstate, newstate);
2329 }
2330
2331 static gboolean supplicant_filter(DBusConnection *conn,
2332                                                 DBusMessage *msg, void *data)
2333 {
2334         struct supplicant_task *task;
2335         const char *member, *path;
2336
2337         member = dbus_message_get_member(msg);
2338         if (member == NULL)
2339                 return TRUE;
2340
2341         path = dbus_message_get_path(msg);
2342         if (path == NULL)
2343                 return TRUE;
2344
2345         task = find_task_by_path(path);
2346         if (task == NULL)
2347                 return TRUE;
2348
2349         DBG("task %p member %s", task, member);
2350
2351         if (g_str_equal(member, "ScanResultsAvailable") == TRUE)
2352                 scan_results_available(task);
2353         else if (g_str_equal(member, "Scanning") == TRUE)
2354                 scanning(task, msg);
2355         else if (g_str_equal(member, "StateChange") == TRUE)
2356                 state_change(task, msg);
2357
2358         return TRUE;
2359 }
2360
2361 int supplicant_start(struct connman_device *device)
2362 {
2363         struct supplicant_task *task;
2364         int err;
2365
2366         DBG("device %p", device);
2367
2368         task = g_try_new0(struct supplicant_task, 1);
2369         if (task == NULL)
2370                 return -ENOMEM;
2371
2372         task->ifindex = connman_device_get_index(device);
2373         task->ifname = connman_inet_ifname(task->ifindex);
2374
2375         if (task->ifname == NULL) {
2376                 err = -ENOMEM;
2377                 goto failed;
2378         }
2379
2380         task->cfg80211 = connman_inet_is_cfg80211(task->ifindex);
2381         if (task->cfg80211 == FALSE)
2382                 connman_warn("Enabling quirks for unsupported driver");
2383
2384         task->range = g_try_malloc0(sizeof(struct iw_range));
2385         if (task->range == NULL) {
2386                 err = -ENOMEM;
2387                 goto failed;
2388         }
2389
2390         err = get_range(task);
2391         if (err < 0)
2392                 goto failed;
2393
2394         task->device = connman_device_ref(device);
2395
2396         task->created = FALSE;
2397         task->scanning = FALSE;
2398         task->state = WPA_INVALID;
2399         task->disconnecting = FALSE;
2400         task->pending_network = NULL;
2401         task->hidden_blocks = g_hash_table_new_full(g_str_hash, g_str_equal,
2402                                                         NULL, remove_block);
2403         task_list = g_slist_append(task_list, task);
2404
2405         return create_interface(task);
2406
2407 failed:
2408         g_free(task->range);
2409         g_free(task->ifname);
2410         g_free(task);
2411
2412         return err;
2413 }
2414
2415 int supplicant_stop(struct connman_device *device)
2416 {
2417         int index = connman_device_get_index(device);
2418         struct supplicant_task *task;
2419
2420         DBG("device %p", device);
2421
2422         task = find_task_by_index(index);
2423         if (task == NULL)
2424                 return -ENODEV;
2425
2426         g_free(task->range);
2427
2428         task_list = g_slist_remove(task_list, task);
2429         g_hash_table_destroy(task->hidden_blocks);
2430
2431         if (task->scan_call != NULL) {
2432                 dbus_pending_call_cancel(task->scan_call);
2433                 task->scan_call = NULL;
2434         }
2435
2436         if (task->result_call != NULL) {
2437                 dbus_pending_call_cancel(task->result_call);
2438                 task->result_call = NULL;
2439         }
2440
2441         if (task->scanning == TRUE)
2442                 connman_device_set_scanning(task->device, FALSE);
2443
2444         remove_network(task);
2445
2446         disconnect_network(task);
2447
2448         return remove_interface(task);
2449 }
2450
2451 int supplicant_scan(struct connman_device *device)
2452 {
2453         int index = connman_device_get_index(device);
2454         struct supplicant_task *task;
2455         int err;
2456
2457         DBG("device %p", device);
2458
2459         task = find_task_by_index(index);
2460         if (task == NULL)
2461                 return -ENODEV;
2462
2463         switch (task->state) {
2464         case WPA_SCANNING:
2465                 return -EALREADY;
2466         case WPA_ASSOCIATING:
2467         case WPA_ASSOCIATED:
2468         case WPA_4WAY_HANDSHAKE:
2469         case WPA_GROUP_HANDSHAKE:
2470                 return -EBUSY;
2471         default:
2472                 break;
2473         }
2474
2475         task->scanning = TRUE;
2476
2477         err = initiate_scan(task);
2478         if (err < 0) {
2479                 if (err == -EINPROGRESS)
2480                         return 0;
2481
2482                 task->scanning = FALSE;
2483                 return err;
2484         }
2485
2486         connman_device_set_scanning(task->device, TRUE);
2487
2488         return 0;
2489 }
2490
2491 int supplicant_connect(struct connman_network *network)
2492 {
2493         struct supplicant_task *task;
2494         int index;
2495
2496         DBG("network %p", network);
2497
2498         index = connman_network_get_index(network);
2499
2500         task = find_task_by_index(index);
2501         if (task == NULL)
2502                 return -ENODEV;
2503
2504         if (task->disconnecting == TRUE)
2505                 task->pending_network = connman_network_ref(network);
2506         else {
2507                 task->network = connman_network_ref(network);
2508                 return task_connect(task);
2509         }
2510
2511         return -EINPROGRESS;
2512 }
2513
2514 int supplicant_disconnect(struct connman_network *network)
2515 {
2516         struct supplicant_task *task;
2517         int index;
2518
2519         DBG("network %p", network);
2520
2521         index = connman_network_get_index(network);
2522
2523         task = find_task_by_index(index);
2524         if (task == NULL)
2525                 return -ENODEV;
2526
2527         if (task->disconnecting == TRUE)
2528                 return -EALREADY;
2529
2530         remove_network(task);
2531
2532         disconnect_network(task);
2533
2534         task->disconnecting = TRUE;
2535
2536         return 0;
2537 }
2538
2539 static void supplicant_activate(DBusConnection *conn)
2540 {
2541         DBusMessage *message;
2542
2543         DBG("conn %p", conn);
2544
2545         message = dbus_message_new_method_call(SUPPLICANT_NAME, "/",
2546                                 DBUS_INTERFACE_INTROSPECTABLE, "Introspect");
2547         if (message == NULL)
2548                 return;
2549
2550         dbus_message_set_no_reply(message, TRUE);
2551
2552         dbus_connection_send(conn, message, NULL);
2553
2554         dbus_message_unref(message);
2555 }
2556
2557 static GSList *driver_list = NULL;
2558
2559 static void supplicant_probe(DBusConnection *conn, void *user_data)
2560 {
2561         GSList *list;
2562
2563         DBG("conn %p", conn);
2564
2565         for (list = driver_list; list; list = list->next) {
2566                 struct supplicant_driver *driver = list->data;
2567
2568                 DBG("driver %p name %s", driver, driver->name);
2569
2570                 if (driver->probe)
2571                         driver->probe();
2572         }
2573 }
2574
2575 static void supplicant_remove(DBusConnection *conn, void *user_data)
2576 {
2577         GSList *list;
2578
2579         DBG("conn %p", conn);
2580
2581         for (list = driver_list; list; list = list->next) {
2582                 struct supplicant_driver *driver = list->data;
2583
2584                 DBG("driver %p name %s", driver, driver->name);
2585
2586                 if (driver->remove)
2587                         driver->remove();
2588         }
2589 }
2590
2591 static guint watch;
2592 static guint iface_watch;
2593
2594 static int supplicant_create(void)
2595 {
2596         if (g_slist_length(driver_list) > 0)
2597                 return 0;
2598
2599         connection = connman_dbus_get_connection();
2600         if (connection == NULL)
2601                 return -EIO;
2602
2603         DBG("connection %p", connection);
2604
2605         watch = g_dbus_add_service_watch(connection, SUPPLICANT_NAME,
2606                         supplicant_probe, supplicant_remove, NULL, NULL);
2607
2608         iface_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
2609                                                 SUPPLICANT_INTF ".Interface",
2610                                                 NULL, supplicant_filter,
2611                                                 NULL, NULL);
2612
2613         if (watch == 0 || iface_watch == 0) {
2614                 g_dbus_remove_watch(connection, watch);
2615                 g_dbus_remove_watch(connection, iface_watch);
2616                 return -EIO;
2617         }
2618
2619         return 0;
2620 }
2621
2622 static void supplicant_destroy(void)
2623 {
2624         if (g_slist_length(driver_list) > 0)
2625                 return;
2626
2627         DBG("connection %p", connection);
2628
2629         g_dbus_remove_watch(connection, watch);
2630         g_dbus_remove_watch(connection, iface_watch);
2631
2632         dbus_connection_unref(connection);
2633         connection = NULL;
2634 }
2635
2636 int supplicant_register(struct supplicant_driver *driver)
2637 {
2638         int err;
2639
2640         DBG("driver %p name %s", driver, driver->name);
2641
2642         err = supplicant_create();
2643         if (err < 0)
2644                 return err;
2645
2646         driver_list = g_slist_append(driver_list, driver);
2647
2648         supplicant_activate(connection);
2649
2650         return 0;
2651 }
2652
2653 void supplicant_unregister(struct supplicant_driver *driver)
2654 {
2655         DBG("driver %p name %s", driver, driver->name);
2656
2657         supplicant_remove(connection, NULL);
2658
2659         driver_list = g_slist_remove(driver_list, driver);
2660
2661         supplicant_destroy();
2662 }