wps_enrollee.c 32 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246
  1. /*
  2. * Wi-Fi Protected Setup - Enrollee
  3. * Copyright (c) 2008, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "includes.h"
  15. #include "common.h"
  16. #include "crypto/crypto.h"
  17. #include "crypto/sha256.h"
  18. #include "wps_i.h"
  19. #include "wps_dev_attr.h"
  20. static int wps_build_mac_addr(struct wps_data *wps, struct wpabuf *msg)
  21. {
  22. wpa_printf(MSG_DEBUG, "WPS: * MAC Address");
  23. wpabuf_put_be16(msg, ATTR_MAC_ADDR);
  24. wpabuf_put_be16(msg, ETH_ALEN);
  25. wpabuf_put_data(msg, wps->mac_addr_e, ETH_ALEN);
  26. return 0;
  27. }
  28. static int wps_build_wps_state(struct wps_data *wps, struct wpabuf *msg)
  29. {
  30. u8 state;
  31. if (wps->wps->ap)
  32. state = wps->wps->wps_state;
  33. else
  34. state = WPS_STATE_NOT_CONFIGURED;
  35. wpa_printf(MSG_DEBUG, "WPS: * Wi-Fi Protected Setup State (%d)",
  36. state);
  37. wpabuf_put_be16(msg, ATTR_WPS_STATE);
  38. wpabuf_put_be16(msg, 1);
  39. wpabuf_put_u8(msg, state);
  40. return 0;
  41. }
  42. static int wps_build_e_hash(struct wps_data *wps, struct wpabuf *msg)
  43. {
  44. u8 *hash;
  45. const u8 *addr[4];
  46. size_t len[4];
  47. if (os_get_random(wps->snonce, 2 * WPS_SECRET_NONCE_LEN) < 0)
  48. return -1;
  49. wpa_hexdump(MSG_DEBUG, "WPS: E-S1", wps->snonce, WPS_SECRET_NONCE_LEN);
  50. wpa_hexdump(MSG_DEBUG, "WPS: E-S2",
  51. wps->snonce + WPS_SECRET_NONCE_LEN, WPS_SECRET_NONCE_LEN);
  52. if (wps->dh_pubkey_e == NULL || wps->dh_pubkey_r == NULL) {
  53. wpa_printf(MSG_DEBUG, "WPS: DH public keys not available for "
  54. "E-Hash derivation");
  55. return -1;
  56. }
  57. wpa_printf(MSG_DEBUG, "WPS: * E-Hash1");
  58. wpabuf_put_be16(msg, ATTR_E_HASH1);
  59. wpabuf_put_be16(msg, SHA256_MAC_LEN);
  60. hash = wpabuf_put(msg, SHA256_MAC_LEN);
  61. /* E-Hash1 = HMAC_AuthKey(E-S1 || PSK1 || PK_E || PK_R) */
  62. addr[0] = wps->snonce;
  63. len[0] = WPS_SECRET_NONCE_LEN;
  64. addr[1] = wps->psk1;
  65. len[1] = WPS_PSK_LEN;
  66. addr[2] = wpabuf_head(wps->dh_pubkey_e);
  67. len[2] = wpabuf_len(wps->dh_pubkey_e);
  68. addr[3] = wpabuf_head(wps->dh_pubkey_r);
  69. len[3] = wpabuf_len(wps->dh_pubkey_r);
  70. hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 4, addr, len, hash);
  71. wpa_hexdump(MSG_DEBUG, "WPS: E-Hash1", hash, SHA256_MAC_LEN);
  72. wpa_printf(MSG_DEBUG, "WPS: * E-Hash2");
  73. wpabuf_put_be16(msg, ATTR_E_HASH2);
  74. wpabuf_put_be16(msg, SHA256_MAC_LEN);
  75. hash = wpabuf_put(msg, SHA256_MAC_LEN);
  76. /* E-Hash2 = HMAC_AuthKey(E-S2 || PSK2 || PK_E || PK_R) */
  77. addr[0] = wps->snonce + WPS_SECRET_NONCE_LEN;
  78. addr[1] = wps->psk2;
  79. hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 4, addr, len, hash);
  80. wpa_hexdump(MSG_DEBUG, "WPS: E-Hash2", hash, SHA256_MAC_LEN);
  81. return 0;
  82. }
  83. static int wps_build_e_snonce1(struct wps_data *wps, struct wpabuf *msg)
  84. {
  85. wpa_printf(MSG_DEBUG, "WPS: * E-SNonce1");
  86. wpabuf_put_be16(msg, ATTR_E_SNONCE1);
  87. wpabuf_put_be16(msg, WPS_SECRET_NONCE_LEN);
  88. wpabuf_put_data(msg, wps->snonce, WPS_SECRET_NONCE_LEN);
  89. return 0;
  90. }
  91. static int wps_build_e_snonce2(struct wps_data *wps, struct wpabuf *msg)
  92. {
  93. wpa_printf(MSG_DEBUG, "WPS: * E-SNonce2");
  94. wpabuf_put_be16(msg, ATTR_E_SNONCE2);
  95. wpabuf_put_be16(msg, WPS_SECRET_NONCE_LEN);
  96. wpabuf_put_data(msg, wps->snonce + WPS_SECRET_NONCE_LEN,
  97. WPS_SECRET_NONCE_LEN);
  98. return 0;
  99. }
  100. static struct wpabuf * wps_build_m1(struct wps_data *wps)
  101. {
  102. struct wpabuf *msg;
  103. u16 methods;
  104. if (os_get_random(wps->nonce_e, WPS_NONCE_LEN) < 0)
  105. return NULL;
  106. wpa_hexdump(MSG_DEBUG, "WPS: Enrollee Nonce",
  107. wps->nonce_e, WPS_NONCE_LEN);
  108. wpa_printf(MSG_DEBUG, "WPS: Building Message M1");
  109. msg = wpabuf_alloc(1000);
  110. if (msg == NULL)
  111. return NULL;
  112. methods = WPS_CONFIG_LABEL | WPS_CONFIG_DISPLAY | WPS_CONFIG_KEYPAD;
  113. #ifdef CONFIG_WPS_UFD
  114. methods |= WPS_CONFIG_USBA;
  115. #endif /* CONFIG_WPS_UFD */
  116. #ifdef CONFIG_WPS_NFC
  117. methods |= WPS_CONFIG_NFC_INTERFACE;
  118. #endif /* CONFIG_WPS_NFC */
  119. if (wps->pbc)
  120. methods |= WPS_CONFIG_PUSHBUTTON;
  121. if (wps_build_version(msg) ||
  122. wps_build_msg_type(msg, WPS_M1) ||
  123. wps_build_uuid_e(msg, wps->uuid_e) ||
  124. wps_build_mac_addr(wps, msg) ||
  125. wps_build_enrollee_nonce(wps, msg) ||
  126. wps_build_public_key(wps, msg) ||
  127. wps_build_auth_type_flags(wps, msg) ||
  128. wps_build_encr_type_flags(wps, msg) ||
  129. wps_build_conn_type_flags(wps, msg) ||
  130. wps_build_config_methods(msg, methods) ||
  131. wps_build_wps_state(wps, msg) ||
  132. wps_build_device_attrs(&wps->wps->dev, msg) ||
  133. wps_build_rf_bands(&wps->wps->dev, msg) ||
  134. wps_build_assoc_state(wps, msg) ||
  135. wps_build_dev_password_id(msg, wps->dev_pw_id) ||
  136. wps_build_config_error(msg, WPS_CFG_NO_ERROR) ||
  137. wps_build_os_version(&wps->wps->dev, msg)) {
  138. wpabuf_free(msg);
  139. return NULL;
  140. }
  141. wps->state = RECV_M2;
  142. return msg;
  143. }
  144. static struct wpabuf * wps_build_m3(struct wps_data *wps)
  145. {
  146. struct wpabuf *msg;
  147. wpa_printf(MSG_DEBUG, "WPS: Building Message M3");
  148. if (wps->dev_password == NULL) {
  149. wpa_printf(MSG_DEBUG, "WPS: No Device Password available");
  150. return NULL;
  151. }
  152. wps_derive_psk(wps, wps->dev_password, wps->dev_password_len);
  153. msg = wpabuf_alloc(1000);
  154. if (msg == NULL)
  155. return NULL;
  156. if (wps_build_version(msg) ||
  157. wps_build_msg_type(msg, WPS_M3) ||
  158. wps_build_registrar_nonce(wps, msg) ||
  159. wps_build_e_hash(wps, msg) ||
  160. wps_build_authenticator(wps, msg)) {
  161. wpabuf_free(msg);
  162. return NULL;
  163. }
  164. wps->state = RECV_M4;
  165. return msg;
  166. }
  167. static struct wpabuf * wps_build_m5(struct wps_data *wps)
  168. {
  169. struct wpabuf *msg, *plain;
  170. wpa_printf(MSG_DEBUG, "WPS: Building Message M5");
  171. plain = wpabuf_alloc(200);
  172. if (plain == NULL)
  173. return NULL;
  174. msg = wpabuf_alloc(1000);
  175. if (msg == NULL) {
  176. wpabuf_free(plain);
  177. return NULL;
  178. }
  179. if (wps_build_version(msg) ||
  180. wps_build_msg_type(msg, WPS_M5) ||
  181. wps_build_registrar_nonce(wps, msg) ||
  182. wps_build_e_snonce1(wps, plain) ||
  183. wps_build_key_wrap_auth(wps, plain) ||
  184. wps_build_encr_settings(wps, msg, plain) ||
  185. wps_build_authenticator(wps, msg)) {
  186. wpabuf_free(plain);
  187. wpabuf_free(msg);
  188. return NULL;
  189. }
  190. wpabuf_free(plain);
  191. wps->state = RECV_M6;
  192. return msg;
  193. }
  194. static int wps_build_cred_ssid(struct wps_data *wps, struct wpabuf *msg)
  195. {
  196. wpa_printf(MSG_DEBUG, "WPS: * SSID");
  197. wpabuf_put_be16(msg, ATTR_SSID);
  198. wpabuf_put_be16(msg, wps->wps->ssid_len);
  199. wpabuf_put_data(msg, wps->wps->ssid, wps->wps->ssid_len);
  200. return 0;
  201. }
  202. static int wps_build_cred_auth_type(struct wps_data *wps, struct wpabuf *msg)
  203. {
  204. wpa_printf(MSG_DEBUG, "WPS: * Authentication Type");
  205. wpabuf_put_be16(msg, ATTR_AUTH_TYPE);
  206. wpabuf_put_be16(msg, 2);
  207. wpabuf_put_be16(msg, wps->wps->auth_types);
  208. return 0;
  209. }
  210. static int wps_build_cred_encr_type(struct wps_data *wps, struct wpabuf *msg)
  211. {
  212. wpa_printf(MSG_DEBUG, "WPS: * Encryption Type");
  213. wpabuf_put_be16(msg, ATTR_ENCR_TYPE);
  214. wpabuf_put_be16(msg, 2);
  215. wpabuf_put_be16(msg, wps->wps->encr_types);
  216. return 0;
  217. }
  218. static int wps_build_cred_network_key(struct wps_data *wps, struct wpabuf *msg)
  219. {
  220. wpa_printf(MSG_DEBUG, "WPS: * Network Key");
  221. wpabuf_put_be16(msg, ATTR_NETWORK_KEY);
  222. wpabuf_put_be16(msg, wps->wps->network_key_len);
  223. wpabuf_put_data(msg, wps->wps->network_key, wps->wps->network_key_len);
  224. return 0;
  225. }
  226. static int wps_build_cred_mac_addr(struct wps_data *wps, struct wpabuf *msg)
  227. {
  228. wpa_printf(MSG_DEBUG, "WPS: * MAC Address (AP BSSID)");
  229. wpabuf_put_be16(msg, ATTR_MAC_ADDR);
  230. wpabuf_put_be16(msg, ETH_ALEN);
  231. wpabuf_put_data(msg, wps->wps->dev.mac_addr, ETH_ALEN);
  232. return 0;
  233. }
  234. static int wps_build_ap_settings(struct wps_data *wps, struct wpabuf *plain)
  235. {
  236. if (wps->wps->ap_settings) {
  237. wpa_printf(MSG_DEBUG, "WPS: * AP Settings (pre-configured)");
  238. wpabuf_put_data(plain, wps->wps->ap_settings,
  239. wps->wps->ap_settings_len);
  240. return 0;
  241. }
  242. return wps_build_cred_ssid(wps, plain) ||
  243. wps_build_cred_mac_addr(wps, plain) ||
  244. wps_build_cred_auth_type(wps, plain) ||
  245. wps_build_cred_encr_type(wps, plain) ||
  246. wps_build_cred_network_key(wps, plain);
  247. }
  248. static struct wpabuf * wps_build_m7(struct wps_data *wps)
  249. {
  250. struct wpabuf *msg, *plain;
  251. wpa_printf(MSG_DEBUG, "WPS: Building Message M7");
  252. plain = wpabuf_alloc(500 + wps->wps->ap_settings_len);
  253. if (plain == NULL)
  254. return NULL;
  255. msg = wpabuf_alloc(1000 + wps->wps->ap_settings_len);
  256. if (msg == NULL) {
  257. wpabuf_free(plain);
  258. return NULL;
  259. }
  260. if (wps_build_version(msg) ||
  261. wps_build_msg_type(msg, WPS_M7) ||
  262. wps_build_registrar_nonce(wps, msg) ||
  263. wps_build_e_snonce2(wps, plain) ||
  264. (wps->wps->ap && wps_build_ap_settings(wps, plain)) ||
  265. wps_build_key_wrap_auth(wps, plain) ||
  266. wps_build_encr_settings(wps, msg, plain) ||
  267. wps_build_authenticator(wps, msg)) {
  268. wpabuf_free(plain);
  269. wpabuf_free(msg);
  270. return NULL;
  271. }
  272. wpabuf_free(plain);
  273. if (wps->wps->ap && wps->wps->registrar) {
  274. /*
  275. * If the Registrar is only learning our current configuration,
  276. * it may not continue protocol run to successful completion.
  277. * Store information here to make sure it remains available.
  278. */
  279. wps_device_store(wps->wps->registrar, &wps->peer_dev,
  280. wps->uuid_r);
  281. }
  282. wps->state = RECV_M8;
  283. return msg;
  284. }
  285. static struct wpabuf * wps_build_wsc_done(struct wps_data *wps)
  286. {
  287. struct wpabuf *msg;
  288. wpa_printf(MSG_DEBUG, "WPS: Building Message WSC_Done");
  289. msg = wpabuf_alloc(1000);
  290. if (msg == NULL)
  291. return NULL;
  292. if (wps_build_version(msg) ||
  293. wps_build_msg_type(msg, WPS_WSC_DONE) ||
  294. wps_build_enrollee_nonce(wps, msg) ||
  295. wps_build_registrar_nonce(wps, msg)) {
  296. wpabuf_free(msg);
  297. return NULL;
  298. }
  299. if (wps->wps->ap)
  300. wps->state = RECV_ACK;
  301. else {
  302. wps_success_event(wps->wps);
  303. wps->state = WPS_FINISHED;
  304. }
  305. return msg;
  306. }
  307. static struct wpabuf * wps_build_wsc_ack(struct wps_data *wps)
  308. {
  309. struct wpabuf *msg;
  310. wpa_printf(MSG_DEBUG, "WPS: Building Message WSC_ACK");
  311. msg = wpabuf_alloc(1000);
  312. if (msg == NULL)
  313. return NULL;
  314. if (wps_build_version(msg) ||
  315. wps_build_msg_type(msg, WPS_WSC_ACK) ||
  316. wps_build_enrollee_nonce(wps, msg) ||
  317. wps_build_registrar_nonce(wps, msg)) {
  318. wpabuf_free(msg);
  319. return NULL;
  320. }
  321. return msg;
  322. }
  323. static struct wpabuf * wps_build_wsc_nack(struct wps_data *wps)
  324. {
  325. struct wpabuf *msg;
  326. wpa_printf(MSG_DEBUG, "WPS: Building Message WSC_NACK");
  327. msg = wpabuf_alloc(1000);
  328. if (msg == NULL)
  329. return NULL;
  330. if (wps_build_version(msg) ||
  331. wps_build_msg_type(msg, WPS_WSC_NACK) ||
  332. wps_build_enrollee_nonce(wps, msg) ||
  333. wps_build_registrar_nonce(wps, msg) ||
  334. wps_build_config_error(msg, wps->config_error)) {
  335. wpabuf_free(msg);
  336. return NULL;
  337. }
  338. return msg;
  339. }
  340. struct wpabuf * wps_enrollee_get_msg(struct wps_data *wps,
  341. enum wsc_op_code *op_code)
  342. {
  343. struct wpabuf *msg;
  344. switch (wps->state) {
  345. case SEND_M1:
  346. msg = wps_build_m1(wps);
  347. *op_code = WSC_MSG;
  348. break;
  349. case SEND_M3:
  350. msg = wps_build_m3(wps);
  351. *op_code = WSC_MSG;
  352. break;
  353. case SEND_M5:
  354. msg = wps_build_m5(wps);
  355. *op_code = WSC_MSG;
  356. break;
  357. case SEND_M7:
  358. msg = wps_build_m7(wps);
  359. *op_code = WSC_MSG;
  360. break;
  361. case RECEIVED_M2D:
  362. if (wps->wps->ap) {
  363. msg = wps_build_wsc_nack(wps);
  364. *op_code = WSC_NACK;
  365. break;
  366. }
  367. msg = wps_build_wsc_ack(wps);
  368. *op_code = WSC_ACK;
  369. if (msg) {
  370. /* Another M2/M2D may be received */
  371. wps->state = RECV_M2;
  372. }
  373. break;
  374. case SEND_WSC_NACK:
  375. msg = wps_build_wsc_nack(wps);
  376. *op_code = WSC_NACK;
  377. break;
  378. case WPS_MSG_DONE:
  379. msg = wps_build_wsc_done(wps);
  380. *op_code = WSC_Done;
  381. break;
  382. default:
  383. wpa_printf(MSG_DEBUG, "WPS: Unsupported state %d for building "
  384. "a message", wps->state);
  385. msg = NULL;
  386. break;
  387. }
  388. if (*op_code == WSC_MSG && msg) {
  389. /* Save a copy of the last message for Authenticator derivation
  390. */
  391. wpabuf_free(wps->last_msg);
  392. wps->last_msg = wpabuf_dup(msg);
  393. }
  394. return msg;
  395. }
  396. static int wps_process_registrar_nonce(struct wps_data *wps, const u8 *r_nonce)
  397. {
  398. if (r_nonce == NULL) {
  399. wpa_printf(MSG_DEBUG, "WPS: No Registrar Nonce received");
  400. return -1;
  401. }
  402. os_memcpy(wps->nonce_r, r_nonce, WPS_NONCE_LEN);
  403. wpa_hexdump(MSG_DEBUG, "WPS: Registrar Nonce",
  404. wps->nonce_r, WPS_NONCE_LEN);
  405. return 0;
  406. }
  407. static int wps_process_enrollee_nonce(struct wps_data *wps, const u8 *e_nonce)
  408. {
  409. if (e_nonce == NULL) {
  410. wpa_printf(MSG_DEBUG, "WPS: No Enrollee Nonce received");
  411. return -1;
  412. }
  413. if (os_memcmp(wps->nonce_e, e_nonce, WPS_NONCE_LEN) != 0) {
  414. wpa_printf(MSG_DEBUG, "WPS: Invalid Enrollee Nonce received");
  415. return -1;
  416. }
  417. return 0;
  418. }
  419. static int wps_process_uuid_r(struct wps_data *wps, const u8 *uuid_r)
  420. {
  421. if (uuid_r == NULL) {
  422. wpa_printf(MSG_DEBUG, "WPS: No UUID-R received");
  423. return -1;
  424. }
  425. os_memcpy(wps->uuid_r, uuid_r, WPS_UUID_LEN);
  426. wpa_hexdump(MSG_DEBUG, "WPS: UUID-R", wps->uuid_r, WPS_UUID_LEN);
  427. return 0;
  428. }
  429. static int wps_process_pubkey(struct wps_data *wps, const u8 *pk,
  430. size_t pk_len)
  431. {
  432. if (pk == NULL || pk_len == 0) {
  433. wpa_printf(MSG_DEBUG, "WPS: No Public Key received");
  434. return -1;
  435. }
  436. #ifdef CONFIG_WPS_OOB
  437. if (wps->dev_pw_id != DEV_PW_DEFAULT &&
  438. wps->wps->oob_conf.pubkey_hash) {
  439. const u8 *addr[1];
  440. u8 hash[WPS_HASH_LEN];
  441. addr[0] = pk;
  442. sha256_vector(1, addr, &pk_len, hash);
  443. if (os_memcmp(hash,
  444. wpabuf_head(wps->wps->oob_conf.pubkey_hash),
  445. WPS_OOB_PUBKEY_HASH_LEN) != 0) {
  446. wpa_printf(MSG_ERROR, "WPS: Public Key hash error");
  447. return -1;
  448. }
  449. }
  450. #endif /* CONFIG_WPS_OOB */
  451. wpabuf_free(wps->dh_pubkey_r);
  452. wps->dh_pubkey_r = wpabuf_alloc_copy(pk, pk_len);
  453. if (wps->dh_pubkey_r == NULL)
  454. return -1;
  455. if (wps_derive_keys(wps) < 0)
  456. return -1;
  457. return 0;
  458. }
  459. static int wps_process_r_hash1(struct wps_data *wps, const u8 *r_hash1)
  460. {
  461. if (r_hash1 == NULL) {
  462. wpa_printf(MSG_DEBUG, "WPS: No R-Hash1 received");
  463. return -1;
  464. }
  465. os_memcpy(wps->peer_hash1, r_hash1, WPS_HASH_LEN);
  466. wpa_hexdump(MSG_DEBUG, "WPS: R-Hash1", wps->peer_hash1, WPS_HASH_LEN);
  467. return 0;
  468. }
  469. static int wps_process_r_hash2(struct wps_data *wps, const u8 *r_hash2)
  470. {
  471. if (r_hash2 == NULL) {
  472. wpa_printf(MSG_DEBUG, "WPS: No R-Hash2 received");
  473. return -1;
  474. }
  475. os_memcpy(wps->peer_hash2, r_hash2, WPS_HASH_LEN);
  476. wpa_hexdump(MSG_DEBUG, "WPS: R-Hash2", wps->peer_hash2, WPS_HASH_LEN);
  477. return 0;
  478. }
  479. static int wps_process_r_snonce1(struct wps_data *wps, const u8 *r_snonce1)
  480. {
  481. u8 hash[SHA256_MAC_LEN];
  482. const u8 *addr[4];
  483. size_t len[4];
  484. if (r_snonce1 == NULL) {
  485. wpa_printf(MSG_DEBUG, "WPS: No R-SNonce1 received");
  486. return -1;
  487. }
  488. wpa_hexdump_key(MSG_DEBUG, "WPS: R-SNonce1", r_snonce1,
  489. WPS_SECRET_NONCE_LEN);
  490. /* R-Hash1 = HMAC_AuthKey(R-S1 || PSK1 || PK_E || PK_R) */
  491. addr[0] = r_snonce1;
  492. len[0] = WPS_SECRET_NONCE_LEN;
  493. addr[1] = wps->psk1;
  494. len[1] = WPS_PSK_LEN;
  495. addr[2] = wpabuf_head(wps->dh_pubkey_e);
  496. len[2] = wpabuf_len(wps->dh_pubkey_e);
  497. addr[3] = wpabuf_head(wps->dh_pubkey_r);
  498. len[3] = wpabuf_len(wps->dh_pubkey_r);
  499. hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 4, addr, len, hash);
  500. if (os_memcmp(wps->peer_hash1, hash, WPS_HASH_LEN) != 0) {
  501. wpa_printf(MSG_DEBUG, "WPS: R-Hash1 derived from R-S1 does "
  502. "not match with the pre-committed value");
  503. wps->config_error = WPS_CFG_DEV_PASSWORD_AUTH_FAILURE;
  504. wps_pwd_auth_fail_event(wps->wps, 1, 1);
  505. return -1;
  506. }
  507. wpa_printf(MSG_DEBUG, "WPS: Registrar proved knowledge of the first "
  508. "half of the device password");
  509. return 0;
  510. }
  511. static int wps_process_r_snonce2(struct wps_data *wps, const u8 *r_snonce2)
  512. {
  513. u8 hash[SHA256_MAC_LEN];
  514. const u8 *addr[4];
  515. size_t len[4];
  516. if (r_snonce2 == NULL) {
  517. wpa_printf(MSG_DEBUG, "WPS: No R-SNonce2 received");
  518. return -1;
  519. }
  520. wpa_hexdump_key(MSG_DEBUG, "WPS: R-SNonce2", r_snonce2,
  521. WPS_SECRET_NONCE_LEN);
  522. /* R-Hash2 = HMAC_AuthKey(R-S2 || PSK2 || PK_E || PK_R) */
  523. addr[0] = r_snonce2;
  524. len[0] = WPS_SECRET_NONCE_LEN;
  525. addr[1] = wps->psk2;
  526. len[1] = WPS_PSK_LEN;
  527. addr[2] = wpabuf_head(wps->dh_pubkey_e);
  528. len[2] = wpabuf_len(wps->dh_pubkey_e);
  529. addr[3] = wpabuf_head(wps->dh_pubkey_r);
  530. len[3] = wpabuf_len(wps->dh_pubkey_r);
  531. hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 4, addr, len, hash);
  532. if (os_memcmp(wps->peer_hash2, hash, WPS_HASH_LEN) != 0) {
  533. wpa_printf(MSG_DEBUG, "WPS: R-Hash2 derived from R-S2 does "
  534. "not match with the pre-committed value");
  535. wps->config_error = WPS_CFG_DEV_PASSWORD_AUTH_FAILURE;
  536. wps_pwd_auth_fail_event(wps->wps, 1, 2);
  537. return -1;
  538. }
  539. wpa_printf(MSG_DEBUG, "WPS: Registrar proved knowledge of the second "
  540. "half of the device password");
  541. return 0;
  542. }
  543. static int wps_process_cred_e(struct wps_data *wps, const u8 *cred,
  544. size_t cred_len)
  545. {
  546. struct wps_parse_attr attr;
  547. struct wpabuf msg;
  548. wpa_printf(MSG_DEBUG, "WPS: Received Credential");
  549. os_memset(&wps->cred, 0, sizeof(wps->cred));
  550. wpabuf_set(&msg, cred, cred_len);
  551. if (wps_parse_msg(&msg, &attr) < 0 ||
  552. wps_process_cred(&attr, &wps->cred))
  553. return -1;
  554. if (os_memcmp(wps->cred.mac_addr, wps->wps->dev.mac_addr, ETH_ALEN) !=
  555. 0) {
  556. wpa_printf(MSG_DEBUG, "WPS: MAC Address in the Credential ("
  557. MACSTR ") does not match with own address (" MACSTR
  558. ")", MAC2STR(wps->cred.mac_addr),
  559. MAC2STR(wps->wps->dev.mac_addr));
  560. /*
  561. * In theory, this could be consider fatal error, but there are
  562. * number of deployed implementations using other address here
  563. * due to unclarity in the specification. For interoperability
  564. * reasons, allow this to be processed since we do not really
  565. * use the MAC Address information for anything.
  566. */
  567. }
  568. if (wps->wps->cred_cb) {
  569. wps->cred.cred_attr = cred - 4;
  570. wps->cred.cred_attr_len = cred_len + 4;
  571. wps->wps->cred_cb(wps->wps->cb_ctx, &wps->cred);
  572. wps->cred.cred_attr = NULL;
  573. wps->cred.cred_attr_len = 0;
  574. }
  575. return 0;
  576. }
  577. static int wps_process_creds(struct wps_data *wps, const u8 *cred[],
  578. size_t cred_len[], size_t num_cred)
  579. {
  580. size_t i;
  581. if (wps->wps->ap)
  582. return 0;
  583. if (num_cred == 0) {
  584. wpa_printf(MSG_DEBUG, "WPS: No Credential attributes "
  585. "received");
  586. return -1;
  587. }
  588. for (i = 0; i < num_cred; i++) {
  589. if (wps_process_cred_e(wps, cred[i], cred_len[i]))
  590. return -1;
  591. }
  592. return 0;
  593. }
  594. static int wps_process_ap_settings_e(struct wps_data *wps,
  595. struct wps_parse_attr *attr,
  596. struct wpabuf *attrs)
  597. {
  598. struct wps_credential cred;
  599. if (!wps->wps->ap)
  600. return 0;
  601. if (wps_process_ap_settings(attr, &cred) < 0)
  602. return -1;
  603. wpa_printf(MSG_INFO, "WPS: Received new AP configuration from "
  604. "Registrar");
  605. if (os_memcmp(cred.mac_addr, wps->wps->dev.mac_addr, ETH_ALEN) !=
  606. 0) {
  607. wpa_printf(MSG_DEBUG, "WPS: MAC Address in the AP Settings ("
  608. MACSTR ") does not match with own address (" MACSTR
  609. ")", MAC2STR(cred.mac_addr),
  610. MAC2STR(wps->wps->dev.mac_addr));
  611. /*
  612. * In theory, this could be consider fatal error, but there are
  613. * number of deployed implementations using other address here
  614. * due to unclarity in the specification. For interoperability
  615. * reasons, allow this to be processed since we do not really
  616. * use the MAC Address information for anything.
  617. */
  618. }
  619. if (wps->wps->cred_cb) {
  620. cred.cred_attr = wpabuf_head(attrs);
  621. cred.cred_attr_len = wpabuf_len(attrs);
  622. wps->wps->cred_cb(wps->wps->cb_ctx, &cred);
  623. }
  624. return 0;
  625. }
  626. static enum wps_process_res wps_process_m2(struct wps_data *wps,
  627. const struct wpabuf *msg,
  628. struct wps_parse_attr *attr)
  629. {
  630. wpa_printf(MSG_DEBUG, "WPS: Received M2");
  631. if (wps->state != RECV_M2) {
  632. wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
  633. "receiving M2", wps->state);
  634. wps->state = SEND_WSC_NACK;
  635. return WPS_CONTINUE;
  636. }
  637. if (wps_process_registrar_nonce(wps, attr->registrar_nonce) ||
  638. wps_process_enrollee_nonce(wps, attr->enrollee_nonce) ||
  639. wps_process_uuid_r(wps, attr->uuid_r) ||
  640. wps_process_pubkey(wps, attr->public_key, attr->public_key_len) ||
  641. wps_process_authenticator(wps, attr->authenticator, msg) ||
  642. wps_process_device_attrs(&wps->peer_dev, attr)) {
  643. wps->state = SEND_WSC_NACK;
  644. return WPS_CONTINUE;
  645. }
  646. if (wps->wps->ap && wps->wps->ap_setup_locked) {
  647. wpa_printf(MSG_DEBUG, "WPS: AP Setup is locked - refuse "
  648. "registration of a new Registrar");
  649. wps->config_error = WPS_CFG_SETUP_LOCKED;
  650. wps->state = SEND_WSC_NACK;
  651. return WPS_CONTINUE;
  652. }
  653. wps->state = SEND_M3;
  654. return WPS_CONTINUE;
  655. }
  656. static enum wps_process_res wps_process_m2d(struct wps_data *wps,
  657. struct wps_parse_attr *attr)
  658. {
  659. wpa_printf(MSG_DEBUG, "WPS: Received M2D");
  660. if (wps->state != RECV_M2) {
  661. wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
  662. "receiving M2D", wps->state);
  663. wps->state = SEND_WSC_NACK;
  664. return WPS_CONTINUE;
  665. }
  666. wpa_hexdump_ascii(MSG_DEBUG, "WPS: Manufacturer",
  667. attr->manufacturer, attr->manufacturer_len);
  668. wpa_hexdump_ascii(MSG_DEBUG, "WPS: Model Name",
  669. attr->model_name, attr->model_name_len);
  670. wpa_hexdump_ascii(MSG_DEBUG, "WPS: Model Number",
  671. attr->model_number, attr->model_number_len);
  672. wpa_hexdump_ascii(MSG_DEBUG, "WPS: Serial Number",
  673. attr->serial_number, attr->serial_number_len);
  674. wpa_hexdump_ascii(MSG_DEBUG, "WPS: Device Name",
  675. attr->dev_name, attr->dev_name_len);
  676. if (wps->wps->event_cb) {
  677. union wps_event_data data;
  678. struct wps_event_m2d *m2d = &data.m2d;
  679. os_memset(&data, 0, sizeof(data));
  680. if (attr->config_methods)
  681. m2d->config_methods =
  682. WPA_GET_BE16(attr->config_methods);
  683. m2d->manufacturer = attr->manufacturer;
  684. m2d->manufacturer_len = attr->manufacturer_len;
  685. m2d->model_name = attr->model_name;
  686. m2d->model_name_len = attr->model_name_len;
  687. m2d->model_number = attr->model_number;
  688. m2d->model_number_len = attr->model_number_len;
  689. m2d->serial_number = attr->serial_number;
  690. m2d->serial_number_len = attr->serial_number_len;
  691. m2d->dev_name = attr->dev_name;
  692. m2d->dev_name_len = attr->dev_name_len;
  693. m2d->primary_dev_type = attr->primary_dev_type;
  694. if (attr->config_error)
  695. m2d->config_error =
  696. WPA_GET_BE16(attr->config_error);
  697. if (attr->dev_password_id)
  698. m2d->dev_password_id =
  699. WPA_GET_BE16(attr->dev_password_id);
  700. wps->wps->event_cb(wps->wps->cb_ctx, WPS_EV_M2D, &data);
  701. }
  702. wps->state = RECEIVED_M2D;
  703. return WPS_CONTINUE;
  704. }
  705. static enum wps_process_res wps_process_m4(struct wps_data *wps,
  706. const struct wpabuf *msg,
  707. struct wps_parse_attr *attr)
  708. {
  709. struct wpabuf *decrypted;
  710. struct wps_parse_attr eattr;
  711. wpa_printf(MSG_DEBUG, "WPS: Received M4");
  712. if (wps->state != RECV_M4) {
  713. wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
  714. "receiving M4", wps->state);
  715. wps->state = SEND_WSC_NACK;
  716. return WPS_CONTINUE;
  717. }
  718. if (wps_process_enrollee_nonce(wps, attr->enrollee_nonce) ||
  719. wps_process_authenticator(wps, attr->authenticator, msg) ||
  720. wps_process_r_hash1(wps, attr->r_hash1) ||
  721. wps_process_r_hash2(wps, attr->r_hash2)) {
  722. wps->state = SEND_WSC_NACK;
  723. return WPS_CONTINUE;
  724. }
  725. decrypted = wps_decrypt_encr_settings(wps, attr->encr_settings,
  726. attr->encr_settings_len);
  727. if (decrypted == NULL) {
  728. wpa_printf(MSG_DEBUG, "WPS: Failed to decrypted Encrypted "
  729. "Settings attribute");
  730. wps->state = SEND_WSC_NACK;
  731. return WPS_CONTINUE;
  732. }
  733. wpa_printf(MSG_DEBUG, "WPS: Processing decrypted Encrypted Settings "
  734. "attribute");
  735. if (wps_parse_msg(decrypted, &eattr) < 0 ||
  736. wps_process_key_wrap_auth(wps, decrypted, eattr.key_wrap_auth) ||
  737. wps_process_r_snonce1(wps, eattr.r_snonce1)) {
  738. wpabuf_free(decrypted);
  739. wps->state = SEND_WSC_NACK;
  740. return WPS_CONTINUE;
  741. }
  742. wpabuf_free(decrypted);
  743. wps->state = SEND_M5;
  744. return WPS_CONTINUE;
  745. }
  746. static enum wps_process_res wps_process_m6(struct wps_data *wps,
  747. const struct wpabuf *msg,
  748. struct wps_parse_attr *attr)
  749. {
  750. struct wpabuf *decrypted;
  751. struct wps_parse_attr eattr;
  752. wpa_printf(MSG_DEBUG, "WPS: Received M6");
  753. if (wps->state != RECV_M6) {
  754. wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
  755. "receiving M6", wps->state);
  756. wps->state = SEND_WSC_NACK;
  757. return WPS_CONTINUE;
  758. }
  759. if (wps_process_enrollee_nonce(wps, attr->enrollee_nonce) ||
  760. wps_process_authenticator(wps, attr->authenticator, msg)) {
  761. wps->state = SEND_WSC_NACK;
  762. return WPS_CONTINUE;
  763. }
  764. decrypted = wps_decrypt_encr_settings(wps, attr->encr_settings,
  765. attr->encr_settings_len);
  766. if (decrypted == NULL) {
  767. wpa_printf(MSG_DEBUG, "WPS: Failed to decrypted Encrypted "
  768. "Settings attribute");
  769. wps->state = SEND_WSC_NACK;
  770. return WPS_CONTINUE;
  771. }
  772. wpa_printf(MSG_DEBUG, "WPS: Processing decrypted Encrypted Settings "
  773. "attribute");
  774. if (wps_parse_msg(decrypted, &eattr) < 0 ||
  775. wps_process_key_wrap_auth(wps, decrypted, eattr.key_wrap_auth) ||
  776. wps_process_r_snonce2(wps, eattr.r_snonce2)) {
  777. wpabuf_free(decrypted);
  778. wps->state = SEND_WSC_NACK;
  779. return WPS_CONTINUE;
  780. }
  781. wpabuf_free(decrypted);
  782. wps->state = SEND_M7;
  783. return WPS_CONTINUE;
  784. }
  785. static enum wps_process_res wps_process_m8(struct wps_data *wps,
  786. const struct wpabuf *msg,
  787. struct wps_parse_attr *attr)
  788. {
  789. struct wpabuf *decrypted;
  790. struct wps_parse_attr eattr;
  791. wpa_printf(MSG_DEBUG, "WPS: Received M8");
  792. if (wps->state != RECV_M8) {
  793. wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
  794. "receiving M8", wps->state);
  795. wps->state = SEND_WSC_NACK;
  796. return WPS_CONTINUE;
  797. }
  798. if (wps_process_enrollee_nonce(wps, attr->enrollee_nonce) ||
  799. wps_process_authenticator(wps, attr->authenticator, msg)) {
  800. wps->state = SEND_WSC_NACK;
  801. return WPS_CONTINUE;
  802. }
  803. decrypted = wps_decrypt_encr_settings(wps, attr->encr_settings,
  804. attr->encr_settings_len);
  805. if (decrypted == NULL) {
  806. wpa_printf(MSG_DEBUG, "WPS: Failed to decrypted Encrypted "
  807. "Settings attribute");
  808. wps->state = SEND_WSC_NACK;
  809. return WPS_CONTINUE;
  810. }
  811. wpa_printf(MSG_DEBUG, "WPS: Processing decrypted Encrypted Settings "
  812. "attribute");
  813. if (wps_parse_msg(decrypted, &eattr) < 0 ||
  814. wps_process_key_wrap_auth(wps, decrypted, eattr.key_wrap_auth) ||
  815. wps_process_creds(wps, eattr.cred, eattr.cred_len,
  816. eattr.num_cred) ||
  817. wps_process_ap_settings_e(wps, &eattr, decrypted)) {
  818. wpabuf_free(decrypted);
  819. wps->state = SEND_WSC_NACK;
  820. return WPS_CONTINUE;
  821. }
  822. wpabuf_free(decrypted);
  823. wps->state = WPS_MSG_DONE;
  824. return WPS_CONTINUE;
  825. }
  826. static enum wps_process_res wps_process_wsc_msg(struct wps_data *wps,
  827. const struct wpabuf *msg)
  828. {
  829. struct wps_parse_attr attr;
  830. enum wps_process_res ret = WPS_CONTINUE;
  831. wpa_printf(MSG_DEBUG, "WPS: Received WSC_MSG");
  832. if (wps_parse_msg(msg, &attr) < 0)
  833. return WPS_FAILURE;
  834. if (!wps_version_supported(attr.version)) {
  835. wpa_printf(MSG_DEBUG, "WPS: Unsupported message version 0x%x",
  836. attr.version ? *attr.version : 0);
  837. return WPS_FAILURE;
  838. }
  839. if (attr.enrollee_nonce == NULL ||
  840. os_memcmp(wps->nonce_e, attr.enrollee_nonce, WPS_NONCE_LEN != 0)) {
  841. wpa_printf(MSG_DEBUG, "WPS: Mismatch in enrollee nonce");
  842. return WPS_FAILURE;
  843. }
  844. if (attr.msg_type == NULL) {
  845. wpa_printf(MSG_DEBUG, "WPS: No Message Type attribute");
  846. return WPS_FAILURE;
  847. }
  848. switch (*attr.msg_type) {
  849. case WPS_M2:
  850. ret = wps_process_m2(wps, msg, &attr);
  851. break;
  852. case WPS_M2D:
  853. ret = wps_process_m2d(wps, &attr);
  854. break;
  855. case WPS_M4:
  856. ret = wps_process_m4(wps, msg, &attr);
  857. if (ret == WPS_FAILURE || wps->state == SEND_WSC_NACK)
  858. wps_fail_event(wps->wps, WPS_M4);
  859. break;
  860. case WPS_M6:
  861. ret = wps_process_m6(wps, msg, &attr);
  862. if (ret == WPS_FAILURE || wps->state == SEND_WSC_NACK)
  863. wps_fail_event(wps->wps, WPS_M6);
  864. break;
  865. case WPS_M8:
  866. ret = wps_process_m8(wps, msg, &attr);
  867. if (ret == WPS_FAILURE || wps->state == SEND_WSC_NACK)
  868. wps_fail_event(wps->wps, WPS_M8);
  869. break;
  870. default:
  871. wpa_printf(MSG_DEBUG, "WPS: Unsupported Message Type %d",
  872. *attr.msg_type);
  873. return WPS_FAILURE;
  874. }
  875. /*
  876. * Save a copy of the last message for Authenticator derivation if we
  877. * are continuing. However, skip M2D since it is not authenticated and
  878. * neither is the ACK/NACK response frame. This allows the possibly
  879. * following M2 to be processed correctly by using the previously sent
  880. * M1 in Authenticator derivation.
  881. */
  882. if (ret == WPS_CONTINUE && *attr.msg_type != WPS_M2D) {
  883. /* Save a copy of the last message for Authenticator derivation
  884. */
  885. wpabuf_free(wps->last_msg);
  886. wps->last_msg = wpabuf_dup(msg);
  887. }
  888. return ret;
  889. }
  890. static enum wps_process_res wps_process_wsc_ack(struct wps_data *wps,
  891. const struct wpabuf *msg)
  892. {
  893. struct wps_parse_attr attr;
  894. wpa_printf(MSG_DEBUG, "WPS: Received WSC_ACK");
  895. if (wps_parse_msg(msg, &attr) < 0)
  896. return WPS_FAILURE;
  897. if (!wps_version_supported(attr.version)) {
  898. wpa_printf(MSG_DEBUG, "WPS: Unsupported message version 0x%x",
  899. attr.version ? *attr.version : 0);
  900. return WPS_FAILURE;
  901. }
  902. if (attr.msg_type == NULL) {
  903. wpa_printf(MSG_DEBUG, "WPS: No Message Type attribute");
  904. return WPS_FAILURE;
  905. }
  906. if (*attr.msg_type != WPS_WSC_ACK) {
  907. wpa_printf(MSG_DEBUG, "WPS: Invalid Message Type %d",
  908. *attr.msg_type);
  909. return WPS_FAILURE;
  910. }
  911. if (attr.registrar_nonce == NULL ||
  912. os_memcmp(wps->nonce_r, attr.registrar_nonce, WPS_NONCE_LEN != 0))
  913. {
  914. wpa_printf(MSG_DEBUG, "WPS: Mismatch in registrar nonce");
  915. return WPS_FAILURE;
  916. }
  917. if (attr.enrollee_nonce == NULL ||
  918. os_memcmp(wps->nonce_e, attr.enrollee_nonce, WPS_NONCE_LEN != 0)) {
  919. wpa_printf(MSG_DEBUG, "WPS: Mismatch in enrollee nonce");
  920. return WPS_FAILURE;
  921. }
  922. if (wps->state == RECV_ACK && wps->wps->ap) {
  923. wpa_printf(MSG_DEBUG, "WPS: External Registrar registration "
  924. "completed successfully");
  925. wps_success_event(wps->wps);
  926. wps->state = WPS_FINISHED;
  927. return WPS_DONE;
  928. }
  929. return WPS_FAILURE;
  930. }
  931. static enum wps_process_res wps_process_wsc_nack(struct wps_data *wps,
  932. const struct wpabuf *msg)
  933. {
  934. struct wps_parse_attr attr;
  935. wpa_printf(MSG_DEBUG, "WPS: Received WSC_NACK");
  936. if (wps_parse_msg(msg, &attr) < 0)
  937. return WPS_FAILURE;
  938. if (!wps_version_supported(attr.version)) {
  939. wpa_printf(MSG_DEBUG, "WPS: Unsupported message version 0x%x",
  940. attr.version ? *attr.version : 0);
  941. return WPS_FAILURE;
  942. }
  943. if (attr.msg_type == NULL) {
  944. wpa_printf(MSG_DEBUG, "WPS: No Message Type attribute");
  945. return WPS_FAILURE;
  946. }
  947. if (*attr.msg_type != WPS_WSC_NACK) {
  948. wpa_printf(MSG_DEBUG, "WPS: Invalid Message Type %d",
  949. *attr.msg_type);
  950. return WPS_FAILURE;
  951. }
  952. if (attr.registrar_nonce == NULL ||
  953. os_memcmp(wps->nonce_r, attr.registrar_nonce, WPS_NONCE_LEN != 0))
  954. {
  955. wpa_printf(MSG_DEBUG, "WPS: Mismatch in registrar nonce");
  956. wpa_hexdump(MSG_DEBUG, "WPS: Received Registrar Nonce",
  957. attr.registrar_nonce, WPS_NONCE_LEN);
  958. wpa_hexdump(MSG_DEBUG, "WPS: Expected Registrar Nonce",
  959. wps->nonce_r, WPS_NONCE_LEN);
  960. return WPS_FAILURE;
  961. }
  962. if (attr.enrollee_nonce == NULL ||
  963. os_memcmp(wps->nonce_e, attr.enrollee_nonce, WPS_NONCE_LEN != 0)) {
  964. wpa_printf(MSG_DEBUG, "WPS: Mismatch in enrollee nonce");
  965. wpa_hexdump(MSG_DEBUG, "WPS: Received Enrollee Nonce",
  966. attr.enrollee_nonce, WPS_NONCE_LEN);
  967. wpa_hexdump(MSG_DEBUG, "WPS: Expected Enrollee Nonce",
  968. wps->nonce_e, WPS_NONCE_LEN);
  969. return WPS_FAILURE;
  970. }
  971. if (attr.config_error == NULL) {
  972. wpa_printf(MSG_DEBUG, "WPS: No Configuration Error attribute "
  973. "in WSC_NACK");
  974. return WPS_FAILURE;
  975. }
  976. wpa_printf(MSG_DEBUG, "WPS: Registrar terminated negotiation with "
  977. "Configuration Error %d", WPA_GET_BE16(attr.config_error));
  978. switch (wps->state) {
  979. case RECV_M4:
  980. wps_fail_event(wps->wps, WPS_M3);
  981. break;
  982. case RECV_M6:
  983. wps_fail_event(wps->wps, WPS_M5);
  984. break;
  985. case RECV_M8:
  986. wps_fail_event(wps->wps, WPS_M7);
  987. break;
  988. default:
  989. break;
  990. }
  991. /* Followed by NACK if Enrollee is Supplicant or EAP-Failure if
  992. * Enrollee is Authenticator */
  993. wps->state = SEND_WSC_NACK;
  994. return WPS_FAILURE;
  995. }
  996. enum wps_process_res wps_enrollee_process_msg(struct wps_data *wps,
  997. enum wsc_op_code op_code,
  998. const struct wpabuf *msg)
  999. {
  1000. wpa_printf(MSG_DEBUG, "WPS: Processing received message (len=%lu "
  1001. "op_code=%d)",
  1002. (unsigned long) wpabuf_len(msg), op_code);
  1003. if (op_code == WSC_UPnP) {
  1004. /* Determine the OpCode based on message type attribute */
  1005. struct wps_parse_attr attr;
  1006. if (wps_parse_msg(msg, &attr) == 0 && attr.msg_type) {
  1007. if (*attr.msg_type == WPS_WSC_ACK)
  1008. op_code = WSC_ACK;
  1009. else if (*attr.msg_type == WPS_WSC_NACK)
  1010. op_code = WSC_NACK;
  1011. }
  1012. }
  1013. switch (op_code) {
  1014. case WSC_MSG:
  1015. case WSC_UPnP:
  1016. return wps_process_wsc_msg(wps, msg);
  1017. case WSC_ACK:
  1018. return wps_process_wsc_ack(wps, msg);
  1019. case WSC_NACK:
  1020. return wps_process_wsc_nack(wps, msg);
  1021. default:
  1022. wpa_printf(MSG_DEBUG, "WPS: Unsupported op_code %d", op_code);
  1023. return WPS_FAILURE;
  1024. }
  1025. }