wps_enrollee.c 31 KB

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