ap.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512
  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 "common/ieee802_11_defs.h"
  18. #include "ap/hostapd.h"
  19. #include "ap/ap_config.h"
  20. #ifdef NEED_AP_MLME
  21. #include "ap/ieee802_11.h"
  22. #endif /* NEED_AP_MLME */
  23. #include "ap/ieee802_1x.h"
  24. #include "ap/wps_hostapd.h"
  25. #include "ap/ctrl_iface_ap.h"
  26. #include "eap_common/eap_defs.h"
  27. #include "eap_server/eap_methods.h"
  28. #include "eap_common/eap_wsc_common.h"
  29. #include "wps/wps.h"
  30. #include "config_ssid.h"
  31. #include "config.h"
  32. #include "wpa_supplicant_i.h"
  33. #include "driver_i.h"
  34. #include "ap.h"
  35. static int wpa_supplicant_conf_ap(struct wpa_supplicant *wpa_s,
  36. struct wpa_ssid *ssid,
  37. struct hostapd_config *conf)
  38. {
  39. struct hostapd_bss_config *bss = &conf->bss[0];
  40. int pairwise;
  41. conf->driver = wpa_s->driver;
  42. os_strlcpy(bss->iface, wpa_s->ifname, sizeof(bss->iface));
  43. if (ssid->frequency == 0) {
  44. /* default channel 11 */
  45. conf->hw_mode = HOSTAPD_MODE_IEEE80211G;
  46. conf->channel = 11;
  47. } else if (ssid->frequency >= 2412 && ssid->frequency <= 2472) {
  48. conf->hw_mode = HOSTAPD_MODE_IEEE80211G;
  49. conf->channel = (ssid->frequency - 2407) / 5;
  50. } else if ((ssid->frequency >= 5180 && ssid->frequency <= 5240) ||
  51. (ssid->frequency >= 5745 && ssid->frequency <= 5825)) {
  52. conf->hw_mode = HOSTAPD_MODE_IEEE80211A;
  53. conf->channel = (ssid->frequency - 5000) / 5;
  54. } else {
  55. wpa_printf(MSG_ERROR, "Unsupported AP mode frequency: %d MHz",
  56. ssid->frequency);
  57. return -1;
  58. }
  59. /* TODO: enable HT if driver supports it;
  60. * drop to 11b if driver does not support 11g */
  61. #ifdef CONFIG_P2P
  62. if (conf->hw_mode == HOSTAPD_MODE_IEEE80211G) {
  63. /* Remove 802.11b rates from supported and basic rate sets */
  64. int *list = os_malloc(4 * sizeof(int));
  65. if (list) {
  66. list[0] = 60;
  67. list[1] = 120;
  68. list[2] = 240;
  69. list[3] = -1;
  70. }
  71. conf->basic_rates = list;
  72. list = os_malloc(9 * sizeof(int));
  73. if (list) {
  74. list[0] = 60;
  75. list[1] = 90;
  76. list[2] = 120;
  77. list[3] = 180;
  78. list[4] = 240;
  79. list[5] = 360;
  80. list[6] = 480;
  81. list[7] = 540;
  82. list[8] = -1;
  83. }
  84. conf->supported_rates = list;
  85. }
  86. #endif /* CONFIG_P2P */
  87. if (ssid->ssid_len == 0) {
  88. wpa_printf(MSG_ERROR, "No SSID configured for AP mode");
  89. return -1;
  90. }
  91. os_memcpy(bss->ssid.ssid, ssid->ssid, ssid->ssid_len);
  92. bss->ssid.ssid[ssid->ssid_len] = '\0';
  93. bss->ssid.ssid_len = ssid->ssid_len;
  94. bss->ssid.ssid_set = 1;
  95. if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt))
  96. bss->wpa = ssid->proto;
  97. bss->wpa_key_mgmt = ssid->key_mgmt;
  98. bss->wpa_pairwise = ssid->pairwise_cipher;
  99. if (ssid->passphrase) {
  100. bss->ssid.wpa_passphrase = os_strdup(ssid->passphrase);
  101. } else if (ssid->psk_set) {
  102. os_free(bss->ssid.wpa_psk);
  103. bss->ssid.wpa_psk = os_zalloc(sizeof(struct hostapd_wpa_psk));
  104. if (bss->ssid.wpa_psk == NULL)
  105. return -1;
  106. os_memcpy(bss->ssid.wpa_psk->psk, ssid->psk, PMK_LEN);
  107. bss->ssid.wpa_psk->group = 1;
  108. }
  109. /* Select group cipher based on the enabled pairwise cipher suites */
  110. pairwise = 0;
  111. if (bss->wpa & 1)
  112. pairwise |= bss->wpa_pairwise;
  113. if (bss->wpa & 2) {
  114. if (bss->rsn_pairwise == 0)
  115. bss->rsn_pairwise = bss->wpa_pairwise;
  116. pairwise |= bss->rsn_pairwise;
  117. }
  118. if (pairwise & WPA_CIPHER_TKIP)
  119. bss->wpa_group = WPA_CIPHER_TKIP;
  120. else
  121. bss->wpa_group = WPA_CIPHER_CCMP;
  122. if (bss->wpa && bss->ieee802_1x)
  123. bss->ssid.security_policy = SECURITY_WPA;
  124. else if (bss->wpa)
  125. bss->ssid.security_policy = SECURITY_WPA_PSK;
  126. else if (bss->ieee802_1x) {
  127. bss->ssid.security_policy = SECURITY_IEEE_802_1X;
  128. bss->ssid.wep.default_len = bss->default_wep_key_len;
  129. } else if (bss->ssid.wep.keys_set)
  130. bss->ssid.security_policy = SECURITY_STATIC_WEP;
  131. else
  132. bss->ssid.security_policy = SECURITY_PLAINTEXT;
  133. #ifdef CONFIG_WPS
  134. /*
  135. * Enable WPS by default, but require user interaction to actually use
  136. * it. Only the internal Registrar is supported.
  137. */
  138. bss->eap_server = 1;
  139. bss->wps_state = 2;
  140. bss->ap_setup_locked = 1;
  141. if (wpa_s->conf->config_methods)
  142. bss->config_methods = os_strdup(wpa_s->conf->config_methods);
  143. if (wpa_s->conf->device_type)
  144. bss->device_type = os_strdup(wpa_s->conf->device_type);
  145. #endif /* CONFIG_WPS */
  146. return 0;
  147. }
  148. static void ap_public_action_rx(void *ctx, const u8 *buf, size_t len, int freq)
  149. {
  150. }
  151. static int ap_probe_req_rx(void *ctx, const u8 *addr, const u8 *ie,
  152. size_t ie_len)
  153. {
  154. return 0;
  155. }
  156. static void ap_wps_reg_success_cb(void *ctx, const u8 *mac_addr,
  157. const u8 *uuid_e)
  158. {
  159. }
  160. int wpa_supplicant_create_ap(struct wpa_supplicant *wpa_s,
  161. struct wpa_ssid *ssid)
  162. {
  163. struct wpa_driver_associate_params params;
  164. struct hostapd_iface *hapd_iface;
  165. struct hostapd_config *conf;
  166. size_t i;
  167. if (ssid->ssid == NULL || ssid->ssid_len == 0) {
  168. wpa_printf(MSG_ERROR, "No SSID configured for AP mode");
  169. return -1;
  170. }
  171. wpa_supplicant_ap_deinit(wpa_s);
  172. wpa_printf(MSG_DEBUG, "Setting up AP (SSID='%s')",
  173. wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
  174. os_memset(&params, 0, sizeof(params));
  175. params.ssid = ssid->ssid;
  176. params.ssid_len = ssid->ssid_len;
  177. switch (ssid->mode) {
  178. case WPAS_MODE_INFRA:
  179. params.mode = IEEE80211_MODE_INFRA;
  180. break;
  181. case WPAS_MODE_IBSS:
  182. params.mode = IEEE80211_MODE_IBSS;
  183. break;
  184. case WPAS_MODE_AP:
  185. case WPAS_MODE_P2P_GO:
  186. case WPAS_MODE_P2P_GROUP_FORMATION:
  187. params.mode = IEEE80211_MODE_AP;
  188. break;
  189. }
  190. params.freq = ssid->frequency;
  191. if (ssid->key_mgmt & WPA_KEY_MGMT_PSK)
  192. wpa_s->key_mgmt = WPA_KEY_MGMT_PSK;
  193. else
  194. wpa_s->key_mgmt = WPA_KEY_MGMT_NONE;
  195. params.key_mgmt_suite = key_mgmt2driver(wpa_s->key_mgmt);
  196. if (ssid->pairwise_cipher & WPA_CIPHER_CCMP)
  197. wpa_s->pairwise_cipher = WPA_CIPHER_CCMP;
  198. else if (ssid->pairwise_cipher & WPA_CIPHER_TKIP)
  199. wpa_s->pairwise_cipher = WPA_CIPHER_TKIP;
  200. else if (ssid->pairwise_cipher & WPA_CIPHER_NONE)
  201. wpa_s->pairwise_cipher = WPA_CIPHER_NONE;
  202. else {
  203. wpa_printf(MSG_WARNING, "WPA: Failed to select pairwise "
  204. "cipher.");
  205. return -1;
  206. }
  207. params.pairwise_suite = cipher_suite2driver(wpa_s->pairwise_cipher);
  208. params.group_suite = params.pairwise_suite;
  209. if (wpa_drv_associate(wpa_s, &params) < 0) {
  210. wpa_msg(wpa_s, MSG_INFO, "Failed to start AP functionality");
  211. return -1;
  212. }
  213. wpa_s->ap_iface = hapd_iface = os_zalloc(sizeof(*wpa_s->ap_iface));
  214. if (hapd_iface == NULL)
  215. return -1;
  216. hapd_iface->owner = wpa_s;
  217. wpa_s->ap_iface->conf = conf = hostapd_config_defaults();
  218. if (conf == NULL) {
  219. wpa_supplicant_ap_deinit(wpa_s);
  220. return -1;
  221. }
  222. if (wpa_supplicant_conf_ap(wpa_s, ssid, conf)) {
  223. wpa_printf(MSG_ERROR, "Failed to create AP configuration");
  224. wpa_supplicant_ap_deinit(wpa_s);
  225. return -1;
  226. }
  227. hapd_iface->num_bss = conf->num_bss;
  228. hapd_iface->bss = os_zalloc(conf->num_bss *
  229. sizeof(struct hostapd_data *));
  230. if (hapd_iface->bss == NULL) {
  231. wpa_supplicant_ap_deinit(wpa_s);
  232. return -1;
  233. }
  234. for (i = 0; i < conf->num_bss; i++) {
  235. hapd_iface->bss[i] =
  236. hostapd_alloc_bss_data(hapd_iface, conf,
  237. &conf->bss[i]);
  238. if (hapd_iface->bss[i] == NULL) {
  239. wpa_supplicant_ap_deinit(wpa_s);
  240. return -1;
  241. }
  242. hapd_iface->bss[i]->msg_ctx = wpa_s;
  243. hapd_iface->bss[i]->public_action_cb = ap_public_action_rx;
  244. hapd_iface->bss[i]->public_action_cb_ctx = wpa_s;
  245. hostapd_register_probereq_cb(hapd_iface->bss[i],
  246. ap_probe_req_rx, wpa_s);
  247. hapd_iface->bss[i]->wps_reg_success_cb = ap_wps_reg_success_cb;
  248. hapd_iface->bss[i]->wps_reg_success_cb_ctx = wpa_s;
  249. }
  250. os_memcpy(hapd_iface->bss[0]->own_addr, wpa_s->own_addr, ETH_ALEN);
  251. hapd_iface->bss[0]->driver = wpa_s->driver;
  252. hapd_iface->bss[0]->drv_priv = wpa_s->drv_priv;
  253. if (hostapd_setup_interface(wpa_s->ap_iface)) {
  254. wpa_printf(MSG_ERROR, "Failed to initialize AP interface");
  255. wpa_supplicant_ap_deinit(wpa_s);
  256. return -1;
  257. }
  258. wpa_s->current_ssid = ssid;
  259. os_memcpy(wpa_s->bssid, wpa_s->own_addr, ETH_ALEN);
  260. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  261. if (wpa_s->ap_configured_cb)
  262. wpa_s->ap_configured_cb(wpa_s->ap_configured_cb_ctx,
  263. wpa_s->ap_configured_cb_data);
  264. return 0;
  265. }
  266. void wpa_supplicant_ap_deinit(struct wpa_supplicant *wpa_s)
  267. {
  268. if (wpa_s->ap_iface == NULL)
  269. return;
  270. wpa_s->current_ssid = NULL;
  271. hostapd_interface_deinit(wpa_s->ap_iface);
  272. hostapd_interface_free(wpa_s->ap_iface);
  273. wpa_s->ap_iface = NULL;
  274. wpa_drv_deinit_ap(wpa_s);
  275. }
  276. void ap_tx_status(void *ctx, const u8 *addr,
  277. const u8 *buf, size_t len, int ack)
  278. {
  279. #ifdef NEED_AP_MLME
  280. struct wpa_supplicant *wpa_s = ctx;
  281. hostapd_tx_status(wpa_s->ap_iface->bss[0], addr, buf, len, ack);
  282. #endif /* NEED_AP_MLME */
  283. }
  284. void ap_rx_from_unknown_sta(void *ctx, const u8 *frame, size_t len)
  285. {
  286. #ifdef NEED_AP_MLME
  287. struct wpa_supplicant *wpa_s = ctx;
  288. const struct ieee80211_hdr *hdr =
  289. (const struct ieee80211_hdr *) frame;
  290. u16 fc = le_to_host16(hdr->frame_control);
  291. ieee802_11_rx_from_unknown(wpa_s->ap_iface->bss[0], hdr->addr2,
  292. (fc & (WLAN_FC_TODS | WLAN_FC_FROMDS)) ==
  293. (WLAN_FC_TODS | WLAN_FC_FROMDS));
  294. #endif /* NEED_AP_MLME */
  295. }
  296. void ap_mgmt_rx(void *ctx, struct rx_mgmt *rx_mgmt)
  297. {
  298. #ifdef NEED_AP_MLME
  299. struct wpa_supplicant *wpa_s = ctx;
  300. struct hostapd_frame_info fi;
  301. os_memset(&fi, 0, sizeof(fi));
  302. fi.datarate = rx_mgmt->datarate;
  303. fi.ssi_signal = rx_mgmt->ssi_signal;
  304. ieee802_11_mgmt(wpa_s->ap_iface->bss[0], rx_mgmt->frame,
  305. rx_mgmt->frame_len, &fi);
  306. #endif /* NEED_AP_MLME */
  307. }
  308. void ap_mgmt_tx_cb(void *ctx, const u8 *buf, size_t len, u16 stype, int ok)
  309. {
  310. #ifdef NEED_AP_MLME
  311. struct wpa_supplicant *wpa_s = ctx;
  312. ieee802_11_mgmt_cb(wpa_s->ap_iface->bss[0], buf, len, stype, ok);
  313. #endif /* NEED_AP_MLME */
  314. }
  315. void wpa_supplicant_ap_rx_eapol(struct wpa_supplicant *wpa_s,
  316. const u8 *src_addr, const u8 *buf, size_t len)
  317. {
  318. ieee802_1x_receive(wpa_s->ap_iface->bss[0], src_addr, buf, len);
  319. }
  320. #ifdef CONFIG_WPS
  321. int wpa_supplicant_ap_wps_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid)
  322. {
  323. if (!wpa_s->ap_iface)
  324. return -1;
  325. return hostapd_wps_button_pushed(wpa_s->ap_iface->bss[0]);
  326. }
  327. int wpa_supplicant_ap_wps_pin(struct wpa_supplicant *wpa_s, const u8 *bssid,
  328. const char *pin, char *buf, size_t buflen)
  329. {
  330. int ret, ret_len = 0;
  331. if (!wpa_s->ap_iface)
  332. return -1;
  333. if (pin == NULL) {
  334. unsigned int rpin = wps_generate_pin();
  335. ret_len = os_snprintf(buf, buflen, "%d", rpin);
  336. pin = buf;
  337. }
  338. ret = hostapd_wps_add_pin(wpa_s->ap_iface->bss[0], bssid, "any", pin,
  339. 0);
  340. if (ret)
  341. return -1;
  342. return ret_len;
  343. }
  344. #endif /* CONFIG_WPS */
  345. #ifdef CONFIG_CTRL_IFACE
  346. int ap_ctrl_iface_sta_first(struct wpa_supplicant *wpa_s,
  347. char *buf, size_t buflen)
  348. {
  349. if (wpa_s->ap_iface == NULL)
  350. return -1;
  351. return hostapd_ctrl_iface_sta_first(wpa_s->ap_iface->bss[0],
  352. buf, buflen);
  353. }
  354. int ap_ctrl_iface_sta(struct wpa_supplicant *wpa_s, const char *txtaddr,
  355. char *buf, size_t buflen)
  356. {
  357. if (wpa_s->ap_iface == NULL)
  358. return -1;
  359. return hostapd_ctrl_iface_sta(wpa_s->ap_iface->bss[0], txtaddr,
  360. buf, buflen);
  361. }
  362. int ap_ctrl_iface_sta_next(struct wpa_supplicant *wpa_s, const char *txtaddr,
  363. char *buf, size_t buflen)
  364. {
  365. if (wpa_s->ap_iface == NULL)
  366. return -1;
  367. return hostapd_ctrl_iface_sta_next(wpa_s->ap_iface->bss[0], txtaddr,
  368. buf, buflen);
  369. }
  370. int ap_ctrl_iface_wpa_get_status(struct wpa_supplicant *wpa_s, char *buf,
  371. size_t buflen, int verbose)
  372. {
  373. char *pos = buf, *end = buf + buflen;
  374. int ret;
  375. struct hostapd_bss_config *conf;
  376. if (wpa_s->ap_iface == NULL)
  377. return -1;
  378. conf = wpa_s->ap_iface->bss[0]->conf;
  379. if (conf->wpa == 0)
  380. return 0;
  381. ret = os_snprintf(pos, end - pos,
  382. "pairwise_cipher=%s\n"
  383. "group_cipher=%s\n"
  384. "key_mgmt=%s\n",
  385. wpa_cipher_txt(conf->rsn_pairwise),
  386. wpa_cipher_txt(conf->wpa_group),
  387. wpa_key_mgmt_txt(conf->wpa_key_mgmt,
  388. conf->wpa));
  389. if (ret < 0 || ret >= end - pos)
  390. return pos - buf;
  391. pos += ret;
  392. return pos - buf;
  393. }
  394. #endif /* CONFIG_CTRL_IFACE */
  395. int wpa_supplicant_ap_mac_addr_filter(struct wpa_supplicant *wpa_s,
  396. const u8 *addr)
  397. {
  398. struct hostapd_data *hapd;
  399. struct hostapd_bss_config *conf;
  400. if (!wpa_s->ap_iface)
  401. return -1;
  402. if (addr)
  403. wpa_printf(MSG_DEBUG, "AP: Set MAC address filter: " MACSTR,
  404. MAC2STR(addr));
  405. else
  406. wpa_printf(MSG_DEBUG, "AP: Clear MAC address filter");
  407. hapd = wpa_s->ap_iface->bss[0];
  408. conf = hapd->conf;
  409. os_free(conf->accept_mac);
  410. conf->accept_mac = NULL;
  411. conf->num_accept_mac = 0;
  412. os_free(conf->deny_mac);
  413. conf->deny_mac = NULL;
  414. conf->num_deny_mac = 0;
  415. if (addr == NULL) {
  416. conf->macaddr_acl = ACCEPT_UNLESS_DENIED;
  417. return 0;
  418. }
  419. conf->macaddr_acl = DENY_UNLESS_ACCEPTED;
  420. conf->accept_mac = os_zalloc(sizeof(struct mac_acl_entry));
  421. if (conf->accept_mac == NULL)
  422. return -1;
  423. os_memcpy(conf->accept_mac[0].addr, addr, ETH_ALEN);
  424. conf->num_accept_mac = 1;
  425. return 0;
  426. }