Branch data Line data Source code
1 : : /*
2 : : * Wi-Fi Protected Setup - Enrollee
3 : : * Copyright (c) 2008, 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 "crypto/crypto.h"
13 : : #include "crypto/sha256.h"
14 : : #include "crypto/random.h"
15 : : #include "wps_i.h"
16 : : #include "wps_dev_attr.h"
17 : :
18 : :
19 : 156 : static int wps_build_wps_state(struct wps_data *wps, struct wpabuf *msg)
20 : : {
21 : : u8 state;
22 [ + + ]: 156 : if (wps->wps->ap)
23 : 40 : state = wps->wps->wps_state;
24 : : else
25 : 116 : state = WPS_STATE_NOT_CONFIGURED;
26 : 156 : wpa_printf(MSG_DEBUG, "WPS: * Wi-Fi Protected Setup State (%d)",
27 : : state);
28 : 156 : wpabuf_put_be16(msg, ATTR_WPS_STATE);
29 : 156 : wpabuf_put_be16(msg, 1);
30 : 156 : wpabuf_put_u8(msg, state);
31 : 156 : return 0;
32 : : }
33 : :
34 : :
35 : 122 : static int wps_build_e_hash(struct wps_data *wps, struct wpabuf *msg)
36 : : {
37 : : u8 *hash;
38 : : const u8 *addr[4];
39 : : size_t len[4];
40 : :
41 [ - + ]: 122 : if (random_get_bytes(wps->snonce, 2 * WPS_SECRET_NONCE_LEN) < 0)
42 : 0 : return -1;
43 : 122 : wpa_hexdump(MSG_DEBUG, "WPS: E-S1", wps->snonce, WPS_SECRET_NONCE_LEN);
44 : 122 : wpa_hexdump(MSG_DEBUG, "WPS: E-S2",
45 : : wps->snonce + WPS_SECRET_NONCE_LEN, WPS_SECRET_NONCE_LEN);
46 : :
47 [ - + ][ + - ]: 122 : if (wps->dh_pubkey_e == NULL || wps->dh_pubkey_r == NULL) {
48 : 0 : wpa_printf(MSG_DEBUG, "WPS: DH public keys not available for "
49 : : "E-Hash derivation");
50 : 0 : return -1;
51 : : }
52 : :
53 : 122 : wpa_printf(MSG_DEBUG, "WPS: * E-Hash1");
54 : 122 : wpabuf_put_be16(msg, ATTR_E_HASH1);
55 : 122 : wpabuf_put_be16(msg, SHA256_MAC_LEN);
56 : 122 : hash = wpabuf_put(msg, SHA256_MAC_LEN);
57 : : /* E-Hash1 = HMAC_AuthKey(E-S1 || PSK1 || PK_E || PK_R) */
58 : 122 : addr[0] = wps->snonce;
59 : 122 : len[0] = WPS_SECRET_NONCE_LEN;
60 : 122 : addr[1] = wps->psk1;
61 : 122 : len[1] = WPS_PSK_LEN;
62 : 122 : addr[2] = wpabuf_head(wps->dh_pubkey_e);
63 : 122 : len[2] = wpabuf_len(wps->dh_pubkey_e);
64 : 122 : addr[3] = wpabuf_head(wps->dh_pubkey_r);
65 : 122 : len[3] = wpabuf_len(wps->dh_pubkey_r);
66 : 122 : hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 4, addr, len, hash);
67 : 122 : wpa_hexdump(MSG_DEBUG, "WPS: E-Hash1", hash, SHA256_MAC_LEN);
68 : :
69 : 122 : wpa_printf(MSG_DEBUG, "WPS: * E-Hash2");
70 : 122 : wpabuf_put_be16(msg, ATTR_E_HASH2);
71 : 122 : wpabuf_put_be16(msg, SHA256_MAC_LEN);
72 : 122 : hash = wpabuf_put(msg, SHA256_MAC_LEN);
73 : : /* E-Hash2 = HMAC_AuthKey(E-S2 || PSK2 || PK_E || PK_R) */
74 : 122 : addr[0] = wps->snonce + WPS_SECRET_NONCE_LEN;
75 : 122 : addr[1] = wps->psk2;
76 : 122 : hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 4, addr, len, hash);
77 : 122 : wpa_hexdump(MSG_DEBUG, "WPS: E-Hash2", hash, SHA256_MAC_LEN);
78 : :
79 : 122 : return 0;
80 : : }
81 : :
82 : :
83 : 116 : static int wps_build_e_snonce1(struct wps_data *wps, struct wpabuf *msg)
84 : : {
85 : 116 : wpa_printf(MSG_DEBUG, "WPS: * E-SNonce1");
86 : 116 : wpabuf_put_be16(msg, ATTR_E_SNONCE1);
87 : 116 : wpabuf_put_be16(msg, WPS_SECRET_NONCE_LEN);
88 : 116 : wpabuf_put_data(msg, wps->snonce, WPS_SECRET_NONCE_LEN);
89 : 116 : return 0;
90 : : }
91 : :
92 : :
93 : 113 : static int wps_build_e_snonce2(struct wps_data *wps, struct wpabuf *msg)
94 : : {
95 : 113 : wpa_printf(MSG_DEBUG, "WPS: * E-SNonce2");
96 : 113 : wpabuf_put_be16(msg, ATTR_E_SNONCE2);
97 : 113 : wpabuf_put_be16(msg, WPS_SECRET_NONCE_LEN);
98 : 113 : wpabuf_put_data(msg, wps->snonce + WPS_SECRET_NONCE_LEN,
99 : : WPS_SECRET_NONCE_LEN);
100 : 113 : return 0;
101 : : }
102 : :
103 : :
104 : 156 : static struct wpabuf * wps_build_m1(struct wps_data *wps)
105 : : {
106 : : struct wpabuf *msg;
107 : : u16 config_methods;
108 : :
109 [ - + ]: 156 : if (random_get_bytes(wps->nonce_e, WPS_NONCE_LEN) < 0)
110 : 0 : return NULL;
111 : 156 : wpa_hexdump(MSG_DEBUG, "WPS: Enrollee Nonce",
112 : 156 : wps->nonce_e, WPS_NONCE_LEN);
113 : :
114 : 156 : wpa_printf(MSG_DEBUG, "WPS: Building Message M1");
115 : 156 : msg = wpabuf_alloc(1000);
116 [ - + ]: 156 : if (msg == NULL)
117 : 0 : return NULL;
118 : :
119 : 156 : config_methods = wps->wps->config_methods;
120 [ + + ][ + - ]: 156 : if (wps->wps->ap && !wps->pbc_in_m1 &&
[ + + ]
121 [ - + ]: 3 : (wps->dev_password_len != 0 ||
122 : 3 : (config_methods & WPS_CONFIG_DISPLAY))) {
123 : : /*
124 : : * These are the methods that the AP supports as an Enrollee
125 : : * for adding external Registrars, so remove PushButton.
126 : : *
127 : : * As a workaround for Windows 7 mechanism for probing WPS
128 : : * capabilities from M1, leave PushButton option if no PIN
129 : : * method is available or if WPS configuration enables PBC
130 : : * workaround.
131 : : */
132 : 37 : config_methods &= ~WPS_CONFIG_PUSHBUTTON;
133 : : #ifdef CONFIG_WPS2
134 : 37 : config_methods &= ~(WPS_CONFIG_VIRT_PUSHBUTTON |
135 : : WPS_CONFIG_PHY_PUSHBUTTON);
136 : : #endif /* CONFIG_WPS2 */
137 : : }
138 : :
139 [ + - + - ]: 312 : if (wps_build_version(msg) ||
140 [ + - ]: 312 : wps_build_msg_type(msg, WPS_M1) ||
141 [ + - ]: 312 : wps_build_uuid_e(msg, wps->uuid_e) ||
142 [ + - ]: 312 : wps_build_mac_addr(msg, wps->mac_addr_e) ||
143 [ + - ]: 312 : wps_build_enrollee_nonce(wps, msg) ||
144 [ + - ]: 312 : wps_build_public_key(wps, msg) ||
145 [ + - ]: 312 : wps_build_auth_type_flags(wps, msg) ||
146 [ + - ]: 312 : wps_build_encr_type_flags(wps, msg) ||
147 [ + - ]: 312 : wps_build_conn_type_flags(wps, msg) ||
148 [ + - ]: 312 : wps_build_config_methods(msg, config_methods) ||
149 [ + - ]: 312 : wps_build_wps_state(wps, msg) ||
150 [ + - ]: 312 : wps_build_device_attrs(&wps->wps->dev, msg) ||
151 : 156 : wps_build_rf_bands(&wps->wps->dev, msg,
152 [ + - ]: 312 : wps->wps->rf_band_cb(wps->wps->cb_ctx)) ||
153 [ + - ]: 312 : wps_build_assoc_state(wps, msg) ||
154 [ + - ]: 312 : wps_build_dev_password_id(msg, wps->dev_pw_id) ||
155 [ + - ]: 312 : wps_build_config_error(msg, WPS_CFG_NO_ERROR) ||
156 [ + - ]: 312 : wps_build_os_version(&wps->wps->dev, msg) ||
157 [ - + ]: 312 : wps_build_wfa_ext(msg, 0, NULL, 0) ||
158 : 156 : wps_build_vendor_ext_m1(&wps->wps->dev, msg)) {
159 : 0 : wpabuf_free(msg);
160 : 0 : return NULL;
161 : : }
162 : :
163 : 156 : wps->state = RECV_M2;
164 : 156 : return msg;
165 : : }
166 : :
167 : :
168 : 122 : static struct wpabuf * wps_build_m3(struct wps_data *wps)
169 : : {
170 : : struct wpabuf *msg;
171 : :
172 : 122 : wpa_printf(MSG_DEBUG, "WPS: Building Message M3");
173 : :
174 [ - + ]: 122 : if (wps->dev_password == NULL) {
175 : 0 : wpa_printf(MSG_DEBUG, "WPS: No Device Password available");
176 : 0 : return NULL;
177 : : }
178 : 122 : wps_derive_psk(wps, wps->dev_password, wps->dev_password_len);
179 : :
180 : 122 : msg = wpabuf_alloc(1000);
181 [ - + ]: 122 : if (msg == NULL)
182 : 0 : return NULL;
183 : :
184 [ + - + - ]: 244 : if (wps_build_version(msg) ||
185 [ + - ]: 244 : wps_build_msg_type(msg, WPS_M3) ||
186 [ + - ]: 244 : wps_build_registrar_nonce(wps, msg) ||
187 [ + - ]: 244 : wps_build_e_hash(wps, msg) ||
188 [ - + ]: 244 : wps_build_wfa_ext(msg, 0, NULL, 0) ||
189 : 122 : wps_build_authenticator(wps, msg)) {
190 : 0 : wpabuf_free(msg);
191 : 0 : return NULL;
192 : : }
193 : :
194 : 122 : wps->state = RECV_M4;
195 : 122 : return msg;
196 : : }
197 : :
198 : :
199 : 116 : static struct wpabuf * wps_build_m5(struct wps_data *wps)
200 : : {
201 : : struct wpabuf *msg, *plain;
202 : :
203 : 116 : wpa_printf(MSG_DEBUG, "WPS: Building Message M5");
204 : :
205 : 116 : plain = wpabuf_alloc(200);
206 [ - + ]: 116 : if (plain == NULL)
207 : 0 : return NULL;
208 : :
209 : 116 : msg = wpabuf_alloc(1000);
210 [ - + ]: 116 : if (msg == NULL) {
211 : 0 : wpabuf_free(plain);
212 : 0 : return NULL;
213 : : }
214 : :
215 [ + - + - ]: 232 : if (wps_build_version(msg) ||
216 [ + - ]: 232 : wps_build_msg_type(msg, WPS_M5) ||
217 [ + - ]: 232 : wps_build_registrar_nonce(wps, msg) ||
218 [ + - ]: 232 : wps_build_e_snonce1(wps, plain) ||
219 [ + - ]: 232 : wps_build_key_wrap_auth(wps, plain) ||
220 [ + - ]: 232 : wps_build_encr_settings(wps, msg, plain) ||
221 [ - + ]: 232 : wps_build_wfa_ext(msg, 0, NULL, 0) ||
222 : 116 : wps_build_authenticator(wps, msg)) {
223 : 0 : wpabuf_free(plain);
224 : 0 : wpabuf_free(msg);
225 : 0 : return NULL;
226 : : }
227 : 116 : wpabuf_free(plain);
228 : :
229 : 116 : wps->state = RECV_M6;
230 : 116 : return msg;
231 : : }
232 : :
233 : :
234 : 18 : static int wps_build_cred_ssid(struct wps_data *wps, struct wpabuf *msg)
235 : : {
236 : 18 : wpa_printf(MSG_DEBUG, "WPS: * SSID");
237 : 18 : wpabuf_put_be16(msg, ATTR_SSID);
238 : 18 : wpabuf_put_be16(msg, wps->wps->ssid_len);
239 : 18 : wpabuf_put_data(msg, wps->wps->ssid, wps->wps->ssid_len);
240 : 18 : return 0;
241 : : }
242 : :
243 : :
244 : 18 : static int wps_build_cred_auth_type(struct wps_data *wps, struct wpabuf *msg)
245 : : {
246 : 18 : wpa_printf(MSG_DEBUG, "WPS: * Authentication Type (0x%x)",
247 : 18 : wps->wps->ap_auth_type);
248 : 18 : wpabuf_put_be16(msg, ATTR_AUTH_TYPE);
249 : 18 : wpabuf_put_be16(msg, 2);
250 : 18 : wpabuf_put_be16(msg, wps->wps->ap_auth_type);
251 : 18 : return 0;
252 : : }
253 : :
254 : :
255 : 18 : static int wps_build_cred_encr_type(struct wps_data *wps, struct wpabuf *msg)
256 : : {
257 : 18 : wpa_printf(MSG_DEBUG, "WPS: * Encryption Type (0x%x)",
258 : 18 : wps->wps->ap_encr_type);
259 : 18 : wpabuf_put_be16(msg, ATTR_ENCR_TYPE);
260 : 18 : wpabuf_put_be16(msg, 2);
261 : 18 : wpabuf_put_be16(msg, wps->wps->ap_encr_type);
262 : 18 : return 0;
263 : : }
264 : :
265 : :
266 : 18 : static int wps_build_cred_network_key(struct wps_data *wps, struct wpabuf *msg)
267 : : {
268 : 18 : wpa_printf(MSG_DEBUG, "WPS: * Network Key (len=%u)",
269 : 18 : (unsigned int) wps->wps->network_key_len);
270 : 18 : wpabuf_put_be16(msg, ATTR_NETWORK_KEY);
271 : 18 : wpabuf_put_be16(msg, wps->wps->network_key_len);
272 : 18 : wpabuf_put_data(msg, wps->wps->network_key, wps->wps->network_key_len);
273 : 18 : return 0;
274 : : }
275 : :
276 : :
277 : 18 : static int wps_build_cred_mac_addr(struct wps_data *wps, struct wpabuf *msg)
278 : : {
279 : 18 : wpa_printf(MSG_DEBUG, "WPS: * MAC Address (AP BSSID)");
280 : 18 : wpabuf_put_be16(msg, ATTR_MAC_ADDR);
281 : 18 : wpabuf_put_be16(msg, ETH_ALEN);
282 : 18 : wpabuf_put_data(msg, wps->wps->dev.mac_addr, ETH_ALEN);
283 : 18 : return 0;
284 : : }
285 : :
286 : :
287 : 18 : static int wps_build_ap_settings(struct wps_data *wps, struct wpabuf *plain)
288 : : {
289 : : const u8 *start, *end;
290 : : int ret;
291 : :
292 [ - + ]: 18 : if (wps->wps->ap_settings) {
293 : 0 : wpa_printf(MSG_DEBUG, "WPS: * AP Settings (pre-configured)");
294 : 0 : wpabuf_put_data(plain, wps->wps->ap_settings,
295 : 0 : wps->wps->ap_settings_len);
296 : 0 : return 0;
297 : : }
298 : :
299 : 18 : wpa_printf(MSG_DEBUG, "WPS: * AP Settings based on current configuration");
300 : 18 : start = wpabuf_put(plain, 0);
301 [ + - + - ]: 54 : ret = wps_build_cred_ssid(wps, plain) ||
302 [ + - ]: 36 : wps_build_cred_mac_addr(wps, plain) ||
303 [ + - ]: 36 : wps_build_cred_auth_type(wps, plain) ||
304 [ - + ]: 36 : wps_build_cred_encr_type(wps, plain) ||
305 : 18 : wps_build_cred_network_key(wps, plain);
306 : 18 : end = wpabuf_put(plain, 0);
307 : :
308 : 18 : wpa_hexdump_key(MSG_DEBUG, "WPS: Plaintext AP Settings",
309 : 18 : start, end - start);
310 : :
311 : 18 : return ret;
312 : : }
313 : :
314 : :
315 : 113 : static struct wpabuf * wps_build_m7(struct wps_data *wps)
316 : : {
317 : : struct wpabuf *msg, *plain;
318 : :
319 : 113 : wpa_printf(MSG_DEBUG, "WPS: Building Message M7");
320 : :
321 : 113 : plain = wpabuf_alloc(500 + wps->wps->ap_settings_len);
322 [ - + ]: 113 : if (plain == NULL)
323 : 0 : return NULL;
324 : :
325 : 113 : msg = wpabuf_alloc(1000 + wps->wps->ap_settings_len);
326 [ - + ]: 113 : if (msg == NULL) {
327 : 0 : wpabuf_free(plain);
328 : 0 : return NULL;
329 : : }
330 : :
331 [ + - + - ]: 226 : if (wps_build_version(msg) ||
332 [ + - ]: 226 : wps_build_msg_type(msg, WPS_M7) ||
333 [ + - ]: 226 : wps_build_registrar_nonce(wps, msg) ||
334 [ + + ]: 226 : wps_build_e_snonce2(wps, plain) ||
335 [ + - + - ]: 131 : (wps->wps->ap && wps_build_ap_settings(wps, plain)) ||
336 [ + - ]: 226 : wps_build_key_wrap_auth(wps, plain) ||
337 [ + - ]: 226 : wps_build_encr_settings(wps, msg, plain) ||
338 [ - + ]: 226 : wps_build_wfa_ext(msg, 0, NULL, 0) ||
339 : 113 : wps_build_authenticator(wps, msg)) {
340 : 0 : wpabuf_free(plain);
341 : 0 : wpabuf_free(msg);
342 : 0 : return NULL;
343 : : }
344 : 113 : wpabuf_free(plain);
345 : :
346 [ + - ][ + + ]: 113 : if (wps->wps->ap && wps->wps->registrar) {
347 : : /*
348 : : * If the Registrar is only learning our current configuration,
349 : : * it may not continue protocol run to successful completion.
350 : : * Store information here to make sure it remains available.
351 : : */
352 : 18 : wps_device_store(wps->wps->registrar, &wps->peer_dev,
353 : 18 : wps->uuid_r);
354 : : }
355 : :
356 : 113 : wps->state = RECV_M8;
357 : 113 : return msg;
358 : : }
359 : :
360 : :
361 : 111 : static struct wpabuf * wps_build_wsc_done(struct wps_data *wps)
362 : : {
363 : : struct wpabuf *msg;
364 : :
365 : 111 : wpa_printf(MSG_DEBUG, "WPS: Building Message WSC_Done");
366 : :
367 : 111 : msg = wpabuf_alloc(1000);
368 [ - + ]: 111 : if (msg == NULL)
369 : 0 : return NULL;
370 : :
371 [ + - + - ]: 222 : if (wps_build_version(msg) ||
372 [ + - ]: 222 : wps_build_msg_type(msg, WPS_WSC_DONE) ||
373 [ + - ]: 222 : wps_build_enrollee_nonce(wps, msg) ||
374 [ - + ]: 222 : wps_build_registrar_nonce(wps, msg) ||
375 : 111 : wps_build_wfa_ext(msg, 0, NULL, 0)) {
376 : 0 : wpabuf_free(msg);
377 : 0 : return NULL;
378 : : }
379 : :
380 [ + + ]: 111 : if (wps->wps->ap)
381 : 5 : wps->state = RECV_ACK;
382 : : else {
383 : 106 : wps_success_event(wps->wps, wps->peer_dev.mac_addr);
384 : 106 : wps->state = WPS_FINISHED;
385 : : }
386 : 111 : return msg;
387 : : }
388 : :
389 : :
390 : 649 : struct wpabuf * wps_enrollee_get_msg(struct wps_data *wps,
391 : : enum wsc_op_code *op_code)
392 : : {
393 : : struct wpabuf *msg;
394 : :
395 [ + + + + : 649 : switch (wps->state) {
+ + + - ]
396 : : case SEND_M1:
397 : 156 : msg = wps_build_m1(wps);
398 : 156 : *op_code = WSC_MSG;
399 : 156 : break;
400 : : case SEND_M3:
401 : 122 : msg = wps_build_m3(wps);
402 : 122 : *op_code = WSC_MSG;
403 : 122 : break;
404 : : case SEND_M5:
405 : 116 : msg = wps_build_m5(wps);
406 : 116 : *op_code = WSC_MSG;
407 : 116 : break;
408 : : case SEND_M7:
409 : 113 : msg = wps_build_m7(wps);
410 : 113 : *op_code = WSC_MSG;
411 : 113 : break;
412 : : case RECEIVED_M2D:
413 [ - + ]: 13 : if (wps->wps->ap) {
414 : 0 : msg = wps_build_wsc_nack(wps);
415 : 0 : *op_code = WSC_NACK;
416 : 0 : break;
417 : : }
418 : 13 : msg = wps_build_wsc_ack(wps);
419 : 13 : *op_code = WSC_ACK;
420 [ + - ]: 13 : if (msg) {
421 : : /* Another M2/M2D may be received */
422 : 13 : wps->state = RECV_M2;
423 : : }
424 : 13 : break;
425 : : case SEND_WSC_NACK:
426 : 18 : msg = wps_build_wsc_nack(wps);
427 : 18 : *op_code = WSC_NACK;
428 : 18 : break;
429 : : case WPS_MSG_DONE:
430 : 111 : msg = wps_build_wsc_done(wps);
431 : 111 : *op_code = WSC_Done;
432 : 111 : break;
433 : : default:
434 : 0 : wpa_printf(MSG_DEBUG, "WPS: Unsupported state %d for building "
435 : 0 : "a message", wps->state);
436 : 0 : msg = NULL;
437 : 0 : break;
438 : : }
439 : :
440 [ + + ][ + - ]: 649 : if (*op_code == WSC_MSG && msg) {
441 : : /* Save a copy of the last message for Authenticator derivation
442 : : */
443 : 507 : wpabuf_free(wps->last_msg);
444 : 507 : wps->last_msg = wpabuf_dup(msg);
445 : : }
446 : :
447 : 649 : return msg;
448 : : }
449 : :
450 : :
451 : 141 : static int wps_process_registrar_nonce(struct wps_data *wps, const u8 *r_nonce)
452 : : {
453 [ - + ]: 141 : if (r_nonce == NULL) {
454 : 0 : wpa_printf(MSG_DEBUG, "WPS: No Registrar Nonce received");
455 : 0 : return -1;
456 : : }
457 : :
458 : 141 : os_memcpy(wps->nonce_r, r_nonce, WPS_NONCE_LEN);
459 : 141 : wpa_hexdump(MSG_DEBUG, "WPS: Registrar Nonce",
460 : 141 : wps->nonce_r, WPS_NONCE_LEN);
461 : :
462 : 141 : return 0;
463 : : }
464 : :
465 : :
466 : 480 : static int wps_process_enrollee_nonce(struct wps_data *wps, const u8 *e_nonce)
467 : : {
468 [ - + ]: 480 : if (e_nonce == NULL) {
469 : 0 : wpa_printf(MSG_DEBUG, "WPS: No Enrollee Nonce received");
470 : 0 : return -1;
471 : : }
472 : :
473 [ - + ]: 480 : if (os_memcmp(wps->nonce_e, e_nonce, WPS_NONCE_LEN) != 0) {
474 : 0 : wpa_printf(MSG_DEBUG, "WPS: Invalid Enrollee Nonce received");
475 : 0 : return -1;
476 : : }
477 : :
478 : 480 : return 0;
479 : : }
480 : :
481 : :
482 : 141 : static int wps_process_uuid_r(struct wps_data *wps, const u8 *uuid_r)
483 : : {
484 [ - + ]: 141 : if (uuid_r == NULL) {
485 : 0 : wpa_printf(MSG_DEBUG, "WPS: No UUID-R received");
486 : 0 : return -1;
487 : : }
488 : :
489 : 141 : os_memcpy(wps->uuid_r, uuid_r, WPS_UUID_LEN);
490 : 141 : wpa_hexdump(MSG_DEBUG, "WPS: UUID-R", wps->uuid_r, WPS_UUID_LEN);
491 : :
492 : 141 : return 0;
493 : : }
494 : :
495 : :
496 : 135 : static int wps_process_pubkey(struct wps_data *wps, const u8 *pk,
497 : : size_t pk_len)
498 : : {
499 [ + - ][ - + ]: 135 : if (pk == NULL || pk_len == 0) {
500 : 0 : wpa_printf(MSG_DEBUG, "WPS: No Public Key received");
501 : 0 : return -1;
502 : : }
503 : :
504 [ + + ]: 135 : if (wps->peer_pubkey_hash_set) {
505 : : u8 hash[WPS_HASH_LEN];
506 : 13 : sha256_vector(1, &pk, &pk_len, hash);
507 [ + + ]: 13 : if (os_memcmp(hash, wps->peer_pubkey_hash,
508 : : WPS_OOB_PUBKEY_HASH_LEN) != 0) {
509 : 2 : wpa_printf(MSG_ERROR, "WPS: Public Key hash mismatch");
510 : 2 : wpa_hexdump(MSG_DEBUG, "WPS: Received public key",
511 : : pk, pk_len);
512 : 2 : wpa_hexdump(MSG_DEBUG, "WPS: Calculated public key "
513 : : "hash", hash, WPS_OOB_PUBKEY_HASH_LEN);
514 : 2 : wpa_hexdump(MSG_DEBUG, "WPS: Expected public key hash",
515 : 2 : wps->peer_pubkey_hash,
516 : : WPS_OOB_PUBKEY_HASH_LEN);
517 : 2 : wps->config_error = WPS_CFG_PUBLIC_KEY_HASH_MISMATCH;
518 : 2 : return -1;
519 : : }
520 : : }
521 : :
522 : 133 : wpabuf_free(wps->dh_pubkey_r);
523 : 133 : wps->dh_pubkey_r = wpabuf_alloc_copy(pk, pk_len);
524 [ - + ]: 133 : if (wps->dh_pubkey_r == NULL)
525 : 0 : return -1;
526 : :
527 [ - + ]: 133 : if (wps_derive_keys(wps) < 0)
528 : 0 : return -1;
529 : :
530 : 135 : return 0;
531 : : }
532 : :
533 : :
534 : 122 : static int wps_process_r_hash1(struct wps_data *wps, const u8 *r_hash1)
535 : : {
536 [ - + ]: 122 : if (r_hash1 == NULL) {
537 : 0 : wpa_printf(MSG_DEBUG, "WPS: No R-Hash1 received");
538 : 0 : return -1;
539 : : }
540 : :
541 : 122 : os_memcpy(wps->peer_hash1, r_hash1, WPS_HASH_LEN);
542 : 122 : wpa_hexdump(MSG_DEBUG, "WPS: R-Hash1", wps->peer_hash1, WPS_HASH_LEN);
543 : :
544 : 122 : return 0;
545 : : }
546 : :
547 : :
548 : 122 : static int wps_process_r_hash2(struct wps_data *wps, const u8 *r_hash2)
549 : : {
550 [ - + ]: 122 : if (r_hash2 == NULL) {
551 : 0 : wpa_printf(MSG_DEBUG, "WPS: No R-Hash2 received");
552 : 0 : return -1;
553 : : }
554 : :
555 : 122 : os_memcpy(wps->peer_hash2, r_hash2, WPS_HASH_LEN);
556 : 122 : wpa_hexdump(MSG_DEBUG, "WPS: R-Hash2", wps->peer_hash2, WPS_HASH_LEN);
557 : :
558 : 122 : return 0;
559 : : }
560 : :
561 : :
562 : 122 : static int wps_process_r_snonce1(struct wps_data *wps, const u8 *r_snonce1)
563 : : {
564 : : u8 hash[SHA256_MAC_LEN];
565 : : const u8 *addr[4];
566 : : size_t len[4];
567 : :
568 [ - + ]: 122 : if (r_snonce1 == NULL) {
569 : 0 : wpa_printf(MSG_DEBUG, "WPS: No R-SNonce1 received");
570 : 0 : return -1;
571 : : }
572 : :
573 : 122 : wpa_hexdump_key(MSG_DEBUG, "WPS: R-SNonce1", r_snonce1,
574 : : WPS_SECRET_NONCE_LEN);
575 : :
576 : : /* R-Hash1 = HMAC_AuthKey(R-S1 || PSK1 || PK_E || PK_R) */
577 : 122 : addr[0] = r_snonce1;
578 : 122 : len[0] = WPS_SECRET_NONCE_LEN;
579 : 122 : addr[1] = wps->psk1;
580 : 122 : len[1] = WPS_PSK_LEN;
581 : 122 : addr[2] = wpabuf_head(wps->dh_pubkey_e);
582 : 122 : len[2] = wpabuf_len(wps->dh_pubkey_e);
583 : 122 : addr[3] = wpabuf_head(wps->dh_pubkey_r);
584 : 122 : len[3] = wpabuf_len(wps->dh_pubkey_r);
585 : 122 : hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 4, addr, len, hash);
586 : :
587 [ + + ]: 122 : if (os_memcmp(wps->peer_hash1, hash, WPS_HASH_LEN) != 0) {
588 : 6 : wpa_printf(MSG_DEBUG, "WPS: R-Hash1 derived from R-S1 does "
589 : : "not match with the pre-committed value");
590 : 6 : wps->config_error = WPS_CFG_DEV_PASSWORD_AUTH_FAILURE;
591 : 6 : wps_pwd_auth_fail_event(wps->wps, 1, 1, wps->peer_dev.mac_addr);
592 : 6 : return -1;
593 : : }
594 : :
595 : 116 : wpa_printf(MSG_DEBUG, "WPS: Registrar proved knowledge of the first "
596 : : "half of the device password");
597 : :
598 : 122 : return 0;
599 : : }
600 : :
601 : :
602 : 116 : static int wps_process_r_snonce2(struct wps_data *wps, const u8 *r_snonce2)
603 : : {
604 : : u8 hash[SHA256_MAC_LEN];
605 : : const u8 *addr[4];
606 : : size_t len[4];
607 : :
608 [ - + ]: 116 : if (r_snonce2 == NULL) {
609 : 0 : wpa_printf(MSG_DEBUG, "WPS: No R-SNonce2 received");
610 : 0 : return -1;
611 : : }
612 : :
613 : 116 : wpa_hexdump_key(MSG_DEBUG, "WPS: R-SNonce2", r_snonce2,
614 : : WPS_SECRET_NONCE_LEN);
615 : :
616 : : /* R-Hash2 = HMAC_AuthKey(R-S2 || PSK2 || PK_E || PK_R) */
617 : 116 : addr[0] = r_snonce2;
618 : 116 : len[0] = WPS_SECRET_NONCE_LEN;
619 : 116 : addr[1] = wps->psk2;
620 : 116 : len[1] = WPS_PSK_LEN;
621 : 116 : addr[2] = wpabuf_head(wps->dh_pubkey_e);
622 : 116 : len[2] = wpabuf_len(wps->dh_pubkey_e);
623 : 116 : addr[3] = wpabuf_head(wps->dh_pubkey_r);
624 : 116 : len[3] = wpabuf_len(wps->dh_pubkey_r);
625 : 116 : hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 4, addr, len, hash);
626 : :
627 [ + + ]: 116 : if (os_memcmp(wps->peer_hash2, hash, WPS_HASH_LEN) != 0) {
628 : 3 : wpa_printf(MSG_DEBUG, "WPS: R-Hash2 derived from R-S2 does "
629 : : "not match with the pre-committed value");
630 : 3 : wps->config_error = WPS_CFG_DEV_PASSWORD_AUTH_FAILURE;
631 : 3 : wps_pwd_auth_fail_event(wps->wps, 1, 2, wps->peer_dev.mac_addr);
632 : 3 : return -1;
633 : : }
634 : :
635 : 113 : wpa_printf(MSG_DEBUG, "WPS: Registrar proved knowledge of the second "
636 : : "half of the device password");
637 : :
638 : 116 : return 0;
639 : : }
640 : :
641 : :
642 : 106 : static int wps_process_cred_e(struct wps_data *wps, const u8 *cred,
643 : : size_t cred_len, int wps2)
644 : : {
645 : : struct wps_parse_attr attr;
646 : : struct wpabuf msg;
647 : 106 : int ret = 0;
648 : :
649 : 106 : wpa_printf(MSG_DEBUG, "WPS: Received Credential");
650 : 106 : os_memset(&wps->cred, 0, sizeof(wps->cred));
651 : 106 : wpabuf_set(&msg, cred, cred_len);
652 [ + - - + ]: 212 : if (wps_parse_msg(&msg, &attr) < 0 ||
653 : 106 : wps_process_cred(&attr, &wps->cred))
654 : 0 : return -1;
655 : :
656 [ - + ]: 106 : if (os_memcmp(wps->cred.mac_addr, wps->wps->dev.mac_addr, ETH_ALEN) !=
657 : : 0) {
658 : 0 : wpa_printf(MSG_DEBUG, "WPS: MAC Address in the Credential ("
659 : : MACSTR ") does not match with own address (" MACSTR
660 : 0 : ")", MAC2STR(wps->cred.mac_addr),
661 : 0 : MAC2STR(wps->wps->dev.mac_addr));
662 : : /*
663 : : * In theory, this could be consider fatal error, but there are
664 : : * number of deployed implementations using other address here
665 : : * due to unclarity in the specification. For interoperability
666 : : * reasons, allow this to be processed since we do not really
667 : : * use the MAC Address information for anything.
668 : : */
669 : : #ifdef CONFIG_WPS_STRICT
670 : : if (wps2) {
671 : : wpa_printf(MSG_INFO, "WPS: Do not accept incorrect "
672 : : "MAC Address in AP Settings");
673 : : return -1;
674 : : }
675 : : #endif /* CONFIG_WPS_STRICT */
676 : : }
677 : :
678 : : #ifdef CONFIG_WPS2
679 [ - + ]: 106 : if (!(wps->cred.encr_type &
680 : : (WPS_ENCR_NONE | WPS_ENCR_TKIP | WPS_ENCR_AES))) {
681 [ # # ]: 0 : if (wps->cred.encr_type & WPS_ENCR_WEP) {
682 : 0 : wpa_printf(MSG_INFO, "WPS: Reject Credential "
683 : : "due to WEP configuration");
684 : 0 : wps->error_indication = WPS_EI_SECURITY_WEP_PROHIBITED;
685 : 0 : return -2;
686 : : }
687 : :
688 : 0 : wpa_printf(MSG_INFO, "WPS: Reject Credential due to "
689 : 0 : "invalid encr_type 0x%x", wps->cred.encr_type);
690 : 0 : return -1;
691 : : }
692 : : #endif /* CONFIG_WPS2 */
693 : :
694 [ + - ]: 106 : if (wps->wps->cred_cb) {
695 : 106 : wps->cred.cred_attr = cred - 4;
696 : 106 : wps->cred.cred_attr_len = cred_len + 4;
697 : 106 : ret = wps->wps->cred_cb(wps->wps->cb_ctx, &wps->cred);
698 : 106 : wps->cred.cred_attr = NULL;
699 : 106 : wps->cred.cred_attr_len = 0;
700 : : }
701 : :
702 : 106 : return ret;
703 : : }
704 : :
705 : :
706 : 112 : static int wps_process_creds(struct wps_data *wps, const u8 *cred[],
707 : : size_t cred_len[], size_t num_cred, int wps2)
708 : : {
709 : : size_t i;
710 : 112 : int ok = 0;
711 : :
712 [ + + ]: 112 : if (wps->wps->ap)
713 : 6 : return 0;
714 : :
715 [ - + ]: 106 : if (num_cred == 0) {
716 : 0 : wpa_printf(MSG_DEBUG, "WPS: No Credential attributes "
717 : : "received");
718 : 0 : return -1;
719 : : }
720 : :
721 [ + + ]: 212 : for (i = 0; i < num_cred; i++) {
722 : : int res;
723 : 106 : res = wps_process_cred_e(wps, cred[i], cred_len[i], wps2);
724 [ + - ]: 106 : if (res == 0)
725 : 106 : ok++;
726 [ # # ]: 0 : else if (res == -2)
727 : 0 : wpa_printf(MSG_DEBUG, "WPS: WEP credential skipped");
728 : : else
729 : 0 : return -1;
730 : : }
731 : :
732 [ - + ]: 106 : if (ok == 0) {
733 : 0 : wpa_printf(MSG_DEBUG, "WPS: No valid Credential attribute "
734 : : "received");
735 : 0 : return -1;
736 : : }
737 : :
738 : 112 : return 0;
739 : : }
740 : :
741 : :
742 : 101 : static int wps_process_ap_settings_e(struct wps_data *wps,
743 : : struct wps_parse_attr *attr,
744 : : struct wpabuf *attrs, int wps2)
745 : : {
746 : : struct wps_credential cred;
747 : :
748 [ + + ]: 101 : if (!wps->wps->ap)
749 : 95 : return 0;
750 : :
751 [ - + ]: 6 : if (wps_process_ap_settings(attr, &cred) < 0)
752 : 0 : return -1;
753 : :
754 : 6 : wpa_printf(MSG_INFO, "WPS: Received new AP configuration from "
755 : : "Registrar");
756 : :
757 [ - + ]: 6 : if (os_memcmp(cred.mac_addr, wps->wps->dev.mac_addr, ETH_ALEN) !=
758 : : 0) {
759 : 0 : wpa_printf(MSG_DEBUG, "WPS: MAC Address in the AP Settings ("
760 : : MACSTR ") does not match with own address (" MACSTR
761 : 0 : ")", MAC2STR(cred.mac_addr),
762 : 0 : MAC2STR(wps->wps->dev.mac_addr));
763 : : /*
764 : : * In theory, this could be consider fatal error, but there are
765 : : * number of deployed implementations using other address here
766 : : * due to unclarity in the specification. For interoperability
767 : : * reasons, allow this to be processed since we do not really
768 : : * use the MAC Address information for anything.
769 : : */
770 : : #ifdef CONFIG_WPS_STRICT
771 : : if (wps2) {
772 : : wpa_printf(MSG_INFO, "WPS: Do not accept incorrect "
773 : : "MAC Address in AP Settings");
774 : : return -1;
775 : : }
776 : : #endif /* CONFIG_WPS_STRICT */
777 : : }
778 : :
779 : : #ifdef CONFIG_WPS2
780 [ + + ]: 6 : if (!(cred.encr_type & (WPS_ENCR_NONE | WPS_ENCR_TKIP | WPS_ENCR_AES)))
781 : : {
782 [ + - ]: 1 : if (cred.encr_type & WPS_ENCR_WEP) {
783 : 1 : wpa_printf(MSG_INFO, "WPS: Reject new AP settings "
784 : : "due to WEP configuration");
785 : 1 : wps->error_indication = WPS_EI_SECURITY_WEP_PROHIBITED;
786 : 1 : return -1;
787 : : }
788 : :
789 : 0 : wpa_printf(MSG_INFO, "WPS: Reject new AP settings due to "
790 : 0 : "invalid encr_type 0x%x", cred.encr_type);
791 : 0 : return -1;
792 : : }
793 : : #endif /* CONFIG_WPS2 */
794 : :
795 : : #ifdef CONFIG_WPS_STRICT
796 : : if (wps2) {
797 : : if ((cred.encr_type & (WPS_ENCR_TKIP | WPS_ENCR_AES)) ==
798 : : WPS_ENCR_TKIP ||
799 : : (cred.auth_type & (WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK)) ==
800 : : WPS_AUTH_WPAPSK) {
801 : : wpa_printf(MSG_INFO, "WPS-STRICT: Invalid WSC 2.0 "
802 : : "AP Settings: WPA-Personal/TKIP only");
803 : : wps->error_indication =
804 : : WPS_EI_SECURITY_TKIP_ONLY_PROHIBITED;
805 : : return -1;
806 : : }
807 : : }
808 : : #endif /* CONFIG_WPS_STRICT */
809 : :
810 : : #ifdef CONFIG_WPS2
811 [ + + ]: 5 : if ((cred.encr_type & (WPS_ENCR_TKIP | WPS_ENCR_AES)) == WPS_ENCR_TKIP)
812 : : {
813 : 1 : wpa_printf(MSG_DEBUG, "WPS: Upgrade encr_type TKIP -> "
814 : : "TKIP+AES");
815 : 1 : cred.encr_type |= WPS_ENCR_AES;
816 : : }
817 : :
818 [ + + ]: 5 : if ((cred.auth_type & (WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK)) ==
819 : : WPS_AUTH_WPAPSK) {
820 : 1 : wpa_printf(MSG_DEBUG, "WPS: Upgrade auth_type WPAPSK -> "
821 : : "WPAPSK+WPA2PSK");
822 : 1 : cred.auth_type |= WPS_AUTH_WPA2PSK;
823 : : }
824 : : #endif /* CONFIG_WPS2 */
825 : :
826 [ + - ]: 5 : if (wps->wps->cred_cb) {
827 : 5 : cred.cred_attr = wpabuf_head(attrs);
828 : 5 : cred.cred_attr_len = wpabuf_len(attrs);
829 : 5 : wps->wps->cred_cb(wps->wps->cb_ctx, &cred);
830 : : }
831 : :
832 : 101 : return 0;
833 : : }
834 : :
835 : :
836 : 141 : static int wps_process_dev_pw_id(struct wps_data *wps, const u8 *dev_pw_id)
837 : : {
838 : : u16 id;
839 : :
840 [ - + ]: 141 : if (dev_pw_id == NULL) {
841 : 0 : wpa_printf(MSG_DEBUG, "WPS: Device Password ID");
842 : 0 : return -1;
843 : : }
844 : :
845 : 141 : id = WPA_GET_BE16(dev_pw_id);
846 [ + - ]: 141 : if (wps->dev_pw_id == id) {
847 : 141 : wpa_printf(MSG_DEBUG, "WPS: Device Password ID %u", id);
848 : 141 : return 0;
849 : : }
850 : :
851 : : #ifdef CONFIG_P2P
852 [ # # ][ # # ]: 0 : if ((id == DEV_PW_DEFAULT &&
853 [ # # ]: 0 : wps->dev_pw_id == DEV_PW_REGISTRAR_SPECIFIED) ||
854 [ # # ]: 0 : (id == DEV_PW_REGISTRAR_SPECIFIED &&
855 : 0 : wps->dev_pw_id == DEV_PW_DEFAULT)) {
856 : : /*
857 : : * Common P2P use cases indicate whether the PIN is from the
858 : : * client or GO using Device Password Id in M1/M2 in a way that
859 : : * does not look fully compliant with WSC specification. Anyway,
860 : : * this is deployed and needs to be allowed, so ignore changes
861 : : * between Registrar-Specified and Default PIN.
862 : : */
863 : 0 : wpa_printf(MSG_DEBUG, "WPS: Allow PIN Device Password ID "
864 : : "change");
865 : 0 : return 0;
866 : : }
867 : : #endif /* CONFIG_P2P */
868 : :
869 : 0 : wpa_printf(MSG_DEBUG, "WPS: Registrar trying to change Device Password "
870 : 0 : "ID from %u to %u", wps->dev_pw_id, id);
871 : :
872 [ # # ][ # # ]: 0 : if (wps->dev_pw_id == DEV_PW_PUSHBUTTON && id == DEV_PW_DEFAULT) {
873 : 0 : wpa_printf(MSG_DEBUG,
874 : : "WPS: Workaround - ignore PBC-to-PIN change");
875 : 0 : return 0;
876 : : }
877 : :
878 [ # # ][ # # ]: 0 : if (wps->alt_dev_password && wps->alt_dev_pw_id == id) {
879 : 0 : wpa_printf(MSG_DEBUG, "WPS: Found a matching Device Password");
880 : 0 : os_free(wps->dev_password);
881 : 0 : wps->dev_pw_id = wps->alt_dev_pw_id;
882 : 0 : wps->dev_password = wps->alt_dev_password;
883 : 0 : wps->dev_password_len = wps->alt_dev_password_len;
884 : 0 : wps->alt_dev_password = NULL;
885 : 0 : wps->alt_dev_password_len = 0;
886 : 0 : return 0;
887 : : }
888 : :
889 : 141 : return -1;
890 : : }
891 : :
892 : :
893 : 141 : static enum wps_process_res wps_process_m2(struct wps_data *wps,
894 : : const struct wpabuf *msg,
895 : : struct wps_parse_attr *attr)
896 : : {
897 : 141 : wpa_printf(MSG_DEBUG, "WPS: Received M2");
898 : :
899 [ - + ]: 141 : if (wps->state != RECV_M2) {
900 : 0 : wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
901 : 0 : "receiving M2", wps->state);
902 : 0 : wps->state = SEND_WSC_NACK;
903 : 0 : return WPS_CONTINUE;
904 : : }
905 : :
906 [ + - + - ]: 282 : if (wps_process_registrar_nonce(wps, attr->registrar_nonce) ||
907 [ + - ]: 282 : wps_process_enrollee_nonce(wps, attr->enrollee_nonce) ||
908 [ - + ]: 282 : wps_process_uuid_r(wps, attr->uuid_r) ||
909 : 141 : wps_process_dev_pw_id(wps, attr->dev_password_id)) {
910 : 0 : wps->state = SEND_WSC_NACK;
911 : 0 : return WPS_CONTINUE;
912 : : }
913 : :
914 : : /*
915 : : * Stop here on an AP as an Enrollee if AP Setup is locked unless the
916 : : * special locked mode is used to allow protocol run up to M7 in order
917 : : * to support external Registrars that only learn the current AP
918 : : * configuration without changing it.
919 : : */
920 [ + + ][ + + ]: 141 : if (wps->wps->ap &&
921 [ + + ][ + + ]: 30 : ((wps->wps->ap_setup_locked && wps->wps->ap_setup_locked != 2) ||
922 : 27 : wps->dev_password == NULL)) {
923 : 6 : wpa_printf(MSG_DEBUG, "WPS: AP Setup is locked - refuse "
924 : : "registration of a new Registrar");
925 : 6 : wps->config_error = WPS_CFG_SETUP_LOCKED;
926 : 6 : wps->state = SEND_WSC_NACK;
927 : 6 : return WPS_CONTINUE;
928 : : }
929 : :
930 [ + + + - ]: 268 : if (wps_process_pubkey(wps, attr->public_key, attr->public_key_len) ||
931 [ - + ]: 266 : wps_process_authenticator(wps, attr->authenticator, msg) ||
932 : 133 : wps_process_device_attrs(&wps->peer_dev, attr)) {
933 : 2 : wps->state = SEND_WSC_NACK;
934 : 2 : return WPS_CONTINUE;
935 : : }
936 : :
937 : : #ifdef CONFIG_WPS_NFC
938 [ + + ]: 133 : if (wps->peer_pubkey_hash_set) {
939 : : struct wpabuf *decrypted;
940 : : struct wps_parse_attr eattr;
941 : :
942 : 11 : decrypted = wps_decrypt_encr_settings(wps, attr->encr_settings,
943 : : attr->encr_settings_len);
944 [ - + ]: 11 : if (decrypted == NULL) {
945 : 0 : wpa_printf(MSG_DEBUG, "WPS: Failed to decrypt "
946 : : "Encrypted Settings attribute");
947 : 0 : wps->state = SEND_WSC_NACK;
948 : 0 : return WPS_CONTINUE;
949 : : }
950 : :
951 : 11 : wpa_printf(MSG_DEBUG, "WPS: Processing decrypted Encrypted "
952 : : "Settings attribute");
953 [ + - + - ]: 22 : if (wps_parse_msg(decrypted, &eattr) < 0 ||
954 : 11 : wps_process_key_wrap_auth(wps, decrypted,
955 [ - + ]: 11 : eattr.key_wrap_auth) ||
956 : 11 : wps_process_creds(wps, eattr.cred, eattr.cred_len,
957 : 11 : eattr.num_cred, attr->version2 != NULL)) {
958 : 0 : wpabuf_free(decrypted);
959 : 0 : wps->state = SEND_WSC_NACK;
960 : 0 : return WPS_CONTINUE;
961 : : }
962 : 11 : wpabuf_free(decrypted);
963 : :
964 : 11 : wps->state = WPS_MSG_DONE;
965 : 11 : return WPS_CONTINUE;
966 : : }
967 : : #endif /* CONFIG_WPS_NFC */
968 : :
969 : 122 : wps->state = SEND_M3;
970 : 141 : return WPS_CONTINUE;
971 : : }
972 : :
973 : :
974 : 13 : static enum wps_process_res wps_process_m2d(struct wps_data *wps,
975 : : struct wps_parse_attr *attr)
976 : : {
977 : 13 : wpa_printf(MSG_DEBUG, "WPS: Received M2D");
978 : :
979 [ - + ]: 13 : if (wps->state != RECV_M2) {
980 : 0 : wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
981 : 0 : "receiving M2D", wps->state);
982 : 0 : wps->state = SEND_WSC_NACK;
983 : 0 : return WPS_CONTINUE;
984 : : }
985 : :
986 : 13 : wpa_hexdump_ascii(MSG_DEBUG, "WPS: Manufacturer",
987 : 13 : attr->manufacturer, attr->manufacturer_len);
988 : 13 : wpa_hexdump_ascii(MSG_DEBUG, "WPS: Model Name",
989 : 13 : attr->model_name, attr->model_name_len);
990 : 13 : wpa_hexdump_ascii(MSG_DEBUG, "WPS: Model Number",
991 : 13 : attr->model_number, attr->model_number_len);
992 : 13 : wpa_hexdump_ascii(MSG_DEBUG, "WPS: Serial Number",
993 : 13 : attr->serial_number, attr->serial_number_len);
994 : 13 : wpa_hexdump_ascii(MSG_DEBUG, "WPS: Device Name",
995 : 13 : attr->dev_name, attr->dev_name_len);
996 : :
997 [ + - ]: 13 : if (wps->wps->event_cb) {
998 : : union wps_event_data data;
999 : 13 : struct wps_event_m2d *m2d = &data.m2d;
1000 : 13 : os_memset(&data, 0, sizeof(data));
1001 [ + - ]: 13 : if (attr->config_methods)
1002 : 13 : m2d->config_methods =
1003 : 13 : WPA_GET_BE16(attr->config_methods);
1004 : 13 : m2d->manufacturer = attr->manufacturer;
1005 : 13 : m2d->manufacturer_len = attr->manufacturer_len;
1006 : 13 : m2d->model_name = attr->model_name;
1007 : 13 : m2d->model_name_len = attr->model_name_len;
1008 : 13 : m2d->model_number = attr->model_number;
1009 : 13 : m2d->model_number_len = attr->model_number_len;
1010 : 13 : m2d->serial_number = attr->serial_number;
1011 : 13 : m2d->serial_number_len = attr->serial_number_len;
1012 : 13 : m2d->dev_name = attr->dev_name;
1013 : 13 : m2d->dev_name_len = attr->dev_name_len;
1014 : 13 : m2d->primary_dev_type = attr->primary_dev_type;
1015 [ + - ]: 13 : if (attr->config_error)
1016 : 13 : m2d->config_error =
1017 : 13 : WPA_GET_BE16(attr->config_error);
1018 [ - + ]: 13 : if (attr->dev_password_id)
1019 : 0 : m2d->dev_password_id =
1020 : 0 : WPA_GET_BE16(attr->dev_password_id);
1021 : 13 : wps->wps->event_cb(wps->wps->cb_ctx, WPS_EV_M2D, &data);
1022 : : }
1023 : :
1024 : 13 : wps->state = RECEIVED_M2D;
1025 : 13 : return WPS_CONTINUE;
1026 : : }
1027 : :
1028 : :
1029 : 122 : static enum wps_process_res wps_process_m4(struct wps_data *wps,
1030 : : const struct wpabuf *msg,
1031 : : struct wps_parse_attr *attr)
1032 : : {
1033 : : struct wpabuf *decrypted;
1034 : : struct wps_parse_attr eattr;
1035 : :
1036 : 122 : wpa_printf(MSG_DEBUG, "WPS: Received M4");
1037 : :
1038 [ - + ]: 122 : if (wps->state != RECV_M4) {
1039 : 0 : wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
1040 : 0 : "receiving M4", wps->state);
1041 : 0 : wps->state = SEND_WSC_NACK;
1042 : 0 : return WPS_CONTINUE;
1043 : : }
1044 : :
1045 [ + - + - ]: 244 : if (wps_process_enrollee_nonce(wps, attr->enrollee_nonce) ||
1046 [ + - ]: 244 : wps_process_authenticator(wps, attr->authenticator, msg) ||
1047 [ - + ]: 244 : wps_process_r_hash1(wps, attr->r_hash1) ||
1048 : 122 : wps_process_r_hash2(wps, attr->r_hash2)) {
1049 : 0 : wps->state = SEND_WSC_NACK;
1050 : 0 : return WPS_CONTINUE;
1051 : : }
1052 : :
1053 : 122 : decrypted = wps_decrypt_encr_settings(wps, attr->encr_settings,
1054 : : attr->encr_settings_len);
1055 [ - + ]: 122 : if (decrypted == NULL) {
1056 : 0 : wpa_printf(MSG_DEBUG, "WPS: Failed to decrypted Encrypted "
1057 : : "Settings attribute");
1058 : 0 : wps->state = SEND_WSC_NACK;
1059 : 0 : return WPS_CONTINUE;
1060 : : }
1061 : :
1062 [ - + ]: 122 : if (wps_validate_m4_encr(decrypted, attr->version2 != NULL) < 0) {
1063 : 0 : wpabuf_free(decrypted);
1064 : 0 : wps->state = SEND_WSC_NACK;
1065 : 0 : return WPS_CONTINUE;
1066 : : }
1067 : :
1068 : 122 : wpa_printf(MSG_DEBUG, "WPS: Processing decrypted Encrypted Settings "
1069 : : "attribute");
1070 [ + - + - ]: 244 : if (wps_parse_msg(decrypted, &eattr) < 0 ||
1071 [ + + ]: 244 : wps_process_key_wrap_auth(wps, decrypted, eattr.key_wrap_auth) ||
1072 : 122 : wps_process_r_snonce1(wps, eattr.r_snonce1)) {
1073 : 6 : wpabuf_free(decrypted);
1074 : 6 : wps->state = SEND_WSC_NACK;
1075 : 6 : return WPS_CONTINUE;
1076 : : }
1077 : 116 : wpabuf_free(decrypted);
1078 : :
1079 : 116 : wps->state = SEND_M5;
1080 : 122 : return WPS_CONTINUE;
1081 : : }
1082 : :
1083 : :
1084 : 116 : static enum wps_process_res wps_process_m6(struct wps_data *wps,
1085 : : const struct wpabuf *msg,
1086 : : struct wps_parse_attr *attr)
1087 : : {
1088 : : struct wpabuf *decrypted;
1089 : : struct wps_parse_attr eattr;
1090 : :
1091 : 116 : wpa_printf(MSG_DEBUG, "WPS: Received M6");
1092 : :
1093 [ - + ]: 116 : if (wps->state != RECV_M6) {
1094 : 0 : wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
1095 : 0 : "receiving M6", wps->state);
1096 : 0 : wps->state = SEND_WSC_NACK;
1097 : 0 : return WPS_CONTINUE;
1098 : : }
1099 : :
1100 [ + - - + ]: 232 : if (wps_process_enrollee_nonce(wps, attr->enrollee_nonce) ||
1101 : 116 : wps_process_authenticator(wps, attr->authenticator, msg)) {
1102 : 0 : wps->state = SEND_WSC_NACK;
1103 : 0 : return WPS_CONTINUE;
1104 : : }
1105 : :
1106 : 116 : decrypted = wps_decrypt_encr_settings(wps, attr->encr_settings,
1107 : : attr->encr_settings_len);
1108 [ - + ]: 116 : if (decrypted == NULL) {
1109 : 0 : wpa_printf(MSG_DEBUG, "WPS: Failed to decrypted Encrypted "
1110 : : "Settings attribute");
1111 : 0 : wps->state = SEND_WSC_NACK;
1112 : 0 : return WPS_CONTINUE;
1113 : : }
1114 : :
1115 [ - + ]: 116 : if (wps_validate_m6_encr(decrypted, attr->version2 != NULL) < 0) {
1116 : 0 : wpabuf_free(decrypted);
1117 : 0 : wps->state = SEND_WSC_NACK;
1118 : 0 : return WPS_CONTINUE;
1119 : : }
1120 : :
1121 : 116 : wpa_printf(MSG_DEBUG, "WPS: Processing decrypted Encrypted Settings "
1122 : : "attribute");
1123 [ + - + - ]: 232 : if (wps_parse_msg(decrypted, &eattr) < 0 ||
1124 [ + + ]: 232 : wps_process_key_wrap_auth(wps, decrypted, eattr.key_wrap_auth) ||
1125 : 116 : wps_process_r_snonce2(wps, eattr.r_snonce2)) {
1126 : 3 : wpabuf_free(decrypted);
1127 : 3 : wps->state = SEND_WSC_NACK;
1128 : 3 : return WPS_CONTINUE;
1129 : : }
1130 : 113 : wpabuf_free(decrypted);
1131 : :
1132 [ + + ]: 113 : if (wps->wps->ap)
1133 : 18 : wps->wps->event_cb(wps->wps->cb_ctx, WPS_EV_AP_PIN_SUCCESS,
1134 : : NULL);
1135 : :
1136 : 113 : wps->state = SEND_M7;
1137 : 116 : return WPS_CONTINUE;
1138 : : }
1139 : :
1140 : :
1141 : 101 : static enum wps_process_res wps_process_m8(struct wps_data *wps,
1142 : : const struct wpabuf *msg,
1143 : : struct wps_parse_attr *attr)
1144 : : {
1145 : : struct wpabuf *decrypted;
1146 : : struct wps_parse_attr eattr;
1147 : :
1148 : 101 : wpa_printf(MSG_DEBUG, "WPS: Received M8");
1149 : :
1150 [ - + ]: 101 : if (wps->state != RECV_M8) {
1151 : 0 : wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
1152 : 0 : "receiving M8", wps->state);
1153 : 0 : wps->state = SEND_WSC_NACK;
1154 : 0 : return WPS_CONTINUE;
1155 : : }
1156 : :
1157 [ + - - + ]: 202 : if (wps_process_enrollee_nonce(wps, attr->enrollee_nonce) ||
1158 : 101 : wps_process_authenticator(wps, attr->authenticator, msg)) {
1159 : 0 : wps->state = SEND_WSC_NACK;
1160 : 0 : return WPS_CONTINUE;
1161 : : }
1162 : :
1163 [ + + ][ - + ]: 101 : if (wps->wps->ap && wps->wps->ap_setup_locked) {
1164 : : /*
1165 : : * Stop here if special ap_setup_locked == 2 mode allowed the
1166 : : * protocol to continue beyond M2. This allows ER to learn the
1167 : : * current AP settings without changing them.
1168 : : */
1169 : 0 : wpa_printf(MSG_DEBUG, "WPS: AP Setup is locked - refuse "
1170 : : "registration of a new Registrar");
1171 : 0 : wps->config_error = WPS_CFG_SETUP_LOCKED;
1172 : 0 : wps->state = SEND_WSC_NACK;
1173 : 0 : return WPS_CONTINUE;
1174 : : }
1175 : :
1176 : 101 : decrypted = wps_decrypt_encr_settings(wps, attr->encr_settings,
1177 : : attr->encr_settings_len);
1178 [ - + ]: 101 : if (decrypted == NULL) {
1179 : 0 : wpa_printf(MSG_DEBUG, "WPS: Failed to decrypted Encrypted "
1180 : : "Settings attribute");
1181 : 0 : wps->state = SEND_WSC_NACK;
1182 : 0 : return WPS_CONTINUE;
1183 : : }
1184 : :
1185 [ - + ]: 101 : if (wps_validate_m8_encr(decrypted, wps->wps->ap,
1186 : 101 : attr->version2 != NULL) < 0) {
1187 : 0 : wpabuf_free(decrypted);
1188 : 0 : wps->state = SEND_WSC_NACK;
1189 : 0 : return WPS_CONTINUE;
1190 : : }
1191 : :
1192 : 101 : wpa_printf(MSG_DEBUG, "WPS: Processing decrypted Encrypted Settings "
1193 : : "attribute");
1194 [ + - + - ]: 202 : if (wps_parse_msg(decrypted, &eattr) < 0 ||
1195 [ + - ]: 202 : wps_process_key_wrap_auth(wps, decrypted, eattr.key_wrap_auth) ||
1196 : 101 : wps_process_creds(wps, eattr.cred, eattr.cred_len,
1197 [ + + ]: 101 : eattr.num_cred, attr->version2 != NULL) ||
1198 : 101 : wps_process_ap_settings_e(wps, &eattr, decrypted,
1199 : 101 : attr->version2 != NULL)) {
1200 : 1 : wpabuf_free(decrypted);
1201 : 1 : wps->state = SEND_WSC_NACK;
1202 : 1 : return WPS_CONTINUE;
1203 : : }
1204 : 100 : wpabuf_free(decrypted);
1205 : :
1206 : 100 : wps->state = WPS_MSG_DONE;
1207 : 101 : return WPS_CONTINUE;
1208 : : }
1209 : :
1210 : :
1211 : 493 : static enum wps_process_res wps_process_wsc_msg(struct wps_data *wps,
1212 : : const struct wpabuf *msg)
1213 : : {
1214 : : struct wps_parse_attr attr;
1215 : 493 : enum wps_process_res ret = WPS_CONTINUE;
1216 : :
1217 : 493 : wpa_printf(MSG_DEBUG, "WPS: Received WSC_MSG");
1218 : :
1219 [ - + ]: 493 : if (wps_parse_msg(msg, &attr) < 0)
1220 : 0 : return WPS_FAILURE;
1221 : :
1222 [ + - ][ - + ]: 493 : if (attr.enrollee_nonce == NULL ||
1223 : 493 : os_memcmp(wps->nonce_e, attr.enrollee_nonce, WPS_NONCE_LEN) != 0) {
1224 : 0 : wpa_printf(MSG_DEBUG, "WPS: Mismatch in enrollee nonce");
1225 : 0 : return WPS_FAILURE;
1226 : : }
1227 : :
1228 [ - + ]: 493 : if (attr.msg_type == NULL) {
1229 : 0 : wpa_printf(MSG_DEBUG, "WPS: No Message Type attribute");
1230 : 0 : wps->state = SEND_WSC_NACK;
1231 : 0 : return WPS_CONTINUE;
1232 : : }
1233 : :
1234 [ + + + + : 493 : switch (*attr.msg_type) {
+ - ]
1235 : : case WPS_M2:
1236 [ - + ]: 141 : if (wps_validate_m2(msg) < 0)
1237 : 0 : return WPS_FAILURE;
1238 : 141 : ret = wps_process_m2(wps, msg, &attr);
1239 : 141 : break;
1240 : : case WPS_M2D:
1241 [ - + ]: 13 : if (wps_validate_m2d(msg) < 0)
1242 : 0 : return WPS_FAILURE;
1243 : 13 : ret = wps_process_m2d(wps, &attr);
1244 : 13 : break;
1245 : : case WPS_M4:
1246 [ - + ]: 122 : if (wps_validate_m4(msg) < 0)
1247 : 0 : return WPS_FAILURE;
1248 : 122 : ret = wps_process_m4(wps, msg, &attr);
1249 [ + + ][ + - ]: 122 : if (ret == WPS_FAILURE || wps->state == SEND_WSC_NACK)
1250 : 6 : wps_fail_event(wps->wps, WPS_M4, wps->config_error,
1251 : 6 : wps->error_indication,
1252 : 6 : wps->peer_dev.mac_addr);
1253 : 122 : break;
1254 : : case WPS_M6:
1255 [ - + ]: 116 : if (wps_validate_m6(msg) < 0)
1256 : 0 : return WPS_FAILURE;
1257 : 116 : ret = wps_process_m6(wps, msg, &attr);
1258 [ + + ][ + - ]: 116 : if (ret == WPS_FAILURE || wps->state == SEND_WSC_NACK)
1259 : 3 : wps_fail_event(wps->wps, WPS_M6, wps->config_error,
1260 : 3 : wps->error_indication,
1261 : 3 : wps->peer_dev.mac_addr);
1262 : 116 : break;
1263 : : case WPS_M8:
1264 [ - + ]: 101 : if (wps_validate_m8(msg) < 0)
1265 : 0 : return WPS_FAILURE;
1266 : 101 : ret = wps_process_m8(wps, msg, &attr);
1267 [ + + ][ + - ]: 101 : if (ret == WPS_FAILURE || wps->state == SEND_WSC_NACK)
1268 : 1 : wps_fail_event(wps->wps, WPS_M8, wps->config_error,
1269 : 1 : wps->error_indication,
1270 : 1 : wps->peer_dev.mac_addr);
1271 : 101 : break;
1272 : : default:
1273 : 0 : wpa_printf(MSG_DEBUG, "WPS: Unsupported Message Type %d",
1274 : 0 : *attr.msg_type);
1275 : 0 : return WPS_FAILURE;
1276 : : }
1277 : :
1278 : : /*
1279 : : * Save a copy of the last message for Authenticator derivation if we
1280 : : * are continuing. However, skip M2D since it is not authenticated and
1281 : : * neither is the ACK/NACK response frame. This allows the possibly
1282 : : * following M2 to be processed correctly by using the previously sent
1283 : : * M1 in Authenticator derivation.
1284 : : */
1285 [ + - ][ + + ]: 493 : if (ret == WPS_CONTINUE && *attr.msg_type != WPS_M2D) {
1286 : : /* Save a copy of the last message for Authenticator derivation
1287 : : */
1288 : 480 : wpabuf_free(wps->last_msg);
1289 : 480 : wps->last_msg = wpabuf_dup(msg);
1290 : : }
1291 : :
1292 : 493 : return ret;
1293 : : }
1294 : :
1295 : :
1296 : 4 : static enum wps_process_res wps_process_wsc_ack(struct wps_data *wps,
1297 : : const struct wpabuf *msg)
1298 : : {
1299 : : struct wps_parse_attr attr;
1300 : :
1301 : 4 : wpa_printf(MSG_DEBUG, "WPS: Received WSC_ACK");
1302 : :
1303 [ - + ]: 4 : if (wps_parse_msg(msg, &attr) < 0)
1304 : 0 : return WPS_FAILURE;
1305 : :
1306 [ - + ]: 4 : if (attr.msg_type == NULL) {
1307 : 0 : wpa_printf(MSG_DEBUG, "WPS: No Message Type attribute");
1308 : 0 : return WPS_FAILURE;
1309 : : }
1310 : :
1311 [ - + ]: 4 : if (*attr.msg_type != WPS_WSC_ACK) {
1312 : 0 : wpa_printf(MSG_DEBUG, "WPS: Invalid Message Type %d",
1313 : 0 : *attr.msg_type);
1314 : 0 : return WPS_FAILURE;
1315 : : }
1316 : :
1317 [ + - ][ - + ]: 4 : if (attr.registrar_nonce == NULL ||
1318 : 4 : os_memcmp(wps->nonce_r, attr.registrar_nonce, WPS_NONCE_LEN) != 0)
1319 : : {
1320 : 0 : wpa_printf(MSG_DEBUG, "WPS: Mismatch in registrar nonce");
1321 : 0 : return WPS_FAILURE;
1322 : : }
1323 : :
1324 [ + - ][ - + ]: 4 : if (attr.enrollee_nonce == NULL ||
1325 : 4 : os_memcmp(wps->nonce_e, attr.enrollee_nonce, WPS_NONCE_LEN) != 0) {
1326 : 0 : wpa_printf(MSG_DEBUG, "WPS: Mismatch in enrollee nonce");
1327 : 0 : return WPS_FAILURE;
1328 : : }
1329 : :
1330 [ + - ][ + - ]: 4 : if (wps->state == RECV_ACK && wps->wps->ap) {
1331 : 4 : wpa_printf(MSG_DEBUG, "WPS: External Registrar registration "
1332 : : "completed successfully");
1333 : 4 : wps_success_event(wps->wps, wps->peer_dev.mac_addr);
1334 : 4 : wps->state = WPS_FINISHED;
1335 : 4 : return WPS_DONE;
1336 : : }
1337 : :
1338 : 4 : return WPS_FAILURE;
1339 : : }
1340 : :
1341 : :
1342 : 25 : static enum wps_process_res wps_process_wsc_nack(struct wps_data *wps,
1343 : : const struct wpabuf *msg)
1344 : : {
1345 : : struct wps_parse_attr attr;
1346 : : u16 config_error;
1347 : :
1348 : 25 : wpa_printf(MSG_DEBUG, "WPS: Received WSC_NACK");
1349 : :
1350 [ - + ]: 25 : if (wps_parse_msg(msg, &attr) < 0)
1351 : 0 : return WPS_FAILURE;
1352 : :
1353 [ - + ]: 25 : if (attr.msg_type == NULL) {
1354 : 0 : wpa_printf(MSG_DEBUG, "WPS: No Message Type attribute");
1355 : 0 : return WPS_FAILURE;
1356 : : }
1357 : :
1358 [ - + ]: 25 : if (*attr.msg_type != WPS_WSC_NACK) {
1359 : 0 : wpa_printf(MSG_DEBUG, "WPS: Invalid Message Type %d",
1360 : 0 : *attr.msg_type);
1361 : 0 : return WPS_FAILURE;
1362 : : }
1363 : :
1364 [ + - ][ - + ]: 25 : if (attr.registrar_nonce == NULL ||
1365 : 25 : os_memcmp(wps->nonce_r, attr.registrar_nonce, WPS_NONCE_LEN) != 0)
1366 : : {
1367 : 0 : wpa_printf(MSG_DEBUG, "WPS: Mismatch in registrar nonce");
1368 : 0 : wpa_hexdump(MSG_DEBUG, "WPS: Received Registrar Nonce",
1369 : 0 : attr.registrar_nonce, WPS_NONCE_LEN);
1370 : 0 : wpa_hexdump(MSG_DEBUG, "WPS: Expected Registrar Nonce",
1371 : 0 : wps->nonce_r, WPS_NONCE_LEN);
1372 : 0 : return WPS_FAILURE;
1373 : : }
1374 : :
1375 [ + - ][ - + ]: 25 : if (attr.enrollee_nonce == NULL ||
1376 : 25 : os_memcmp(wps->nonce_e, attr.enrollee_nonce, WPS_NONCE_LEN) != 0) {
1377 : 0 : wpa_printf(MSG_DEBUG, "WPS: Mismatch in enrollee nonce");
1378 : 0 : wpa_hexdump(MSG_DEBUG, "WPS: Received Enrollee Nonce",
1379 : 0 : attr.enrollee_nonce, WPS_NONCE_LEN);
1380 : 0 : wpa_hexdump(MSG_DEBUG, "WPS: Expected Enrollee Nonce",
1381 : 0 : wps->nonce_e, WPS_NONCE_LEN);
1382 : 0 : return WPS_FAILURE;
1383 : : }
1384 : :
1385 [ - + ]: 25 : if (attr.config_error == NULL) {
1386 : 0 : wpa_printf(MSG_DEBUG, "WPS: No Configuration Error attribute "
1387 : : "in WSC_NACK");
1388 : 0 : return WPS_FAILURE;
1389 : : }
1390 : :
1391 : 25 : config_error = WPA_GET_BE16(attr.config_error);
1392 : 25 : wpa_printf(MSG_DEBUG, "WPS: Registrar terminated negotiation with "
1393 : : "Configuration Error %d", config_error);
1394 : :
1395 [ - - + + ]: 25 : switch (wps->state) {
1396 : : case RECV_M4:
1397 : 0 : wps_fail_event(wps->wps, WPS_M3, config_error,
1398 : 0 : wps->error_indication, wps->peer_dev.mac_addr);
1399 : 0 : break;
1400 : : case RECV_M6:
1401 : 0 : wps_fail_event(wps->wps, WPS_M5, config_error,
1402 : 0 : wps->error_indication, wps->peer_dev.mac_addr);
1403 : 0 : break;
1404 : : case RECV_M8:
1405 : 12 : wps_fail_event(wps->wps, WPS_M7, config_error,
1406 : 12 : wps->error_indication, wps->peer_dev.mac_addr);
1407 : 12 : break;
1408 : : default:
1409 : 13 : break;
1410 : : }
1411 : :
1412 : : /* Followed by NACK if Enrollee is Supplicant or EAP-Failure if
1413 : : * Enrollee is Authenticator */
1414 : 25 : wps->state = SEND_WSC_NACK;
1415 : :
1416 : 25 : return WPS_FAILURE;
1417 : : }
1418 : :
1419 : :
1420 : 522 : enum wps_process_res wps_enrollee_process_msg(struct wps_data *wps,
1421 : : enum wsc_op_code op_code,
1422 : : const struct wpabuf *msg)
1423 : : {
1424 : :
1425 : 522 : wpa_printf(MSG_DEBUG, "WPS: Processing received message (len=%lu "
1426 : : "op_code=%d)",
1427 : : (unsigned long) wpabuf_len(msg), op_code);
1428 : :
1429 [ + + ]: 522 : if (op_code == WSC_UPnP) {
1430 : : /* Determine the OpCode based on message type attribute */
1431 : : struct wps_parse_attr attr;
1432 [ + - ][ + - ]: 8 : if (wps_parse_msg(msg, &attr) == 0 && attr.msg_type) {
1433 [ - + ]: 8 : if (*attr.msg_type == WPS_WSC_ACK)
1434 : 0 : op_code = WSC_ACK;
1435 [ + + ]: 8 : else if (*attr.msg_type == WPS_WSC_NACK)
1436 : 1 : op_code = WSC_NACK;
1437 : : }
1438 : : }
1439 : :
1440 [ + + + - ]: 522 : switch (op_code) {
1441 : : case WSC_MSG:
1442 : : case WSC_UPnP:
1443 : 493 : return wps_process_wsc_msg(wps, msg);
1444 : : case WSC_ACK:
1445 [ - + ]: 4 : if (wps_validate_wsc_ack(msg) < 0)
1446 : 0 : return WPS_FAILURE;
1447 : 4 : return wps_process_wsc_ack(wps, msg);
1448 : : case WSC_NACK:
1449 [ - + ]: 25 : if (wps_validate_wsc_nack(msg) < 0)
1450 : 0 : return WPS_FAILURE;
1451 : 25 : return wps_process_wsc_nack(wps, msg);
1452 : : default:
1453 : 0 : wpa_printf(MSG_DEBUG, "WPS: Unsupported op_code %d", op_code);
1454 : 522 : return WPS_FAILURE;
1455 : : }
1456 : : }
|