5 * Copyright (C) 2007-2010 Intel Corporation. All rights reserved.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
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>
37 #define IFF_LOWER_UP 0x10000
40 #include <dbus/dbus.h>
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>
52 #include <gsupplicant/gsupplicant.h>
54 #define CLEANUP_TIMEOUT 8 /* in seconds */
55 #define INACTIVE_TIMEOUT 12 /* in seconds */
57 struct connman_technology *wifi_technology = NULL;
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;
73 static int get_bssid(struct connman_device *device,
74 unsigned char *bssid, unsigned int *bssid_len)
81 ifindex = connman_device_get_index(device);
85 ifname = connman_inet_ifname(ifindex);
89 fd = socket(PF_INET, SOCK_DGRAM, 0);
95 memset(&wrq, 0, sizeof(wrq));
96 strncpy(wrq.ifr_name, ifname, IFNAMSIZ);
98 err = ioctl(fd, SIOCGIWAP, &wrq);
106 memcpy(bssid, wrq.u.ap_addr.sa_data, ETH_ALEN);
107 *bssid_len = ETH_ALEN;
112 static void wifi_newlink(unsigned flags, unsigned change, void *user_data)
114 struct connman_device *device = user_data;
115 struct wifi_data *wifi = connman_device_get_data(device);
117 DBG("index %d flags %d change %d", wifi->index, flags, change);
122 if ((wifi->flags & IFF_UP) != (flags & IFF_UP)) {
126 DBG("interface down");
129 if ((wifi->flags & IFF_LOWER_UP) != (flags & IFF_LOWER_UP)) {
130 if (flags & IFF_LOWER_UP)
139 static int wifi_probe(struct connman_device *device)
141 struct wifi_data *wifi;
143 DBG("device %p", device);
145 wifi = g_try_new0(struct wifi_data, 1);
149 wifi->connected = FALSE;
150 wifi->disconnecting = FALSE;
151 wifi->state = G_SUPPLICANT_STATE_INACTIVE;
153 connman_device_set_data(device, wifi);
154 wifi->device = connman_device_ref(device);
156 wifi->index = connman_device_get_index(device);
159 wifi->watch = connman_rtnl_add_newlink_watch(wifi->index,
160 wifi_newlink, device);
165 static void wifi_remove(struct connman_device *device)
167 struct wifi_data *wifi = connman_device_get_data(device);
169 DBG("device %p", device);
171 if (wifi->pending_network != NULL) {
172 connman_network_unref(wifi->pending_network);
173 wifi->pending_network = NULL;
176 connman_device_set_data(device, NULL);
177 connman_device_unref(wifi->device);
178 connman_rtnl_remove_watch(wifi->watch);
180 g_supplicant_interface_set_data(wifi->interface, NULL);
182 g_free(wifi->identifier);
186 static void interface_create_callback(int result,
187 GSupplicantInterface *interface,
190 struct wifi_data *wifi = user_data;
192 DBG("result %d ifname %s", result,
193 g_supplicant_interface_get_ifname(interface));
198 wifi->interface = interface;
199 g_supplicant_interface_set_data(interface, wifi);
202 static void interface_remove_callback(int result,
203 GSupplicantInterface *interface,
206 struct wifi_data *wifi = user_data;
208 DBG("result %d", result);
213 wifi->interface = NULL;
217 static int wifi_enable(struct connman_device *device)
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");
223 DBG("device %p %p", device, wifi);
225 return g_supplicant_interface_create(interface, driver,
226 interface_create_callback,
230 static int wifi_disable(struct connman_device *device)
232 struct wifi_data *wifi = connman_device_get_data(device);
234 DBG("device %p", device);
236 wifi->connected = FALSE;
237 wifi->disconnecting = FALSE;
239 if (wifi->pending_network != NULL) {
240 connman_network_unref(wifi->pending_network);
241 wifi->pending_network = NULL;
244 return g_supplicant_interface_remove(wifi->interface,
245 interface_remove_callback,
249 static void scan_callback(int result, GSupplicantInterface *interface,
252 struct connman_device *device = user_data;
254 DBG("result %d", result);
257 connman_device_reset_scanning(device);
259 connman_device_set_scanning(device, FALSE);
262 static int wifi_scan(struct connman_device *device)
264 struct wifi_data *wifi = connman_device_get_data(device);
267 DBG("device %p %p", device, wifi->interface);
269 ret = g_supplicant_interface_scan(wifi->interface, scan_callback,
272 connman_device_set_scanning(device, TRUE);
277 static struct connman_device_driver wifi_ng_driver = {
279 .type = CONNMAN_DEVICE_TYPE_WIFI,
280 .priority = CONNMAN_DEVICE_PRIORITY_LOW,
282 .remove = wifi_remove,
283 .enable = wifi_enable,
284 .disable = wifi_disable,
288 static void system_ready(void)
292 if (connman_device_driver_register(&wifi_ng_driver) < 0)
293 connman_error("Failed to register WiFi driver");
296 static void system_killed(void)
300 connman_device_driver_unregister(&wifi_ng_driver);
303 static void interface_added(GSupplicantInterface *interface)
305 const char *ifname = g_supplicant_interface_get_ifname(interface);
306 const char *driver = g_supplicant_interface_get_driver(interface);
307 struct wifi_data *wifi;
309 wifi = g_supplicant_interface_get_data(interface);
312 * We can get here with a NULL wifi pointer when
313 * the interface added signal is sent before the
314 * interface creation callback is called.
319 DBG("ifname %s driver %s wifi %p", ifname, driver, wifi);
321 if (wifi->device == NULL) {
322 connman_error("WiFi device not set");
326 connman_device_set_powered(wifi->device, TRUE);
327 wifi_scan(wifi->device);
330 static connman_bool_t is_idle(struct wifi_data *wifi)
332 DBG("state %d", wifi->state);
334 switch (wifi->state) {
335 case G_SUPPLICANT_STATE_UNKNOWN:
336 case G_SUPPLICANT_STATE_DISCONNECTED:
337 case G_SUPPLICANT_STATE_INACTIVE:
338 case G_SUPPLICANT_STATE_SCANNING:
341 case G_SUPPLICANT_STATE_AUTHENTICATING:
342 case G_SUPPLICANT_STATE_ASSOCIATING:
343 case G_SUPPLICANT_STATE_ASSOCIATED:
344 case G_SUPPLICANT_STATE_4WAY_HANDSHAKE:
345 case G_SUPPLICANT_STATE_GROUP_HANDSHAKE:
346 case G_SUPPLICANT_STATE_COMPLETED:
353 static void interface_state(GSupplicantInterface *interface)
355 struct connman_network *network;
356 struct connman_device *device;
357 struct wifi_data *wifi;
358 GSupplicantState state = g_supplicant_interface_get_state(interface);
359 unsigned char bssid[ETH_ALEN];
360 unsigned int bssid_len;
362 wifi = g_supplicant_interface_get_data(interface);
364 DBG("wifi %p interface state %d", wifi, state);
369 network = wifi->network;
370 device = wifi->device;
372 if (device == NULL || network == NULL)
376 case G_SUPPLICANT_STATE_SCANNING:
379 case G_SUPPLICANT_STATE_AUTHENTICATING:
380 case G_SUPPLICANT_STATE_ASSOCIATING:
381 connman_network_set_associating(network, TRUE);
384 case G_SUPPLICANT_STATE_COMPLETED:
385 /* reset scan trigger and schedule background scan */
386 connman_device_schedule_scan(device);
388 if (get_bssid(device, bssid, &bssid_len) == 0)
389 connman_network_set_address(network,
391 connman_network_set_connected(network, TRUE);
394 case G_SUPPLICANT_STATE_DISCONNECTED:
396 * If we're in one of the idle modes, we have
397 * not started association yet and thus setting
398 * those ones to FALSE could cancel an association
403 connman_network_set_associating(network, FALSE);
404 connman_network_set_connected(network, FALSE);
407 case G_SUPPLICANT_STATE_INACTIVE:
408 connman_network_set_associating(network, FALSE);
411 case G_SUPPLICANT_STATE_UNKNOWN:
412 case G_SUPPLICANT_STATE_ASSOCIATED:
413 case G_SUPPLICANT_STATE_4WAY_HANDSHAKE:
414 case G_SUPPLICANT_STATE_GROUP_HANDSHAKE:
423 static void interface_removed(GSupplicantInterface *interface)
425 const char *ifname = g_supplicant_interface_get_ifname(interface);
426 struct wifi_data *wifi;
428 DBG("ifname %s", ifname);
430 wifi = g_supplicant_interface_get_data(interface);
432 if (wifi == NULL || wifi->device == NULL) {
433 connman_error("Wrong wifi pointer");
437 connman_device_set_powered(wifi->device, FALSE);
440 static void scan_started(GSupplicantInterface *interface)
442 struct wifi_data *wifi;
446 wifi = g_supplicant_interface_get_data(interface);
452 static void scan_finished(GSupplicantInterface *interface)
454 struct wifi_data *wifi;
458 wifi = g_supplicant_interface_get_data(interface);
464 static unsigned char calculate_strength(GSupplicantNetwork *supplicant_network)
466 unsigned char strength;
468 strength = 120 + g_supplicant_network_get_signal(supplicant_network);
475 static void network_added(GSupplicantNetwork *supplicant_network)
477 struct connman_network *network;
478 GSupplicantInterface *interface;
479 struct wifi_data *wifi;
480 const char *name, *identifier, *mode, *security, *group;
481 const unsigned char *ssid;
482 unsigned int ssid_len;
486 interface = g_supplicant_network_get_interface(supplicant_network);
487 wifi = g_supplicant_interface_get_data(interface);
488 name = g_supplicant_network_get_name(supplicant_network);
489 identifier = g_supplicant_network_get_identifier(supplicant_network);
490 mode = g_supplicant_network_get_mode(supplicant_network);
491 security = g_supplicant_network_get_security(supplicant_network);
492 group = g_supplicant_network_get_identifier(supplicant_network);
497 ssid = g_supplicant_network_get_ssid(supplicant_network, &ssid_len);
499 network = connman_device_get_network(wifi->device, identifier);
501 if (network == NULL) {
502 network = connman_network_create(identifier,
503 CONNMAN_NETWORK_TYPE_WIFI);
507 connman_network_set_index(network, wifi->index);
509 if (connman_device_add_network(wifi->device, network) < 0) {
510 connman_network_unref(network);
515 if (name != NULL && name[0] != '\0')
516 connman_network_set_name(network, name);
518 connman_network_set_blob(network, "WiFi.SSID",
520 connman_network_set_string(network, "WiFi.Mode", mode);
521 connman_network_set_string(network, "WiFi.Security", security);
522 connman_network_set_strength(network,
523 calculate_strength(supplicant_network));
525 connman_network_set_available(network, TRUE);
528 connman_network_set_group(network, group);
531 static void network_removed(GSupplicantNetwork *network)
533 GSupplicantInterface *interface;
534 struct wifi_data *wifi;
535 const char *name, *identifier;
537 interface = g_supplicant_network_get_interface(network);
538 wifi = g_supplicant_interface_get_data(interface);
539 identifier = g_supplicant_network_get_identifier(network);
540 name = g_supplicant_network_get_name(network);
542 DBG("name %s", name);
545 connman_device_remove_network(wifi->device, identifier);
548 static void debug(const char *str)
550 if (getenv("CONNMAN_SUPPLICANT_DEBUG"))
551 connman_debug("%s", str);
554 static const GSupplicantCallbacks callbacks = {
555 .system_ready = system_ready,
556 .system_killed = system_killed,
557 .interface_added = interface_added,
558 .interface_state = interface_state,
559 .interface_removed = interface_removed,
560 .scan_started = scan_started,
561 .scan_finished = scan_finished,
562 .network_added = network_added,
563 .network_removed = network_removed,
568 static int network_probe(struct connman_network *network)
570 DBG("network %p", network);
575 static void network_remove(struct connman_network *network)
577 DBG("network %p", network);
580 static void connect_callback(int result, GSupplicantInterface *interface,
583 connman_error("%s", __func__);
586 static GSupplicantSecurity network_security(const char *security)
588 if (g_str_equal(security, "none") == TRUE)
589 return G_SUPPLICANT_SECURITY_NONE;
590 else if (g_str_equal(security, "wep") == TRUE)
591 return G_SUPPLICANT_SECURITY_WEP;
592 else if (g_str_equal(security, "psk") == TRUE)
593 return G_SUPPLICANT_SECURITY_PSK;
594 else if (g_str_equal(security, "wpa") == TRUE)
595 return G_SUPPLICANT_SECURITY_PSK;
596 else if (g_str_equal(security, "rsn") == TRUE)
597 return G_SUPPLICANT_SECURITY_PSK;
598 else if (g_str_equal(security, "ieee8021x") == TRUE)
599 return G_SUPPLICANT_SECURITY_IEEE8021X;
601 return G_SUPPLICANT_SECURITY_UNKNOWN;
604 static void ssid_init(GSupplicantSSID *ssid, struct connman_network *network)
606 const char *security, *passphrase;
608 memset(ssid, 0, sizeof(*ssid));
609 ssid->ssid = connman_network_get_blob(network, "WiFi.SSID",
611 security = connman_network_get_string(network, "WiFi.Security");
612 ssid->security = network_security(security);
613 passphrase = connman_network_get_string(network,
615 if (passphrase == NULL || strlen(passphrase) == 0)
616 ssid->passphrase = NULL;
618 ssid->passphrase = passphrase;
620 ssid->eap = connman_network_get_string(network, "WiFi.EAP");
623 * If our private key password is unset,
624 * we use the supplied passphrase. That is needed
625 * for PEAP where 2 passphrases (identity and client
626 * cert may have to be provided.
628 if (connman_network_get_string(network,
629 "WiFi.PrivateKeyPassphrase") == NULL)
630 connman_network_set_string(network,
631 "WiFi.PrivateKeyPassphrase",
633 /* We must have an identity for both PEAP and TLS */
634 ssid->identity = connman_network_get_string(network, "WiFi.Identity");
635 ssid->ca_cert_path = connman_network_get_string(network,
637 ssid->client_cert_path = connman_network_get_string(network,
638 "WiFi.ClientCertFile");
639 ssid->private_key_path = connman_network_get_string(network,
640 "WiFi.PrivateKeyFile");
641 ssid->private_key_passphrase = connman_network_get_string(network,
642 "WiFi.PrivateKeyPassphrase");
643 ssid->phase2_auth = connman_network_get_string(network, "WiFi.Phase2");
647 static int network_connect(struct connman_network *network)
649 struct connman_device *device = connman_network_get_device(network);
650 struct wifi_data *wifi;
651 GSupplicantInterface *interface;
652 GSupplicantSSID *ssid;
654 DBG("network %p", network);
659 wifi = connman_device_get_data(device);
663 ssid = g_try_malloc0(sizeof(GSupplicantSSID));
667 interface = wifi->interface;
669 ssid_init(ssid, network);
671 if (wifi->disconnecting == TRUE)
672 wifi->pending_network = connman_network_ref(network);
674 wifi->network = connman_network_ref(network);
676 return g_supplicant_interface_connect(interface, ssid,
677 connect_callback, NULL);
683 static void disconnect_callback(int result, GSupplicantInterface *interface,
686 struct wifi_data *wifi = user_data;
688 if (wifi->network != NULL) {
690 * if result < 0 supplican return an error because
691 * the network is not current.
692 * we wont receive G_SUPPLICANT_STATE_DISCONNECTED since it
693 * failed, call connman_network_set_connected to report
694 * disconnect is completed.
697 connman_network_set_connected(wifi->network, FALSE);
699 connman_network_unref(wifi->network);
702 wifi->network = NULL;
704 wifi->disconnecting = FALSE;
706 if (wifi->pending_network != NULL) {
707 network_connect(wifi->pending_network);
708 connman_network_unref(wifi->pending_network);
709 wifi->pending_network = NULL;
714 static int network_disconnect(struct connman_network *network)
716 struct connman_device *device = connman_network_get_device(network);
717 struct wifi_data *wifi;
720 DBG("network %p", network);
722 wifi = connman_device_get_data(device);
723 if (wifi == NULL || wifi->interface == NULL)
726 connman_network_set_associating(network, FALSE);
728 if (wifi->disconnecting == TRUE)
731 wifi->disconnecting = TRUE;
733 err = g_supplicant_interface_disconnect(wifi->interface,
734 disconnect_callback, wifi);
736 wifi->disconnecting = FALSE;
741 static struct connman_network_driver network_driver = {
743 .type = CONNMAN_NETWORK_TYPE_WIFI,
744 .priority = CONNMAN_NETWORK_PRIORITY_LOW,
745 .probe = network_probe,
746 .remove = network_remove,
747 .connect = network_connect,
748 .disconnect = network_disconnect,
751 static int tech_probe(struct connman_technology *technology)
753 wifi_technology = technology;
758 static void tech_remove(struct connman_technology *technology)
760 wifi_technology = NULL;
763 static void regdom_callback(void *user_data)
765 char *alpha2 = user_data;
769 if (wifi_technology == NULL)
772 connman_technology_regdom_notify(wifi_technology, alpha2);
775 static int tech_set_regdom(struct connman_technology *technology, const char *alpha2)
777 return g_supplicant_set_country(alpha2, regdom_callback, alpha2);
780 static struct connman_technology_driver tech_driver = {
782 .type = CONNMAN_SERVICE_TYPE_WIFI,
784 .remove = tech_remove,
785 .set_regdom = tech_set_regdom,
788 static int wifi_init(void)
792 err = connman_network_driver_register(&network_driver);
796 err = g_supplicant_register(&callbacks);
798 connman_network_driver_unregister(&network_driver);
802 err = connman_technology_driver_register(&tech_driver);
804 g_supplicant_unregister(&callbacks);
805 connman_network_driver_unregister(&network_driver);
812 static void wifi_exit(void)
816 connman_technology_driver_unregister(&tech_driver);
818 g_supplicant_unregister(&callbacks);
820 connman_network_driver_unregister(&network_driver);
823 CONNMAN_PLUGIN_DEFINE(wifi, "WiFi interface plugin", VERSION,
824 CONNMAN_PLUGIN_PRIORITY_DEFAULT, wifi_init, wifi_exit)