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