wps_hostapd.c 24 KB

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