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