wps_enrollee.c 34 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310
  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, int wps2)
  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. #ifdef CONFIG_WPS_STRICT
  565. if (wps2) {
  566. wpa_printf(MSG_INFO, "WPS: Do not accept incorrect "
  567. "MAC Address in AP Settings");
  568. return -1;
  569. }
  570. #endif /* CONFIG_WPS_STRICT */
  571. }
  572. if (!(wps->cred.encr_type &
  573. (WPS_ENCR_NONE | WPS_ENCR_TKIP | WPS_ENCR_AES))) {
  574. if (wps->cred.encr_type & WPS_ENCR_WEP) {
  575. wpa_printf(MSG_INFO, "WPS: Reject Credential "
  576. "due to WEP configuration");
  577. return -2;
  578. }
  579. wpa_printf(MSG_INFO, "WPS: Reject Credential due to "
  580. "invalid encr_type 0x%x", wps->cred.encr_type);
  581. return -1;
  582. }
  583. if (wps->wps->cred_cb) {
  584. wps->cred.cred_attr = cred - 4;
  585. wps->cred.cred_attr_len = cred_len + 4;
  586. wps->wps->cred_cb(wps->wps->cb_ctx, &wps->cred);
  587. wps->cred.cred_attr = NULL;
  588. wps->cred.cred_attr_len = 0;
  589. }
  590. return 0;
  591. }
  592. static int wps_process_creds(struct wps_data *wps, const u8 *cred[],
  593. size_t cred_len[], size_t num_cred, int wps2)
  594. {
  595. size_t i;
  596. int ok = 0;
  597. if (wps->wps->ap)
  598. return 0;
  599. if (num_cred == 0) {
  600. wpa_printf(MSG_DEBUG, "WPS: No Credential attributes "
  601. "received");
  602. return -1;
  603. }
  604. for (i = 0; i < num_cred; i++) {
  605. int res;
  606. res = wps_process_cred_e(wps, cred[i], cred_len[i], wps2);
  607. if (res == 0)
  608. ok++;
  609. else if (res == -2)
  610. wpa_printf(MSG_DEBUG, "WPS: WEP credential skipped");
  611. else
  612. return -1;
  613. }
  614. if (ok == 0) {
  615. wpa_printf(MSG_DEBUG, "WPS: No valid Credential attribute "
  616. "received");
  617. return -1;
  618. }
  619. return 0;
  620. }
  621. static int wps_process_ap_settings_e(struct wps_data *wps,
  622. struct wps_parse_attr *attr,
  623. struct wpabuf *attrs, int wps2)
  624. {
  625. struct wps_credential cred;
  626. if (!wps->wps->ap)
  627. return 0;
  628. if (wps_process_ap_settings(attr, &cred) < 0)
  629. return -1;
  630. wpa_printf(MSG_INFO, "WPS: Received new AP configuration from "
  631. "Registrar");
  632. if (os_memcmp(cred.mac_addr, wps->wps->dev.mac_addr, ETH_ALEN) !=
  633. 0) {
  634. wpa_printf(MSG_DEBUG, "WPS: MAC Address in the AP Settings ("
  635. MACSTR ") does not match with own address (" MACSTR
  636. ")", MAC2STR(cred.mac_addr),
  637. MAC2STR(wps->wps->dev.mac_addr));
  638. /*
  639. * In theory, this could be consider fatal error, but there are
  640. * number of deployed implementations using other address here
  641. * due to unclarity in the specification. For interoperability
  642. * reasons, allow this to be processed since we do not really
  643. * use the MAC Address information for anything.
  644. */
  645. #ifdef CONFIG_WPS_STRICT
  646. if (wps2) {
  647. wpa_printf(MSG_INFO, "WPS: Do not accept incorrect "
  648. "MAC Address in AP Settings");
  649. return -1;
  650. }
  651. #endif /* CONFIG_WPS_STRICT */
  652. }
  653. if (!(cred.encr_type & (WPS_ENCR_NONE | WPS_ENCR_TKIP | WPS_ENCR_AES)))
  654. {
  655. if (cred.encr_type & WPS_ENCR_WEP) {
  656. wpa_printf(MSG_INFO, "WPS: Reject new AP settings "
  657. "due to WEP configuration");
  658. return -1;
  659. }
  660. wpa_printf(MSG_INFO, "WPS: Reject new AP settings due to "
  661. "invalid encr_type 0x%x", cred.encr_type);
  662. return -1;
  663. }
  664. #ifdef CONFIG_WPS_STRICT
  665. if (wps2) {
  666. if ((cred.encr_type & (WPS_ENCR_TKIP | WPS_ENCR_AES)) ==
  667. WPS_ENCR_TKIP ||
  668. (cred.auth_type & (WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK)) ==
  669. WPS_AUTH_WPAPSK) {
  670. wpa_printf(MSG_INFO, "WPS-STRICT: Invalid WSC 2.0 "
  671. "AP Settings: WPA-Personal/TKIP only");
  672. return -1;
  673. }
  674. }
  675. #endif /* CONFIG_WPS_STRICT */
  676. if ((cred.encr_type & (WPS_ENCR_TKIP | WPS_ENCR_AES)) == WPS_ENCR_TKIP)
  677. {
  678. wpa_printf(MSG_DEBUG, "WPS: Upgrade encr_type TKIP -> "
  679. "TKIP+AES");
  680. cred.encr_type |= WPS_ENCR_AES;
  681. }
  682. if ((cred.auth_type & (WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK)) ==
  683. WPS_AUTH_WPAPSK) {
  684. wpa_printf(MSG_DEBUG, "WPS: Upgrade auth_type WPAPSK -> "
  685. "WPAPSK+WPA2PSK");
  686. cred.auth_type |= WPS_AUTH_WPA2PSK;
  687. }
  688. if (wps->wps->cred_cb) {
  689. cred.cred_attr = wpabuf_head(attrs);
  690. cred.cred_attr_len = wpabuf_len(attrs);
  691. wps->wps->cred_cb(wps->wps->cb_ctx, &cred);
  692. }
  693. return 0;
  694. }
  695. static enum wps_process_res wps_process_m2(struct wps_data *wps,
  696. const struct wpabuf *msg,
  697. struct wps_parse_attr *attr)
  698. {
  699. wpa_printf(MSG_DEBUG, "WPS: Received M2");
  700. if (wps->state != RECV_M2) {
  701. wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
  702. "receiving M2", wps->state);
  703. wps->state = SEND_WSC_NACK;
  704. return WPS_CONTINUE;
  705. }
  706. if (wps_process_registrar_nonce(wps, attr->registrar_nonce) ||
  707. wps_process_enrollee_nonce(wps, attr->enrollee_nonce) ||
  708. wps_process_uuid_r(wps, attr->uuid_r)) {
  709. wps->state = SEND_WSC_NACK;
  710. return WPS_CONTINUE;
  711. }
  712. if (wps->wps->ap &&
  713. (wps->wps->ap_setup_locked || wps->dev_password == NULL)) {
  714. wpa_printf(MSG_DEBUG, "WPS: AP Setup is locked - refuse "
  715. "registration of a new Registrar");
  716. wps->config_error = WPS_CFG_SETUP_LOCKED;
  717. wps->state = SEND_WSC_NACK;
  718. return WPS_CONTINUE;
  719. }
  720. if (wps_process_pubkey(wps, attr->public_key, attr->public_key_len) ||
  721. wps_process_authenticator(wps, attr->authenticator, msg) ||
  722. wps_process_device_attrs(&wps->peer_dev, attr)) {
  723. wps->state = SEND_WSC_NACK;
  724. return WPS_CONTINUE;
  725. }
  726. wps->state = SEND_M3;
  727. return WPS_CONTINUE;
  728. }
  729. static enum wps_process_res wps_process_m2d(struct wps_data *wps,
  730. struct wps_parse_attr *attr)
  731. {
  732. wpa_printf(MSG_DEBUG, "WPS: Received M2D");
  733. if (wps->state != RECV_M2) {
  734. wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
  735. "receiving M2D", wps->state);
  736. wps->state = SEND_WSC_NACK;
  737. return WPS_CONTINUE;
  738. }
  739. wpa_hexdump_ascii(MSG_DEBUG, "WPS: Manufacturer",
  740. attr->manufacturer, attr->manufacturer_len);
  741. wpa_hexdump_ascii(MSG_DEBUG, "WPS: Model Name",
  742. attr->model_name, attr->model_name_len);
  743. wpa_hexdump_ascii(MSG_DEBUG, "WPS: Model Number",
  744. attr->model_number, attr->model_number_len);
  745. wpa_hexdump_ascii(MSG_DEBUG, "WPS: Serial Number",
  746. attr->serial_number, attr->serial_number_len);
  747. wpa_hexdump_ascii(MSG_DEBUG, "WPS: Device Name",
  748. attr->dev_name, attr->dev_name_len);
  749. if (wps->wps->event_cb) {
  750. union wps_event_data data;
  751. struct wps_event_m2d *m2d = &data.m2d;
  752. os_memset(&data, 0, sizeof(data));
  753. if (attr->config_methods)
  754. m2d->config_methods =
  755. WPA_GET_BE16(attr->config_methods);
  756. m2d->manufacturer = attr->manufacturer;
  757. m2d->manufacturer_len = attr->manufacturer_len;
  758. m2d->model_name = attr->model_name;
  759. m2d->model_name_len = attr->model_name_len;
  760. m2d->model_number = attr->model_number;
  761. m2d->model_number_len = attr->model_number_len;
  762. m2d->serial_number = attr->serial_number;
  763. m2d->serial_number_len = attr->serial_number_len;
  764. m2d->dev_name = attr->dev_name;
  765. m2d->dev_name_len = attr->dev_name_len;
  766. m2d->primary_dev_type = attr->primary_dev_type;
  767. if (attr->config_error)
  768. m2d->config_error =
  769. WPA_GET_BE16(attr->config_error);
  770. if (attr->dev_password_id)
  771. m2d->dev_password_id =
  772. WPA_GET_BE16(attr->dev_password_id);
  773. wps->wps->event_cb(wps->wps->cb_ctx, WPS_EV_M2D, &data);
  774. }
  775. wps->state = RECEIVED_M2D;
  776. return WPS_CONTINUE;
  777. }
  778. static enum wps_process_res wps_process_m4(struct wps_data *wps,
  779. const struct wpabuf *msg,
  780. struct wps_parse_attr *attr)
  781. {
  782. struct wpabuf *decrypted;
  783. struct wps_parse_attr eattr;
  784. wpa_printf(MSG_DEBUG, "WPS: Received M4");
  785. if (wps->state != RECV_M4) {
  786. wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
  787. "receiving M4", wps->state);
  788. wps->state = SEND_WSC_NACK;
  789. return WPS_CONTINUE;
  790. }
  791. if (wps_process_enrollee_nonce(wps, attr->enrollee_nonce) ||
  792. wps_process_authenticator(wps, attr->authenticator, msg) ||
  793. wps_process_r_hash1(wps, attr->r_hash1) ||
  794. wps_process_r_hash2(wps, attr->r_hash2)) {
  795. wps->state = SEND_WSC_NACK;
  796. return WPS_CONTINUE;
  797. }
  798. decrypted = wps_decrypt_encr_settings(wps, attr->encr_settings,
  799. attr->encr_settings_len);
  800. if (decrypted == NULL) {
  801. wpa_printf(MSG_DEBUG, "WPS: Failed to decrypted Encrypted "
  802. "Settings attribute");
  803. wps->state = SEND_WSC_NACK;
  804. return WPS_CONTINUE;
  805. }
  806. wpa_printf(MSG_DEBUG, "WPS: Processing decrypted Encrypted Settings "
  807. "attribute");
  808. if (wps_parse_msg(decrypted, &eattr) < 0 ||
  809. wps_process_key_wrap_auth(wps, decrypted, eattr.key_wrap_auth) ||
  810. wps_process_r_snonce1(wps, eattr.r_snonce1)) {
  811. wpabuf_free(decrypted);
  812. wps->state = SEND_WSC_NACK;
  813. return WPS_CONTINUE;
  814. }
  815. wpabuf_free(decrypted);
  816. wps->state = SEND_M5;
  817. return WPS_CONTINUE;
  818. }
  819. static enum wps_process_res wps_process_m6(struct wps_data *wps,
  820. const struct wpabuf *msg,
  821. struct wps_parse_attr *attr)
  822. {
  823. struct wpabuf *decrypted;
  824. struct wps_parse_attr eattr;
  825. wpa_printf(MSG_DEBUG, "WPS: Received M6");
  826. if (wps->state != RECV_M6) {
  827. wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
  828. "receiving M6", wps->state);
  829. wps->state = SEND_WSC_NACK;
  830. return WPS_CONTINUE;
  831. }
  832. if (wps_process_enrollee_nonce(wps, attr->enrollee_nonce) ||
  833. wps_process_authenticator(wps, attr->authenticator, msg)) {
  834. wps->state = SEND_WSC_NACK;
  835. return WPS_CONTINUE;
  836. }
  837. decrypted = wps_decrypt_encr_settings(wps, attr->encr_settings,
  838. attr->encr_settings_len);
  839. if (decrypted == NULL) {
  840. wpa_printf(MSG_DEBUG, "WPS: Failed to decrypted Encrypted "
  841. "Settings attribute");
  842. wps->state = SEND_WSC_NACK;
  843. return WPS_CONTINUE;
  844. }
  845. wpa_printf(MSG_DEBUG, "WPS: Processing decrypted Encrypted Settings "
  846. "attribute");
  847. if (wps_parse_msg(decrypted, &eattr) < 0 ||
  848. wps_process_key_wrap_auth(wps, decrypted, eattr.key_wrap_auth) ||
  849. wps_process_r_snonce2(wps, eattr.r_snonce2)) {
  850. wpabuf_free(decrypted);
  851. wps->state = SEND_WSC_NACK;
  852. return WPS_CONTINUE;
  853. }
  854. wpabuf_free(decrypted);
  855. wps->state = SEND_M7;
  856. return WPS_CONTINUE;
  857. }
  858. static enum wps_process_res wps_process_m8(struct wps_data *wps,
  859. const struct wpabuf *msg,
  860. struct wps_parse_attr *attr)
  861. {
  862. struct wpabuf *decrypted;
  863. struct wps_parse_attr eattr;
  864. wpa_printf(MSG_DEBUG, "WPS: Received M8");
  865. if (wps->state != RECV_M8) {
  866. wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
  867. "receiving M8", wps->state);
  868. wps->state = SEND_WSC_NACK;
  869. return WPS_CONTINUE;
  870. }
  871. if (wps_process_enrollee_nonce(wps, attr->enrollee_nonce) ||
  872. wps_process_authenticator(wps, attr->authenticator, msg)) {
  873. wps->state = SEND_WSC_NACK;
  874. return WPS_CONTINUE;
  875. }
  876. decrypted = wps_decrypt_encr_settings(wps, attr->encr_settings,
  877. attr->encr_settings_len);
  878. if (decrypted == NULL) {
  879. wpa_printf(MSG_DEBUG, "WPS: Failed to decrypted Encrypted "
  880. "Settings attribute");
  881. wps->state = SEND_WSC_NACK;
  882. return WPS_CONTINUE;
  883. }
  884. wpa_printf(MSG_DEBUG, "WPS: Processing decrypted Encrypted Settings "
  885. "attribute");
  886. if (wps_parse_msg(decrypted, &eattr) < 0 ||
  887. wps_process_key_wrap_auth(wps, decrypted, eattr.key_wrap_auth) ||
  888. wps_process_creds(wps, eattr.cred, eattr.cred_len,
  889. eattr.num_cred, attr->version2 != NULL) ||
  890. wps_process_ap_settings_e(wps, &eattr, decrypted,
  891. attr->version2 != NULL)) {
  892. wpabuf_free(decrypted);
  893. wps->state = SEND_WSC_NACK;
  894. return WPS_CONTINUE;
  895. }
  896. wpabuf_free(decrypted);
  897. wps->state = WPS_MSG_DONE;
  898. return WPS_CONTINUE;
  899. }
  900. static enum wps_process_res wps_process_wsc_msg(struct wps_data *wps,
  901. const struct wpabuf *msg)
  902. {
  903. struct wps_parse_attr attr;
  904. enum wps_process_res ret = WPS_CONTINUE;
  905. wpa_printf(MSG_DEBUG, "WPS: Received WSC_MSG");
  906. if (wps_parse_msg(msg, &attr) < 0)
  907. return WPS_FAILURE;
  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 (attr.msg_type == NULL) {
  914. wpa_printf(MSG_DEBUG, "WPS: No Message Type attribute");
  915. return WPS_FAILURE;
  916. }
  917. switch (*attr.msg_type) {
  918. case WPS_M2:
  919. ret = wps_process_m2(wps, msg, &attr);
  920. break;
  921. case WPS_M2D:
  922. ret = wps_process_m2d(wps, &attr);
  923. break;
  924. case WPS_M4:
  925. ret = wps_process_m4(wps, msg, &attr);
  926. if (ret == WPS_FAILURE || wps->state == SEND_WSC_NACK)
  927. wps_fail_event(wps->wps, WPS_M4);
  928. break;
  929. case WPS_M6:
  930. ret = wps_process_m6(wps, msg, &attr);
  931. if (ret == WPS_FAILURE || wps->state == SEND_WSC_NACK)
  932. wps_fail_event(wps->wps, WPS_M6);
  933. break;
  934. case WPS_M8:
  935. ret = wps_process_m8(wps, msg, &attr);
  936. if (ret == WPS_FAILURE || wps->state == SEND_WSC_NACK)
  937. wps_fail_event(wps->wps, WPS_M8);
  938. break;
  939. default:
  940. wpa_printf(MSG_DEBUG, "WPS: Unsupported Message Type %d",
  941. *attr.msg_type);
  942. return WPS_FAILURE;
  943. }
  944. /*
  945. * Save a copy of the last message for Authenticator derivation if we
  946. * are continuing. However, skip M2D since it is not authenticated and
  947. * neither is the ACK/NACK response frame. This allows the possibly
  948. * following M2 to be processed correctly by using the previously sent
  949. * M1 in Authenticator derivation.
  950. */
  951. if (ret == WPS_CONTINUE && *attr.msg_type != WPS_M2D) {
  952. /* Save a copy of the last message for Authenticator derivation
  953. */
  954. wpabuf_free(wps->last_msg);
  955. wps->last_msg = wpabuf_dup(msg);
  956. }
  957. return ret;
  958. }
  959. static enum wps_process_res wps_process_wsc_ack(struct wps_data *wps,
  960. const struct wpabuf *msg)
  961. {
  962. struct wps_parse_attr attr;
  963. wpa_printf(MSG_DEBUG, "WPS: Received WSC_ACK");
  964. if (wps_parse_msg(msg, &attr) < 0)
  965. return WPS_FAILURE;
  966. if (attr.msg_type == NULL) {
  967. wpa_printf(MSG_DEBUG, "WPS: No Message Type attribute");
  968. return WPS_FAILURE;
  969. }
  970. if (*attr.msg_type != WPS_WSC_ACK) {
  971. wpa_printf(MSG_DEBUG, "WPS: Invalid Message Type %d",
  972. *attr.msg_type);
  973. return WPS_FAILURE;
  974. }
  975. if (attr.registrar_nonce == NULL ||
  976. os_memcmp(wps->nonce_r, attr.registrar_nonce, WPS_NONCE_LEN != 0))
  977. {
  978. wpa_printf(MSG_DEBUG, "WPS: Mismatch in registrar nonce");
  979. return WPS_FAILURE;
  980. }
  981. if (attr.enrollee_nonce == NULL ||
  982. os_memcmp(wps->nonce_e, attr.enrollee_nonce, WPS_NONCE_LEN != 0)) {
  983. wpa_printf(MSG_DEBUG, "WPS: Mismatch in enrollee nonce");
  984. return WPS_FAILURE;
  985. }
  986. if (wps->state == RECV_ACK && wps->wps->ap) {
  987. wpa_printf(MSG_DEBUG, "WPS: External Registrar registration "
  988. "completed successfully");
  989. wps_success_event(wps->wps);
  990. wps->state = WPS_FINISHED;
  991. return WPS_DONE;
  992. }
  993. return WPS_FAILURE;
  994. }
  995. static enum wps_process_res wps_process_wsc_nack(struct wps_data *wps,
  996. const struct wpabuf *msg)
  997. {
  998. struct wps_parse_attr attr;
  999. wpa_printf(MSG_DEBUG, "WPS: Received WSC_NACK");
  1000. if (wps_parse_msg(msg, &attr) < 0)
  1001. return WPS_FAILURE;
  1002. if (attr.msg_type == NULL) {
  1003. wpa_printf(MSG_DEBUG, "WPS: No Message Type attribute");
  1004. return WPS_FAILURE;
  1005. }
  1006. if (*attr.msg_type != WPS_WSC_NACK) {
  1007. wpa_printf(MSG_DEBUG, "WPS: Invalid Message Type %d",
  1008. *attr.msg_type);
  1009. return WPS_FAILURE;
  1010. }
  1011. if (attr.registrar_nonce == NULL ||
  1012. os_memcmp(wps->nonce_r, attr.registrar_nonce, WPS_NONCE_LEN != 0))
  1013. {
  1014. wpa_printf(MSG_DEBUG, "WPS: Mismatch in registrar nonce");
  1015. wpa_hexdump(MSG_DEBUG, "WPS: Received Registrar Nonce",
  1016. attr.registrar_nonce, WPS_NONCE_LEN);
  1017. wpa_hexdump(MSG_DEBUG, "WPS: Expected Registrar Nonce",
  1018. wps->nonce_r, WPS_NONCE_LEN);
  1019. return WPS_FAILURE;
  1020. }
  1021. if (attr.enrollee_nonce == NULL ||
  1022. os_memcmp(wps->nonce_e, attr.enrollee_nonce, WPS_NONCE_LEN != 0)) {
  1023. wpa_printf(MSG_DEBUG, "WPS: Mismatch in enrollee nonce");
  1024. wpa_hexdump(MSG_DEBUG, "WPS: Received Enrollee Nonce",
  1025. attr.enrollee_nonce, WPS_NONCE_LEN);
  1026. wpa_hexdump(MSG_DEBUG, "WPS: Expected Enrollee Nonce",
  1027. wps->nonce_e, WPS_NONCE_LEN);
  1028. return WPS_FAILURE;
  1029. }
  1030. if (attr.config_error == NULL) {
  1031. wpa_printf(MSG_DEBUG, "WPS: No Configuration Error attribute "
  1032. "in WSC_NACK");
  1033. return WPS_FAILURE;
  1034. }
  1035. wpa_printf(MSG_DEBUG, "WPS: Registrar terminated negotiation with "
  1036. "Configuration Error %d", WPA_GET_BE16(attr.config_error));
  1037. switch (wps->state) {
  1038. case RECV_M4:
  1039. wps_fail_event(wps->wps, WPS_M3);
  1040. break;
  1041. case RECV_M6:
  1042. wps_fail_event(wps->wps, WPS_M5);
  1043. break;
  1044. case RECV_M8:
  1045. wps_fail_event(wps->wps, WPS_M7);
  1046. break;
  1047. default:
  1048. break;
  1049. }
  1050. /* Followed by NACK if Enrollee is Supplicant or EAP-Failure if
  1051. * Enrollee is Authenticator */
  1052. wps->state = SEND_WSC_NACK;
  1053. return WPS_FAILURE;
  1054. }
  1055. enum wps_process_res wps_enrollee_process_msg(struct wps_data *wps,
  1056. enum wsc_op_code op_code,
  1057. const struct wpabuf *msg)
  1058. {
  1059. wpa_printf(MSG_DEBUG, "WPS: Processing received message (len=%lu "
  1060. "op_code=%d)",
  1061. (unsigned long) wpabuf_len(msg), op_code);
  1062. if (op_code == WSC_UPnP) {
  1063. /* Determine the OpCode based on message type attribute */
  1064. struct wps_parse_attr attr;
  1065. if (wps_parse_msg(msg, &attr) == 0 && attr.msg_type) {
  1066. if (*attr.msg_type == WPS_WSC_ACK)
  1067. op_code = WSC_ACK;
  1068. else if (*attr.msg_type == WPS_WSC_NACK)
  1069. op_code = WSC_NACK;
  1070. }
  1071. }
  1072. switch (op_code) {
  1073. case WSC_MSG:
  1074. case WSC_UPnP:
  1075. return wps_process_wsc_msg(wps, msg);
  1076. case WSC_ACK:
  1077. return wps_process_wsc_ack(wps, msg);
  1078. case WSC_NACK:
  1079. return wps_process_wsc_nack(wps, msg);
  1080. default:
  1081. wpa_printf(MSG_DEBUG, "WPS: Unsupported op_code %d", op_code);
  1082. return WPS_FAILURE;
  1083. }
  1084. }