ap.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830
  1. /*
  2. * WPA Supplicant - Basic AP mode support routines
  3. * Copyright (c) 2003-2009, Jouni Malinen <j@w1.fi>
  4. * Copyright (c) 2009, Atheros Communications
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * Alternatively, this software may be distributed under the terms of BSD
  11. * license.
  12. *
  13. * See README and COPYING for more details.
  14. */
  15. #include "utils/includes.h"
  16. #include "utils/common.h"
  17. #include "utils/eloop.h"
  18. #include "common/ieee802_11_defs.h"
  19. #include "common/wpa_ctrl.h"
  20. #include "ap/hostapd.h"
  21. #include "ap/ap_config.h"
  22. #ifdef NEED_AP_MLME
  23. #include "ap/ieee802_11.h"
  24. #endif /* NEED_AP_MLME */
  25. #include "ap/beacon.h"
  26. #include "ap/ieee802_1x.h"
  27. #include "ap/wps_hostapd.h"
  28. #include "ap/ctrl_iface_ap.h"
  29. #include "eap_common/eap_defs.h"
  30. #include "eap_server/eap_methods.h"
  31. #include "eap_common/eap_wsc_common.h"
  32. #include "wps/wps.h"
  33. #include "common/ieee802_11_defs.h"
  34. #include "config_ssid.h"
  35. #include "config.h"
  36. #include "wpa_supplicant_i.h"
  37. #include "driver_i.h"
  38. #include "p2p_supplicant.h"
  39. #include "ap.h"
  40. #include "ap/sta_info.h"
  41. static void wpas_wps_ap_pin_timeout(void *eloop_data, void *user_ctx);
  42. static int wpa_supplicant_conf_ap(struct wpa_supplicant *wpa_s,
  43. struct wpa_ssid *ssid,
  44. struct hostapd_config *conf)
  45. {
  46. struct hostapd_bss_config *bss = &conf->bss[0];
  47. int pairwise;
  48. conf->driver = wpa_s->driver;
  49. os_strlcpy(bss->iface, wpa_s->ifname, sizeof(bss->iface));
  50. if (ssid->frequency == 0) {
  51. /* default channel 11 */
  52. conf->hw_mode = HOSTAPD_MODE_IEEE80211G;
  53. conf->channel = 11;
  54. } else if (ssid->frequency >= 2412 && ssid->frequency <= 2472) {
  55. conf->hw_mode = HOSTAPD_MODE_IEEE80211G;
  56. conf->channel = (ssid->frequency - 2407) / 5;
  57. } else if ((ssid->frequency >= 5180 && ssid->frequency <= 5240) ||
  58. (ssid->frequency >= 5745 && ssid->frequency <= 5825)) {
  59. conf->hw_mode = HOSTAPD_MODE_IEEE80211A;
  60. conf->channel = (ssid->frequency - 5000) / 5;
  61. } else {
  62. wpa_printf(MSG_ERROR, "Unsupported AP mode frequency: %d MHz",
  63. ssid->frequency);
  64. return -1;
  65. }
  66. /* TODO: enable HT if driver supports it;
  67. * drop to 11b if driver does not support 11g */
  68. #ifdef CONFIG_P2P
  69. if (conf->hw_mode == HOSTAPD_MODE_IEEE80211G) {
  70. /* Remove 802.11b rates from supported and basic rate sets */
  71. int *list = os_malloc(4 * sizeof(int));
  72. if (list) {
  73. list[0] = 60;
  74. list[1] = 120;
  75. list[2] = 240;
  76. list[3] = -1;
  77. }
  78. conf->basic_rates = list;
  79. list = os_malloc(9 * sizeof(int));
  80. if (list) {
  81. list[0] = 60;
  82. list[1] = 90;
  83. list[2] = 120;
  84. list[3] = 180;
  85. list[4] = 240;
  86. list[5] = 360;
  87. list[6] = 480;
  88. list[7] = 540;
  89. list[8] = -1;
  90. }
  91. conf->supported_rates = list;
  92. }
  93. #endif /* CONFIG_P2P */
  94. if (ssid->ssid_len == 0) {
  95. wpa_printf(MSG_ERROR, "No SSID configured for AP mode");
  96. return -1;
  97. }
  98. os_memcpy(bss->ssid.ssid, ssid->ssid, ssid->ssid_len);
  99. bss->ssid.ssid[ssid->ssid_len] = '\0';
  100. bss->ssid.ssid_len = ssid->ssid_len;
  101. bss->ssid.ssid_set = 1;
  102. if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt))
  103. bss->wpa = ssid->proto;
  104. bss->wpa_key_mgmt = ssid->key_mgmt;
  105. bss->wpa_pairwise = ssid->pairwise_cipher;
  106. if (ssid->passphrase) {
  107. bss->ssid.wpa_passphrase = os_strdup(ssid->passphrase);
  108. } else if (ssid->psk_set) {
  109. os_free(bss->ssid.wpa_psk);
  110. bss->ssid.wpa_psk = os_zalloc(sizeof(struct hostapd_wpa_psk));
  111. if (bss->ssid.wpa_psk == NULL)
  112. return -1;
  113. os_memcpy(bss->ssid.wpa_psk->psk, ssid->psk, PMK_LEN);
  114. bss->ssid.wpa_psk->group = 1;
  115. }
  116. /* Select group cipher based on the enabled pairwise cipher suites */
  117. pairwise = 0;
  118. if (bss->wpa & 1)
  119. pairwise |= bss->wpa_pairwise;
  120. if (bss->wpa & 2) {
  121. if (bss->rsn_pairwise == 0)
  122. bss->rsn_pairwise = bss->wpa_pairwise;
  123. pairwise |= bss->rsn_pairwise;
  124. }
  125. if (pairwise & WPA_CIPHER_TKIP)
  126. bss->wpa_group = WPA_CIPHER_TKIP;
  127. else
  128. bss->wpa_group = WPA_CIPHER_CCMP;
  129. if (bss->wpa && bss->ieee802_1x)
  130. bss->ssid.security_policy = SECURITY_WPA;
  131. else if (bss->wpa)
  132. bss->ssid.security_policy = SECURITY_WPA_PSK;
  133. else if (bss->ieee802_1x) {
  134. bss->ssid.security_policy = SECURITY_IEEE_802_1X;
  135. bss->ssid.wep.default_len = bss->default_wep_key_len;
  136. } else if (bss->ssid.wep.keys_set)
  137. bss->ssid.security_policy = SECURITY_STATIC_WEP;
  138. else
  139. bss->ssid.security_policy = SECURITY_PLAINTEXT;
  140. #ifdef CONFIG_WPS
  141. /*
  142. * Enable WPS by default, but require user interaction to actually use
  143. * it. Only the internal Registrar is supported.
  144. */
  145. bss->eap_server = 1;
  146. bss->wps_state = 2;
  147. bss->ap_setup_locked = 1;
  148. if (wpa_s->conf->config_methods)
  149. bss->config_methods = os_strdup(wpa_s->conf->config_methods);
  150. if (wpa_s->conf->device_type)
  151. bss->device_type = os_strdup(wpa_s->conf->device_type);
  152. if (wpa_s->conf->device_name) {
  153. bss->device_name = os_strdup(wpa_s->conf->device_name);
  154. bss->friendly_name = os_strdup(wpa_s->conf->device_name);
  155. }
  156. if (wpa_s->conf->manufacturer)
  157. bss->manufacturer = os_strdup(wpa_s->conf->manufacturer);
  158. if (wpa_s->conf->model_name)
  159. bss->model_name = os_strdup(wpa_s->conf->model_name);
  160. if (wpa_s->conf->model_number)
  161. bss->model_number = os_strdup(wpa_s->conf->model_number);
  162. if (wpa_s->conf->serial_number)
  163. bss->serial_number = os_strdup(wpa_s->conf->serial_number);
  164. os_memcpy(bss->uuid, wpa_s->conf->uuid, WPS_UUID_LEN);
  165. os_memcpy(bss->os_version, wpa_s->conf->os_version, 4);
  166. #endif /* CONFIG_WPS */
  167. if (wpa_s->max_stations &&
  168. wpa_s->max_stations < wpa_s->conf->max_num_sta)
  169. bss->max_num_sta = wpa_s->max_stations;
  170. else
  171. bss->max_num_sta = wpa_s->conf->max_num_sta;
  172. return 0;
  173. }
  174. static void ap_public_action_rx(void *ctx, const u8 *buf, size_t len, int freq)
  175. {
  176. #ifdef CONFIG_P2P
  177. struct wpa_supplicant *wpa_s = ctx;
  178. const struct ieee80211_mgmt *mgmt;
  179. size_t hdr_len;
  180. mgmt = (const struct ieee80211_mgmt *) buf;
  181. hdr_len = (const u8 *) &mgmt->u.action.u.vs_public_action.action - buf;
  182. if (hdr_len > len)
  183. return;
  184. wpas_p2p_rx_action(wpa_s, mgmt->da, mgmt->sa, mgmt->bssid,
  185. mgmt->u.action.category,
  186. &mgmt->u.action.u.vs_public_action.action,
  187. len - hdr_len, freq);
  188. #endif /* CONFIG_P2P */
  189. }
  190. static void ap_wps_event_cb(void *ctx, enum wps_event event,
  191. union wps_event_data *data)
  192. {
  193. struct wpa_supplicant *wpa_s = ctx;
  194. if (event == WPS_EV_FAIL && wpa_s->parent && wpa_s->parent != wpa_s) {
  195. struct wps_event_fail *fail = &data->fail;
  196. /*
  197. * src/ap/wps_hostapd.c has already sent this on the main
  198. * interface, so only send on the parent interface here if
  199. * needed.
  200. */
  201. wpa_msg(wpa_s->parent, MSG_INFO, WPS_EVENT_FAIL
  202. "msg=%d config_error=%d",
  203. fail->msg, fail->config_error);
  204. }
  205. }
  206. static int ap_vendor_action_rx(void *ctx, const u8 *buf, size_t len, int freq)
  207. {
  208. #ifdef CONFIG_P2P
  209. struct wpa_supplicant *wpa_s = ctx;
  210. const struct ieee80211_mgmt *mgmt;
  211. size_t hdr_len;
  212. mgmt = (const struct ieee80211_mgmt *) buf;
  213. hdr_len = (const u8 *) &mgmt->u.action.u.vs_public_action.action - buf;
  214. if (hdr_len > len)
  215. return -1;
  216. wpas_p2p_rx_action(wpa_s, mgmt->da, mgmt->sa, mgmt->bssid,
  217. mgmt->u.action.category,
  218. &mgmt->u.action.u.vs_public_action.action,
  219. len - hdr_len, freq);
  220. #endif /* CONFIG_P2P */
  221. return 0;
  222. }
  223. static int ap_probe_req_rx(void *ctx, const u8 *addr, const u8 *ie,
  224. size_t ie_len)
  225. {
  226. #ifdef CONFIG_P2P
  227. struct wpa_supplicant *wpa_s = ctx;
  228. return wpas_p2p_probe_req_rx(wpa_s, addr, ie, ie_len);
  229. #else /* CONFIG_P2P */
  230. return 0;
  231. #endif /* CONFIG_P2P */
  232. }
  233. static void ap_wps_reg_success_cb(void *ctx, const u8 *mac_addr,
  234. const u8 *uuid_e)
  235. {
  236. #ifdef CONFIG_P2P
  237. struct wpa_supplicant *wpa_s = ctx;
  238. wpas_p2p_wps_success(wpa_s, mac_addr, 1);
  239. #endif /* CONFIG_P2P */
  240. }
  241. int wpa_supplicant_create_ap(struct wpa_supplicant *wpa_s,
  242. struct wpa_ssid *ssid)
  243. {
  244. struct wpa_driver_associate_params params;
  245. struct hostapd_iface *hapd_iface;
  246. struct hostapd_config *conf;
  247. size_t i;
  248. if (ssid->ssid == NULL || ssid->ssid_len == 0) {
  249. wpa_printf(MSG_ERROR, "No SSID configured for AP mode");
  250. return -1;
  251. }
  252. wpa_supplicant_ap_deinit(wpa_s);
  253. wpa_printf(MSG_DEBUG, "Setting up AP (SSID='%s')",
  254. wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
  255. os_memset(&params, 0, sizeof(params));
  256. params.ssid = ssid->ssid;
  257. params.ssid_len = ssid->ssid_len;
  258. switch (ssid->mode) {
  259. case WPAS_MODE_INFRA:
  260. params.mode = IEEE80211_MODE_INFRA;
  261. break;
  262. case WPAS_MODE_IBSS:
  263. params.mode = IEEE80211_MODE_IBSS;
  264. break;
  265. case WPAS_MODE_AP:
  266. case WPAS_MODE_P2P_GO:
  267. case WPAS_MODE_P2P_GROUP_FORMATION:
  268. params.mode = IEEE80211_MODE_AP;
  269. break;
  270. }
  271. params.freq = ssid->frequency;
  272. if (ssid->key_mgmt & WPA_KEY_MGMT_PSK)
  273. wpa_s->key_mgmt = WPA_KEY_MGMT_PSK;
  274. else
  275. wpa_s->key_mgmt = WPA_KEY_MGMT_NONE;
  276. params.key_mgmt_suite = key_mgmt2driver(wpa_s->key_mgmt);
  277. if (ssid->pairwise_cipher & WPA_CIPHER_CCMP)
  278. wpa_s->pairwise_cipher = WPA_CIPHER_CCMP;
  279. else if (ssid->pairwise_cipher & WPA_CIPHER_TKIP)
  280. wpa_s->pairwise_cipher = WPA_CIPHER_TKIP;
  281. else if (ssid->pairwise_cipher & WPA_CIPHER_NONE)
  282. wpa_s->pairwise_cipher = WPA_CIPHER_NONE;
  283. else {
  284. wpa_printf(MSG_WARNING, "WPA: Failed to select pairwise "
  285. "cipher.");
  286. return -1;
  287. }
  288. params.pairwise_suite = cipher_suite2driver(wpa_s->pairwise_cipher);
  289. params.group_suite = params.pairwise_suite;
  290. #ifdef CONFIG_P2P
  291. if (ssid->mode == WPAS_MODE_P2P_GO ||
  292. ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION)
  293. params.p2p = 1;
  294. wpa_drv_set_intra_bss(wpa_s, wpa_s->conf->p2p_intra_bss);
  295. #endif /* CONFIG_P2P */
  296. if (wpa_s->parent->set_ap_uapsd)
  297. params.uapsd = wpa_s->parent->ap_uapsd;
  298. else
  299. params.uapsd = -1;
  300. if (wpa_drv_associate(wpa_s, &params) < 0) {
  301. wpa_msg(wpa_s, MSG_INFO, "Failed to start AP functionality");
  302. return -1;
  303. }
  304. wpa_s->ap_iface = hapd_iface = os_zalloc(sizeof(*wpa_s->ap_iface));
  305. if (hapd_iface == NULL)
  306. return -1;
  307. hapd_iface->owner = wpa_s;
  308. wpa_s->ap_iface->conf = conf = hostapd_config_defaults();
  309. if (conf == NULL) {
  310. wpa_supplicant_ap_deinit(wpa_s);
  311. return -1;
  312. }
  313. if (wpa_supplicant_conf_ap(wpa_s, ssid, conf)) {
  314. wpa_printf(MSG_ERROR, "Failed to create AP configuration");
  315. wpa_supplicant_ap_deinit(wpa_s);
  316. return -1;
  317. }
  318. #ifdef CONFIG_P2P
  319. if (ssid->mode == WPAS_MODE_P2P_GO)
  320. conf->bss[0].p2p = P2P_ENABLED | P2P_GROUP_OWNER;
  321. else if (ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION)
  322. conf->bss[0].p2p = P2P_ENABLED | P2P_GROUP_OWNER |
  323. P2P_GROUP_FORMATION;
  324. #endif /* CONFIG_P2P */
  325. hapd_iface->num_bss = conf->num_bss;
  326. hapd_iface->bss = os_zalloc(conf->num_bss *
  327. sizeof(struct hostapd_data *));
  328. if (hapd_iface->bss == NULL) {
  329. wpa_supplicant_ap_deinit(wpa_s);
  330. return -1;
  331. }
  332. for (i = 0; i < conf->num_bss; i++) {
  333. hapd_iface->bss[i] =
  334. hostapd_alloc_bss_data(hapd_iface, conf,
  335. &conf->bss[i]);
  336. if (hapd_iface->bss[i] == NULL) {
  337. wpa_supplicant_ap_deinit(wpa_s);
  338. return -1;
  339. }
  340. hapd_iface->bss[i]->msg_ctx = wpa_s;
  341. hapd_iface->bss[i]->public_action_cb = ap_public_action_rx;
  342. hapd_iface->bss[i]->public_action_cb_ctx = wpa_s;
  343. hapd_iface->bss[i]->vendor_action_cb = ap_vendor_action_rx;
  344. hapd_iface->bss[i]->vendor_action_cb_ctx = wpa_s;
  345. hostapd_register_probereq_cb(hapd_iface->bss[i],
  346. ap_probe_req_rx, wpa_s);
  347. hapd_iface->bss[i]->wps_reg_success_cb = ap_wps_reg_success_cb;
  348. hapd_iface->bss[i]->wps_reg_success_cb_ctx = wpa_s;
  349. hapd_iface->bss[i]->wps_event_cb = ap_wps_event_cb;
  350. hapd_iface->bss[i]->wps_event_cb_ctx = wpa_s;
  351. #ifdef CONFIG_P2P
  352. hapd_iface->bss[i]->p2p = wpa_s->global->p2p;
  353. hapd_iface->bss[i]->p2p_group = wpas_p2p_group_init(
  354. wpa_s, ssid->p2p_persistent_group,
  355. ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION);
  356. #endif /* CONFIG_P2P */
  357. }
  358. os_memcpy(hapd_iface->bss[0]->own_addr, wpa_s->own_addr, ETH_ALEN);
  359. hapd_iface->bss[0]->driver = wpa_s->driver;
  360. hapd_iface->bss[0]->drv_priv = wpa_s->drv_priv;
  361. if (hostapd_setup_interface(wpa_s->ap_iface)) {
  362. wpa_printf(MSG_ERROR, "Failed to initialize AP interface");
  363. wpa_supplicant_ap_deinit(wpa_s);
  364. return -1;
  365. }
  366. wpa_s->current_ssid = ssid;
  367. os_memcpy(wpa_s->bssid, wpa_s->own_addr, ETH_ALEN);
  368. wpa_s->assoc_freq = ssid->frequency;
  369. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  370. if (wpa_s->ap_configured_cb)
  371. wpa_s->ap_configured_cb(wpa_s->ap_configured_cb_ctx,
  372. wpa_s->ap_configured_cb_data);
  373. return 0;
  374. }
  375. void wpa_supplicant_ap_deinit(struct wpa_supplicant *wpa_s)
  376. {
  377. eloop_cancel_timeout(wpas_wps_ap_pin_timeout, wpa_s, NULL);
  378. if (wpa_s->ap_iface == NULL)
  379. return;
  380. wpa_s->current_ssid = NULL;
  381. #ifdef CONFIG_P2P
  382. if (wpa_s->ap_iface->bss)
  383. wpa_s->ap_iface->bss[0]->p2p_group = NULL;
  384. wpas_p2p_group_deinit(wpa_s);
  385. #endif /* CONFIG_P2P */
  386. hostapd_interface_deinit(wpa_s->ap_iface);
  387. hostapd_interface_free(wpa_s->ap_iface);
  388. wpa_s->ap_iface = NULL;
  389. wpa_drv_deinit_ap(wpa_s);
  390. }
  391. void ap_tx_status(void *ctx, const u8 *addr,
  392. const u8 *buf, size_t len, int ack)
  393. {
  394. #ifdef NEED_AP_MLME
  395. struct wpa_supplicant *wpa_s = ctx;
  396. hostapd_tx_status(wpa_s->ap_iface->bss[0], addr, buf, len, ack);
  397. #endif /* NEED_AP_MLME */
  398. }
  399. void ap_rx_from_unknown_sta(void *ctx, const u8 *frame, size_t len)
  400. {
  401. #ifdef NEED_AP_MLME
  402. struct wpa_supplicant *wpa_s = ctx;
  403. const struct ieee80211_hdr *hdr =
  404. (const struct ieee80211_hdr *) frame;
  405. u16 fc = le_to_host16(hdr->frame_control);
  406. ieee802_11_rx_from_unknown(wpa_s->ap_iface->bss[0], hdr->addr2,
  407. (fc & (WLAN_FC_TODS | WLAN_FC_FROMDS)) ==
  408. (WLAN_FC_TODS | WLAN_FC_FROMDS));
  409. #endif /* NEED_AP_MLME */
  410. }
  411. void ap_mgmt_rx(void *ctx, struct rx_mgmt *rx_mgmt)
  412. {
  413. #ifdef NEED_AP_MLME
  414. struct wpa_supplicant *wpa_s = ctx;
  415. struct hostapd_frame_info fi;
  416. os_memset(&fi, 0, sizeof(fi));
  417. fi.datarate = rx_mgmt->datarate;
  418. fi.ssi_signal = rx_mgmt->ssi_signal;
  419. ieee802_11_mgmt(wpa_s->ap_iface->bss[0], rx_mgmt->frame,
  420. rx_mgmt->frame_len, &fi);
  421. #endif /* NEED_AP_MLME */
  422. }
  423. void ap_mgmt_tx_cb(void *ctx, const u8 *buf, size_t len, u16 stype, int ok)
  424. {
  425. #ifdef NEED_AP_MLME
  426. struct wpa_supplicant *wpa_s = ctx;
  427. ieee802_11_mgmt_cb(wpa_s->ap_iface->bss[0], buf, len, stype, ok);
  428. #endif /* NEED_AP_MLME */
  429. }
  430. void wpa_supplicant_ap_rx_eapol(struct wpa_supplicant *wpa_s,
  431. const u8 *src_addr, const u8 *buf, size_t len)
  432. {
  433. ieee802_1x_receive(wpa_s->ap_iface->bss[0], src_addr, buf, len);
  434. }
  435. #ifdef CONFIG_WPS
  436. int wpa_supplicant_ap_wps_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid)
  437. {
  438. if (!wpa_s->ap_iface)
  439. return -1;
  440. return hostapd_wps_button_pushed(wpa_s->ap_iface->bss[0]);
  441. }
  442. static int wpa_supplicant_ap_wps_sta_cancel(struct hostapd_data *hapd,
  443. struct sta_info *sta, void *ctx)
  444. {
  445. if (sta && (sta->flags & WLAN_STA_WPS)) {
  446. ap_sta_deauthenticate(hapd, sta,
  447. WLAN_REASON_PREV_AUTH_NOT_VALID);
  448. wpa_printf(MSG_DEBUG, "WPS: %s: Deauth sta=" MACSTR,
  449. __func__, MAC2STR(sta->addr));
  450. return 1;
  451. }
  452. return 0;
  453. }
  454. int wpa_supplicant_ap_wps_cancel(struct wpa_supplicant *wpa_s)
  455. {
  456. struct wps_registrar *reg;
  457. int reg_sel = 0, wps_sta = 0;
  458. if (!wpa_s->ap_iface || !wpa_s->ap_iface->bss[0]->wps)
  459. return -1;
  460. reg = wpa_s->ap_iface->bss[0]->wps->registrar;
  461. reg_sel = wps_registrar_wps_cancel(reg);
  462. wps_sta = ap_for_each_sta(wpa_s->ap_iface->bss[0],
  463. wpa_supplicant_ap_wps_sta_cancel, NULL);
  464. if (!reg_sel && !wps_sta) {
  465. wpa_printf(MSG_DEBUG, "No WPS operation in progress at this "
  466. "time");
  467. return -1;
  468. }
  469. /*
  470. * There are 2 cases to return wps cancel as success:
  471. * 1. When wps cancel was initiated but no connection has been
  472. * established with client yet.
  473. * 2. Client is in the middle of exchanging WPS messages.
  474. */
  475. return 0;
  476. }
  477. int wpa_supplicant_ap_wps_pin(struct wpa_supplicant *wpa_s, const u8 *bssid,
  478. const char *pin, char *buf, size_t buflen)
  479. {
  480. int ret, ret_len = 0;
  481. if (!wpa_s->ap_iface)
  482. return -1;
  483. if (pin == NULL) {
  484. unsigned int rpin = wps_generate_pin();
  485. ret_len = os_snprintf(buf, buflen, "%d", rpin);
  486. pin = buf;
  487. } else
  488. ret_len = os_snprintf(buf, buflen, "%s", pin);
  489. ret = hostapd_wps_add_pin(wpa_s->ap_iface->bss[0], bssid, "any", pin,
  490. 0);
  491. if (ret)
  492. return -1;
  493. return ret_len;
  494. }
  495. static void wpas_wps_ap_pin_timeout(void *eloop_data, void *user_ctx)
  496. {
  497. struct wpa_supplicant *wpa_s = eloop_data;
  498. wpa_printf(MSG_DEBUG, "WPS: AP PIN timed out");
  499. wpas_wps_ap_pin_disable(wpa_s);
  500. }
  501. static void wpas_wps_ap_pin_enable(struct wpa_supplicant *wpa_s, int timeout)
  502. {
  503. struct hostapd_data *hapd;
  504. if (wpa_s->ap_iface == NULL)
  505. return;
  506. hapd = wpa_s->ap_iface->bss[0];
  507. wpa_printf(MSG_DEBUG, "WPS: Enabling AP PIN (timeout=%d)", timeout);
  508. hapd->ap_pin_failures = 0;
  509. eloop_cancel_timeout(wpas_wps_ap_pin_timeout, wpa_s, NULL);
  510. if (timeout > 0)
  511. eloop_register_timeout(timeout, 0,
  512. wpas_wps_ap_pin_timeout, wpa_s, NULL);
  513. }
  514. void wpas_wps_ap_pin_disable(struct wpa_supplicant *wpa_s)
  515. {
  516. struct hostapd_data *hapd;
  517. if (wpa_s->ap_iface == NULL)
  518. return;
  519. wpa_printf(MSG_DEBUG, "WPS: Disabling AP PIN");
  520. hapd = wpa_s->ap_iface->bss[0];
  521. os_free(hapd->conf->ap_pin);
  522. hapd->conf->ap_pin = NULL;
  523. eloop_cancel_timeout(wpas_wps_ap_pin_timeout, wpa_s, NULL);
  524. }
  525. const char * wpas_wps_ap_pin_random(struct wpa_supplicant *wpa_s, int timeout)
  526. {
  527. struct hostapd_data *hapd;
  528. unsigned int pin;
  529. char pin_txt[9];
  530. if (wpa_s->ap_iface == NULL)
  531. return NULL;
  532. hapd = wpa_s->ap_iface->bss[0];
  533. pin = wps_generate_pin();
  534. os_snprintf(pin_txt, sizeof(pin_txt), "%u", pin);
  535. os_free(hapd->conf->ap_pin);
  536. hapd->conf->ap_pin = os_strdup(pin_txt);
  537. if (hapd->conf->ap_pin == NULL)
  538. return NULL;
  539. wpas_wps_ap_pin_enable(wpa_s, timeout);
  540. return hapd->conf->ap_pin;
  541. }
  542. const char * wpas_wps_ap_pin_get(struct wpa_supplicant *wpa_s)
  543. {
  544. struct hostapd_data *hapd;
  545. if (wpa_s->ap_iface == NULL)
  546. return NULL;
  547. hapd = wpa_s->ap_iface->bss[0];
  548. return hapd->conf->ap_pin;
  549. }
  550. int wpas_wps_ap_pin_set(struct wpa_supplicant *wpa_s, const char *pin,
  551. int timeout)
  552. {
  553. struct hostapd_data *hapd;
  554. char pin_txt[9];
  555. int ret;
  556. if (wpa_s->ap_iface == NULL)
  557. return -1;
  558. hapd = wpa_s->ap_iface->bss[0];
  559. ret = os_snprintf(pin_txt, sizeof(pin_txt), "%s", pin);
  560. if (ret < 0 || ret >= (int) sizeof(pin_txt))
  561. return -1;
  562. os_free(hapd->conf->ap_pin);
  563. hapd->conf->ap_pin = os_strdup(pin_txt);
  564. if (hapd->conf->ap_pin == NULL)
  565. return -1;
  566. wpas_wps_ap_pin_enable(wpa_s, timeout);
  567. return 0;
  568. }
  569. void wpa_supplicant_ap_pwd_auth_fail(struct wpa_supplicant *wpa_s)
  570. {
  571. struct hostapd_data *hapd;
  572. if (wpa_s->ap_iface == NULL)
  573. return;
  574. hapd = wpa_s->ap_iface->bss[0];
  575. /*
  576. * Registrar failed to prove its knowledge of the AP PIN. Disable AP
  577. * PIN if this happens multiple times to slow down brute force attacks.
  578. */
  579. hapd->ap_pin_failures++;
  580. wpa_printf(MSG_DEBUG, "WPS: AP PIN authentication failure number %u",
  581. hapd->ap_pin_failures);
  582. if (hapd->ap_pin_failures < 3)
  583. return;
  584. wpa_printf(MSG_DEBUG, "WPS: Disable AP PIN");
  585. hapd->ap_pin_failures = 0;
  586. os_free(hapd->conf->ap_pin);
  587. hapd->conf->ap_pin = NULL;
  588. }
  589. #endif /* CONFIG_WPS */
  590. #ifdef CONFIG_CTRL_IFACE
  591. int ap_ctrl_iface_sta_first(struct wpa_supplicant *wpa_s,
  592. char *buf, size_t buflen)
  593. {
  594. if (wpa_s->ap_iface == NULL)
  595. return -1;
  596. return hostapd_ctrl_iface_sta_first(wpa_s->ap_iface->bss[0],
  597. buf, buflen);
  598. }
  599. int ap_ctrl_iface_sta(struct wpa_supplicant *wpa_s, const char *txtaddr,
  600. char *buf, size_t buflen)
  601. {
  602. if (wpa_s->ap_iface == NULL)
  603. return -1;
  604. return hostapd_ctrl_iface_sta(wpa_s->ap_iface->bss[0], txtaddr,
  605. buf, buflen);
  606. }
  607. int ap_ctrl_iface_sta_next(struct wpa_supplicant *wpa_s, const char *txtaddr,
  608. char *buf, size_t buflen)
  609. {
  610. if (wpa_s->ap_iface == NULL)
  611. return -1;
  612. return hostapd_ctrl_iface_sta_next(wpa_s->ap_iface->bss[0], txtaddr,
  613. buf, buflen);
  614. }
  615. int ap_ctrl_iface_wpa_get_status(struct wpa_supplicant *wpa_s, char *buf,
  616. size_t buflen, int verbose)
  617. {
  618. char *pos = buf, *end = buf + buflen;
  619. int ret;
  620. struct hostapd_bss_config *conf;
  621. if (wpa_s->ap_iface == NULL)
  622. return -1;
  623. conf = wpa_s->ap_iface->bss[0]->conf;
  624. if (conf->wpa == 0)
  625. return 0;
  626. ret = os_snprintf(pos, end - pos,
  627. "pairwise_cipher=%s\n"
  628. "group_cipher=%s\n"
  629. "key_mgmt=%s\n",
  630. wpa_cipher_txt(conf->rsn_pairwise),
  631. wpa_cipher_txt(conf->wpa_group),
  632. wpa_key_mgmt_txt(conf->wpa_key_mgmt,
  633. conf->wpa));
  634. if (ret < 0 || ret >= end - pos)
  635. return pos - buf;
  636. pos += ret;
  637. return pos - buf;
  638. }
  639. #endif /* CONFIG_CTRL_IFACE */
  640. int wpa_supplicant_ap_update_beacon(struct wpa_supplicant *wpa_s)
  641. {
  642. struct hostapd_iface *iface = wpa_s->ap_iface;
  643. struct wpa_ssid *ssid = wpa_s->current_ssid;
  644. struct hostapd_data *hapd;
  645. if (ssid == NULL || wpa_s->ap_iface == NULL)
  646. return -1;
  647. #ifdef CONFIG_P2P
  648. if (ssid->mode == WPAS_MODE_P2P_GO)
  649. iface->conf->bss[0].p2p = P2P_ENABLED | P2P_GROUP_OWNER;
  650. else if (ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION)
  651. iface->conf->bss[0].p2p = P2P_ENABLED | P2P_GROUP_OWNER |
  652. P2P_GROUP_FORMATION;
  653. #endif /* CONFIG_P2P */
  654. ieee802_11_set_beacons(iface);
  655. hapd = iface->bss[0];
  656. hapd->drv.set_ap_wps_ie(hapd);
  657. return 0;
  658. }
  659. int wpa_supplicant_ap_mac_addr_filter(struct wpa_supplicant *wpa_s,
  660. const u8 *addr)
  661. {
  662. struct hostapd_data *hapd;
  663. struct hostapd_bss_config *conf;
  664. if (!wpa_s->ap_iface)
  665. return -1;
  666. if (addr)
  667. wpa_printf(MSG_DEBUG, "AP: Set MAC address filter: " MACSTR,
  668. MAC2STR(addr));
  669. else
  670. wpa_printf(MSG_DEBUG, "AP: Clear MAC address filter");
  671. hapd = wpa_s->ap_iface->bss[0];
  672. conf = hapd->conf;
  673. os_free(conf->accept_mac);
  674. conf->accept_mac = NULL;
  675. conf->num_accept_mac = 0;
  676. os_free(conf->deny_mac);
  677. conf->deny_mac = NULL;
  678. conf->num_deny_mac = 0;
  679. if (addr == NULL) {
  680. conf->macaddr_acl = ACCEPT_UNLESS_DENIED;
  681. return 0;
  682. }
  683. conf->macaddr_acl = DENY_UNLESS_ACCEPTED;
  684. conf->accept_mac = os_zalloc(sizeof(struct mac_acl_entry));
  685. if (conf->accept_mac == NULL)
  686. return -1;
  687. os_memcpy(conf->accept_mac[0].addr, addr, ETH_ALEN);
  688. conf->num_accept_mac = 1;
  689. return 0;
  690. }