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