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