]> git.ipfire.org Git - thirdparty/hostap.git/blame - wpa_supplicant/wpa_supplicant.c
hostapd/wpa_s: Use driver's extended capabilities
[thirdparty/hostap.git] / wpa_supplicant / wpa_supplicant.c
CommitLineData
6fc6879b
JM
1/*
2 * WPA Supplicant
d93dfbd5 3 * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi>
6fc6879b 4 *
0f3d578e
JM
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
6fc6879b
JM
7 *
8 * This file implements functions for registering and unregistering
9 * %wpa_supplicant interfaces. In addition, this file contains number of
10 * functions for managing network connections.
11 */
12
13#include "includes.h"
14
15#include "common.h"
d47fa330 16#include "crypto/random.h"
7d232e23 17#include "crypto/sha1.h"
6fc6879b
JM
18#include "eapol_supp/eapol_supp_sm.h"
19#include "eap_peer/eap.h"
3ec97afe 20#include "eap_server/eap_methods.h"
3acb5005 21#include "rsn_supp/wpa.h"
6fc6879b 22#include "eloop.h"
6fc6879b 23#include "config.h"
306ae225 24#include "utils/ext_password.h"
6fc6879b
JM
25#include "l2_packet/l2_packet.h"
26#include "wpa_supplicant_i.h"
2d5b792d 27#include "driver_i.h"
6fc6879b 28#include "ctrl_iface.h"
6fc6879b 29#include "pcsc_funcs.h"
90973fb2 30#include "common/version.h"
3acb5005
JM
31#include "rsn_supp/preauth.h"
32#include "rsn_supp/pmksa_cache.h"
90973fb2 33#include "common/wpa_ctrl.h"
90973fb2 34#include "common/ieee802_11_defs.h"
72044390 35#include "p2p/p2p.h"
6fc6879b
JM
36#include "blacklist.h"
37#include "wpas_glue.h"
116654ce 38#include "wps_supplicant.h"
11ef8d35 39#include "ibss_rsn.h"
c2a04078 40#include "sme.h"
04ea7b79 41#include "gas_query.h"
1f1b62a0 42#include "ap.h"
b22128ef 43#include "p2p_supplicant.h"
9675ce35 44#include "wifi_display.h"
8bac466b 45#include "notify.h"
60b94c98 46#include "bgscan.h"
7c865c68 47#include "autoscan.h"
83922c2d 48#include "bss.h"
9ba9fa07 49#include "scan.h"
24f6497c 50#include "offchannel.h"
cb418324 51#include "hs20_supplicant.h"
6fc6879b
JM
52
53const char *wpa_supplicant_version =
54"wpa_supplicant v" VERSION_STR "\n"
e056f93e 55"Copyright (c) 2003-2013, Jouni Malinen <j@w1.fi> and contributors";
6fc6879b
JM
56
57const char *wpa_supplicant_license =
331f89ff
JM
58"This software may be distributed under the terms of the BSD license.\n"
59"See README for more details.\n"
6fc6879b
JM
60#ifdef EAP_TLS_OPENSSL
61"\nThis product includes software developed by the OpenSSL Project\n"
62"for use in the OpenSSL Toolkit (http://www.openssl.org/)\n"
63#endif /* EAP_TLS_OPENSSL */
64;
65
66#ifndef CONFIG_NO_STDOUT_DEBUG
67/* Long text divided into parts in order to fit in C89 strings size limits. */
68const char *wpa_supplicant_full_license1 =
331f89ff 69"";
6fc6879b 70const char *wpa_supplicant_full_license2 =
331f89ff 71"This software may be distributed under the terms of the BSD license.\n"
6fc6879b
JM
72"\n"
73"Redistribution and use in source and binary forms, with or without\n"
74"modification, are permitted provided that the following conditions are\n"
75"met:\n"
76"\n";
77const char *wpa_supplicant_full_license3 =
78"1. Redistributions of source code must retain the above copyright\n"
79" notice, this list of conditions and the following disclaimer.\n"
80"\n"
81"2. Redistributions in binary form must reproduce the above copyright\n"
82" notice, this list of conditions and the following disclaimer in the\n"
83" documentation and/or other materials provided with the distribution.\n"
84"\n";
85const char *wpa_supplicant_full_license4 =
86"3. Neither the name(s) of the above-listed copyright holder(s) nor the\n"
87" names of its contributors may be used to endorse or promote products\n"
88" derived from this software without specific prior written permission.\n"
89"\n"
90"THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n"
91"\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n"
92"LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n"
93"A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n";
94const char *wpa_supplicant_full_license5 =
95"OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n"
96"SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n"
97"LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n"
98"DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n"
99"THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n"
100"(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n"
101"OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
102"\n";
103#endif /* CONFIG_NO_STDOUT_DEBUG */
104
6fc6879b
JM
105extern int wpa_debug_level;
106extern int wpa_debug_show_keys;
107extern int wpa_debug_timestamp;
c5121837 108extern struct wpa_driver_ops *wpa_drivers[];
6fc6879b
JM
109
110/* Configure default/group WEP keys for static WEP */
0194fedb 111int wpa_set_wep_keys(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid)
6fc6879b
JM
112{
113 int i, set = 0;
114
115 for (i = 0; i < NUM_WEP_KEYS; i++) {
116 if (ssid->wep_key_len[i] == 0)
117 continue;
118
119 set = 1;
0382097e 120 wpa_drv_set_key(wpa_s, WPA_ALG_WEP, NULL,
da64c266 121 i, i == ssid->wep_tx_keyidx, NULL, 0,
6fc6879b
JM
122 ssid->wep_key[i], ssid->wep_key_len[i]);
123 }
124
125 return set;
126}
127
128
129static int wpa_supplicant_set_wpa_none_key(struct wpa_supplicant *wpa_s,
130 struct wpa_ssid *ssid)
131{
132 u8 key[32];
133 size_t keylen;
71934751 134 enum wpa_alg alg;
6fc6879b
JM
135 u8 seq[6] = { 0 };
136
137 /* IBSS/WPA-None uses only one key (Group) for both receiving and
138 * sending unicast and multicast packets. */
139
d7dcba70 140 if (ssid->mode != WPAS_MODE_IBSS) {
f049052b
BG
141 wpa_msg(wpa_s, MSG_INFO, "WPA: Invalid mode %d (not "
142 "IBSS/ad-hoc) for WPA-None", ssid->mode);
6fc6879b
JM
143 return -1;
144 }
145
146 if (!ssid->psk_set) {
f049052b
BG
147 wpa_msg(wpa_s, MSG_INFO, "WPA: No PSK configured for "
148 "WPA-None");
6fc6879b
JM
149 return -1;
150 }
151
152 switch (wpa_s->group_cipher) {
153 case WPA_CIPHER_CCMP:
154 os_memcpy(key, ssid->psk, 16);
155 keylen = 16;
156 alg = WPA_ALG_CCMP;
157 break;
eb7719ff
JM
158 case WPA_CIPHER_GCMP:
159 os_memcpy(key, ssid->psk, 16);
160 keylen = 16;
161 alg = WPA_ALG_GCMP;
162 break;
6fc6879b
JM
163 case WPA_CIPHER_TKIP:
164 /* WPA-None uses the same Michael MIC key for both TX and RX */
165 os_memcpy(key, ssid->psk, 16 + 8);
166 os_memcpy(key + 16 + 8, ssid->psk + 16, 8);
167 keylen = 32;
168 alg = WPA_ALG_TKIP;
169 break;
170 default:
f049052b
BG
171 wpa_msg(wpa_s, MSG_INFO, "WPA: Invalid group cipher %d for "
172 "WPA-None", wpa_s->group_cipher);
6fc6879b
JM
173 return -1;
174 }
175
176 /* TODO: should actually remember the previously used seq#, both for TX
177 * and RX from each STA.. */
178
0382097e 179 return wpa_drv_set_key(wpa_s, alg, NULL, 0, 1, seq, 6, key, keylen);
6fc6879b
JM
180}
181
182
183static void wpa_supplicant_timeout(void *eloop_ctx, void *timeout_ctx)
184{
185 struct wpa_supplicant *wpa_s = eloop_ctx;
186 const u8 *bssid = wpa_s->bssid;
a8e16edc 187 if (is_zero_ether_addr(bssid))
6fc6879b
JM
188 bssid = wpa_s->pending_bssid;
189 wpa_msg(wpa_s, MSG_INFO, "Authentication with " MACSTR " timed out.",
190 MAC2STR(bssid));
191 wpa_blacklist_add(wpa_s, bssid);
192 wpa_sm_notify_disassoc(wpa_s->wpa);
07783eaa 193 wpa_supplicant_deauthenticate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
6fc6879b 194 wpa_s->reassociate = 1;
48b84f18
BG
195
196 /*
197 * If we timed out, the AP or the local radio may be busy.
198 * So, wait a second until scanning again.
199 */
200 wpa_supplicant_req_scan(wpa_s, 1, 0);
99fcd404 201
f85f545e 202 wpas_p2p_continue_after_scan(wpa_s);
6fc6879b
JM
203}
204
205
206/**
207 * wpa_supplicant_req_auth_timeout - Schedule a timeout for authentication
208 * @wpa_s: Pointer to wpa_supplicant data
209 * @sec: Number of seconds after which to time out authentication
210 * @usec: Number of microseconds after which to time out authentication
211 *
212 * This function is used to schedule a timeout for the current authentication
213 * attempt.
214 */
215void wpa_supplicant_req_auth_timeout(struct wpa_supplicant *wpa_s,
216 int sec, int usec)
217{
c2a04078
JM
218 if (wpa_s->conf && wpa_s->conf->ap_scan == 0 &&
219 (wpa_s->drv_flags & WPA_DRIVER_FLAGS_WIRED))
6fc6879b
JM
220 return;
221
f049052b 222 wpa_dbg(wpa_s, MSG_DEBUG, "Setting authentication timeout: %d sec "
6fc6879b
JM
223 "%d usec", sec, usec);
224 eloop_cancel_timeout(wpa_supplicant_timeout, wpa_s, NULL);
225 eloop_register_timeout(sec, usec, wpa_supplicant_timeout, wpa_s, NULL);
226}
227
228
229/**
230 * wpa_supplicant_cancel_auth_timeout - Cancel authentication timeout
231 * @wpa_s: Pointer to wpa_supplicant data
232 *
233 * This function is used to cancel authentication timeout scheduled with
234 * wpa_supplicant_req_auth_timeout() and it is called when authentication has
235 * been completed.
236 */
237void wpa_supplicant_cancel_auth_timeout(struct wpa_supplicant *wpa_s)
238{
f049052b 239 wpa_dbg(wpa_s, MSG_DEBUG, "Cancelling authentication timeout");
6fc6879b
JM
240 eloop_cancel_timeout(wpa_supplicant_timeout, wpa_s, NULL);
241 wpa_blacklist_del(wpa_s, wpa_s->bssid);
242}
243
244
245/**
246 * wpa_supplicant_initiate_eapol - Configure EAPOL state machine
247 * @wpa_s: Pointer to wpa_supplicant data
248 *
249 * This function is used to configure EAPOL state machine based on the selected
250 * authentication mode.
251 */
252void wpa_supplicant_initiate_eapol(struct wpa_supplicant *wpa_s)
253{
254#ifdef IEEE8021X_EAPOL
255 struct eapol_config eapol_conf;
256 struct wpa_ssid *ssid = wpa_s->current_ssid;
257
53895c3b 258#ifdef CONFIG_IBSS_RSN
d7dcba70 259 if (ssid->mode == WPAS_MODE_IBSS &&
53895c3b
JM
260 wpa_s->key_mgmt != WPA_KEY_MGMT_NONE &&
261 wpa_s->key_mgmt != WPA_KEY_MGMT_WPA_NONE) {
262 /*
263 * RSN IBSS authentication is per-STA and we can disable the
264 * per-BSSID EAPOL authentication.
265 */
266 eapol_sm_notify_portControl(wpa_s->eapol, ForceAuthorized);
267 eapol_sm_notify_eap_success(wpa_s->eapol, TRUE);
268 eapol_sm_notify_eap_fail(wpa_s->eapol, FALSE);
269 return;
270 }
271#endif /* CONFIG_IBSS_RSN */
272
0a40ec6a
JM
273 eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
274 eapol_sm_notify_eap_fail(wpa_s->eapol, FALSE);
275
6fc6879b
JM
276 if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
277 wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE)
278 eapol_sm_notify_portControl(wpa_s->eapol, ForceAuthorized);
279 else
280 eapol_sm_notify_portControl(wpa_s->eapol, Auto);
281
282 os_memset(&eapol_conf, 0, sizeof(eapol_conf));
283 if (wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
284 eapol_conf.accept_802_1x_keys = 1;
285 eapol_conf.required_keys = 0;
286 if (ssid->eapol_flags & EAPOL_FLAG_REQUIRE_KEY_UNICAST) {
287 eapol_conf.required_keys |= EAPOL_REQUIRE_KEY_UNICAST;
288 }
289 if (ssid->eapol_flags & EAPOL_FLAG_REQUIRE_KEY_BROADCAST) {
290 eapol_conf.required_keys |=
291 EAPOL_REQUIRE_KEY_BROADCAST;
292 }
293
c2a04078 294 if (wpa_s->conf && (wpa_s->drv_flags & WPA_DRIVER_FLAGS_WIRED))
6fc6879b 295 eapol_conf.required_keys = 0;
6fc6879b
JM
296 }
297 if (wpa_s->conf)
298 eapol_conf.fast_reauth = wpa_s->conf->fast_reauth;
299 eapol_conf.workaround = ssid->eap_workaround;
56586197
JM
300 eapol_conf.eap_disabled =
301 !wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) &&
ad08c363
JM
302 wpa_s->key_mgmt != WPA_KEY_MGMT_IEEE8021X_NO_WPA &&
303 wpa_s->key_mgmt != WPA_KEY_MGMT_WPS;
6fc6879b
JM
304 eapol_sm_notify_config(wpa_s->eapol, &ssid->eap, &eapol_conf);
305#endif /* IEEE8021X_EAPOL */
306}
307
308
309/**
310 * wpa_supplicant_set_non_wpa_policy - Set WPA parameters to non-WPA mode
311 * @wpa_s: Pointer to wpa_supplicant data
312 * @ssid: Configuration data for the network
313 *
314 * This function is used to configure WPA state machine and related parameters
315 * to a mode where WPA is not enabled. This is called as part of the
316 * authentication configuration when the selected network does not use WPA.
317 */
318void wpa_supplicant_set_non_wpa_policy(struct wpa_supplicant *wpa_s,
319 struct wpa_ssid *ssid)
320{
321 int i;
322
ad08c363
JM
323 if (ssid->key_mgmt & WPA_KEY_MGMT_WPS)
324 wpa_s->key_mgmt = WPA_KEY_MGMT_WPS;
325 else if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA)
6fc6879b
JM
326 wpa_s->key_mgmt = WPA_KEY_MGMT_IEEE8021X_NO_WPA;
327 else
328 wpa_s->key_mgmt = WPA_KEY_MGMT_NONE;
329 wpa_sm_set_ap_wpa_ie(wpa_s->wpa, NULL, 0);
330 wpa_sm_set_ap_rsn_ie(wpa_s->wpa, NULL, 0);
331 wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
332 wpa_s->pairwise_cipher = WPA_CIPHER_NONE;
333 wpa_s->group_cipher = WPA_CIPHER_NONE;
334 wpa_s->mgmt_group_cipher = 0;
335
336 for (i = 0; i < NUM_WEP_KEYS; i++) {
337 if (ssid->wep_key_len[i] > 5) {
338 wpa_s->pairwise_cipher = WPA_CIPHER_WEP104;
339 wpa_s->group_cipher = WPA_CIPHER_WEP104;
340 break;
341 } else if (ssid->wep_key_len[i] > 0) {
342 wpa_s->pairwise_cipher = WPA_CIPHER_WEP40;
343 wpa_s->group_cipher = WPA_CIPHER_WEP40;
344 break;
345 }
346 }
347
348 wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_RSN_ENABLED, 0);
349 wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_KEY_MGMT, wpa_s->key_mgmt);
350 wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_PAIRWISE,
351 wpa_s->pairwise_cipher);
352 wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_GROUP, wpa_s->group_cipher);
353#ifdef CONFIG_IEEE80211W
354 wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_MGMT_GROUP,
355 wpa_s->mgmt_group_cipher);
356#endif /* CONFIG_IEEE80211W */
357
358 pmksa_cache_clear_current(wpa_s->wpa);
359}
360
361
6979582c 362void free_hw_features(struct wpa_supplicant *wpa_s)
6bf731e8
CL
363{
364 int i;
365 if (wpa_s->hw.modes == NULL)
366 return;
367
368 for (i = 0; i < wpa_s->hw.num_modes; i++) {
369 os_free(wpa_s->hw.modes[i].channels);
370 os_free(wpa_s->hw.modes[i].rates);
371 }
372
373 os_free(wpa_s->hw.modes);
374 wpa_s->hw.modes = NULL;
375}
376
377
6fc6879b
JM
378static void wpa_supplicant_cleanup(struct wpa_supplicant *wpa_s)
379{
60b94c98 380 bgscan_deinit(wpa_s);
7c865c68 381 autoscan_deinit(wpa_s);
6fc6879b
JM
382 scard_deinit(wpa_s->scard);
383 wpa_s->scard = NULL;
384 wpa_sm_set_scard_ctx(wpa_s->wpa, NULL);
385 eapol_sm_register_scard_ctx(wpa_s->eapol, NULL);
386 l2_packet_deinit(wpa_s->l2);
387 wpa_s->l2 = NULL;
388 if (wpa_s->l2_br) {
389 l2_packet_deinit(wpa_s->l2_br);
390 wpa_s->l2_br = NULL;
391 }
392
6fc6879b 393 if (wpa_s->conf != NULL) {
8e56d189
JM
394 struct wpa_ssid *ssid;
395 for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next)
396 wpas_notify_network_removed(wpa_s, ssid);
6fc6879b
JM
397 }
398
399 os_free(wpa_s->confname);
400 wpa_s->confname = NULL;
401
402 wpa_sm_set_eapol(wpa_s->wpa, NULL);
403 eapol_sm_deinit(wpa_s->eapol);
404 wpa_s->eapol = NULL;
405
406 rsn_preauth_deinit(wpa_s->wpa);
407
281ff0aa
GP
408#ifdef CONFIG_TDLS
409 wpa_tdls_deinit(wpa_s->wpa);
410#endif /* CONFIG_TDLS */
411
6fc6879b
JM
412 pmksa_candidate_free(wpa_s->wpa);
413 wpa_sm_deinit(wpa_s->wpa);
414 wpa_s->wpa = NULL;
415 wpa_blacklist_clear(wpa_s);
416
83922c2d 417 wpa_bss_deinit(wpa_s);
6fc6879b
JM
418
419 wpa_supplicant_cancel_scan(wpa_s);
420 wpa_supplicant_cancel_auth_timeout(wpa_s);
01a17491
JM
421 eloop_cancel_timeout(wpa_supplicant_stop_countermeasures, wpa_s, NULL);
422#ifdef CONFIG_DELAYED_MIC_ERROR_REPORT
423 eloop_cancel_timeout(wpa_supplicant_delayed_mic_error_report,
424 wpa_s, NULL);
425#endif /* CONFIG_DELAYED_MIC_ERROR_REPORT */
6fc6879b 426
116654ce 427 wpas_wps_deinit(wpa_s);
11ef8d35 428
1ff73338
JM
429 wpabuf_free(wpa_s->pending_eapol_rx);
430 wpa_s->pending_eapol_rx = NULL;
431
11ef8d35
JM
432#ifdef CONFIG_IBSS_RSN
433 ibss_rsn_deinit(wpa_s->ibss_rsn);
434 wpa_s->ibss_rsn = NULL;
435#endif /* CONFIG_IBSS_RSN */
c2a04078 436
e29853bb 437 sme_deinit(wpa_s);
2d5b792d
JM
438
439#ifdef CONFIG_AP
440 wpa_supplicant_ap_deinit(wpa_s);
441#endif /* CONFIG_AP */
b22128ef
JM
442
443#ifdef CONFIG_P2P
444 wpas_p2p_deinit(wpa_s);
445#endif /* CONFIG_P2P */
f47d639d 446
24f6497c
JM
447#ifdef CONFIG_OFFCHANNEL
448 offchannel_deinit(wpa_s);
449#endif /* CONFIG_OFFCHANNEL */
450
a4cba8f1
LC
451 wpa_supplicant_cancel_sched_scan(wpa_s);
452
f47d639d
JM
453 os_free(wpa_s->next_scan_freqs);
454 wpa_s->next_scan_freqs = NULL;
04ea7b79
JM
455
456 gas_query_deinit(wpa_s->gas);
457 wpa_s->gas = NULL;
6bf731e8
CL
458
459 free_hw_features(wpa_s);
d445a5cd
JM
460
461 os_free(wpa_s->bssid_filter);
462 wpa_s->bssid_filter = NULL;
b6668734 463
6407f413
JM
464 os_free(wpa_s->disallow_aps_bssid);
465 wpa_s->disallow_aps_bssid = NULL;
466 os_free(wpa_s->disallow_aps_ssid);
467 wpa_s->disallow_aps_ssid = NULL;
468
b6668734 469 wnm_bss_keep_alive_deinit(wpa_s);
306ae225
JM
470
471 ext_password_deinit(wpa_s->ext_pw);
472 wpa_s->ext_pw = NULL;
b1f12296
JM
473
474 wpabuf_free(wpa_s->last_gas_resp);
a297201d
JM
475
476 os_free(wpa_s->last_scan_res);
477 wpa_s->last_scan_res = NULL;
6fc6879b
JM
478}
479
480
481/**
482 * wpa_clear_keys - Clear keys configured for the driver
483 * @wpa_s: Pointer to wpa_supplicant data
484 * @addr: Previously used BSSID or %NULL if not available
485 *
486 * This function clears the encryption keys that has been previously configured
487 * for the driver.
488 */
489void wpa_clear_keys(struct wpa_supplicant *wpa_s, const u8 *addr)
490{
6fc6879b
JM
491 if (wpa_s->keys_cleared) {
492 /* Some drivers (e.g., ndiswrapper & NDIS drivers) seem to have
493 * timing issues with keys being cleared just before new keys
494 * are set or just after association or something similar. This
495 * shows up in group key handshake failing often because of the
496 * client not receiving the first encrypted packets correctly.
497 * Skipping some of the extra key clearing steps seems to help
498 * in completing group key handshake more reliably. */
f049052b
BG
499 wpa_dbg(wpa_s, MSG_DEBUG, "No keys have been configured - "
500 "skip key clearing");
6fc6879b
JM
501 return;
502 }
503
504 /* MLME-DELETEKEYS.request */
0382097e
JM
505 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 0, 0, NULL, 0, NULL, 0);
506 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 1, 0, NULL, 0, NULL, 0);
507 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 2, 0, NULL, 0, NULL, 0);
508 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 3, 0, NULL, 0, NULL, 0);
0e27f655 509#ifdef CONFIG_IEEE80211W
0382097e
JM
510 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 4, 0, NULL, 0, NULL, 0);
511 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 5, 0, NULL, 0, NULL, 0);
0e27f655 512#endif /* CONFIG_IEEE80211W */
6fc6879b
JM
513 if (addr) {
514 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, addr, 0, 0, NULL, 0, NULL,
515 0);
516 /* MLME-SETPROTECTION.request(None) */
517 wpa_drv_mlme_setprotection(
518 wpa_s, addr,
519 MLME_SETPROTECTION_PROTECT_TYPE_NONE,
520 MLME_SETPROTECTION_KEY_TYPE_PAIRWISE);
521 }
522 wpa_s->keys_cleared = 1;
523}
524
525
526/**
527 * wpa_supplicant_state_txt - Get the connection state name as a text string
528 * @state: State (wpa_state; WPA_*)
529 * Returns: The state name as a printable text string
530 */
71934751 531const char * wpa_supplicant_state_txt(enum wpa_states state)
6fc6879b
JM
532{
533 switch (state) {
534 case WPA_DISCONNECTED:
535 return "DISCONNECTED";
536 case WPA_INACTIVE:
537 return "INACTIVE";
8401a6b0
JM
538 case WPA_INTERFACE_DISABLED:
539 return "INTERFACE_DISABLED";
6fc6879b
JM
540 case WPA_SCANNING:
541 return "SCANNING";
c2a04078
JM
542 case WPA_AUTHENTICATING:
543 return "AUTHENTICATING";
6fc6879b
JM
544 case WPA_ASSOCIATING:
545 return "ASSOCIATING";
546 case WPA_ASSOCIATED:
547 return "ASSOCIATED";
548 case WPA_4WAY_HANDSHAKE:
549 return "4WAY_HANDSHAKE";
550 case WPA_GROUP_HANDSHAKE:
551 return "GROUP_HANDSHAKE";
552 case WPA_COMPLETED:
553 return "COMPLETED";
554 default:
555 return "UNKNOWN";
556 }
557}
558
559
cfe53c9a
PS
560#ifdef CONFIG_BGSCAN
561
562static void wpa_supplicant_start_bgscan(struct wpa_supplicant *wpa_s)
563{
0096c427
JM
564 if (wpas_driver_bss_selection(wpa_s))
565 return;
cfe53c9a
PS
566 if (wpa_s->current_ssid == wpa_s->bgscan_ssid)
567 return;
568
569 bgscan_deinit(wpa_s);
570 if (wpa_s->current_ssid && wpa_s->current_ssid->bgscan) {
571 if (bgscan_init(wpa_s, wpa_s->current_ssid)) {
572 wpa_dbg(wpa_s, MSG_DEBUG, "Failed to initialize "
573 "bgscan");
574 /*
575 * Live without bgscan; it is only used as a roaming
576 * optimization, so the initial connection is not
577 * affected.
578 */
6409b7a7
YD
579 } else {
580 struct wpa_scan_results *scan_res;
cfe53c9a 581 wpa_s->bgscan_ssid = wpa_s->current_ssid;
6409b7a7
YD
582 scan_res = wpa_supplicant_get_scan_results(wpa_s, NULL,
583 0);
584 if (scan_res) {
585 bgscan_notify_scan(wpa_s, scan_res);
586 wpa_scan_results_free(scan_res);
587 }
588 }
cfe53c9a
PS
589 } else
590 wpa_s->bgscan_ssid = NULL;
591}
592
593
594static void wpa_supplicant_stop_bgscan(struct wpa_supplicant *wpa_s)
595{
596 if (wpa_s->bgscan_ssid != NULL) {
597 bgscan_deinit(wpa_s);
598 wpa_s->bgscan_ssid = NULL;
599 }
600}
601
602#endif /* CONFIG_BGSCAN */
603
604
7c865c68
TB
605static void wpa_supplicant_start_autoscan(struct wpa_supplicant *wpa_s)
606{
99218999 607 if (autoscan_init(wpa_s, 0))
7c865c68
TB
608 wpa_dbg(wpa_s, MSG_DEBUG, "Failed to initialize autoscan");
609}
610
611
612static void wpa_supplicant_stop_autoscan(struct wpa_supplicant *wpa_s)
613{
614 autoscan_deinit(wpa_s);
615}
616
617
c3d12238
JM
618void wpa_supplicant_reinit_autoscan(struct wpa_supplicant *wpa_s)
619{
620 if (wpa_s->wpa_state == WPA_DISCONNECTED ||
621 wpa_s->wpa_state == WPA_SCANNING) {
622 autoscan_deinit(wpa_s);
623 wpa_supplicant_start_autoscan(wpa_s);
624 }
625}
626
627
6fc6879b
JM
628/**
629 * wpa_supplicant_set_state - Set current connection state
630 * @wpa_s: Pointer to wpa_supplicant data
631 * @state: The new connection state
632 *
633 * This function is called whenever the connection state changes, e.g.,
634 * association is completed for WPA/WPA2 4-Way Handshake is started.
635 */
71934751
JM
636void wpa_supplicant_set_state(struct wpa_supplicant *wpa_s,
637 enum wpa_states state)
6fc6879b 638{
27f43d8d
MH
639 enum wpa_states old_state = wpa_s->wpa_state;
640
f049052b
BG
641 wpa_dbg(wpa_s, MSG_DEBUG, "State: %s -> %s",
642 wpa_supplicant_state_txt(wpa_s->wpa_state),
643 wpa_supplicant_state_txt(state));
6fc6879b 644
cb8564b1
DW
645 if (state != WPA_SCANNING)
646 wpa_supplicant_notify_scanning(wpa_s, 0);
647
6fc6879b 648 if (state == WPA_COMPLETED && wpa_s->new_connection) {
6fc6879b 649 struct wpa_ssid *ssid = wpa_s->current_ssid;
7d37a357 650#if defined(CONFIG_CTRL_IFACE) || !defined(CONFIG_NO_STDOUT_DEBUG)
6fc6879b 651 wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_CONNECTED "- Connection to "
1cfc6787
JM
652 MACSTR " completed [id=%d id_str=%s]",
653 MAC2STR(wpa_s->bssid),
6fc6879b
JM
654 ssid ? ssid->id : -1,
655 ssid && ssid->id_str ? ssid->id_str : "");
656#endif /* CONFIG_CTRL_IFACE || !CONFIG_NO_STDOUT_DEBUG */
00e5e3d5 657 wpas_clear_temp_disabled(wpa_s, ssid, 1);
f1a52633 658 wpa_s->extra_blacklist_count = 0;
6fc6879b 659 wpa_s->new_connection = 0;
6fc6879b 660 wpa_drv_set_operstate(wpa_s, 1);
99ac2913
FF
661#ifndef IEEE8021X_EAPOL
662 wpa_drv_set_supp_port(wpa_s, 1);
663#endif /* IEEE8021X_EAPOL */
17a4734d 664 wpa_s->after_wps = 0;
b22128ef
JM
665#ifdef CONFIG_P2P
666 wpas_p2p_completed(wpa_s);
667#endif /* CONFIG_P2P */
c3701c66
RM
668
669 sme_sched_obss_scan(wpa_s, 1);
6fc6879b
JM
670 } else if (state == WPA_DISCONNECTED || state == WPA_ASSOCIATING ||
671 state == WPA_ASSOCIATED) {
672 wpa_s->new_connection = 1;
673 wpa_drv_set_operstate(wpa_s, 0);
99ac2913
FF
674#ifndef IEEE8021X_EAPOL
675 wpa_drv_set_supp_port(wpa_s, 0);
676#endif /* IEEE8021X_EAPOL */
c3701c66 677 sme_sched_obss_scan(wpa_s, 0);
6fc6879b
JM
678 }
679 wpa_s->wpa_state = state;
27f43d8d 680
cfe53c9a
PS
681#ifdef CONFIG_BGSCAN
682 if (state == WPA_COMPLETED)
683 wpa_supplicant_start_bgscan(wpa_s);
684 else
685 wpa_supplicant_stop_bgscan(wpa_s);
686#endif /* CONFIG_BGSCAN */
687
7c865c68
TB
688 if (state == WPA_AUTHENTICATING)
689 wpa_supplicant_stop_autoscan(wpa_s);
690
691 if (state == WPA_DISCONNECTED || state == WPA_INACTIVE)
692 wpa_supplicant_start_autoscan(wpa_s);
693
5bbf9f10 694 if (wpa_s->wpa_state != old_state) {
27f43d8d 695 wpas_notify_state_changed(wpa_s, wpa_s->wpa_state, old_state);
5bbf9f10
PS
696
697 if (wpa_s->wpa_state == WPA_COMPLETED ||
698 old_state == WPA_COMPLETED)
699 wpas_notify_auth_changed(wpa_s);
700 }
6fc6879b
JM
701}
702
703
1a1bf008
JM
704void wpa_supplicant_terminate_proc(struct wpa_global *global)
705{
706 int pending = 0;
707#ifdef CONFIG_WPS
708 struct wpa_supplicant *wpa_s = global->ifaces;
709 while (wpa_s) {
710 if (wpas_wps_terminate_pending(wpa_s) == 1)
711 pending = 1;
712 wpa_s = wpa_s->next;
713 }
714#endif /* CONFIG_WPS */
715 if (pending)
716 return;
717 eloop_terminate();
718}
719
720
0456ea16 721static void wpa_supplicant_terminate(int sig, void *signal_ctx)
6fc6879b 722{
0456ea16 723 struct wpa_global *global = signal_ctx;
1a1bf008 724 wpa_supplicant_terminate_proc(global);
6fc6879b
JM
725}
726
727
b22128ef 728void wpa_supplicant_clear_status(struct wpa_supplicant *wpa_s)
6fc6879b 729{
71934751 730 enum wpa_states old_state = wpa_s->wpa_state;
27f43d8d 731
6fc6879b
JM
732 wpa_s->pairwise_cipher = 0;
733 wpa_s->group_cipher = 0;
734 wpa_s->mgmt_group_cipher = 0;
735 wpa_s->key_mgmt = 0;
8401a6b0 736 if (wpa_s->wpa_state != WPA_INTERFACE_DISABLED)
99218999 737 wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
27f43d8d
MH
738
739 if (wpa_s->wpa_state != old_state)
740 wpas_notify_state_changed(wpa_s, wpa_s->wpa_state, old_state);
6fc6879b
JM
741}
742
743
744/**
745 * wpa_supplicant_reload_configuration - Reload configuration data
746 * @wpa_s: Pointer to wpa_supplicant data
747 * Returns: 0 on success or -1 if configuration parsing failed
748 *
749 * This function can be used to request that the configuration data is reloaded
750 * (e.g., after configuration file change). This function is reloading
751 * configuration only for one interface, so this may need to be called multiple
752 * times if %wpa_supplicant is controlling multiple interfaces and all
753 * interfaces need reconfiguration.
754 */
755int wpa_supplicant_reload_configuration(struct wpa_supplicant *wpa_s)
756{
757 struct wpa_config *conf;
758 int reconf_ctrl;
8bac466b
JM
759 int old_ap_scan;
760
6fc6879b
JM
761 if (wpa_s->confname == NULL)
762 return -1;
763 conf = wpa_config_read(wpa_s->confname);
764 if (conf == NULL) {
765 wpa_msg(wpa_s, MSG_ERROR, "Failed to parse the configuration "
766 "file '%s' - exiting", wpa_s->confname);
767 return -1;
768 }
611aea7d 769 conf->changed_parameters = (unsigned int) -1;
6fc6879b
JM
770
771 reconf_ctrl = !!conf->ctrl_interface != !!wpa_s->conf->ctrl_interface
772 || (conf->ctrl_interface && wpa_s->conf->ctrl_interface &&
773 os_strcmp(conf->ctrl_interface,
774 wpa_s->conf->ctrl_interface) != 0);
775
776 if (reconf_ctrl && wpa_s->ctrl_iface) {
777 wpa_supplicant_ctrl_iface_deinit(wpa_s->ctrl_iface);
778 wpa_s->ctrl_iface = NULL;
779 }
780
781 eapol_sm_invalidate_cached_session(wpa_s->eapol);
7b7ce8aa
JM
782 if (wpa_s->current_ssid) {
783 wpa_supplicant_deauthenticate(wpa_s,
784 WLAN_REASON_DEAUTH_LEAVING);
785 }
8bac466b 786
6fc6879b
JM
787 /*
788 * TODO: should notify EAPOL SM about changes in opensc_engine_path,
789 * pkcs11_engine_path, pkcs11_module_path.
790 */
56586197 791 if (wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt)) {
6fc6879b
JM
792 /*
793 * Clear forced success to clear EAP state for next
794 * authentication.
795 */
796 eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
797 }
798 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
799 wpa_sm_set_config(wpa_s->wpa, NULL);
d8a790b9 800 wpa_sm_pmksa_cache_flush(wpa_s->wpa, NULL);
6fc6879b
JM
801 wpa_sm_set_fast_reauth(wpa_s->wpa, wpa_s->conf->fast_reauth);
802 rsn_preauth_deinit(wpa_s->wpa);
8bac466b
JM
803
804 old_ap_scan = wpa_s->conf->ap_scan;
6fc6879b
JM
805 wpa_config_free(wpa_s->conf);
806 wpa_s->conf = conf;
8bac466b
JM
807 if (old_ap_scan != wpa_s->conf->ap_scan)
808 wpas_notify_ap_scan_changed(wpa_s);
809
6fc6879b
JM
810 if (reconf_ctrl)
811 wpa_s->ctrl_iface = wpa_supplicant_ctrl_iface_init(wpa_s);
812
611aea7d
JM
813 wpa_supplicant_update_config(wpa_s);
814
6fc6879b 815 wpa_supplicant_clear_status(wpa_s);
349493bd 816 if (wpa_supplicant_enabled_networks(wpa_s)) {
43a38635
JM
817 wpa_s->reassociate = 1;
818 wpa_supplicant_req_scan(wpa_s, 0, 0);
819 }
f049052b 820 wpa_dbg(wpa_s, MSG_DEBUG, "Reconfiguration completed");
6fc6879b
JM
821 return 0;
822}
823
824
0456ea16 825static void wpa_supplicant_reconfig(int sig, void *signal_ctx)
6fc6879b 826{
0456ea16 827 struct wpa_global *global = signal_ctx;
6fc6879b 828 struct wpa_supplicant *wpa_s;
6fc6879b 829 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
f049052b
BG
830 wpa_dbg(wpa_s, MSG_DEBUG, "Signal %d received - reconfiguring",
831 sig);
6fc6879b 832 if (wpa_supplicant_reload_configuration(wpa_s) < 0) {
1a1bf008 833 wpa_supplicant_terminate_proc(global);
6fc6879b
JM
834 }
835 }
836}
837
838
508545f3 839enum wpa_key_mgmt key_mgmt2driver(int key_mgmt)
6fc6879b
JM
840{
841 switch (key_mgmt) {
842 case WPA_KEY_MGMT_NONE:
843 return KEY_MGMT_NONE;
844 case WPA_KEY_MGMT_IEEE8021X_NO_WPA:
845 return KEY_MGMT_802_1X_NO_WPA;
846 case WPA_KEY_MGMT_IEEE8021X:
847 return KEY_MGMT_802_1X;
848 case WPA_KEY_MGMT_WPA_NONE:
849 return KEY_MGMT_WPA_NONE;
850 case WPA_KEY_MGMT_FT_IEEE8021X:
851 return KEY_MGMT_FT_802_1X;
852 case WPA_KEY_MGMT_FT_PSK:
853 return KEY_MGMT_FT_PSK;
56586197
JM
854 case WPA_KEY_MGMT_IEEE8021X_SHA256:
855 return KEY_MGMT_802_1X_SHA256;
856 case WPA_KEY_MGMT_PSK_SHA256:
857 return KEY_MGMT_PSK_SHA256;
ad08c363
JM
858 case WPA_KEY_MGMT_WPS:
859 return KEY_MGMT_WPS;
6fc6879b
JM
860 case WPA_KEY_MGMT_PSK:
861 default:
862 return KEY_MGMT_PSK;
863 }
864}
865
866
867static int wpa_supplicant_suites_from_ai(struct wpa_supplicant *wpa_s,
868 struct wpa_ssid *ssid,
869 struct wpa_ie_data *ie)
870{
871 int ret = wpa_sm_parse_own_wpa_ie(wpa_s->wpa, ie);
872 if (ret) {
873 if (ret == -2) {
874 wpa_msg(wpa_s, MSG_INFO, "WPA: Failed to parse WPA IE "
875 "from association info");
876 }
877 return -1;
878 }
879
f049052b
BG
880 wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Using WPA IE from AssocReq to set "
881 "cipher suites");
6fc6879b
JM
882 if (!(ie->group_cipher & ssid->group_cipher)) {
883 wpa_msg(wpa_s, MSG_INFO, "WPA: Driver used disabled group "
884 "cipher 0x%x (mask 0x%x) - reject",
885 ie->group_cipher, ssid->group_cipher);
886 return -1;
887 }
888 if (!(ie->pairwise_cipher & ssid->pairwise_cipher)) {
889 wpa_msg(wpa_s, MSG_INFO, "WPA: Driver used disabled pairwise "
890 "cipher 0x%x (mask 0x%x) - reject",
891 ie->pairwise_cipher, ssid->pairwise_cipher);
892 return -1;
893 }
894 if (!(ie->key_mgmt & ssid->key_mgmt)) {
895 wpa_msg(wpa_s, MSG_INFO, "WPA: Driver used disabled key "
896 "management 0x%x (mask 0x%x) - reject",
897 ie->key_mgmt, ssid->key_mgmt);
898 return -1;
899 }
900
901#ifdef CONFIG_IEEE80211W
0b60b0aa 902 if (!(ie->capabilities & WPA_CAPABILITY_MFPC) &&
62d49803
JM
903 (ssid->ieee80211w == MGMT_FRAME_PROTECTION_DEFAULT ?
904 wpa_s->conf->pmf : ssid->ieee80211w) ==
905 MGMT_FRAME_PROTECTION_REQUIRED) {
6fc6879b
JM
906 wpa_msg(wpa_s, MSG_INFO, "WPA: Driver associated with an AP "
907 "that does not support management frame protection - "
908 "reject");
909 return -1;
910 }
911#endif /* CONFIG_IEEE80211W */
912
913 return 0;
914}
915
916
917/**
918 * wpa_supplicant_set_suites - Set authentication and encryption parameters
919 * @wpa_s: Pointer to wpa_supplicant data
920 * @bss: Scan results for the selected BSS, or %NULL if not available
921 * @ssid: Configuration data for the selected network
922 * @wpa_ie: Buffer for the WPA/RSN IE
923 * @wpa_ie_len: Maximum wpa_ie buffer size on input. This is changed to be the
924 * used buffer length in case the functions returns success.
925 * Returns: 0 on success or -1 on failure
926 *
927 * This function is used to configure authentication and encryption parameters
928 * based on the network configuration and scan result for the selected BSS (if
929 * available).
930 */
931int wpa_supplicant_set_suites(struct wpa_supplicant *wpa_s,
6fa81a3b 932 struct wpa_bss *bss, struct wpa_ssid *ssid,
6fc6879b
JM
933 u8 *wpa_ie, size_t *wpa_ie_len)
934{
935 struct wpa_ie_data ie;
936 int sel, proto;
937 const u8 *bss_wpa, *bss_rsn;
938
939 if (bss) {
6fa81a3b
JM
940 bss_wpa = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
941 bss_rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
6fc6879b
JM
942 } else
943 bss_wpa = bss_rsn = NULL;
944
945 if (bss_rsn && (ssid->proto & WPA_PROTO_RSN) &&
946 wpa_parse_wpa_ie(bss_rsn, 2 + bss_rsn[1], &ie) == 0 &&
947 (ie.group_cipher & ssid->group_cipher) &&
948 (ie.pairwise_cipher & ssid->pairwise_cipher) &&
949 (ie.key_mgmt & ssid->key_mgmt)) {
f049052b 950 wpa_dbg(wpa_s, MSG_DEBUG, "RSN: using IEEE 802.11i/D9.0");
6fc6879b
JM
951 proto = WPA_PROTO_RSN;
952 } else if (bss_wpa && (ssid->proto & WPA_PROTO_WPA) &&
953 wpa_parse_wpa_ie(bss_wpa, 2 +bss_wpa[1], &ie) == 0 &&
954 (ie.group_cipher & ssid->group_cipher) &&
955 (ie.pairwise_cipher & ssid->pairwise_cipher) &&
956 (ie.key_mgmt & ssid->key_mgmt)) {
f049052b 957 wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using IEEE 802.11i/D3.0");
6fc6879b
JM
958 proto = WPA_PROTO_WPA;
959 } else if (bss) {
960 wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to select WPA/RSN");
961 return -1;
962 } else {
963 if (ssid->proto & WPA_PROTO_RSN)
964 proto = WPA_PROTO_RSN;
965 else
966 proto = WPA_PROTO_WPA;
967 if (wpa_supplicant_suites_from_ai(wpa_s, ssid, &ie) < 0) {
968 os_memset(&ie, 0, sizeof(ie));
969 ie.group_cipher = ssid->group_cipher;
970 ie.pairwise_cipher = ssid->pairwise_cipher;
971 ie.key_mgmt = ssid->key_mgmt;
972#ifdef CONFIG_IEEE80211W
973 ie.mgmt_group_cipher =
70f8cc8e 974 ssid->ieee80211w != NO_MGMT_FRAME_PROTECTION ?
6fc6879b
JM
975 WPA_CIPHER_AES_128_CMAC : 0;
976#endif /* CONFIG_IEEE80211W */
f049052b
BG
977 wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Set cipher suites "
978 "based on configuration");
6fc6879b
JM
979 } else
980 proto = ie.proto;
981 }
982
f049052b
BG
983 wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Selected cipher suites: group %d "
984 "pairwise %d key_mgmt %d proto %d",
985 ie.group_cipher, ie.pairwise_cipher, ie.key_mgmt, proto);
6fc6879b
JM
986#ifdef CONFIG_IEEE80211W
987 if (ssid->ieee80211w) {
f049052b
BG
988 wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Selected mgmt group cipher %d",
989 ie.mgmt_group_cipher);
6fc6879b
JM
990 }
991#endif /* CONFIG_IEEE80211W */
992
64fa840a 993 wpa_s->wpa_proto = proto;
6fc6879b
JM
994 wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_PROTO, proto);
995 wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_RSN_ENABLED,
996 !!(ssid->proto & WPA_PROTO_RSN));
997
998 if (bss || !wpa_s->ap_ies_from_associnfo) {
999 if (wpa_sm_set_ap_wpa_ie(wpa_s->wpa, bss_wpa,
1000 bss_wpa ? 2 + bss_wpa[1] : 0) ||
1001 wpa_sm_set_ap_rsn_ie(wpa_s->wpa, bss_rsn,
1002 bss_rsn ? 2 + bss_rsn[1] : 0))
1003 return -1;
1004 }
1005
1006 sel = ie.group_cipher & ssid->group_cipher;
edbd2a19
JM
1007 wpa_s->group_cipher = wpa_pick_group_cipher(sel);
1008 if (wpa_s->group_cipher < 0) {
f049052b
BG
1009 wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to select group "
1010 "cipher");
6fc6879b
JM
1011 return -1;
1012 }
edbd2a19
JM
1013 wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using GTK %s",
1014 wpa_cipher_txt(wpa_s->group_cipher));
6fc6879b
JM
1015
1016 sel = ie.pairwise_cipher & ssid->pairwise_cipher;
edbd2a19
JM
1017 wpa_s->pairwise_cipher = wpa_pick_pairwise_cipher(sel, 1);
1018 if (wpa_s->pairwise_cipher < 0) {
f049052b
BG
1019 wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to select pairwise "
1020 "cipher");
6fc6879b
JM
1021 return -1;
1022 }
edbd2a19
JM
1023 wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using PTK %s",
1024 wpa_cipher_txt(wpa_s->pairwise_cipher));
6fc6879b
JM
1025
1026 sel = ie.key_mgmt & ssid->key_mgmt;
c10347f2
JM
1027#ifdef CONFIG_SAE
1028 if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_SAE))
1029 sel &= ~(WPA_KEY_MGMT_SAE | WPA_KEY_MGMT_FT_SAE);
1030#endif /* CONFIG_SAE */
6fc6879b
JM
1031 if (0) {
1032#ifdef CONFIG_IEEE80211R
1033 } else if (sel & WPA_KEY_MGMT_FT_IEEE8021X) {
1034 wpa_s->key_mgmt = WPA_KEY_MGMT_FT_IEEE8021X;
f049052b 1035 wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT FT/802.1X");
6fc6879b
JM
1036 } else if (sel & WPA_KEY_MGMT_FT_PSK) {
1037 wpa_s->key_mgmt = WPA_KEY_MGMT_FT_PSK;
f049052b 1038 wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT FT/PSK");
6fc6879b 1039#endif /* CONFIG_IEEE80211R */
c10347f2
JM
1040#ifdef CONFIG_SAE
1041 } else if (sel & WPA_KEY_MGMT_SAE) {
1042 wpa_s->key_mgmt = WPA_KEY_MGMT_SAE;
1043 wpa_dbg(wpa_s, MSG_DEBUG, "RSN: using KEY_MGMT SAE");
1044 } else if (sel & WPA_KEY_MGMT_FT_SAE) {
1045 wpa_s->key_mgmt = WPA_KEY_MGMT_FT_SAE;
1046 wpa_dbg(wpa_s, MSG_DEBUG, "RSN: using KEY_MGMT FT/SAE");
1047#endif /* CONFIG_SAE */
56586197
JM
1048#ifdef CONFIG_IEEE80211W
1049 } else if (sel & WPA_KEY_MGMT_IEEE8021X_SHA256) {
1050 wpa_s->key_mgmt = WPA_KEY_MGMT_IEEE8021X_SHA256;
f049052b 1051 wpa_dbg(wpa_s, MSG_DEBUG,
56586197
JM
1052 "WPA: using KEY_MGMT 802.1X with SHA256");
1053 } else if (sel & WPA_KEY_MGMT_PSK_SHA256) {
1054 wpa_s->key_mgmt = WPA_KEY_MGMT_PSK_SHA256;
f049052b 1055 wpa_dbg(wpa_s, MSG_DEBUG,
56586197
JM
1056 "WPA: using KEY_MGMT PSK with SHA256");
1057#endif /* CONFIG_IEEE80211W */
6fc6879b
JM
1058 } else if (sel & WPA_KEY_MGMT_IEEE8021X) {
1059 wpa_s->key_mgmt = WPA_KEY_MGMT_IEEE8021X;
f049052b 1060 wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT 802.1X");
6fc6879b
JM
1061 } else if (sel & WPA_KEY_MGMT_PSK) {
1062 wpa_s->key_mgmt = WPA_KEY_MGMT_PSK;
f049052b 1063 wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT WPA-PSK");
6fc6879b
JM
1064 } else if (sel & WPA_KEY_MGMT_WPA_NONE) {
1065 wpa_s->key_mgmt = WPA_KEY_MGMT_WPA_NONE;
f049052b 1066 wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT WPA-NONE");
6fc6879b 1067 } else {
f049052b
BG
1068 wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to select "
1069 "authenticated key management type");
6fc6879b
JM
1070 return -1;
1071 }
1072
1073 wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_KEY_MGMT, wpa_s->key_mgmt);
1074 wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_PAIRWISE,
1075 wpa_s->pairwise_cipher);
1076 wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_GROUP, wpa_s->group_cipher);
1077
1078#ifdef CONFIG_IEEE80211W
1079 sel = ie.mgmt_group_cipher;
62d49803
JM
1080 if ((ssid->ieee80211w == MGMT_FRAME_PROTECTION_DEFAULT ?
1081 wpa_s->conf->pmf : ssid->ieee80211w) == NO_MGMT_FRAME_PROTECTION ||
0b60b0aa 1082 !(ie.capabilities & WPA_CAPABILITY_MFPC))
6fc6879b
JM
1083 sel = 0;
1084 if (sel & WPA_CIPHER_AES_128_CMAC) {
1085 wpa_s->mgmt_group_cipher = WPA_CIPHER_AES_128_CMAC;
f049052b 1086 wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using MGMT group cipher "
6fc6879b
JM
1087 "AES-128-CMAC");
1088 } else {
1089 wpa_s->mgmt_group_cipher = 0;
f049052b 1090 wpa_dbg(wpa_s, MSG_DEBUG, "WPA: not using MGMT group cipher");
6fc6879b
JM
1091 }
1092 wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_MGMT_GROUP,
1093 wpa_s->mgmt_group_cipher);
62d49803
JM
1094 wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_MFP,
1095 (ssid->ieee80211w == MGMT_FRAME_PROTECTION_DEFAULT ?
1096 wpa_s->conf->pmf : ssid->ieee80211w));
6fc6879b
JM
1097#endif /* CONFIG_IEEE80211W */
1098
1099 if (wpa_sm_set_assoc_wpa_ie_default(wpa_s->wpa, wpa_ie, wpa_ie_len)) {
f049052b 1100 wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to generate WPA IE");
6fc6879b
JM
1101 return -1;
1102 }
1103
0bf927a0 1104 if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt)) {
6fc6879b 1105 wpa_sm_set_pmk(wpa_s->wpa, ssid->psk, PMK_LEN);
7d232e23
ZC
1106#ifndef CONFIG_NO_PBKDF2
1107 if (bss && ssid->bssid_set && ssid->ssid_len == 0 &&
1108 ssid->passphrase) {
1109 u8 psk[PMK_LEN];
986de33d
JM
1110 pbkdf2_sha1(ssid->passphrase, bss->ssid, bss->ssid_len,
1111 4096, psk, PMK_LEN);
7d232e23
ZC
1112 wpa_hexdump_key(MSG_MSGDUMP, "PSK (from passphrase)",
1113 psk, PMK_LEN);
1114 wpa_sm_set_pmk(wpa_s->wpa, psk, PMK_LEN);
1115 }
1116#endif /* CONFIG_NO_PBKDF2 */
9173b16f
JM
1117#ifdef CONFIG_EXT_PASSWORD
1118 if (ssid->ext_psk) {
1119 struct wpabuf *pw = ext_password_get(wpa_s->ext_pw,
1120 ssid->ext_psk);
1121 char pw_str[64 + 1];
1122 u8 psk[PMK_LEN];
1123
1124 if (pw == NULL) {
1125 wpa_msg(wpa_s, MSG_INFO, "EXT PW: No PSK "
1126 "found from external storage");
1127 return -1;
1128 }
1129
1130 if (wpabuf_len(pw) < 8 || wpabuf_len(pw) > 64) {
1131 wpa_msg(wpa_s, MSG_INFO, "EXT PW: Unexpected "
1132 "PSK length %d in external storage",
1133 (int) wpabuf_len(pw));
1134 ext_password_free(pw);
1135 return -1;
1136 }
1137
1138 os_memcpy(pw_str, wpabuf_head(pw), wpabuf_len(pw));
1139 pw_str[wpabuf_len(pw)] = '\0';
1140
1141#ifndef CONFIG_NO_PBKDF2
1142 if (wpabuf_len(pw) >= 8 && wpabuf_len(pw) < 64 && bss)
1143 {
986de33d
JM
1144 pbkdf2_sha1(pw_str, bss->ssid, bss->ssid_len,
1145 4096, psk, PMK_LEN);
9173b16f
JM
1146 os_memset(pw_str, 0, sizeof(pw_str));
1147 wpa_hexdump_key(MSG_MSGDUMP, "PSK (from "
1148 "external passphrase)",
1149 psk, PMK_LEN);
1150 wpa_sm_set_pmk(wpa_s->wpa, psk, PMK_LEN);
1151 } else
1152#endif /* CONFIG_NO_PBKDF2 */
1153 if (wpabuf_len(pw) == 2 * PMK_LEN) {
1154 if (hexstr2bin(pw_str, psk, PMK_LEN) < 0) {
1155 wpa_msg(wpa_s, MSG_INFO, "EXT PW: "
1156 "Invalid PSK hex string");
1157 os_memset(pw_str, 0, sizeof(pw_str));
1158 ext_password_free(pw);
1159 return -1;
1160 }
1161 wpa_sm_set_pmk(wpa_s->wpa, psk, PMK_LEN);
1162 } else {
1163 wpa_msg(wpa_s, MSG_INFO, "EXT PW: No suitable "
1164 "PSK available");
1165 os_memset(pw_str, 0, sizeof(pw_str));
1166 ext_password_free(pw);
1167 return -1;
1168 }
1169
1170 os_memset(pw_str, 0, sizeof(pw_str));
1171 ext_password_free(pw);
1172 }
1173#endif /* CONFIG_EXT_PASSWORD */
7d232e23 1174 } else
6fc6879b
JM
1175 wpa_sm_set_pmk_from_pmksa(wpa_s->wpa);
1176
1177 return 0;
1178}
1179
1180
8cd6b7bc 1181static void wpas_ext_capab_byte(struct wpa_supplicant *wpa_s, u8 *pos, int idx)
03e47c9c 1182{
8cd6b7bc 1183 *pos = 0x00;
03e47c9c 1184
8cd6b7bc
JB
1185 switch (idx) {
1186 case 0: /* Bits 0-7 */
1187 break;
1188 case 1: /* Bits 8-15 */
1189 break;
1190 case 2: /* Bits 16-23 */
1191#ifdef CONFIG_WNM
1192 *pos |= 0x02; /* Bit 17 - WNM-Sleep Mode */
1193 *pos |= 0x08; /* Bit 19 - BSS Transition */
1194#endif /* CONFIG_WNM */
1195 break;
1196 case 3: /* Bits 24-31 */
1197#ifdef CONFIG_WNM
1198 *pos |= 0x02; /* Bit 25 - SSID List */
1199#endif /* CONFIG_WNM */
03e47c9c 1200#ifdef CONFIG_INTERWORKING
8cd6b7bc
JB
1201 if (wpa_s->conf->interworking)
1202 *pos |= 0x80; /* Bit 31 - Interworking */
03e47c9c 1203#endif /* CONFIG_INTERWORKING */
8cd6b7bc
JB
1204 break;
1205 case 4: /* Bits 32-39 */
1206 break;
1207 case 5: /* Bits 40-47 */
1208 break;
1209 case 6: /* Bits 48-55 */
1210 break;
1211 }
1212}
03e47c9c 1213
03e47c9c 1214
8cd6b7bc
JB
1215int wpas_build_ext_capab(struct wpa_supplicant *wpa_s, u8 *buf)
1216{
1217 u8 *pos = buf;
1218 u8 len = 4, i;
1219
1220 if (len < wpa_s->extended_capa_len)
1221 len = wpa_s->extended_capa_len;
03e47c9c
JM
1222
1223 *pos++ = WLAN_EID_EXT_CAPAB;
8cd6b7bc
JB
1224 *pos++ = len;
1225 for (i = 0; i < len; i++, pos++) {
1226 wpas_ext_capab_byte(wpa_s, pos, i);
1227
1228 if (i < wpa_s->extended_capa_len) {
1229 *pos &= ~wpa_s->extended_capa_mask[i];
1230 *pos |= wpa_s->extended_capa[i];
1231 }
1232 }
03e47c9c
JM
1233
1234 return pos - buf;
1235}
1236
1237
6fc6879b
JM
1238/**
1239 * wpa_supplicant_associate - Request association
1240 * @wpa_s: Pointer to wpa_supplicant data
1241 * @bss: Scan results for the selected BSS, or %NULL if not available
1242 * @ssid: Configuration data for the selected network
1243 *
1244 * This function is used to request %wpa_supplicant to associate with a BSS.
1245 */
1246void wpa_supplicant_associate(struct wpa_supplicant *wpa_s,
6fa81a3b 1247 struct wpa_bss *bss, struct wpa_ssid *ssid)
6fc6879b 1248{
5f3a6aa0 1249 u8 wpa_ie[200];
6fc6879b 1250 size_t wpa_ie_len;
8bac466b 1251 int use_crypt, ret, i, bssid_changed;
abd9fafa 1252 int algs = WPA_AUTH_ALG_OPEN;
71934751 1253 enum wpa_cipher cipher_pairwise, cipher_group;
6fc6879b
JM
1254 struct wpa_driver_associate_params params;
1255 int wep_keys_set = 0;
1256 struct wpa_driver_capa capa;
1257 int assoc_failed = 0;
8bac466b 1258 struct wpa_ssid *old_ssid;
03e47c9c
JM
1259 u8 ext_capab[10];
1260 int ext_capab_len;
80e8a5ee
BG
1261#ifdef CONFIG_HT_OVERRIDES
1262 struct ieee80211_ht_capabilities htcaps;
1263 struct ieee80211_ht_capabilities htcaps_mask;
1264#endif /* CONFIG_HT_OVERRIDES */
6fc6879b 1265
78177a00
JM
1266#ifdef CONFIG_IBSS_RSN
1267 ibss_rsn_deinit(wpa_s->ibss_rsn);
1268 wpa_s->ibss_rsn = NULL;
1269#endif /* CONFIG_IBSS_RSN */
1270
2c5d725c
JM
1271 if (ssid->mode == WPAS_MODE_AP || ssid->mode == WPAS_MODE_P2P_GO ||
1272 ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
1581b38b
JM
1273#ifdef CONFIG_AP
1274 if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_AP)) {
f049052b
BG
1275 wpa_msg(wpa_s, MSG_INFO, "Driver does not support AP "
1276 "mode");
1581b38b
JM
1277 return;
1278 }
8c981d17
DW
1279 if (wpa_supplicant_create_ap(wpa_s, ssid) < 0) {
1280 wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
1281 return;
1282 }
8f770587 1283 wpa_s->current_bss = bss;
1581b38b 1284#else /* CONFIG_AP */
f049052b
BG
1285 wpa_msg(wpa_s, MSG_ERROR, "AP mode support not included in "
1286 "the build");
1581b38b
JM
1287#endif /* CONFIG_AP */
1288 return;
1289 }
1290
52c9e6f3 1291#ifdef CONFIG_TDLS
95cb2d88
JM
1292 if (bss)
1293 wpa_tdls_ap_ies(wpa_s->wpa, (const u8 *) (bss + 1),
1294 bss->ie_len);
52c9e6f3
JM
1295#endif /* CONFIG_TDLS */
1296
5cc4d64b
JM
1297 if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME) &&
1298 ssid->mode == IEEE80211_MODE_INFRA) {
c2a04078
JM
1299 sme_authenticate(wpa_s, bss, ssid);
1300 return;
1301 }
1302
0c80427d 1303 os_memset(&params, 0, sizeof(params));
6fc6879b 1304 wpa_s->reassociate = 0;
22628eca 1305 if (bss && !wpas_driver_bss_selection(wpa_s)) {
6fc6879b 1306#ifdef CONFIG_IEEE80211R
6fa81a3b 1307 const u8 *ie, *md = NULL;
6fc6879b 1308#endif /* CONFIG_IEEE80211R */
6fc6879b
JM
1309 wpa_msg(wpa_s, MSG_INFO, "Trying to associate with " MACSTR
1310 " (SSID='%s' freq=%d MHz)", MAC2STR(bss->bssid),
6fa81a3b 1311 wpa_ssid_txt(bss->ssid, bss->ssid_len), bss->freq);
8bac466b 1312 bssid_changed = !is_zero_ether_addr(wpa_s->bssid);
6fc6879b
JM
1313 os_memset(wpa_s->bssid, 0, ETH_ALEN);
1314 os_memcpy(wpa_s->pending_bssid, bss->bssid, ETH_ALEN);
8bac466b
JM
1315 if (bssid_changed)
1316 wpas_notify_bssid_changed(wpa_s);
6fc6879b 1317#ifdef CONFIG_IEEE80211R
6fa81a3b 1318 ie = wpa_bss_get_ie(bss, WLAN_EID_MOBILITY_DOMAIN);
6fc6879b
JM
1319 if (ie && ie[1] >= MOBILITY_DOMAIN_ID_LEN)
1320 md = ie + 2;
e7846b68 1321 wpa_sm_set_ft_params(wpa_s->wpa, ie, ie ? 2 + ie[1] : 0);
91a05482
JM
1322 if (md) {
1323 /* Prepare for the next transition */
76b7981d 1324 wpa_ft_prepare_auth_request(wpa_s->wpa, ie);
91a05482 1325 }
6fc6879b 1326#endif /* CONFIG_IEEE80211R */
24c23d1b
JM
1327#ifdef CONFIG_WPS
1328 } else if ((ssid->ssid == NULL || ssid->ssid_len == 0) &&
1329 wpa_s->conf->ap_scan == 2 &&
1330 (ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
1331 /* Use ap_scan==1 style network selection to find the network
1332 */
4115303b 1333 wpa_s->scan_req = MANUAL_SCAN_REQ;
24c23d1b
JM
1334 wpa_s->reassociate = 1;
1335 wpa_supplicant_req_scan(wpa_s, 0, 0);
1336 return;
1337#endif /* CONFIG_WPS */
6fc6879b
JM
1338 } else {
1339 wpa_msg(wpa_s, MSG_INFO, "Trying to associate with SSID '%s'",
1340 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
1341 os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
1342 }
a4cba8f1 1343 wpa_supplicant_cancel_sched_scan(wpa_s);
6fc6879b
JM
1344 wpa_supplicant_cancel_scan(wpa_s);
1345
1346 /* Starting new association, so clear the possibly used WPA IE from the
1347 * previous association. */
1348 wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
1349
1350#ifdef IEEE8021X_EAPOL
1351 if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
1352 if (ssid->leap) {
1353 if (ssid->non_leap == 0)
abd9fafa 1354 algs = WPA_AUTH_ALG_LEAP;
6fc6879b 1355 else
abd9fafa 1356 algs |= WPA_AUTH_ALG_LEAP;
6fc6879b
JM
1357 }
1358 }
1359#endif /* IEEE8021X_EAPOL */
f049052b 1360 wpa_dbg(wpa_s, MSG_DEBUG, "Automatic auth_alg selection: 0x%x", algs);
6fc6879b 1361 if (ssid->auth_alg) {
abd9fafa 1362 algs = ssid->auth_alg;
f049052b
BG
1363 wpa_dbg(wpa_s, MSG_DEBUG, "Overriding auth_alg selection: "
1364 "0x%x", algs);
6fc6879b 1365 }
6fc6879b 1366
6fa81a3b
JM
1367 if (bss && (wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE) ||
1368 wpa_bss_get_ie(bss, WLAN_EID_RSN)) &&
0bf927a0 1369 wpa_key_mgmt_wpa(ssid->key_mgmt)) {
6fc6879b 1370 int try_opportunistic;
6e202021
JM
1371 try_opportunistic = (ssid->proactive_key_caching < 0 ?
1372 wpa_s->conf->okc :
1373 ssid->proactive_key_caching) &&
6fc6879b
JM
1374 (ssid->proto & WPA_PROTO_RSN);
1375 if (pmksa_cache_set_current(wpa_s->wpa, NULL, bss->bssid,
b2a12c4f 1376 ssid, try_opportunistic) == 0)
6fc6879b
JM
1377 eapol_sm_notify_pmkid_attempt(wpa_s->eapol, 1);
1378 wpa_ie_len = sizeof(wpa_ie);
1379 if (wpa_supplicant_set_suites(wpa_s, bss, ssid,
1380 wpa_ie, &wpa_ie_len)) {
f049052b
BG
1381 wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to set WPA "
1382 "key management and encryption suites");
6fc6879b
JM
1383 return;
1384 }
a3f7e518
JM
1385 } else if ((ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) && bss &&
1386 wpa_key_mgmt_wpa_ieee8021x(ssid->key_mgmt)) {
1387 /*
1388 * Both WPA and non-WPA IEEE 802.1X enabled in configuration -
1389 * use non-WPA since the scan results did not indicate that the
1390 * AP is using WPA or WPA2.
1391 */
1392 wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
1393 wpa_ie_len = 0;
1394 wpa_s->wpa_proto = 0;
0bf927a0 1395 } else if (wpa_key_mgmt_wpa_any(ssid->key_mgmt)) {
6fc6879b
JM
1396 wpa_ie_len = sizeof(wpa_ie);
1397 if (wpa_supplicant_set_suites(wpa_s, NULL, ssid,
1398 wpa_ie, &wpa_ie_len)) {
f049052b
BG
1399 wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to set WPA "
1400 "key management and encryption suites (no "
1401 "scan results)");
6fc6879b
JM
1402 return;
1403 }
ad08c363
JM
1404#ifdef CONFIG_WPS
1405 } else if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) {
b01c18a8
JM
1406 struct wpabuf *wps_ie;
1407 wps_ie = wps_build_assoc_req_ie(wpas_wps_get_req_type(ssid));
ad08c363
JM
1408 if (wps_ie && wpabuf_len(wps_ie) <= sizeof(wpa_ie)) {
1409 wpa_ie_len = wpabuf_len(wps_ie);
1410 os_memcpy(wpa_ie, wpabuf_head(wps_ie), wpa_ie_len);
24386985
JM
1411 } else
1412 wpa_ie_len = 0;
ad08c363
JM
1413 wpabuf_free(wps_ie);
1414 wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
0c80427d
JM
1415 if (!bss || (bss->caps & IEEE80211_CAP_PRIVACY))
1416 params.wps = WPS_MODE_PRIVACY;
1417 else
1418 params.wps = WPS_MODE_OPEN;
cf546f1a 1419 wpa_s->wpa_proto = 0;
ad08c363 1420#endif /* CONFIG_WPS */
6fc6879b
JM
1421 } else {
1422 wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
1423 wpa_ie_len = 0;
cf546f1a 1424 wpa_s->wpa_proto = 0;
6fc6879b
JM
1425 }
1426
5f3a6aa0
JM
1427#ifdef CONFIG_P2P
1428 if (wpa_s->global->p2p) {
1429 u8 *pos;
1430 size_t len;
1431 int res;
5f3a6aa0
JM
1432 pos = wpa_ie + wpa_ie_len;
1433 len = sizeof(wpa_ie) - wpa_ie_len;
b8a8d677
JM
1434 res = wpas_p2p_assoc_req_ie(wpa_s, bss, pos, len,
1435 ssid->p2p_group);
5f3a6aa0
JM
1436 if (res >= 0)
1437 wpa_ie_len += res;
1438 }
72044390
JM
1439
1440 wpa_s->cross_connect_disallowed = 0;
1441 if (bss) {
1442 struct wpabuf *p2p;
1443 p2p = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
1444 if (p2p) {
1445 wpa_s->cross_connect_disallowed =
1446 p2p_get_cross_connect_disallowed(p2p);
1447 wpabuf_free(p2p);
f049052b
BG
1448 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: WLAN AP %s cross "
1449 "connection",
1450 wpa_s->cross_connect_disallowed ?
1451 "disallows" : "allows");
72044390
JM
1452 }
1453 }
5f3a6aa0
JM
1454#endif /* CONFIG_P2P */
1455
cb418324
JM
1456#ifdef CONFIG_HS20
1457 if (wpa_s->conf->hs20) {
1458 struct wpabuf *hs20;
1459 hs20 = wpabuf_alloc(20);
1460 if (hs20) {
1461 wpas_hs20_add_indication(hs20);
1462 os_memcpy(wpa_ie + wpa_ie_len, wpabuf_head(hs20),
1463 wpabuf_len(hs20));
1464 wpa_ie_len += wpabuf_len(hs20);
1465 wpabuf_free(hs20);
1466 }
1467 }
1468#endif /* CONFIG_HS20 */
1469
03e47c9c
JM
1470 ext_capab_len = wpas_build_ext_capab(wpa_s, ext_capab);
1471 if (ext_capab_len > 0) {
92cbcf91
JM
1472 u8 *pos = wpa_ie;
1473 if (wpa_ie_len > 0 && pos[0] == WLAN_EID_RSN)
1474 pos += 2 + pos[1];
03e47c9c
JM
1475 os_memmove(pos + ext_capab_len, pos,
1476 wpa_ie_len - (pos - wpa_ie));
1477 wpa_ie_len += ext_capab_len;
1478 os_memcpy(pos, ext_capab, ext_capab_len);
92cbcf91 1479 }
92cbcf91 1480
6fc6879b
JM
1481 wpa_clear_keys(wpa_s, bss ? bss->bssid : NULL);
1482 use_crypt = 1;
62769a88
JM
1483 cipher_pairwise = wpa_cipher_to_suite_driver(wpa_s->pairwise_cipher);
1484 cipher_group = wpa_cipher_to_suite_driver(wpa_s->group_cipher);
6fc6879b
JM
1485 if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
1486 wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
1487 if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE)
1488 use_crypt = 0;
1489 if (wpa_set_wep_keys(wpa_s, ssid)) {
1490 use_crypt = 1;
1491 wep_keys_set = 1;
1492 }
1493 }
ad08c363
JM
1494 if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS)
1495 use_crypt = 0;
6fc6879b
JM
1496
1497#ifdef IEEE8021X_EAPOL
1498 if (wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
1499 if ((ssid->eapol_flags &
1500 (EAPOL_FLAG_REQUIRE_KEY_UNICAST |
1501 EAPOL_FLAG_REQUIRE_KEY_BROADCAST)) == 0 &&
1502 !wep_keys_set) {
1503 use_crypt = 0;
1504 } else {
1505 /* Assume that dynamic WEP-104 keys will be used and
1506 * set cipher suites in order for drivers to expect
1507 * encryption. */
1508 cipher_pairwise = cipher_group = CIPHER_WEP104;
1509 }
1510 }
1511#endif /* IEEE8021X_EAPOL */
1512
1513 if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
1514 /* Set the key before (and later after) association */
1515 wpa_supplicant_set_wpa_none_key(wpa_s, ssid);
1516 }
1517
6fc6879b 1518 wpa_supplicant_set_state(wpa_s, WPA_ASSOCIATING);
6fc6879b 1519 if (bss) {
6fa81a3b
JM
1520 params.ssid = bss->ssid;
1521 params.ssid_len = bss->ssid_len;
f15854d1
JM
1522 if (!wpas_driver_bss_selection(wpa_s) || ssid->bssid_set) {
1523 wpa_printf(MSG_DEBUG, "Limit connection to BSSID "
1524 MACSTR " freq=%u MHz based on scan results "
1525 "(bssid_set=%d)",
1526 MAC2STR(bss->bssid), bss->freq,
1527 ssid->bssid_set);
22628eca
JM
1528 params.bssid = bss->bssid;
1529 params.freq = bss->freq;
1530 }
6fc6879b
JM
1531 } else {
1532 params.ssid = ssid->ssid;
1533 params.ssid_len = ssid->ssid_len;
1534 }
9e2af29f
NC
1535
1536 if (ssid->mode == WPAS_MODE_IBSS && ssid->bssid_set &&
1537 wpa_s->conf->ap_scan == 2) {
1538 params.bssid = ssid->bssid;
1539 params.fixed_bssid = 1;
1540 }
1541
d7dcba70
JM
1542 if (ssid->mode == WPAS_MODE_IBSS && ssid->frequency > 0 &&
1543 params.freq == 0)
6fc6879b
JM
1544 params.freq = ssid->frequency; /* Initial channel for IBSS */
1545 params.wpa_ie = wpa_ie;
1546 params.wpa_ie_len = wpa_ie_len;
1547 params.pairwise_suite = cipher_pairwise;
1548 params.group_suite = cipher_group;
1549 params.key_mgmt_suite = key_mgmt2driver(wpa_s->key_mgmt);
64fa840a 1550 params.wpa_proto = wpa_s->wpa_proto;
6fc6879b
JM
1551 params.auth_alg = algs;
1552 params.mode = ssid->mode;
1f6c0ab8 1553 params.bg_scan_period = ssid->bg_scan_period;
6fc6879b
JM
1554 for (i = 0; i < NUM_WEP_KEYS; i++) {
1555 if (ssid->wep_key_len[i])
1556 params.wep_key[i] = ssid->wep_key[i];
1557 params.wep_key_len[i] = ssid->wep_key_len[i];
1558 }
1559 params.wep_tx_keyidx = ssid->wep_tx_keyidx;
1560
c2a04078 1561 if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE) &&
6fc6879b
JM
1562 (params.key_mgmt_suite == KEY_MGMT_PSK ||
1563 params.key_mgmt_suite == KEY_MGMT_FT_PSK)) {
1564 params.passphrase = ssid->passphrase;
1565 if (ssid->psk_set)
1566 params.psk = ssid->psk;
1567 }
1568
36b15723
JM
1569 params.drop_unencrypted = use_crypt;
1570
6fc6879b 1571#ifdef CONFIG_IEEE80211W
62d49803
JM
1572 params.mgmt_frame_protection =
1573 ssid->ieee80211w == MGMT_FRAME_PROTECTION_DEFAULT ?
1574 wpa_s->conf->pmf : ssid->ieee80211w;
1575 if (params.mgmt_frame_protection != NO_MGMT_FRAME_PROTECTION && bss) {
6fa81a3b 1576 const u8 *rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
97d3497e
JM
1577 struct wpa_ie_data ie;
1578 if (rsn && wpa_parse_wpa_ie(rsn, 2 + rsn[1], &ie) == 0 &&
1579 ie.capabilities &
1580 (WPA_CAPABILITY_MFPC | WPA_CAPABILITY_MFPR)) {
f049052b
BG
1581 wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Selected AP supports "
1582 "MFP: require MFP");
97d3497e
JM
1583 params.mgmt_frame_protection =
1584 MGMT_FRAME_PROTECTION_REQUIRED;
1585 }
1586 }
6fc6879b
JM
1587#endif /* CONFIG_IEEE80211W */
1588
ffad8858 1589 params.p2p = ssid->p2p_group;
6e3f4b89 1590
eea2fd9e
JM
1591 if (wpa_s->parent->set_sta_uapsd)
1592 params.uapsd = wpa_s->parent->sta_uapsd;
1593 else
1594 params.uapsd = -1;
1595
80e8a5ee
BG
1596#ifdef CONFIG_HT_OVERRIDES
1597 os_memset(&htcaps, 0, sizeof(htcaps));
1598 os_memset(&htcaps_mask, 0, sizeof(htcaps_mask));
1599 params.htcaps = (u8 *) &htcaps;
1600 params.htcaps_mask = (u8 *) &htcaps_mask;
1601 wpa_supplicant_apply_ht_overrides(wpa_s, ssid, &params);
1602#endif /* CONFIG_HT_OVERRIDES */
1603
17fbb751 1604 ret = wpa_drv_associate(wpa_s, &params);
6fc6879b
JM
1605 if (ret < 0) {
1606 wpa_msg(wpa_s, MSG_INFO, "Association request to the driver "
1607 "failed");
871f4dd0
JM
1608 if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SANE_ERROR_CODES) {
1609 /*
1610 * The driver is known to mean what is saying, so we
1611 * can stop right here; the association will not
1612 * succeed.
1613 */
1614 wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
c1c02342 1615 wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
871f4dd0
JM
1616 os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
1617 return;
1618 }
6fc6879b
JM
1619 /* try to continue anyway; new association will be tried again
1620 * after timeout */
1621 assoc_failed = 1;
1622 }
1623
1624 if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
1625 /* Set the key after the association just in case association
1626 * cleared the previously configured key. */
1627 wpa_supplicant_set_wpa_none_key(wpa_s, ssid);
1628 /* No need to timeout authentication since there is no key
1629 * management. */
1630 wpa_supplicant_cancel_auth_timeout(wpa_s);
1631 wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
53895c3b 1632#ifdef CONFIG_IBSS_RSN
d7dcba70 1633 } else if (ssid->mode == WPAS_MODE_IBSS &&
53895c3b
JM
1634 wpa_s->key_mgmt != WPA_KEY_MGMT_NONE &&
1635 wpa_s->key_mgmt != WPA_KEY_MGMT_WPA_NONE) {
1636 /*
1637 * RSN IBSS authentication is per-STA and we can disable the
1638 * per-BSSID authentication.
1639 */
1640 wpa_supplicant_cancel_auth_timeout(wpa_s);
53895c3b 1641#endif /* CONFIG_IBSS_RSN */
6fc6879b
JM
1642 } else {
1643 /* Timeout for IEEE 802.11 authentication and association */
1d3c75b3
DW
1644 int timeout = 60;
1645
1646 if (assoc_failed) {
1647 /* give IBSS a bit more time */
d7dcba70 1648 timeout = ssid->mode == WPAS_MODE_IBSS ? 10 : 5;
1d3c75b3
DW
1649 } else if (wpa_s->conf->ap_scan == 1) {
1650 /* give IBSS a bit more time */
d7dcba70 1651 timeout = ssid->mode == WPAS_MODE_IBSS ? 20 : 10;
1d3c75b3 1652 }
6fc6879b
JM
1653 wpa_supplicant_req_auth_timeout(wpa_s, timeout, 0);
1654 }
1655
1656 if (wep_keys_set && wpa_drv_get_capa(wpa_s, &capa) == 0 &&
1657 capa.flags & WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC) {
1658 /* Set static WEP keys again */
1659 wpa_set_wep_keys(wpa_s, ssid);
1660 }
1661
1662 if (wpa_s->current_ssid && wpa_s->current_ssid != ssid) {
1663 /*
1664 * Do not allow EAP session resumption between different
1665 * network configurations.
1666 */
1667 eapol_sm_invalidate_cached_session(wpa_s->eapol);
1668 }
8bac466b 1669 old_ssid = wpa_s->current_ssid;
6fc6879b 1670 wpa_s->current_ssid = ssid;
8f770587 1671 wpa_s->current_bss = bss;
6fc6879b
JM
1672 wpa_supplicant_rsn_supp_set_config(wpa_s, wpa_s->current_ssid);
1673 wpa_supplicant_initiate_eapol(wpa_s);
8bac466b
JM
1674 if (old_ssid != wpa_s->current_ssid)
1675 wpas_notify_network_changed(wpa_s);
6fc6879b
JM
1676}
1677
1678
09f58c09
JM
1679static void wpa_supplicant_clear_connection(struct wpa_supplicant *wpa_s,
1680 const u8 *addr)
1681{
1682 struct wpa_ssid *old_ssid;
1683
1684 wpa_clear_keys(wpa_s, addr);
09f58c09 1685 old_ssid = wpa_s->current_ssid;
0d30cc24 1686 wpa_supplicant_mark_disassoc(wpa_s);
09f58c09
JM
1687 wpa_sm_set_config(wpa_s->wpa, NULL);
1688 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
1689 if (old_ssid != wpa_s->current_ssid)
1690 wpas_notify_network_changed(wpa_s);
1691 eloop_cancel_timeout(wpa_supplicant_timeout, wpa_s, NULL);
1692}
1693
1694
6fc6879b
JM
1695/**
1696 * wpa_supplicant_deauthenticate - Deauthenticate the current connection
1697 * @wpa_s: Pointer to wpa_supplicant data
1698 * @reason_code: IEEE 802.11 reason code for the deauthenticate frame
1699 *
073ab58f 1700 * This function is used to request %wpa_supplicant to deauthenticate from the
6fc6879b
JM
1701 * current AP.
1702 */
1703void wpa_supplicant_deauthenticate(struct wpa_supplicant *wpa_s,
1704 int reason_code)
1705{
1706 u8 *addr = NULL;
ef48ff94 1707 union wpa_event_data event;
42d23547 1708 int zero_addr = 0;
8bac466b 1709
42d23547
JM
1710 wpa_dbg(wpa_s, MSG_DEBUG, "Request to deauthenticate - bssid=" MACSTR
1711 " pending_bssid=" MACSTR " reason=%d state=%s",
1712 MAC2STR(wpa_s->bssid), MAC2STR(wpa_s->pending_bssid),
1713 reason_code, wpa_supplicant_state_txt(wpa_s->wpa_state));
1714
1715 if (!is_zero_ether_addr(wpa_s->bssid))
1716 addr = wpa_s->bssid;
1717 else if (!is_zero_ether_addr(wpa_s->pending_bssid) &&
1718 (wpa_s->wpa_state == WPA_AUTHENTICATING ||
1719 wpa_s->wpa_state == WPA_ASSOCIATING))
1720 addr = wpa_s->pending_bssid;
1721 else if (wpa_s->wpa_state == WPA_ASSOCIATING) {
1722 /*
1723 * When using driver-based BSS selection, we may not know the
1724 * BSSID with which we are currently trying to associate. We
1725 * need to notify the driver of this disconnection even in such
1726 * a case, so use the all zeros address here.
1727 */
6fc6879b 1728 addr = wpa_s->bssid;
42d23547
JM
1729 zero_addr = 1;
1730 }
1731
7b44ff2c
SD
1732#ifdef CONFIG_TDLS
1733 wpa_tdls_teardown_peers(wpa_s->wpa);
1734#endif /* CONFIG_TDLS */
1735
42d23547
JM
1736 if (addr) {
1737 wpa_drv_deauthenticate(wpa_s, addr, reason_code);
ef48ff94
JM
1738 os_memset(&event, 0, sizeof(event));
1739 event.deauth_info.reason_code = (u16) reason_code;
1740 event.deauth_info.locally_generated = 1;
1741 wpa_supplicant_event(wpa_s, EVENT_DEAUTH, &event);
42d23547
JM
1742 if (zero_addr)
1743 addr = NULL;
6fc6879b 1744 }
09f58c09
JM
1745
1746 wpa_supplicant_clear_connection(wpa_s, addr);
6fc6879b
JM
1747}
1748
dca1a511
DS
1749static void wpa_supplicant_enable_one_network(struct wpa_supplicant *wpa_s,
1750 struct wpa_ssid *ssid)
1751{
1752 if (!ssid || !ssid->disabled || ssid->disabled == 2)
1753 return;
1754
1755 ssid->disabled = 0;
1756 wpas_clear_temp_disabled(wpa_s, ssid, 1);
1757 wpas_notify_network_enabled_changed(wpa_s, ssid);
1758
1759 /*
1760 * Try to reassociate since there is no current configuration and a new
1761 * network was made available.
1762 */
1763 if (!wpa_s->current_ssid)
1764 wpa_s->reassociate = 1;
1765}
1766
6fc6879b 1767
86b89452
WS
1768/**
1769 * wpa_supplicant_enable_network - Mark a configured network as enabled
1770 * @wpa_s: wpa_supplicant structure for a network interface
1771 * @ssid: wpa_ssid structure for a configured network or %NULL
1772 *
1773 * Enables the specified network or all networks if no network specified.
1774 */
1775void wpa_supplicant_enable_network(struct wpa_supplicant *wpa_s,
1776 struct wpa_ssid *ssid)
1777{
86b89452 1778 if (ssid == NULL) {
14f79078
JM
1779 for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next)
1780 wpa_supplicant_enable_one_network(wpa_s, ssid);
dca1a511
DS
1781 } else
1782 wpa_supplicant_enable_one_network(wpa_s, ssid);
86b89452 1783
dca1a511
DS
1784 if (wpa_s->reassociate) {
1785 if (wpa_s->sched_scanning) {
1786 wpa_printf(MSG_DEBUG, "Stop ongoing sched_scan to add "
1787 "new network to scan filters");
1788 wpa_supplicant_cancel_sched_scan(wpa_s);
1789 }
86b89452 1790
dca1a511 1791 wpa_supplicant_req_scan(wpa_s, 0, 0);
86b89452
WS
1792 }
1793}
1794
1795
1796/**
1797 * wpa_supplicant_disable_network - Mark a configured network as disabled
1798 * @wpa_s: wpa_supplicant structure for a network interface
1799 * @ssid: wpa_ssid structure for a configured network or %NULL
1800 *
1801 * Disables the specified network or all networks if no network specified.
1802 */
1803void wpa_supplicant_disable_network(struct wpa_supplicant *wpa_s,
1804 struct wpa_ssid *ssid)
1805{
1806 struct wpa_ssid *other_ssid;
1807 int was_disabled;
1808
1809 if (ssid == NULL) {
725fc39e
DS
1810 if (wpa_s->sched_scanning)
1811 wpa_supplicant_cancel_sched_scan(wpa_s);
1812
4dac0245
JM
1813 for (other_ssid = wpa_s->conf->ssid; other_ssid;
1814 other_ssid = other_ssid->next) {
86b89452 1815 was_disabled = other_ssid->disabled;
4dac0245
JM
1816 if (was_disabled == 2)
1817 continue; /* do not change persistent P2P group
1818 * data */
86b89452
WS
1819
1820 other_ssid->disabled = 1;
1821
1822 if (was_disabled != other_ssid->disabled)
1823 wpas_notify_network_enabled_changed(
1824 wpa_s, other_ssid);
86b89452
WS
1825 }
1826 if (wpa_s->current_ssid)
07783eaa 1827 wpa_supplicant_deauthenticate(
86b89452 1828 wpa_s, WLAN_REASON_DEAUTH_LEAVING);
4dac0245 1829 } else if (ssid->disabled != 2) {
86b89452 1830 if (ssid == wpa_s->current_ssid)
07783eaa 1831 wpa_supplicant_deauthenticate(
86b89452
WS
1832 wpa_s, WLAN_REASON_DEAUTH_LEAVING);
1833
1834 was_disabled = ssid->disabled;
1835
1836 ssid->disabled = 1;
1837
725fc39e 1838 if (was_disabled != ssid->disabled) {
86b89452 1839 wpas_notify_network_enabled_changed(wpa_s, ssid);
725fc39e
DS
1840 if (wpa_s->sched_scanning) {
1841 wpa_printf(MSG_DEBUG, "Stop ongoing sched_scan "
1842 "to remove network from filters");
1843 wpa_supplicant_cancel_sched_scan(wpa_s);
1844 wpa_supplicant_req_scan(wpa_s, 0, 0);
1845 }
1846 }
86b89452
WS
1847 }
1848}
1849
1850
1851/**
1852 * wpa_supplicant_select_network - Attempt association with a network
1853 * @wpa_s: wpa_supplicant structure for a network interface
1854 * @ssid: wpa_ssid structure for a configured network or %NULL for any network
1855 */
1856void wpa_supplicant_select_network(struct wpa_supplicant *wpa_s,
1857 struct wpa_ssid *ssid)
1858{
1859
1860 struct wpa_ssid *other_ssid;
d93dfbd5 1861 int disconnected = 0;
86b89452 1862
d93dfbd5 1863 if (ssid && ssid != wpa_s->current_ssid && wpa_s->current_ssid) {
07783eaa 1864 wpa_supplicant_deauthenticate(
86b89452 1865 wpa_s, WLAN_REASON_DEAUTH_LEAVING);
d93dfbd5
JM
1866 disconnected = 1;
1867 }
86b89452 1868
00e5e3d5
JM
1869 if (ssid)
1870 wpas_clear_temp_disabled(wpa_s, ssid, 1);
1871
86b89452
WS
1872 /*
1873 * Mark all other networks disabled or mark all networks enabled if no
1874 * network specified.
1875 */
4dac0245
JM
1876 for (other_ssid = wpa_s->conf->ssid; other_ssid;
1877 other_ssid = other_ssid->next) {
86b89452 1878 int was_disabled = other_ssid->disabled;
4dac0245
JM
1879 if (was_disabled == 2)
1880 continue; /* do not change persistent P2P group data */
86b89452
WS
1881
1882 other_ssid->disabled = ssid ? (ssid->id != other_ssid->id) : 0;
00e5e3d5
JM
1883 if (was_disabled && !other_ssid->disabled)
1884 wpas_clear_temp_disabled(wpa_s, other_ssid, 0);
86b89452
WS
1885
1886 if (was_disabled != other_ssid->disabled)
1887 wpas_notify_network_enabled_changed(wpa_s, other_ssid);
86b89452 1888 }
2a6f78fb
JJ
1889
1890 if (ssid && ssid == wpa_s->current_ssid && wpa_s->current_ssid) {
1891 /* We are already associated with the selected network */
1892 wpa_printf(MSG_DEBUG, "Already associated with the "
1893 "selected network - do nothing");
1894 return;
1895 }
1896
96efeeb6
JM
1897 if (ssid)
1898 wpa_s->current_ssid = ssid;
7dcdcfd6 1899 wpa_s->connect_without_scan = NULL;
86b89452
WS
1900 wpa_s->disconnected = 0;
1901 wpa_s->reassociate = 1;
cecdddc1
PS
1902
1903 if (wpa_supplicant_fast_associate(wpa_s) != 1)
1904 wpa_supplicant_req_scan(wpa_s, 0, disconnected ? 100000 : 0);
86b89452 1905
a1641d26
JM
1906 if (ssid)
1907 wpas_notify_network_selected(wpa_s, ssid);
86b89452
WS
1908}
1909
1910
1911/**
1912 * wpa_supplicant_set_ap_scan - Set AP scan mode for interface
1913 * @wpa_s: wpa_supplicant structure for a network interface
1914 * @ap_scan: AP scan mode
1915 * Returns: 0 if succeed or -1 if ap_scan has an invalid value
1916 *
1917 */
1918int wpa_supplicant_set_ap_scan(struct wpa_supplicant *wpa_s, int ap_scan)
1919{
1920
1921 int old_ap_scan;
1922
1923 if (ap_scan < 0 || ap_scan > 2)
1924 return -1;
1925
48f8e036
DS
1926#ifdef ANDROID
1927 if (ap_scan == 2 && ap_scan != wpa_s->conf->ap_scan &&
1928 wpa_s->wpa_state >= WPA_ASSOCIATING &&
1929 wpa_s->wpa_state < WPA_COMPLETED) {
1930 wpa_printf(MSG_ERROR, "ap_scan = %d (%d) rejected while "
1931 "associating", wpa_s->conf->ap_scan, ap_scan);
1932 return 0;
1933 }
1934#endif /* ANDROID */
1935
86b89452
WS
1936 old_ap_scan = wpa_s->conf->ap_scan;
1937 wpa_s->conf->ap_scan = ap_scan;
1938
1939 if (old_ap_scan != wpa_s->conf->ap_scan)
1940 wpas_notify_ap_scan_changed(wpa_s);
1941
1942 return 0;
1943}
1944
1945
78633c37
SL
1946/**
1947 * wpa_supplicant_set_bss_expiration_age - Set BSS entry expiration age
1948 * @wpa_s: wpa_supplicant structure for a network interface
1949 * @expire_age: Expiration age in seconds
1950 * Returns: 0 if succeed or -1 if expire_age has an invalid value
1951 *
1952 */
1953int wpa_supplicant_set_bss_expiration_age(struct wpa_supplicant *wpa_s,
1954 unsigned int bss_expire_age)
1955{
1956 if (bss_expire_age < 10) {
1957 wpa_msg(wpa_s, MSG_ERROR, "Invalid bss expiration age %u",
1958 bss_expire_age);
1959 return -1;
1960 }
1961 wpa_msg(wpa_s, MSG_DEBUG, "Setting bss expiration age: %d sec",
1962 bss_expire_age);
1963 wpa_s->conf->bss_expiration_age = bss_expire_age;
1964
1965 return 0;
1966}
1967
1968
1969/**
1970 * wpa_supplicant_set_bss_expiration_count - Set BSS entry expiration scan count
1971 * @wpa_s: wpa_supplicant structure for a network interface
1972 * @expire_count: number of scans after which an unseen BSS is reclaimed
1973 * Returns: 0 if succeed or -1 if expire_count has an invalid value
1974 *
1975 */
1976int wpa_supplicant_set_bss_expiration_count(struct wpa_supplicant *wpa_s,
1977 unsigned int bss_expire_count)
1978{
1979 if (bss_expire_count < 1) {
1980 wpa_msg(wpa_s, MSG_ERROR, "Invalid bss expiration count %u",
1981 bss_expire_count);
1982 return -1;
1983 }
1984 wpa_msg(wpa_s, MSG_DEBUG, "Setting bss expiration scan count: %u",
1985 bss_expire_count);
1986 wpa_s->conf->bss_expiration_scan_count = bss_expire_count;
1987
1988 return 0;
1989}
1990
1991
c6e86b63
MA
1992/**
1993 * wpa_supplicant_set_scan_interval - Set scan interval
1994 * @wpa_s: wpa_supplicant structure for a network interface
1995 * @scan_interval: scan interval in seconds
1996 * Returns: 0 if succeed or -1 if scan_interval has an invalid value
1997 *
1998 */
1999int wpa_supplicant_set_scan_interval(struct wpa_supplicant *wpa_s,
2000 int scan_interval)
2001{
2002 if (scan_interval < 0) {
2003 wpa_msg(wpa_s, MSG_ERROR, "Invalid scan interval %d",
2004 scan_interval);
2005 return -1;
2006 }
2007 wpa_msg(wpa_s, MSG_DEBUG, "Setting scan interval: %d sec",
2008 scan_interval);
9e737f08 2009 wpa_supplicant_update_scan_int(wpa_s, scan_interval);
c6e86b63
MA
2010
2011 return 0;
2012}
2013
2014
86b89452
WS
2015/**
2016 * wpa_supplicant_set_debug_params - Set global debug params
2017 * @global: wpa_global structure
2018 * @debug_level: debug level
2019 * @debug_timestamp: determines if show timestamp in debug data
2020 * @debug_show_keys: determines if show keys in debug data
2021 * Returns: 0 if succeed or -1 if debug_level has wrong value
2022 */
2023int wpa_supplicant_set_debug_params(struct wpa_global *global, int debug_level,
2024 int debug_timestamp, int debug_show_keys)
2025{
2026
2027 int old_level, old_timestamp, old_show_keys;
2028
2029 /* check for allowed debuglevels */
14dc0011
PS
2030 if (debug_level != MSG_EXCESSIVE &&
2031 debug_level != MSG_MSGDUMP &&
86b89452
WS
2032 debug_level != MSG_DEBUG &&
2033 debug_level != MSG_INFO &&
2034 debug_level != MSG_WARNING &&
2035 debug_level != MSG_ERROR)
2036 return -1;
2037
2038 old_level = wpa_debug_level;
2039 old_timestamp = wpa_debug_timestamp;
2040 old_show_keys = wpa_debug_show_keys;
2041
2042 wpa_debug_level = debug_level;
2043 wpa_debug_timestamp = debug_timestamp ? 1 : 0;
2044 wpa_debug_show_keys = debug_show_keys ? 1 : 0;
2045
db9133ac
WS
2046 if (wpa_debug_level != old_level)
2047 wpas_notify_debug_level_changed(global);
2048 if (wpa_debug_timestamp != old_timestamp)
2049 wpas_notify_debug_timestamp_changed(global);
2050 if (wpa_debug_show_keys != old_show_keys)
2051 wpas_notify_debug_show_keys_changed(global);
86b89452
WS
2052
2053 return 0;
2054}
2055
2056
6fc6879b
JM
2057/**
2058 * wpa_supplicant_get_ssid - Get a pointer to the current network structure
2059 * @wpa_s: Pointer to wpa_supplicant data
2060 * Returns: A pointer to the current network structure or %NULL on failure
2061 */
2062struct wpa_ssid * wpa_supplicant_get_ssid(struct wpa_supplicant *wpa_s)
2063{
2064 struct wpa_ssid *entry;
2065 u8 ssid[MAX_SSID_LEN];
2066 int res;
2067 size_t ssid_len;
2068 u8 bssid[ETH_ALEN];
2069 int wired;
2070
17fbb751
JM
2071 res = wpa_drv_get_ssid(wpa_s, ssid);
2072 if (res < 0) {
2073 wpa_msg(wpa_s, MSG_WARNING, "Could not read SSID from "
2074 "driver");
2075 return NULL;
6fc6879b 2076 }
17fbb751 2077 ssid_len = res;
6fc6879b 2078
17fbb751 2079 if (wpa_drv_get_bssid(wpa_s, bssid) < 0) {
f049052b
BG
2080 wpa_msg(wpa_s, MSG_WARNING, "Could not read BSSID from "
2081 "driver");
6fc6879b
JM
2082 return NULL;
2083 }
2084
c2a04078
JM
2085 wired = wpa_s->conf->ap_scan == 0 &&
2086 (wpa_s->drv_flags & WPA_DRIVER_FLAGS_WIRED);
6fc6879b
JM
2087
2088 entry = wpa_s->conf->ssid;
2089 while (entry) {
349493bd 2090 if (!wpas_network_disabled(wpa_s, entry) &&
6fc6879b
JM
2091 ((ssid_len == entry->ssid_len &&
2092 os_memcmp(ssid, entry->ssid, ssid_len) == 0) || wired) &&
2093 (!entry->bssid_set ||
2094 os_memcmp(bssid, entry->bssid, ETH_ALEN) == 0))
2095 return entry;
24c23d1b 2096#ifdef CONFIG_WPS
349493bd 2097 if (!wpas_network_disabled(wpa_s, entry) &&
24c23d1b
JM
2098 (entry->key_mgmt & WPA_KEY_MGMT_WPS) &&
2099 (entry->ssid == NULL || entry->ssid_len == 0) &&
2100 (!entry->bssid_set ||
2101 os_memcmp(bssid, entry->bssid, ETH_ALEN) == 0))
2102 return entry;
2103#endif /* CONFIG_WPS */
7d232e23 2104
349493bd 2105 if (!wpas_network_disabled(wpa_s, entry) && entry->bssid_set &&
7d232e23
ZC
2106 entry->ssid_len == 0 &&
2107 os_memcmp(bssid, entry->bssid, ETH_ALEN) == 0)
2108 return entry;
2109
6fc6879b
JM
2110 entry = entry->next;
2111 }
2112
2113 return NULL;
2114}
2115
2116
7756114f
JM
2117static int select_driver(struct wpa_supplicant *wpa_s, int i)
2118{
2119 struct wpa_global *global = wpa_s->global;
2120
2121 if (wpa_drivers[i]->global_init && global->drv_priv[i] == NULL) {
2122 global->drv_priv[i] = wpa_drivers[i]->global_init();
2123 if (global->drv_priv[i] == NULL) {
2124 wpa_printf(MSG_ERROR, "Failed to initialize driver "
2125 "'%s'", wpa_drivers[i]->name);
2126 return -1;
2127 }
2128 }
2129
2130 wpa_s->driver = wpa_drivers[i];
2131 wpa_s->global_drv_priv = global->drv_priv[i];
2132
2133 return 0;
2134}
2135
2136
6fc6879b
JM
2137static int wpa_supplicant_set_driver(struct wpa_supplicant *wpa_s,
2138 const char *name)
2139{
2140 int i;
362f781e 2141 size_t len;
74b1c84a 2142 const char *pos, *driver = name;
6fc6879b
JM
2143
2144 if (wpa_s == NULL)
2145 return -1;
2146
c5121837 2147 if (wpa_drivers[0] == NULL) {
f049052b
BG
2148 wpa_msg(wpa_s, MSG_ERROR, "No driver interfaces build into "
2149 "wpa_supplicant");
6fc6879b
JM
2150 return -1;
2151 }
2152
2153 if (name == NULL) {
2154 /* default to first driver in the list */
7756114f 2155 return select_driver(wpa_s, 0);
6fc6879b
JM
2156 }
2157
74b1c84a
SO
2158 do {
2159 pos = os_strchr(driver, ',');
2160 if (pos)
2161 len = pos - driver;
2162 else
2163 len = os_strlen(driver);
2164
2165 for (i = 0; wpa_drivers[i]; i++) {
2166 if (os_strlen(wpa_drivers[i]->name) == len &&
2167 os_strncmp(driver, wpa_drivers[i]->name, len) ==
0f4668ce
DW
2168 0) {
2169 /* First driver that succeeds wins */
2170 if (select_driver(wpa_s, i) == 0)
2171 return 0;
2172 }
6fc6879b 2173 }
74b1c84a
SO
2174
2175 driver = pos + 1;
2176 } while (pos);
6fc6879b 2177
f049052b 2178 wpa_msg(wpa_s, MSG_ERROR, "Unsupported driver '%s'", name);
6fc6879b
JM
2179 return -1;
2180}
2181
2182
a8e0505b
JM
2183/**
2184 * wpa_supplicant_rx_eapol - Deliver a received EAPOL frame to wpa_supplicant
2185 * @ctx: Context pointer (wpa_s); this is the ctx variable registered
2186 * with struct wpa_driver_ops::init()
2187 * @src_addr: Source address of the EAPOL frame
2188 * @buf: EAPOL data starting from the EAPOL header (i.e., no Ethernet header)
2189 * @len: Length of the EAPOL data
2190 *
2191 * This function is called for each received EAPOL frame. Most driver
2192 * interfaces rely on more generic OS mechanism for receiving frames through
2193 * l2_packet, but if such a mechanism is not available, the driver wrapper may
2194 * take care of received EAPOL frames and deliver them to the core supplicant
2195 * code by calling this function.
2196 */
6fc6879b
JM
2197void wpa_supplicant_rx_eapol(void *ctx, const u8 *src_addr,
2198 const u8 *buf, size_t len)
2199{
2200 struct wpa_supplicant *wpa_s = ctx;
2201
f049052b 2202 wpa_dbg(wpa_s, MSG_DEBUG, "RX EAPOL from " MACSTR, MAC2STR(src_addr));
6fc6879b
JM
2203 wpa_hexdump(MSG_MSGDUMP, "RX EAPOL", buf, len);
2204
3ab35a66
JM
2205 if (wpa_s->wpa_state < WPA_ASSOCIATED ||
2206 (wpa_s->last_eapol_matches_bssid &&
2207#ifdef CONFIG_AP
2208 !wpa_s->ap_iface &&
2209#endif /* CONFIG_AP */
2210 os_memcmp(src_addr, wpa_s->bssid, ETH_ALEN) != 0)) {
1ff73338
JM
2211 /*
2212 * There is possible race condition between receiving the
2213 * association event and the EAPOL frame since they are coming
2214 * through different paths from the driver. In order to avoid
2215 * issues in trying to process the EAPOL frame before receiving
2216 * association information, lets queue it for processing until
3ab35a66
JM
2217 * the association event is received. This may also be needed in
2218 * driver-based roaming case, so also use src_addr != BSSID as a
2219 * trigger if we have previously confirmed that the
2220 * Authenticator uses BSSID as the src_addr (which is not the
2221 * case with wired IEEE 802.1X).
1ff73338 2222 */
f049052b 2223 wpa_dbg(wpa_s, MSG_DEBUG, "Not associated - Delay processing "
3ab35a66
JM
2224 "of received EAPOL frame (state=%s bssid=" MACSTR ")",
2225 wpa_supplicant_state_txt(wpa_s->wpa_state),
2226 MAC2STR(wpa_s->bssid));
1ff73338
JM
2227 wpabuf_free(wpa_s->pending_eapol_rx);
2228 wpa_s->pending_eapol_rx = wpabuf_alloc_copy(buf, len);
2229 if (wpa_s->pending_eapol_rx) {
2230 os_get_time(&wpa_s->pending_eapol_rx_time);
2231 os_memcpy(wpa_s->pending_eapol_rx_src, src_addr,
2232 ETH_ALEN);
2233 }
2234 return;
2235 }
2236
3ab35a66
JM
2237 wpa_s->last_eapol_matches_bssid =
2238 os_memcmp(src_addr, wpa_s->bssid, ETH_ALEN) == 0;
2239
db149ac9
JM
2240#ifdef CONFIG_AP
2241 if (wpa_s->ap_iface) {
2242 wpa_supplicant_ap_rx_eapol(wpa_s, src_addr, buf, len);
2243 return;
2244 }
2245#endif /* CONFIG_AP */
2246
6fc6879b 2247 if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE) {
f049052b
BG
2248 wpa_dbg(wpa_s, MSG_DEBUG, "Ignored received EAPOL frame since "
2249 "no key management is configured");
6fc6879b
JM
2250 return;
2251 }
2252
2253 if (wpa_s->eapol_received == 0 &&
c2a04078 2254 (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE) ||
56586197 2255 !wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt) ||
9c972abb
JM
2256 wpa_s->wpa_state != WPA_COMPLETED) &&
2257 (wpa_s->current_ssid == NULL ||
2258 wpa_s->current_ssid->mode != IEEE80211_MODE_IBSS)) {
6fc6879b
JM
2259 /* Timeout for completing IEEE 802.1X and WPA authentication */
2260 wpa_supplicant_req_auth_timeout(
2261 wpa_s,
56586197 2262 (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) ||
a6f06dab
AT
2263 wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA ||
2264 wpa_s->key_mgmt == WPA_KEY_MGMT_WPS) ?
6fc6879b
JM
2265 70 : 10, 0);
2266 }
2267 wpa_s->eapol_received++;
2268
2269 if (wpa_s->countermeasures) {
f049052b
BG
2270 wpa_msg(wpa_s, MSG_INFO, "WPA: Countermeasures - dropped "
2271 "EAPOL packet");
6fc6879b
JM
2272 return;
2273 }
2274
8be18440
JM
2275#ifdef CONFIG_IBSS_RSN
2276 if (wpa_s->current_ssid &&
d7dcba70 2277 wpa_s->current_ssid->mode == WPAS_MODE_IBSS) {
8be18440
JM
2278 ibss_rsn_rx_eapol(wpa_s->ibss_rsn, src_addr, buf, len);
2279 return;
2280 }
2281#endif /* CONFIG_IBSS_RSN */
2282
6fc6879b
JM
2283 /* Source address of the incoming EAPOL frame could be compared to the
2284 * current BSSID. However, it is possible that a centralized
2285 * Authenticator could be using another MAC address than the BSSID of
2286 * an AP, so just allow any address to be used for now. The replies are
2287 * still sent to the current BSSID (if available), though. */
2288
2289 os_memcpy(wpa_s->last_eapol_src, src_addr, ETH_ALEN);
56586197 2290 if (!wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt) &&
6fc6879b
JM
2291 eapol_sm_rx_eapol(wpa_s->eapol, src_addr, buf, len) > 0)
2292 return;
2293 wpa_drv_poll(wpa_s);
c2a04078 2294 if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE))
6fc6879b 2295 wpa_sm_rx_eapol(wpa_s->wpa, src_addr, buf, len);
56586197 2296 else if (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt)) {
6fc6879b
JM
2297 /*
2298 * Set portValid = TRUE here since we are going to skip 4-way
2299 * handshake processing which would normally set portValid. We
2300 * need this to allow the EAPOL state machines to be completed
2301 * without going through EAPOL-Key handshake.
2302 */
2303 eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
2304 }
2305}
2306
2307
bfba8deb 2308int wpa_supplicant_update_mac_addr(struct wpa_supplicant *wpa_s)
6fc6879b 2309{
6fc6879b
JM
2310 if (wpa_s->driver->send_eapol) {
2311 const u8 *addr = wpa_drv_get_mac_addr(wpa_s);
2312 if (addr)
2313 os_memcpy(wpa_s->own_addr, addr, ETH_ALEN);
fdadd5fe
JM
2314 } else if (!(wpa_s->drv_flags &
2315 WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE)) {
bfba8deb 2316 l2_packet_deinit(wpa_s->l2);
6fc6879b
JM
2317 wpa_s->l2 = l2_packet_init(wpa_s->ifname,
2318 wpa_drv_get_mac_addr(wpa_s),
2319 ETH_P_EAPOL,
2320 wpa_supplicant_rx_eapol, wpa_s, 0);
2321 if (wpa_s->l2 == NULL)
2322 return -1;
fdadd5fe
JM
2323 } else {
2324 const u8 *addr = wpa_drv_get_mac_addr(wpa_s);
2325 if (addr)
2326 os_memcpy(wpa_s->own_addr, addr, ETH_ALEN);
6fc6879b
JM
2327 }
2328
2329 if (wpa_s->l2 && l2_packet_get_own_addr(wpa_s->l2, wpa_s->own_addr)) {
f049052b 2330 wpa_msg(wpa_s, MSG_ERROR, "Failed to get own L2 address");
6fc6879b
JM
2331 return -1;
2332 }
2333
f049052b
BG
2334 wpa_dbg(wpa_s, MSG_DEBUG, "Own MAC address: " MACSTR,
2335 MAC2STR(wpa_s->own_addr));
f98eb880 2336 wpa_sm_set_own_addr(wpa_s->wpa, wpa_s->own_addr);
6fc6879b 2337
bfba8deb
JM
2338 return 0;
2339}
2340
2341
25f839c6
JM
2342static void wpa_supplicant_rx_eapol_bridge(void *ctx, const u8 *src_addr,
2343 const u8 *buf, size_t len)
2344{
2345 struct wpa_supplicant *wpa_s = ctx;
2346 const struct l2_ethhdr *eth;
2347
2348 if (len < sizeof(*eth))
2349 return;
2350 eth = (const struct l2_ethhdr *) buf;
2351
2352 if (os_memcmp(eth->h_dest, wpa_s->own_addr, ETH_ALEN) != 0 &&
2353 !(eth->h_dest[0] & 0x01)) {
2354 wpa_dbg(wpa_s, MSG_DEBUG, "RX EAPOL from " MACSTR " to " MACSTR
2355 " (bridge - not for this interface - ignore)",
2356 MAC2STR(src_addr), MAC2STR(eth->h_dest));
2357 return;
2358 }
2359
2360 wpa_dbg(wpa_s, MSG_DEBUG, "RX EAPOL from " MACSTR " to " MACSTR
2361 " (bridge)", MAC2STR(src_addr), MAC2STR(eth->h_dest));
2362 wpa_supplicant_rx_eapol(wpa_s, src_addr, buf + sizeof(*eth),
2363 len - sizeof(*eth));
2364}
2365
2366
bfba8deb
JM
2367/**
2368 * wpa_supplicant_driver_init - Initialize driver interface parameters
2369 * @wpa_s: Pointer to wpa_supplicant data
2370 * Returns: 0 on success, -1 on failure
2371 *
2372 * This function is called to initialize driver interface parameters.
2373 * wpa_drv_init() must have been called before this function to initialize the
2374 * driver interface.
2375 */
2376int wpa_supplicant_driver_init(struct wpa_supplicant *wpa_s)
2377{
2378 static int interface_count = 0;
2379
2380 if (wpa_supplicant_update_mac_addr(wpa_s) < 0)
2381 return -1;
2382
6fc6879b 2383 if (wpa_s->bridge_ifname[0]) {
f049052b
BG
2384 wpa_dbg(wpa_s, MSG_DEBUG, "Receiving packets from bridge "
2385 "interface '%s'", wpa_s->bridge_ifname);
6fc6879b
JM
2386 wpa_s->l2_br = l2_packet_init(wpa_s->bridge_ifname,
2387 wpa_s->own_addr,
2388 ETH_P_EAPOL,
25f839c6
JM
2389 wpa_supplicant_rx_eapol_bridge,
2390 wpa_s, 1);
6fc6879b 2391 if (wpa_s->l2_br == NULL) {
f049052b
BG
2392 wpa_msg(wpa_s, MSG_ERROR, "Failed to open l2_packet "
2393 "connection for the bridge interface '%s'",
2394 wpa_s->bridge_ifname);
6fc6879b
JM
2395 return -1;
2396 }
2397 }
2398
6fc6879b
JM
2399 wpa_clear_keys(wpa_s, NULL);
2400
2401 /* Make sure that TKIP countermeasures are not left enabled (could
2402 * happen if wpa_supplicant is killed during countermeasures. */
2403 wpa_drv_set_countermeasures(wpa_s, 0);
2404
f049052b 2405 wpa_dbg(wpa_s, MSG_DEBUG, "RSN: flushing PMKID list in the driver");
6fc6879b
JM
2406 wpa_drv_flush_pmkid(wpa_s);
2407
ba2a573c 2408 wpa_s->prev_scan_ssid = WILDCARD_SSID_SCAN;
b3aa456b
ES
2409 wpa_s->prev_scan_wildcard = 0;
2410
349493bd 2411 if (wpa_supplicant_enabled_networks(wpa_s)) {
6a90053c
LC
2412 if (wpa_supplicant_delayed_sched_scan(wpa_s, interface_count,
2413 100000))
a4cba8f1
LC
2414 wpa_supplicant_req_scan(wpa_s, interface_count,
2415 100000);
74e259ec
JM
2416 interface_count++;
2417 } else
2418 wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
6fc6879b
JM
2419
2420 return 0;
2421}
2422
2423
2424static int wpa_supplicant_daemon(const char *pid_file)
2425{
2426 wpa_printf(MSG_DEBUG, "Daemonize..");
2427 return os_daemonize(pid_file);
2428}
2429
2430
2431static struct wpa_supplicant * wpa_supplicant_alloc(void)
2432{
2433 struct wpa_supplicant *wpa_s;
2434
2435 wpa_s = os_zalloc(sizeof(*wpa_s));
2436 if (wpa_s == NULL)
2437 return NULL;
4115303b 2438 wpa_s->scan_req = INITIAL_SCAN_REQ;
67b9bd08 2439 wpa_s->scan_interval = 5;
c302f207 2440 wpa_s->new_connection = 1;
b22128ef 2441 wpa_s->parent = wpa_s;
cbdf3507 2442 wpa_s->sched_scanning = 0;
6fc6879b
JM
2443
2444 return wpa_s;
2445}
2446
2447
80e8a5ee
BG
2448#ifdef CONFIG_HT_OVERRIDES
2449
2450static int wpa_set_htcap_mcs(struct wpa_supplicant *wpa_s,
2451 struct ieee80211_ht_capabilities *htcaps,
2452 struct ieee80211_ht_capabilities *htcaps_mask,
2453 const char *ht_mcs)
2454{
2455 /* parse ht_mcs into hex array */
2456 int i;
2457 const char *tmp = ht_mcs;
2458 char *end = NULL;
2459
2460 /* If ht_mcs is null, do not set anything */
2461 if (!ht_mcs)
2462 return 0;
2463
2464 /* This is what we are setting in the kernel */
2465 os_memset(&htcaps->supported_mcs_set, 0, IEEE80211_HT_MCS_MASK_LEN);
2466
2467 wpa_msg(wpa_s, MSG_DEBUG, "set_htcap, ht_mcs -:%s:-", ht_mcs);
2468
2469 for (i = 0; i < IEEE80211_HT_MCS_MASK_LEN; i++) {
2470 errno = 0;
2471 long v = strtol(tmp, &end, 16);
2472 if (errno == 0) {
2473 wpa_msg(wpa_s, MSG_DEBUG,
2474 "htcap value[%i]: %ld end: %p tmp: %p",
2475 i, v, end, tmp);
2476 if (end == tmp)
2477 break;
2478
2479 htcaps->supported_mcs_set[i] = v;
2480 tmp = end;
2481 } else {
2482 wpa_msg(wpa_s, MSG_ERROR,
2483 "Failed to parse ht-mcs: %s, error: %s\n",
2484 ht_mcs, strerror(errno));
2485 return -1;
2486 }
2487 }
2488
2489 /*
2490 * If we were able to parse any values, then set mask for the MCS set.
2491 */
2492 if (i) {
2493 os_memset(&htcaps_mask->supported_mcs_set, 0xff,
2494 IEEE80211_HT_MCS_MASK_LEN - 1);
2495 /* skip the 3 reserved bits */
2496 htcaps_mask->supported_mcs_set[IEEE80211_HT_MCS_MASK_LEN - 1] =
2497 0x1f;
2498 }
2499
2500 return 0;
2501}
2502
2503
2504static int wpa_disable_max_amsdu(struct wpa_supplicant *wpa_s,
2505 struct ieee80211_ht_capabilities *htcaps,
2506 struct ieee80211_ht_capabilities *htcaps_mask,
2507 int disabled)
2508{
2509 u16 msk;
2510
2511 wpa_msg(wpa_s, MSG_DEBUG, "set_disable_max_amsdu: %d", disabled);
2512
2513 if (disabled == -1)
2514 return 0;
2515
2516 msk = host_to_le16(HT_CAP_INFO_MAX_AMSDU_SIZE);
2517 htcaps_mask->ht_capabilities_info |= msk;
2518 if (disabled)
2519 htcaps->ht_capabilities_info &= msk;
2520 else
2521 htcaps->ht_capabilities_info |= msk;
2522
2523 return 0;
2524}
2525
2526
2527static int wpa_set_ampdu_factor(struct wpa_supplicant *wpa_s,
2528 struct ieee80211_ht_capabilities *htcaps,
2529 struct ieee80211_ht_capabilities *htcaps_mask,
2530 int factor)
2531{
2532 wpa_msg(wpa_s, MSG_DEBUG, "set_ampdu_factor: %d", factor);
2533
2534 if (factor == -1)
2535 return 0;
2536
2537 if (factor < 0 || factor > 3) {
2538 wpa_msg(wpa_s, MSG_ERROR, "ampdu_factor: %d out of range. "
2539 "Must be 0-3 or -1", factor);
2540 return -EINVAL;
2541 }
2542
2543 htcaps_mask->a_mpdu_params |= 0x3; /* 2 bits for factor */
2544 htcaps->a_mpdu_params &= ~0x3;
2545 htcaps->a_mpdu_params |= factor & 0x3;
2546
2547 return 0;
2548}
2549
2550
2551static int wpa_set_ampdu_density(struct wpa_supplicant *wpa_s,
2552 struct ieee80211_ht_capabilities *htcaps,
2553 struct ieee80211_ht_capabilities *htcaps_mask,
2554 int density)
2555{
2556 wpa_msg(wpa_s, MSG_DEBUG, "set_ampdu_density: %d", density);
2557
2558 if (density == -1)
2559 return 0;
2560
2561 if (density < 0 || density > 7) {
2562 wpa_msg(wpa_s, MSG_ERROR,
2563 "ampdu_density: %d out of range. Must be 0-7 or -1.",
2564 density);
2565 return -EINVAL;
2566 }
2567
2568 htcaps_mask->a_mpdu_params |= 0x1C;
2569 htcaps->a_mpdu_params &= ~(0x1C);
2570 htcaps->a_mpdu_params |= (density << 2) & 0x1C;
2571
2572 return 0;
2573}
2574
2575
2576static int wpa_set_disable_ht40(struct wpa_supplicant *wpa_s,
2577 struct ieee80211_ht_capabilities *htcaps,
2578 struct ieee80211_ht_capabilities *htcaps_mask,
2579 int disabled)
2580{
2581 /* Masking these out disables HT40 */
2582 u16 msk = host_to_le16(HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET |
2583 HT_CAP_INFO_SHORT_GI40MHZ);
2584
2585 wpa_msg(wpa_s, MSG_DEBUG, "set_disable_ht40: %d", disabled);
2586
2587 if (disabled)
2588 htcaps->ht_capabilities_info &= ~msk;
2589 else
2590 htcaps->ht_capabilities_info |= msk;
2591
2592 htcaps_mask->ht_capabilities_info |= msk;
2593
2594 return 0;
2595}
2596
2597
a90497f8
BG
2598static int wpa_set_disable_sgi(struct wpa_supplicant *wpa_s,
2599 struct ieee80211_ht_capabilities *htcaps,
2600 struct ieee80211_ht_capabilities *htcaps_mask,
2601 int disabled)
2602{
2603 /* Masking these out disables SGI */
2604 u16 msk = host_to_le16(HT_CAP_INFO_SHORT_GI20MHZ |
2605 HT_CAP_INFO_SHORT_GI40MHZ);
2606
2607 wpa_msg(wpa_s, MSG_DEBUG, "set_disable_sgi: %d", disabled);
2608
2609 if (disabled)
2610 htcaps->ht_capabilities_info &= ~msk;
2611 else
2612 htcaps->ht_capabilities_info |= msk;
2613
2614 htcaps_mask->ht_capabilities_info |= msk;
2615
2616 return 0;
2617}
2618
2619
80e8a5ee
BG
2620void wpa_supplicant_apply_ht_overrides(
2621 struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
2622 struct wpa_driver_associate_params *params)
2623{
2624 struct ieee80211_ht_capabilities *htcaps;
2625 struct ieee80211_ht_capabilities *htcaps_mask;
2626
2627 if (!ssid)
2628 return;
2629
2630 params->disable_ht = ssid->disable_ht;
2631 if (!params->htcaps || !params->htcaps_mask)
2632 return;
2633
2634 htcaps = (struct ieee80211_ht_capabilities *) params->htcaps;
2635 htcaps_mask = (struct ieee80211_ht_capabilities *) params->htcaps_mask;
2636 wpa_set_htcap_mcs(wpa_s, htcaps, htcaps_mask, ssid->ht_mcs);
2637 wpa_disable_max_amsdu(wpa_s, htcaps, htcaps_mask,
2638 ssid->disable_max_amsdu);
2639 wpa_set_ampdu_factor(wpa_s, htcaps, htcaps_mask, ssid->ampdu_factor);
2640 wpa_set_ampdu_density(wpa_s, htcaps, htcaps_mask, ssid->ampdu_density);
2641 wpa_set_disable_ht40(wpa_s, htcaps, htcaps_mask, ssid->disable_ht40);
a90497f8 2642 wpa_set_disable_sgi(wpa_s, htcaps, htcaps_mask, ssid->disable_sgi);
80e8a5ee
BG
2643}
2644
2645#endif /* CONFIG_HT_OVERRIDES */
2646
2647
e9ee8dc3
JB
2648#ifdef CONFIG_VHT_OVERRIDES
2649void wpa_supplicant_apply_vht_overrides(
2650 struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
2651 struct wpa_driver_associate_params *params)
2652{
2653 struct ieee80211_vht_capabilities *vhtcaps;
2654 struct ieee80211_vht_capabilities *vhtcaps_mask;
2655
2656 if (!ssid)
2657 return;
2658
2659 params->disable_vht = ssid->disable_vht;
2660
2661 vhtcaps = (void *) params->vhtcaps;
2662 vhtcaps_mask = (void *) params->vhtcaps_mask;
2663
2664 if (!vhtcaps || !vhtcaps_mask)
2665 return;
2666
2667 vhtcaps->vht_capabilities_info = ssid->vht_capa;
2668 vhtcaps_mask->vht_capabilities_info = ssid->vht_capa_mask;
2669
2670#define OVERRIDE_MCS(i) \
2671 if (ssid->vht_tx_mcs_nss_ ##i >= 0) { \
2672 vhtcaps_mask->vht_supported_mcs_set.tx_map |= \
2673 3 << 2 * (i - 1); \
2674 vhtcaps->vht_supported_mcs_set.tx_map |= \
2675 ssid->vht_tx_mcs_nss_ ##i << 2 * (i - 1); \
2676 } \
2677 if (ssid->vht_rx_mcs_nss_ ##i >= 0) { \
2678 vhtcaps_mask->vht_supported_mcs_set.rx_map |= \
2679 3 << 2 * (i - 1); \
2680 vhtcaps->vht_supported_mcs_set.rx_map |= \
2681 ssid->vht_rx_mcs_nss_ ##i << 2 * (i - 1); \
2682 }
2683
2684 OVERRIDE_MCS(1);
2685 OVERRIDE_MCS(2);
2686 OVERRIDE_MCS(3);
2687 OVERRIDE_MCS(4);
2688 OVERRIDE_MCS(5);
2689 OVERRIDE_MCS(6);
2690 OVERRIDE_MCS(7);
2691 OVERRIDE_MCS(8);
2692}
2693#endif /* CONFIG_VHT_OVERRIDES */
2694
2695
f64adcd7
JM
2696static int pcsc_reader_init(struct wpa_supplicant *wpa_s)
2697{
2698#ifdef PCSC_FUNCS
2699 size_t len;
2700
2701 if (!wpa_s->conf->pcsc_reader)
2702 return 0;
2703
2704 wpa_s->scard = scard_init(SCARD_TRY_BOTH, wpa_s->conf->pcsc_reader);
2705 if (!wpa_s->scard)
2706 return 1;
2707
2708 if (wpa_s->conf->pcsc_pin &&
2709 scard_set_pin(wpa_s->scard, wpa_s->conf->pcsc_pin) < 0) {
2710 scard_deinit(wpa_s->scard);
2711 wpa_s->scard = NULL;
2712 wpa_msg(wpa_s, MSG_ERROR, "PC/SC PIN validation failed");
2713 return -1;
2714 }
2715
2716 len = sizeof(wpa_s->imsi) - 1;
2717 if (scard_get_imsi(wpa_s->scard, wpa_s->imsi, &len)) {
2718 scard_deinit(wpa_s->scard);
2719 wpa_s->scard = NULL;
2720 wpa_msg(wpa_s, MSG_ERROR, "Could not read IMSI");
2721 return -1;
2722 }
2723 wpa_s->imsi[len] = '\0';
2724
2725 wpa_s->mnc_len = scard_get_mnc_len(wpa_s->scard);
2726
2727 wpa_printf(MSG_DEBUG, "SCARD: IMSI %s (MNC length %d)",
2728 wpa_s->imsi, wpa_s->mnc_len);
2729
2730 wpa_sm_set_scard_ctx(wpa_s->wpa, wpa_s->scard);
2731 eapol_sm_register_scard_ctx(wpa_s->eapol, wpa_s->scard);
2732#endif /* PCSC_FUNCS */
2733
2734 return 0;
2735}
2736
2737
306ae225
JM
2738int wpas_init_ext_pw(struct wpa_supplicant *wpa_s)
2739{
2740 char *val, *pos;
2741
2742 ext_password_deinit(wpa_s->ext_pw);
2743 wpa_s->ext_pw = NULL;
2744 eapol_sm_set_ext_pw_ctx(wpa_s->eapol, NULL);
2745
2746 if (!wpa_s->conf->ext_password_backend)
2747 return 0;
2748
2749 val = os_strdup(wpa_s->conf->ext_password_backend);
2750 if (val == NULL)
2751 return -1;
2752 pos = os_strchr(val, ':');
2753 if (pos)
2754 *pos++ = '\0';
2755
2756 wpa_printf(MSG_DEBUG, "EXT PW: Initialize backend '%s'", val);
2757
2758 wpa_s->ext_pw = ext_password_init(val, pos);
2759 os_free(val);
2760 if (wpa_s->ext_pw == NULL) {
2761 wpa_printf(MSG_DEBUG, "EXT PW: Failed to initialize backend");
2762 return -1;
2763 }
2764 eapol_sm_set_ext_pw_ctx(wpa_s->eapol, wpa_s->ext_pw);
2765
2766 return 0;
2767}
2768
2769
6fc6879b
JM
2770static int wpa_supplicant_init_iface(struct wpa_supplicant *wpa_s,
2771 struct wpa_interface *iface)
2772{
362f781e
JM
2773 const char *ifname, *driver;
2774 struct wpa_driver_capa capa;
2775
6fc6879b
JM
2776 wpa_printf(MSG_DEBUG, "Initializing interface '%s' conf '%s' driver "
2777 "'%s' ctrl_interface '%s' bridge '%s'", iface->ifname,
2778 iface->confname ? iface->confname : "N/A",
2779 iface->driver ? iface->driver : "default",
2780 iface->ctrl_interface ? iface->ctrl_interface : "N/A",
2781 iface->bridge_ifname ? iface->bridge_ifname : "N/A");
2782
6fc6879b
JM
2783 if (iface->confname) {
2784#ifdef CONFIG_BACKEND_FILE
2785 wpa_s->confname = os_rel2abs_path(iface->confname);
2786 if (wpa_s->confname == NULL) {
2787 wpa_printf(MSG_ERROR, "Failed to get absolute path "
2788 "for configuration file '%s'.",
2789 iface->confname);
2790 return -1;
2791 }
2792 wpa_printf(MSG_DEBUG, "Configuration file '%s' -> '%s'",
2793 iface->confname, wpa_s->confname);
2794#else /* CONFIG_BACKEND_FILE */
2795 wpa_s->confname = os_strdup(iface->confname);
2796#endif /* CONFIG_BACKEND_FILE */
2797 wpa_s->conf = wpa_config_read(wpa_s->confname);
2798 if (wpa_s->conf == NULL) {
2799 wpa_printf(MSG_ERROR, "Failed to read or parse "
2800 "configuration '%s'.", wpa_s->confname);
2801 return -1;
2802 }
2803
2804 /*
2805 * Override ctrl_interface and driver_param if set on command
2806 * line.
2807 */
2808 if (iface->ctrl_interface) {
2809 os_free(wpa_s->conf->ctrl_interface);
2810 wpa_s->conf->ctrl_interface =
2811 os_strdup(iface->ctrl_interface);
2812 }
2813
2814 if (iface->driver_param) {
2815 os_free(wpa_s->conf->driver_param);
2816 wpa_s->conf->driver_param =
2817 os_strdup(iface->driver_param);
2818 }
2819 } else
2820 wpa_s->conf = wpa_config_alloc_empty(iface->ctrl_interface,
2821 iface->driver_param);
2822
2823 if (wpa_s->conf == NULL) {
2824 wpa_printf(MSG_ERROR, "\nNo configuration found.");
2825 return -1;
2826 }
2827
2828 if (iface->ifname == NULL) {
2829 wpa_printf(MSG_ERROR, "\nInterface name is required.");
2830 return -1;
2831 }
2832 if (os_strlen(iface->ifname) >= sizeof(wpa_s->ifname)) {
2833 wpa_printf(MSG_ERROR, "\nToo long interface name '%s'.",
2834 iface->ifname);
2835 return -1;
2836 }
2837 os_strlcpy(wpa_s->ifname, iface->ifname, sizeof(wpa_s->ifname));
2838
2839 if (iface->bridge_ifname) {
2840 if (os_strlen(iface->bridge_ifname) >=
2841 sizeof(wpa_s->bridge_ifname)) {
2842 wpa_printf(MSG_ERROR, "\nToo long bridge interface "
2843 "name '%s'.", iface->bridge_ifname);
2844 return -1;
2845 }
2846 os_strlcpy(wpa_s->bridge_ifname, iface->bridge_ifname,
2847 sizeof(wpa_s->bridge_ifname));
2848 }
2849
6fc6879b
JM
2850 /* RSNA Supplicant Key Management - INITIALIZE */
2851 eapol_sm_notify_portEnabled(wpa_s->eapol, FALSE);
2852 eapol_sm_notify_portValid(wpa_s->eapol, FALSE);
2853
2854 /* Initialize driver interface and register driver event handler before
2855 * L2 receive handler so that association events are processed before
2856 * EAPOL-Key packets if both become available for the same select()
2857 * call. */
362f781e
JM
2858 driver = iface->driver;
2859next_driver:
2860 if (wpa_supplicant_set_driver(wpa_s, driver) < 0)
2861 return -1;
2862
6fc6879b
JM
2863 wpa_s->drv_priv = wpa_drv_init(wpa_s, wpa_s->ifname);
2864 if (wpa_s->drv_priv == NULL) {
362f781e 2865 const char *pos;
a5b9337f 2866 pos = driver ? os_strchr(driver, ',') : NULL;
362f781e 2867 if (pos) {
f049052b
BG
2868 wpa_dbg(wpa_s, MSG_DEBUG, "Failed to initialize "
2869 "driver interface - try next driver wrapper");
362f781e
JM
2870 driver = pos + 1;
2871 goto next_driver;
2872 }
f049052b
BG
2873 wpa_msg(wpa_s, MSG_ERROR, "Failed to initialize driver "
2874 "interface");
6fc6879b
JM
2875 return -1;
2876 }
2877 if (wpa_drv_set_param(wpa_s, wpa_s->conf->driver_param) < 0) {
f049052b
BG
2878 wpa_msg(wpa_s, MSG_ERROR, "Driver interface rejected "
2879 "driver_param '%s'", wpa_s->conf->driver_param);
6fc6879b
JM
2880 return -1;
2881 }
2882
2883 ifname = wpa_drv_get_ifname(wpa_s);
2884 if (ifname && os_strcmp(ifname, wpa_s->ifname) != 0) {
f049052b
BG
2885 wpa_dbg(wpa_s, MSG_DEBUG, "Driver interface replaced "
2886 "interface name with '%s'", ifname);
6fc6879b
JM
2887 os_strlcpy(wpa_s->ifname, ifname, sizeof(wpa_s->ifname));
2888 }
2889
2890 if (wpa_supplicant_init_wpa(wpa_s) < 0)
2891 return -1;
2892
2893 wpa_sm_set_ifname(wpa_s->wpa, wpa_s->ifname,
2894 wpa_s->bridge_ifname[0] ? wpa_s->bridge_ifname :
2895 NULL);
2896 wpa_sm_set_fast_reauth(wpa_s->wpa, wpa_s->conf->fast_reauth);
2897
2898 if (wpa_s->conf->dot11RSNAConfigPMKLifetime &&
2899 wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_LIFETIME,
2900 wpa_s->conf->dot11RSNAConfigPMKLifetime)) {
f049052b
BG
2901 wpa_msg(wpa_s, MSG_ERROR, "Invalid WPA parameter value for "
2902 "dot11RSNAConfigPMKLifetime");
6fc6879b
JM
2903 return -1;
2904 }
2905
2906 if (wpa_s->conf->dot11RSNAConfigPMKReauthThreshold &&
2907 wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_REAUTH_THRESHOLD,
2908 wpa_s->conf->dot11RSNAConfigPMKReauthThreshold)) {
f049052b 2909 wpa_msg(wpa_s, MSG_ERROR, "Invalid WPA parameter value for "
6fc6879b
JM
2910 "dot11RSNAConfigPMKReauthThreshold");
2911 return -1;
2912 }
2913
2914 if (wpa_s->conf->dot11RSNAConfigSATimeout &&
2915 wpa_sm_set_param(wpa_s->wpa, RSNA_SA_TIMEOUT,
2916 wpa_s->conf->dot11RSNAConfigSATimeout)) {
f049052b
BG
2917 wpa_msg(wpa_s, MSG_ERROR, "Invalid WPA parameter value for "
2918 "dot11RSNAConfigSATimeout");
6fc6879b
JM
2919 return -1;
2920 }
2921
6bf731e8
CL
2922 wpa_s->hw.modes = wpa_drv_get_hw_feature_data(wpa_s,
2923 &wpa_s->hw.num_modes,
2924 &wpa_s->hw.flags);
2925
814782b9 2926 if (wpa_drv_get_capa(wpa_s, &capa) == 0) {
c58ab8f2 2927 wpa_s->drv_capa_known = 1;
814782b9 2928 wpa_s->drv_flags = capa.flags;
349493bd 2929 wpa_s->drv_enc = capa.enc;
4f73d88a 2930 wpa_s->probe_resp_offloads = capa.probe_resp_offloads;
814782b9 2931 wpa_s->max_scan_ssids = capa.max_scan_ssids;
cbdf3507
LC
2932 wpa_s->max_sched_scan_ssids = capa.max_sched_scan_ssids;
2933 wpa_s->sched_scan_supported = capa.sched_scan_supported;
b59e6f26 2934 wpa_s->max_match_sets = capa.max_match_sets;
814782b9 2935 wpa_s->max_remain_on_chan = capa.max_remain_on_chan;
c4ea4c5c 2936 wpa_s->max_stations = capa.max_stations;
8cd6b7bc
JB
2937 wpa_s->extended_capa = capa.extended_capa;
2938 wpa_s->extended_capa_mask = capa.extended_capa_mask;
2939 wpa_s->extended_capa_len = capa.extended_capa_len;
814782b9
JM
2940 }
2941 if (wpa_s->max_remain_on_chan == 0)
2942 wpa_s->max_remain_on_chan = 1000;
2943
6fc6879b
JM
2944 if (wpa_supplicant_driver_init(wpa_s) < 0)
2945 return -1;
2946
281ff0aa
GP
2947#ifdef CONFIG_TDLS
2948 if (wpa_tdls_init(wpa_s->wpa))
2949 return -1;
2950#endif /* CONFIG_TDLS */
2951
315ce40a
JM
2952 if (wpa_s->conf->country[0] && wpa_s->conf->country[1] &&
2953 wpa_drv_set_country(wpa_s, wpa_s->conf->country)) {
f049052b 2954 wpa_dbg(wpa_s, MSG_DEBUG, "Failed to set country");
6d158490
LR
2955 return -1;
2956 }
2957
116654ce
JM
2958 if (wpas_wps_init(wpa_s))
2959 return -1;
2960
6fc6879b
JM
2961 if (wpa_supplicant_init_eapol(wpa_s) < 0)
2962 return -1;
2963 wpa_sm_set_eapol(wpa_s->wpa, wpa_s->eapol);
2964
2965 wpa_s->ctrl_iface = wpa_supplicant_ctrl_iface_init(wpa_s);
2966 if (wpa_s->ctrl_iface == NULL) {
2967 wpa_printf(MSG_ERROR,
2968 "Failed to initialize control interface '%s'.\n"
2969 "You may have another wpa_supplicant process "
2970 "already running or the file was\n"
2971 "left by an unclean termination of wpa_supplicant "
2972 "in which case you will need\n"
2973 "to manually remove this file before starting "
2974 "wpa_supplicant again.\n",
2975 wpa_s->conf->ctrl_interface);
2976 return -1;
2977 }
2978
04ea7b79
JM
2979 wpa_s->gas = gas_query_init(wpa_s);
2980 if (wpa_s->gas == NULL) {
2981 wpa_printf(MSG_ERROR, "Failed to initialize GAS query");
2982 return -1;
2983 }
2984
b22128ef
JM
2985#ifdef CONFIG_P2P
2986 if (wpas_p2p_init(wpa_s->global, wpa_s) < 0) {
f049052b 2987 wpa_msg(wpa_s, MSG_ERROR, "Failed to init P2P");
b22128ef
JM
2988 return -1;
2989 }
2990#endif /* CONFIG_P2P */
2991
83922c2d
JM
2992 if (wpa_bss_init(wpa_s) < 0)
2993 return -1;
83922c2d 2994
f64adcd7
JM
2995 if (pcsc_reader_init(wpa_s) < 0)
2996 return -1;
2997
306ae225
JM
2998 if (wpas_init_ext_pw(wpa_s) < 0)
2999 return -1;
3000
6fc6879b
JM
3001 return 0;
3002}
3003
3004
2ee055b3 3005static void wpa_supplicant_deinit_iface(struct wpa_supplicant *wpa_s,
df509539 3006 int notify, int terminate)
6fc6879b
JM
3007{
3008 if (wpa_s->drv_priv) {
3009 wpa_supplicant_deauthenticate(wpa_s,
3010 WLAN_REASON_DEAUTH_LEAVING);
3011
6fc6879b
JM
3012 wpa_drv_set_countermeasures(wpa_s, 0);
3013 wpa_clear_keys(wpa_s, NULL);
3014 }
3015
8e56d189
JM
3016 wpa_supplicant_cleanup(wpa_s);
3017
ab28911d
JM
3018#ifdef CONFIG_P2P
3019 if (wpa_s == wpa_s->global->p2p_init_wpa_s && wpa_s->global->p2p) {
3020 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Disable P2P since removing "
3021 "the management interface is being removed");
3022 wpas_p2p_deinit_global(wpa_s->global);
3023 }
3024#endif /* CONFIG_P2P */
3025
6fc6879b
JM
3026 if (wpa_s->drv_priv)
3027 wpa_drv_deinit(wpa_s);
2523ff6e
DS
3028
3029 if (notify)
3030 wpas_notify_iface_removed(wpa_s);
f0811516
DS
3031
3032 if (terminate)
3033 wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_TERMINATING);
3034
3035 if (wpa_s->ctrl_iface) {
3036 wpa_supplicant_ctrl_iface_deinit(wpa_s->ctrl_iface);
3037 wpa_s->ctrl_iface = NULL;
3038 }
3039
3040 if (wpa_s->conf != NULL) {
3041 wpa_config_free(wpa_s->conf);
3042 wpa_s->conf = NULL;
3043 }
6fc6879b
JM
3044}
3045
3046
3047/**
3048 * wpa_supplicant_add_iface - Add a new network interface
3049 * @global: Pointer to global data from wpa_supplicant_init()
3050 * @iface: Interface configuration options
3051 * Returns: Pointer to the created interface or %NULL on failure
3052 *
3053 * This function is used to add new network interfaces for %wpa_supplicant.
3054 * This can be called before wpa_supplicant_run() to add interfaces before the
3055 * main event loop has been started. In addition, new interfaces can be added
3056 * dynamically while %wpa_supplicant is already running. This could happen,
3057 * e.g., when a hotplug network adapter is inserted.
3058 */
3059struct wpa_supplicant * wpa_supplicant_add_iface(struct wpa_global *global,
3060 struct wpa_interface *iface)
3061{
3062 struct wpa_supplicant *wpa_s;
d27df100 3063 struct wpa_interface t_iface;
8e56d189 3064 struct wpa_ssid *ssid;
6fc6879b
JM
3065
3066 if (global == NULL || iface == NULL)
3067 return NULL;
3068
3069 wpa_s = wpa_supplicant_alloc();
3070 if (wpa_s == NULL)
3071 return NULL;
3072
d8222ae3
JM
3073 wpa_s->global = global;
3074
d27df100
JM
3075 t_iface = *iface;
3076 if (global->params.override_driver) {
3077 wpa_printf(MSG_DEBUG, "Override interface parameter: driver "
3078 "('%s' -> '%s')",
3079 iface->driver, global->params.override_driver);
3080 t_iface.driver = global->params.override_driver;
3081 }
3082 if (global->params.override_ctrl_interface) {
3083 wpa_printf(MSG_DEBUG, "Override interface parameter: "
3084 "ctrl_interface ('%s' -> '%s')",
3085 iface->ctrl_interface,
3086 global->params.override_ctrl_interface);
3087 t_iface.ctrl_interface =
3088 global->params.override_ctrl_interface;
3089 }
3090 if (wpa_supplicant_init_iface(wpa_s, &t_iface)) {
6fc6879b
JM
3091 wpa_printf(MSG_DEBUG, "Failed to add interface %s",
3092 iface->ifname);
df509539 3093 wpa_supplicant_deinit_iface(wpa_s, 0, 0);
6fc6879b
JM
3094 os_free(wpa_s);
3095 return NULL;
3096 }
3097
dc461de4
WS
3098 /* Notify the control interfaces about new iface */
3099 if (wpas_notify_iface_added(wpa_s)) {
df509539 3100 wpa_supplicant_deinit_iface(wpa_s, 1, 0);
6fc6879b
JM
3101 os_free(wpa_s);
3102 return NULL;
3103 }
1bd3f426 3104
8e56d189
JM
3105 for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next)
3106 wpas_notify_network_added(wpa_s, ssid);
3107
6fc6879b
JM
3108 wpa_s->next = global->ifaces;
3109 global->ifaces = wpa_s;
3110
f049052b 3111 wpa_dbg(wpa_s, MSG_DEBUG, "Added interface %s", wpa_s->ifname);
99218999 3112 wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
6fc6879b
JM
3113
3114 return wpa_s;
3115}
3116
3117
3118/**
3119 * wpa_supplicant_remove_iface - Remove a network interface
3120 * @global: Pointer to global data from wpa_supplicant_init()
3121 * @wpa_s: Pointer to the network interface to be removed
3122 * Returns: 0 if interface was removed, -1 if interface was not found
3123 *
3124 * This function can be used to dynamically remove network interfaces from
3125 * %wpa_supplicant, e.g., when a hotplug network adapter is ejected. In
3126 * addition, this function is used to remove all remaining interfaces when
3127 * %wpa_supplicant is terminated.
3128 */
3129int wpa_supplicant_remove_iface(struct wpa_global *global,
df509539
DS
3130 struct wpa_supplicant *wpa_s,
3131 int terminate)
6fc6879b
JM
3132{
3133 struct wpa_supplicant *prev;
3134
3135 /* Remove interface from the global list of interfaces */
3136 prev = global->ifaces;
3137 if (prev == wpa_s) {
3138 global->ifaces = wpa_s->next;
3139 } else {
3140 while (prev && prev->next != wpa_s)
3141 prev = prev->next;
3142 if (prev == NULL)
3143 return -1;
3144 prev->next = wpa_s->next;
3145 }
3146
f049052b 3147 wpa_dbg(wpa_s, MSG_DEBUG, "Removing interface %s", wpa_s->ifname);
6fc6879b 3148
b22128ef
JM
3149 if (global->p2p_group_formation == wpa_s)
3150 global->p2p_group_formation = NULL;
dbca75f8
JM
3151 if (global->p2p_invite_group == wpa_s)
3152 global->p2p_invite_group = NULL;
df509539 3153 wpa_supplicant_deinit_iface(wpa_s, 1, terminate);
6fc6879b
JM
3154 os_free(wpa_s);
3155
3156 return 0;
3157}
3158
3159
cf83fb0b
PS
3160/**
3161 * wpa_supplicant_get_eap_mode - Get the current EAP mode
3162 * @wpa_s: Pointer to the network interface
3163 * Returns: Pointer to the eap mode or the string "UNKNOWN" if not found
3164 */
3165const char * wpa_supplicant_get_eap_mode(struct wpa_supplicant *wpa_s)
3166{
3167 const char *eapol_method;
3168
3169 if (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) == 0 &&
3170 wpa_s->key_mgmt != WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
3171 return "NO-EAP";
3172 }
3173
3174 eapol_method = eapol_sm_get_method_name(wpa_s->eapol);
3175 if (eapol_method == NULL)
3176 return "UNKNOWN-EAP";
3177
3178 return eapol_method;
3179}
3180
3181
6fc6879b
JM
3182/**
3183 * wpa_supplicant_get_iface - Get a new network interface
3184 * @global: Pointer to global data from wpa_supplicant_init()
3185 * @ifname: Interface name
3186 * Returns: Pointer to the interface or %NULL if not found
3187 */
3188struct wpa_supplicant * wpa_supplicant_get_iface(struct wpa_global *global,
3189 const char *ifname)
3190{
3191 struct wpa_supplicant *wpa_s;
3192
3193 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
3194 if (os_strcmp(wpa_s->ifname, ifname) == 0)
3195 return wpa_s;
3196 }
3197 return NULL;
3198}
3199
3200
50b16da1 3201#ifndef CONFIG_NO_WPA_MSG
4f1495ae
BG
3202static const char * wpa_supplicant_msg_ifname_cb(void *ctx)
3203{
3204 struct wpa_supplicant *wpa_s = ctx;
3205 if (wpa_s == NULL)
3206 return NULL;
3207 return wpa_s->ifname;
3208}
50b16da1 3209#endif /* CONFIG_NO_WPA_MSG */
4f1495ae
BG
3210
3211
6fc6879b
JM
3212/**
3213 * wpa_supplicant_init - Initialize %wpa_supplicant
3214 * @params: Parameters for %wpa_supplicant
3215 * Returns: Pointer to global %wpa_supplicant data, or %NULL on failure
3216 *
3217 * This function is used to initialize %wpa_supplicant. After successful
3218 * initialization, the returned data pointer can be used to add and remove
3219 * network interfaces, and eventually, to deinitialize %wpa_supplicant.
3220 */
3221struct wpa_global * wpa_supplicant_init(struct wpa_params *params)
3222{
3223 struct wpa_global *global;
ac305589 3224 int ret, i;
6fc6879b
JM
3225
3226 if (params == NULL)
3227 return NULL;
3228
39e7d718
JM
3229#ifdef CONFIG_DRIVER_NDIS
3230 {
3231 void driver_ndis_init_ops(void);
3232 driver_ndis_init_ops();
3233 }
3234#endif /* CONFIG_DRIVER_NDIS */
3235
50b16da1 3236#ifndef CONFIG_NO_WPA_MSG
4f1495ae 3237 wpa_msg_register_ifname_cb(wpa_supplicant_msg_ifname_cb);
50b16da1 3238#endif /* CONFIG_NO_WPA_MSG */
4f1495ae 3239
6fc6879b 3240 wpa_debug_open_file(params->wpa_debug_file_path);
daa70d49
SL
3241 if (params->wpa_debug_syslog)
3242 wpa_debug_open_syslog();
4f68895e
JB
3243 if (params->wpa_debug_tracing) {
3244 ret = wpa_debug_open_linux_tracing();
3245 if (ret) {
3246 wpa_printf(MSG_ERROR,
3247 "Failed to enable trace logging");
3248 return NULL;
3249 }
3250 }
6fc6879b 3251
12760815 3252 ret = eap_register_methods();
6fc6879b
JM
3253 if (ret) {
3254 wpa_printf(MSG_ERROR, "Failed to register EAP methods");
3255 if (ret == -2)
3256 wpa_printf(MSG_ERROR, "Two or more EAP methods used "
3257 "the same EAP type.");
3258 return NULL;
3259 }
3260
3261 global = os_zalloc(sizeof(*global));
3262 if (global == NULL)
3263 return NULL;
b22128ef
JM
3264 dl_list_init(&global->p2p_srv_bonjour);
3265 dl_list_init(&global->p2p_srv_upnp);
6fc6879b
JM
3266 global->params.daemonize = params->daemonize;
3267 global->params.wait_for_monitor = params->wait_for_monitor;
3268 global->params.dbus_ctrl_interface = params->dbus_ctrl_interface;
3269 if (params->pid_file)
3270 global->params.pid_file = os_strdup(params->pid_file);
3271 if (params->ctrl_interface)
3272 global->params.ctrl_interface =
3273 os_strdup(params->ctrl_interface);
d27df100
JM
3274 if (params->override_driver)
3275 global->params.override_driver =
3276 os_strdup(params->override_driver);
3277 if (params->override_ctrl_interface)
3278 global->params.override_ctrl_interface =
3279 os_strdup(params->override_ctrl_interface);
6fc6879b
JM
3280 wpa_debug_level = global->params.wpa_debug_level =
3281 params->wpa_debug_level;
3282 wpa_debug_show_keys = global->params.wpa_debug_show_keys =
3283 params->wpa_debug_show_keys;
3284 wpa_debug_timestamp = global->params.wpa_debug_timestamp =
3285 params->wpa_debug_timestamp;
3286
f19858f5
JM
3287 wpa_printf(MSG_DEBUG, "wpa_supplicant v" VERSION_STR);
3288
0456ea16 3289 if (eloop_init()) {
6fc6879b
JM
3290 wpa_printf(MSG_ERROR, "Failed to initialize event loop");
3291 wpa_supplicant_deinit(global);
3292 return NULL;
3293 }
3294
38e24575 3295 random_init(params->entropy_file);
d47fa330 3296
6fc6879b
JM
3297 global->ctrl_iface = wpa_supplicant_global_ctrl_iface_init(global);
3298 if (global->ctrl_iface == NULL) {
3299 wpa_supplicant_deinit(global);
3300 return NULL;
3301 }
3302
dc461de4
WS
3303 if (wpas_notify_supplicant_initialized(global)) {
3304 wpa_supplicant_deinit(global);
3305 return NULL;
6fc6879b
JM
3306 }
3307
c5121837 3308 for (i = 0; wpa_drivers[i]; i++)
ac305589
JM
3309 global->drv_count++;
3310 if (global->drv_count == 0) {
3311 wpa_printf(MSG_ERROR, "No drivers enabled");
3312 wpa_supplicant_deinit(global);
3313 return NULL;
3314 }
3315 global->drv_priv = os_zalloc(global->drv_count * sizeof(void *));
3316 if (global->drv_priv == NULL) {
3317 wpa_supplicant_deinit(global);
3318 return NULL;
3319 }
ac305589 3320
9675ce35
JM
3321#ifdef CONFIG_WIFI_DISPLAY
3322 if (wifi_display_init(global) < 0) {
3323 wpa_printf(MSG_ERROR, "Failed to initialize Wi-Fi Display");
3324 wpa_supplicant_deinit(global);
3325 return NULL;
3326 }
3327#endif /* CONFIG_WIFI_DISPLAY */
3328
6fc6879b
JM
3329 return global;
3330}
3331
3332
3333/**
3334 * wpa_supplicant_run - Run the %wpa_supplicant main event loop
3335 * @global: Pointer to global data from wpa_supplicant_init()
3336 * Returns: 0 after successful event loop run, -1 on failure
3337 *
3338 * This function starts the main event loop and continues running as long as
3339 * there are any remaining events. In most cases, this function is running as
3340 * long as the %wpa_supplicant process in still in use.
3341 */
3342int wpa_supplicant_run(struct wpa_global *global)
3343{
3344 struct wpa_supplicant *wpa_s;
3345
3346 if (global->params.daemonize &&
3347 wpa_supplicant_daemon(global->params.pid_file))
3348 return -1;
3349
3350 if (global->params.wait_for_monitor) {
3351 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next)
3352 if (wpa_s->ctrl_iface)
3353 wpa_supplicant_ctrl_iface_wait(
3354 wpa_s->ctrl_iface);
3355 }
3356
0456ea16
JM
3357 eloop_register_signal_terminate(wpa_supplicant_terminate, global);
3358 eloop_register_signal_reconfig(wpa_supplicant_reconfig, global);
6fc6879b
JM
3359
3360 eloop_run();
3361
3362 return 0;
3363}
3364
3365
3366/**
3367 * wpa_supplicant_deinit - Deinitialize %wpa_supplicant
3368 * @global: Pointer to global data from wpa_supplicant_init()
3369 *
3370 * This function is called to deinitialize %wpa_supplicant and to free all
3371 * allocated resources. Remaining network interfaces will also be removed.
3372 */
3373void wpa_supplicant_deinit(struct wpa_global *global)
3374{
ac305589
JM
3375 int i;
3376
6fc6879b
JM
3377 if (global == NULL)
3378 return;
3379
9675ce35
JM
3380#ifdef CONFIG_WIFI_DISPLAY
3381 wifi_display_deinit(global);
3382#endif /* CONFIG_WIFI_DISPLAY */
b22128ef
JM
3383#ifdef CONFIG_P2P
3384 wpas_p2p_deinit_global(global);
3385#endif /* CONFIG_P2P */
3386
6fc6879b 3387 while (global->ifaces)
df509539 3388 wpa_supplicant_remove_iface(global, global->ifaces, 1);
6fc6879b
JM
3389
3390 if (global->ctrl_iface)
3391 wpa_supplicant_global_ctrl_iface_deinit(global->ctrl_iface);
dc461de4
WS
3392
3393 wpas_notify_supplicant_deinitialized(global);
6fc6879b
JM
3394
3395 eap_peer_unregister_methods();
3ec97afe
JM
3396#ifdef CONFIG_AP
3397 eap_server_unregister_methods();
3398#endif /* CONFIG_AP */
6fc6879b 3399
c5121837 3400 for (i = 0; wpa_drivers[i] && global->drv_priv; i++) {
ac305589
JM
3401 if (!global->drv_priv[i])
3402 continue;
c5121837 3403 wpa_drivers[i]->global_deinit(global->drv_priv[i]);
ac305589
JM
3404 }
3405 os_free(global->drv_priv);
3406
d47fa330
JM
3407 random_deinit();
3408
6fc6879b
JM
3409 eloop_destroy();
3410
3411 if (global->params.pid_file) {
3412 os_daemonize_terminate(global->params.pid_file);
3413 os_free(global->params.pid_file);
3414 }
3415 os_free(global->params.ctrl_interface);
d27df100
JM
3416 os_free(global->params.override_driver);
3417 os_free(global->params.override_ctrl_interface);
6fc6879b 3418
6f3bc72b
JM
3419 os_free(global->p2p_disallow_freq);
3420
6fc6879b 3421 os_free(global);
daa70d49 3422 wpa_debug_close_syslog();
6fc6879b 3423 wpa_debug_close_file();
4f68895e 3424 wpa_debug_close_linux_tracing();
6fc6879b 3425}
611aea7d
JM
3426
3427
3428void wpa_supplicant_update_config(struct wpa_supplicant *wpa_s)
3429{
849b5dc7
JM
3430 if ((wpa_s->conf->changed_parameters & CFG_CHANGED_COUNTRY) &&
3431 wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
3432 char country[3];
3433 country[0] = wpa_s->conf->country[0];
3434 country[1] = wpa_s->conf->country[1];
3435 country[2] = '\0';
3436 if (wpa_drv_set_country(wpa_s, country) < 0) {
3437 wpa_printf(MSG_ERROR, "Failed to set country code "
3438 "'%s'", country);
3439 }
3440 }
3441
306ae225
JM
3442 if (wpa_s->conf->changed_parameters & CFG_CHANGED_EXT_PW_BACKEND)
3443 wpas_init_ext_pw(wpa_s);
3444
611aea7d
JM
3445#ifdef CONFIG_WPS
3446 wpas_wps_update_config(wpa_s);
3447#endif /* CONFIG_WPS */
3448
b22128ef
JM
3449#ifdef CONFIG_P2P
3450 wpas_p2p_update_config(wpa_s);
3451#endif /* CONFIG_P2P */
3452
611aea7d
JM
3453 wpa_s->conf->changed_parameters = 0;
3454}
2f9c6aa6
JM
3455
3456
0fb337c1
JM
3457static void add_freq(int *freqs, int *num_freqs, int freq)
3458{
3459 int i;
3460
3461 for (i = 0; i < *num_freqs; i++) {
3462 if (freqs[i] == freq)
3463 return;
3464 }
3465
3466 freqs[*num_freqs] = freq;
3467 (*num_freqs)++;
3468}
3469
3470
3471static int * get_bss_freqs_in_ess(struct wpa_supplicant *wpa_s)
3472{
3473 struct wpa_bss *bss, *cbss;
3474 const int max_freqs = 10;
3475 int *freqs;
3476 int num_freqs = 0;
3477
3478 freqs = os_zalloc(sizeof(int) * (max_freqs + 1));
3479 if (freqs == NULL)
3480 return NULL;
3481
3482 cbss = wpa_s->current_bss;
3483
3484 dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
3485 if (bss == cbss)
3486 continue;
3487 if (bss->ssid_len == cbss->ssid_len &&
3488 os_memcmp(bss->ssid, cbss->ssid, bss->ssid_len) == 0 &&
3489 wpa_blacklist_get(wpa_s, bss->bssid) == NULL) {
3490 add_freq(freqs, &num_freqs, bss->freq);
3491 if (num_freqs == max_freqs)
3492 break;
3493 }
3494 }
3495
3496 if (num_freqs == 0) {
3497 os_free(freqs);
3498 freqs = NULL;
3499 }
3500
3501 return freqs;
3502}
3503
3504
3505void wpas_connection_failed(struct wpa_supplicant *wpa_s, const u8 *bssid)
3506{
3507 int timeout;
3508 int count;
3509 int *freqs = NULL;
3510
5fd9fb27
JM
3511 /*
3512 * Remove possible authentication timeout since the connection failed.
3513 */
3514 eloop_cancel_timeout(wpa_supplicant_timeout, wpa_s, NULL);
3515
0fb337c1
JM
3516 /*
3517 * Add the failed BSSID into the blacklist and speed up next scan
3518 * attempt if there could be other APs that could accept association.
3519 * The current blacklist count indicates how many times we have tried
3520 * connecting to this AP and multiple attempts mean that other APs are
3521 * either not available or has already been tried, so that we can start
3522 * increasing the delay here to avoid constant scanning.
3523 */
3524 count = wpa_blacklist_add(wpa_s, bssid);
3525 if (count == 1 && wpa_s->current_bss) {
3526 /*
3527 * This BSS was not in the blacklist before. If there is
3528 * another BSS available for the same ESS, we should try that
3529 * next. Otherwise, we may as well try this one once more
3530 * before allowing other, likely worse, ESSes to be considered.
3531 */
3532 freqs = get_bss_freqs_in_ess(wpa_s);
3533 if (freqs) {
f049052b
BG
3534 wpa_dbg(wpa_s, MSG_DEBUG, "Another BSS in this ESS "
3535 "has been seen; try it next");
0fb337c1
JM
3536 wpa_blacklist_add(wpa_s, bssid);
3537 /*
3538 * On the next scan, go through only the known channels
3539 * used in this ESS based on previous scans to speed up
3540 * common load balancing use case.
3541 */
3542 os_free(wpa_s->next_scan_freqs);
3543 wpa_s->next_scan_freqs = freqs;
3544 }
3545 }
3546
f1a52633
JM
3547 /*
3548 * Add previous failure count in case the temporary blacklist was
3549 * cleared due to no other BSSes being available.
3550 */
3551 count += wpa_s->extra_blacklist_count;
3552
0fb337c1
JM
3553 switch (count) {
3554 case 1:
3555 timeout = 100;
3556 break;
3557 case 2:
3558 timeout = 500;
3559 break;
3560 case 3:
3561 timeout = 1000;
3562 break;
f1a52633 3563 case 4:
0fb337c1 3564 timeout = 5000;
f1a52633
JM
3565 break;
3566 default:
3567 timeout = 10000;
3568 break;
0fb337c1
JM
3569 }
3570
f1a52633
JM
3571 wpa_dbg(wpa_s, MSG_DEBUG, "Blacklist count %d --> request scan in %d "
3572 "ms", count, timeout);
3573
0fb337c1
JM
3574 /*
3575 * TODO: if more than one possible AP is available in scan results,
3576 * could try the other ones before requesting a new scan.
3577 */
3578 wpa_supplicant_req_scan(wpa_s, timeout / 1000,
3579 1000 * (timeout % 1000));
99fcd404 3580
f85f545e 3581 wpas_p2p_continue_after_scan(wpa_s);
0fb337c1 3582}
22628eca
JM
3583
3584
3585int wpas_driver_bss_selection(struct wpa_supplicant *wpa_s)
3586{
3587 return wpa_s->conf->ap_scan == 2 ||
3588 (wpa_s->drv_flags & WPA_DRIVER_FLAGS_BSS_SELECTION);
3589}
d2118814
JM
3590
3591
3592#if defined(CONFIG_CTRL_IFACE) || defined(CONFIG_CTRL_IFACE_DBUS_NEW)
3593int wpa_supplicant_ctrl_iface_ctrl_rsp_handle(struct wpa_supplicant *wpa_s,
3594 struct wpa_ssid *ssid,
3595 const char *field,
3596 const char *value)
3597{
3598#ifdef IEEE8021X_EAPOL
3599 struct eap_peer_config *eap = &ssid->eap;
3600
3601 wpa_printf(MSG_DEBUG, "CTRL_IFACE: response handle field=%s", field);
3602 wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: response value",
3603 (const u8 *) value, os_strlen(value));
3604
3605 switch (wpa_supplicant_ctrl_req_from_string(field)) {
3606 case WPA_CTRL_REQ_EAP_IDENTITY:
3607 os_free(eap->identity);
3608 eap->identity = (u8 *) os_strdup(value);
3609 eap->identity_len = os_strlen(value);
3610 eap->pending_req_identity = 0;
3611 if (ssid == wpa_s->current_ssid)
3612 wpa_s->reassociate = 1;
3613 break;
3614 case WPA_CTRL_REQ_EAP_PASSWORD:
3615 os_free(eap->password);
3616 eap->password = (u8 *) os_strdup(value);
3617 eap->password_len = os_strlen(value);
3618 eap->pending_req_password = 0;
3619 if (ssid == wpa_s->current_ssid)
3620 wpa_s->reassociate = 1;
3621 break;
3622 case WPA_CTRL_REQ_EAP_NEW_PASSWORD:
3623 os_free(eap->new_password);
3624 eap->new_password = (u8 *) os_strdup(value);
3625 eap->new_password_len = os_strlen(value);
3626 eap->pending_req_new_password = 0;
3627 if (ssid == wpa_s->current_ssid)
3628 wpa_s->reassociate = 1;
3629 break;
3630 case WPA_CTRL_REQ_EAP_PIN:
3631 os_free(eap->pin);
3632 eap->pin = os_strdup(value);
3633 eap->pending_req_pin = 0;
3634 if (ssid == wpa_s->current_ssid)
3635 wpa_s->reassociate = 1;
3636 break;
3637 case WPA_CTRL_REQ_EAP_OTP:
3638 os_free(eap->otp);
3639 eap->otp = (u8 *) os_strdup(value);
3640 eap->otp_len = os_strlen(value);
3641 os_free(eap->pending_req_otp);
3642 eap->pending_req_otp = NULL;
3643 eap->pending_req_otp_len = 0;
3644 break;
3645 case WPA_CTRL_REQ_EAP_PASSPHRASE:
3646 os_free(eap->private_key_passwd);
3647 eap->private_key_passwd = (u8 *) os_strdup(value);
3648 eap->pending_req_passphrase = 0;
3649 if (ssid == wpa_s->current_ssid)
3650 wpa_s->reassociate = 1;
3651 break;
3652 default:
3653 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown field '%s'", field);
3654 return -1;
3655 }
3656
3657 return 0;
3658#else /* IEEE8021X_EAPOL */
3659 wpa_printf(MSG_DEBUG, "CTRL_IFACE: IEEE 802.1X not included");
3660 return -1;
3661#endif /* IEEE8021X_EAPOL */
3662}
3663#endif /* CONFIG_CTRL_IFACE || CONFIG_CTRL_IFACE_DBUS_NEW */
349493bd
JM
3664
3665
3666int wpas_network_disabled(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid)
3667{
3668 int i;
3669 unsigned int drv_enc;
3670
3671 if (ssid == NULL)
3672 return 1;
3673
3674 if (ssid->disabled)
3675 return 1;
3676
3677 if (wpa_s && wpa_s->drv_capa_known)
3678 drv_enc = wpa_s->drv_enc;
3679 else
3680 drv_enc = (unsigned int) -1;
3681
3682 for (i = 0; i < NUM_WEP_KEYS; i++) {
3683 size_t len = ssid->wep_key_len[i];
3684 if (len == 0)
3685 continue;
3686 if (len == 5 && (drv_enc & WPA_DRIVER_CAPA_ENC_WEP40))
3687 continue;
3688 if (len == 13 && (drv_enc & WPA_DRIVER_CAPA_ENC_WEP104))
3689 continue;
3690 if (len == 16 && (drv_enc & WPA_DRIVER_CAPA_ENC_WEP128))
3691 continue;
3692 return 1; /* invalid WEP key */
3693 }
3694
9173b16f
JM
3695 if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt) && !ssid->psk_set &&
3696 !ssid->ext_psk)
2518aad3
JM
3697 return 1;
3698
349493bd
JM
3699 return 0;
3700}
b9cfc09a
JJ
3701
3702
3703int wpas_is_p2p_prioritized(struct wpa_supplicant *wpa_s)
3704{
3705 if (wpa_s->global->conc_pref == WPA_CONC_PREF_P2P)
3706 return 1;
3707 if (wpa_s->global->conc_pref == WPA_CONC_PREF_STA)
3708 return 0;
3709 return -1;
3710}
00e5e3d5
JM
3711
3712
3713void wpas_auth_failed(struct wpa_supplicant *wpa_s)
3714{
3715 struct wpa_ssid *ssid = wpa_s->current_ssid;
3716 int dur;
3717 struct os_time now;
3718
3719 if (ssid == NULL) {
3720 wpa_printf(MSG_DEBUG, "Authentication failure but no known "
3721 "SSID block");
3722 return;
3723 }
3724
3725 if (ssid->key_mgmt == WPA_KEY_MGMT_WPS)
3726 return;
3727
3728 ssid->auth_failures++;
3729 if (ssid->auth_failures > 50)
3730 dur = 300;
3731 else if (ssid->auth_failures > 20)
3732 dur = 120;
3733 else if (ssid->auth_failures > 10)
3734 dur = 60;
3735 else if (ssid->auth_failures > 5)
3736 dur = 30;
3737 else if (ssid->auth_failures > 1)
3738 dur = 20;
3739 else
3740 dur = 10;
3741
3742 os_get_time(&now);
3743 if (now.sec + dur <= ssid->disabled_until.sec)
3744 return;
3745
3746 ssid->disabled_until.sec = now.sec + dur;
3747
3748 wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_TEMP_DISABLED
3749 "id=%d ssid=\"%s\" auth_failures=%u duration=%d",
3750 ssid->id, wpa_ssid_txt(ssid->ssid, ssid->ssid_len),
3751 ssid->auth_failures, dur);
3752}
3753
3754
3755void wpas_clear_temp_disabled(struct wpa_supplicant *wpa_s,
3756 struct wpa_ssid *ssid, int clear_failures)
3757{
3758 if (ssid == NULL)
3759 return;
3760
3761 if (ssid->disabled_until.sec) {
3762 wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_REENABLED
3763 "id=%d ssid=\"%s\"",
3764 ssid->id, wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
3765 }
3766 ssid->disabled_until.sec = 0;
3767 ssid->disabled_until.usec = 0;
3768 if (clear_failures)
3769 ssid->auth_failures = 0;
3770}
6407f413
JM
3771
3772
3773int disallowed_bssid(struct wpa_supplicant *wpa_s, const u8 *bssid)
3774{
3775 size_t i;
3776
3777 if (wpa_s->disallow_aps_bssid == NULL)
3778 return 0;
3779
3780 for (i = 0; i < wpa_s->disallow_aps_bssid_count; i++) {
3781 if (os_memcmp(wpa_s->disallow_aps_bssid + i * ETH_ALEN,
3782 bssid, ETH_ALEN) == 0)
3783 return 1;
3784 }
3785
3786 return 0;
3787}
3788
3789
3790int disallowed_ssid(struct wpa_supplicant *wpa_s, const u8 *ssid,
3791 size_t ssid_len)
3792{
3793 size_t i;
3794
3795 if (wpa_s->disallow_aps_ssid == NULL || ssid == NULL)
3796 return 0;
3797
3798 for (i = 0; i < wpa_s->disallow_aps_ssid_count; i++) {
3799 struct wpa_ssid_value *s = &wpa_s->disallow_aps_ssid[i];
3800 if (ssid_len == s->ssid_len &&
3801 os_memcmp(ssid, s->ssid, ssid_len) == 0)
3802 return 1;
3803 }
3804
3805 return 0;
3806}
9796a86c
JM
3807
3808
3809/**
3810 * wpas_request_connection - Request a new connection
3811 * @wpa_s: Pointer to the network interface
3812 *
3813 * This function is used to request a new connection to be found. It will mark
3814 * the interface to allow reassociation and request a new scan to find a
3815 * suitable network to connect to.
3816 */
3817void wpas_request_connection(struct wpa_supplicant *wpa_s)
3818{
3819 wpa_s->normal_scans = 0;
3820 wpa_supplicant_reinit_autoscan(wpa_s);
3821 wpa_s->extra_blacklist_count = 0;
3822 wpa_s->disconnected = 0;
3823 wpa_s->reassociate = 1;
5e24beae
MH
3824
3825 if (wpa_supplicant_fast_associate(wpa_s) != 1)
3826 wpa_supplicant_req_scan(wpa_s, 0, 0);
9796a86c 3827}