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