wifi: Check for passphrase being not NULL before calling strlen
[framework/connectivity/connman.git] / plugins / wifi.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 <unistd.h>
27 #include <stdlib.h>
28 #include <errno.h>
29 #include <string.h>
30 #include <sys/ioctl.h>
31 #include <sys/socket.h>
32 #include <linux/if_arp.h>
33 #include <linux/wireless.h>
34 #include <net/ethernet.h>
35
36 #ifndef IFF_LOWER_UP
37 #define IFF_LOWER_UP    0x10000
38 #endif
39
40 #include <dbus/dbus.h>
41 #include <glib.h>
42
43 #define CONNMAN_API_SUBJECT_TO_CHANGE
44 #include <connman/plugin.h>
45 #include <connman/inet.h>
46 #include <connman/device.h>
47 #include <connman/rtnl.h>
48 #include <connman/technology.h>
49 #include <connman/log.h>
50 #include <connman/option.h>
51
52 #include <gsupplicant/gsupplicant.h>
53
54 #define CLEANUP_TIMEOUT   8     /* in seconds */
55 #define INACTIVE_TIMEOUT  12    /* in seconds */
56
57 struct connman_technology *wifi_technology = NULL;
58
59 struct wifi_data {
60         char *identifier;
61         struct connman_device *device;
62         struct connman_network *network;
63         struct connman_network *pending_network;
64         GSupplicantInterface *interface;
65         GSupplicantState state;
66         connman_bool_t connected;
67         connman_bool_t disconnecting;
68         int index;
69         unsigned flags;
70         unsigned int watch;
71 };
72
73 static int get_bssid(struct connman_device *device,
74                                 unsigned char *bssid, unsigned int *bssid_len)
75 {
76         struct iwreq wrq;
77         char *ifname;
78         int ifindex;
79         int fd, err;
80
81         ifindex = connman_device_get_index(device);
82         if (ifindex < 0)
83                 return -EINVAL;
84
85         ifname = connman_inet_ifname(ifindex);
86         if (ifname == NULL)
87                 return -EINVAL;
88
89         fd = socket(PF_INET, SOCK_DGRAM, 0);
90         if (fd < 0) {
91                 g_free(ifname);
92                 return -EINVAL;
93         }
94
95         memset(&wrq, 0, sizeof(wrq));
96         strncpy(wrq.ifr_name, ifname, IFNAMSIZ);
97
98         err = ioctl(fd, SIOCGIWAP, &wrq);
99
100         g_free(ifname);
101         close(fd);
102
103         if (err < 0)
104                 return -EIO;
105
106         memcpy(bssid, wrq.u.ap_addr.sa_data, ETH_ALEN);
107         *bssid_len = ETH_ALEN;
108
109         return 0;
110 }
111
112 static void wifi_newlink(unsigned flags, unsigned change, void *user_data)
113 {
114         struct connman_device *device = user_data;
115         struct wifi_data *wifi = connman_device_get_data(device);
116
117         DBG("index %d flags %d change %d", wifi->index, flags, change);
118
119         if (!change)
120                 return;
121
122         if ((wifi->flags & IFF_UP) != (flags & IFF_UP)) {
123                 if (flags & IFF_UP)
124                         DBG("interface up");
125                 else
126                         DBG("interface down");
127         }
128
129         if ((wifi->flags & IFF_LOWER_UP) != (flags & IFF_LOWER_UP)) {
130                 if (flags & IFF_LOWER_UP)
131                         DBG("carrier on");
132                 else
133                         DBG("carrier off");
134         }
135
136         wifi->flags = flags;
137 }
138
139 static int wifi_probe(struct connman_device *device)
140 {
141         struct wifi_data *wifi;
142
143         DBG("device %p", device);
144
145         wifi = g_try_new0(struct wifi_data, 1);
146         if (wifi == NULL)
147                 return -ENOMEM;
148
149         wifi->connected = FALSE;
150         wifi->disconnecting = FALSE;
151         wifi->state = G_SUPPLICANT_STATE_INACTIVE;
152
153         connman_device_set_data(device, wifi);
154         wifi->device = connman_device_ref(device);
155
156         wifi->index = connman_device_get_index(device);
157         wifi->flags = 0;
158
159         wifi->watch = connman_rtnl_add_newlink_watch(wifi->index,
160                                                         wifi_newlink, device);
161
162         return 0;
163 }
164
165 static void wifi_remove(struct connman_device *device)
166 {
167         struct wifi_data *wifi = connman_device_get_data(device);
168
169         DBG("device %p", device);
170
171         if (wifi->pending_network != NULL) {
172                 connman_network_unref(wifi->pending_network);
173                 wifi->pending_network = NULL;
174         }
175
176         connman_device_set_data(device, NULL);
177         connman_device_unref(wifi->device);
178         connman_rtnl_remove_watch(wifi->watch);
179
180         g_supplicant_interface_set_data(wifi->interface, NULL);
181
182         g_free(wifi->identifier);
183         g_free(wifi);
184 }
185
186 static void interface_create_callback(int result,
187                                         GSupplicantInterface *interface,
188                                                         void *user_data)
189 {
190         struct wifi_data *wifi = user_data;
191
192         DBG("result %d ifname %s", result,
193                                 g_supplicant_interface_get_ifname(interface));
194
195         if (result < 0)
196                 return;
197
198         wifi->interface = interface;
199         g_supplicant_interface_set_data(interface, wifi);
200 }
201
202 static void interface_remove_callback(int result,
203                                         GSupplicantInterface *interface,
204                                                         void *user_data)
205 {
206         struct wifi_data *wifi = user_data;
207
208         DBG("result %d", result);
209
210         if (result < 0)
211                 return;
212
213         wifi->interface = NULL;
214 }
215
216
217 static int wifi_enable(struct connman_device *device)
218 {
219         struct wifi_data *wifi = connman_device_get_data(device);
220         const char *interface = connman_device_get_string(device, "Interface");
221         const char *driver = connman_option_get_string("wifi");
222
223         DBG("device %p %p", device, wifi);
224
225         return g_supplicant_interface_create(interface, driver,
226                                                 interface_create_callback,
227                                                         wifi);
228 }
229
230 static int wifi_disable(struct connman_device *device)
231 {
232         struct wifi_data *wifi = connman_device_get_data(device);
233
234         DBG("device %p", device);
235
236         wifi->connected = FALSE;
237         wifi->disconnecting = FALSE;
238
239         if (wifi->pending_network != NULL) {
240                 connman_network_unref(wifi->pending_network);
241                 wifi->pending_network = NULL;
242         }
243
244         return g_supplicant_interface_remove(wifi->interface,
245                                                 interface_remove_callback,
246                                                         wifi);
247 }
248
249 static void scan_callback(int result, GSupplicantInterface *interface,
250                                                 void *user_data)
251 {
252         struct connman_device *device = user_data;
253
254         DBG("result %d", result);
255
256         connman_device_set_scanning(device, FALSE);
257 }
258
259 static int wifi_scan(struct connman_device *device)
260 {
261         struct wifi_data *wifi = connman_device_get_data(device);
262
263         DBG("device %p %p", device, wifi->interface);
264
265         return g_supplicant_interface_scan(wifi->interface, scan_callback,
266                                                                 device);
267 }
268
269 static struct connman_device_driver wifi_ng_driver = {
270         .name           = "wifi",
271         .type           = CONNMAN_DEVICE_TYPE_WIFI,
272         .priority       = CONNMAN_DEVICE_PRIORITY_LOW,
273         .probe          = wifi_probe,
274         .remove         = wifi_remove,
275         .enable         = wifi_enable,
276         .disable        = wifi_disable,
277         .scan           = wifi_scan,
278 };
279
280 static void system_ready(void)
281 {
282         DBG("");
283
284         if (connman_device_driver_register(&wifi_ng_driver) < 0)
285                 connman_error("Failed to register WiFi driver");
286 }
287
288 static void system_killed(void)
289 {
290         DBG("");
291
292         connman_device_driver_unregister(&wifi_ng_driver);
293 }
294
295 static void interface_added(GSupplicantInterface *interface)
296 {
297         const char *ifname = g_supplicant_interface_get_ifname(interface);
298         const char *driver = g_supplicant_interface_get_driver(interface);
299         struct wifi_data *wifi;
300
301         wifi = g_supplicant_interface_get_data(interface);
302
303         /*
304          * We can get here with a NULL wifi pointer when
305          * the interface added signal is sent before the
306          * interface creation callback is called.
307          */
308         if (wifi == NULL)
309                 return;
310
311         DBG("ifname %s driver %s wifi %p", ifname, driver, wifi);
312
313         if (wifi->device == NULL) {
314                 connman_error("WiFi device not set");
315                 return;
316         }
317
318         connman_device_set_powered(wifi->device, TRUE);
319         wifi_scan(wifi->device);
320 }
321
322 static connman_bool_t is_idle(struct wifi_data *wifi)
323 {
324         DBG("state %d", wifi->state);
325
326         switch (wifi->state) {
327         case G_SUPPLICANT_STATE_UNKNOWN:
328         case G_SUPPLICANT_STATE_DISCONNECTED:
329         case G_SUPPLICANT_STATE_INACTIVE:
330         case G_SUPPLICANT_STATE_SCANNING:
331                 return TRUE;
332
333         case G_SUPPLICANT_STATE_AUTHENTICATING:
334         case G_SUPPLICANT_STATE_ASSOCIATING:
335         case G_SUPPLICANT_STATE_ASSOCIATED:
336         case G_SUPPLICANT_STATE_4WAY_HANDSHAKE:
337         case G_SUPPLICANT_STATE_GROUP_HANDSHAKE:
338         case G_SUPPLICANT_STATE_COMPLETED:
339                 return FALSE;
340         }
341
342         return FALSE;
343 }
344
345 static void interface_state(GSupplicantInterface *interface)
346 {
347         struct connman_network *network;
348         struct connman_device *device;
349         struct wifi_data *wifi;
350         GSupplicantState state = g_supplicant_interface_get_state(interface);
351         unsigned char bssid[ETH_ALEN];
352         unsigned int bssid_len;
353
354         wifi = g_supplicant_interface_get_data(interface);
355
356         DBG("wifi %p interface state %d", wifi, state);
357
358         if (wifi == NULL)
359                 return;
360
361         network = wifi->network;
362         device = wifi->device;
363
364         if (device == NULL || network == NULL)
365                 return;
366
367         switch (state) {
368         case G_SUPPLICANT_STATE_SCANNING:
369                 connman_device_set_scanning(device, TRUE);
370                 break;
371
372         case G_SUPPLICANT_STATE_AUTHENTICATING:
373         case G_SUPPLICANT_STATE_ASSOCIATING:
374                 connman_network_set_associating(network, TRUE);
375                 break;
376
377         case G_SUPPLICANT_STATE_COMPLETED:
378                 /* reset scan trigger and schedule background scan */
379                 connman_device_schedule_scan(device);
380
381                 if (get_bssid(device, bssid, &bssid_len) == 0)
382                         connman_network_set_address(network,
383                                                         bssid, bssid_len);
384                 connman_network_set_connected(network, TRUE);
385                 break;
386
387         case G_SUPPLICANT_STATE_DISCONNECTED:
388                 /*
389                  * If we're in one of the idle modes, we have
390                  * not started association yet and thus setting
391                  * those ones to FALSE could cancel an association
392                  * in progress.
393                  */
394                 if (is_idle(wifi))
395                         break;
396                 connman_network_set_associating(network, FALSE);
397                 connman_network_set_connected(network, FALSE);
398                 break;
399
400         case G_SUPPLICANT_STATE_INACTIVE:
401                 connman_network_set_associating(network, FALSE);
402                 break;
403
404         case G_SUPPLICANT_STATE_UNKNOWN:
405         case G_SUPPLICANT_STATE_ASSOCIATED:
406         case G_SUPPLICANT_STATE_4WAY_HANDSHAKE:
407         case G_SUPPLICANT_STATE_GROUP_HANDSHAKE:
408                 break;
409         }
410
411         wifi->state = state;
412
413         DBG("DONE");
414 }
415
416 static void interface_removed(GSupplicantInterface *interface)
417 {
418         const char *ifname = g_supplicant_interface_get_ifname(interface);
419         struct wifi_data *wifi;
420
421         DBG("ifname %s", ifname);
422
423         wifi = g_supplicant_interface_get_data(interface);
424
425         if (wifi == NULL || wifi->device == NULL) {
426                 connman_error("Wrong wifi pointer");
427                 return;
428         }
429
430         connman_device_set_powered(wifi->device, FALSE);
431 }
432
433 static void scan_started(GSupplicantInterface *interface)
434 {
435         struct wifi_data *wifi;
436
437         DBG("");
438
439         wifi = g_supplicant_interface_get_data(interface);
440
441         if (wifi == NULL)
442                 return;
443
444         if (wifi->device)
445                 connman_device_set_scanning(wifi->device, TRUE);
446 }
447
448 static void scan_finished(GSupplicantInterface *interface)
449 {
450         struct wifi_data *wifi;
451
452         DBG("");
453
454         wifi = g_supplicant_interface_get_data(interface);
455
456         if (wifi == NULL)
457                 return;
458 }
459
460 static unsigned char calculate_strength(GSupplicantNetwork *supplicant_network)
461 {
462         unsigned char strength;
463
464         strength = 120 + g_supplicant_network_get_signal(supplicant_network);
465         if (strength > 100)
466                 strength = 100;
467
468         return strength;
469 }
470
471 static void network_added(GSupplicantNetwork *supplicant_network)
472 {
473         struct connman_network *network;
474         GSupplicantInterface *interface;
475         struct wifi_data *wifi;
476         const char *name, *identifier, *mode, *security, *group;
477         const unsigned char *ssid;
478         unsigned int ssid_len;
479
480         DBG("");
481
482         interface = g_supplicant_network_get_interface(supplicant_network);
483         wifi = g_supplicant_interface_get_data(interface);
484         name = g_supplicant_network_get_name(supplicant_network);
485         identifier = g_supplicant_network_get_identifier(supplicant_network);
486         mode = g_supplicant_network_get_mode(supplicant_network);
487         security = g_supplicant_network_get_security(supplicant_network);
488         group = g_supplicant_network_get_identifier(supplicant_network);
489
490         if (wifi == NULL)
491                 return;
492
493         ssid = g_supplicant_network_get_ssid(supplicant_network, &ssid_len);
494
495         network = connman_device_get_network(wifi->device, identifier);
496
497         if (network == NULL) {
498                 network = connman_network_create(identifier,
499                                                 CONNMAN_NETWORK_TYPE_WIFI);
500                 if (network == NULL)
501                         return;
502
503                 connman_network_set_index(network, wifi->index);
504
505                 if (connman_device_add_network(wifi->device, network) < 0) {
506                         connman_network_unref(network);
507                         return;
508                 }
509         }
510
511         if (name != NULL && name[0] != '\0')
512                 connman_network_set_name(network, name);
513
514         connman_network_set_blob(network, "WiFi.SSID",
515                                                 ssid, ssid_len);
516         connman_network_set_string(network, "WiFi.Mode", mode);
517         connman_network_set_string(network, "WiFi.Security", security);
518         connman_network_set_strength(network,
519                                 calculate_strength(supplicant_network));
520
521         connman_network_set_available(network, TRUE);
522
523         if (ssid != NULL)
524                 connman_network_set_group(network, group);
525 }
526
527 static void network_removed(GSupplicantNetwork *network)
528 {
529         GSupplicantInterface *interface;
530         struct wifi_data *wifi;
531         const char *name, *identifier;
532
533         interface = g_supplicant_network_get_interface(network);
534         wifi = g_supplicant_interface_get_data(interface);
535         identifier = g_supplicant_network_get_identifier(network);
536         name = g_supplicant_network_get_name(network);
537
538         DBG("name %s", name);
539
540         if (wifi != NULL)
541                 connman_device_remove_network(wifi->device, identifier);
542 }
543
544 static void debug(const char *str)
545 {
546         if (getenv("CONNMAN_SUPPLICANT_DEBUG"))
547                 connman_debug("%s", str);
548 }
549
550 static const GSupplicantCallbacks callbacks = {
551         .system_ready           = system_ready,
552         .system_killed          = system_killed,
553         .interface_added        = interface_added,
554         .interface_state        = interface_state,
555         .interface_removed      = interface_removed,
556         .scan_started           = scan_started,
557         .scan_finished          = scan_finished,
558         .network_added          = network_added,
559         .network_removed        = network_removed,
560         .debug                  = debug,
561 };
562
563
564 static int network_probe(struct connman_network *network)
565 {
566         DBG("network %p", network);
567
568         return 0;
569 }
570
571 static void network_remove(struct connman_network *network)
572 {
573         DBG("network %p", network);
574 }
575
576 static void connect_callback(int result, GSupplicantInterface *interface,
577                                                         void *user_data)
578 {
579         connman_error("%s", __func__);
580 }
581
582 static GSupplicantSecurity network_security(const char *security)
583 {
584         if (g_str_equal(security, "none") == TRUE)
585                 return G_SUPPLICANT_SECURITY_NONE;
586         else if (g_str_equal(security, "wep") == TRUE)
587                 return G_SUPPLICANT_SECURITY_WEP;
588         else if (g_str_equal(security, "psk") == TRUE)
589                 return G_SUPPLICANT_SECURITY_PSK;
590         else if (g_str_equal(security, "wpa") == TRUE)
591                 return G_SUPPLICANT_SECURITY_PSK;
592         else if (g_str_equal(security, "rsn") == TRUE)
593                 return G_SUPPLICANT_SECURITY_PSK;
594         else if (g_str_equal(security, "ieee8021x") == TRUE)
595                 return G_SUPPLICANT_SECURITY_IEEE8021X;
596
597         return G_SUPPLICANT_SECURITY_UNKNOWN;
598 }
599
600 static void ssid_init(GSupplicantSSID *ssid, struct connman_network *network)
601 {
602         const char *security, *passphrase;
603
604         memset(ssid, 0, sizeof(*ssid));
605         ssid->ssid = connman_network_get_blob(network, "WiFi.SSID",
606                                                 &ssid->ssid_len);
607         security = connman_network_get_string(network, "WiFi.Security");
608         ssid->security = network_security(security);
609         passphrase = connman_network_get_string(network,
610                                                 "WiFi.Passphrase");
611         if (passphrase == NULL || strlen(passphrase) == 0)
612                 ssid->passphrase = NULL;
613         else
614                 ssid->passphrase = passphrase;
615
616         ssid->eap = connman_network_get_string(network, "WiFi.EAP");
617
618         /*
619          * If our private key password is unset,
620          * we use the supplied passphrase. That is needed
621          * for PEAP where 2 passphrases (identity and client
622          * cert may have to be provided.
623          */
624         if (connman_network_get_string(network,
625                                         "WiFi.PrivateKeyPassphrase") == NULL)
626                 connman_network_set_string(network,
627                                                 "WiFi.PrivateKeyPassphrase",
628                                                 ssid->passphrase);
629         /* We must have an identity for both PEAP and TLS */
630         ssid->identity = connman_network_get_string(network, "WiFi.Identity");
631         ssid->ca_cert_path = connman_network_get_string(network,
632                                                         "WiFi.CACertFile");
633         ssid->client_cert_path = connman_network_get_string(network,
634                                                         "WiFi.ClientCertFile");
635         ssid->private_key_path = connman_network_get_string(network,
636                                                         "WiFi.PrivateKeyFile");
637         ssid->private_key_passphrase = connman_network_get_string(network,
638                                                 "WiFi.PrivateKeyPassphrase");
639         ssid->phase2_auth = connman_network_get_string(network, "WiFi.Phase2");
640
641 }
642
643 static int network_connect(struct connman_network *network)
644 {
645         struct connman_device *device = connman_network_get_device(network);
646         struct wifi_data *wifi;
647         GSupplicantInterface *interface;
648         GSupplicantSSID ssid;
649
650         DBG("network %p", network);
651
652         if (device == NULL)
653                 return -ENODEV;
654
655         wifi = connman_device_get_data(device);
656         if (wifi == NULL)
657                 return -ENODEV;
658
659         interface = wifi->interface;
660
661         ssid_init(&ssid, network);
662
663         if (wifi->disconnecting == TRUE)
664                 wifi->pending_network = connman_network_ref(network);
665         else {
666                 wifi->network = connman_network_ref(network);
667
668                 return g_supplicant_interface_connect(interface, &ssid,
669                                                 connect_callback, NULL);
670         }
671
672         return -EINPROGRESS;
673 }
674
675 static void disconnect_callback(int result, GSupplicantInterface *interface,
676                                                                 void *user_data)
677 {
678         struct wifi_data *wifi = user_data;
679
680         if (wifi->network != NULL) {
681                 /*
682                  * if result < 0 supplican return an error because
683                  * the network is not current.
684                  * we wont receive G_SUPPLICANT_STATE_DISCONNECTED since it
685                  * failed, call connman_network_set_connected to report
686                  * disconnect is completed.
687                  */
688                 if (result < 0)
689                         connman_network_set_connected(wifi->network, FALSE);
690
691                 connman_network_unref(wifi->network);
692         }
693
694         wifi->network = NULL;
695
696         wifi->disconnecting = FALSE;
697
698         if (wifi->pending_network != NULL) {
699                 network_connect(wifi->pending_network);
700                 connman_network_unref(wifi->pending_network);
701                 wifi->pending_network = NULL;
702         }
703
704 }
705
706 static int network_disconnect(struct connman_network *network)
707 {
708         struct connman_device *device = connman_network_get_device(network);
709         struct wifi_data *wifi;
710         int err;
711
712         DBG("network %p", network);
713
714         wifi = connman_device_get_data(device);
715         if (wifi == NULL || wifi->interface == NULL)
716                 return -ENODEV;
717
718         connman_network_set_associating(network, FALSE);
719
720         if (wifi->disconnecting == TRUE)
721                 return -EALREADY;
722
723         wifi->disconnecting = TRUE;
724
725         err = g_supplicant_interface_disconnect(wifi->interface,
726                                                 disconnect_callback, wifi);
727         if (err < 0)
728                 wifi->disconnecting = FALSE;
729
730         return err;
731 }
732
733 static struct connman_network_driver network_driver = {
734         .name           = "wifi",
735         .type           = CONNMAN_NETWORK_TYPE_WIFI,
736         .priority       = CONNMAN_NETWORK_PRIORITY_LOW,
737         .probe          = network_probe,
738         .remove         = network_remove,
739         .connect        = network_connect,
740         .disconnect     = network_disconnect,
741 };
742
743 static int tech_probe(struct connman_technology *technology)
744 {
745         wifi_technology = technology;
746
747         return 0;
748 }
749
750 static void tech_remove(struct connman_technology *technology)
751 {
752         wifi_technology = NULL;
753 }
754
755 static void regdom_callback(void *user_data)
756 {
757         char *alpha2 = user_data;
758
759         DBG("");
760
761         if (wifi_technology == NULL)
762                 return;
763
764         connman_technology_regdom_notify(wifi_technology, alpha2);
765 }
766
767 static int tech_set_regdom(struct connman_technology *technology, const char *alpha2)
768 {
769         return g_supplicant_set_country(alpha2, regdom_callback, alpha2);
770 }
771
772 static struct connman_technology_driver tech_driver = {
773         .name           = "wifi",
774         .type           = CONNMAN_SERVICE_TYPE_WIFI,
775         .probe          = tech_probe,
776         .remove         = tech_remove,
777         .set_regdom     = tech_set_regdom,
778 };
779
780 static int wifi_init(void)
781 {
782         int err;
783
784         err = connman_network_driver_register(&network_driver);
785         if (err < 0)
786                 return err;
787
788         err = g_supplicant_register(&callbacks);
789         if (err < 0) {
790                 connman_network_driver_unregister(&network_driver);
791                 return err;
792         }
793
794         err = connman_technology_driver_register(&tech_driver);
795         if (err < 0) {
796                 g_supplicant_unregister(&callbacks);
797                 connman_network_driver_unregister(&network_driver);
798                 return err;
799         }
800
801         return 0;
802 }
803
804 static void wifi_exit(void)
805 {
806         DBG();
807
808         connman_technology_driver_unregister(&tech_driver);
809
810         g_supplicant_unregister(&callbacks);
811
812         connman_network_driver_unregister(&network_driver);
813 }
814
815 CONNMAN_PLUGIN_DEFINE(wifi, "WiFi interface plugin", VERSION,
816                 CONNMAN_PLUGIN_PRIORITY_DEFAULT, wifi_init, wifi_exit)