Branch data Line data Source code
1 : : /*
2 : : * wpa_supplicant / WPS integration
3 : : * Copyright (c) 2008-2014, Jouni Malinen <j@w1.fi>
4 : : *
5 : : * This software may be distributed under the terms of the BSD license.
6 : : * See README for more details.
7 : : */
8 : :
9 : : #include "includes.h"
10 : :
11 : : #include "common.h"
12 : : #include "eloop.h"
13 : : #include "uuid.h"
14 : : #include "crypto/random.h"
15 : : #include "crypto/dh_group5.h"
16 : : #include "common/ieee802_11_defs.h"
17 : : #include "common/ieee802_11_common.h"
18 : : #include "common/wpa_common.h"
19 : : #include "common/wpa_ctrl.h"
20 : : #include "eap_common/eap_wsc_common.h"
21 : : #include "eap_peer/eap.h"
22 : : #include "eapol_supp/eapol_supp_sm.h"
23 : : #include "rsn_supp/wpa.h"
24 : : #include "wps/wps_attr_parse.h"
25 : : #include "config.h"
26 : : #include "wpa_supplicant_i.h"
27 : : #include "driver_i.h"
28 : : #include "notify.h"
29 : : #include "blacklist.h"
30 : : #include "bss.h"
31 : : #include "scan.h"
32 : : #include "ap.h"
33 : : #include "p2p/p2p.h"
34 : : #include "p2p_supplicant.h"
35 : : #include "wps_supplicant.h"
36 : :
37 : :
38 : : #ifndef WPS_PIN_SCAN_IGNORE_SEL_REG
39 : : #define WPS_PIN_SCAN_IGNORE_SEL_REG 3
40 : : #endif /* WPS_PIN_SCAN_IGNORE_SEL_REG */
41 : :
42 : : static void wpas_wps_timeout(void *eloop_ctx, void *timeout_ctx);
43 : : static void wpas_clear_wps(struct wpa_supplicant *wpa_s);
44 : :
45 : :
46 : 1986 : static void wpas_wps_clear_ap_info(struct wpa_supplicant *wpa_s)
47 : : {
48 : 1986 : os_free(wpa_s->wps_ap);
49 : 1986 : wpa_s->wps_ap = NULL;
50 : 1986 : wpa_s->num_wps_ap = 0;
51 : 1986 : wpa_s->wps_ap_iter = 0;
52 : 1986 : }
53 : :
54 : :
55 : 590 : int wpas_wps_eapol_cb(struct wpa_supplicant *wpa_s)
56 : : {
57 : : #ifdef CONFIG_P2P
58 [ + + ]: 590 : if (wpas_p2p_wps_eapol_cb(wpa_s) > 0)
59 : 1 : return 1;
60 : : #endif /* CONFIG_P2P */
61 : :
62 [ + + ][ + - ]: 589 : if (!wpa_s->wps_success &&
63 [ + + ]: 275 : wpa_s->current_ssid &&
64 : 275 : eap_is_wps_pin_enrollee(&wpa_s->current_ssid->eap)) {
65 : 3 : const u8 *bssid = wpa_s->bssid;
66 [ - + ]: 3 : if (is_zero_ether_addr(bssid))
67 : 0 : bssid = wpa_s->pending_bssid;
68 : :
69 : 3 : wpa_printf(MSG_DEBUG, "WPS: PIN registration with " MACSTR
70 : : " did not succeed - continue trying to find "
71 : 18 : "suitable AP", MAC2STR(bssid));
72 : 3 : wpa_blacklist_add(wpa_s, bssid);
73 : :
74 : 3 : wpa_supplicant_deauthenticate(wpa_s,
75 : : WLAN_REASON_DEAUTH_LEAVING);
76 : 3 : wpa_s->reassociate = 1;
77 [ - + ]: 3 : wpa_supplicant_req_scan(wpa_s,
78 : 3 : wpa_s->blacklist_cleared ? 5 : 0, 0);
79 : 3 : wpa_s->blacklist_cleared = 0;
80 : 3 : return 1;
81 : : }
82 : :
83 : 586 : wpas_wps_clear_ap_info(wpa_s);
84 : 586 : eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
85 [ + + ][ + + ]: 586 : if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS && !wpa_s->wps_success)
86 : 28 : wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_FAIL);
87 : :
88 [ + + ][ + - ]: 586 : if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS && wpa_s->current_ssid &&
[ + + ]
89 : 138 : !(wpa_s->current_ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
90 : 121 : int disabled = wpa_s->current_ssid->disabled;
91 : 121 : unsigned int freq = wpa_s->assoc_freq;
92 : : struct wpa_bss *bss;
93 : 121 : struct wpa_ssid *ssid = NULL;
94 : 121 : int use_fast_assoc = 0;
95 : :
96 : 121 : wpa_printf(MSG_DEBUG, "WPS: Network configuration replaced - "
97 : : "try to associate with the received credential "
98 : : "(freq=%u)", freq);
99 : 121 : wpa_supplicant_deauthenticate(wpa_s,
100 : : WLAN_REASON_DEAUTH_LEAVING);
101 [ - + ]: 121 : if (disabled) {
102 : 0 : wpa_printf(MSG_DEBUG, "WPS: Current network is "
103 : : "disabled - wait for user to enable");
104 : 0 : return 1;
105 : : }
106 : 121 : wpa_s->after_wps = 5;
107 : 121 : wpa_s->wps_freq = freq;
108 : 121 : wpa_s->normal_scans = 0;
109 : 121 : wpa_s->reassociate = 1;
110 : :
111 : 121 : wpa_printf(MSG_DEBUG, "WPS: Checking whether fast association "
112 : : "without a new scan can be used");
113 : 121 : bss = wpa_supplicant_pick_network(wpa_s, &ssid);
114 [ + + ]: 121 : if (bss) {
115 : : struct wpabuf *wps;
116 : : struct wps_parse_attr attr;
117 : :
118 : 112 : wps = wpa_bss_get_vendor_ie_multi(bss,
119 : : WPS_IE_VENDOR_TYPE);
120 [ + - ][ + - ]: 112 : if (wps && wps_parse_msg(wps, &attr) == 0 &&
[ + - ]
121 [ + - ]: 112 : attr.wps_state &&
122 : 112 : *attr.wps_state == WPS_STATE_CONFIGURED)
123 : 112 : use_fast_assoc = 1;
124 : 112 : wpabuf_free(wps);
125 : : }
126 : :
127 [ + + - + ]: 233 : if (!use_fast_assoc ||
128 : 112 : wpa_supplicant_fast_associate(wpa_s) != 1)
129 : 9 : wpa_supplicant_req_scan(wpa_s, 0, 0);
130 : 121 : return 1;
131 : : }
132 : :
133 [ + + ][ + - ]: 465 : if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS && wpa_s->current_ssid) {
134 : 17 : wpa_printf(MSG_DEBUG, "WPS: Registration completed - waiting "
135 : : "for external credential processing");
136 : 17 : wpas_clear_wps(wpa_s);
137 : 17 : wpa_supplicant_deauthenticate(wpa_s,
138 : : WLAN_REASON_DEAUTH_LEAVING);
139 : 17 : return 1;
140 : : }
141 : :
142 : 590 : return 0;
143 : : }
144 : :
145 : :
146 : 126 : static void wpas_wps_security_workaround(struct wpa_supplicant *wpa_s,
147 : : struct wpa_ssid *ssid,
148 : : const struct wps_credential *cred)
149 : : {
150 : : struct wpa_driver_capa capa;
151 : : struct wpa_bss *bss;
152 : : const u8 *ie;
153 : : struct wpa_ie_data adv;
154 : 126 : int wpa2 = 0, ccmp = 0;
155 : :
156 : : /*
157 : : * Many existing WPS APs do not know how to negotiate WPA2 or CCMP in
158 : : * case they are configured for mixed mode operation (WPA+WPA2 and
159 : : * TKIP+CCMP). Try to use scan results to figure out whether the AP
160 : : * actually supports stronger security and select that if the client
161 : : * has support for it, too.
162 : : */
163 : :
164 [ - + ]: 126 : if (wpa_drv_get_capa(wpa_s, &capa))
165 : 0 : return; /* Unknown what driver supports */
166 : :
167 [ - + ]: 126 : if (ssid->ssid == NULL)
168 : 0 : return;
169 : 126 : bss = wpa_bss_get(wpa_s, cred->mac_addr, ssid->ssid, ssid->ssid_len);
170 [ + + ]: 126 : if (bss == NULL) {
171 : 113 : wpa_printf(MSG_DEBUG, "WPS: The AP was not found from BSS "
172 : : "table - use credential as-is");
173 : 113 : return;
174 : : }
175 : :
176 : 13 : wpa_printf(MSG_DEBUG, "WPS: AP found from BSS table");
177 : :
178 : 13 : ie = wpa_bss_get_ie(bss, WLAN_EID_RSN);
179 [ + + ][ + - ]: 13 : if (ie && wpa_parse_wpa_ie(ie, 2 + ie[1], &adv) == 0) {
180 : 12 : wpa2 = 1;
181 [ + - ]: 24 : if (adv.pairwise_cipher & WPA_CIPHER_CCMP)
182 : 12 : ccmp = 1;
183 : : } else {
184 : 1 : ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
185 [ - + ][ # # ]: 1 : if (ie && wpa_parse_wpa_ie(ie, 2 + ie[1], &adv) == 0 &&
[ # # ]
186 : 0 : adv.pairwise_cipher & WPA_CIPHER_CCMP)
187 : 0 : ccmp = 1;
188 : : }
189 : :
190 [ + + ][ - + ]: 13 : if (ie == NULL && (ssid->proto & WPA_PROTO_WPA) &&
[ # # ]
191 : 0 : (ssid->pairwise_cipher & WPA_CIPHER_TKIP)) {
192 : : /*
193 : : * TODO: This could be the initial AP configuration and the
194 : : * Beacon contents could change shortly. Should request a new
195 : : * scan and delay addition of the network until the updated
196 : : * scan results are available.
197 : : */
198 : 0 : wpa_printf(MSG_DEBUG, "WPS: The AP did not yet advertise WPA "
199 : : "support - use credential as-is");
200 : 0 : return;
201 : : }
202 : :
203 [ + + ][ - + ]: 13 : if (ccmp && !(ssid->pairwise_cipher & WPA_CIPHER_CCMP) &&
[ # # ]
204 [ # # ]: 0 : (ssid->pairwise_cipher & WPA_CIPHER_TKIP) &&
205 : 0 : (capa.key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
206 : 0 : wpa_printf(MSG_DEBUG, "WPS: Add CCMP into the credential "
207 : : "based on scan results");
208 [ # # ]: 0 : if (wpa_s->conf->ap_scan == 1)
209 : 0 : ssid->pairwise_cipher |= WPA_CIPHER_CCMP;
210 : : else
211 : 0 : ssid->pairwise_cipher = WPA_CIPHER_CCMP;
212 : : }
213 : :
214 [ + + ][ - + ]: 13 : if (wpa2 && !(ssid->proto & WPA_PROTO_RSN) &&
[ # # ]
215 [ # # ]: 0 : (ssid->proto & WPA_PROTO_WPA) &&
216 : 0 : (capa.enc & WPA_DRIVER_CAPA_ENC_CCMP)) {
217 : 0 : wpa_printf(MSG_DEBUG, "WPS: Add WPA2 into the credential "
218 : : "based on scan results");
219 [ # # ]: 0 : if (wpa_s->conf->ap_scan == 1)
220 : 0 : ssid->proto |= WPA_PROTO_RSN;
221 : : else
222 : 126 : ssid->proto = WPA_PROTO_RSN;
223 : : }
224 : : }
225 : :
226 : :
227 : 126 : static void wpas_wps_remove_dup_network(struct wpa_supplicant *wpa_s,
228 : : struct wpa_ssid *new_ssid)
229 : : {
230 : : struct wpa_ssid *ssid, *next;
231 : :
232 [ + - ][ + + ]: 254 : for (ssid = wpa_s->conf->ssid, next = ssid ? ssid->next : NULL; ssid;
233 [ + + ]: 128 : ssid = next, next = ssid ? ssid->next : NULL) {
234 : : /*
235 : : * new_ssid has already been added to the list in
236 : : * wpas_wps_add_network(), so skip it.
237 : : */
238 [ + + ]: 128 : if (ssid == new_ssid)
239 : 126 : continue;
240 : :
241 [ + - ][ - + ]: 2 : if (ssid->bssid_set || new_ssid->bssid_set) {
242 [ # # ]: 0 : if (ssid->bssid_set != new_ssid->bssid_set)
243 : 0 : continue;
244 [ # # ]: 0 : if (os_memcmp(ssid->bssid, new_ssid->bssid, ETH_ALEN) !=
245 : : 0)
246 : 0 : continue;
247 : : }
248 : :
249 : : /* compare SSID */
250 [ + - ][ - + ]: 2 : if (ssid->ssid_len == 0 || ssid->ssid_len != new_ssid->ssid_len)
251 : 0 : continue;
252 : :
253 [ + - ][ + - ]: 2 : if (ssid->ssid && new_ssid->ssid) {
254 [ - + ]: 2 : if (os_memcmp(ssid->ssid, new_ssid->ssid,
255 : : ssid->ssid_len) != 0)
256 : 0 : continue;
257 [ # # ][ # # ]: 0 : } else if (ssid->ssid || new_ssid->ssid)
258 : 0 : continue;
259 : :
260 : : /* compare security parameters */
261 [ + + ][ + - ]: 2 : if (ssid->auth_alg != new_ssid->auth_alg ||
262 [ + - ]: 1 : ssid->key_mgmt != new_ssid->key_mgmt ||
263 [ + - ]: 1 : ssid->proto != new_ssid->proto ||
264 [ - + ]: 1 : ssid->pairwise_cipher != new_ssid->pairwise_cipher ||
265 : 1 : ssid->group_cipher != new_ssid->group_cipher)
266 : 1 : continue;
267 : :
268 : : /* Remove the duplicated older network entry. */
269 : 1 : wpa_printf(MSG_DEBUG, "Remove duplicate network %d", ssid->id);
270 : 1 : wpas_notify_network_removed(wpa_s, ssid);
271 : 1 : wpa_config_remove_network(wpa_s->conf, ssid->id);
272 : : }
273 : 126 : }
274 : :
275 : :
276 : 126 : static int wpa_supplicant_wps_cred(void *ctx,
277 : : const struct wps_credential *cred)
278 : : {
279 : 126 : struct wpa_supplicant *wpa_s = ctx;
280 : 126 : struct wpa_ssid *ssid = wpa_s->current_ssid;
281 : 126 : u8 key_idx = 0;
282 : : u16 auth_type;
283 : : #ifdef CONFIG_WPS_REG_DISABLE_OPEN
284 : : int registrar = 0;
285 : : #endif /* CONFIG_WPS_REG_DISABLE_OPEN */
286 : :
287 [ + - ][ - + ]: 126 : if ((wpa_s->conf->wps_cred_processing == 1 ||
288 [ # # ]: 0 : wpa_s->conf->wps_cred_processing == 2) && cred->cred_attr) {
289 : 0 : size_t blen = cred->cred_attr_len * 2 + 1;
290 : 0 : char *buf = os_malloc(blen);
291 [ # # ]: 0 : if (buf) {
292 : 0 : wpa_snprintf_hex(buf, blen,
293 : : cred->cred_attr, cred->cred_attr_len);
294 : 0 : wpa_msg(wpa_s, MSG_INFO, "%s%s",
295 : : WPS_EVENT_CRED_RECEIVED, buf);
296 : 0 : os_free(buf);
297 : : }
298 : :
299 : 0 : wpas_notify_wps_credential(wpa_s, cred);
300 : : } else
301 : 126 : wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_CRED_RECEIVED);
302 : :
303 : 126 : wpa_hexdump_key(MSG_DEBUG, "WPS: Received Credential attribute",
304 : 126 : cred->cred_attr, cred->cred_attr_len);
305 : :
306 [ - + ]: 126 : if (wpa_s->conf->wps_cred_processing == 1)
307 : 0 : return 0;
308 : :
309 : 126 : wpa_hexdump_ascii(MSG_DEBUG, "WPS: SSID", cred->ssid, cred->ssid_len);
310 : 126 : wpa_printf(MSG_DEBUG, "WPS: Authentication Type 0x%x",
311 : 126 : cred->auth_type);
312 : 126 : wpa_printf(MSG_DEBUG, "WPS: Encryption Type 0x%x", cred->encr_type);
313 : 126 : wpa_printf(MSG_DEBUG, "WPS: Network Key Index %d", cred->key_idx);
314 : 126 : wpa_hexdump_key(MSG_DEBUG, "WPS: Network Key",
315 : 126 : cred->key, cred->key_len);
316 : 126 : wpa_printf(MSG_DEBUG, "WPS: MAC Address " MACSTR,
317 : 756 : MAC2STR(cred->mac_addr));
318 : :
319 : 126 : auth_type = cred->auth_type;
320 [ - + ]: 126 : if (auth_type == (WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK)) {
321 : 0 : wpa_printf(MSG_DEBUG, "WPS: Workaround - convert mixed-mode "
322 : : "auth_type into WPA2PSK");
323 : 0 : auth_type = WPS_AUTH_WPA2PSK;
324 : : }
325 : :
326 [ + - ][ + - ]: 126 : if (auth_type != WPS_AUTH_OPEN &&
327 [ + + ]: 126 : auth_type != WPS_AUTH_SHARED &&
328 [ - + ]: 125 : auth_type != WPS_AUTH_WPAPSK &&
329 : : auth_type != WPS_AUTH_WPA2PSK) {
330 : 0 : wpa_printf(MSG_DEBUG, "WPS: Ignored credentials for "
331 : : "unsupported authentication type 0x%x",
332 : : auth_type);
333 : 0 : return 0;
334 : : }
335 : :
336 [ + + ][ + - ]: 126 : if (auth_type == WPS_AUTH_WPAPSK || auth_type == WPS_AUTH_WPA2PSK) {
337 [ + - ][ - + ]: 126 : if (cred->key_len < 8 || cred->key_len > 2 * PMK_LEN) {
338 : 0 : wpa_printf(MSG_ERROR, "WPS: Reject PSK credential with "
339 : : "invalid Network Key length %lu",
340 : : (unsigned long) cred->key_len);
341 : 0 : return -1;
342 : : }
343 : : }
344 : :
345 [ + + ][ + + ]: 126 : if (ssid && (ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
346 : 121 : wpa_printf(MSG_DEBUG, "WPS: Replace WPS network block based "
347 : : "on the received credential");
348 : : #ifdef CONFIG_WPS_REG_DISABLE_OPEN
349 : : if (ssid->eap.identity &&
350 : : ssid->eap.identity_len == WSC_ID_REGISTRAR_LEN &&
351 : : os_memcmp(ssid->eap.identity, WSC_ID_REGISTRAR,
352 : : WSC_ID_REGISTRAR_LEN) == 0)
353 : : registrar = 1;
354 : : #endif /* CONFIG_WPS_REG_DISABLE_OPEN */
355 : 121 : os_free(ssid->eap.identity);
356 : 121 : ssid->eap.identity = NULL;
357 : 121 : ssid->eap.identity_len = 0;
358 : 121 : os_free(ssid->eap.phase1);
359 : 121 : ssid->eap.phase1 = NULL;
360 : 121 : os_free(ssid->eap.eap_methods);
361 : 121 : ssid->eap.eap_methods = NULL;
362 [ + + ]: 121 : if (!ssid->p2p_group) {
363 : 45 : ssid->temporary = 0;
364 : 45 : ssid->bssid_set = 0;
365 : : }
366 : 121 : ssid->disabled_until.sec = 0;
367 : 121 : ssid->disabled_until.usec = 0;
368 : 121 : ssid->auth_failures = 0;
369 : : } else {
370 : 5 : wpa_printf(MSG_DEBUG, "WPS: Create a new network based on the "
371 : : "received credential");
372 : 5 : ssid = wpa_config_add_network(wpa_s->conf);
373 [ - + ]: 5 : if (ssid == NULL)
374 : 0 : return -1;
375 : 5 : wpas_notify_network_added(wpa_s, ssid);
376 : : }
377 : :
378 : 126 : wpa_config_set_network_defaults(ssid);
379 : :
380 : 126 : os_free(ssid->ssid);
381 : 126 : ssid->ssid = os_malloc(cred->ssid_len);
382 [ + - ]: 126 : if (ssid->ssid) {
383 : 126 : os_memcpy(ssid->ssid, cred->ssid, cred->ssid_len);
384 : 126 : ssid->ssid_len = cred->ssid_len;
385 : : }
386 : :
387 [ - - + + : 126 : switch (cred->encr_type) {
- ]
388 : : case WPS_ENCR_NONE:
389 : 0 : break;
390 : : case WPS_ENCR_WEP:
391 [ # # ]: 0 : if (cred->key_len <= 0)
392 : 0 : break;
393 [ # # ][ # # ]: 0 : if (cred->key_len != 5 && cred->key_len != 13 &&
[ # # ]
394 [ # # ]: 0 : cred->key_len != 10 && cred->key_len != 26) {
395 : 0 : wpa_printf(MSG_ERROR, "WPS: Invalid WEP Key length "
396 : : "%lu", (unsigned long) cred->key_len);
397 : 0 : return -1;
398 : : }
399 [ # # ]: 0 : if (cred->key_idx > NUM_WEP_KEYS) {
400 : 0 : wpa_printf(MSG_ERROR, "WPS: Invalid WEP Key index %d",
401 : 0 : cred->key_idx);
402 : 0 : return -1;
403 : : }
404 [ # # ]: 0 : if (cred->key_idx)
405 : 0 : key_idx = cred->key_idx - 1;
406 [ # # ][ # # ]: 0 : if (cred->key_len == 10 || cred->key_len == 26) {
407 [ # # ]: 0 : if (hexstr2bin((char *) cred->key,
408 : 0 : ssid->wep_key[key_idx],
409 : 0 : cred->key_len / 2) < 0) {
410 : 0 : wpa_printf(MSG_ERROR, "WPS: Invalid WEP Key "
411 : : "%d", key_idx);
412 : 0 : return -1;
413 : : }
414 : 0 : ssid->wep_key_len[key_idx] = cred->key_len / 2;
415 : : } else {
416 : 0 : os_memcpy(ssid->wep_key[key_idx], cred->key,
417 : : cred->key_len);
418 : 0 : ssid->wep_key_len[key_idx] = cred->key_len;
419 : : }
420 : 0 : ssid->wep_tx_keyidx = key_idx;
421 : 0 : break;
422 : : case WPS_ENCR_TKIP:
423 : 1 : ssid->pairwise_cipher = WPA_CIPHER_TKIP;
424 : 1 : break;
425 : : case WPS_ENCR_AES:
426 : 125 : ssid->pairwise_cipher = WPA_CIPHER_CCMP;
427 : 125 : break;
428 : : }
429 : :
430 [ - - + + : 126 : switch (auth_type) {
- ]
431 : : case WPS_AUTH_OPEN:
432 : 0 : ssid->auth_alg = WPA_AUTH_ALG_OPEN;
433 : 0 : ssid->key_mgmt = WPA_KEY_MGMT_NONE;
434 : 0 : ssid->proto = 0;
435 : : #ifdef CONFIG_WPS_REG_DISABLE_OPEN
436 : : if (registrar) {
437 : : wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_OPEN_NETWORK
438 : : "id=%d - Credentials for an open "
439 : : "network disabled by default - use "
440 : : "'select_network %d' to enable",
441 : : ssid->id, ssid->id);
442 : : ssid->disabled = 1;
443 : : }
444 : : #endif /* CONFIG_WPS_REG_DISABLE_OPEN */
445 : 0 : break;
446 : : case WPS_AUTH_SHARED:
447 : 0 : ssid->auth_alg = WPA_AUTH_ALG_SHARED;
448 : 0 : ssid->key_mgmt = WPA_KEY_MGMT_NONE;
449 : 0 : ssid->proto = 0;
450 : 0 : break;
451 : : case WPS_AUTH_WPAPSK:
452 : 1 : ssid->auth_alg = WPA_AUTH_ALG_OPEN;
453 : 1 : ssid->key_mgmt = WPA_KEY_MGMT_PSK;
454 : 1 : ssid->proto = WPA_PROTO_WPA;
455 : 1 : break;
456 : : case WPS_AUTH_WPA2PSK:
457 : 125 : ssid->auth_alg = WPA_AUTH_ALG_OPEN;
458 : 125 : ssid->key_mgmt = WPA_KEY_MGMT_PSK;
459 : 125 : ssid->proto = WPA_PROTO_RSN;
460 : 125 : break;
461 : : }
462 : :
463 [ + - ]: 126 : if (ssid->key_mgmt == WPA_KEY_MGMT_PSK) {
464 [ + + ]: 126 : if (cred->key_len == 2 * PMK_LEN) {
465 [ - + ]: 83 : if (hexstr2bin((const char *) cred->key, ssid->psk,
466 : : PMK_LEN)) {
467 : 0 : wpa_printf(MSG_ERROR, "WPS: Invalid Network "
468 : : "Key");
469 : 0 : return -1;
470 : : }
471 : 83 : ssid->psk_set = 1;
472 : 83 : ssid->export_keys = 1;
473 [ + - ][ + - ]: 43 : } else if (cred->key_len >= 8 && cred->key_len < 2 * PMK_LEN) {
474 : 43 : os_free(ssid->passphrase);
475 : 43 : ssid->passphrase = os_malloc(cred->key_len + 1);
476 [ - + ]: 43 : if (ssid->passphrase == NULL)
477 : 0 : return -1;
478 : 43 : os_memcpy(ssid->passphrase, cred->key, cred->key_len);
479 : 43 : ssid->passphrase[cred->key_len] = '\0';
480 : 43 : wpa_config_update_psk(ssid);
481 : 43 : ssid->export_keys = 1;
482 : : } else {
483 : 0 : wpa_printf(MSG_ERROR, "WPS: Invalid Network Key "
484 : : "length %lu",
485 : : (unsigned long) cred->key_len);
486 : 0 : return -1;
487 : : }
488 : : }
489 : :
490 : 126 : wpas_wps_security_workaround(wpa_s, ssid, cred);
491 : :
492 : 126 : wpas_wps_remove_dup_network(wpa_s, ssid);
493 : :
494 : : #ifndef CONFIG_NO_CONFIG_WRITE
495 [ - + # # ]: 126 : if (wpa_s->conf->update_config &&
496 : 0 : wpa_config_write(wpa_s->confname, wpa_s->conf)) {
497 : 0 : wpa_printf(MSG_DEBUG, "WPS: Failed to update configuration");
498 : 0 : return -1;
499 : : }
500 : : #endif /* CONFIG_NO_CONFIG_WRITE */
501 : :
502 : : /*
503 : : * Optimize the post-WPS scan based on the channel used during
504 : : * the provisioning in case EAP-Failure is not received.
505 : : */
506 : 126 : wpa_s->after_wps = 5;
507 : 126 : wpa_s->wps_freq = wpa_s->assoc_freq;
508 : :
509 : 126 : return 0;
510 : : }
511 : :
512 : :
513 : : #ifdef CONFIG_P2P
514 : 2 : static void wpas_wps_pbc_overlap_cb(void *eloop_ctx, void *timeout_ctx)
515 : : {
516 : 2 : struct wpa_supplicant *wpa_s = eloop_ctx;
517 : 2 : wpas_p2p_notif_pbc_overlap(wpa_s);
518 : 2 : }
519 : : #endif /* CONFIG_P2P */
520 : :
521 : :
522 : 13 : static void wpa_supplicant_wps_event_m2d(struct wpa_supplicant *wpa_s,
523 : : struct wps_event_m2d *m2d)
524 : : {
525 : 13 : wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_M2D
526 : : "dev_password_id=%d config_error=%d",
527 : 26 : m2d->dev_password_id, m2d->config_error);
528 : 13 : wpas_notify_wps_event_m2d(wpa_s, m2d);
529 : : #ifdef CONFIG_P2P
530 [ + - ][ - + ]: 13 : if (wpa_s->parent && wpa_s->parent != wpa_s) {
531 : 0 : wpa_msg(wpa_s->parent, MSG_INFO, WPS_EVENT_M2D
532 : : "dev_password_id=%d config_error=%d",
533 : 0 : m2d->dev_password_id, m2d->config_error);
534 : : }
535 [ + + ]: 13 : if (m2d->config_error == WPS_CFG_MULTIPLE_PBC_DETECTED) {
536 : : /*
537 : : * Notify P2P from eloop timeout to avoid issues with the
538 : : * interface getting removed while processing a message.
539 : : */
540 : 2 : eloop_register_timeout(0, 0, wpas_wps_pbc_overlap_cb, wpa_s,
541 : : NULL);
542 : : }
543 : : #endif /* CONFIG_P2P */
544 : 13 : }
545 : :
546 : :
547 : 13 : static void wpas_wps_clear_timeout(void *eloop_ctx, void *timeout_ctx)
548 : : {
549 : 13 : struct wpa_supplicant *wpa_s = eloop_ctx;
550 : 13 : wpa_printf(MSG_DEBUG, "WPS: Clear WPS network from timeout");
551 : 13 : wpas_clear_wps(wpa_s);
552 : 13 : }
553 : :
554 : :
555 : 29 : static void wpa_supplicant_wps_event_fail(struct wpa_supplicant *wpa_s,
556 : : struct wps_event_fail *fail)
557 : : {
558 [ - + ][ # # ]: 29 : if (fail->error_indication > 0 &&
559 : 0 : fail->error_indication < NUM_WPS_EI_VALUES) {
560 : 0 : wpa_msg(wpa_s, MSG_INFO,
561 : : WPS_EVENT_FAIL "msg=%d config_error=%d reason=%d (%s)",
562 : 0 : fail->msg, fail->config_error, fail->error_indication,
563 : 0 : wps_ei_str(fail->error_indication));
564 [ # # ][ # # ]: 0 : if (wpa_s->parent && wpa_s->parent != wpa_s)
565 : 0 : wpa_msg(wpa_s->parent, MSG_INFO, WPS_EVENT_FAIL
566 : : "msg=%d config_error=%d reason=%d (%s)",
567 : 0 : fail->msg, fail->config_error,
568 : 0 : fail->error_indication,
569 : 0 : wps_ei_str(fail->error_indication));
570 : : } else {
571 : 29 : wpa_msg(wpa_s, MSG_INFO,
572 : : WPS_EVENT_FAIL "msg=%d config_error=%d",
573 : 29 : fail->msg, fail->config_error);
574 [ + - ][ - + ]: 29 : if (wpa_s->parent && wpa_s->parent != wpa_s)
575 : 0 : wpa_msg(wpa_s->parent, MSG_INFO, WPS_EVENT_FAIL
576 : : "msg=%d config_error=%d",
577 : 0 : fail->msg, fail->config_error);
578 : : }
579 : :
580 : : /*
581 : : * Need to allow WPS processing to complete, e.g., by sending WSC_NACK.
582 : : */
583 : 29 : wpa_printf(MSG_DEBUG, "WPS: Register timeout to clear WPS network");
584 : 29 : eloop_cancel_timeout(wpas_wps_clear_timeout, wpa_s, NULL);
585 : 29 : eloop_register_timeout(0, 100000, wpas_wps_clear_timeout, wpa_s, NULL);
586 : :
587 : 29 : wpas_notify_wps_event_fail(wpa_s, fail);
588 : : #ifdef CONFIG_P2P
589 : 29 : wpas_p2p_wps_failed(wpa_s, fail);
590 : : #endif /* CONFIG_P2P */
591 : 29 : }
592 : :
593 : :
594 : : static void wpas_wps_reenable_networks_cb(void *eloop_ctx, void *timeout_ctx);
595 : :
596 : 1364 : static void wpas_wps_reenable_networks(struct wpa_supplicant *wpa_s)
597 : : {
598 : : struct wpa_ssid *ssid;
599 : 1364 : int changed = 0;
600 : :
601 : 1364 : eloop_cancel_timeout(wpas_wps_reenable_networks_cb, wpa_s, NULL);
602 : :
603 [ + + ]: 1694 : for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
604 [ - + ][ # # ]: 330 : if (ssid->disabled_for_connect && ssid->disabled) {
605 : 0 : ssid->disabled_for_connect = 0;
606 : 0 : ssid->disabled = 0;
607 : 0 : wpas_notify_network_enabled_changed(wpa_s, ssid);
608 : 0 : changed++;
609 : : }
610 : : }
611 : :
612 [ - + ]: 1364 : if (changed) {
613 : : #ifndef CONFIG_NO_CONFIG_WRITE
614 [ # # # # ]: 0 : if (wpa_s->conf->update_config &&
615 : 0 : wpa_config_write(wpa_s->confname, wpa_s->conf)) {
616 : 0 : wpa_printf(MSG_DEBUG, "WPS: Failed to update "
617 : : "configuration");
618 : : }
619 : : #endif /* CONFIG_NO_CONFIG_WRITE */
620 : : }
621 : 1364 : }
622 : :
623 : :
624 : 4 : static void wpas_wps_reenable_networks_cb(void *eloop_ctx, void *timeout_ctx)
625 : : {
626 : 4 : struct wpa_supplicant *wpa_s = eloop_ctx;
627 : : /* Enable the networks disabled during wpas_wps_reassoc */
628 : 4 : wpas_wps_reenable_networks(wpa_s);
629 : 4 : }
630 : :
631 : :
632 : 117 : static void wpa_supplicant_wps_event_success(struct wpa_supplicant *wpa_s)
633 : : {
634 : 117 : wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_SUCCESS);
635 : 117 : wpa_s->wps_success = 1;
636 : 117 : wpas_notify_wps_event_success(wpa_s);
637 [ + - ]: 117 : if (wpa_s->current_ssid)
638 : 117 : wpas_clear_temp_disabled(wpa_s, wpa_s->current_ssid, 1);
639 : 117 : wpa_s->extra_blacklist_count = 0;
640 : :
641 : : /*
642 : : * Enable the networks disabled during wpas_wps_reassoc after 10
643 : : * seconds. The 10 seconds timer is to allow the data connection to be
644 : : * formed before allowing other networks to be selected.
645 : : */
646 : 117 : eloop_register_timeout(10, 0, wpas_wps_reenable_networks_cb, wpa_s,
647 : : NULL);
648 : :
649 : : #ifdef CONFIG_P2P
650 : 117 : wpas_p2p_wps_success(wpa_s, wpa_s->bssid, 0);
651 : : #endif /* CONFIG_P2P */
652 : 117 : }
653 : :
654 : :
655 : 9 : static void wpa_supplicant_wps_event_er_ap_add(struct wpa_supplicant *wpa_s,
656 : : struct wps_event_er_ap *ap)
657 : : {
658 : : char uuid_str[100];
659 : : char dev_type[WPS_DEV_TYPE_BUFSIZE];
660 : :
661 : 9 : uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str));
662 [ + - ]: 9 : if (ap->pri_dev_type)
663 : 9 : wps_dev_type_bin2str(ap->pri_dev_type, dev_type,
664 : : sizeof(dev_type));
665 : : else
666 : 0 : dev_type[0] = '\0';
667 : :
668 [ - + ][ - + ]: 9 : wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_ADD "%s " MACSTR
[ + - ][ - + ]
[ + - ][ + - ]
669 : : " pri_dev_type=%s wps_state=%d |%s|%s|%s|%s|%s|%s|",
670 : 63 : uuid_str, MAC2STR(ap->mac_addr), dev_type, ap->wps_state,
671 : 9 : ap->friendly_name ? ap->friendly_name : "",
672 : 9 : ap->manufacturer ? ap->manufacturer : "",
673 : 9 : ap->model_description ? ap->model_description : "",
674 : 9 : ap->model_name ? ap->model_name : "",
675 : 9 : ap->manufacturer_url ? ap->manufacturer_url : "",
676 : 9 : ap->model_url ? ap->model_url : "");
677 : 9 : }
678 : :
679 : :
680 : 9 : static void wpa_supplicant_wps_event_er_ap_remove(struct wpa_supplicant *wpa_s,
681 : : struct wps_event_er_ap *ap)
682 : : {
683 : : char uuid_str[100];
684 : 9 : uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str));
685 : 9 : wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_REMOVE "%s", uuid_str);
686 : 9 : }
687 : :
688 : :
689 : 26 : static void wpa_supplicant_wps_event_er_enrollee_add(
690 : : struct wpa_supplicant *wpa_s, struct wps_event_er_enrollee *enrollee)
691 : : {
692 : : char uuid_str[100];
693 : : char dev_type[WPS_DEV_TYPE_BUFSIZE];
694 : :
695 : 26 : uuid_bin2str(enrollee->uuid, uuid_str, sizeof(uuid_str));
696 [ + - ]: 26 : if (enrollee->pri_dev_type)
697 : 26 : wps_dev_type_bin2str(enrollee->pri_dev_type, dev_type,
698 : : sizeof(dev_type));
699 : : else
700 : 0 : dev_type[0] = '\0';
701 : :
702 [ + + ][ + - ]: 26 : wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_ENROLLEE_ADD "%s " MACSTR
[ + - ][ + - ]
[ + - ]
703 : : " M1=%d config_methods=0x%x dev_passwd_id=%d pri_dev_type=%s "
704 : : "|%s|%s|%s|%s|%s|",
705 : 156 : uuid_str, MAC2STR(enrollee->mac_addr), enrollee->m1_received,
706 : 52 : enrollee->config_methods, enrollee->dev_passwd_id, dev_type,
707 : 26 : enrollee->dev_name ? enrollee->dev_name : "",
708 : 26 : enrollee->manufacturer ? enrollee->manufacturer : "",
709 : 26 : enrollee->model_name ? enrollee->model_name : "",
710 : 26 : enrollee->model_number ? enrollee->model_number : "",
711 : 26 : enrollee->serial_number ? enrollee->serial_number : "");
712 : 26 : }
713 : :
714 : :
715 : 18 : static void wpa_supplicant_wps_event_er_enrollee_remove(
716 : : struct wpa_supplicant *wpa_s, struct wps_event_er_enrollee *enrollee)
717 : : {
718 : : char uuid_str[100];
719 : 18 : uuid_bin2str(enrollee->uuid, uuid_str, sizeof(uuid_str));
720 : 18 : wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_ENROLLEE_REMOVE "%s " MACSTR,
721 : 108 : uuid_str, MAC2STR(enrollee->mac_addr));
722 : 18 : }
723 : :
724 : :
725 : 1 : static void wpa_supplicant_wps_event_er_ap_settings(
726 : : struct wpa_supplicant *wpa_s,
727 : : struct wps_event_er_ap_settings *ap_settings)
728 : : {
729 : : char uuid_str[100];
730 : : char key_str[65];
731 : 1 : const struct wps_credential *cred = ap_settings->cred;
732 : :
733 : 1 : key_str[0] = '\0';
734 [ + - ]: 1 : if (cred->auth_type & (WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK)) {
735 [ + - ][ + - ]: 1 : if (cred->key_len >= 8 && cred->key_len <= 64) {
736 : 1 : os_memcpy(key_str, cred->key, cred->key_len);
737 : 1 : key_str[cred->key_len] = '\0';
738 : : }
739 : : }
740 : :
741 : 1 : uuid_bin2str(ap_settings->uuid, uuid_str, sizeof(uuid_str));
742 : : /* Use wpa_msg_ctrl to avoid showing the key in debug log */
743 : 1 : wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_SETTINGS
744 : : "uuid=%s ssid=%s auth_type=0x%04x encr_type=0x%04x "
745 : : "key=%s",
746 : 1 : uuid_str, wpa_ssid_txt(cred->ssid, cred->ssid_len),
747 : 2 : cred->auth_type, cred->encr_type, key_str);
748 : 1 : }
749 : :
750 : :
751 : 43 : static void wpa_supplicant_wps_event_er_set_sel_reg(
752 : : struct wpa_supplicant *wpa_s,
753 : : struct wps_event_er_set_selected_registrar *ev)
754 : : {
755 : : char uuid_str[100];
756 : :
757 : 43 : uuid_bin2str(ev->uuid, uuid_str, sizeof(uuid_str));
758 [ + + - - ]: 43 : switch (ev->state) {
759 : : case WPS_ER_SET_SEL_REG_START:
760 : 26 : wpa_msg(wpa_s, MSG_DEBUG, WPS_EVENT_ER_SET_SEL_REG
761 : : "uuid=%s state=START sel_reg=%d dev_passwd_id=%u "
762 : : "sel_reg_config_methods=0x%x",
763 : 26 : uuid_str, ev->sel_reg, ev->dev_passwd_id,
764 : 26 : ev->sel_reg_config_methods);
765 : 26 : break;
766 : : case WPS_ER_SET_SEL_REG_DONE:
767 : 17 : wpa_msg(wpa_s, MSG_DEBUG, WPS_EVENT_ER_SET_SEL_REG
768 : : "uuid=%s state=DONE", uuid_str);
769 : 17 : break;
770 : : case WPS_ER_SET_SEL_REG_FAILED:
771 : 0 : wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_SET_SEL_REG
772 : : "uuid=%s state=FAILED", uuid_str);
773 : 0 : break;
774 : : }
775 : 43 : }
776 : :
777 : :
778 : 270 : static void wpa_supplicant_wps_event(void *ctx, enum wps_event event,
779 : : union wps_event_data *data)
780 : : {
781 : 270 : struct wpa_supplicant *wpa_s = ctx;
782 [ + + + + : 270 : switch (event) {
- - + + +
+ + + + +
- - ]
783 : : case WPS_EV_M2D:
784 : 13 : wpa_supplicant_wps_event_m2d(wpa_s, &data->m2d);
785 : 13 : break;
786 : : case WPS_EV_FAIL:
787 : 29 : wpa_supplicant_wps_event_fail(wpa_s, &data->fail);
788 : 29 : break;
789 : : case WPS_EV_SUCCESS:
790 : 117 : wpa_supplicant_wps_event_success(wpa_s);
791 : 117 : break;
792 : : case WPS_EV_PWD_AUTH_FAIL:
793 : : #ifdef CONFIG_AP
794 [ - + ][ # # ]: 3 : if (wpa_s->ap_iface && data->pwd_auth_fail.enrollee)
795 : 0 : wpa_supplicant_ap_pwd_auth_fail(wpa_s);
796 : : #endif /* CONFIG_AP */
797 : 3 : break;
798 : : case WPS_EV_PBC_OVERLAP:
799 : 0 : break;
800 : : case WPS_EV_PBC_TIMEOUT:
801 : 0 : break;
802 : : case WPS_EV_PBC_ACTIVE:
803 : 1 : wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ACTIVE);
804 : 1 : break;
805 : : case WPS_EV_PBC_DISABLE:
806 : 1 : wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_DISABLE);
807 : 1 : break;
808 : : case WPS_EV_ER_AP_ADD:
809 : 9 : wpa_supplicant_wps_event_er_ap_add(wpa_s, &data->ap);
810 : 9 : break;
811 : : case WPS_EV_ER_AP_REMOVE:
812 : 9 : wpa_supplicant_wps_event_er_ap_remove(wpa_s, &data->ap);
813 : 9 : break;
814 : : case WPS_EV_ER_ENROLLEE_ADD:
815 : 26 : wpa_supplicant_wps_event_er_enrollee_add(wpa_s,
816 : : &data->enrollee);
817 : 26 : break;
818 : : case WPS_EV_ER_ENROLLEE_REMOVE:
819 : 18 : wpa_supplicant_wps_event_er_enrollee_remove(wpa_s,
820 : : &data->enrollee);
821 : 18 : break;
822 : : case WPS_EV_ER_AP_SETTINGS:
823 : 1 : wpa_supplicant_wps_event_er_ap_settings(wpa_s,
824 : : &data->ap_settings);
825 : 1 : break;
826 : : case WPS_EV_ER_SET_SELECTED_REGISTRAR:
827 : 43 : wpa_supplicant_wps_event_er_set_sel_reg(wpa_s,
828 : : &data->set_sel_reg);
829 : 43 : break;
830 : : case WPS_EV_AP_PIN_SUCCESS:
831 : 0 : break;
832 : : }
833 : 270 : }
834 : :
835 : :
836 : 154 : static int wpa_supplicant_wps_rf_band(void *ctx)
837 : : {
838 : 154 : struct wpa_supplicant *wpa_s = ctx;
839 : :
840 [ + - ][ - + ]: 154 : if (!wpa_s->current_ssid || !wpa_s->assoc_freq)
841 : 0 : return 0;
842 : :
843 [ - + ]: 154 : return (wpa_s->assoc_freq > 2484) ? WPS_RF_50GHZ : WPS_RF_24GHZ;
844 : : }
845 : :
846 : :
847 : 329 : enum wps_request_type wpas_wps_get_req_type(struct wpa_ssid *ssid)
848 : : {
849 [ + + + + ]: 621 : if (eap_is_wps_pbc_enrollee(&ssid->eap) ||
850 : 292 : eap_is_wps_pin_enrollee(&ssid->eap))
851 : 241 : return WPS_REQ_ENROLLEE;
852 : : else
853 : 329 : return WPS_REQ_REGISTRAR;
854 : : }
855 : :
856 : :
857 : 940 : static void wpas_clear_wps(struct wpa_supplicant *wpa_s)
858 : : {
859 : : int id;
860 : 940 : struct wpa_ssid *ssid, *remove_ssid = NULL, *prev_current;
861 : :
862 : 940 : wpa_s->after_wps = 0;
863 : 940 : wpa_s->known_wps_freq = 0;
864 : :
865 : 940 : prev_current = wpa_s->current_ssid;
866 : :
867 : : /* Enable the networks disabled during wpas_wps_reassoc */
868 : 940 : wpas_wps_reenable_networks(wpa_s);
869 : :
870 : 940 : eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
871 : 940 : eloop_cancel_timeout(wpas_wps_clear_timeout, wpa_s, NULL);
872 : :
873 : : /* Remove any existing WPS network from configuration */
874 : 940 : ssid = wpa_s->conf->ssid;
875 [ + + ]: 1265 : while (ssid) {
876 [ + + ]: 325 : if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) {
877 [ + + ]: 23 : if (ssid == wpa_s->current_ssid) {
878 : 18 : wpa_supplicant_deauthenticate(
879 : : wpa_s, WLAN_REASON_DEAUTH_LEAVING);
880 : : }
881 : 23 : id = ssid->id;
882 : 23 : remove_ssid = ssid;
883 : : } else
884 : 302 : id = -1;
885 : 325 : ssid = ssid->next;
886 [ + + ]: 325 : if (id >= 0) {
887 [ + + ]: 23 : if (prev_current == remove_ssid) {
888 : 18 : wpa_sm_set_config(wpa_s->wpa, NULL);
889 : 18 : eapol_sm_notify_config(wpa_s->eapol, NULL,
890 : : NULL);
891 : : }
892 : 23 : wpas_notify_network_removed(wpa_s, remove_ssid);
893 : 23 : wpa_config_remove_network(wpa_s->conf, id);
894 : : }
895 : : }
896 : :
897 : 940 : wpas_wps_clear_ap_info(wpa_s);
898 : 940 : }
899 : :
900 : :
901 : 0 : static void wpas_wps_timeout(void *eloop_ctx, void *timeout_ctx)
902 : : {
903 : 0 : struct wpa_supplicant *wpa_s = eloop_ctx;
904 : 0 : wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_TIMEOUT "Requested operation timed "
905 : : "out");
906 : 0 : wpas_clear_wps(wpa_s);
907 : 0 : }
908 : :
909 : :
910 : 145 : static struct wpa_ssid * wpas_wps_add_network(struct wpa_supplicant *wpa_s,
911 : : int registrar, const u8 *dev_addr,
912 : : const u8 *bssid)
913 : : {
914 : : struct wpa_ssid *ssid;
915 : :
916 : 145 : ssid = wpa_config_add_network(wpa_s->conf);
917 [ - + ]: 145 : if (ssid == NULL)
918 : 0 : return NULL;
919 : 145 : wpas_notify_network_added(wpa_s, ssid);
920 : 145 : wpa_config_set_network_defaults(ssid);
921 : 145 : ssid->temporary = 1;
922 [ + - + - ]: 290 : if (wpa_config_set(ssid, "key_mgmt", "WPS", 0) < 0 ||
923 [ - + ]: 290 : wpa_config_set(ssid, "eap", "WSC", 0) < 0 ||
924 [ + + ]: 145 : wpa_config_set(ssid, "identity", registrar ?
925 : : "\"" WSC_ID_REGISTRAR "\"" :
926 : : "\"" WSC_ID_ENROLLEE "\"", 0) < 0) {
927 : 0 : wpas_notify_network_removed(wpa_s, ssid);
928 : 0 : wpa_config_remove_network(wpa_s->conf, ssid->id);
929 : 0 : return NULL;
930 : : }
931 : :
932 : : #ifdef CONFIG_P2P
933 [ + + ]: 145 : if (dev_addr)
934 : 12 : os_memcpy(ssid->go_p2p_dev_addr, dev_addr, ETH_ALEN);
935 : : #endif /* CONFIG_P2P */
936 : :
937 [ + + ]: 145 : if (bssid) {
938 : : #ifndef CONFIG_P2P
939 : : struct wpa_bss *bss;
940 : : int count = 0;
941 : : #endif /* CONFIG_P2P */
942 : :
943 : 110 : os_memcpy(ssid->bssid, bssid, ETH_ALEN);
944 : 110 : ssid->bssid_set = 1;
945 : :
946 : : /*
947 : : * Note: With P2P, the SSID may change at the time the WPS
948 : : * provisioning is started, so better not filter the AP based
949 : : * on the current SSID in the scan results.
950 : : */
951 : : #ifndef CONFIG_P2P
952 : : dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
953 : : if (os_memcmp(bssid, bss->bssid, ETH_ALEN) != 0)
954 : : continue;
955 : :
956 : : os_free(ssid->ssid);
957 : : ssid->ssid = os_malloc(bss->ssid_len);
958 : : if (ssid->ssid == NULL)
959 : : break;
960 : : os_memcpy(ssid->ssid, bss->ssid, bss->ssid_len);
961 : : ssid->ssid_len = bss->ssid_len;
962 : : wpa_hexdump_ascii(MSG_DEBUG, "WPS: Picked SSID from "
963 : : "scan results",
964 : : ssid->ssid, ssid->ssid_len);
965 : : count++;
966 : : }
967 : :
968 : : if (count > 1) {
969 : : wpa_printf(MSG_DEBUG, "WPS: More than one SSID found "
970 : : "for the AP; use wildcard");
971 : : os_free(ssid->ssid);
972 : : ssid->ssid = NULL;
973 : : ssid->ssid_len = 0;
974 : : }
975 : : #endif /* CONFIG_P2P */
976 : : }
977 : :
978 : 145 : return ssid;
979 : : }
980 : :
981 : :
982 : 149 : static void wpas_wps_temp_disable(struct wpa_supplicant *wpa_s,
983 : : struct wpa_ssid *selected)
984 : : {
985 : : struct wpa_ssid *ssid;
986 : :
987 [ - + ]: 149 : if (wpa_s->current_ssid)
988 : 0 : wpa_supplicant_deauthenticate(
989 : : wpa_s, WLAN_REASON_DEAUTH_LEAVING);
990 : :
991 : : /* Mark all other networks disabled and trigger reassociation */
992 : 149 : ssid = wpa_s->conf->ssid;
993 [ + + ]: 295 : while (ssid) {
994 : 146 : int was_disabled = ssid->disabled;
995 : 146 : ssid->disabled_for_connect = 0;
996 : : /*
997 : : * In case the network object corresponds to a persistent group
998 : : * then do not send out network disabled signal. In addition,
999 : : * do not change disabled status of persistent network objects
1000 : : * from 2 to 1 should we connect to another network.
1001 : : */
1002 [ + - ]: 146 : if (was_disabled != 2) {
1003 : 146 : ssid->disabled = ssid != selected;
1004 [ + + ]: 146 : if (was_disabled != ssid->disabled) {
1005 [ + - ]: 1 : if (ssid->disabled)
1006 : 1 : ssid->disabled_for_connect = 1;
1007 : 1 : wpas_notify_network_enabled_changed(wpa_s,
1008 : : ssid);
1009 : : }
1010 : : }
1011 : 146 : ssid = ssid->next;
1012 : : }
1013 : 149 : }
1014 : :
1015 : :
1016 : 145 : static void wpas_wps_reassoc(struct wpa_supplicant *wpa_s,
1017 : : struct wpa_ssid *selected, const u8 *bssid,
1018 : : int freq)
1019 : : {
1020 : : struct wpa_bss *bss;
1021 : :
1022 : 145 : wpa_s->after_wps = 0;
1023 : 145 : wpa_s->known_wps_freq = 0;
1024 [ + + ]: 145 : if (freq) {
1025 : 6 : wpa_s->after_wps = 5;
1026 : 6 : wpa_s->wps_freq = freq;
1027 [ + + ]: 139 : } else if (bssid) {
1028 : 104 : bss = wpa_bss_get_bssid_latest(wpa_s, bssid);
1029 [ + + ][ + - ]: 104 : if (bss && bss->freq > 0) {
1030 : 53 : wpa_s->known_wps_freq = 1;
1031 : 53 : wpa_s->wps_freq = bss->freq;
1032 : : }
1033 : : }
1034 : :
1035 : 145 : wpas_wps_temp_disable(wpa_s, selected);
1036 : :
1037 : 145 : wpa_s->disconnected = 0;
1038 : 145 : wpa_s->reassociate = 1;
1039 : 145 : wpa_s->scan_runs = 0;
1040 : 145 : wpa_s->normal_scans = 0;
1041 : 145 : wpa_s->wps_success = 0;
1042 : 145 : wpa_s->blacklist_cleared = 0;
1043 : :
1044 : 145 : wpa_supplicant_cancel_sched_scan(wpa_s);
1045 : 145 : wpa_supplicant_req_scan(wpa_s, 0, 0);
1046 : 145 : }
1047 : :
1048 : :
1049 : 18 : int wpas_wps_start_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid,
1050 : : int p2p_group)
1051 : : {
1052 : : struct wpa_ssid *ssid;
1053 : 18 : wpas_clear_wps(wpa_s);
1054 : 18 : ssid = wpas_wps_add_network(wpa_s, 0, NULL, bssid);
1055 [ - + ]: 18 : if (ssid == NULL)
1056 : 0 : return -1;
1057 : 18 : ssid->temporary = 1;
1058 : 18 : ssid->p2p_group = p2p_group;
1059 : : #ifdef CONFIG_P2P
1060 [ + + ][ + - ]: 18 : if (p2p_group && wpa_s->go_params && wpa_s->go_params->ssid_len) {
[ + - ]
1061 : 3 : ssid->ssid = os_zalloc(wpa_s->go_params->ssid_len + 1);
1062 [ + - ]: 3 : if (ssid->ssid) {
1063 : 3 : ssid->ssid_len = wpa_s->go_params->ssid_len;
1064 : 3 : os_memcpy(ssid->ssid, wpa_s->go_params->ssid,
1065 : : ssid->ssid_len);
1066 : 3 : wpa_hexdump_ascii(MSG_DEBUG, "WPS: Use specific AP "
1067 : 3 : "SSID", ssid->ssid, ssid->ssid_len);
1068 : : }
1069 : : }
1070 : : #endif /* CONFIG_P2P */
1071 [ - + ]: 18 : if (wpa_config_set(ssid, "phase1", "\"pbc=1\"", 0) < 0)
1072 : 0 : return -1;
1073 [ + + ]: 18 : if (wpa_s->wps_fragment_size)
1074 : 1 : ssid->eap.fragment_size = wpa_s->wps_fragment_size;
1075 : 18 : eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
1076 : : wpa_s, NULL);
1077 : 18 : wpas_wps_reassoc(wpa_s, ssid, bssid, 0);
1078 : 18 : return 0;
1079 : : }
1080 : :
1081 : :
1082 : 99 : static int wpas_wps_start_dev_pw(struct wpa_supplicant *wpa_s,
1083 : : const u8 *dev_addr, const u8 *bssid,
1084 : : const char *pin, int p2p_group, u16 dev_pw_id,
1085 : : const u8 *peer_pubkey_hash,
1086 : : const u8 *ssid_val, size_t ssid_len, int freq)
1087 : : {
1088 : : struct wpa_ssid *ssid;
1089 : : char val[128 + 2 * WPS_OOB_PUBKEY_HASH_LEN];
1090 : 99 : unsigned int rpin = 0;
1091 : : char hash[2 * WPS_OOB_PUBKEY_HASH_LEN + 10];
1092 : :
1093 : 99 : wpas_clear_wps(wpa_s);
1094 [ + + ][ + + ]: 99 : if (bssid && is_zero_ether_addr(bssid))
1095 : 4 : bssid = NULL;
1096 : 99 : ssid = wpas_wps_add_network(wpa_s, 0, dev_addr, bssid);
1097 [ - + ]: 99 : if (ssid == NULL) {
1098 : 0 : wpa_printf(MSG_DEBUG, "WPS: Could not add network");
1099 : 0 : return -1;
1100 : : }
1101 : 99 : ssid->temporary = 1;
1102 : 99 : ssid->p2p_group = p2p_group;
1103 [ + + ]: 99 : if (ssid_val) {
1104 : 9 : ssid->ssid = os_malloc(ssid_len);
1105 [ + - ]: 9 : if (ssid->ssid) {
1106 : 9 : os_memcpy(ssid->ssid, ssid_val, ssid_len);
1107 : 9 : ssid->ssid_len = ssid_len;
1108 : : }
1109 : : }
1110 [ + + ]: 99 : if (peer_pubkey_hash) {
1111 : 15 : os_memcpy(hash, " pkhash=", 8);
1112 : 15 : wpa_snprintf_hex_uppercase(hash + 8, sizeof(hash) - 8,
1113 : : peer_pubkey_hash,
1114 : : WPS_OOB_PUBKEY_HASH_LEN);
1115 : : } else {
1116 : 84 : hash[0] = '\0';
1117 : : }
1118 : : #ifdef CONFIG_P2P
1119 [ + + ][ + - ]: 99 : if (p2p_group && wpa_s->go_params && wpa_s->go_params->ssid_len) {
[ + - ]
1120 : 74 : ssid->ssid = os_zalloc(wpa_s->go_params->ssid_len + 1);
1121 [ + - ]: 74 : if (ssid->ssid) {
1122 : 74 : ssid->ssid_len = wpa_s->go_params->ssid_len;
1123 : 74 : os_memcpy(ssid->ssid, wpa_s->go_params->ssid,
1124 : : ssid->ssid_len);
1125 : 74 : wpa_hexdump_ascii(MSG_DEBUG, "WPS: Use specific AP "
1126 : 74 : "SSID", ssid->ssid, ssid->ssid_len);
1127 : : }
1128 : : }
1129 : : #endif /* CONFIG_P2P */
1130 [ + + ]: 99 : if (pin)
1131 : 84 : os_snprintf(val, sizeof(val), "\"pin=%s dev_pw_id=%u%s\"",
1132 : : pin, dev_pw_id, hash);
1133 [ + - ][ + - ]: 15 : else if (pin == NULL && dev_pw_id == DEV_PW_NFC_CONNECTION_HANDOVER) {
1134 : 15 : os_snprintf(val, sizeof(val), "\"dev_pw_id=%u%s\"",
1135 : : dev_pw_id, hash);
1136 : : } else {
1137 : 0 : rpin = wps_generate_pin();
1138 : 0 : os_snprintf(val, sizeof(val), "\"pin=%08d dev_pw_id=%u%s\"",
1139 : : rpin, dev_pw_id, hash);
1140 : : }
1141 [ - + ]: 99 : if (wpa_config_set(ssid, "phase1", val, 0) < 0) {
1142 : 0 : wpa_printf(MSG_DEBUG, "WPS: Failed to set phase1 '%s'", val);
1143 : 0 : return -1;
1144 : : }
1145 [ - + ]: 99 : if (wpa_s->wps_fragment_size)
1146 : 0 : ssid->eap.fragment_size = wpa_s->wps_fragment_size;
1147 : 99 : eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
1148 : : wpa_s, NULL);
1149 : 99 : wpa_s->wps_ap_iter = 1;
1150 : 99 : wpas_wps_reassoc(wpa_s, ssid, bssid, freq);
1151 : 99 : return rpin;
1152 : : }
1153 : :
1154 : :
1155 : 75 : int wpas_wps_start_pin(struct wpa_supplicant *wpa_s, const u8 *bssid,
1156 : : const char *pin, int p2p_group, u16 dev_pw_id)
1157 : : {
1158 : 75 : return wpas_wps_start_dev_pw(wpa_s, NULL, bssid, pin, p2p_group,
1159 : : dev_pw_id, NULL, NULL, 0, 0);
1160 : : }
1161 : :
1162 : :
1163 : : /* Cancel the wps pbc/pin requests */
1164 : 1191 : int wpas_wps_cancel(struct wpa_supplicant *wpa_s)
1165 : : {
1166 : : #ifdef CONFIG_AP
1167 [ + + ]: 1191 : if (wpa_s->ap_iface) {
1168 : 6 : wpa_printf(MSG_DEBUG, "WPS: Cancelling in AP mode");
1169 : 6 : return wpa_supplicant_ap_wps_cancel(wpa_s);
1170 : : }
1171 : : #endif /* CONFIG_AP */
1172 : :
1173 [ + + ][ + + ]: 1185 : if (wpa_s->wpa_state == WPA_SCANNING ||
1174 : 1160 : wpa_s->wpa_state == WPA_DISCONNECTED) {
1175 : 537 : wpa_printf(MSG_DEBUG, "WPS: Cancel operation - cancel scan");
1176 : 537 : wpa_supplicant_cancel_scan(wpa_s);
1177 : 537 : wpas_clear_wps(wpa_s);
1178 [ + + ]: 648 : } else if (wpa_s->wpa_state >= WPA_ASSOCIATED) {
1179 : 228 : wpa_printf(MSG_DEBUG, "WPS: Cancel operation - "
1180 : : "deauthenticate");
1181 : 228 : wpa_supplicant_deauthenticate(wpa_s,
1182 : : WLAN_REASON_DEAUTH_LEAVING);
1183 : 228 : wpas_clear_wps(wpa_s);
1184 : : } else {
1185 : 420 : wpas_wps_reenable_networks(wpa_s);
1186 : 420 : wpas_wps_clear_ap_info(wpa_s);
1187 [ - + ]: 420 : if (eloop_cancel_timeout(wpas_wps_clear_timeout, wpa_s, NULL) >
1188 : : 0)
1189 : 0 : wpas_clear_wps(wpa_s);
1190 : : }
1191 : :
1192 : 1185 : wpa_s->after_wps = 0;
1193 : :
1194 : 1191 : return 0;
1195 : : }
1196 : :
1197 : :
1198 : 28 : int wpas_wps_start_reg(struct wpa_supplicant *wpa_s, const u8 *bssid,
1199 : : const char *pin, struct wps_new_ap_settings *settings)
1200 : : {
1201 : : struct wpa_ssid *ssid;
1202 : : char val[200];
1203 : : char *pos, *end;
1204 : : int res;
1205 : :
1206 [ - + ]: 28 : if (!pin)
1207 : 0 : return -1;
1208 : 28 : wpas_clear_wps(wpa_s);
1209 : 28 : ssid = wpas_wps_add_network(wpa_s, 1, NULL, bssid);
1210 [ - + ]: 28 : if (ssid == NULL)
1211 : 0 : return -1;
1212 : 28 : ssid->temporary = 1;
1213 : 28 : pos = val;
1214 : 28 : end = pos + sizeof(val);
1215 : 28 : res = os_snprintf(pos, end - pos, "\"pin=%s", pin);
1216 [ + - ][ - + ]: 28 : if (res < 0 || res >= end - pos)
1217 : 0 : return -1;
1218 : 28 : pos += res;
1219 [ + + ]: 28 : if (settings) {
1220 : 10 : res = os_snprintf(pos, end - pos, " new_ssid=%s new_auth=%s "
1221 : : "new_encr=%s new_key=%s",
1222 : : settings->ssid_hex, settings->auth,
1223 : : settings->encr, settings->key_hex);
1224 [ + - ][ - + ]: 10 : if (res < 0 || res >= end - pos)
1225 : 0 : return -1;
1226 : 10 : pos += res;
1227 : : }
1228 : 28 : res = os_snprintf(pos, end - pos, "\"");
1229 [ + - ][ - + ]: 28 : if (res < 0 || res >= end - pos)
1230 : 0 : return -1;
1231 [ - + ]: 28 : if (wpa_config_set(ssid, "phase1", val, 0) < 0)
1232 : 0 : return -1;
1233 [ - + ]: 28 : if (wpa_s->wps_fragment_size)
1234 : 0 : ssid->eap.fragment_size = wpa_s->wps_fragment_size;
1235 : 28 : eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
1236 : : wpa_s, NULL);
1237 : 28 : wpas_wps_reassoc(wpa_s, ssid, bssid, 0);
1238 : 28 : return 0;
1239 : : }
1240 : :
1241 : :
1242 : 0 : static int wpas_wps_new_psk_cb(void *ctx, const u8 *mac_addr,
1243 : : const u8 *p2p_dev_addr, const u8 *psk,
1244 : : size_t psk_len)
1245 : : {
1246 [ # # ]: 0 : if (is_zero_ether_addr(p2p_dev_addr)) {
1247 : 0 : wpa_printf(MSG_DEBUG,
1248 : : "Received new WPA/WPA2-PSK from WPS for STA " MACSTR,
1249 : 0 : MAC2STR(mac_addr));
1250 : : } else {
1251 : 0 : wpa_printf(MSG_DEBUG,
1252 : : "Received new WPA/WPA2-PSK from WPS for STA " MACSTR
1253 : : " P2P Device Addr " MACSTR,
1254 : 0 : MAC2STR(mac_addr), MAC2STR(p2p_dev_addr));
1255 : : }
1256 : 0 : wpa_hexdump_key(MSG_DEBUG, "Per-device PSK", psk, psk_len);
1257 : :
1258 : : /* TODO */
1259 : :
1260 : 0 : return 0;
1261 : : }
1262 : :
1263 : :
1264 : 0 : static void wpas_wps_pin_needed_cb(void *ctx, const u8 *uuid_e,
1265 : : const struct wps_device_data *dev)
1266 : : {
1267 : : char uuid[40], txt[400];
1268 : : int len;
1269 : : char devtype[WPS_DEV_TYPE_BUFSIZE];
1270 [ # # ]: 0 : if (uuid_bin2str(uuid_e, uuid, sizeof(uuid)))
1271 : 0 : return;
1272 : 0 : wpa_printf(MSG_DEBUG, "WPS: PIN needed for UUID-E %s", uuid);
1273 : 0 : len = os_snprintf(txt, sizeof(txt), "WPS-EVENT-PIN-NEEDED %s " MACSTR
1274 : : " [%s|%s|%s|%s|%s|%s]",
1275 : 0 : uuid, MAC2STR(dev->mac_addr), dev->device_name,
1276 : : dev->manufacturer, dev->model_name,
1277 : : dev->model_number, dev->serial_number,
1278 : 0 : wps_dev_type_bin2str(dev->pri_dev_type, devtype,
1279 : : sizeof(devtype)));
1280 [ # # ][ # # ]: 0 : if (len > 0 && len < (int) sizeof(txt))
1281 : 0 : wpa_printf(MSG_INFO, "%s", txt);
1282 : : }
1283 : :
1284 : :
1285 : 93 : static void wpas_wps_set_sel_reg_cb(void *ctx, int sel_reg, u16 dev_passwd_id,
1286 : : u16 sel_reg_config_methods)
1287 : : {
1288 : : #ifdef CONFIG_WPS_ER
1289 : 93 : struct wpa_supplicant *wpa_s = ctx;
1290 : :
1291 [ + + ]: 93 : if (wpa_s->wps_er == NULL)
1292 : 93 : return;
1293 : 28 : wpa_printf(MSG_DEBUG, "WPS ER: SetSelectedRegistrar - sel_reg=%d "
1294 : : "dev_password_id=%u sel_reg_config_methods=0x%x",
1295 : : sel_reg, dev_passwd_id, sel_reg_config_methods);
1296 : 28 : wps_er_set_sel_reg(wpa_s->wps_er, sel_reg, dev_passwd_id,
1297 : : sel_reg_config_methods);
1298 : : #endif /* CONFIG_WPS_ER */
1299 : : }
1300 : :
1301 : :
1302 : 10851 : static u16 wps_fix_config_methods(u16 config_methods)
1303 : : {
1304 : : #ifdef CONFIG_WPS2
1305 [ - + ]: 10851 : if ((config_methods &
1306 : : (WPS_CONFIG_DISPLAY | WPS_CONFIG_VIRT_DISPLAY |
1307 : : WPS_CONFIG_PHY_DISPLAY)) == WPS_CONFIG_DISPLAY) {
1308 : 0 : wpa_printf(MSG_INFO, "WPS: Converting display to "
1309 : : "virtual_display for WPS 2.0 compliance");
1310 : 0 : config_methods |= WPS_CONFIG_VIRT_DISPLAY;
1311 : : }
1312 [ - + ]: 10851 : if ((config_methods &
1313 : : (WPS_CONFIG_PUSHBUTTON | WPS_CONFIG_VIRT_PUSHBUTTON |
1314 : : WPS_CONFIG_PHY_PUSHBUTTON)) == WPS_CONFIG_PUSHBUTTON) {
1315 : 0 : wpa_printf(MSG_INFO, "WPS: Converting push_button to "
1316 : : "virtual_push_button for WPS 2.0 compliance");
1317 : 0 : config_methods |= WPS_CONFIG_VIRT_PUSHBUTTON;
1318 : : }
1319 : : #endif /* CONFIG_WPS2 */
1320 : :
1321 : 10851 : return config_methods;
1322 : : }
1323 : :
1324 : :
1325 : 39 : static void wpas_wps_set_uuid(struct wpa_supplicant *wpa_s,
1326 : : struct wps_context *wps)
1327 : : {
1328 : : char buf[50];
1329 : : const char *src;
1330 : :
1331 [ + - ]: 39 : if (is_nil_uuid(wpa_s->conf->uuid)) {
1332 : : struct wpa_supplicant *first;
1333 : 39 : first = wpa_s->global->ifaces;
1334 [ + + ][ - + ]: 39 : while (first && first->next)
1335 : 0 : first = first->next;
1336 [ + + ][ + - ]: 39 : if (first && first != wpa_s) {
1337 [ + - ]: 24 : if (wps != wpa_s->global->ifaces->wps)
1338 : 24 : os_memcpy(wps->uuid,
1339 : : wpa_s->global->ifaces->wps->uuid,
1340 : : WPS_UUID_LEN);
1341 : 24 : src = "from the first interface";
1342 : : } else {
1343 : 15 : uuid_gen_mac_addr(wpa_s->own_addr, wps->uuid);
1344 : 39 : src = "based on MAC address";
1345 : : }
1346 : : } else {
1347 : 0 : os_memcpy(wps->uuid, wpa_s->conf->uuid, WPS_UUID_LEN);
1348 : 0 : src = "based on configuration";
1349 : : }
1350 : :
1351 : 39 : uuid_bin2str(wps->uuid, buf, sizeof(buf));
1352 : 39 : wpa_dbg(wpa_s, MSG_DEBUG, "WPS: UUID %s: %s", src, buf);
1353 : 39 : }
1354 : :
1355 : :
1356 : 40 : static void wpas_wps_set_vendor_ext_m1(struct wpa_supplicant *wpa_s,
1357 : : struct wps_context *wps)
1358 : : {
1359 : 40 : wpabuf_free(wps->dev.vendor_ext_m1);
1360 : 40 : wps->dev.vendor_ext_m1 = NULL;
1361 : :
1362 [ + + ]: 40 : if (wpa_s->conf->wps_vendor_ext_m1) {
1363 : 1 : wps->dev.vendor_ext_m1 =
1364 : 1 : wpabuf_dup(wpa_s->conf->wps_vendor_ext_m1);
1365 [ - + ]: 1 : if (!wps->dev.vendor_ext_m1) {
1366 : 0 : wpa_printf(MSG_ERROR, "WPS: Cannot "
1367 : : "allocate memory for vendor_ext_m1");
1368 : : }
1369 : : }
1370 : 40 : }
1371 : :
1372 : :
1373 : 39 : int wpas_wps_init(struct wpa_supplicant *wpa_s)
1374 : : {
1375 : : struct wps_context *wps;
1376 : : struct wps_registrar_config rcfg;
1377 : : struct hostapd_hw_modes *modes;
1378 : : u16 m;
1379 : :
1380 : 39 : wps = os_zalloc(sizeof(*wps));
1381 [ - + ]: 39 : if (wps == NULL)
1382 : 0 : return -1;
1383 : :
1384 : 39 : wps->cred_cb = wpa_supplicant_wps_cred;
1385 : 39 : wps->event_cb = wpa_supplicant_wps_event;
1386 : 39 : wps->rf_band_cb = wpa_supplicant_wps_rf_band;
1387 : 39 : wps->cb_ctx = wpa_s;
1388 : :
1389 : 39 : wps->dev.device_name = wpa_s->conf->device_name;
1390 : 39 : wps->dev.manufacturer = wpa_s->conf->manufacturer;
1391 : 39 : wps->dev.model_name = wpa_s->conf->model_name;
1392 : 39 : wps->dev.model_number = wpa_s->conf->model_number;
1393 : 39 : wps->dev.serial_number = wpa_s->conf->serial_number;
1394 : 39 : wps->config_methods =
1395 : 39 : wps_config_methods_str2bin(wpa_s->conf->config_methods);
1396 [ - + ]: 39 : if ((wps->config_methods & (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) ==
1397 : : (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) {
1398 : 0 : wpa_printf(MSG_ERROR, "WPS: Both Label and Display config "
1399 : : "methods are not allowed at the same time");
1400 : 0 : os_free(wps);
1401 : 0 : return -1;
1402 : : }
1403 : 39 : wps->config_methods = wps_fix_config_methods(wps->config_methods);
1404 : 39 : wps->dev.config_methods = wps->config_methods;
1405 : 39 : os_memcpy(wps->dev.pri_dev_type, wpa_s->conf->device_type,
1406 : : WPS_DEV_TYPE_LEN);
1407 : :
1408 : 39 : wps->dev.num_sec_dev_types = wpa_s->conf->num_sec_device_types;
1409 : 39 : os_memcpy(wps->dev.sec_dev_type, wpa_s->conf->sec_device_type,
1410 : : WPS_DEV_TYPE_LEN * wps->dev.num_sec_dev_types);
1411 : :
1412 : 39 : wpas_wps_set_vendor_ext_m1(wpa_s, wps);
1413 : :
1414 : 39 : wps->dev.os_version = WPA_GET_BE32(wpa_s->conf->os_version);
1415 : 39 : modes = wpa_s->hw.modes;
1416 [ + - ]: 39 : if (modes) {
1417 [ + + ]: 156 : for (m = 0; m < wpa_s->hw.num_modes; m++) {
1418 [ + + ][ + + ]: 117 : if (modes[m].mode == HOSTAPD_MODE_IEEE80211B ||
1419 : 78 : modes[m].mode == HOSTAPD_MODE_IEEE80211G)
1420 : 78 : wps->dev.rf_bands |= WPS_RF_24GHZ;
1421 [ + - ]: 39 : else if (modes[m].mode == HOSTAPD_MODE_IEEE80211A)
1422 : 39 : wps->dev.rf_bands |= WPS_RF_50GHZ;
1423 : : }
1424 : : }
1425 [ - + ]: 39 : if (wps->dev.rf_bands == 0) {
1426 : : /*
1427 : : * Default to claiming support for both bands if the driver
1428 : : * does not provide support for fetching supported bands.
1429 : : */
1430 : 0 : wps->dev.rf_bands = WPS_RF_24GHZ | WPS_RF_50GHZ;
1431 : : }
1432 : 39 : os_memcpy(wps->dev.mac_addr, wpa_s->own_addr, ETH_ALEN);
1433 : 39 : wpas_wps_set_uuid(wpa_s, wps);
1434 : :
1435 : 39 : wps->auth_types = WPS_AUTH_WPA2PSK | WPS_AUTH_WPAPSK;
1436 : 39 : wps->encr_types = WPS_ENCR_AES | WPS_ENCR_TKIP;
1437 : :
1438 : 39 : os_memset(&rcfg, 0, sizeof(rcfg));
1439 : 39 : rcfg.new_psk_cb = wpas_wps_new_psk_cb;
1440 : 39 : rcfg.pin_needed_cb = wpas_wps_pin_needed_cb;
1441 : 39 : rcfg.set_sel_reg_cb = wpas_wps_set_sel_reg_cb;
1442 : 39 : rcfg.cb_ctx = wpa_s;
1443 : :
1444 : 39 : wps->registrar = wps_registrar_init(wps, &rcfg);
1445 [ - + ]: 39 : if (wps->registrar == NULL) {
1446 : 0 : wpa_printf(MSG_DEBUG, "Failed to initialize WPS Registrar");
1447 : 0 : os_free(wps);
1448 : 0 : return -1;
1449 : : }
1450 : :
1451 : 39 : wpa_s->wps = wps;
1452 : :
1453 : 39 : return 0;
1454 : : }
1455 : :
1456 : :
1457 : : #ifdef CONFIG_WPS_ER
1458 : 42 : static void wpas_wps_nfc_clear(struct wps_context *wps)
1459 : : {
1460 : 42 : wps->ap_nfc_dev_pw_id = 0;
1461 : 42 : wpabuf_free(wps->ap_nfc_dh_pubkey);
1462 : 42 : wps->ap_nfc_dh_pubkey = NULL;
1463 : 42 : wpabuf_free(wps->ap_nfc_dh_privkey);
1464 : 42 : wps->ap_nfc_dh_privkey = NULL;
1465 : 42 : wpabuf_free(wps->ap_nfc_dev_pw);
1466 : 42 : wps->ap_nfc_dev_pw = NULL;
1467 : 42 : }
1468 : : #endif /* CONFIG_WPS_ER */
1469 : :
1470 : :
1471 : 40 : void wpas_wps_deinit(struct wpa_supplicant *wpa_s)
1472 : : {
1473 : 40 : eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
1474 : 40 : eloop_cancel_timeout(wpas_wps_clear_timeout, wpa_s, NULL);
1475 : 40 : eloop_cancel_timeout(wpas_wps_reenable_networks_cb, wpa_s, NULL);
1476 : 40 : wpas_wps_clear_ap_info(wpa_s);
1477 : :
1478 [ + + ]: 40 : if (wpa_s->wps == NULL)
1479 : 40 : return;
1480 : :
1481 : : #ifdef CONFIG_WPS_ER
1482 : 39 : wps_er_deinit(wpa_s->wps_er, NULL, NULL);
1483 : 39 : wpa_s->wps_er = NULL;
1484 : 39 : wpas_wps_nfc_clear(wpa_s->wps);
1485 : : #endif /* CONFIG_WPS_ER */
1486 : :
1487 : 39 : wps_registrar_deinit(wpa_s->wps->registrar);
1488 : 39 : wpabuf_free(wpa_s->wps->dh_pubkey);
1489 : 39 : wpabuf_free(wpa_s->wps->dh_privkey);
1490 : 39 : wpabuf_free(wpa_s->wps->dev.vendor_ext_m1);
1491 : 39 : os_free(wpa_s->wps->network_key);
1492 : 39 : os_free(wpa_s->wps);
1493 : 39 : wpa_s->wps = NULL;
1494 : : }
1495 : :
1496 : :
1497 : 802 : int wpas_wps_ssid_bss_match(struct wpa_supplicant *wpa_s,
1498 : : struct wpa_ssid *ssid, struct wpa_bss *bss)
1499 : : {
1500 : : struct wpabuf *wps_ie;
1501 : :
1502 [ + + ]: 802 : if (!(ssid->key_mgmt & WPA_KEY_MGMT_WPS))
1503 : 653 : return -1;
1504 : :
1505 : 149 : wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
1506 [ + + ]: 149 : if (eap_is_wps_pbc_enrollee(&ssid->eap)) {
1507 [ - + ]: 18 : if (!wps_ie) {
1508 : 0 : wpa_printf(MSG_DEBUG, " skip - non-WPS AP");
1509 : 0 : return 0;
1510 : : }
1511 : :
1512 [ - + ]: 18 : if (!wps_is_selected_pbc_registrar(wps_ie)) {
1513 : 0 : wpa_printf(MSG_DEBUG, " skip - WPS AP "
1514 : : "without active PBC Registrar");
1515 : 0 : wpabuf_free(wps_ie);
1516 : 0 : return 0;
1517 : : }
1518 : :
1519 : : /* TODO: overlap detection */
1520 : 18 : wpa_printf(MSG_DEBUG, " selected based on WPS IE "
1521 : : "(Active PBC)");
1522 : 18 : wpabuf_free(wps_ie);
1523 : 18 : return 1;
1524 : : }
1525 : :
1526 [ + + ]: 131 : if (eap_is_wps_pin_enrollee(&ssid->eap)) {
1527 [ - + ]: 88 : if (!wps_ie) {
1528 : 0 : wpa_printf(MSG_DEBUG, " skip - non-WPS AP");
1529 : 0 : return 0;
1530 : : }
1531 : :
1532 : : /*
1533 : : * Start with WPS APs that advertise our address as an
1534 : : * authorized MAC (v2.0) or active PIN Registrar (v1.0) and
1535 : : * allow any WPS AP after couple of scans since some APs do not
1536 : : * set Selected Registrar attribute properly when using
1537 : : * external Registrar.
1538 : : */
1539 [ + + ]: 88 : if (!wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 1)) {
1540 [ + + ]: 8 : if (wpa_s->scan_runs < WPS_PIN_SCAN_IGNORE_SEL_REG) {
1541 : 4 : wpa_printf(MSG_DEBUG, " skip - WPS AP "
1542 : : "without active PIN Registrar");
1543 : 4 : wpabuf_free(wps_ie);
1544 : 4 : return 0;
1545 : : }
1546 : 4 : wpa_printf(MSG_DEBUG, " selected based on WPS IE");
1547 : : } else {
1548 : 80 : wpa_printf(MSG_DEBUG, " selected based on WPS IE "
1549 : : "(Authorized MAC or Active PIN)");
1550 : : }
1551 : 84 : wpabuf_free(wps_ie);
1552 : 84 : return 1;
1553 : : }
1554 : :
1555 [ + - ]: 43 : if (wps_ie) {
1556 : 43 : wpa_printf(MSG_DEBUG, " selected based on WPS IE");
1557 : 43 : wpabuf_free(wps_ie);
1558 : 43 : return 1;
1559 : : }
1560 : :
1561 : 802 : return -1;
1562 : : }
1563 : :
1564 : :
1565 : 65 : int wpas_wps_ssid_wildcard_ok(struct wpa_supplicant *wpa_s,
1566 : : struct wpa_ssid *ssid,
1567 : : struct wpa_bss *bss)
1568 : : {
1569 : 65 : struct wpabuf *wps_ie = NULL;
1570 : 65 : int ret = 0;
1571 : :
1572 [ + + ]: 65 : if (eap_is_wps_pbc_enrollee(&ssid->eap)) {
1573 : 16 : wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
1574 [ + - ][ + + ]: 16 : if (wps_ie && wps_is_selected_pbc_registrar(wps_ie)) {
1575 : : /* allow wildcard SSID for WPS PBC */
1576 : 15 : ret = 1;
1577 : : }
1578 [ + + ]: 49 : } else if (eap_is_wps_pin_enrollee(&ssid->eap)) {
1579 : 21 : wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
1580 [ + - + + ]: 42 : if (wps_ie &&
1581 [ + + ]: 28 : (wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 1) ||
1582 : 7 : wpa_s->scan_runs >= WPS_PIN_SCAN_IGNORE_SEL_REG)) {
1583 : : /* allow wildcard SSID for WPS PIN */
1584 : 16 : ret = 1;
1585 : : }
1586 : : }
1587 : :
1588 [ + + ][ + + ]: 65 : if (!ret && ssid->bssid_set &&
[ + - ]
1589 : 28 : os_memcmp(ssid->bssid, bss->bssid, ETH_ALEN) == 0) {
1590 : : /* allow wildcard SSID due to hardcoded BSSID match */
1591 : 28 : ret = 1;
1592 : : }
1593 : :
1594 : : #ifdef CONFIG_WPS_STRICT
1595 : : if (wps_ie) {
1596 : : if (wps_validate_beacon_probe_resp(wps_ie, bss->beacon_ie_len >
1597 : : 0, bss->bssid) < 0)
1598 : : ret = 0;
1599 : : if (bss->beacon_ie_len) {
1600 : : struct wpabuf *bcn_wps;
1601 : : bcn_wps = wpa_bss_get_vendor_ie_multi_beacon(
1602 : : bss, WPS_IE_VENDOR_TYPE);
1603 : : if (bcn_wps == NULL) {
1604 : : wpa_printf(MSG_DEBUG, "WPS: Mandatory WPS IE "
1605 : : "missing from AP Beacon");
1606 : : ret = 0;
1607 : : } else {
1608 : : if (wps_validate_beacon(wps_ie) < 0)
1609 : : ret = 0;
1610 : : wpabuf_free(bcn_wps);
1611 : : }
1612 : : }
1613 : : }
1614 : : #endif /* CONFIG_WPS_STRICT */
1615 : :
1616 : 65 : wpabuf_free(wps_ie);
1617 : :
1618 : 65 : return ret;
1619 : : }
1620 : :
1621 : :
1622 : 675 : int wpas_wps_scan_pbc_overlap(struct wpa_supplicant *wpa_s,
1623 : : struct wpa_bss *selected, struct wpa_ssid *ssid)
1624 : : {
1625 : : const u8 *sel_uuid, *uuid;
1626 : : struct wpabuf *wps_ie;
1627 : 675 : int ret = 0;
1628 : : struct wpa_bss *bss;
1629 : :
1630 [ + + ]: 675 : if (!eap_is_wps_pbc_enrollee(&ssid->eap))
1631 : 657 : return 0;
1632 : :
1633 : 18 : wpa_printf(MSG_DEBUG, "WPS: Check whether PBC session overlap is "
1634 : : "present in scan results; selected BSSID " MACSTR,
1635 : 108 : MAC2STR(selected->bssid));
1636 : :
1637 : : /* Make sure that only one AP is in active PBC mode */
1638 : 18 : wps_ie = wpa_bss_get_vendor_ie_multi(selected, WPS_IE_VENDOR_TYPE);
1639 [ + - ]: 18 : if (wps_ie) {
1640 : 18 : sel_uuid = wps_get_uuid_e(wps_ie);
1641 : 18 : wpa_hexdump(MSG_DEBUG, "WPS: UUID of the selected BSS",
1642 : : sel_uuid, UUID_LEN);
1643 : : } else {
1644 : 0 : wpa_printf(MSG_DEBUG, "WPS: Selected BSS does not include "
1645 : : "WPS IE?!");
1646 : 0 : sel_uuid = NULL;
1647 : : }
1648 : :
1649 [ + + ]: 40 : dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
1650 : : struct wpabuf *ie;
1651 [ + + ]: 23 : if (bss == selected)
1652 : 18 : continue;
1653 : 5 : ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
1654 [ + + ]: 5 : if (!ie)
1655 : 1 : continue;
1656 [ + + ]: 4 : if (!wps_is_selected_pbc_registrar(ie)) {
1657 : 2 : wpabuf_free(ie);
1658 : 2 : continue;
1659 : : }
1660 : 2 : wpa_printf(MSG_DEBUG, "WPS: Another BSS in active PBC mode: "
1661 : 12 : MACSTR, MAC2STR(bss->bssid));
1662 : 2 : uuid = wps_get_uuid_e(ie);
1663 : 2 : wpa_hexdump(MSG_DEBUG, "WPS: UUID of the other BSS",
1664 : : uuid, UUID_LEN);
1665 [ + - ][ + - ]: 2 : if (sel_uuid == NULL || uuid == NULL ||
[ + + ]
1666 : 2 : os_memcmp(sel_uuid, uuid, UUID_LEN) != 0) {
1667 : 1 : ret = 1; /* PBC overlap */
1668 : 1 : wpa_msg(wpa_s, MSG_INFO, "WPS: PBC overlap detected: "
1669 : : MACSTR " and " MACSTR,
1670 : 6 : MAC2STR(selected->bssid),
1671 : 6 : MAC2STR(bss->bssid));
1672 : 1 : wpabuf_free(ie);
1673 : 1 : break;
1674 : : }
1675 : :
1676 : : /* TODO: verify that this is reasonable dual-band situation */
1677 : :
1678 : 1 : wpabuf_free(ie);
1679 : : }
1680 : :
1681 : 18 : wpabuf_free(wps_ie);
1682 : :
1683 : 675 : return ret;
1684 : : }
1685 : :
1686 : :
1687 : 589 : void wpas_wps_notify_scan_results(struct wpa_supplicant *wpa_s)
1688 : : {
1689 : : struct wpa_bss *bss;
1690 : 589 : unsigned int pbc = 0, auth = 0, pin = 0, wps = 0;
1691 : :
1692 [ + + ][ + + ]: 589 : if (wpa_s->disconnected || wpa_s->wpa_state >= WPA_ASSOCIATED)
1693 : 589 : return;
1694 : :
1695 [ + + ]: 1277 : dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
1696 : : struct wpabuf *ie;
1697 : 710 : ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
1698 [ + + ]: 710 : if (!ie)
1699 : 441 : continue;
1700 [ + + ]: 269 : if (wps_is_selected_pbc_registrar(ie))
1701 : 28 : pbc++;
1702 [ + + ]: 241 : else if (wps_is_addr_authorized(ie, wpa_s->own_addr, 0))
1703 : 135 : auth++;
1704 [ + + ]: 106 : else if (wps_is_selected_pin_registrar(ie))
1705 : 14 : pin++;
1706 : : else
1707 : 92 : wps++;
1708 : 269 : wpabuf_free(ie);
1709 : : }
1710 : :
1711 [ + + ]: 567 : if (pbc)
1712 : 24 : wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE_PBC);
1713 [ + + ]: 543 : else if (auth)
1714 : 112 : wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE_AUTH);
1715 [ + + ]: 431 : else if (pin)
1716 : 1 : wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE_PIN);
1717 [ + + ]: 430 : else if (wps)
1718 : 85 : wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE);
1719 : : }
1720 : :
1721 : :
1722 : 1448 : int wpas_wps_searching(struct wpa_supplicant *wpa_s)
1723 : : {
1724 : : struct wpa_ssid *ssid;
1725 : :
1726 [ + + ]: 1898 : for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
1727 [ + + ][ + - ]: 638 : if ((ssid->key_mgmt & WPA_KEY_MGMT_WPS) && !ssid->disabled)
1728 : 188 : return 1;
1729 : : }
1730 : :
1731 : 1448 : return 0;
1732 : : }
1733 : :
1734 : :
1735 : 34 : int wpas_wps_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
1736 : : char *end)
1737 : : {
1738 : : struct wpabuf *wps_ie;
1739 : : int ret;
1740 : :
1741 : 34 : wps_ie = ieee802_11_vendor_ie_concat(ies, ies_len, WPS_DEV_OUI_WFA);
1742 [ + + ]: 34 : if (wps_ie == NULL)
1743 : 14 : return 0;
1744 : :
1745 : 20 : ret = wps_attr_text(wps_ie, buf, end);
1746 : 20 : wpabuf_free(wps_ie);
1747 : 34 : return ret;
1748 : : }
1749 : :
1750 : :
1751 : 9 : int wpas_wps_er_start(struct wpa_supplicant *wpa_s, const char *filter)
1752 : : {
1753 : : #ifdef CONFIG_WPS_ER
1754 [ - + ]: 9 : if (wpa_s->wps_er) {
1755 : 0 : wps_er_refresh(wpa_s->wps_er);
1756 : 0 : return 0;
1757 : : }
1758 : 9 : wpa_s->wps_er = wps_er_init(wpa_s->wps, wpa_s->ifname, filter);
1759 [ - + ]: 9 : if (wpa_s->wps_er == NULL)
1760 : 0 : return -1;
1761 : 9 : return 0;
1762 : : #else /* CONFIG_WPS_ER */
1763 : : return 0;
1764 : : #endif /* CONFIG_WPS_ER */
1765 : : }
1766 : :
1767 : :
1768 : 1176 : int wpas_wps_er_stop(struct wpa_supplicant *wpa_s)
1769 : : {
1770 : : #ifdef CONFIG_WPS_ER
1771 : 1176 : wps_er_deinit(wpa_s->wps_er, NULL, NULL);
1772 : 1176 : wpa_s->wps_er = NULL;
1773 : : #endif /* CONFIG_WPS_ER */
1774 : 1176 : return 0;
1775 : : }
1776 : :
1777 : :
1778 : : #ifdef CONFIG_WPS_ER
1779 : 4 : int wpas_wps_er_add_pin(struct wpa_supplicant *wpa_s, const u8 *addr,
1780 : : const char *uuid, const char *pin)
1781 : : {
1782 : : u8 u[UUID_LEN];
1783 : 4 : const u8 *use_uuid = NULL;
1784 : : u8 addr_buf[ETH_ALEN];
1785 : :
1786 [ + + ]: 4 : if (os_strcmp(uuid, "any") == 0) {
1787 [ - + ]: 1 : } else if (uuid_str2bin(uuid, u) == 0) {
1788 : 0 : use_uuid = u;
1789 [ + - ]: 1 : } else if (hwaddr_aton(uuid, addr_buf) == 0) {
1790 : 1 : use_uuid = wps_er_get_sta_uuid(wpa_s->wps_er, addr_buf);
1791 [ - + ]: 1 : if (use_uuid == NULL)
1792 : 0 : return -1;
1793 : : } else
1794 : 0 : return -1;
1795 : 4 : return wps_registrar_add_pin(wpa_s->wps->registrar, addr,
1796 : : use_uuid,
1797 : : (const u8 *) pin, os_strlen(pin), 300);
1798 : : }
1799 : :
1800 : :
1801 : 1 : int wpas_wps_er_pbc(struct wpa_supplicant *wpa_s, const char *uuid)
1802 : : {
1803 : 1 : u8 u[UUID_LEN], *use_uuid = NULL;
1804 : 1 : u8 addr[ETH_ALEN], *use_addr = NULL;
1805 : :
1806 [ - + ]: 1 : if (uuid_str2bin(uuid, u) == 0)
1807 : 0 : use_uuid = u;
1808 [ + - ]: 1 : else if (hwaddr_aton(uuid, addr) == 0)
1809 : 1 : use_addr = addr;
1810 : : else
1811 : 0 : return -1;
1812 : 1 : return wps_er_pbc(wpa_s->wps_er, use_uuid, use_addr);
1813 : : }
1814 : :
1815 : :
1816 : 1 : int wpas_wps_er_learn(struct wpa_supplicant *wpa_s, const char *uuid,
1817 : : const char *pin)
1818 : : {
1819 : 1 : u8 u[UUID_LEN], *use_uuid = NULL;
1820 : 1 : u8 addr[ETH_ALEN], *use_addr = NULL;
1821 : :
1822 [ + - ]: 1 : if (uuid_str2bin(uuid, u) == 0)
1823 : 1 : use_uuid = u;
1824 [ # # ]: 0 : else if (hwaddr_aton(uuid, addr) == 0)
1825 : 0 : use_addr = addr;
1826 : : else
1827 : 0 : return -1;
1828 : :
1829 : 1 : return wps_er_learn(wpa_s->wps_er, use_uuid, use_addr, (const u8 *) pin,
1830 : : os_strlen(pin));
1831 : : }
1832 : :
1833 : :
1834 : 8 : static int wpas_wps_network_to_cred(struct wpa_ssid *ssid,
1835 : : struct wps_credential *cred)
1836 : : {
1837 : 8 : os_memset(cred, 0, sizeof(*cred));
1838 [ - + ]: 8 : if (ssid->ssid_len > 32)
1839 : 0 : return -1;
1840 : 8 : os_memcpy(cred->ssid, ssid->ssid, ssid->ssid_len);
1841 : 8 : cred->ssid_len = ssid->ssid_len;
1842 [ + - ]: 8 : if (ssid->key_mgmt & WPA_KEY_MGMT_PSK) {
1843 [ + - ]: 8 : cred->auth_type = (ssid->proto & WPA_PROTO_RSN) ?
1844 : : WPS_AUTH_WPA2PSK : WPS_AUTH_WPAPSK;
1845 [ + - ]: 8 : if (ssid->pairwise_cipher & WPA_CIPHER_CCMP)
1846 : 8 : cred->encr_type = WPS_ENCR_AES;
1847 : : else
1848 : 0 : cred->encr_type = WPS_ENCR_TKIP;
1849 [ + - ]: 8 : if (ssid->passphrase) {
1850 : 8 : cred->key_len = os_strlen(ssid->passphrase);
1851 [ - + ]: 8 : if (cred->key_len >= 64)
1852 : 0 : return -1;
1853 : 8 : os_memcpy(cred->key, ssid->passphrase, cred->key_len);
1854 [ # # ]: 0 : } else if (ssid->psk_set) {
1855 : 0 : cred->key_len = 32;
1856 : 0 : os_memcpy(cred->key, ssid->psk, 32);
1857 : : } else
1858 : 0 : return -1;
1859 : : } else {
1860 : 0 : cred->auth_type = WPS_AUTH_OPEN;
1861 : 0 : cred->encr_type = WPS_ENCR_NONE;
1862 : : }
1863 : :
1864 : 8 : return 0;
1865 : : }
1866 : :
1867 : :
1868 : 8 : int wpas_wps_er_set_config(struct wpa_supplicant *wpa_s, const char *uuid,
1869 : : int id)
1870 : : {
1871 : 8 : u8 u[UUID_LEN], *use_uuid = NULL;
1872 : 8 : u8 addr[ETH_ALEN], *use_addr = NULL;
1873 : : struct wpa_ssid *ssid;
1874 : : struct wps_credential cred;
1875 : :
1876 [ + + ]: 8 : if (uuid_str2bin(uuid, u) == 0)
1877 : 7 : use_uuid = u;
1878 [ + - ]: 1 : else if (hwaddr_aton(uuid, addr) == 0)
1879 : 1 : use_addr = addr;
1880 : : else
1881 : 0 : return -1;
1882 : 8 : ssid = wpa_config_get_network(wpa_s->conf, id);
1883 [ + - ][ - + ]: 8 : if (ssid == NULL || ssid->ssid == NULL)
1884 : 0 : return -1;
1885 : :
1886 [ - + ]: 8 : if (wpas_wps_network_to_cred(ssid, &cred) < 0)
1887 : 0 : return -1;
1888 : 8 : return wps_er_set_config(wpa_s->wps_er, use_uuid, use_addr, &cred);
1889 : : }
1890 : :
1891 : :
1892 : 1 : int wpas_wps_er_config(struct wpa_supplicant *wpa_s, const char *uuid,
1893 : : const char *pin, struct wps_new_ap_settings *settings)
1894 : : {
1895 : 1 : u8 u[UUID_LEN], *use_uuid = NULL;
1896 : 1 : u8 addr[ETH_ALEN], *use_addr = NULL;
1897 : : struct wps_credential cred;
1898 : : size_t len;
1899 : :
1900 [ - + ]: 1 : if (uuid_str2bin(uuid, u) == 0)
1901 : 0 : use_uuid = u;
1902 [ + - ]: 1 : else if (hwaddr_aton(uuid, addr) == 0)
1903 : 1 : use_addr = addr;
1904 : : else
1905 : 0 : return -1;
1906 [ + - ][ + - ]: 1 : if (settings->ssid_hex == NULL || settings->auth == NULL ||
[ + - ]
1907 [ - + ]: 1 : settings->encr == NULL || settings->key_hex == NULL)
1908 : 0 : return -1;
1909 : :
1910 : 1 : os_memset(&cred, 0, sizeof(cred));
1911 : 1 : len = os_strlen(settings->ssid_hex);
1912 [ + - ]: 2 : if ((len & 1) || len > 2 * sizeof(cred.ssid) ||
[ + - - + ]
1913 : 1 : hexstr2bin(settings->ssid_hex, cred.ssid, len / 2))
1914 : 0 : return -1;
1915 : 1 : cred.ssid_len = len / 2;
1916 : :
1917 : 1 : len = os_strlen(settings->key_hex);
1918 [ + - ]: 2 : if ((len & 1) || len > 2 * sizeof(cred.key) ||
[ + - - + ]
1919 : 1 : hexstr2bin(settings->key_hex, cred.key, len / 2))
1920 : 0 : return -1;
1921 : 1 : cred.key_len = len / 2;
1922 : :
1923 [ - + ]: 1 : if (os_strcmp(settings->auth, "OPEN") == 0)
1924 : 0 : cred.auth_type = WPS_AUTH_OPEN;
1925 [ - + ]: 1 : else if (os_strcmp(settings->auth, "WPAPSK") == 0)
1926 : 0 : cred.auth_type = WPS_AUTH_WPAPSK;
1927 [ + - ]: 1 : else if (os_strcmp(settings->auth, "WPA2PSK") == 0)
1928 : 1 : cred.auth_type = WPS_AUTH_WPA2PSK;
1929 : : else
1930 : 0 : return -1;
1931 : :
1932 [ - + ]: 1 : if (os_strcmp(settings->encr, "NONE") == 0)
1933 : 0 : cred.encr_type = WPS_ENCR_NONE;
1934 [ - + ]: 1 : else if (os_strcmp(settings->encr, "WEP") == 0)
1935 : 0 : cred.encr_type = WPS_ENCR_WEP;
1936 [ - + ]: 1 : else if (os_strcmp(settings->encr, "TKIP") == 0)
1937 : 0 : cred.encr_type = WPS_ENCR_TKIP;
1938 [ + - ]: 1 : else if (os_strcmp(settings->encr, "CCMP") == 0)
1939 : 1 : cred.encr_type = WPS_ENCR_AES;
1940 : : else
1941 : 0 : return -1;
1942 : :
1943 : 1 : return wps_er_config(wpa_s->wps_er, use_uuid, use_addr,
1944 : : (const u8 *) pin, os_strlen(pin), &cred);
1945 : : }
1946 : :
1947 : :
1948 : : #ifdef CONFIG_WPS_NFC
1949 : 1 : struct wpabuf * wpas_wps_er_nfc_config_token(struct wpa_supplicant *wpa_s,
1950 : : int ndef, const char *uuid)
1951 : : {
1952 : : struct wpabuf *ret;
1953 : 1 : u8 u[UUID_LEN], *use_uuid = NULL;
1954 : 1 : u8 addr[ETH_ALEN], *use_addr = NULL;
1955 : :
1956 [ - + ]: 1 : if (!wpa_s->wps_er)
1957 : 0 : return NULL;
1958 : :
1959 [ - + ]: 1 : if (uuid_str2bin(uuid, u) == 0)
1960 : 0 : use_uuid = u;
1961 [ + - ]: 1 : else if (hwaddr_aton(uuid, addr) == 0)
1962 : 1 : use_addr = addr;
1963 : : else
1964 : 0 : return NULL;
1965 : :
1966 : 1 : ret = wps_er_nfc_config_token(wpa_s->wps_er, use_uuid, use_addr);
1967 [ + - ][ + - ]: 1 : if (ndef && ret) {
1968 : : struct wpabuf *tmp;
1969 : 1 : tmp = ndef_build_wifi(ret);
1970 : 1 : wpabuf_free(ret);
1971 [ - + ]: 1 : if (tmp == NULL)
1972 : 0 : return NULL;
1973 : 1 : ret = tmp;
1974 : : }
1975 : :
1976 : 1 : return ret;
1977 : : }
1978 : : #endif /* CONFIG_WPS_NFC */
1979 : :
1980 : :
1981 : : static int callbacks_pending = 0;
1982 : :
1983 : 0 : static void wpas_wps_terminate_cb(void *ctx)
1984 : : {
1985 : 0 : wpa_printf(MSG_DEBUG, "WPS ER: Terminated");
1986 [ # # ]: 0 : if (--callbacks_pending <= 0)
1987 : 0 : eloop_terminate();
1988 : 0 : }
1989 : : #endif /* CONFIG_WPS_ER */
1990 : :
1991 : :
1992 : 3 : int wpas_wps_terminate_pending(struct wpa_supplicant *wpa_s)
1993 : : {
1994 : : #ifdef CONFIG_WPS_ER
1995 [ - + ]: 3 : if (wpa_s->wps_er) {
1996 : 0 : callbacks_pending++;
1997 : 0 : wps_er_deinit(wpa_s->wps_er, wpas_wps_terminate_cb, wpa_s);
1998 : 0 : wpa_s->wps_er = NULL;
1999 : 0 : return 1;
2000 : : }
2001 : : #endif /* CONFIG_WPS_ER */
2002 : 3 : return 0;
2003 : : }
2004 : :
2005 : :
2006 : 10812 : void wpas_wps_update_config(struct wpa_supplicant *wpa_s)
2007 : : {
2008 : 10812 : struct wps_context *wps = wpa_s->wps;
2009 : :
2010 [ - + ]: 10812 : if (wps == NULL)
2011 : 10812 : return;
2012 : :
2013 [ - + ]: 10812 : if (wpa_s->conf->changed_parameters & CFG_CHANGED_CONFIG_METHODS) {
2014 : 0 : wps->config_methods = wps_config_methods_str2bin(
2015 : 0 : wpa_s->conf->config_methods);
2016 [ # # ]: 0 : if ((wps->config_methods &
2017 : : (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) ==
2018 : : (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) {
2019 : 0 : wpa_printf(MSG_ERROR, "WPS: Both Label and Display "
2020 : : "config methods are not allowed at the "
2021 : : "same time");
2022 : 0 : wps->config_methods &= ~WPS_CONFIG_LABEL;
2023 : : }
2024 : : }
2025 : 10812 : wps->config_methods = wps_fix_config_methods(wps->config_methods);
2026 : 10812 : wps->dev.config_methods = wps->config_methods;
2027 : :
2028 [ - + ]: 10812 : if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_TYPE)
2029 : 0 : os_memcpy(wps->dev.pri_dev_type, wpa_s->conf->device_type,
2030 : : WPS_DEV_TYPE_LEN);
2031 : :
2032 [ + + ]: 10812 : if (wpa_s->conf->changed_parameters & CFG_CHANGED_SEC_DEVICE_TYPE) {
2033 : 2 : wps->dev.num_sec_dev_types = wpa_s->conf->num_sec_device_types;
2034 : 2 : os_memcpy(wps->dev.sec_dev_type, wpa_s->conf->sec_device_type,
2035 : : wps->dev.num_sec_dev_types * WPS_DEV_TYPE_LEN);
2036 : : }
2037 : :
2038 [ + + ]: 10812 : if (wpa_s->conf->changed_parameters & CFG_CHANGED_VENDOR_EXTENSION)
2039 : 1 : wpas_wps_set_vendor_ext_m1(wpa_s, wps);
2040 : :
2041 [ - + ]: 10812 : if (wpa_s->conf->changed_parameters & CFG_CHANGED_OS_VERSION)
2042 : 0 : wps->dev.os_version = WPA_GET_BE32(wpa_s->conf->os_version);
2043 : :
2044 [ - + ]: 10812 : if (wpa_s->conf->changed_parameters & CFG_CHANGED_UUID)
2045 : 0 : wpas_wps_set_uuid(wpa_s, wps);
2046 : :
2047 [ + + ]: 10812 : if (wpa_s->conf->changed_parameters &
2048 : : (CFG_CHANGED_DEVICE_NAME | CFG_CHANGED_WPS_STRING)) {
2049 : : /* Update pointers to make sure they refer current values */
2050 : 4 : wps->dev.device_name = wpa_s->conf->device_name;
2051 : 4 : wps->dev.manufacturer = wpa_s->conf->manufacturer;
2052 : 4 : wps->dev.model_name = wpa_s->conf->model_name;
2053 : 4 : wps->dev.model_number = wpa_s->conf->model_number;
2054 : 4 : wps->dev.serial_number = wpa_s->conf->serial_number;
2055 : : }
2056 : : }
2057 : :
2058 : :
2059 : : #ifdef CONFIG_WPS_NFC
2060 : :
2061 : : #ifdef CONFIG_WPS_ER
2062 : : static struct wpabuf *
2063 : 0 : wpas_wps_network_config_token(struct wpa_supplicant *wpa_s, int ndef,
2064 : : struct wpa_ssid *ssid)
2065 : : {
2066 : : struct wpabuf *ret;
2067 : : struct wps_credential cred;
2068 : :
2069 [ # # ]: 0 : if (wpas_wps_network_to_cred(ssid, &cred) < 0)
2070 : 0 : return NULL;
2071 : :
2072 : 0 : ret = wps_er_config_token_from_cred(wpa_s->wps, &cred);
2073 : :
2074 [ # # ][ # # ]: 0 : if (ndef && ret) {
2075 : : struct wpabuf *tmp;
2076 : 0 : tmp = ndef_build_wifi(ret);
2077 : 0 : wpabuf_free(ret);
2078 [ # # ]: 0 : if (tmp == NULL)
2079 : 0 : return NULL;
2080 : 0 : ret = tmp;
2081 : : }
2082 : :
2083 : 0 : return ret;
2084 : : }
2085 : : #endif /* CONFIG_WPS_ER */
2086 : :
2087 : :
2088 : 1 : struct wpabuf * wpas_wps_nfc_config_token(struct wpa_supplicant *wpa_s,
2089 : : int ndef, const char *id_str)
2090 : : {
2091 : : #ifdef CONFIG_WPS_ER
2092 [ - + ]: 1 : if (id_str) {
2093 : : int id;
2094 : 0 : char *end = NULL;
2095 : : struct wpa_ssid *ssid;
2096 : :
2097 : 0 : id = strtol(id_str, &end, 10);
2098 [ # # ][ # # ]: 0 : if (end && *end)
2099 : 0 : return NULL;
2100 : :
2101 : 0 : ssid = wpa_config_get_network(wpa_s->conf, id);
2102 [ # # ]: 0 : if (ssid == NULL)
2103 : 0 : return NULL;
2104 : 0 : return wpas_wps_network_config_token(wpa_s, ndef, ssid);
2105 : : }
2106 : : #endif /* CONFIG_WPS_ER */
2107 : : #ifdef CONFIG_AP
2108 [ + - ]: 1 : if (wpa_s->ap_iface)
2109 : 1 : return wpas_ap_wps_nfc_config_token(wpa_s, ndef);
2110 : : #endif /* CONFIG_AP */
2111 : 1 : return NULL;
2112 : : }
2113 : :
2114 : :
2115 : 8 : struct wpabuf * wpas_wps_nfc_token(struct wpa_supplicant *wpa_s, int ndef)
2116 : : {
2117 [ - + ]: 8 : if (wpa_s->conf->wps_nfc_pw_from_config) {
2118 : 0 : return wps_nfc_token_build(ndef,
2119 : 0 : wpa_s->conf->wps_nfc_dev_pw_id,
2120 : 0 : wpa_s->conf->wps_nfc_dh_pubkey,
2121 : 0 : wpa_s->conf->wps_nfc_dev_pw);
2122 : : }
2123 : :
2124 : 8 : return wps_nfc_token_gen(ndef, &wpa_s->conf->wps_nfc_dev_pw_id,
2125 : 8 : &wpa_s->conf->wps_nfc_dh_pubkey,
2126 : 8 : &wpa_s->conf->wps_nfc_dh_privkey,
2127 : 8 : &wpa_s->conf->wps_nfc_dev_pw);
2128 : : }
2129 : :
2130 : :
2131 : 24 : int wpas_wps_start_nfc(struct wpa_supplicant *wpa_s, const u8 *go_dev_addr,
2132 : : const u8 *bssid,
2133 : : const struct wpabuf *dev_pw, u16 dev_pw_id,
2134 : : int p2p_group, const u8 *peer_pubkey_hash,
2135 : : const u8 *ssid, size_t ssid_len, int freq)
2136 : : {
2137 : 24 : struct wps_context *wps = wpa_s->wps;
2138 : : char pw[32 * 2 + 1];
2139 : :
2140 [ + + ][ + + ]: 24 : if (dev_pw_id != DEV_PW_NFC_CONNECTION_HANDOVER && dev_pw == NULL) {
2141 : 3 : dev_pw = wpa_s->conf->wps_nfc_dev_pw;
2142 : 3 : dev_pw_id = wpa_s->conf->wps_nfc_dev_pw_id;
2143 : : }
2144 : :
2145 [ + - ][ - + ]: 24 : if (wpa_s->conf->wps_nfc_dh_pubkey == NULL ||
2146 : 24 : wpa_s->conf->wps_nfc_dh_privkey == NULL) {
2147 : 0 : wpa_printf(MSG_DEBUG, "WPS: Missing DH params - "
2148 : : "cannot start NFC-triggered connection");
2149 : 0 : return -1;
2150 : : }
2151 : :
2152 [ + + ][ - + ]: 24 : if (dev_pw_id != DEV_PW_NFC_CONNECTION_HANDOVER && dev_pw == NULL) {
2153 : 0 : wpa_printf(MSG_DEBUG, "WPS: Missing Device Password (id=%u) - "
2154 : : "cannot start NFC-triggered connection", dev_pw_id);
2155 : 0 : return -1;
2156 : : }
2157 : :
2158 : 24 : dh5_free(wps->dh_ctx);
2159 : 24 : wpabuf_free(wps->dh_pubkey);
2160 : 24 : wpabuf_free(wps->dh_privkey);
2161 : 24 : wps->dh_privkey = wpabuf_dup(wpa_s->conf->wps_nfc_dh_privkey);
2162 : 24 : wps->dh_pubkey = wpabuf_dup(wpa_s->conf->wps_nfc_dh_pubkey);
2163 [ + - ][ - + ]: 24 : if (wps->dh_privkey == NULL || wps->dh_pubkey == NULL) {
2164 : 0 : wps->dh_ctx = NULL;
2165 : 0 : wpabuf_free(wps->dh_pubkey);
2166 : 0 : wps->dh_pubkey = NULL;
2167 : 0 : wpabuf_free(wps->dh_privkey);
2168 : 0 : wps->dh_privkey = NULL;
2169 : 0 : wpa_printf(MSG_DEBUG, "WPS: Failed to get DH priv/pub key");
2170 : 0 : return -1;
2171 : : }
2172 : 24 : wps->dh_ctx = dh5_init_fixed(wps->dh_privkey, wps->dh_pubkey);
2173 [ - + ]: 24 : if (wps->dh_ctx == NULL) {
2174 : 0 : wpabuf_free(wps->dh_pubkey);
2175 : 0 : wps->dh_pubkey = NULL;
2176 : 0 : wpabuf_free(wps->dh_privkey);
2177 : 0 : wps->dh_privkey = NULL;
2178 : 0 : wpa_printf(MSG_DEBUG, "WPS: Failed to initialize DH context");
2179 : 0 : return -1;
2180 : : }
2181 : :
2182 [ + + ]: 24 : if (dev_pw) {
2183 : 18 : wpa_snprintf_hex_uppercase(pw, sizeof(pw),
2184 : 9 : wpabuf_head(dev_pw),
2185 : : wpabuf_len(dev_pw));
2186 : : }
2187 [ + + ]: 24 : return wpas_wps_start_dev_pw(wpa_s, go_dev_addr, bssid,
2188 : : dev_pw ? pw : NULL,
2189 : : p2p_group, dev_pw_id, peer_pubkey_hash,
2190 : : ssid, ssid_len, freq);
2191 : : }
2192 : :
2193 : :
2194 : 4 : static int wpas_wps_use_cred(struct wpa_supplicant *wpa_s,
2195 : : struct wps_parse_attr *attr)
2196 : : {
2197 : : /*
2198 : : * Disable existing networks temporarily to allow the newly learned
2199 : : * credential to be preferred. Enable the temporarily disabled networks
2200 : : * after 10 seconds.
2201 : : */
2202 : 4 : wpas_wps_temp_disable(wpa_s, NULL);
2203 : 4 : eloop_register_timeout(10, 0, wpas_wps_reenable_networks_cb, wpa_s,
2204 : : NULL);
2205 : :
2206 [ - + ]: 4 : if (wps_oob_use_cred(wpa_s->wps, attr) < 0)
2207 : 0 : return -1;
2208 : :
2209 [ - + ]: 4 : if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
2210 : 0 : return 0;
2211 : :
2212 [ + + ]: 4 : if (attr->ap_channel) {
2213 : 3 : u16 chan = WPA_GET_BE16(attr->ap_channel);
2214 : 3 : int freq = 0;
2215 : :
2216 [ + - ][ + - ]: 3 : if (chan >= 1 && chan <= 13)
2217 : 3 : freq = 2407 + 5 * chan;
2218 [ # # ]: 0 : else if (chan == 14)
2219 : 0 : freq = 2484;
2220 [ # # ]: 0 : else if (chan >= 30)
2221 : 0 : freq = 5000 + 5 * chan;
2222 : :
2223 [ + - ]: 3 : if (freq) {
2224 : 3 : wpa_printf(MSG_DEBUG, "WPS: Credential container indicated AP channel %u -> %u MHz",
2225 : : chan, freq);
2226 : 3 : wpa_s->after_wps = 5;
2227 : 3 : wpa_s->wps_freq = freq;
2228 : : }
2229 : : }
2230 : :
2231 : 4 : wpa_printf(MSG_DEBUG, "WPS: Request reconnection with new network "
2232 : : "based on the received credential added");
2233 : 4 : wpa_s->normal_scans = 0;
2234 : 4 : wpa_supplicant_reinit_autoscan(wpa_s);
2235 : 4 : wpa_s->disconnected = 0;
2236 : 4 : wpa_s->reassociate = 1;
2237 : :
2238 : 4 : wpa_supplicant_cancel_sched_scan(wpa_s);
2239 : 4 : wpa_supplicant_req_scan(wpa_s, 0, 0);
2240 : :
2241 : 4 : return 0;
2242 : : }
2243 : :
2244 : :
2245 : : #ifdef CONFIG_WPS_ER
2246 : 2 : static int wpas_wps_add_nfc_password_token(struct wpa_supplicant *wpa_s,
2247 : : struct wps_parse_attr *attr)
2248 : : {
2249 : 2 : return wps_registrar_add_nfc_password_token(
2250 : 2 : wpa_s->wps->registrar, attr->oob_dev_password,
2251 : : attr->oob_dev_password_len);
2252 : : }
2253 : : #endif /* CONFIG_WPS_ER */
2254 : :
2255 : :
2256 : 6 : static int wpas_wps_nfc_tag_process(struct wpa_supplicant *wpa_s,
2257 : : const struct wpabuf *wps)
2258 : : {
2259 : : struct wps_parse_attr attr;
2260 : :
2261 : 6 : wpa_hexdump_buf(MSG_DEBUG, "WPS: Received NFC tag payload", wps);
2262 : :
2263 [ - + ]: 6 : if (wps_parse_msg(wps, &attr)) {
2264 : 0 : wpa_printf(MSG_DEBUG, "WPS: Ignore invalid data from NFC tag");
2265 : 0 : return -1;
2266 : : }
2267 : :
2268 [ + + ]: 6 : if (attr.num_cred)
2269 : 4 : return wpas_wps_use_cred(wpa_s, &attr);
2270 : :
2271 : : #ifdef CONFIG_WPS_ER
2272 [ + - ]: 2 : if (attr.oob_dev_password)
2273 : 2 : return wpas_wps_add_nfc_password_token(wpa_s, &attr);
2274 : : #endif /* CONFIG_WPS_ER */
2275 : :
2276 : 0 : wpa_printf(MSG_DEBUG, "WPS: Ignore unrecognized NFC tag");
2277 : 6 : return -1;
2278 : : }
2279 : :
2280 : :
2281 : 12 : int wpas_wps_nfc_tag_read(struct wpa_supplicant *wpa_s,
2282 : : const struct wpabuf *data, int forced_freq)
2283 : : {
2284 : 12 : const struct wpabuf *wps = data;
2285 : 12 : struct wpabuf *tmp = NULL;
2286 : : int ret;
2287 : :
2288 [ - + ]: 12 : if (wpabuf_len(data) < 4)
2289 : 0 : return -1;
2290 : :
2291 [ + - ]: 12 : if (*wpabuf_head_u8(data) != 0x10) {
2292 : : /* Assume this contains full NDEF record */
2293 : 12 : tmp = ndef_parse_wifi(data);
2294 [ + + ]: 12 : if (tmp == NULL) {
2295 : : #ifdef CONFIG_P2P
2296 : 6 : tmp = ndef_parse_p2p(data);
2297 [ + - ]: 6 : if (tmp) {
2298 : 6 : ret = wpas_p2p_nfc_tag_process(wpa_s, tmp,
2299 : : forced_freq);
2300 : 6 : wpabuf_free(tmp);
2301 : 6 : return ret;
2302 : : }
2303 : : #endif /* CONFIG_P2P */
2304 : 0 : wpa_printf(MSG_DEBUG, "WPS: Could not parse NDEF");
2305 : 0 : return -1;
2306 : : }
2307 : 6 : wps = tmp;
2308 : : }
2309 : :
2310 : 6 : ret = wpas_wps_nfc_tag_process(wpa_s, wps);
2311 : 6 : wpabuf_free(tmp);
2312 : 12 : return ret;
2313 : : }
2314 : :
2315 : :
2316 : 9 : struct wpabuf * wpas_wps_nfc_handover_req(struct wpa_supplicant *wpa_s,
2317 : : int ndef)
2318 : : {
2319 : : struct wpabuf *ret;
2320 : :
2321 [ - + # # ]: 9 : if (wpa_s->conf->wps_nfc_dh_pubkey == NULL &&
2322 : 0 : wps_nfc_gen_dh(&wpa_s->conf->wps_nfc_dh_pubkey,
2323 : 0 : &wpa_s->conf->wps_nfc_dh_privkey) < 0)
2324 : 0 : return NULL;
2325 : :
2326 : 9 : ret = wps_build_nfc_handover_req(wpa_s->wps,
2327 : 9 : wpa_s->conf->wps_nfc_dh_pubkey);
2328 : :
2329 [ + - ][ + - ]: 9 : if (ndef && ret) {
2330 : : struct wpabuf *tmp;
2331 : 9 : tmp = ndef_build_wifi(ret);
2332 : 9 : wpabuf_free(ret);
2333 [ - + ]: 9 : if (tmp == NULL)
2334 : 0 : return NULL;
2335 : 9 : ret = tmp;
2336 : : }
2337 : :
2338 : 9 : return ret;
2339 : : }
2340 : :
2341 : :
2342 : : #ifdef CONFIG_WPS_NFC
2343 : :
2344 : : static struct wpabuf *
2345 : 3 : wpas_wps_er_nfc_handover_sel(struct wpa_supplicant *wpa_s, int ndef,
2346 : : const char *uuid)
2347 : : {
2348 : : #ifdef CONFIG_WPS_ER
2349 : : struct wpabuf *ret;
2350 : 3 : u8 u[UUID_LEN], *use_uuid = NULL;
2351 : 3 : u8 addr[ETH_ALEN], *use_addr = NULL;
2352 : 3 : struct wps_context *wps = wpa_s->wps;
2353 : :
2354 [ - + ]: 3 : if (wps == NULL)
2355 : 0 : return NULL;
2356 : :
2357 [ - + ]: 3 : if (uuid == NULL)
2358 : 0 : return NULL;
2359 [ - + ]: 3 : if (uuid_str2bin(uuid, u) == 0)
2360 : 0 : use_uuid = u;
2361 [ + - ]: 3 : else if (hwaddr_aton(uuid, addr) == 0)
2362 : 3 : use_addr = addr;
2363 : : else
2364 : 0 : return NULL;
2365 : :
2366 [ - + ]: 3 : if (wpa_s->conf->wps_nfc_dh_pubkey == NULL) {
2367 [ # # ]: 0 : if (wps_nfc_gen_dh(&wpa_s->conf->wps_nfc_dh_pubkey,
2368 : 0 : &wpa_s->conf->wps_nfc_dh_privkey) < 0)
2369 : 0 : return NULL;
2370 : : }
2371 : :
2372 : 3 : wpas_wps_nfc_clear(wps);
2373 : 3 : wps->ap_nfc_dev_pw_id = DEV_PW_NFC_CONNECTION_HANDOVER;
2374 : 3 : wps->ap_nfc_dh_pubkey = wpabuf_dup(wpa_s->conf->wps_nfc_dh_pubkey);
2375 : 3 : wps->ap_nfc_dh_privkey = wpabuf_dup(wpa_s->conf->wps_nfc_dh_privkey);
2376 [ + - ][ - + ]: 3 : if (!wps->ap_nfc_dh_pubkey || !wps->ap_nfc_dh_privkey) {
2377 : 0 : wpas_wps_nfc_clear(wps);
2378 : 0 : return NULL;
2379 : : }
2380 : :
2381 : 3 : ret = wps_er_nfc_handover_sel(wpa_s->wps_er, wpa_s->wps, use_uuid,
2382 : 3 : use_addr, wpa_s->conf->wps_nfc_dh_pubkey);
2383 [ + - ][ + - ]: 3 : if (ndef && ret) {
2384 : : struct wpabuf *tmp;
2385 : 3 : tmp = ndef_build_wifi(ret);
2386 : 3 : wpabuf_free(ret);
2387 [ - + ]: 3 : if (tmp == NULL)
2388 : 0 : return NULL;
2389 : 3 : ret = tmp;
2390 : : }
2391 : :
2392 : 3 : return ret;
2393 : : #else /* CONFIG_WPS_ER */
2394 : : return NULL;
2395 : : #endif /* CONFIG_WPS_ER */
2396 : : }
2397 : : #endif /* CONFIG_WPS_NFC */
2398 : :
2399 : :
2400 : 4 : struct wpabuf * wpas_wps_nfc_handover_sel(struct wpa_supplicant *wpa_s,
2401 : : int ndef, int cr, const char *uuid)
2402 : : {
2403 : : struct wpabuf *ret;
2404 [ - + ]: 4 : if (!cr)
2405 : 0 : return NULL;
2406 : 4 : ret = wpas_ap_wps_nfc_handover_sel(wpa_s, ndef);
2407 [ + + ]: 4 : if (ret)
2408 : 1 : return ret;
2409 : 4 : return wpas_wps_er_nfc_handover_sel(wpa_s, ndef, uuid);
2410 : : }
2411 : :
2412 : :
2413 : 9 : int wpas_wps_nfc_rx_handover_sel(struct wpa_supplicant *wpa_s,
2414 : : const struct wpabuf *data)
2415 : : {
2416 : : struct wpabuf *wps;
2417 : 9 : int ret = -1;
2418 : : u16 wsc_len;
2419 : : const u8 *pos;
2420 : : struct wpabuf msg;
2421 : : struct wps_parse_attr attr;
2422 : : u16 dev_pw_id;
2423 : 9 : const u8 *bssid = NULL;
2424 : 9 : int freq = 0;
2425 : :
2426 : 9 : wps = ndef_parse_wifi(data);
2427 [ - + ]: 9 : if (wps == NULL)
2428 : 0 : return -1;
2429 : 9 : wpa_printf(MSG_DEBUG, "WPS: Received application/vnd.wfa.wsc "
2430 : : "payload from NFC connection handover");
2431 : 9 : wpa_hexdump_buf(MSG_DEBUG, "WPS: NFC payload", wps);
2432 [ - + ]: 9 : if (wpabuf_len(wps) < 2) {
2433 : 0 : wpa_printf(MSG_DEBUG, "WPS: Too short Wi-Fi Handover Select "
2434 : : "Message");
2435 : 0 : goto out;
2436 : : }
2437 : 9 : pos = wpabuf_head(wps);
2438 : 9 : wsc_len = WPA_GET_BE16(pos);
2439 [ - + ]: 9 : if (wsc_len > wpabuf_len(wps) - 2) {
2440 : 0 : wpa_printf(MSG_DEBUG, "WPS: Invalid WSC attribute length (%u) "
2441 : : "in Wi-Fi Handover Select Message", wsc_len);
2442 : 0 : goto out;
2443 : : }
2444 : 9 : pos += 2;
2445 : :
2446 : 9 : wpa_hexdump(MSG_DEBUG,
2447 : : "WPS: WSC attributes in Wi-Fi Handover Select Message",
2448 : : pos, wsc_len);
2449 [ - + ]: 9 : if (wsc_len < wpabuf_len(wps) - 2) {
2450 : 0 : wpa_hexdump(MSG_DEBUG,
2451 : : "WPS: Ignore extra data after WSC attributes",
2452 : 0 : pos + wsc_len, wpabuf_len(wps) - 2 - wsc_len);
2453 : : }
2454 : :
2455 : 9 : wpabuf_set(&msg, pos, wsc_len);
2456 : 9 : ret = wps_parse_msg(&msg, &attr);
2457 [ - + ]: 9 : if (ret < 0) {
2458 : 0 : wpa_printf(MSG_DEBUG, "WPS: Could not parse WSC attributes in "
2459 : : "Wi-Fi Handover Select Message");
2460 : 0 : goto out;
2461 : : }
2462 : :
2463 [ + - ][ - + ]: 9 : if (attr.oob_dev_password == NULL ||
2464 : 9 : attr.oob_dev_password_len < WPS_OOB_PUBKEY_HASH_LEN + 2) {
2465 : 0 : wpa_printf(MSG_DEBUG, "WPS: No Out-of-Band Device Password "
2466 : : "included in Wi-Fi Handover Select Message");
2467 : 0 : ret = -1;
2468 : 0 : goto out;
2469 : : }
2470 : :
2471 [ - + ]: 9 : if (attr.ssid == NULL) {
2472 : 0 : wpa_printf(MSG_DEBUG, "WPS: No SSID included in Wi-Fi Handover "
2473 : : "Select Message");
2474 : 0 : ret = -1;
2475 : 0 : goto out;
2476 : : }
2477 : :
2478 : 9 : wpa_hexdump_ascii(MSG_DEBUG, "WPS: SSID", attr.ssid, attr.ssid_len);
2479 : :
2480 [ + - ]: 9 : if (attr.mac_addr) {
2481 : 9 : bssid = attr.mac_addr;
2482 : 9 : wpa_printf(MSG_DEBUG, "WPS: MAC Address (BSSID): " MACSTR,
2483 : 54 : MAC2STR(bssid));
2484 : : }
2485 : :
2486 [ + + ]: 9 : if (attr.rf_bands)
2487 : 6 : wpa_printf(MSG_DEBUG, "WPS: RF Bands: %d", *attr.rf_bands);
2488 : :
2489 [ + + ]: 9 : if (attr.ap_channel) {
2490 : 6 : u16 chan = WPA_GET_BE16(attr.ap_channel);
2491 : :
2492 : 6 : wpa_printf(MSG_DEBUG, "WPS: AP Channel: %d", chan);
2493 : :
2494 [ + - ][ + - ]: 6 : if (chan >= 1 && chan <= 13 &&
[ + - ]
2495 [ + - ]: 6 : (attr.rf_bands == NULL || *attr.rf_bands & WPS_RF_24GHZ))
2496 : 6 : freq = 2407 + 5 * chan;
2497 [ # # ][ # # ]: 0 : else if (chan == 14 &&
2498 [ # # ]: 0 : (attr.rf_bands == NULL ||
2499 : 0 : *attr.rf_bands & WPS_RF_24GHZ))
2500 : 0 : freq = 2484;
2501 [ # # ][ # # ]: 0 : else if (chan >= 30 &&
2502 [ # # ]: 0 : (attr.rf_bands == NULL ||
2503 : 0 : *attr.rf_bands & WPS_RF_50GHZ))
2504 : 0 : freq = 5000 + 5 * chan;
2505 : :
2506 [ + - ]: 6 : if (freq) {
2507 : 6 : wpa_printf(MSG_DEBUG,
2508 : : "WPS: AP indicated channel %u -> %u MHz",
2509 : : chan, freq);
2510 : : }
2511 : : }
2512 : :
2513 : 9 : wpa_hexdump(MSG_DEBUG, "WPS: Out-of-Band Device Password",
2514 : 9 : attr.oob_dev_password, attr.oob_dev_password_len);
2515 : 9 : dev_pw_id = WPA_GET_BE16(attr.oob_dev_password +
2516 : : WPS_OOB_PUBKEY_HASH_LEN);
2517 [ - + ]: 9 : if (dev_pw_id != DEV_PW_NFC_CONNECTION_HANDOVER) {
2518 : 0 : wpa_printf(MSG_DEBUG, "WPS: Unexpected OOB Device Password ID "
2519 : : "%u in Wi-Fi Handover Select Message", dev_pw_id);
2520 : 0 : ret = -1;
2521 : 0 : goto out;
2522 : : }
2523 : 9 : wpa_hexdump(MSG_DEBUG, "WPS: AP Public Key hash",
2524 : 9 : attr.oob_dev_password, WPS_OOB_PUBKEY_HASH_LEN);
2525 : :
2526 : 9 : ret = wpas_wps_start_nfc(wpa_s, NULL, bssid, NULL, dev_pw_id, 0,
2527 : : attr.oob_dev_password,
2528 : : attr.ssid, attr.ssid_len, freq);
2529 : :
2530 : : out:
2531 : 9 : wpabuf_free(wps);
2532 : 9 : return ret;
2533 : : }
2534 : :
2535 : :
2536 : 9 : int wpas_wps_nfc_report_handover(struct wpa_supplicant *wpa_s,
2537 : : const struct wpabuf *req,
2538 : : const struct wpabuf *sel)
2539 : : {
2540 : 9 : wpa_printf(MSG_DEBUG, "NFC: WPS connection handover reported");
2541 : 9 : wpa_hexdump_buf_key(MSG_DEBUG, "WPS: Carrier record in request", req);
2542 : 9 : wpa_hexdump_buf_key(MSG_DEBUG, "WPS: Carrier record in select", sel);
2543 : 9 : return wpas_wps_nfc_rx_handover_sel(wpa_s, sel);
2544 : : }
2545 : :
2546 : :
2547 : 3 : int wpas_er_wps_nfc_report_handover(struct wpa_supplicant *wpa_s,
2548 : : const struct wpabuf *req,
2549 : : const struct wpabuf *sel)
2550 : : {
2551 : : struct wpabuf *wps;
2552 : 3 : int ret = -1;
2553 : : u16 wsc_len;
2554 : : const u8 *pos;
2555 : : struct wpabuf msg;
2556 : : struct wps_parse_attr attr;
2557 : : u16 dev_pw_id;
2558 : :
2559 : : /*
2560 : : * Enrollee/station is always initiator of the NFC connection handover,
2561 : : * so use the request message here to find Enrollee public key hash.
2562 : : */
2563 : 3 : wps = ndef_parse_wifi(req);
2564 [ - + ]: 3 : if (wps == NULL)
2565 : 0 : return -1;
2566 : 3 : wpa_printf(MSG_DEBUG, "WPS: Received application/vnd.wfa.wsc "
2567 : : "payload from NFC connection handover");
2568 : 3 : wpa_hexdump_buf(MSG_DEBUG, "WPS: NFC payload", wps);
2569 [ - + ]: 3 : if (wpabuf_len(wps) < 2) {
2570 : 0 : wpa_printf(MSG_DEBUG, "WPS: Too short Wi-Fi Handover Request "
2571 : : "Message");
2572 : 0 : goto out;
2573 : : }
2574 : 3 : pos = wpabuf_head(wps);
2575 : 3 : wsc_len = WPA_GET_BE16(pos);
2576 [ - + ]: 3 : if (wsc_len > wpabuf_len(wps) - 2) {
2577 : 0 : wpa_printf(MSG_DEBUG, "WPS: Invalid WSC attribute length (%u) "
2578 : : "in rt Wi-Fi Handover Request Message", wsc_len);
2579 : 0 : goto out;
2580 : : }
2581 : 3 : pos += 2;
2582 : :
2583 : 3 : wpa_hexdump(MSG_DEBUG,
2584 : : "WPS: WSC attributes in Wi-Fi Handover Request Message",
2585 : : pos, wsc_len);
2586 [ - + ]: 3 : if (wsc_len < wpabuf_len(wps) - 2) {
2587 : 0 : wpa_hexdump(MSG_DEBUG,
2588 : : "WPS: Ignore extra data after WSC attributes",
2589 : 0 : pos + wsc_len, wpabuf_len(wps) - 2 - wsc_len);
2590 : : }
2591 : :
2592 : 3 : wpabuf_set(&msg, pos, wsc_len);
2593 : 3 : ret = wps_parse_msg(&msg, &attr);
2594 [ - + ]: 3 : if (ret < 0) {
2595 : 0 : wpa_printf(MSG_DEBUG, "WPS: Could not parse WSC attributes in "
2596 : : "Wi-Fi Handover Request Message");
2597 : 0 : goto out;
2598 : : }
2599 : :
2600 [ + - ][ - + ]: 3 : if (attr.oob_dev_password == NULL ||
2601 : 3 : attr.oob_dev_password_len < WPS_OOB_PUBKEY_HASH_LEN + 2) {
2602 : 0 : wpa_printf(MSG_DEBUG, "WPS: No Out-of-Band Device Password "
2603 : : "included in Wi-Fi Handover Request Message");
2604 : 0 : ret = -1;
2605 : 0 : goto out;
2606 : : }
2607 : :
2608 [ - + ]: 3 : if (attr.uuid_e == NULL) {
2609 : 0 : wpa_printf(MSG_DEBUG, "WPS: No UUID-E included in Wi-Fi "
2610 : : "Handover Request Message");
2611 : 0 : ret = -1;
2612 : 0 : goto out;
2613 : : }
2614 : :
2615 : 3 : wpa_hexdump(MSG_DEBUG, "WPS: UUID-E", attr.uuid_e, WPS_UUID_LEN);
2616 : :
2617 : 3 : wpa_hexdump(MSG_DEBUG, "WPS: Out-of-Band Device Password",
2618 : 3 : attr.oob_dev_password, attr.oob_dev_password_len);
2619 : 3 : dev_pw_id = WPA_GET_BE16(attr.oob_dev_password +
2620 : : WPS_OOB_PUBKEY_HASH_LEN);
2621 [ - + ]: 3 : if (dev_pw_id != DEV_PW_NFC_CONNECTION_HANDOVER) {
2622 : 0 : wpa_printf(MSG_DEBUG, "WPS: Unexpected OOB Device Password ID "
2623 : : "%u in Wi-Fi Handover Request Message", dev_pw_id);
2624 : 0 : ret = -1;
2625 : 0 : goto out;
2626 : : }
2627 : 3 : wpa_hexdump(MSG_DEBUG, "WPS: Enrollee Public Key hash",
2628 : 3 : attr.oob_dev_password, WPS_OOB_PUBKEY_HASH_LEN);
2629 : :
2630 : 3 : ret = wps_registrar_add_nfc_pw_token(wpa_s->wps->registrar,
2631 : : attr.oob_dev_password,
2632 : : DEV_PW_NFC_CONNECTION_HANDOVER,
2633 : : NULL, 0, 1);
2634 : :
2635 : : out:
2636 : 3 : wpabuf_free(wps);
2637 : 3 : return ret;
2638 : : }
2639 : :
2640 : : #endif /* CONFIG_WPS_NFC */
2641 : :
2642 : :
2643 : 571 : static void wpas_wps_dump_ap_info(struct wpa_supplicant *wpa_s)
2644 : : {
2645 : : size_t i;
2646 : : struct os_reltime now;
2647 : :
2648 [ - + ]: 571 : if (wpa_debug_level > MSG_DEBUG)
2649 : 0 : return;
2650 : :
2651 [ + + ]: 571 : if (wpa_s->wps_ap == NULL)
2652 : 355 : return;
2653 : :
2654 : 216 : os_get_reltime(&now);
2655 : :
2656 [ + + ]: 805 : for (i = 0; i < wpa_s->num_wps_ap; i++) {
2657 : 234 : struct wps_ap_info *ap = &wpa_s->wps_ap[i];
2658 : 234 : struct wpa_blacklist *e = wpa_blacklist_get(wpa_s, ap->bssid);
2659 : :
2660 [ + + ][ - + ]: 234 : wpa_printf(MSG_DEBUG, "WPS: AP[%d] " MACSTR " type=%d "
2661 : : "tries=%d last_attempt=%d sec ago blacklist=%d",
2662 : 1404 : (int) i, MAC2STR(ap->bssid), ap->type, ap->tries,
2663 : 234 : ap->last_attempt.sec > 0 ?
2664 : 0 : (int) now.sec - (int) ap->last_attempt.sec : -1,
2665 : : e ? e->count : 0);
2666 : : }
2667 : : }
2668 : :
2669 : :
2670 : 349 : static struct wps_ap_info * wpas_wps_get_ap_info(struct wpa_supplicant *wpa_s,
2671 : : const u8 *bssid)
2672 : : {
2673 : : size_t i;
2674 : :
2675 [ + + ]: 349 : if (wpa_s->wps_ap == NULL)
2676 : 188 : return NULL;
2677 : :
2678 [ + + ]: 186 : for (i = 0; i < wpa_s->num_wps_ap; i++) {
2679 : 171 : struct wps_ap_info *ap = &wpa_s->wps_ap[i];
2680 [ + + ]: 171 : if (os_memcmp(ap->bssid, bssid, ETH_ALEN) == 0)
2681 : 146 : return ap;
2682 : : }
2683 : :
2684 : 349 : return NULL;
2685 : : }
2686 : :
2687 : :
2688 : 691 : static void wpas_wps_update_ap_info_bss(struct wpa_supplicant *wpa_s,
2689 : : struct wpa_scan_res *res)
2690 : : {
2691 : : struct wpabuf *wps;
2692 : : enum wps_ap_info_type type;
2693 : : struct wps_ap_info *ap;
2694 : : int r;
2695 : :
2696 [ + + ]: 691 : if (wpa_scan_get_vendor_ie(res, WPS_IE_VENDOR_TYPE) == NULL)
2697 : 441 : return;
2698 : :
2699 : 250 : wps = wpa_scan_get_vendor_ie_multi(res, WPS_IE_VENDOR_TYPE);
2700 [ - + ]: 250 : if (wps == NULL)
2701 : 0 : return;
2702 : :
2703 : 250 : r = wps_is_addr_authorized(wps, wpa_s->own_addr, 1);
2704 [ + + ]: 250 : if (r == 2)
2705 : 39 : type = WPS_AP_SEL_REG_OUR;
2706 [ + + ]: 211 : else if (r == 1)
2707 : 96 : type = WPS_AP_SEL_REG;
2708 : : else
2709 : 115 : type = WPS_AP_NOT_SEL_REG;
2710 : :
2711 : 250 : wpabuf_free(wps);
2712 : :
2713 : 250 : ap = wpas_wps_get_ap_info(wpa_s, res->bssid);
2714 [ + + ]: 250 : if (ap) {
2715 [ + + ]: 47 : if (ap->type != type) {
2716 : 24 : wpa_printf(MSG_DEBUG, "WPS: AP " MACSTR
2717 : : " changed type %d -> %d",
2718 : 144 : MAC2STR(res->bssid), ap->type, type);
2719 : 24 : ap->type = type;
2720 [ + + ]: 24 : if (type != WPS_AP_NOT_SEL_REG)
2721 : 6 : wpa_blacklist_del(wpa_s, ap->bssid);
2722 : : }
2723 : 47 : return;
2724 : : }
2725 : :
2726 : 203 : ap = os_realloc_array(wpa_s->wps_ap, wpa_s->num_wps_ap + 1,
2727 : : sizeof(struct wps_ap_info));
2728 [ - + ]: 203 : if (ap == NULL)
2729 : 0 : return;
2730 : :
2731 : 203 : wpa_s->wps_ap = ap;
2732 : 203 : ap = &wpa_s->wps_ap[wpa_s->num_wps_ap];
2733 : 203 : wpa_s->num_wps_ap++;
2734 : :
2735 : 203 : os_memset(ap, 0, sizeof(*ap));
2736 : 203 : os_memcpy(ap->bssid, res->bssid, ETH_ALEN);
2737 : 203 : ap->type = type;
2738 : 691 : wpa_printf(MSG_DEBUG, "WPS: AP " MACSTR " type %d added",
2739 : 1218 : MAC2STR(ap->bssid), ap->type);
2740 : : }
2741 : :
2742 : :
2743 : 571 : void wpas_wps_update_ap_info(struct wpa_supplicant *wpa_s,
2744 : : struct wpa_scan_results *scan_res)
2745 : : {
2746 : : size_t i;
2747 : :
2748 [ + + ]: 1262 : for (i = 0; i < scan_res->num; i++)
2749 : 691 : wpas_wps_update_ap_info_bss(wpa_s, scan_res->res[i]);
2750 : :
2751 : 571 : wpas_wps_dump_ap_info(wpa_s);
2752 : 571 : }
2753 : :
2754 : :
2755 : 683 : void wpas_wps_notify_assoc(struct wpa_supplicant *wpa_s, const u8 *bssid)
2756 : : {
2757 : : struct wps_ap_info *ap;
2758 : :
2759 : 683 : wpa_s->after_wps = 0;
2760 : :
2761 [ + + ]: 683 : if (!wpa_s->wps_ap_iter)
2762 : 584 : return;
2763 : 99 : ap = wpas_wps_get_ap_info(wpa_s, bssid);
2764 [ - + ]: 99 : if (ap == NULL)
2765 : 0 : return;
2766 : 99 : ap->tries++;
2767 : 683 : os_get_reltime(&ap->last_attempt);
2768 : : }
|