wps.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530
  1. /*
  2. * Wi-Fi Protected Setup
  3. * Copyright (c) 2007-2009, 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/dh_group5.h"
  17. #include "common/ieee802_11_defs.h"
  18. #include "wps_i.h"
  19. #include "wps_dev_attr.h"
  20. /**
  21. * wps_init - Initialize WPS Registration protocol data
  22. * @cfg: WPS configuration
  23. * Returns: Pointer to allocated data or %NULL on failure
  24. *
  25. * This function is used to initialize WPS data for a registration protocol
  26. * instance (i.e., each run of registration protocol as a Registrar of
  27. * Enrollee. The caller is responsible for freeing this data after the
  28. * registration run has been completed by calling wps_deinit().
  29. */
  30. struct wps_data * wps_init(const struct wps_config *cfg)
  31. {
  32. struct wps_data *data = os_zalloc(sizeof(*data));
  33. if (data == NULL)
  34. return NULL;
  35. data->wps = cfg->wps;
  36. data->registrar = cfg->registrar;
  37. if (cfg->registrar) {
  38. os_memcpy(data->uuid_r, cfg->wps->uuid, WPS_UUID_LEN);
  39. } else {
  40. os_memcpy(data->mac_addr_e, cfg->wps->dev.mac_addr, ETH_ALEN);
  41. os_memcpy(data->uuid_e, cfg->wps->uuid, WPS_UUID_LEN);
  42. }
  43. if (cfg->pin) {
  44. data->dev_pw_id = data->wps->oob_dev_pw_id == 0 ?
  45. DEV_PW_DEFAULT : data->wps->oob_dev_pw_id;
  46. data->dev_password = os_malloc(cfg->pin_len);
  47. if (data->dev_password == NULL) {
  48. os_free(data);
  49. return NULL;
  50. }
  51. os_memcpy(data->dev_password, cfg->pin, cfg->pin_len);
  52. data->dev_password_len = cfg->pin_len;
  53. }
  54. data->pbc = cfg->pbc;
  55. if (cfg->pbc) {
  56. /* Use special PIN '00000000' for PBC */
  57. data->dev_pw_id = DEV_PW_PUSHBUTTON;
  58. os_free(data->dev_password);
  59. data->dev_password = os_malloc(8);
  60. if (data->dev_password == NULL) {
  61. os_free(data);
  62. return NULL;
  63. }
  64. os_memset(data->dev_password, '0', 8);
  65. data->dev_password_len = 8;
  66. }
  67. data->state = data->registrar ? RECV_M1 : SEND_M1;
  68. if (cfg->assoc_wps_ie) {
  69. struct wps_parse_attr attr;
  70. wpa_hexdump_buf(MSG_DEBUG, "WPS: WPS IE from (Re)AssocReq",
  71. cfg->assoc_wps_ie);
  72. if (wps_parse_msg(cfg->assoc_wps_ie, &attr) < 0) {
  73. wpa_printf(MSG_DEBUG, "WPS: Failed to parse WPS IE "
  74. "from (Re)AssocReq");
  75. } else if (attr.request_type == NULL) {
  76. wpa_printf(MSG_DEBUG, "WPS: No Request Type attribute "
  77. "in (Re)AssocReq WPS IE");
  78. } else {
  79. wpa_printf(MSG_DEBUG, "WPS: Request Type (from WPS IE "
  80. "in (Re)AssocReq WPS IE): %d",
  81. *attr.request_type);
  82. data->request_type = *attr.request_type;
  83. }
  84. }
  85. if (cfg->new_ap_settings) {
  86. data->new_ap_settings =
  87. os_malloc(sizeof(*data->new_ap_settings));
  88. if (data->new_ap_settings == NULL) {
  89. os_free(data);
  90. return NULL;
  91. }
  92. os_memcpy(data->new_ap_settings, cfg->new_ap_settings,
  93. sizeof(*data->new_ap_settings));
  94. }
  95. if (cfg->peer_addr)
  96. os_memcpy(data->peer_dev.mac_addr, cfg->peer_addr, ETH_ALEN);
  97. data->use_psk_key = cfg->use_psk_key;
  98. return data;
  99. }
  100. /**
  101. * wps_deinit - Deinitialize WPS Registration protocol data
  102. * @data: WPS Registration protocol data from wps_init()
  103. */
  104. void wps_deinit(struct wps_data *data)
  105. {
  106. if (data->wps_pin_revealed) {
  107. wpa_printf(MSG_DEBUG, "WPS: Full PIN information revealed and "
  108. "negotiation failed");
  109. if (data->registrar)
  110. wps_registrar_invalidate_pin(data->wps->registrar,
  111. data->uuid_e);
  112. } else if (data->registrar)
  113. wps_registrar_unlock_pin(data->wps->registrar, data->uuid_e);
  114. wpabuf_free(data->dh_privkey);
  115. wpabuf_free(data->dh_pubkey_e);
  116. wpabuf_free(data->dh_pubkey_r);
  117. wpabuf_free(data->last_msg);
  118. os_free(data->dev_password);
  119. os_free(data->new_psk);
  120. wps_device_data_free(&data->peer_dev);
  121. os_free(data->new_ap_settings);
  122. dh5_free(data->dh_ctx);
  123. os_free(data);
  124. }
  125. /**
  126. * wps_process_msg - Process a WPS message
  127. * @wps: WPS Registration protocol data from wps_init()
  128. * @op_code: Message OP Code
  129. * @msg: Message data
  130. * Returns: Processing result
  131. *
  132. * This function is used to process WPS messages with OP Codes WSC_ACK,
  133. * WSC_NACK, WSC_MSG, and WSC_Done. The caller (e.g., EAP server/peer) is
  134. * responsible for reassembling the messages before calling this function.
  135. * Response to this message is built by calling wps_get_msg().
  136. */
  137. enum wps_process_res wps_process_msg(struct wps_data *wps,
  138. enum wsc_op_code op_code,
  139. const struct wpabuf *msg)
  140. {
  141. if (wps->registrar)
  142. return wps_registrar_process_msg(wps, op_code, msg);
  143. else
  144. return wps_enrollee_process_msg(wps, op_code, msg);
  145. }
  146. /**
  147. * wps_get_msg - Build a WPS message
  148. * @wps: WPS Registration protocol data from wps_init()
  149. * @op_code: Buffer for returning message OP Code
  150. * Returns: The generated WPS message or %NULL on failure
  151. *
  152. * This function is used to build a response to a message processed by calling
  153. * wps_process_msg(). The caller is responsible for freeing the buffer.
  154. */
  155. struct wpabuf * wps_get_msg(struct wps_data *wps, enum wsc_op_code *op_code)
  156. {
  157. if (wps->registrar)
  158. return wps_registrar_get_msg(wps, op_code);
  159. else
  160. return wps_enrollee_get_msg(wps, op_code);
  161. }
  162. /**
  163. * wps_is_selected_pbc_registrar - Check whether WPS IE indicates active PBC
  164. * @msg: WPS IE contents from Beacon or Probe Response frame
  165. * Returns: 1 if PBC Registrar is active, 0 if not
  166. */
  167. int wps_is_selected_pbc_registrar(const struct wpabuf *msg)
  168. {
  169. struct wps_parse_attr attr;
  170. /*
  171. * In theory, this could also verify that attr.sel_reg_config_methods
  172. * includes WPS_CONFIG_PUSHBUTTON, but some deployed AP implementations
  173. * do not set Selected Registrar Config Methods attribute properly, so
  174. * it is safer to just use Device Password ID here.
  175. */
  176. if (wps_parse_msg(msg, &attr) < 0 ||
  177. !attr.selected_registrar || *attr.selected_registrar == 0 ||
  178. !attr.dev_password_id ||
  179. WPA_GET_BE16(attr.dev_password_id) != DEV_PW_PUSHBUTTON)
  180. return 0;
  181. return 1;
  182. }
  183. /**
  184. * wps_is_selected_pin_registrar - Check whether WPS IE indicates active PIN
  185. * @msg: WPS IE contents from Beacon or Probe Response frame
  186. * Returns: 1 if PIN Registrar is active, 0 if not
  187. */
  188. int wps_is_selected_pin_registrar(const struct wpabuf *msg)
  189. {
  190. struct wps_parse_attr attr;
  191. /*
  192. * In theory, this could also verify that attr.sel_reg_config_methods
  193. * includes WPS_CONFIG_LABEL, WPS_CONFIG_DISPLAY, or WPS_CONFIG_KEYPAD,
  194. * but some deployed AP implementations do not set Selected Registrar
  195. * Config Methods attribute properly, so it is safer to just use
  196. * Device Password ID here.
  197. */
  198. if (wps_parse_msg(msg, &attr) < 0)
  199. return 0;
  200. if (!attr.selected_registrar || *attr.selected_registrar == 0)
  201. return 0;
  202. if (attr.dev_password_id != NULL &&
  203. WPA_GET_BE16(attr.dev_password_id) == DEV_PW_PUSHBUTTON)
  204. return 0;
  205. return 1;
  206. }
  207. /**
  208. * wps_ap_priority_compar - Prioritize WPS IE from two APs
  209. * @wps_a: WPS IE contents from Beacon or Probe Response frame
  210. * @wps_b: WPS IE contents from Beacon or Probe Response frame
  211. * Returns: 1 if wps_b is considered more likely selection for WPS
  212. * provisioning, -1 if wps_a is considered more like, or 0 if no preference
  213. */
  214. int wps_ap_priority_compar(const struct wpabuf *wps_a,
  215. const struct wpabuf *wps_b)
  216. {
  217. struct wps_parse_attr attr_a, attr_b;
  218. int sel_a, sel_b;
  219. if (wps_a == NULL || wps_parse_msg(wps_a, &attr_a) < 0)
  220. return 1;
  221. if (wps_b == NULL || wps_parse_msg(wps_b, &attr_b) < 0)
  222. return -1;
  223. sel_a = attr_a.selected_registrar && *attr_a.selected_registrar != 0;
  224. sel_b = attr_b.selected_registrar && *attr_b.selected_registrar != 0;
  225. if (sel_a && !sel_b)
  226. return -1;
  227. if (!sel_a && sel_b)
  228. return 1;
  229. return 0;
  230. }
  231. /**
  232. * wps_get_uuid_e - Get UUID-E from WPS IE
  233. * @msg: WPS IE contents from Beacon or Probe Response frame
  234. * Returns: Pointer to UUID-E or %NULL if not included
  235. *
  236. * The returned pointer is to the msg contents and it remains valid only as
  237. * long as the msg buffer is valid.
  238. */
  239. const u8 * wps_get_uuid_e(const struct wpabuf *msg)
  240. {
  241. struct wps_parse_attr attr;
  242. if (wps_parse_msg(msg, &attr) < 0)
  243. return NULL;
  244. return attr.uuid_e;
  245. }
  246. /**
  247. * wps_build_assoc_req_ie - Build WPS IE for (Re)Association Request
  248. * @req_type: Value for Request Type attribute
  249. * Returns: WPS IE or %NULL on failure
  250. *
  251. * The caller is responsible for freeing the buffer.
  252. */
  253. struct wpabuf * wps_build_assoc_req_ie(enum wps_request_type req_type)
  254. {
  255. struct wpabuf *ie;
  256. u8 *len;
  257. wpa_printf(MSG_DEBUG, "WPS: Building WPS IE for (Re)Association "
  258. "Request");
  259. ie = wpabuf_alloc(100);
  260. if (ie == NULL)
  261. return NULL;
  262. wpabuf_put_u8(ie, WLAN_EID_VENDOR_SPECIFIC);
  263. len = wpabuf_put(ie, 1);
  264. wpabuf_put_be32(ie, WPS_DEV_OUI_WFA);
  265. if (wps_build_version(ie) ||
  266. wps_build_req_type(ie, req_type) ||
  267. wps_build_version2(ie)) {
  268. wpabuf_free(ie);
  269. return NULL;
  270. }
  271. *len = wpabuf_len(ie) - 2;
  272. return ie;
  273. }
  274. /**
  275. * wps_build_assoc_resp_ie - Build WPS IE for (Re)Association Response
  276. * Returns: WPS IE or %NULL on failure
  277. *
  278. * The caller is responsible for freeing the buffer.
  279. */
  280. struct wpabuf * wps_build_assoc_resp_ie(void)
  281. {
  282. struct wpabuf *ie;
  283. u8 *len;
  284. wpa_printf(MSG_DEBUG, "WPS: Building WPS IE for (Re)Association "
  285. "Response");
  286. ie = wpabuf_alloc(100);
  287. if (ie == NULL)
  288. return NULL;
  289. wpabuf_put_u8(ie, WLAN_EID_VENDOR_SPECIFIC);
  290. len = wpabuf_put(ie, 1);
  291. wpabuf_put_be32(ie, WPS_DEV_OUI_WFA);
  292. if (wps_build_version(ie) ||
  293. wps_build_resp_type(ie, WPS_RESP_AP) ||
  294. wps_build_version2(ie)) {
  295. wpabuf_free(ie);
  296. return NULL;
  297. }
  298. *len = wpabuf_len(ie) - 2;
  299. return ie;
  300. }
  301. /**
  302. * wps_build_probe_req_ie - Build WPS IE for Probe Request
  303. * @pbc: Whether searching for PBC mode APs
  304. * @dev: Device attributes
  305. * @uuid: Own UUID
  306. * @req_type: Value for Request Type attribute
  307. * Returns: WPS IE or %NULL on failure
  308. *
  309. * The caller is responsible for freeing the buffer.
  310. */
  311. struct wpabuf * wps_build_probe_req_ie(int pbc, struct wps_device_data *dev,
  312. const u8 *uuid,
  313. enum wps_request_type req_type)
  314. {
  315. struct wpabuf *ie;
  316. u8 *len;
  317. u16 methods;
  318. wpa_printf(MSG_DEBUG, "WPS: Building WPS IE for Probe Request");
  319. ie = wpabuf_alloc(200);
  320. if (ie == NULL)
  321. return NULL;
  322. wpabuf_put_u8(ie, WLAN_EID_VENDOR_SPECIFIC);
  323. len = wpabuf_put(ie, 1);
  324. wpabuf_put_be32(ie, WPS_DEV_OUI_WFA);
  325. if (pbc)
  326. methods = WPS_CONFIG_PUSHBUTTON;
  327. else {
  328. methods = WPS_CONFIG_LABEL | WPS_CONFIG_DISPLAY |
  329. WPS_CONFIG_KEYPAD;
  330. #ifdef CONFIG_WPS_UFD
  331. methods |= WPS_CONFIG_USBA;
  332. #endif /* CONFIG_WPS_UFD */
  333. #ifdef CONFIG_WPS_NFC
  334. methods |= WPS_CONFIG_NFC_INTERFACE;
  335. #endif /* CONFIG_WPS_NFC */
  336. }
  337. if (wps_build_version(ie) ||
  338. wps_build_req_type(ie, req_type) ||
  339. wps_build_config_methods(ie, methods) ||
  340. wps_build_uuid_e(ie, uuid) ||
  341. wps_build_primary_dev_type(dev, ie) ||
  342. wps_build_rf_bands(dev, ie) ||
  343. wps_build_assoc_state(NULL, ie) ||
  344. wps_build_config_error(ie, WPS_CFG_NO_ERROR) ||
  345. wps_build_dev_password_id(ie, pbc ? DEV_PW_PUSHBUTTON :
  346. DEV_PW_DEFAULT) ||
  347. wps_build_version2(ie)) {
  348. wpabuf_free(ie);
  349. return NULL;
  350. }
  351. *len = wpabuf_len(ie) - 2;
  352. return ie;
  353. }
  354. void wps_free_pending_msgs(struct upnp_pending_message *msgs)
  355. {
  356. struct upnp_pending_message *p, *prev;
  357. p = msgs;
  358. while (p) {
  359. prev = p;
  360. p = p->next;
  361. wpabuf_free(prev->msg);
  362. os_free(prev);
  363. }
  364. }
  365. int wps_attr_text(struct wpabuf *data, char *buf, char *end)
  366. {
  367. struct wps_parse_attr attr;
  368. char *pos = buf;
  369. int ret;
  370. if (wps_parse_msg(data, &attr) < 0)
  371. return -1;
  372. if (attr.wps_state) {
  373. if (*attr.wps_state == WPS_STATE_NOT_CONFIGURED)
  374. ret = os_snprintf(pos, end - pos,
  375. "wps_state=unconfigured\n");
  376. else if (*attr.wps_state == WPS_STATE_CONFIGURED)
  377. ret = os_snprintf(pos, end - pos,
  378. "wps_state=configured\n");
  379. else
  380. ret = 0;
  381. if (ret < 0 || ret >= end - pos)
  382. return pos - buf;
  383. pos += ret;
  384. }
  385. if (attr.ap_setup_locked && *attr.ap_setup_locked) {
  386. ret = os_snprintf(pos, end - pos,
  387. "wps_ap_setup_locked=1\n");
  388. if (ret < 0 || ret >= end - pos)
  389. return pos - buf;
  390. pos += ret;
  391. }
  392. if (attr.selected_registrar && *attr.selected_registrar) {
  393. ret = os_snprintf(pos, end - pos,
  394. "wps_selected_registrar=1\n");
  395. if (ret < 0 || ret >= end - pos)
  396. return pos - buf;
  397. pos += ret;
  398. }
  399. if (attr.dev_password_id) {
  400. ret = os_snprintf(pos, end - pos,
  401. "wps_device_password_id=%u\n",
  402. WPA_GET_BE16(attr.dev_password_id));
  403. if (ret < 0 || ret >= end - pos)
  404. return pos - buf;
  405. pos += ret;
  406. }
  407. if (attr.sel_reg_config_methods) {
  408. ret = os_snprintf(pos, end - pos,
  409. "wps_selected_registrar_config_methods="
  410. "0x%04x\n",
  411. WPA_GET_BE16(attr.sel_reg_config_methods));
  412. if (ret < 0 || ret >= end - pos)
  413. return pos - buf;
  414. pos += ret;
  415. }
  416. if (attr.primary_dev_type) {
  417. char devtype[WPS_DEV_TYPE_BUFSIZE];
  418. ret = os_snprintf(pos, end - pos,
  419. "wps_primary_device_type=%s\n",
  420. wps_dev_type_bin2str(attr.primary_dev_type,
  421. devtype,
  422. sizeof(devtype)));
  423. if (ret < 0 || ret >= end - pos)
  424. return pos - buf;
  425. pos += ret;
  426. }
  427. if (attr.dev_name) {
  428. char *str = os_malloc(attr.dev_name_len + 1);
  429. size_t i;
  430. if (str == NULL)
  431. return pos - buf;
  432. for (i = 0; i < attr.dev_name_len; i++) {
  433. if (attr.dev_name[i] < 32)
  434. str[i] = '_';
  435. else
  436. str[i] = attr.dev_name[i];
  437. }
  438. str[i] = '\0';
  439. ret = os_snprintf(pos, end - pos, "wps_device_name=%s\n", str);
  440. os_free(str);
  441. if (ret < 0 || ret >= end - pos)
  442. return pos - buf;
  443. pos += ret;
  444. }
  445. if (attr.config_methods) {
  446. ret = os_snprintf(pos, end - pos,
  447. "wps_config_methods=0x%04x\n",
  448. WPA_GET_BE16(attr.config_methods));
  449. if (ret < 0 || ret >= end - pos)
  450. return pos - buf;
  451. pos += ret;
  452. }
  453. return pos - buf;
  454. }