wps.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662
  1. /*
  2. * Wi-Fi Protected Setup
  3. * Copyright (c) 2007-2009, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "includes.h"
  9. #include "common.h"
  10. #include "crypto/dh_group5.h"
  11. #include "common/ieee802_11_defs.h"
  12. #include "wps_i.h"
  13. #include "wps_dev_attr.h"
  14. #ifdef CONFIG_WPS_TESTING
  15. int wps_version_number = 0x20;
  16. int wps_testing_dummy_cred = 0;
  17. int wps_corrupt_pkhash = 0;
  18. #endif /* CONFIG_WPS_TESTING */
  19. /**
  20. * wps_init - Initialize WPS Registration protocol data
  21. * @cfg: WPS configuration
  22. * Returns: Pointer to allocated data or %NULL on failure
  23. *
  24. * This function is used to initialize WPS data for a registration protocol
  25. * instance (i.e., each run of registration protocol as a Registrar of
  26. * Enrollee. The caller is responsible for freeing this data after the
  27. * registration run has been completed by calling wps_deinit().
  28. */
  29. struct wps_data * wps_init(const struct wps_config *cfg)
  30. {
  31. struct wps_data *data = os_zalloc(sizeof(*data));
  32. if (data == NULL)
  33. return NULL;
  34. data->wps = cfg->wps;
  35. data->registrar = cfg->registrar;
  36. if (cfg->registrar) {
  37. os_memcpy(data->uuid_r, cfg->wps->uuid, WPS_UUID_LEN);
  38. } else {
  39. os_memcpy(data->mac_addr_e, cfg->wps->dev.mac_addr, ETH_ALEN);
  40. os_memcpy(data->uuid_e, cfg->wps->uuid, WPS_UUID_LEN);
  41. }
  42. if (cfg->pin) {
  43. data->dev_pw_id = cfg->dev_pw_id;
  44. data->dev_password = os_malloc(cfg->pin_len);
  45. if (data->dev_password == NULL) {
  46. os_free(data);
  47. return NULL;
  48. }
  49. os_memcpy(data->dev_password, cfg->pin, cfg->pin_len);
  50. data->dev_password_len = cfg->pin_len;
  51. wpa_hexdump_key(MSG_DEBUG, "WPS: AP PIN dev_password",
  52. data->dev_password, data->dev_password_len);
  53. }
  54. #ifdef CONFIG_WPS_NFC
  55. if (cfg->pin == NULL &&
  56. cfg->dev_pw_id == DEV_PW_NFC_CONNECTION_HANDOVER)
  57. data->dev_pw_id = cfg->dev_pw_id;
  58. if (cfg->wps->ap && !cfg->registrar && cfg->wps->ap_nfc_dev_pw_id) {
  59. /* Keep AP PIN as alternative Device Password */
  60. data->alt_dev_pw_id = data->dev_pw_id;
  61. data->alt_dev_password = data->dev_password;
  62. data->alt_dev_password_len = data->dev_password_len;
  63. data->dev_pw_id = cfg->wps->ap_nfc_dev_pw_id;
  64. data->dev_password =
  65. os_malloc(wpabuf_len(cfg->wps->ap_nfc_dev_pw));
  66. if (data->dev_password == NULL) {
  67. os_free(data);
  68. return NULL;
  69. }
  70. os_memcpy(data->dev_password,
  71. wpabuf_head(cfg->wps->ap_nfc_dev_pw),
  72. wpabuf_len(cfg->wps->ap_nfc_dev_pw));
  73. data->dev_password_len = wpabuf_len(cfg->wps->ap_nfc_dev_pw);
  74. wpa_hexdump_key(MSG_DEBUG, "WPS: NFC dev_password",
  75. data->dev_password, data->dev_password_len);
  76. }
  77. #endif /* CONFIG_WPS_NFC */
  78. data->pbc = cfg->pbc;
  79. if (cfg->pbc) {
  80. /* Use special PIN '00000000' for PBC */
  81. data->dev_pw_id = DEV_PW_PUSHBUTTON;
  82. bin_clear_free(data->dev_password, data->dev_password_len);
  83. data->dev_password = (u8 *) os_strdup("00000000");
  84. if (data->dev_password == NULL) {
  85. os_free(data);
  86. return NULL;
  87. }
  88. data->dev_password_len = 8;
  89. }
  90. data->state = data->registrar ? RECV_M1 : SEND_M1;
  91. if (cfg->assoc_wps_ie) {
  92. struct wps_parse_attr attr;
  93. wpa_hexdump_buf(MSG_DEBUG, "WPS: WPS IE from (Re)AssocReq",
  94. cfg->assoc_wps_ie);
  95. if (wps_parse_msg(cfg->assoc_wps_ie, &attr) < 0) {
  96. wpa_printf(MSG_DEBUG, "WPS: Failed to parse WPS IE "
  97. "from (Re)AssocReq");
  98. } else if (attr.request_type == NULL) {
  99. wpa_printf(MSG_DEBUG, "WPS: No Request Type attribute "
  100. "in (Re)AssocReq WPS IE");
  101. } else {
  102. wpa_printf(MSG_DEBUG, "WPS: Request Type (from WPS IE "
  103. "in (Re)AssocReq WPS IE): %d",
  104. *attr.request_type);
  105. data->request_type = *attr.request_type;
  106. }
  107. }
  108. if (cfg->new_ap_settings) {
  109. data->new_ap_settings =
  110. os_malloc(sizeof(*data->new_ap_settings));
  111. if (data->new_ap_settings == NULL) {
  112. bin_clear_free(data->dev_password,
  113. data->dev_password_len);
  114. os_free(data);
  115. return NULL;
  116. }
  117. os_memcpy(data->new_ap_settings, cfg->new_ap_settings,
  118. sizeof(*data->new_ap_settings));
  119. }
  120. if (cfg->peer_addr)
  121. os_memcpy(data->peer_dev.mac_addr, cfg->peer_addr, ETH_ALEN);
  122. if (cfg->p2p_dev_addr)
  123. os_memcpy(data->p2p_dev_addr, cfg->p2p_dev_addr, ETH_ALEN);
  124. data->use_psk_key = cfg->use_psk_key;
  125. data->pbc_in_m1 = cfg->pbc_in_m1;
  126. if (cfg->peer_pubkey_hash) {
  127. os_memcpy(data->peer_pubkey_hash, cfg->peer_pubkey_hash,
  128. WPS_OOB_PUBKEY_HASH_LEN);
  129. data->peer_pubkey_hash_set = 1;
  130. }
  131. return data;
  132. }
  133. /**
  134. * wps_deinit - Deinitialize WPS Registration protocol data
  135. * @data: WPS Registration protocol data from wps_init()
  136. */
  137. void wps_deinit(struct wps_data *data)
  138. {
  139. #ifdef CONFIG_WPS_NFC
  140. if (data->registrar && data->nfc_pw_token)
  141. wps_registrar_remove_nfc_pw_token(data->wps->registrar,
  142. data->nfc_pw_token);
  143. #endif /* CONFIG_WPS_NFC */
  144. if (data->wps_pin_revealed) {
  145. wpa_printf(MSG_DEBUG, "WPS: Full PIN information revealed and "
  146. "negotiation failed");
  147. if (data->registrar)
  148. wps_registrar_invalidate_pin(data->wps->registrar,
  149. data->uuid_e);
  150. } else if (data->registrar)
  151. wps_registrar_unlock_pin(data->wps->registrar, data->uuid_e);
  152. wpabuf_free(data->dh_privkey);
  153. wpabuf_free(data->dh_pubkey_e);
  154. wpabuf_free(data->dh_pubkey_r);
  155. wpabuf_free(data->last_msg);
  156. bin_clear_free(data->dev_password, data->dev_password_len);
  157. bin_clear_free(data->alt_dev_password, data->alt_dev_password_len);
  158. bin_clear_free(data->new_psk, data->new_psk_len);
  159. wps_device_data_free(&data->peer_dev);
  160. bin_clear_free(data->new_ap_settings, sizeof(*data->new_ap_settings));
  161. dh5_free(data->dh_ctx);
  162. os_free(data);
  163. }
  164. /**
  165. * wps_process_msg - Process a WPS message
  166. * @wps: WPS Registration protocol data from wps_init()
  167. * @op_code: Message OP Code
  168. * @msg: Message data
  169. * Returns: Processing result
  170. *
  171. * This function is used to process WPS messages with OP Codes WSC_ACK,
  172. * WSC_NACK, WSC_MSG, and WSC_Done. The caller (e.g., EAP server/peer) is
  173. * responsible for reassembling the messages before calling this function.
  174. * Response to this message is built by calling wps_get_msg().
  175. */
  176. enum wps_process_res wps_process_msg(struct wps_data *wps,
  177. enum wsc_op_code op_code,
  178. const struct wpabuf *msg)
  179. {
  180. if (wps->registrar)
  181. return wps_registrar_process_msg(wps, op_code, msg);
  182. else
  183. return wps_enrollee_process_msg(wps, op_code, msg);
  184. }
  185. /**
  186. * wps_get_msg - Build a WPS message
  187. * @wps: WPS Registration protocol data from wps_init()
  188. * @op_code: Buffer for returning message OP Code
  189. * Returns: The generated WPS message or %NULL on failure
  190. *
  191. * This function is used to build a response to a message processed by calling
  192. * wps_process_msg(). The caller is responsible for freeing the buffer.
  193. */
  194. struct wpabuf * wps_get_msg(struct wps_data *wps, enum wsc_op_code *op_code)
  195. {
  196. if (wps->registrar)
  197. return wps_registrar_get_msg(wps, op_code);
  198. else
  199. return wps_enrollee_get_msg(wps, op_code);
  200. }
  201. /**
  202. * wps_is_selected_pbc_registrar - Check whether WPS IE indicates active PBC
  203. * @msg: WPS IE contents from Beacon or Probe Response frame
  204. * Returns: 1 if PBC Registrar is active, 0 if not
  205. */
  206. int wps_is_selected_pbc_registrar(const struct wpabuf *msg)
  207. {
  208. struct wps_parse_attr attr;
  209. /*
  210. * In theory, this could also verify that attr.sel_reg_config_methods
  211. * includes WPS_CONFIG_PUSHBUTTON, but some deployed AP implementations
  212. * do not set Selected Registrar Config Methods attribute properly, so
  213. * it is safer to just use Device Password ID here.
  214. */
  215. if (wps_parse_msg(msg, &attr) < 0 ||
  216. !attr.selected_registrar || *attr.selected_registrar == 0 ||
  217. !attr.dev_password_id ||
  218. WPA_GET_BE16(attr.dev_password_id) != DEV_PW_PUSHBUTTON)
  219. return 0;
  220. #ifdef CONFIG_WPS_STRICT
  221. if (!attr.sel_reg_config_methods ||
  222. !(WPA_GET_BE16(attr.sel_reg_config_methods) &
  223. WPS_CONFIG_PUSHBUTTON))
  224. return 0;
  225. #endif /* CONFIG_WPS_STRICT */
  226. return 1;
  227. }
  228. static int is_selected_pin_registrar(struct wps_parse_attr *attr)
  229. {
  230. /*
  231. * In theory, this could also verify that attr.sel_reg_config_methods
  232. * includes WPS_CONFIG_LABEL, WPS_CONFIG_DISPLAY, or WPS_CONFIG_KEYPAD,
  233. * but some deployed AP implementations do not set Selected Registrar
  234. * Config Methods attribute properly, so it is safer to just use
  235. * Device Password ID here.
  236. */
  237. if (!attr->selected_registrar || *attr->selected_registrar == 0)
  238. return 0;
  239. if (attr->dev_password_id != NULL &&
  240. WPA_GET_BE16(attr->dev_password_id) == DEV_PW_PUSHBUTTON)
  241. return 0;
  242. #ifdef CONFIG_WPS_STRICT
  243. if (!attr->sel_reg_config_methods ||
  244. !(WPA_GET_BE16(attr->sel_reg_config_methods) &
  245. (WPS_CONFIG_LABEL | WPS_CONFIG_DISPLAY | WPS_CONFIG_KEYPAD)))
  246. return 0;
  247. #endif /* CONFIG_WPS_STRICT */
  248. return 1;
  249. }
  250. /**
  251. * wps_is_selected_pin_registrar - Check whether WPS IE indicates active PIN
  252. * @msg: WPS IE contents from Beacon or Probe Response frame
  253. * Returns: 1 if PIN Registrar is active, 0 if not
  254. */
  255. int wps_is_selected_pin_registrar(const struct wpabuf *msg)
  256. {
  257. struct wps_parse_attr attr;
  258. if (wps_parse_msg(msg, &attr) < 0)
  259. return 0;
  260. return is_selected_pin_registrar(&attr);
  261. }
  262. /**
  263. * wps_is_addr_authorized - Check whether WPS IE authorizes MAC address
  264. * @msg: WPS IE contents from Beacon or Probe Response frame
  265. * @addr: MAC address to search for
  266. * @ver1_compat: Whether to use version 1 compatibility mode
  267. * Returns: 2 if the specified address is explicit authorized, 1 if address is
  268. * authorized (broadcast), 0 if not
  269. */
  270. int wps_is_addr_authorized(const struct wpabuf *msg, const u8 *addr,
  271. int ver1_compat)
  272. {
  273. struct wps_parse_attr attr;
  274. unsigned int i;
  275. const u8 *pos;
  276. const u8 bcast[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
  277. if (wps_parse_msg(msg, &attr) < 0)
  278. return 0;
  279. if (!attr.version2 && ver1_compat) {
  280. /*
  281. * Version 1.0 AP - AuthorizedMACs not used, so revert back to
  282. * old mechanism of using SelectedRegistrar.
  283. */
  284. return is_selected_pin_registrar(&attr);
  285. }
  286. if (!attr.authorized_macs)
  287. return 0;
  288. pos = attr.authorized_macs;
  289. for (i = 0; i < attr.authorized_macs_len / ETH_ALEN; i++) {
  290. if (os_memcmp(pos, addr, ETH_ALEN) == 0)
  291. return 2;
  292. if (os_memcmp(pos, bcast, ETH_ALEN) == 0)
  293. return 1;
  294. pos += ETH_ALEN;
  295. }
  296. return 0;
  297. }
  298. /**
  299. * wps_ap_priority_compar - Prioritize WPS IE from two APs
  300. * @wps_a: WPS IE contents from Beacon or Probe Response frame
  301. * @wps_b: WPS IE contents from Beacon or Probe Response frame
  302. * Returns: 1 if wps_b is considered more likely selection for WPS
  303. * provisioning, -1 if wps_a is considered more like, or 0 if no preference
  304. */
  305. int wps_ap_priority_compar(const struct wpabuf *wps_a,
  306. const struct wpabuf *wps_b)
  307. {
  308. struct wps_parse_attr attr;
  309. int sel_a, sel_b;
  310. if (wps_a == NULL || wps_parse_msg(wps_a, &attr) < 0)
  311. return 1;
  312. sel_a = attr.selected_registrar && *attr.selected_registrar != 0;
  313. if (wps_b == NULL || wps_parse_msg(wps_b, &attr) < 0)
  314. return -1;
  315. sel_b = attr.selected_registrar && *attr.selected_registrar != 0;
  316. if (sel_a && !sel_b)
  317. return -1;
  318. if (!sel_a && sel_b)
  319. return 1;
  320. return 0;
  321. }
  322. /**
  323. * wps_get_uuid_e - Get UUID-E from WPS IE
  324. * @msg: WPS IE contents from Beacon or Probe Response frame
  325. * Returns: Pointer to UUID-E or %NULL if not included
  326. *
  327. * The returned pointer is to the msg contents and it remains valid only as
  328. * long as the msg buffer is valid.
  329. */
  330. const u8 * wps_get_uuid_e(const struct wpabuf *msg)
  331. {
  332. struct wps_parse_attr attr;
  333. if (wps_parse_msg(msg, &attr) < 0)
  334. return NULL;
  335. return attr.uuid_e;
  336. }
  337. /**
  338. * wps_is_20 - Check whether WPS attributes claim support for WPS 2.0
  339. */
  340. int wps_is_20(const struct wpabuf *msg)
  341. {
  342. struct wps_parse_attr attr;
  343. if (msg == NULL || wps_parse_msg(msg, &attr) < 0)
  344. return 0;
  345. return attr.version2 != NULL;
  346. }
  347. /**
  348. * wps_build_assoc_req_ie - Build WPS IE for (Re)Association Request
  349. * @req_type: Value for Request Type attribute
  350. * Returns: WPS IE or %NULL on failure
  351. *
  352. * The caller is responsible for freeing the buffer.
  353. */
  354. struct wpabuf * wps_build_assoc_req_ie(enum wps_request_type req_type)
  355. {
  356. struct wpabuf *ie;
  357. u8 *len;
  358. wpa_printf(MSG_DEBUG, "WPS: Building WPS IE for (Re)Association "
  359. "Request");
  360. ie = wpabuf_alloc(100);
  361. if (ie == NULL)
  362. return NULL;
  363. wpabuf_put_u8(ie, WLAN_EID_VENDOR_SPECIFIC);
  364. len = wpabuf_put(ie, 1);
  365. wpabuf_put_be32(ie, WPS_DEV_OUI_WFA);
  366. if (wps_build_version(ie) ||
  367. wps_build_req_type(ie, req_type) ||
  368. wps_build_wfa_ext(ie, 0, NULL, 0)) {
  369. wpabuf_free(ie);
  370. return NULL;
  371. }
  372. *len = wpabuf_len(ie) - 2;
  373. return ie;
  374. }
  375. /**
  376. * wps_build_assoc_resp_ie - Build WPS IE for (Re)Association Response
  377. * Returns: WPS IE or %NULL on failure
  378. *
  379. * The caller is responsible for freeing the buffer.
  380. */
  381. struct wpabuf * wps_build_assoc_resp_ie(void)
  382. {
  383. struct wpabuf *ie;
  384. u8 *len;
  385. wpa_printf(MSG_DEBUG, "WPS: Building WPS IE for (Re)Association "
  386. "Response");
  387. ie = wpabuf_alloc(100);
  388. if (ie == NULL)
  389. return NULL;
  390. wpabuf_put_u8(ie, WLAN_EID_VENDOR_SPECIFIC);
  391. len = wpabuf_put(ie, 1);
  392. wpabuf_put_be32(ie, WPS_DEV_OUI_WFA);
  393. if (wps_build_version(ie) ||
  394. wps_build_resp_type(ie, WPS_RESP_AP) ||
  395. wps_build_wfa_ext(ie, 0, NULL, 0)) {
  396. wpabuf_free(ie);
  397. return NULL;
  398. }
  399. *len = wpabuf_len(ie) - 2;
  400. return ie;
  401. }
  402. /**
  403. * wps_build_probe_req_ie - Build WPS IE for Probe Request
  404. * @pw_id: Password ID (DEV_PW_PUSHBUTTON for active PBC and DEV_PW_DEFAULT for
  405. * most other use cases)
  406. * @dev: Device attributes
  407. * @uuid: Own UUID
  408. * @req_type: Value for Request Type attribute
  409. * @num_req_dev_types: Number of requested device types
  410. * @req_dev_types: Requested device types (8 * num_req_dev_types octets) or
  411. * %NULL if none
  412. * Returns: WPS IE or %NULL on failure
  413. *
  414. * The caller is responsible for freeing the buffer.
  415. */
  416. struct wpabuf * wps_build_probe_req_ie(u16 pw_id, struct wps_device_data *dev,
  417. const u8 *uuid,
  418. enum wps_request_type req_type,
  419. unsigned int num_req_dev_types,
  420. const u8 *req_dev_types)
  421. {
  422. struct wpabuf *ie;
  423. wpa_printf(MSG_DEBUG, "WPS: Building WPS IE for Probe Request");
  424. ie = wpabuf_alloc(500);
  425. if (ie == NULL)
  426. return NULL;
  427. if (wps_build_version(ie) ||
  428. wps_build_req_type(ie, req_type) ||
  429. wps_build_config_methods(ie, dev->config_methods) ||
  430. wps_build_uuid_e(ie, uuid) ||
  431. wps_build_primary_dev_type(dev, ie) ||
  432. wps_build_rf_bands(dev, ie, 0) ||
  433. wps_build_assoc_state(NULL, ie) ||
  434. wps_build_config_error(ie, WPS_CFG_NO_ERROR) ||
  435. wps_build_dev_password_id(ie, pw_id) ||
  436. wps_build_manufacturer(dev, ie) ||
  437. wps_build_model_name(dev, ie) ||
  438. wps_build_model_number(dev, ie) ||
  439. wps_build_dev_name(dev, ie) ||
  440. wps_build_wfa_ext(ie, req_type == WPS_REQ_ENROLLEE, NULL, 0) ||
  441. wps_build_req_dev_type(dev, ie, num_req_dev_types, req_dev_types)
  442. ||
  443. wps_build_secondary_dev_type(dev, ie)
  444. ) {
  445. wpabuf_free(ie);
  446. return NULL;
  447. }
  448. return wps_ie_encapsulate(ie);
  449. }
  450. void wps_free_pending_msgs(struct upnp_pending_message *msgs)
  451. {
  452. struct upnp_pending_message *p, *prev;
  453. p = msgs;
  454. while (p) {
  455. prev = p;
  456. p = p->next;
  457. wpabuf_free(prev->msg);
  458. os_free(prev);
  459. }
  460. }
  461. int wps_attr_text(struct wpabuf *data, char *buf, char *end)
  462. {
  463. struct wps_parse_attr attr;
  464. char *pos = buf;
  465. int ret;
  466. if (wps_parse_msg(data, &attr) < 0)
  467. return -1;
  468. if (attr.wps_state) {
  469. if (*attr.wps_state == WPS_STATE_NOT_CONFIGURED)
  470. ret = os_snprintf(pos, end - pos,
  471. "wps_state=unconfigured\n");
  472. else if (*attr.wps_state == WPS_STATE_CONFIGURED)
  473. ret = os_snprintf(pos, end - pos,
  474. "wps_state=configured\n");
  475. else
  476. ret = 0;
  477. if (os_snprintf_error(end - pos, ret))
  478. return pos - buf;
  479. pos += ret;
  480. }
  481. if (attr.ap_setup_locked && *attr.ap_setup_locked) {
  482. ret = os_snprintf(pos, end - pos,
  483. "wps_ap_setup_locked=1\n");
  484. if (os_snprintf_error(end - pos, ret))
  485. return pos - buf;
  486. pos += ret;
  487. }
  488. if (attr.selected_registrar && *attr.selected_registrar) {
  489. ret = os_snprintf(pos, end - pos,
  490. "wps_selected_registrar=1\n");
  491. if (os_snprintf_error(end - pos, ret))
  492. return pos - buf;
  493. pos += ret;
  494. }
  495. if (attr.dev_password_id) {
  496. ret = os_snprintf(pos, end - pos,
  497. "wps_device_password_id=%u\n",
  498. WPA_GET_BE16(attr.dev_password_id));
  499. if (os_snprintf_error(end - pos, ret))
  500. return pos - buf;
  501. pos += ret;
  502. }
  503. if (attr.sel_reg_config_methods) {
  504. ret = os_snprintf(pos, end - pos,
  505. "wps_selected_registrar_config_methods="
  506. "0x%04x\n",
  507. WPA_GET_BE16(attr.sel_reg_config_methods));
  508. if (os_snprintf_error(end - pos, ret))
  509. return pos - buf;
  510. pos += ret;
  511. }
  512. if (attr.primary_dev_type) {
  513. char devtype[WPS_DEV_TYPE_BUFSIZE];
  514. ret = os_snprintf(pos, end - pos,
  515. "wps_primary_device_type=%s\n",
  516. wps_dev_type_bin2str(attr.primary_dev_type,
  517. devtype,
  518. sizeof(devtype)));
  519. if (os_snprintf_error(end - pos, ret))
  520. return pos - buf;
  521. pos += ret;
  522. }
  523. if (attr.dev_name) {
  524. char *str = os_malloc(attr.dev_name_len + 1);
  525. size_t i;
  526. if (str == NULL)
  527. return pos - buf;
  528. for (i = 0; i < attr.dev_name_len; i++) {
  529. if (attr.dev_name[i] == 0 ||
  530. is_ctrl_char(attr.dev_name[i]))
  531. str[i] = '_';
  532. else
  533. str[i] = attr.dev_name[i];
  534. }
  535. str[i] = '\0';
  536. ret = os_snprintf(pos, end - pos, "wps_device_name=%s\n", str);
  537. os_free(str);
  538. if (os_snprintf_error(end - pos, ret))
  539. return pos - buf;
  540. pos += ret;
  541. }
  542. if (attr.config_methods) {
  543. ret = os_snprintf(pos, end - pos,
  544. "wps_config_methods=0x%04x\n",
  545. WPA_GET_BE16(attr.config_methods));
  546. if (os_snprintf_error(end - pos, ret))
  547. return pos - buf;
  548. pos += ret;
  549. }
  550. return pos - buf;
  551. }
  552. const char * wps_ei_str(enum wps_error_indication ei)
  553. {
  554. switch (ei) {
  555. case WPS_EI_NO_ERROR:
  556. return "No Error";
  557. case WPS_EI_SECURITY_TKIP_ONLY_PROHIBITED:
  558. return "TKIP Only Prohibited";
  559. case WPS_EI_SECURITY_WEP_PROHIBITED:
  560. return "WEP Prohibited";
  561. case WPS_EI_AUTH_FAILURE:
  562. return "Authentication Failure";
  563. default:
  564. return "Unknown";
  565. }
  566. }