wps_hostapd.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973
  1. /*
  2. * hostapd / WPS integration
  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 "hostapd.h"
  17. #include "driver_i.h"
  18. #include "eloop.h"
  19. #include "uuid.h"
  20. #include "common/wpa_ctrl.h"
  21. #include "common/ieee802_11_defs.h"
  22. #include "common/ieee802_11_common.h"
  23. #include "sta_flags.h"
  24. #include "sta_info.h"
  25. #include "eapol_sm.h"
  26. #include "wps/wps.h"
  27. #include "wps/wps_defs.h"
  28. #include "wps/wps_dev_attr.h"
  29. #include "wps_hostapd.h"
  30. #include "dh_groups.h"
  31. #ifdef CONFIG_WPS_UPNP
  32. #include "wps/wps_upnp.h"
  33. static int hostapd_wps_upnp_init(struct hostapd_data *hapd,
  34. struct wps_context *wps);
  35. static void hostapd_wps_upnp_deinit(struct hostapd_data *hapd);
  36. #endif /* CONFIG_WPS_UPNP */
  37. static void hostapd_wps_probe_req_rx(void *ctx, const u8 *addr,
  38. const u8 *ie, size_t ie_len);
  39. static int hostapd_wps_new_psk_cb(void *ctx, const u8 *mac_addr, const u8 *psk,
  40. size_t psk_len)
  41. {
  42. struct hostapd_data *hapd = ctx;
  43. struct hostapd_wpa_psk *p;
  44. struct hostapd_ssid *ssid = &hapd->conf->ssid;
  45. wpa_printf(MSG_DEBUG, "Received new WPA/WPA2-PSK from WPS for STA "
  46. MACSTR, MAC2STR(mac_addr));
  47. wpa_hexdump_key(MSG_DEBUG, "Per-device PSK", psk, psk_len);
  48. if (psk_len != PMK_LEN) {
  49. wpa_printf(MSG_DEBUG, "Unexpected PSK length %lu",
  50. (unsigned long) psk_len);
  51. return -1;
  52. }
  53. /* Add the new PSK to runtime PSK list */
  54. p = os_zalloc(sizeof(*p));
  55. if (p == NULL)
  56. return -1;
  57. os_memcpy(p->addr, mac_addr, ETH_ALEN);
  58. os_memcpy(p->psk, psk, PMK_LEN);
  59. p->next = ssid->wpa_psk;
  60. ssid->wpa_psk = p;
  61. if (ssid->wpa_psk_file) {
  62. FILE *f;
  63. char hex[PMK_LEN * 2 + 1];
  64. /* Add the new PSK to PSK list file */
  65. f = fopen(ssid->wpa_psk_file, "a");
  66. if (f == NULL) {
  67. wpa_printf(MSG_DEBUG, "Failed to add the PSK to "
  68. "'%s'", ssid->wpa_psk_file);
  69. return -1;
  70. }
  71. wpa_snprintf_hex(hex, sizeof(hex), psk, psk_len);
  72. fprintf(f, MACSTR " %s\n", MAC2STR(mac_addr), hex);
  73. fclose(f);
  74. }
  75. return 0;
  76. }
  77. static int hostapd_wps_set_ie_cb(void *ctx, const u8 *beacon_ie,
  78. size_t beacon_ie_len, const u8 *probe_resp_ie,
  79. size_t probe_resp_ie_len)
  80. {
  81. struct hostapd_data *hapd = ctx;
  82. os_free(hapd->wps_beacon_ie);
  83. if (beacon_ie_len == 0) {
  84. hapd->wps_beacon_ie = NULL;
  85. hapd->wps_beacon_ie_len = 0;
  86. } else {
  87. hapd->wps_beacon_ie = os_malloc(beacon_ie_len);
  88. if (hapd->wps_beacon_ie == NULL) {
  89. hapd->wps_beacon_ie_len = 0;
  90. return -1;
  91. }
  92. os_memcpy(hapd->wps_beacon_ie, beacon_ie, beacon_ie_len);
  93. hapd->wps_beacon_ie_len = beacon_ie_len;
  94. }
  95. hostapd_set_wps_beacon_ie(hapd, hapd->wps_beacon_ie,
  96. hapd->wps_beacon_ie_len);
  97. os_free(hapd->wps_probe_resp_ie);
  98. if (probe_resp_ie_len == 0) {
  99. hapd->wps_probe_resp_ie = NULL;
  100. hapd->wps_probe_resp_ie_len = 0;
  101. } else {
  102. hapd->wps_probe_resp_ie = os_malloc(probe_resp_ie_len);
  103. if (hapd->wps_probe_resp_ie == NULL) {
  104. hapd->wps_probe_resp_ie_len = 0;
  105. return -1;
  106. }
  107. os_memcpy(hapd->wps_probe_resp_ie, probe_resp_ie,
  108. probe_resp_ie_len);
  109. hapd->wps_probe_resp_ie_len = probe_resp_ie_len;
  110. }
  111. hostapd_set_wps_probe_resp_ie(hapd, hapd->wps_probe_resp_ie,
  112. hapd->wps_probe_resp_ie_len);
  113. return 0;
  114. }
  115. static void hostapd_wps_pin_needed_cb(void *ctx, const u8 *uuid_e,
  116. const struct wps_device_data *dev)
  117. {
  118. struct hostapd_data *hapd = ctx;
  119. char uuid[40], txt[400];
  120. int len;
  121. char devtype[WPS_DEV_TYPE_BUFSIZE];
  122. if (uuid_bin2str(uuid_e, uuid, sizeof(uuid)))
  123. return;
  124. wpa_printf(MSG_DEBUG, "WPS: PIN needed for E-UUID %s", uuid);
  125. len = os_snprintf(txt, sizeof(txt), WPS_EVENT_PIN_NEEDED
  126. "%s " MACSTR " [%s|%s|%s|%s|%s|%s]",
  127. uuid, MAC2STR(dev->mac_addr), dev->device_name,
  128. dev->manufacturer, dev->model_name,
  129. dev->model_number, dev->serial_number,
  130. wps_dev_type_bin2str(dev->pri_dev_type, devtype,
  131. sizeof(devtype)));
  132. if (len > 0 && len < (int) sizeof(txt))
  133. wpa_msg(hapd->msg_ctx, MSG_INFO, "%s", txt);
  134. if (hapd->conf->wps_pin_requests) {
  135. FILE *f;
  136. struct os_time t;
  137. f = fopen(hapd->conf->wps_pin_requests, "a");
  138. if (f == NULL)
  139. return;
  140. os_get_time(&t);
  141. fprintf(f, "%ld\t%s\t" MACSTR "\t%s\t%s\t%s\t%s\t%s"
  142. "\t%s\n",
  143. t.sec, uuid, MAC2STR(dev->mac_addr), dev->device_name,
  144. dev->manufacturer, dev->model_name, dev->model_number,
  145. dev->serial_number,
  146. wps_dev_type_bin2str(dev->pri_dev_type, devtype,
  147. sizeof(devtype)));
  148. fclose(f);
  149. }
  150. }
  151. static void hostapd_wps_reg_success_cb(void *ctx, const u8 *mac_addr,
  152. const u8 *uuid_e)
  153. {
  154. struct hostapd_data *hapd = ctx;
  155. char uuid[40];
  156. if (uuid_bin2str(uuid_e, uuid, sizeof(uuid)))
  157. return;
  158. wpa_msg(hapd->msg_ctx, MSG_INFO, WPS_EVENT_REG_SUCCESS MACSTR " %s",
  159. MAC2STR(mac_addr), uuid);
  160. }
  161. static int str_starts(const char *str, const char *start)
  162. {
  163. return os_strncmp(str, start, os_strlen(start)) == 0;
  164. }
  165. static void wps_reload_config(void *eloop_data, void *user_ctx)
  166. {
  167. struct hostapd_iface *iface = eloop_data;
  168. wpa_printf(MSG_DEBUG, "WPS: Reload configuration data");
  169. if (hostapd_reload_config(iface) < 0) {
  170. wpa_printf(MSG_WARNING, "WPS: Failed to reload the updated "
  171. "configuration");
  172. }
  173. }
  174. static int hostapd_wps_cred_cb(void *ctx, const struct wps_credential *cred)
  175. {
  176. struct hostapd_data *hapd = ctx;
  177. FILE *oconf, *nconf;
  178. size_t len, i;
  179. char *tmp_fname;
  180. char buf[1024];
  181. int multi_bss;
  182. int wpa;
  183. wpa_hexdump_key(MSG_DEBUG, "WPS: Received Credential attribute",
  184. cred->cred_attr, cred->cred_attr_len);
  185. wpa_printf(MSG_DEBUG, "WPS: Received new AP Settings");
  186. wpa_hexdump_ascii(MSG_DEBUG, "WPS: SSID", cred->ssid, cred->ssid_len);
  187. wpa_printf(MSG_DEBUG, "WPS: Authentication Type 0x%x",
  188. cred->auth_type);
  189. wpa_printf(MSG_DEBUG, "WPS: Encryption Type 0x%x", cred->encr_type);
  190. wpa_printf(MSG_DEBUG, "WPS: Network Key Index %d", cred->key_idx);
  191. wpa_hexdump_key(MSG_DEBUG, "WPS: Network Key",
  192. cred->key, cred->key_len);
  193. wpa_printf(MSG_DEBUG, "WPS: MAC Address " MACSTR,
  194. MAC2STR(cred->mac_addr));
  195. if ((hapd->conf->wps_cred_processing == 1 ||
  196. hapd->conf->wps_cred_processing == 2) && cred->cred_attr) {
  197. size_t blen = cred->cred_attr_len * 2 + 1;
  198. char *_buf = os_malloc(blen);
  199. if (_buf) {
  200. wpa_snprintf_hex(_buf, blen,
  201. cred->cred_attr, cred->cred_attr_len);
  202. wpa_msg(hapd->msg_ctx, MSG_INFO, "%s%s",
  203. WPS_EVENT_NEW_AP_SETTINGS, _buf);
  204. os_free(_buf);
  205. }
  206. } else
  207. wpa_msg(hapd->msg_ctx, MSG_INFO, WPS_EVENT_NEW_AP_SETTINGS);
  208. if (hapd->conf->wps_cred_processing == 1)
  209. return 0;
  210. os_memcpy(hapd->wps->ssid, cred->ssid, cred->ssid_len);
  211. hapd->wps->ssid_len = cred->ssid_len;
  212. hapd->wps->encr_types = cred->encr_type;
  213. hapd->wps->auth_types = cred->auth_type;
  214. if (cred->key_len == 0) {
  215. os_free(hapd->wps->network_key);
  216. hapd->wps->network_key = NULL;
  217. hapd->wps->network_key_len = 0;
  218. } else {
  219. if (hapd->wps->network_key == NULL ||
  220. hapd->wps->network_key_len < cred->key_len) {
  221. hapd->wps->network_key_len = 0;
  222. os_free(hapd->wps->network_key);
  223. hapd->wps->network_key = os_malloc(cred->key_len);
  224. if (hapd->wps->network_key == NULL)
  225. return -1;
  226. }
  227. hapd->wps->network_key_len = cred->key_len;
  228. os_memcpy(hapd->wps->network_key, cred->key, cred->key_len);
  229. }
  230. hapd->wps->wps_state = WPS_STATE_CONFIGURED;
  231. len = os_strlen(hapd->iface->config_fname) + 5;
  232. tmp_fname = os_malloc(len);
  233. if (tmp_fname == NULL)
  234. return -1;
  235. os_snprintf(tmp_fname, len, "%s-new", hapd->iface->config_fname);
  236. oconf = fopen(hapd->iface->config_fname, "r");
  237. if (oconf == NULL) {
  238. wpa_printf(MSG_WARNING, "WPS: Could not open current "
  239. "configuration file");
  240. os_free(tmp_fname);
  241. return -1;
  242. }
  243. nconf = fopen(tmp_fname, "w");
  244. if (nconf == NULL) {
  245. wpa_printf(MSG_WARNING, "WPS: Could not write updated "
  246. "configuration file");
  247. os_free(tmp_fname);
  248. fclose(oconf);
  249. return -1;
  250. }
  251. fprintf(nconf, "# WPS configuration - START\n");
  252. fprintf(nconf, "wps_state=2\n");
  253. fprintf(nconf, "ssid=");
  254. for (i = 0; i < cred->ssid_len; i++)
  255. fputc(cred->ssid[i], nconf);
  256. fprintf(nconf, "\n");
  257. if ((cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA2PSK)) &&
  258. (cred->auth_type & (WPS_AUTH_WPA | WPS_AUTH_WPAPSK)))
  259. wpa = 3;
  260. else if (cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA2PSK))
  261. wpa = 2;
  262. else if (cred->auth_type & (WPS_AUTH_WPA | WPS_AUTH_WPAPSK))
  263. wpa = 1;
  264. else
  265. wpa = 0;
  266. if (wpa) {
  267. char *prefix;
  268. fprintf(nconf, "wpa=%d\n", wpa);
  269. fprintf(nconf, "wpa_key_mgmt=");
  270. prefix = "";
  271. if (cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA)) {
  272. fprintf(nconf, "WPA-EAP");
  273. prefix = " ";
  274. }
  275. if (cred->auth_type & (WPS_AUTH_WPA2PSK | WPS_AUTH_WPAPSK))
  276. fprintf(nconf, "%sWPA-PSK", prefix);
  277. fprintf(nconf, "\n");
  278. fprintf(nconf, "wpa_pairwise=");
  279. prefix = "";
  280. if (cred->encr_type & WPS_ENCR_AES) {
  281. fprintf(nconf, "CCMP");
  282. prefix = " ";
  283. }
  284. if (cred->encr_type & WPS_ENCR_TKIP) {
  285. fprintf(nconf, "%sTKIP", prefix);
  286. }
  287. fprintf(nconf, "\n");
  288. if (cred->key_len >= 8 && cred->key_len < 64) {
  289. fprintf(nconf, "wpa_passphrase=");
  290. for (i = 0; i < cred->key_len; i++)
  291. fputc(cred->key[i], nconf);
  292. fprintf(nconf, "\n");
  293. } else if (cred->key_len == 64) {
  294. fprintf(nconf, "wpa_psk=");
  295. for (i = 0; i < cred->key_len; i++)
  296. fputc(cred->key[i], nconf);
  297. fprintf(nconf, "\n");
  298. } else {
  299. wpa_printf(MSG_WARNING, "WPS: Invalid key length %lu "
  300. "for WPA/WPA2",
  301. (unsigned long) cred->key_len);
  302. }
  303. fprintf(nconf, "auth_algs=1\n");
  304. } else {
  305. if ((cred->auth_type & WPS_AUTH_OPEN) &&
  306. (cred->auth_type & WPS_AUTH_SHARED))
  307. fprintf(nconf, "auth_algs=3\n");
  308. else if (cred->auth_type & WPS_AUTH_SHARED)
  309. fprintf(nconf, "auth_algs=2\n");
  310. else
  311. fprintf(nconf, "auth_algs=1\n");
  312. if (cred->encr_type & WPS_ENCR_WEP && cred->key_idx <= 4) {
  313. int key_idx = cred->key_idx;
  314. if (key_idx)
  315. key_idx--;
  316. fprintf(nconf, "wep_default_key=%d\n", key_idx);
  317. fprintf(nconf, "wep_key%d=", key_idx);
  318. if (cred->key_len == 10 || cred->key_len == 26) {
  319. /* WEP key as a hex string */
  320. for (i = 0; i < cred->key_len; i++)
  321. fputc(cred->key[i], nconf);
  322. } else {
  323. /* Raw WEP key; convert to hex */
  324. for (i = 0; i < cred->key_len; i++)
  325. fprintf(nconf, "%02x", cred->key[i]);
  326. }
  327. fprintf(nconf, "\n");
  328. }
  329. }
  330. fprintf(nconf, "# WPS configuration - END\n");
  331. multi_bss = 0;
  332. while (fgets(buf, sizeof(buf), oconf)) {
  333. if (os_strncmp(buf, "bss=", 4) == 0)
  334. multi_bss = 1;
  335. if (!multi_bss &&
  336. (str_starts(buf, "ssid=") ||
  337. str_starts(buf, "auth_algs=") ||
  338. str_starts(buf, "wps_state=") ||
  339. str_starts(buf, "wpa=") ||
  340. str_starts(buf, "wpa_psk=") ||
  341. str_starts(buf, "wpa_pairwise=") ||
  342. str_starts(buf, "rsn_pairwise=") ||
  343. str_starts(buf, "wpa_key_mgmt=") ||
  344. str_starts(buf, "wpa_passphrase="))) {
  345. fprintf(nconf, "#WPS# %s", buf);
  346. } else
  347. fprintf(nconf, "%s", buf);
  348. }
  349. fclose(nconf);
  350. fclose(oconf);
  351. if (rename(tmp_fname, hapd->iface->config_fname) < 0) {
  352. wpa_printf(MSG_WARNING, "WPS: Failed to rename the updated "
  353. "configuration file: %s", strerror(errno));
  354. os_free(tmp_fname);
  355. return -1;
  356. }
  357. os_free(tmp_fname);
  358. /* Schedule configuration reload after short period of time to allow
  359. * EAP-WSC to be finished.
  360. */
  361. eloop_register_timeout(0, 100000, wps_reload_config, hapd->iface,
  362. NULL);
  363. /* TODO: dualband AP may need to update multiple configuration files */
  364. wpa_printf(MSG_DEBUG, "WPS: AP configuration updated");
  365. return 0;
  366. }
  367. static void hostapd_pwd_auth_fail(struct hostapd_data *hapd,
  368. struct wps_event_pwd_auth_fail *data)
  369. {
  370. FILE *f;
  371. if (!data->enrollee)
  372. return;
  373. /*
  374. * Registrar failed to prove its knowledge of the AP PIN. Lock AP setup
  375. * if this happens multiple times.
  376. */
  377. hapd->ap_pin_failures++;
  378. if (hapd->ap_pin_failures < 4)
  379. return;
  380. wpa_msg(hapd->msg_ctx, MSG_INFO, WPS_EVENT_AP_SETUP_LOCKED);
  381. hapd->wps->ap_setup_locked = 1;
  382. wps_registrar_update_ie(hapd->wps->registrar);
  383. if (hapd->conf->wps_cred_processing == 1)
  384. return;
  385. f = fopen(hapd->iface->config_fname, "a");
  386. if (f == NULL) {
  387. wpa_printf(MSG_WARNING, "WPS: Could not append to the current "
  388. "configuration file");
  389. return;
  390. }
  391. fprintf(f, "# WPS AP Setup Locked based on possible attack\n");
  392. fprintf(f, "ap_setup_locked=1\n");
  393. fclose(f);
  394. /* TODO: dualband AP may need to update multiple configuration files */
  395. wpa_printf(MSG_DEBUG, "WPS: AP configuration updated");
  396. }
  397. static void hostapd_wps_event_cb(void *ctx, enum wps_event event,
  398. union wps_event_data *data)
  399. {
  400. struct hostapd_data *hapd = ctx;
  401. if (event == WPS_EV_PWD_AUTH_FAIL)
  402. hostapd_pwd_auth_fail(hapd, &data->pwd_auth_fail);
  403. }
  404. static void hostapd_wps_clear_ies(struct hostapd_data *hapd)
  405. {
  406. os_free(hapd->wps_beacon_ie);
  407. hapd->wps_beacon_ie = NULL;
  408. hapd->wps_beacon_ie_len = 0;
  409. hostapd_set_wps_beacon_ie(hapd, NULL, 0);
  410. os_free(hapd->wps_probe_resp_ie);
  411. hapd->wps_probe_resp_ie = NULL;
  412. hapd->wps_probe_resp_ie_len = 0;
  413. hostapd_set_wps_probe_resp_ie(hapd, NULL, 0);
  414. }
  415. int hostapd_init_wps(struct hostapd_data *hapd,
  416. struct hostapd_bss_config *conf)
  417. {
  418. struct wps_context *wps;
  419. struct wps_registrar_config cfg;
  420. if (conf->wps_state == 0) {
  421. hostapd_wps_clear_ies(hapd);
  422. return 0;
  423. }
  424. wps = os_zalloc(sizeof(*wps));
  425. if (wps == NULL)
  426. return -1;
  427. wps->cred_cb = hostapd_wps_cred_cb;
  428. wps->event_cb = hostapd_wps_event_cb;
  429. wps->cb_ctx = hapd;
  430. os_memset(&cfg, 0, sizeof(cfg));
  431. wps->wps_state = hapd->conf->wps_state;
  432. wps->ap_setup_locked = hapd->conf->ap_setup_locked;
  433. if (is_nil_uuid(hapd->conf->uuid)) {
  434. uuid_gen_mac_addr(hapd->own_addr, wps->uuid);
  435. wpa_hexdump(MSG_DEBUG, "WPS: UUID based on MAC address",
  436. wps->uuid, UUID_LEN);
  437. } else
  438. os_memcpy(wps->uuid, hapd->conf->uuid, UUID_LEN);
  439. wps->ssid_len = hapd->conf->ssid.ssid_len;
  440. os_memcpy(wps->ssid, hapd->conf->ssid.ssid, wps->ssid_len);
  441. wps->ap = 1;
  442. os_memcpy(wps->dev.mac_addr, hapd->own_addr, ETH_ALEN);
  443. wps->dev.device_name = hapd->conf->device_name ?
  444. os_strdup(hapd->conf->device_name) : NULL;
  445. wps->dev.manufacturer = hapd->conf->manufacturer ?
  446. os_strdup(hapd->conf->manufacturer) : NULL;
  447. wps->dev.model_name = hapd->conf->model_name ?
  448. os_strdup(hapd->conf->model_name) : NULL;
  449. wps->dev.model_number = hapd->conf->model_number ?
  450. os_strdup(hapd->conf->model_number) : NULL;
  451. wps->dev.serial_number = hapd->conf->serial_number ?
  452. os_strdup(hapd->conf->serial_number) : NULL;
  453. if (hapd->conf->config_methods) {
  454. char *m = hapd->conf->config_methods;
  455. if (os_strstr(m, "label"))
  456. wps->config_methods |= WPS_CONFIG_LABEL;
  457. if (os_strstr(m, "display"))
  458. wps->config_methods |= WPS_CONFIG_DISPLAY;
  459. if (os_strstr(m, "push_button"))
  460. wps->config_methods |= WPS_CONFIG_PUSHBUTTON;
  461. if (os_strstr(m, "keypad"))
  462. wps->config_methods |= WPS_CONFIG_KEYPAD;
  463. }
  464. if (hapd->conf->device_type &&
  465. wps_dev_type_str2bin(hapd->conf->device_type,
  466. wps->dev.pri_dev_type) < 0) {
  467. wpa_printf(MSG_ERROR, "WPS: Invalid device_type");
  468. os_free(wps);
  469. return -1;
  470. }
  471. wps->dev.os_version = WPA_GET_BE32(hapd->conf->os_version);
  472. wps->dev.rf_bands = hapd->iconf->hw_mode == HOSTAPD_MODE_IEEE80211A ?
  473. WPS_RF_50GHZ : WPS_RF_24GHZ; /* FIX: dualband AP */
  474. if (conf->wpa & WPA_PROTO_RSN) {
  475. if (conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK)
  476. wps->auth_types |= WPS_AUTH_WPA2PSK;
  477. if (conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X)
  478. wps->auth_types |= WPS_AUTH_WPA2;
  479. if (conf->rsn_pairwise & WPA_CIPHER_CCMP)
  480. wps->encr_types |= WPS_ENCR_AES;
  481. if (conf->rsn_pairwise & WPA_CIPHER_TKIP)
  482. wps->encr_types |= WPS_ENCR_TKIP;
  483. }
  484. if (conf->wpa & WPA_PROTO_WPA) {
  485. if (conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK)
  486. wps->auth_types |= WPS_AUTH_WPAPSK;
  487. if (conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X)
  488. wps->auth_types |= WPS_AUTH_WPA;
  489. if (conf->wpa_pairwise & WPA_CIPHER_CCMP)
  490. wps->encr_types |= WPS_ENCR_AES;
  491. if (conf->wpa_pairwise & WPA_CIPHER_TKIP)
  492. wps->encr_types |= WPS_ENCR_TKIP;
  493. }
  494. if (conf->ssid.security_policy == SECURITY_PLAINTEXT) {
  495. wps->encr_types |= WPS_ENCR_NONE;
  496. wps->auth_types |= WPS_AUTH_OPEN;
  497. } else if (conf->ssid.security_policy == SECURITY_STATIC_WEP) {
  498. wps->encr_types |= WPS_ENCR_WEP;
  499. if (conf->auth_algs & WPA_AUTH_ALG_OPEN)
  500. wps->auth_types |= WPS_AUTH_OPEN;
  501. if (conf->auth_algs & WPA_AUTH_ALG_SHARED)
  502. wps->auth_types |= WPS_AUTH_SHARED;
  503. } else if (conf->ssid.security_policy == SECURITY_IEEE_802_1X) {
  504. wps->auth_types |= WPS_AUTH_OPEN;
  505. if (conf->default_wep_key_len)
  506. wps->encr_types |= WPS_ENCR_WEP;
  507. else
  508. wps->encr_types |= WPS_ENCR_NONE;
  509. }
  510. if (conf->ssid.wpa_psk_file) {
  511. /* Use per-device PSKs */
  512. } else if (conf->ssid.wpa_passphrase) {
  513. wps->network_key = (u8 *) os_strdup(conf->ssid.wpa_passphrase);
  514. wps->network_key_len = os_strlen(conf->ssid.wpa_passphrase);
  515. } else if (conf->ssid.wpa_psk) {
  516. wps->network_key = os_malloc(2 * PMK_LEN + 1);
  517. if (wps->network_key == NULL) {
  518. os_free(wps);
  519. return -1;
  520. }
  521. wpa_snprintf_hex((char *) wps->network_key, 2 * PMK_LEN + 1,
  522. conf->ssid.wpa_psk->psk, PMK_LEN);
  523. wps->network_key_len = 2 * PMK_LEN;
  524. } else if (conf->ssid.wep.keys_set && conf->ssid.wep.key[0]) {
  525. wps->network_key = os_malloc(conf->ssid.wep.len[0]);
  526. if (wps->network_key == NULL) {
  527. os_free(wps);
  528. return -1;
  529. }
  530. os_memcpy(wps->network_key, conf->ssid.wep.key[0],
  531. conf->ssid.wep.len[0]);
  532. wps->network_key_len = conf->ssid.wep.len[0];
  533. }
  534. if (conf->wps_state == WPS_STATE_NOT_CONFIGURED) {
  535. /* Override parameters to enable security by default */
  536. wps->auth_types = WPS_AUTH_WPA2PSK | WPS_AUTH_WPAPSK;
  537. wps->encr_types = WPS_ENCR_AES | WPS_ENCR_TKIP;
  538. }
  539. wps->ap_settings = conf->ap_settings;
  540. wps->ap_settings_len = conf->ap_settings_len;
  541. cfg.new_psk_cb = hostapd_wps_new_psk_cb;
  542. cfg.set_ie_cb = hostapd_wps_set_ie_cb;
  543. cfg.pin_needed_cb = hostapd_wps_pin_needed_cb;
  544. cfg.reg_success_cb = hostapd_wps_reg_success_cb;
  545. cfg.cb_ctx = hapd;
  546. cfg.skip_cred_build = conf->skip_cred_build;
  547. cfg.extra_cred = conf->extra_cred;
  548. cfg.extra_cred_len = conf->extra_cred_len;
  549. cfg.disable_auto_conf = (hapd->conf->wps_cred_processing == 1) &&
  550. conf->skip_cred_build;
  551. if (conf->ssid.security_policy == SECURITY_STATIC_WEP)
  552. cfg.static_wep_only = 1;
  553. wps->registrar = wps_registrar_init(wps, &cfg);
  554. if (wps->registrar == NULL) {
  555. printf("Failed to initialize WPS Registrar\n");
  556. os_free(wps->network_key);
  557. os_free(wps);
  558. return -1;
  559. }
  560. #ifdef CONFIG_WPS_UPNP
  561. wps->friendly_name = hapd->conf->friendly_name;
  562. wps->manufacturer_url = hapd->conf->manufacturer_url;
  563. wps->model_description = hapd->conf->model_description;
  564. wps->model_url = hapd->conf->model_url;
  565. wps->upc = hapd->conf->upc;
  566. if (hostapd_wps_upnp_init(hapd, wps) < 0) {
  567. wpa_printf(MSG_ERROR, "Failed to initialize WPS UPnP");
  568. wps_registrar_deinit(wps->registrar);
  569. os_free(wps->network_key);
  570. os_free(wps);
  571. return -1;
  572. }
  573. #endif /* CONFIG_WPS_UPNP */
  574. hostapd_register_probereq_cb(hapd, hostapd_wps_probe_req_rx, hapd);
  575. hapd->wps = wps;
  576. return 0;
  577. }
  578. void hostapd_deinit_wps(struct hostapd_data *hapd)
  579. {
  580. if (hapd->wps == NULL)
  581. return;
  582. #ifdef CONFIG_WPS_UPNP
  583. hostapd_wps_upnp_deinit(hapd);
  584. #endif /* CONFIG_WPS_UPNP */
  585. wps_registrar_deinit(hapd->wps->registrar);
  586. os_free(hapd->wps->network_key);
  587. wps_device_data_free(&hapd->wps->dev);
  588. wpabuf_free(hapd->wps->dh_pubkey);
  589. wpabuf_free(hapd->wps->dh_privkey);
  590. wpabuf_free(hapd->wps->oob_conf.pubkey_hash);
  591. wpabuf_free(hapd->wps->oob_conf.dev_password);
  592. wps_free_pending_msgs(hapd->wps->upnp_msgs);
  593. os_free(hapd->wps);
  594. hapd->wps = NULL;
  595. hostapd_wps_clear_ies(hapd);
  596. }
  597. int hostapd_wps_add_pin(struct hostapd_data *hapd, const char *uuid,
  598. const char *pin, int timeout)
  599. {
  600. u8 u[UUID_LEN];
  601. int any = 0;
  602. if (hapd->wps == NULL)
  603. return -1;
  604. if (os_strcmp(uuid, "any") == 0)
  605. any = 1;
  606. else if (uuid_str2bin(uuid, u))
  607. return -1;
  608. return wps_registrar_add_pin(hapd->wps->registrar, any ? NULL : u,
  609. (const u8 *) pin, os_strlen(pin),
  610. timeout);
  611. }
  612. int hostapd_wps_button_pushed(struct hostapd_data *hapd)
  613. {
  614. if (hapd->wps == NULL)
  615. return -1;
  616. return wps_registrar_button_pushed(hapd->wps->registrar);
  617. }
  618. #ifdef CONFIG_WPS_OOB
  619. int hostapd_wps_start_oob(struct hostapd_data *hapd, char *device_type,
  620. char *path, char *method, char *name)
  621. {
  622. struct wps_context *wps = hapd->wps;
  623. struct oob_device_data *oob_dev;
  624. oob_dev = wps_get_oob_device(device_type);
  625. if (oob_dev == NULL)
  626. return -1;
  627. oob_dev->device_path = path;
  628. oob_dev->device_name = name;
  629. wps->oob_conf.oob_method = wps_get_oob_method(method);
  630. if (wps->oob_conf.oob_method == OOB_METHOD_DEV_PWD_R) {
  631. /*
  632. * Use pre-configured DH keys in order to be able to write the
  633. * key hash into the OOB file.
  634. */
  635. wpabuf_free(wps->dh_pubkey);
  636. wpabuf_free(wps->dh_privkey);
  637. wps->dh_privkey = NULL;
  638. wps->dh_pubkey = dh_init(dh_groups_get(WPS_DH_GROUP),
  639. &wps->dh_privkey);
  640. wps->dh_pubkey = wpabuf_zeropad(wps->dh_pubkey, 192);
  641. if (wps->dh_pubkey == NULL) {
  642. wpa_printf(MSG_ERROR, "WPS: Failed to initialize "
  643. "Diffie-Hellman handshake");
  644. return -1;
  645. }
  646. }
  647. if (wps_process_oob(wps, oob_dev, 1) < 0)
  648. goto error;
  649. if ((wps->oob_conf.oob_method == OOB_METHOD_DEV_PWD_E ||
  650. wps->oob_conf.oob_method == OOB_METHOD_DEV_PWD_R) &&
  651. hostapd_wps_add_pin(hapd, "any",
  652. wpabuf_head(wps->oob_conf.dev_password), 0) <
  653. 0)
  654. goto error;
  655. return 0;
  656. error:
  657. wpabuf_free(wps->dh_pubkey);
  658. wps->dh_pubkey = NULL;
  659. wpabuf_free(wps->dh_privkey);
  660. wps->dh_privkey = NULL;
  661. return -1;
  662. }
  663. #endif /* CONFIG_WPS_OOB */
  664. static void hostapd_wps_probe_req_rx(void *ctx, const u8 *addr,
  665. const u8 *ie, size_t ie_len)
  666. {
  667. struct hostapd_data *hapd = ctx;
  668. struct wpabuf *wps_ie;
  669. if (hapd->wps == NULL)
  670. return;
  671. wps_ie = ieee802_11_vendor_ie_concat(ie, ie_len, WPS_DEV_OUI_WFA);
  672. if (wps_ie == NULL)
  673. return;
  674. if (wpabuf_len(wps_ie) > 0) {
  675. wps_registrar_probe_req_rx(hapd->wps->registrar, addr, wps_ie);
  676. #ifdef CONFIG_WPS_UPNP
  677. /* FIX: what exactly should be included in the WLANEvent?
  678. * WPS attributes? Full ProbeReq frame? */
  679. upnp_wps_device_send_wlan_event(hapd->wps_upnp, addr,
  680. UPNP_WPS_WLANEVENT_TYPE_PROBE,
  681. wps_ie);
  682. #endif /* CONFIG_WPS_UPNP */
  683. }
  684. wpabuf_free(wps_ie);
  685. }
  686. #ifdef CONFIG_WPS_UPNP
  687. static struct wpabuf *
  688. hostapd_rx_req_get_device_info(void *priv, struct upnp_wps_peer *peer)
  689. {
  690. struct hostapd_data *hapd = priv;
  691. struct wps_config cfg;
  692. struct wps_data *wps;
  693. enum wsc_op_code op_code;
  694. struct wpabuf *m1;
  695. /*
  696. * Request for DeviceInfo, i.e., M1 TLVs. This is a start of WPS
  697. * registration over UPnP with the AP acting as an Enrollee. It should
  698. * be noted that this is frequently used just to get the device data,
  699. * i.e., there may not be any intent to actually complete the
  700. * registration.
  701. */
  702. if (peer->wps)
  703. wps_deinit(peer->wps);
  704. os_memset(&cfg, 0, sizeof(cfg));
  705. cfg.wps = hapd->wps;
  706. cfg.pin = (u8 *) hapd->conf->ap_pin;
  707. cfg.pin_len = os_strlen(hapd->conf->ap_pin);
  708. wps = wps_init(&cfg);
  709. if (wps == NULL)
  710. return NULL;
  711. m1 = wps_get_msg(wps, &op_code);
  712. if (m1 == NULL) {
  713. wps_deinit(wps);
  714. return NULL;
  715. }
  716. peer->wps = wps;
  717. return m1;
  718. }
  719. static struct wpabuf *
  720. hostapd_rx_req_put_message(void *priv, struct upnp_wps_peer *peer,
  721. const struct wpabuf *msg)
  722. {
  723. enum wps_process_res res;
  724. enum wsc_op_code op_code;
  725. /* PutMessage: msg = InMessage, return OutMessage */
  726. res = wps_process_msg(peer->wps, WSC_UPnP, msg);
  727. if (res == WPS_FAILURE)
  728. return NULL;
  729. return wps_get_msg(peer->wps, &op_code);
  730. }
  731. static int hostapd_rx_req_put_wlan_response(
  732. void *priv, enum upnp_wps_wlanevent_type ev_type,
  733. const u8 *mac_addr, const struct wpabuf *msg,
  734. enum wps_msg_type msg_type)
  735. {
  736. struct hostapd_data *hapd = priv;
  737. struct sta_info *sta;
  738. struct upnp_pending_message *p;
  739. wpa_printf(MSG_DEBUG, "WPS UPnP: PutWLANResponse ev_type=%d mac_addr="
  740. MACSTR, ev_type, MAC2STR(mac_addr));
  741. wpa_hexdump(MSG_MSGDUMP, "WPS UPnP: PutWLANResponse NewMessage",
  742. wpabuf_head(msg), wpabuf_len(msg));
  743. if (ev_type != UPNP_WPS_WLANEVENT_TYPE_EAP) {
  744. wpa_printf(MSG_DEBUG, "WPS UPnP: Ignored unexpected "
  745. "PutWLANResponse WLANEventType %d", ev_type);
  746. return -1;
  747. }
  748. /*
  749. * EAP response to ongoing to WPS Registration. Send it to EAP-WSC
  750. * server implementation for delivery to the peer.
  751. */
  752. sta = ap_get_sta(hapd, mac_addr);
  753. if (!sta) {
  754. /*
  755. * Workaround - Intel wsccmd uses bogus NewWLANEventMAC:
  756. * Pick STA that is in an ongoing WPS registration without
  757. * checking the MAC address.
  758. */
  759. wpa_printf(MSG_DEBUG, "WPS UPnP: No matching STA found based "
  760. "on NewWLANEventMAC; try wildcard match");
  761. for (sta = hapd->sta_list; sta; sta = sta->next) {
  762. if (sta->eapol_sm && (sta->flags & WLAN_STA_WPS))
  763. break;
  764. }
  765. }
  766. if (!sta) {
  767. wpa_printf(MSG_DEBUG, "WPS UPnP: No matching STA found");
  768. return 0;
  769. }
  770. p = os_zalloc(sizeof(*p));
  771. if (p == NULL)
  772. return -1;
  773. os_memcpy(p->addr, sta->addr, ETH_ALEN);
  774. p->msg = wpabuf_dup(msg);
  775. p->type = msg_type;
  776. p->next = hapd->wps->upnp_msgs;
  777. hapd->wps->upnp_msgs = p;
  778. return eapol_auth_eap_pending_cb(sta->eapol_sm, sta->eapol_sm->eap);
  779. }
  780. static int hostapd_rx_req_set_selected_registrar(void *priv,
  781. const struct wpabuf *msg)
  782. {
  783. struct hostapd_data *hapd = priv;
  784. return wps_registrar_set_selected_registrar(hapd->wps->registrar, msg);
  785. }
  786. static int hostapd_wps_upnp_init(struct hostapd_data *hapd,
  787. struct wps_context *wps)
  788. {
  789. struct upnp_wps_device_ctx *ctx;
  790. if (!hapd->conf->upnp_iface)
  791. return 0;
  792. ctx = os_zalloc(sizeof(*ctx));
  793. if (ctx == NULL)
  794. return -1;
  795. ctx->rx_req_get_device_info = hostapd_rx_req_get_device_info;
  796. ctx->rx_req_put_message = hostapd_rx_req_put_message;
  797. ctx->rx_req_put_wlan_response = hostapd_rx_req_put_wlan_response;
  798. ctx->rx_req_set_selected_registrar =
  799. hostapd_rx_req_set_selected_registrar;
  800. hapd->wps_upnp = upnp_wps_device_init(ctx, wps, hapd);
  801. if (hapd->wps_upnp == NULL) {
  802. os_free(ctx);
  803. return -1;
  804. }
  805. wps->wps_upnp = hapd->wps_upnp;
  806. if (upnp_wps_device_start(hapd->wps_upnp, hapd->conf->upnp_iface)) {
  807. upnp_wps_device_deinit(hapd->wps_upnp);
  808. hapd->wps_upnp = NULL;
  809. return -1;
  810. }
  811. return 0;
  812. }
  813. static void hostapd_wps_upnp_deinit(struct hostapd_data *hapd)
  814. {
  815. upnp_wps_device_deinit(hapd->wps_upnp);
  816. }
  817. #endif /* CONFIG_WPS_UPNP */
  818. int hostapd_wps_get_mib_sta(struct hostapd_data *hapd, const u8 *addr,
  819. char *buf, size_t buflen)
  820. {
  821. return wps_registrar_get_info(hapd->wps->registrar, addr, buf, buflen);
  822. }