wps_hostapd.c 26 KB

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