wps_hostapd.c 26 KB

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