hostapd.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871
  1. /*
  2. * hostapd / Initialization and configuration
  3. * Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "includes.h"
  15. #include "common.h"
  16. #include "eloop.h"
  17. #include "common/ieee802_11_defs.h"
  18. #include "radius/radius_client.h"
  19. #include "ap/hostapd.h"
  20. #include "ap/authsrv.h"
  21. #include "ap/sta_info.h"
  22. #include "ap/accounting.h"
  23. #include "ap/ap_list.h"
  24. #include "ap/beacon.h"
  25. #include "ap/iapp.h"
  26. #include "ap/ieee802_1x.h"
  27. #include "ap/ieee802_11_auth.h"
  28. #include "ap/vlan_init.h"
  29. #include "ap/wpa.h"
  30. #include "ap/wps_hostapd.h"
  31. #include "hw_features.h"
  32. #include "driver_i.h"
  33. #include "ctrl_iface.h"
  34. #include "wpa_auth_glue.h"
  35. #include "ap_drv_ops.h"
  36. static int hostapd_flush_old_stations(struct hostapd_data *hapd);
  37. static int hostapd_setup_encryption(char *iface, struct hostapd_data *hapd);
  38. extern int wpa_debug_level;
  39. int hostapd_reload_config(struct hostapd_iface *iface)
  40. {
  41. struct hostapd_data *hapd = iface->bss[0];
  42. struct hostapd_config *newconf, *oldconf;
  43. size_t j;
  44. if (iface->config_read_cb == NULL)
  45. return -1;
  46. newconf = iface->config_read_cb(iface->config_fname);
  47. if (newconf == NULL)
  48. return -1;
  49. /*
  50. * Deauthenticate all stations since the new configuration may not
  51. * allow them to use the BSS anymore.
  52. */
  53. for (j = 0; j < iface->num_bss; j++)
  54. hostapd_flush_old_stations(iface->bss[j]);
  55. #ifndef CONFIG_NO_RADIUS
  56. /* TODO: update dynamic data based on changed configuration
  57. * items (e.g., open/close sockets, etc.) */
  58. radius_client_flush(hapd->radius, 0);
  59. #endif /* CONFIG_NO_RADIUS */
  60. oldconf = hapd->iconf;
  61. hapd->iconf = newconf;
  62. hapd->conf = &newconf->bss[0];
  63. iface->conf = newconf;
  64. if (hostapd_setup_wpa_psk(hapd->conf)) {
  65. wpa_printf(MSG_ERROR, "Failed to re-configure WPA PSK "
  66. "after reloading configuration");
  67. }
  68. if (hapd->conf->wpa && hapd->wpa_auth == NULL)
  69. hostapd_setup_wpa(hapd);
  70. else if (hapd->conf->wpa)
  71. hostapd_reconfig_wpa(hapd);
  72. else if (hapd->wpa_auth) {
  73. wpa_deinit(hapd->wpa_auth);
  74. hapd->wpa_auth = NULL;
  75. hostapd_set_privacy(hapd, 0);
  76. hostapd_setup_encryption(hapd->conf->iface, hapd);
  77. }
  78. ieee802_11_set_beacon(hapd);
  79. if (hapd->conf->ssid.ssid_set &&
  80. hostapd_set_ssid(hapd, (u8 *) hapd->conf->ssid.ssid,
  81. hapd->conf->ssid.ssid_len)) {
  82. wpa_printf(MSG_ERROR, "Could not set SSID for kernel driver");
  83. /* try to continue */
  84. }
  85. if (hapd->conf->ieee802_1x || hapd->conf->wpa)
  86. hapd->drv.set_drv_ieee8021x(hapd, hapd->conf->iface, 1);
  87. else
  88. hapd->drv.set_drv_ieee8021x(hapd, hapd->conf->iface, 0);
  89. hostapd_config_free(oldconf);
  90. wpa_printf(MSG_DEBUG, "Reconfigured interface %s", hapd->conf->iface);
  91. return 0;
  92. }
  93. static void hostapd_broadcast_key_clear_iface(struct hostapd_data *hapd,
  94. char *ifname)
  95. {
  96. int i;
  97. for (i = 0; i < NUM_WEP_KEYS; i++) {
  98. if (hapd->drv.set_key(ifname, hapd, WPA_ALG_NONE, NULL, i,
  99. i == 0 ? 1 : 0, NULL, 0, NULL, 0)) {
  100. wpa_printf(MSG_DEBUG, "Failed to clear default "
  101. "encryption keys (ifname=%s keyidx=%d)",
  102. ifname, i);
  103. }
  104. }
  105. #ifdef CONFIG_IEEE80211W
  106. if (hapd->conf->ieee80211w) {
  107. for (i = NUM_WEP_KEYS; i < NUM_WEP_KEYS + 2; i++) {
  108. if (hapd->drv.set_key(ifname, hapd, WPA_ALG_NONE, NULL,
  109. i, i == 0 ? 1 : 0, NULL, 0,
  110. NULL, 0)) {
  111. wpa_printf(MSG_DEBUG, "Failed to clear "
  112. "default mgmt encryption keys "
  113. "(ifname=%s keyidx=%d)", ifname, i);
  114. }
  115. }
  116. }
  117. #endif /* CONFIG_IEEE80211W */
  118. }
  119. static int hostapd_broadcast_wep_clear(struct hostapd_data *hapd)
  120. {
  121. hostapd_broadcast_key_clear_iface(hapd, hapd->conf->iface);
  122. return 0;
  123. }
  124. static int hostapd_broadcast_wep_set(struct hostapd_data *hapd)
  125. {
  126. int errors = 0, idx;
  127. struct hostapd_ssid *ssid = &hapd->conf->ssid;
  128. idx = ssid->wep.idx;
  129. if (ssid->wep.default_len &&
  130. hapd->drv.set_key(hapd->conf->iface,
  131. hapd, WPA_ALG_WEP, NULL, idx,
  132. idx == ssid->wep.idx,
  133. NULL, 0, ssid->wep.key[idx],
  134. ssid->wep.len[idx])) {
  135. wpa_printf(MSG_WARNING, "Could not set WEP encryption.");
  136. errors++;
  137. }
  138. if (ssid->dyn_vlan_keys) {
  139. size_t i;
  140. for (i = 0; i <= ssid->max_dyn_vlan_keys; i++) {
  141. const char *ifname;
  142. struct hostapd_wep_keys *key = ssid->dyn_vlan_keys[i];
  143. if (key == NULL)
  144. continue;
  145. ifname = hostapd_get_vlan_id_ifname(hapd->conf->vlan,
  146. i);
  147. if (ifname == NULL)
  148. continue;
  149. idx = key->idx;
  150. if (hapd->drv.set_key(ifname, hapd, WPA_ALG_WEP, NULL,
  151. idx, idx == key->idx, NULL, 0,
  152. key->key[idx], key->len[idx])) {
  153. wpa_printf(MSG_WARNING, "Could not set "
  154. "dynamic VLAN WEP encryption.");
  155. errors++;
  156. }
  157. }
  158. }
  159. return errors;
  160. }
  161. /**
  162. * hostapd_cleanup - Per-BSS cleanup (deinitialization)
  163. * @hapd: Pointer to BSS data
  164. *
  165. * This function is used to free all per-BSS data structures and resources.
  166. * This gets called in a loop for each BSS between calls to
  167. * hostapd_cleanup_iface_pre() and hostapd_cleanup_iface() when an interface
  168. * is deinitialized. Most of the modules that are initialized in
  169. * hostapd_setup_bss() are deinitialized here.
  170. */
  171. static void hostapd_cleanup(struct hostapd_data *hapd)
  172. {
  173. hostapd_ctrl_iface_deinit(hapd);
  174. iapp_deinit(hapd->iapp);
  175. hapd->iapp = NULL;
  176. accounting_deinit(hapd);
  177. hostapd_deinit_wpa(hapd);
  178. vlan_deinit(hapd);
  179. hostapd_acl_deinit(hapd);
  180. #ifndef CONFIG_NO_RADIUS
  181. radius_client_deinit(hapd->radius);
  182. hapd->radius = NULL;
  183. #endif /* CONFIG_NO_RADIUS */
  184. hostapd_deinit_wps(hapd);
  185. authsrv_deinit(hapd);
  186. if (hapd->interface_added &&
  187. hostapd_if_remove(hapd, WPA_IF_AP_BSS, hapd->conf->iface)) {
  188. wpa_printf(MSG_WARNING, "Failed to remove BSS interface %s",
  189. hapd->conf->iface);
  190. }
  191. os_free(hapd->probereq_cb);
  192. hapd->probereq_cb = NULL;
  193. }
  194. /**
  195. * hostapd_cleanup_iface_pre - Preliminary per-interface cleanup
  196. * @iface: Pointer to interface data
  197. *
  198. * This function is called before per-BSS data structures are deinitialized
  199. * with hostapd_cleanup().
  200. */
  201. static void hostapd_cleanup_iface_pre(struct hostapd_iface *iface)
  202. {
  203. }
  204. /**
  205. * hostapd_cleanup_iface - Complete per-interface cleanup
  206. * @iface: Pointer to interface data
  207. *
  208. * This function is called after per-BSS data structures are deinitialized
  209. * with hostapd_cleanup().
  210. */
  211. static void hostapd_cleanup_iface(struct hostapd_iface *iface)
  212. {
  213. hostapd_free_hw_features(iface->hw_features, iface->num_hw_features);
  214. iface->hw_features = NULL;
  215. os_free(iface->current_rates);
  216. iface->current_rates = NULL;
  217. ap_list_deinit(iface);
  218. hostapd_config_free(iface->conf);
  219. iface->conf = NULL;
  220. os_free(iface->config_fname);
  221. os_free(iface->bss);
  222. os_free(iface);
  223. }
  224. static int hostapd_setup_encryption(char *iface, struct hostapd_data *hapd)
  225. {
  226. int i;
  227. hostapd_broadcast_wep_set(hapd);
  228. if (hapd->conf->ssid.wep.default_len) {
  229. hostapd_set_privacy(hapd, 1);
  230. return 0;
  231. }
  232. for (i = 0; i < 4; i++) {
  233. if (hapd->conf->ssid.wep.key[i] &&
  234. hapd->drv.set_key(iface, hapd, WPA_ALG_WEP, NULL, i,
  235. i == hapd->conf->ssid.wep.idx, NULL, 0,
  236. hapd->conf->ssid.wep.key[i],
  237. hapd->conf->ssid.wep.len[i])) {
  238. wpa_printf(MSG_WARNING, "Could not set WEP "
  239. "encryption.");
  240. return -1;
  241. }
  242. if (hapd->conf->ssid.wep.key[i] &&
  243. i == hapd->conf->ssid.wep.idx)
  244. hostapd_set_privacy(hapd, 1);
  245. }
  246. return 0;
  247. }
  248. static int hostapd_flush_old_stations(struct hostapd_data *hapd)
  249. {
  250. int ret = 0;
  251. if (hostapd_drv_none(hapd))
  252. return 0;
  253. wpa_printf(MSG_DEBUG, "Flushing old station entries");
  254. if (hostapd_flush(hapd)) {
  255. wpa_printf(MSG_WARNING, "Could not connect to kernel driver.");
  256. ret = -1;
  257. }
  258. wpa_printf(MSG_DEBUG, "Deauthenticate all stations");
  259. /* New Prism2.5/3 STA firmware versions seem to have issues with this
  260. * broadcast deauth frame. This gets the firmware in odd state where
  261. * nothing works correctly, so let's skip sending this for the hostap
  262. * driver. */
  263. if (hapd->driver && os_strcmp(hapd->driver->name, "hostap") != 0) {
  264. u8 addr[ETH_ALEN];
  265. os_memset(addr, 0xff, ETH_ALEN);
  266. hapd->drv.sta_deauth(hapd, addr,
  267. WLAN_REASON_PREV_AUTH_NOT_VALID);
  268. }
  269. return ret;
  270. }
  271. /**
  272. * hostapd_validate_bssid_configuration - Validate BSSID configuration
  273. * @iface: Pointer to interface data
  274. * Returns: 0 on success, -1 on failure
  275. *
  276. * This function is used to validate that the configured BSSIDs are valid.
  277. */
  278. static int hostapd_validate_bssid_configuration(struct hostapd_iface *iface)
  279. {
  280. u8 mask[ETH_ALEN] = { 0 };
  281. struct hostapd_data *hapd = iface->bss[0];
  282. unsigned int i = iface->conf->num_bss, bits = 0, j;
  283. int res;
  284. int auto_addr = 0;
  285. if (hostapd_drv_none(hapd))
  286. return 0;
  287. /* Generate BSSID mask that is large enough to cover the BSSIDs. */
  288. /* Determine the bits necessary to cover the number of BSSIDs. */
  289. for (i--; i; i >>= 1)
  290. bits++;
  291. /* Determine the bits necessary to any configured BSSIDs,
  292. if they are higher than the number of BSSIDs. */
  293. for (j = 0; j < iface->conf->num_bss; j++) {
  294. if (hostapd_mac_comp_empty(iface->conf->bss[j].bssid) == 0) {
  295. if (j)
  296. auto_addr++;
  297. continue;
  298. }
  299. for (i = 0; i < ETH_ALEN; i++) {
  300. mask[i] |=
  301. iface->conf->bss[j].bssid[i] ^
  302. hapd->own_addr[i];
  303. }
  304. }
  305. if (!auto_addr)
  306. goto skip_mask_ext;
  307. for (i = 0; i < ETH_ALEN && mask[i] == 0; i++)
  308. ;
  309. j = 0;
  310. if (i < ETH_ALEN) {
  311. j = (5 - i) * 8;
  312. while (mask[i] != 0) {
  313. mask[i] >>= 1;
  314. j++;
  315. }
  316. }
  317. if (bits < j)
  318. bits = j;
  319. if (bits > 40) {
  320. wpa_printf(MSG_ERROR, "Too many bits in the BSSID mask (%u)",
  321. bits);
  322. return -1;
  323. }
  324. os_memset(mask, 0xff, ETH_ALEN);
  325. j = bits / 8;
  326. for (i = 5; i > 5 - j; i--)
  327. mask[i] = 0;
  328. j = bits % 8;
  329. while (j--)
  330. mask[i] <<= 1;
  331. skip_mask_ext:
  332. wpa_printf(MSG_DEBUG, "BSS count %lu, BSSID mask " MACSTR " (%d bits)",
  333. (unsigned long) iface->conf->num_bss, MAC2STR(mask), bits);
  334. res = hostapd_valid_bss_mask(hapd, hapd->own_addr, mask);
  335. if (res == 0)
  336. return 0;
  337. if (res < 0) {
  338. wpa_printf(MSG_ERROR, "Driver did not accept BSSID mask "
  339. MACSTR " for start address " MACSTR ".",
  340. MAC2STR(mask), MAC2STR(hapd->own_addr));
  341. return -1;
  342. }
  343. if (!auto_addr)
  344. return 0;
  345. for (i = 0; i < ETH_ALEN; i++) {
  346. if ((hapd->own_addr[i] & mask[i]) != hapd->own_addr[i]) {
  347. wpa_printf(MSG_ERROR, "Invalid BSSID mask " MACSTR
  348. " for start address " MACSTR ".",
  349. MAC2STR(mask), MAC2STR(hapd->own_addr));
  350. wpa_printf(MSG_ERROR, "Start address must be the "
  351. "first address in the block (i.e., addr "
  352. "AND mask == addr).");
  353. return -1;
  354. }
  355. }
  356. return 0;
  357. }
  358. static int mac_in_conf(struct hostapd_config *conf, const void *a)
  359. {
  360. size_t i;
  361. for (i = 0; i < conf->num_bss; i++) {
  362. if (hostapd_mac_comp(conf->bss[i].bssid, a) == 0) {
  363. return 1;
  364. }
  365. }
  366. return 0;
  367. }
  368. /**
  369. * hostapd_setup_bss - Per-BSS setup (initialization)
  370. * @hapd: Pointer to BSS data
  371. * @first: Whether this BSS is the first BSS of an interface
  372. *
  373. * This function is used to initialize all per-BSS data structures and
  374. * resources. This gets called in a loop for each BSS when an interface is
  375. * initialized. Most of the modules that are initialized here will be
  376. * deinitialized in hostapd_cleanup().
  377. */
  378. static int hostapd_setup_bss(struct hostapd_data *hapd, int first)
  379. {
  380. struct hostapd_bss_config *conf = hapd->conf;
  381. u8 ssid[HOSTAPD_MAX_SSID_LEN + 1];
  382. int ssid_len, set_ssid;
  383. if (!first) {
  384. if (hostapd_mac_comp_empty(hapd->conf->bssid) == 0) {
  385. /* Allocate the next available BSSID. */
  386. do {
  387. inc_byte_array(hapd->own_addr, ETH_ALEN);
  388. } while (mac_in_conf(hapd->iconf, hapd->own_addr));
  389. } else {
  390. /* Allocate the configured BSSID. */
  391. os_memcpy(hapd->own_addr, hapd->conf->bssid, ETH_ALEN);
  392. if (hostapd_mac_comp(hapd->own_addr,
  393. hapd->iface->bss[0]->own_addr) ==
  394. 0) {
  395. wpa_printf(MSG_ERROR, "BSS '%s' may not have "
  396. "BSSID set to the MAC address of "
  397. "the radio", hapd->conf->iface);
  398. return -1;
  399. }
  400. }
  401. hapd->interface_added = 1;
  402. if (hostapd_if_add(hapd->iface->bss[0], WPA_IF_AP_BSS,
  403. hapd->conf->iface, hapd->own_addr, hapd)) {
  404. wpa_printf(MSG_ERROR, "Failed to add BSS (BSSID="
  405. MACSTR ")", MAC2STR(hapd->own_addr));
  406. return -1;
  407. }
  408. }
  409. hostapd_flush_old_stations(hapd);
  410. hostapd_set_privacy(hapd, 0);
  411. hostapd_broadcast_wep_clear(hapd);
  412. if (hostapd_setup_encryption(hapd->conf->iface, hapd))
  413. return -1;
  414. /*
  415. * Fetch the SSID from the system and use it or,
  416. * if one was specified in the config file, verify they
  417. * match.
  418. */
  419. ssid_len = hostapd_get_ssid(hapd, ssid, sizeof(ssid));
  420. if (ssid_len < 0) {
  421. wpa_printf(MSG_ERROR, "Could not read SSID from system");
  422. return -1;
  423. }
  424. if (conf->ssid.ssid_set) {
  425. /*
  426. * If SSID is specified in the config file and it differs
  427. * from what is being used then force installation of the
  428. * new SSID.
  429. */
  430. set_ssid = (conf->ssid.ssid_len != (size_t) ssid_len ||
  431. os_memcmp(conf->ssid.ssid, ssid, ssid_len) != 0);
  432. } else {
  433. /*
  434. * No SSID in the config file; just use the one we got
  435. * from the system.
  436. */
  437. set_ssid = 0;
  438. conf->ssid.ssid_len = ssid_len;
  439. os_memcpy(conf->ssid.ssid, ssid, conf->ssid.ssid_len);
  440. conf->ssid.ssid[conf->ssid.ssid_len] = '\0';
  441. }
  442. if (!hostapd_drv_none(hapd)) {
  443. wpa_printf(MSG_ERROR, "Using interface %s with hwaddr " MACSTR
  444. " and ssid '%s'",
  445. hapd->conf->iface, MAC2STR(hapd->own_addr),
  446. hapd->conf->ssid.ssid);
  447. }
  448. if (hostapd_setup_wpa_psk(conf)) {
  449. wpa_printf(MSG_ERROR, "WPA-PSK setup failed.");
  450. return -1;
  451. }
  452. /* Set SSID for the kernel driver (to be used in beacon and probe
  453. * response frames) */
  454. if (set_ssid && hostapd_set_ssid(hapd, (u8 *) conf->ssid.ssid,
  455. conf->ssid.ssid_len)) {
  456. wpa_printf(MSG_ERROR, "Could not set SSID for kernel driver");
  457. return -1;
  458. }
  459. if (wpa_debug_level == MSG_MSGDUMP)
  460. conf->radius->msg_dumps = 1;
  461. #ifndef CONFIG_NO_RADIUS
  462. hapd->radius = radius_client_init(hapd, conf->radius);
  463. if (hapd->radius == NULL) {
  464. wpa_printf(MSG_ERROR, "RADIUS client initialization failed.");
  465. return -1;
  466. }
  467. #endif /* CONFIG_NO_RADIUS */
  468. if (hostapd_acl_init(hapd)) {
  469. wpa_printf(MSG_ERROR, "ACL initialization failed.");
  470. return -1;
  471. }
  472. if (hostapd_init_wps(hapd, conf))
  473. return -1;
  474. if (ieee802_1x_init(hapd)) {
  475. wpa_printf(MSG_ERROR, "IEEE 802.1X initialization failed.");
  476. return -1;
  477. }
  478. if (hapd->conf->wpa && hostapd_setup_wpa(hapd))
  479. return -1;
  480. if (accounting_init(hapd)) {
  481. wpa_printf(MSG_ERROR, "Accounting initialization failed.");
  482. return -1;
  483. }
  484. if (hapd->conf->ieee802_11f &&
  485. (hapd->iapp = iapp_init(hapd, hapd->conf->iapp_iface)) == NULL) {
  486. wpa_printf(MSG_ERROR, "IEEE 802.11F (IAPP) initialization "
  487. "failed.");
  488. return -1;
  489. }
  490. if (hostapd_ctrl_iface_init(hapd)) {
  491. wpa_printf(MSG_ERROR, "Failed to setup control interface");
  492. return -1;
  493. }
  494. if (!hostapd_drv_none(hapd) && vlan_init(hapd)) {
  495. wpa_printf(MSG_ERROR, "VLAN initialization failed.");
  496. return -1;
  497. }
  498. ieee802_11_set_beacon(hapd);
  499. if (authsrv_init(hapd) < 0)
  500. return -1;
  501. return 0;
  502. }
  503. static void hostapd_tx_queue_params(struct hostapd_iface *iface)
  504. {
  505. struct hostapd_data *hapd = iface->bss[0];
  506. int i;
  507. struct hostapd_tx_queue_params *p;
  508. for (i = 0; i < NUM_TX_QUEUES; i++) {
  509. p = &iface->conf->tx_queue[i];
  510. if (!p->configured)
  511. continue;
  512. if (hostapd_set_tx_queue_params(hapd, i, p->aifs, p->cwmin,
  513. p->cwmax, p->burst)) {
  514. wpa_printf(MSG_DEBUG, "Failed to set TX queue "
  515. "parameters for queue %d.", i);
  516. /* Continue anyway */
  517. }
  518. }
  519. }
  520. static int setup_interface(struct hostapd_iface *iface)
  521. {
  522. struct hostapd_data *hapd = iface->bss[0];
  523. size_t i;
  524. char country[4];
  525. /*
  526. * Make sure that all BSSes get configured with a pointer to the same
  527. * driver interface.
  528. */
  529. for (i = 1; i < iface->num_bss; i++) {
  530. iface->bss[i]->driver = hapd->driver;
  531. iface->bss[i]->drv_priv = hapd->drv_priv;
  532. }
  533. if (hostapd_validate_bssid_configuration(iface))
  534. return -1;
  535. if (hapd->iconf->country[0] && hapd->iconf->country[1]) {
  536. os_memcpy(country, hapd->iconf->country, 3);
  537. country[3] = '\0';
  538. if (hostapd_set_country(hapd, country) < 0) {
  539. wpa_printf(MSG_ERROR, "Failed to set country code");
  540. return -1;
  541. }
  542. }
  543. if (hostapd_get_hw_features(iface)) {
  544. /* Not all drivers support this yet, so continue without hw
  545. * feature data. */
  546. } else {
  547. int ret = hostapd_select_hw_mode(iface);
  548. if (ret < 0) {
  549. wpa_printf(MSG_ERROR, "Could not select hw_mode and "
  550. "channel. (%d)", ret);
  551. return -1;
  552. }
  553. ret = hostapd_check_ht_capab(iface);
  554. if (ret < 0)
  555. return -1;
  556. if (ret == 1) {
  557. wpa_printf(MSG_DEBUG, "Interface initialization will "
  558. "be completed in a callback");
  559. return 0;
  560. }
  561. }
  562. return hostapd_setup_interface_complete(iface, 0);
  563. }
  564. int hostapd_setup_interface_complete(struct hostapd_iface *iface, int err)
  565. {
  566. struct hostapd_data *hapd = iface->bss[0];
  567. int freq;
  568. size_t j;
  569. u8 *prev_addr;
  570. if (err) {
  571. wpa_printf(MSG_ERROR, "Interface initialization failed");
  572. eloop_terminate();
  573. return -1;
  574. }
  575. wpa_printf(MSG_DEBUG, "Completing interface initialization");
  576. if (hapd->iconf->channel) {
  577. freq = hostapd_hw_get_freq(hapd, hapd->iconf->channel);
  578. wpa_printf(MSG_DEBUG, "Mode: %s Channel: %d "
  579. "Frequency: %d MHz",
  580. hostapd_hw_mode_txt(hapd->iconf->hw_mode),
  581. hapd->iconf->channel, freq);
  582. if (hostapd_set_freq(hapd, hapd->iconf->hw_mode, freq,
  583. hapd->iconf->channel,
  584. hapd->iconf->ieee80211n,
  585. hapd->iconf->secondary_channel)) {
  586. wpa_printf(MSG_ERROR, "Could not set channel for "
  587. "kernel driver");
  588. return -1;
  589. }
  590. }
  591. if (hapd->iconf->rts_threshold > -1 &&
  592. hostapd_set_rts(hapd, hapd->iconf->rts_threshold)) {
  593. wpa_printf(MSG_ERROR, "Could not set RTS threshold for "
  594. "kernel driver");
  595. return -1;
  596. }
  597. if (hapd->iconf->fragm_threshold > -1 &&
  598. hostapd_set_frag(hapd, hapd->iconf->fragm_threshold)) {
  599. wpa_printf(MSG_ERROR, "Could not set fragmentation threshold "
  600. "for kernel driver");
  601. return -1;
  602. }
  603. prev_addr = hapd->own_addr;
  604. for (j = 0; j < iface->num_bss; j++) {
  605. hapd = iface->bss[j];
  606. if (j)
  607. os_memcpy(hapd->own_addr, prev_addr, ETH_ALEN);
  608. if (hostapd_setup_bss(hapd, j == 0))
  609. return -1;
  610. if (hostapd_mac_comp_empty(hapd->conf->bssid) == 0)
  611. prev_addr = hapd->own_addr;
  612. }
  613. hostapd_tx_queue_params(iface);
  614. ap_list_init(iface);
  615. if (hostapd_driver_commit(hapd) < 0) {
  616. wpa_printf(MSG_ERROR, "%s: Failed to commit driver "
  617. "configuration", __func__);
  618. return -1;
  619. }
  620. wpa_printf(MSG_DEBUG, "%s: Setup of interface done.",
  621. iface->bss[0]->conf->iface);
  622. return 0;
  623. }
  624. /**
  625. * hostapd_setup_interface - Setup of an interface
  626. * @iface: Pointer to interface data.
  627. * Returns: 0 on success, -1 on failure
  628. *
  629. * Initializes the driver interface, validates the configuration,
  630. * and sets driver parameters based on the configuration.
  631. * Flushes old stations, sets the channel, encryption,
  632. * beacons, and WDS links based on the configuration.
  633. */
  634. int hostapd_setup_interface(struct hostapd_iface *iface)
  635. {
  636. int ret;
  637. ret = setup_interface(iface);
  638. if (ret) {
  639. wpa_printf(MSG_ERROR, "%s: Unable to setup interface.",
  640. iface->bss[0]->conf->iface);
  641. return -1;
  642. }
  643. return 0;
  644. }
  645. /**
  646. * hostapd_alloc_bss_data - Allocate and initialize per-BSS data
  647. * @hapd_iface: Pointer to interface data
  648. * @conf: Pointer to per-interface configuration
  649. * @bss: Pointer to per-BSS configuration for this BSS
  650. * Returns: Pointer to allocated BSS data
  651. *
  652. * This function is used to allocate per-BSS data structure. This data will be
  653. * freed after hostapd_cleanup() is called for it during interface
  654. * deinitialization.
  655. */
  656. struct hostapd_data *
  657. hostapd_alloc_bss_data(struct hostapd_iface *hapd_iface,
  658. struct hostapd_config *conf,
  659. struct hostapd_bss_config *bss)
  660. {
  661. struct hostapd_data *hapd;
  662. hapd = os_zalloc(sizeof(*hapd));
  663. if (hapd == NULL)
  664. return NULL;
  665. hostapd_set_driver_ops(&hapd->drv);
  666. hapd->new_assoc_sta_cb = hostapd_new_assoc_sta;
  667. hapd->iconf = conf;
  668. hapd->conf = bss;
  669. hapd->iface = hapd_iface;
  670. hapd->driver = hapd->iconf->driver;
  671. return hapd;
  672. }
  673. void hostapd_interface_deinit(struct hostapd_iface *iface)
  674. {
  675. size_t j;
  676. if (iface == NULL)
  677. return;
  678. hostapd_cleanup_iface_pre(iface);
  679. for (j = 0; j < iface->num_bss; j++) {
  680. struct hostapd_data *hapd = iface->bss[j];
  681. hostapd_free_stas(hapd);
  682. hostapd_flush_old_stations(hapd);
  683. hostapd_cleanup(hapd);
  684. if (j == iface->num_bss - 1 && hapd->driver)
  685. hostapd_driver_deinit(hapd);
  686. }
  687. for (j = 0; j < iface->num_bss; j++)
  688. os_free(iface->bss[j]);
  689. hostapd_cleanup_iface(iface);
  690. }
  691. /**
  692. * hostapd_new_assoc_sta - Notify that a new station associated with the AP
  693. * @hapd: Pointer to BSS data
  694. * @sta: Pointer to the associated STA data
  695. * @reassoc: 1 to indicate this was a re-association; 0 = first association
  696. *
  697. * This function will be called whenever a station associates with the AP. It
  698. * can be called from ieee802_11.c for drivers that export MLME to hostapd and
  699. * from drv_callbacks.c based on driver events for drivers that take care of
  700. * management frames (IEEE 802.11 authentication and association) internally.
  701. */
  702. void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta,
  703. int reassoc)
  704. {
  705. if (hapd->tkip_countermeasures) {
  706. hapd->drv.sta_deauth(hapd, sta->addr,
  707. WLAN_REASON_MICHAEL_MIC_FAILURE);
  708. return;
  709. }
  710. hostapd_prune_associations(hapd, sta->addr);
  711. /* IEEE 802.11F (IAPP) */
  712. if (hapd->conf->ieee802_11f)
  713. iapp_new_station(hapd->iapp, sta);
  714. /* Start accounting here, if IEEE 802.1X and WPA are not used.
  715. * IEEE 802.1X/WPA code will start accounting after the station has
  716. * been authorized. */
  717. if (!hapd->conf->ieee802_1x && !hapd->conf->wpa)
  718. accounting_sta_start(hapd, sta);
  719. /* Start IEEE 802.1X authentication process for new stations */
  720. ieee802_1x_new_station(hapd, sta);
  721. if (reassoc) {
  722. if (sta->auth_alg != WLAN_AUTH_FT &&
  723. !(sta->flags & (WLAN_STA_WPS | WLAN_STA_MAYBE_WPS)))
  724. wpa_auth_sm_event(sta->wpa_sm, WPA_REAUTH);
  725. } else
  726. wpa_auth_sta_associated(hapd->wpa_auth, sta->wpa_sm);
  727. }