hostapd.c 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488
  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 "crypto/tls.h"
  18. #include "common/ieee802_11_defs.h"
  19. #include "eapol_auth/eapol_auth_sm.h"
  20. #include "eapol_auth/eapol_auth_sm_i.h"
  21. #include "radius/radius_client.h"
  22. #include "radius/radius_server.h"
  23. #include "eap_server/eap_sim_db.h"
  24. #include "eap_server/eap.h"
  25. #include "eap_server/tncs.h"
  26. #include "l2_packet/l2_packet.h"
  27. #include "hostapd.h"
  28. #include "ieee802_1x.h"
  29. #include "beacon.h"
  30. #include "hw_features.h"
  31. #include "accounting.h"
  32. #include "iapp.h"
  33. #include "ieee802_11_auth.h"
  34. #include "sta_flags.h"
  35. #include "sta_info.h"
  36. #include "ap_list.h"
  37. #include "driver_i.h"
  38. #include "wpa.h"
  39. #include "preauth.h"
  40. #include "vlan_init.h"
  41. #include "ctrl_iface.h"
  42. #include "wps_hostapd.h"
  43. #include "tkip_countermeasures.h"
  44. static int hostapd_flush_old_stations(struct hostapd_data *hapd);
  45. static int hostapd_setup_wpa(struct hostapd_data *hapd);
  46. static int hostapd_setup_encryption(char *iface, struct hostapd_data *hapd);
  47. extern int wpa_debug_level;
  48. #if defined(EAP_SERVER_SIM) || defined(EAP_SERVER_AKA)
  49. #define EAP_SIM_DB
  50. #endif /* EAP_SERVER_SIM || EAP_SERVER_AKA */
  51. #ifdef EAP_SIM_DB
  52. static int hostapd_sim_db_cb_sta(struct hostapd_data *hapd,
  53. struct sta_info *sta, void *ctx)
  54. {
  55. if (eapol_auth_eap_pending_cb(sta->eapol_sm, ctx) == 0)
  56. return 1;
  57. return 0;
  58. }
  59. static void hostapd_sim_db_cb(void *ctx, void *session_ctx)
  60. {
  61. struct hostapd_data *hapd = ctx;
  62. if (ap_for_each_sta(hapd, hostapd_sim_db_cb_sta, session_ctx) == 0) {
  63. #ifdef RADIUS_SERVER
  64. radius_server_eap_pending_cb(hapd->radius_srv, session_ctx);
  65. #endif /* RADIUS_SERVER */
  66. }
  67. }
  68. #endif /* EAP_SIM_DB */
  69. static void hostapd_wpa_auth_conf(struct hostapd_bss_config *conf,
  70. struct wpa_auth_config *wconf)
  71. {
  72. wconf->wpa = conf->wpa;
  73. wconf->wpa_key_mgmt = conf->wpa_key_mgmt;
  74. wconf->wpa_pairwise = conf->wpa_pairwise;
  75. wconf->wpa_group = conf->wpa_group;
  76. wconf->wpa_group_rekey = conf->wpa_group_rekey;
  77. wconf->wpa_strict_rekey = conf->wpa_strict_rekey;
  78. wconf->wpa_gmk_rekey = conf->wpa_gmk_rekey;
  79. wconf->wpa_ptk_rekey = conf->wpa_ptk_rekey;
  80. wconf->rsn_pairwise = conf->rsn_pairwise;
  81. wconf->rsn_preauth = conf->rsn_preauth;
  82. wconf->eapol_version = conf->eapol_version;
  83. wconf->peerkey = conf->peerkey;
  84. wconf->wmm_enabled = conf->wmm_enabled;
  85. wconf->okc = conf->okc;
  86. #ifdef CONFIG_IEEE80211W
  87. wconf->ieee80211w = conf->ieee80211w;
  88. #endif /* CONFIG_IEEE80211W */
  89. #ifdef CONFIG_IEEE80211R
  90. wconf->ssid_len = conf->ssid.ssid_len;
  91. if (wconf->ssid_len > SSID_LEN)
  92. wconf->ssid_len = SSID_LEN;
  93. os_memcpy(wconf->ssid, conf->ssid.ssid, wconf->ssid_len);
  94. os_memcpy(wconf->mobility_domain, conf->mobility_domain,
  95. MOBILITY_DOMAIN_ID_LEN);
  96. if (conf->nas_identifier &&
  97. os_strlen(conf->nas_identifier) <= FT_R0KH_ID_MAX_LEN) {
  98. wconf->r0_key_holder_len = os_strlen(conf->nas_identifier);
  99. os_memcpy(wconf->r0_key_holder, conf->nas_identifier,
  100. wconf->r0_key_holder_len);
  101. }
  102. os_memcpy(wconf->r1_key_holder, conf->r1_key_holder, FT_R1KH_ID_LEN);
  103. wconf->r0_key_lifetime = conf->r0_key_lifetime;
  104. wconf->reassociation_deadline = conf->reassociation_deadline;
  105. wconf->r0kh_list = conf->r0kh_list;
  106. wconf->r1kh_list = conf->r1kh_list;
  107. wconf->pmk_r1_push = conf->pmk_r1_push;
  108. #endif /* CONFIG_IEEE80211R */
  109. }
  110. int hostapd_reload_config(struct hostapd_iface *iface)
  111. {
  112. struct hostapd_data *hapd = iface->bss[0];
  113. struct hostapd_config *newconf, *oldconf;
  114. struct wpa_auth_config wpa_auth_conf;
  115. size_t j;
  116. newconf = hostapd_config_read(iface->config_fname);
  117. if (newconf == NULL)
  118. return -1;
  119. /*
  120. * Deauthenticate all stations since the new configuration may not
  121. * allow them to use the BSS anymore.
  122. */
  123. for (j = 0; j < iface->num_bss; j++)
  124. hostapd_flush_old_stations(iface->bss[j]);
  125. #ifndef CONFIG_NO_RADIUS
  126. /* TODO: update dynamic data based on changed configuration
  127. * items (e.g., open/close sockets, etc.) */
  128. radius_client_flush(hapd->radius, 0);
  129. #endif /* CONFIG_NO_RADIUS */
  130. oldconf = hapd->iconf;
  131. hapd->iconf = newconf;
  132. hapd->conf = &newconf->bss[0];
  133. iface->conf = newconf;
  134. if (hostapd_setup_wpa_psk(hapd->conf)) {
  135. wpa_printf(MSG_ERROR, "Failed to re-configure WPA PSK "
  136. "after reloading configuration");
  137. }
  138. if (hapd->conf->wpa && hapd->wpa_auth == NULL)
  139. hostapd_setup_wpa(hapd);
  140. else if (hapd->conf->wpa) {
  141. hostapd_wpa_auth_conf(&newconf->bss[0], &wpa_auth_conf);
  142. wpa_reconfig(hapd->wpa_auth, &wpa_auth_conf);
  143. } else if (hapd->wpa_auth) {
  144. wpa_deinit(hapd->wpa_auth);
  145. hapd->wpa_auth = NULL;
  146. hostapd_set_privacy(hapd, 0);
  147. hostapd_setup_encryption(hapd->conf->iface, hapd);
  148. }
  149. ieee802_11_set_beacon(hapd);
  150. if (hapd->conf->ssid.ssid_set &&
  151. hostapd_set_ssid(hapd, (u8 *) hapd->conf->ssid.ssid,
  152. hapd->conf->ssid.ssid_len)) {
  153. wpa_printf(MSG_ERROR, "Could not set SSID for kernel driver");
  154. /* try to continue */
  155. }
  156. if (hapd->conf->ieee802_1x || hapd->conf->wpa)
  157. hostapd_set_ieee8021x(hapd->conf->iface, hapd, 1);
  158. hostapd_config_free(oldconf);
  159. wpa_printf(MSG_DEBUG, "Reconfigured interface %s", hapd->conf->iface);
  160. return 0;
  161. }
  162. int handle_reload_iface(struct hostapd_iface *iface, void *ctx)
  163. {
  164. if (hostapd_reload_config(iface) < 0) {
  165. wpa_printf(MSG_WARNING, "Failed to read new configuration "
  166. "file - continuing with old.");
  167. }
  168. return 0;
  169. }
  170. static void hostapd_broadcast_key_clear_iface(struct hostapd_data *hapd,
  171. char *ifname)
  172. {
  173. int i;
  174. for (i = 0; i < NUM_WEP_KEYS; i++) {
  175. if (hostapd_set_key(ifname, hapd, WPA_ALG_NONE, NULL, i,
  176. i == 0 ? 1 : 0, NULL, 0, NULL, 0)) {
  177. wpa_printf(MSG_DEBUG, "Failed to clear default "
  178. "encryption keys (ifname=%s keyidx=%d)",
  179. ifname, i);
  180. }
  181. }
  182. #ifdef CONFIG_IEEE80211W
  183. if (hapd->conf->ieee80211w) {
  184. for (i = NUM_WEP_KEYS; i < NUM_WEP_KEYS + 2; i++) {
  185. if (hostapd_set_key(ifname, hapd, WPA_ALG_NONE, NULL,
  186. i, i == 0 ? 1 : 0, NULL, 0,
  187. NULL, 0)) {
  188. wpa_printf(MSG_DEBUG, "Failed to clear "
  189. "default mgmt encryption keys "
  190. "(ifname=%s keyidx=%d)", ifname, i);
  191. }
  192. }
  193. }
  194. #endif /* CONFIG_IEEE80211W */
  195. }
  196. static int hostapd_broadcast_wep_clear(struct hostapd_data *hapd)
  197. {
  198. hostapd_broadcast_key_clear_iface(hapd, hapd->conf->iface);
  199. return 0;
  200. }
  201. static int hostapd_broadcast_wep_set(struct hostapd_data *hapd)
  202. {
  203. int errors = 0, idx;
  204. struct hostapd_ssid *ssid = &hapd->conf->ssid;
  205. idx = ssid->wep.idx;
  206. if (ssid->wep.default_len &&
  207. hostapd_set_key(hapd->conf->iface,
  208. hapd, WPA_ALG_WEP, NULL, idx, idx == ssid->wep.idx,
  209. NULL, 0, ssid->wep.key[idx], ssid->wep.len[idx])) {
  210. wpa_printf(MSG_WARNING, "Could not set WEP encryption.");
  211. errors++;
  212. }
  213. if (ssid->dyn_vlan_keys) {
  214. size_t i;
  215. for (i = 0; i <= ssid->max_dyn_vlan_keys; i++) {
  216. const char *ifname;
  217. struct hostapd_wep_keys *key = ssid->dyn_vlan_keys[i];
  218. if (key == NULL)
  219. continue;
  220. ifname = hostapd_get_vlan_id_ifname(hapd->conf->vlan,
  221. i);
  222. if (ifname == NULL)
  223. continue;
  224. idx = key->idx;
  225. if (hostapd_set_key(ifname, hapd, WPA_ALG_WEP, NULL,
  226. idx, idx == key->idx, NULL, 0,
  227. key->key[idx], key->len[idx])) {
  228. wpa_printf(MSG_WARNING, "Could not set "
  229. "dynamic VLAN WEP encryption.");
  230. errors++;
  231. }
  232. }
  233. }
  234. return errors;
  235. }
  236. /**
  237. * hostapd_cleanup - Per-BSS cleanup (deinitialization)
  238. * @hapd: Pointer to BSS data
  239. *
  240. * This function is used to free all per-BSS data structures and resources.
  241. * This gets called in a loop for each BSS between calls to
  242. * hostapd_cleanup_iface_pre() and hostapd_cleanup_iface() when an interface
  243. * is deinitialized. Most of the modules that are initialized in
  244. * hostapd_setup_bss() are deinitialized here.
  245. */
  246. static void hostapd_cleanup(struct hostapd_data *hapd)
  247. {
  248. hostapd_ctrl_iface_deinit(hapd);
  249. iapp_deinit(hapd->iapp);
  250. hapd->iapp = NULL;
  251. accounting_deinit(hapd);
  252. rsn_preauth_iface_deinit(hapd);
  253. if (hapd->wpa_auth) {
  254. wpa_deinit(hapd->wpa_auth);
  255. hapd->wpa_auth = NULL;
  256. if (hostapd_set_privacy(hapd, 0)) {
  257. wpa_printf(MSG_DEBUG, "Could not disable "
  258. "PrivacyInvoked for interface %s",
  259. hapd->conf->iface);
  260. }
  261. if (hostapd_set_generic_elem(hapd, (u8 *) "", 0)) {
  262. wpa_printf(MSG_DEBUG, "Could not remove generic "
  263. "information element from interface %s",
  264. hapd->conf->iface);
  265. }
  266. }
  267. ieee802_1x_deinit(hapd);
  268. vlan_deinit(hapd);
  269. hostapd_acl_deinit(hapd);
  270. #ifndef CONFIG_NO_RADIUS
  271. radius_client_deinit(hapd->radius);
  272. hapd->radius = NULL;
  273. #endif /* CONFIG_NO_RADIUS */
  274. #ifdef RADIUS_SERVER
  275. radius_server_deinit(hapd->radius_srv);
  276. hapd->radius_srv = NULL;
  277. #endif /* RADIUS_SERVER */
  278. #ifdef CONFIG_IEEE80211R
  279. l2_packet_deinit(hapd->l2);
  280. #endif /* CONFIG_IEEE80211R */
  281. hostapd_deinit_wps(hapd);
  282. #ifdef EAP_TLS_FUNCS
  283. if (hapd->ssl_ctx) {
  284. tls_deinit(hapd->ssl_ctx);
  285. hapd->ssl_ctx = NULL;
  286. }
  287. #endif /* EAP_TLS_FUNCS */
  288. #if defined(EAP_SERVER_SIM) || defined(EAP_SERVER_AKA)
  289. if (hapd->eap_sim_db_priv) {
  290. eap_sim_db_deinit(hapd->eap_sim_db_priv);
  291. hapd->eap_sim_db_priv = NULL;
  292. }
  293. #endif /* EAP_SERVER_SIM || EAP_SERVER_AKA */
  294. if (hapd->interface_added &&
  295. hostapd_if_remove(hapd, WPA_IF_AP_BSS, hapd->conf->iface)) {
  296. wpa_printf(MSG_WARNING, "Failed to remove BSS interface %s",
  297. hapd->conf->iface);
  298. }
  299. os_free(hapd->probereq_cb);
  300. hapd->probereq_cb = NULL;
  301. }
  302. /**
  303. * hostapd_cleanup_iface_pre - Preliminary per-interface cleanup
  304. * @iface: Pointer to interface data
  305. *
  306. * This function is called before per-BSS data structures are deinitialized
  307. * with hostapd_cleanup().
  308. */
  309. static void hostapd_cleanup_iface_pre(struct hostapd_iface *iface)
  310. {
  311. }
  312. /**
  313. * hostapd_cleanup_iface - Complete per-interface cleanup
  314. * @iface: Pointer to interface data
  315. *
  316. * This function is called after per-BSS data structures are deinitialized
  317. * with hostapd_cleanup().
  318. */
  319. static void hostapd_cleanup_iface(struct hostapd_iface *iface)
  320. {
  321. hostapd_free_hw_features(iface->hw_features, iface->num_hw_features);
  322. iface->hw_features = NULL;
  323. os_free(iface->current_rates);
  324. iface->current_rates = NULL;
  325. ap_list_deinit(iface);
  326. hostapd_config_free(iface->conf);
  327. iface->conf = NULL;
  328. os_free(iface->config_fname);
  329. os_free(iface->bss);
  330. os_free(iface);
  331. }
  332. static int hostapd_setup_encryption(char *iface, struct hostapd_data *hapd)
  333. {
  334. int i;
  335. hostapd_broadcast_wep_set(hapd);
  336. if (hapd->conf->ssid.wep.default_len)
  337. return 0;
  338. for (i = 0; i < 4; i++) {
  339. if (hapd->conf->ssid.wep.key[i] &&
  340. hostapd_set_key(iface, hapd, WPA_ALG_WEP, NULL, i,
  341. i == hapd->conf->ssid.wep.idx, NULL, 0,
  342. hapd->conf->ssid.wep.key[i],
  343. hapd->conf->ssid.wep.len[i])) {
  344. wpa_printf(MSG_WARNING, "Could not set WEP "
  345. "encryption.");
  346. return -1;
  347. }
  348. if (hapd->conf->ssid.wep.key[i] &&
  349. i == hapd->conf->ssid.wep.idx)
  350. hostapd_set_privacy(hapd, 1);
  351. }
  352. return 0;
  353. }
  354. static int hostapd_flush_old_stations(struct hostapd_data *hapd)
  355. {
  356. int ret = 0;
  357. if (hostapd_drv_none(hapd))
  358. return 0;
  359. wpa_printf(MSG_DEBUG, "Flushing old station entries");
  360. if (hostapd_flush(hapd)) {
  361. wpa_printf(MSG_WARNING, "Could not connect to kernel driver.");
  362. ret = -1;
  363. }
  364. wpa_printf(MSG_DEBUG, "Deauthenticate all stations");
  365. /* New Prism2.5/3 STA firmware versions seem to have issues with this
  366. * broadcast deauth frame. This gets the firmware in odd state where
  367. * nothing works correctly, so let's skip sending this for the hostap
  368. * driver. */
  369. if (hapd->driver && os_strcmp(hapd->driver->name, "hostap") != 0) {
  370. u8 addr[ETH_ALEN];
  371. os_memset(addr, 0xff, ETH_ALEN);
  372. hostapd_sta_deauth(hapd, addr,
  373. WLAN_REASON_PREV_AUTH_NOT_VALID);
  374. }
  375. return ret;
  376. }
  377. static void hostapd_wpa_auth_logger(void *ctx, const u8 *addr,
  378. logger_level level, const char *txt)
  379. {
  380. #ifndef CONFIG_NO_HOSTAPD_LOGGER
  381. struct hostapd_data *hapd = ctx;
  382. int hlevel;
  383. switch (level) {
  384. case LOGGER_WARNING:
  385. hlevel = HOSTAPD_LEVEL_WARNING;
  386. break;
  387. case LOGGER_INFO:
  388. hlevel = HOSTAPD_LEVEL_INFO;
  389. break;
  390. case LOGGER_DEBUG:
  391. default:
  392. hlevel = HOSTAPD_LEVEL_DEBUG;
  393. break;
  394. }
  395. hostapd_logger(hapd, addr, HOSTAPD_MODULE_WPA, hlevel, "%s", txt);
  396. #endif /* CONFIG_NO_HOSTAPD_LOGGER */
  397. }
  398. static void hostapd_wpa_auth_disconnect(void *ctx, const u8 *addr,
  399. u16 reason)
  400. {
  401. struct hostapd_data *hapd = ctx;
  402. struct sta_info *sta;
  403. wpa_printf(MSG_DEBUG, "%s: WPA authenticator requests disconnect: "
  404. "STA " MACSTR " reason %d",
  405. __func__, MAC2STR(addr), reason);
  406. sta = ap_get_sta(hapd, addr);
  407. hostapd_sta_deauth(hapd, addr, reason);
  408. if (sta == NULL)
  409. return;
  410. sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC | WLAN_STA_AUTHORIZED);
  411. eloop_cancel_timeout(ap_handle_timer, hapd, sta);
  412. eloop_register_timeout(0, 0, ap_handle_timer, hapd, sta);
  413. sta->timeout_next = STA_REMOVE;
  414. }
  415. static void hostapd_wpa_auth_mic_failure_report(void *ctx, const u8 *addr)
  416. {
  417. struct hostapd_data *hapd = ctx;
  418. michael_mic_failure(hapd, addr, 0);
  419. }
  420. static void hostapd_wpa_auth_set_eapol(void *ctx, const u8 *addr,
  421. wpa_eapol_variable var, int value)
  422. {
  423. struct hostapd_data *hapd = ctx;
  424. struct sta_info *sta = ap_get_sta(hapd, addr);
  425. if (sta == NULL)
  426. return;
  427. switch (var) {
  428. case WPA_EAPOL_portEnabled:
  429. ieee802_1x_notify_port_enabled(sta->eapol_sm, value);
  430. break;
  431. case WPA_EAPOL_portValid:
  432. ieee802_1x_notify_port_valid(sta->eapol_sm, value);
  433. break;
  434. case WPA_EAPOL_authorized:
  435. ieee802_1x_set_sta_authorized(hapd, sta, value);
  436. break;
  437. case WPA_EAPOL_portControl_Auto:
  438. if (sta->eapol_sm)
  439. sta->eapol_sm->portControl = Auto;
  440. break;
  441. case WPA_EAPOL_keyRun:
  442. if (sta->eapol_sm)
  443. sta->eapol_sm->keyRun = value ? TRUE : FALSE;
  444. break;
  445. case WPA_EAPOL_keyAvailable:
  446. if (sta->eapol_sm)
  447. sta->eapol_sm->eap_if->eapKeyAvailable =
  448. value ? TRUE : FALSE;
  449. break;
  450. case WPA_EAPOL_keyDone:
  451. if (sta->eapol_sm)
  452. sta->eapol_sm->keyDone = value ? TRUE : FALSE;
  453. break;
  454. case WPA_EAPOL_inc_EapolFramesTx:
  455. if (sta->eapol_sm)
  456. sta->eapol_sm->dot1xAuthEapolFramesTx++;
  457. break;
  458. }
  459. }
  460. static int hostapd_wpa_auth_get_eapol(void *ctx, const u8 *addr,
  461. wpa_eapol_variable var)
  462. {
  463. struct hostapd_data *hapd = ctx;
  464. struct sta_info *sta = ap_get_sta(hapd, addr);
  465. if (sta == NULL || sta->eapol_sm == NULL)
  466. return -1;
  467. switch (var) {
  468. case WPA_EAPOL_keyRun:
  469. return sta->eapol_sm->keyRun;
  470. case WPA_EAPOL_keyAvailable:
  471. return sta->eapol_sm->eap_if->eapKeyAvailable;
  472. default:
  473. return -1;
  474. }
  475. }
  476. static const u8 * hostapd_wpa_auth_get_psk(void *ctx, const u8 *addr,
  477. const u8 *prev_psk)
  478. {
  479. struct hostapd_data *hapd = ctx;
  480. return hostapd_get_psk(hapd->conf, addr, prev_psk);
  481. }
  482. static int hostapd_wpa_auth_get_msk(void *ctx, const u8 *addr, u8 *msk,
  483. size_t *len)
  484. {
  485. struct hostapd_data *hapd = ctx;
  486. const u8 *key;
  487. size_t keylen;
  488. struct sta_info *sta;
  489. sta = ap_get_sta(hapd, addr);
  490. if (sta == NULL)
  491. return -1;
  492. key = ieee802_1x_get_key(sta->eapol_sm, &keylen);
  493. if (key == NULL)
  494. return -1;
  495. if (keylen > *len)
  496. keylen = *len;
  497. os_memcpy(msk, key, keylen);
  498. *len = keylen;
  499. return 0;
  500. }
  501. static int hostapd_wpa_auth_set_key(void *ctx, int vlan_id, wpa_alg alg,
  502. const u8 *addr, int idx, u8 *key,
  503. size_t key_len)
  504. {
  505. struct hostapd_data *hapd = ctx;
  506. const char *ifname = hapd->conf->iface;
  507. if (vlan_id > 0) {
  508. ifname = hostapd_get_vlan_id_ifname(hapd->conf->vlan, vlan_id);
  509. if (ifname == NULL)
  510. return -1;
  511. }
  512. return hostapd_set_key(ifname, hapd, alg, addr, idx, 1, NULL, 0,
  513. key, key_len);
  514. }
  515. static int hostapd_wpa_auth_get_seqnum(void *ctx, const u8 *addr, int idx,
  516. u8 *seq)
  517. {
  518. struct hostapd_data *hapd = ctx;
  519. return hostapd_get_seqnum(hapd->conf->iface, hapd, addr, idx, seq);
  520. }
  521. static int hostapd_wpa_auth_send_eapol(void *ctx, const u8 *addr,
  522. const u8 *data, size_t data_len,
  523. int encrypt)
  524. {
  525. struct hostapd_data *hapd = ctx;
  526. return hostapd_send_eapol(hapd, addr, data, data_len, encrypt);
  527. }
  528. static int hostapd_wpa_auth_for_each_sta(
  529. void *ctx, int (*cb)(struct wpa_state_machine *sm, void *ctx),
  530. void *cb_ctx)
  531. {
  532. struct hostapd_data *hapd = ctx;
  533. struct sta_info *sta;
  534. for (sta = hapd->sta_list; sta; sta = sta->next) {
  535. if (sta->wpa_sm && cb(sta->wpa_sm, cb_ctx))
  536. return 1;
  537. }
  538. return 0;
  539. }
  540. struct wpa_auth_iface_iter_data {
  541. int (*cb)(struct wpa_authenticator *sm, void *ctx);
  542. void *cb_ctx;
  543. };
  544. static int wpa_auth_iface_iter(struct hostapd_iface *iface, void *ctx)
  545. {
  546. struct wpa_auth_iface_iter_data *data = ctx;
  547. size_t i;
  548. for (i = 0; i < iface->num_bss; i++) {
  549. if (data->cb(iface->bss[i]->wpa_auth, data->cb_ctx))
  550. return 1;
  551. }
  552. return 0;
  553. }
  554. static int hostapd_wpa_auth_for_each_auth(
  555. void *ctx, int (*cb)(struct wpa_authenticator *sm, void *ctx),
  556. void *cb_ctx)
  557. {
  558. struct wpa_auth_iface_iter_data data;
  559. data.cb = cb;
  560. data.cb_ctx = cb_ctx;
  561. return hostapd_for_each_interface(wpa_auth_iface_iter, &data);
  562. }
  563. static int hostapd_wpa_auth_send_ether(void *ctx, const u8 *dst, u16 proto,
  564. const u8 *data, size_t data_len)
  565. {
  566. struct hostapd_data *hapd = ctx;
  567. if (hapd->driver && hapd->driver->send_ether)
  568. return hapd->driver->send_ether(hapd->drv_priv, dst,
  569. hapd->own_addr, proto,
  570. data, data_len);
  571. if (hapd->l2 == NULL)
  572. return -1;
  573. return l2_packet_send(hapd->l2, dst, proto, data, data_len);
  574. }
  575. #ifdef CONFIG_IEEE80211R
  576. static int hostapd_wpa_auth_send_ft_action(void *ctx, const u8 *dst,
  577. const u8 *data, size_t data_len)
  578. {
  579. struct hostapd_data *hapd = ctx;
  580. int res;
  581. struct ieee80211_mgmt *m;
  582. size_t mlen;
  583. struct sta_info *sta;
  584. sta = ap_get_sta(hapd, dst);
  585. if (sta == NULL || sta->wpa_sm == NULL)
  586. return -1;
  587. m = os_zalloc(sizeof(*m) + data_len);
  588. if (m == NULL)
  589. return -1;
  590. mlen = ((u8 *) &m->u - (u8 *) m) + data_len;
  591. m->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  592. WLAN_FC_STYPE_ACTION);
  593. os_memcpy(m->da, dst, ETH_ALEN);
  594. os_memcpy(m->sa, hapd->own_addr, ETH_ALEN);
  595. os_memcpy(m->bssid, hapd->own_addr, ETH_ALEN);
  596. os_memcpy(&m->u, data, data_len);
  597. res = hostapd_send_mgmt_frame(hapd, (u8 *) m, mlen);
  598. os_free(m);
  599. return res;
  600. }
  601. static struct wpa_state_machine *
  602. hostapd_wpa_auth_add_sta(void *ctx, const u8 *sta_addr)
  603. {
  604. struct hostapd_data *hapd = ctx;
  605. struct sta_info *sta;
  606. sta = ap_sta_add(hapd, sta_addr);
  607. if (sta == NULL)
  608. return NULL;
  609. if (sta->wpa_sm)
  610. return sta->wpa_sm;
  611. sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth, sta->addr);
  612. if (sta->wpa_sm == NULL) {
  613. ap_free_sta(hapd, sta);
  614. return NULL;
  615. }
  616. sta->auth_alg = WLAN_AUTH_FT;
  617. return sta->wpa_sm;
  618. }
  619. static void hostapd_rrb_receive(void *ctx, const u8 *src_addr, const u8 *buf,
  620. size_t len)
  621. {
  622. struct hostapd_data *hapd = ctx;
  623. wpa_ft_rrb_rx(hapd->wpa_auth, src_addr, buf, len);
  624. }
  625. #endif /* CONFIG_IEEE80211R */
  626. /**
  627. * hostapd_validate_bssid_configuration - Validate BSSID configuration
  628. * @iface: Pointer to interface data
  629. * Returns: 0 on success, -1 on failure
  630. *
  631. * This function is used to validate that the configured BSSIDs are valid.
  632. */
  633. static int hostapd_validate_bssid_configuration(struct hostapd_iface *iface)
  634. {
  635. u8 mask[ETH_ALEN] = { 0 };
  636. struct hostapd_data *hapd = iface->bss[0];
  637. unsigned int i = iface->conf->num_bss, bits = 0, j;
  638. int res;
  639. int auto_addr = 0;
  640. if (hostapd_drv_none(hapd))
  641. return 0;
  642. /* Generate BSSID mask that is large enough to cover the BSSIDs. */
  643. /* Determine the bits necessary to cover the number of BSSIDs. */
  644. for (i--; i; i >>= 1)
  645. bits++;
  646. /* Determine the bits necessary to any configured BSSIDs,
  647. if they are higher than the number of BSSIDs. */
  648. for (j = 0; j < iface->conf->num_bss; j++) {
  649. if (hostapd_mac_comp_empty(iface->conf->bss[j].bssid) == 0) {
  650. if (j)
  651. auto_addr++;
  652. continue;
  653. }
  654. for (i = 0; i < ETH_ALEN; i++) {
  655. mask[i] |=
  656. iface->conf->bss[j].bssid[i] ^
  657. hapd->own_addr[i];
  658. }
  659. }
  660. if (!auto_addr)
  661. goto skip_mask_ext;
  662. for (i = 0; i < ETH_ALEN && mask[i] == 0; i++)
  663. ;
  664. j = 0;
  665. if (i < ETH_ALEN) {
  666. j = (5 - i) * 8;
  667. while (mask[i] != 0) {
  668. mask[i] >>= 1;
  669. j++;
  670. }
  671. }
  672. if (bits < j)
  673. bits = j;
  674. if (bits > 40) {
  675. wpa_printf(MSG_ERROR, "Too many bits in the BSSID mask (%u)",
  676. bits);
  677. return -1;
  678. }
  679. os_memset(mask, 0xff, ETH_ALEN);
  680. j = bits / 8;
  681. for (i = 5; i > 5 - j; i--)
  682. mask[i] = 0;
  683. j = bits % 8;
  684. while (j--)
  685. mask[i] <<= 1;
  686. skip_mask_ext:
  687. wpa_printf(MSG_DEBUG, "BSS count %lu, BSSID mask " MACSTR " (%d bits)",
  688. (unsigned long) iface->conf->num_bss, MAC2STR(mask), bits);
  689. res = hostapd_valid_bss_mask(hapd, hapd->own_addr, mask);
  690. if (res == 0)
  691. return 0;
  692. if (res < 0) {
  693. wpa_printf(MSG_ERROR, "Driver did not accept BSSID mask "
  694. MACSTR " for start address " MACSTR ".",
  695. MAC2STR(mask), MAC2STR(hapd->own_addr));
  696. return -1;
  697. }
  698. if (!auto_addr)
  699. return 0;
  700. for (i = 0; i < ETH_ALEN; i++) {
  701. if ((hapd->own_addr[i] & mask[i]) != hapd->own_addr[i]) {
  702. wpa_printf(MSG_ERROR, "Invalid BSSID mask " MACSTR
  703. " for start address " MACSTR ".",
  704. MAC2STR(mask), MAC2STR(hapd->own_addr));
  705. wpa_printf(MSG_ERROR, "Start address must be the "
  706. "first address in the block (i.e., addr "
  707. "AND mask == addr).");
  708. return -1;
  709. }
  710. }
  711. return 0;
  712. }
  713. static int mac_in_conf(struct hostapd_config *conf, const void *a)
  714. {
  715. size_t i;
  716. for (i = 0; i < conf->num_bss; i++) {
  717. if (hostapd_mac_comp(conf->bss[i].bssid, a) == 0) {
  718. return 1;
  719. }
  720. }
  721. return 0;
  722. }
  723. static int hostapd_setup_wpa(struct hostapd_data *hapd)
  724. {
  725. struct wpa_auth_config _conf;
  726. struct wpa_auth_callbacks cb;
  727. const u8 *wpa_ie;
  728. size_t wpa_ie_len;
  729. hostapd_wpa_auth_conf(hapd->conf, &_conf);
  730. os_memset(&cb, 0, sizeof(cb));
  731. cb.ctx = hapd;
  732. cb.logger = hostapd_wpa_auth_logger;
  733. cb.disconnect = hostapd_wpa_auth_disconnect;
  734. cb.mic_failure_report = hostapd_wpa_auth_mic_failure_report;
  735. cb.set_eapol = hostapd_wpa_auth_set_eapol;
  736. cb.get_eapol = hostapd_wpa_auth_get_eapol;
  737. cb.get_psk = hostapd_wpa_auth_get_psk;
  738. cb.get_msk = hostapd_wpa_auth_get_msk;
  739. cb.set_key = hostapd_wpa_auth_set_key;
  740. cb.get_seqnum = hostapd_wpa_auth_get_seqnum;
  741. cb.send_eapol = hostapd_wpa_auth_send_eapol;
  742. cb.for_each_sta = hostapd_wpa_auth_for_each_sta;
  743. cb.for_each_auth = hostapd_wpa_auth_for_each_auth;
  744. cb.send_ether = hostapd_wpa_auth_send_ether;
  745. #ifdef CONFIG_IEEE80211R
  746. cb.send_ft_action = hostapd_wpa_auth_send_ft_action;
  747. cb.add_sta = hostapd_wpa_auth_add_sta;
  748. #endif /* CONFIG_IEEE80211R */
  749. hapd->wpa_auth = wpa_init(hapd->own_addr, &_conf, &cb);
  750. if (hapd->wpa_auth == NULL) {
  751. wpa_printf(MSG_ERROR, "WPA initialization failed.");
  752. return -1;
  753. }
  754. if (hostapd_set_privacy(hapd, 1)) {
  755. wpa_printf(MSG_ERROR, "Could not set PrivacyInvoked "
  756. "for interface %s", hapd->conf->iface);
  757. return -1;
  758. }
  759. wpa_ie = wpa_auth_get_wpa_ie(hapd->wpa_auth, &wpa_ie_len);
  760. if (hostapd_set_generic_elem(hapd, wpa_ie, wpa_ie_len)) {
  761. wpa_printf(MSG_ERROR, "Failed to configure WPA IE for "
  762. "the kernel driver.");
  763. return -1;
  764. }
  765. if (rsn_preauth_iface_init(hapd)) {
  766. wpa_printf(MSG_ERROR, "Initialization of RSN "
  767. "pre-authentication failed.");
  768. return -1;
  769. }
  770. return 0;
  771. }
  772. #ifdef RADIUS_SERVER
  773. static int hostapd_radius_get_eap_user(void *ctx, const u8 *identity,
  774. size_t identity_len, int phase2,
  775. struct eap_user *user)
  776. {
  777. const struct hostapd_eap_user *eap_user;
  778. int i, count;
  779. eap_user = hostapd_get_eap_user(ctx, identity, identity_len, phase2);
  780. if (eap_user == NULL)
  781. return -1;
  782. if (user == NULL)
  783. return 0;
  784. os_memset(user, 0, sizeof(*user));
  785. count = EAP_USER_MAX_METHODS;
  786. if (count > EAP_MAX_METHODS)
  787. count = EAP_MAX_METHODS;
  788. for (i = 0; i < count; i++) {
  789. user->methods[i].vendor = eap_user->methods[i].vendor;
  790. user->methods[i].method = eap_user->methods[i].method;
  791. }
  792. if (eap_user->password) {
  793. user->password = os_malloc(eap_user->password_len);
  794. if (user->password == NULL)
  795. return -1;
  796. os_memcpy(user->password, eap_user->password,
  797. eap_user->password_len);
  798. user->password_len = eap_user->password_len;
  799. user->password_hash = eap_user->password_hash;
  800. }
  801. user->force_version = eap_user->force_version;
  802. user->ttls_auth = eap_user->ttls_auth;
  803. return 0;
  804. }
  805. static int hostapd_setup_radius_srv(struct hostapd_data *hapd,
  806. struct hostapd_bss_config *conf)
  807. {
  808. struct radius_server_conf srv;
  809. os_memset(&srv, 0, sizeof(srv));
  810. srv.client_file = conf->radius_server_clients;
  811. srv.auth_port = conf->radius_server_auth_port;
  812. srv.conf_ctx = conf;
  813. srv.eap_sim_db_priv = hapd->eap_sim_db_priv;
  814. srv.ssl_ctx = hapd->ssl_ctx;
  815. srv.pac_opaque_encr_key = conf->pac_opaque_encr_key;
  816. srv.eap_fast_a_id = conf->eap_fast_a_id;
  817. srv.eap_fast_a_id_len = conf->eap_fast_a_id_len;
  818. srv.eap_fast_a_id_info = conf->eap_fast_a_id_info;
  819. srv.eap_fast_prov = conf->eap_fast_prov;
  820. srv.pac_key_lifetime = conf->pac_key_lifetime;
  821. srv.pac_key_refresh_time = conf->pac_key_refresh_time;
  822. srv.eap_sim_aka_result_ind = conf->eap_sim_aka_result_ind;
  823. srv.tnc = conf->tnc;
  824. srv.wps = hapd->wps;
  825. srv.ipv6 = conf->radius_server_ipv6;
  826. srv.get_eap_user = hostapd_radius_get_eap_user;
  827. srv.eap_req_id_text = conf->eap_req_id_text;
  828. srv.eap_req_id_text_len = conf->eap_req_id_text_len;
  829. hapd->radius_srv = radius_server_init(&srv);
  830. if (hapd->radius_srv == NULL) {
  831. wpa_printf(MSG_ERROR, "RADIUS server initialization failed.");
  832. return -1;
  833. }
  834. return 0;
  835. }
  836. #endif /* RADIUS_SERVER */
  837. /**
  838. * hostapd_setup_bss - Per-BSS setup (initialization)
  839. * @hapd: Pointer to BSS data
  840. * @first: Whether this BSS is the first BSS of an interface
  841. *
  842. * This function is used to initialize all per-BSS data structures and
  843. * resources. This gets called in a loop for each BSS when an interface is
  844. * initialized. Most of the modules that are initialized here will be
  845. * deinitialized in hostapd_cleanup().
  846. */
  847. static int hostapd_setup_bss(struct hostapd_data *hapd, int first)
  848. {
  849. struct hostapd_bss_config *conf = hapd->conf;
  850. u8 ssid[HOSTAPD_MAX_SSID_LEN + 1];
  851. int ssid_len, set_ssid;
  852. if (!first) {
  853. if (hostapd_mac_comp_empty(hapd->conf->bssid) == 0) {
  854. /* Allocate the next available BSSID. */
  855. do {
  856. inc_byte_array(hapd->own_addr, ETH_ALEN);
  857. } while (mac_in_conf(hapd->iconf, hapd->own_addr));
  858. } else {
  859. /* Allocate the configured BSSID. */
  860. os_memcpy(hapd->own_addr, hapd->conf->bssid, ETH_ALEN);
  861. if (hostapd_mac_comp(hapd->own_addr,
  862. hapd->iface->bss[0]->own_addr) ==
  863. 0) {
  864. wpa_printf(MSG_ERROR, "BSS '%s' may not have "
  865. "BSSID set to the MAC address of "
  866. "the radio", hapd->conf->iface);
  867. return -1;
  868. }
  869. }
  870. hapd->interface_added = 1;
  871. if (hostapd_if_add(hapd->iface->bss[0], WPA_IF_AP_BSS,
  872. hapd->conf->iface, hapd->own_addr)) {
  873. wpa_printf(MSG_ERROR, "Failed to add BSS (BSSID="
  874. MACSTR ")", MAC2STR(hapd->own_addr));
  875. return -1;
  876. }
  877. }
  878. hostapd_flush_old_stations(hapd);
  879. hostapd_set_privacy(hapd, 0);
  880. hostapd_broadcast_wep_clear(hapd);
  881. if (hostapd_setup_encryption(hapd->conf->iface, hapd))
  882. return -1;
  883. /*
  884. * Fetch the SSID from the system and use it or,
  885. * if one was specified in the config file, verify they
  886. * match.
  887. */
  888. ssid_len = hostapd_get_ssid(hapd, ssid, sizeof(ssid));
  889. if (ssid_len < 0) {
  890. wpa_printf(MSG_ERROR, "Could not read SSID from system");
  891. return -1;
  892. }
  893. if (conf->ssid.ssid_set) {
  894. /*
  895. * If SSID is specified in the config file and it differs
  896. * from what is being used then force installation of the
  897. * new SSID.
  898. */
  899. set_ssid = (conf->ssid.ssid_len != (size_t) ssid_len ||
  900. os_memcmp(conf->ssid.ssid, ssid, ssid_len) != 0);
  901. } else {
  902. /*
  903. * No SSID in the config file; just use the one we got
  904. * from the system.
  905. */
  906. set_ssid = 0;
  907. conf->ssid.ssid_len = ssid_len;
  908. os_memcpy(conf->ssid.ssid, ssid, conf->ssid.ssid_len);
  909. conf->ssid.ssid[conf->ssid.ssid_len] = '\0';
  910. }
  911. if (!hostapd_drv_none(hapd)) {
  912. wpa_printf(MSG_ERROR, "Using interface %s with hwaddr " MACSTR
  913. " and ssid '%s'",
  914. hapd->conf->iface, MAC2STR(hapd->own_addr),
  915. hapd->conf->ssid.ssid);
  916. }
  917. if (hostapd_setup_wpa_psk(conf)) {
  918. wpa_printf(MSG_ERROR, "WPA-PSK setup failed.");
  919. return -1;
  920. }
  921. /* Set SSID for the kernel driver (to be used in beacon and probe
  922. * response frames) */
  923. if (set_ssid && hostapd_set_ssid(hapd, (u8 *) conf->ssid.ssid,
  924. conf->ssid.ssid_len)) {
  925. wpa_printf(MSG_ERROR, "Could not set SSID for kernel driver");
  926. return -1;
  927. }
  928. if (wpa_debug_level == MSG_MSGDUMP)
  929. conf->radius->msg_dumps = 1;
  930. #ifndef CONFIG_NO_RADIUS
  931. hapd->radius = radius_client_init(hapd, conf->radius);
  932. if (hapd->radius == NULL) {
  933. wpa_printf(MSG_ERROR, "RADIUS client initialization failed.");
  934. return -1;
  935. }
  936. #endif /* CONFIG_NO_RADIUS */
  937. if (hostapd_acl_init(hapd)) {
  938. wpa_printf(MSG_ERROR, "ACL initialization failed.");
  939. return -1;
  940. }
  941. if (hostapd_init_wps(hapd, conf))
  942. return -1;
  943. if (ieee802_1x_init(hapd)) {
  944. wpa_printf(MSG_ERROR, "IEEE 802.1X initialization failed.");
  945. return -1;
  946. }
  947. if (hapd->conf->wpa && hostapd_setup_wpa(hapd))
  948. return -1;
  949. if (accounting_init(hapd)) {
  950. wpa_printf(MSG_ERROR, "Accounting initialization failed.");
  951. return -1;
  952. }
  953. if (hapd->conf->ieee802_11f &&
  954. (hapd->iapp = iapp_init(hapd, hapd->conf->iapp_iface)) == NULL) {
  955. wpa_printf(MSG_ERROR, "IEEE 802.11F (IAPP) initialization "
  956. "failed.");
  957. return -1;
  958. }
  959. if (hostapd_ctrl_iface_init(hapd)) {
  960. wpa_printf(MSG_ERROR, "Failed to setup control interface");
  961. return -1;
  962. }
  963. if (!hostapd_drv_none(hapd) && vlan_init(hapd)) {
  964. wpa_printf(MSG_ERROR, "VLAN initialization failed.");
  965. return -1;
  966. }
  967. #ifdef CONFIG_IEEE80211R
  968. if (!hostapd_drv_none(hapd)) {
  969. hapd->l2 = l2_packet_init(hapd->conf->iface, NULL, ETH_P_RRB,
  970. hostapd_rrb_receive, hapd, 0);
  971. if (hapd->l2 == NULL &&
  972. (hapd->driver == NULL ||
  973. hapd->driver->send_ether == NULL)) {
  974. wpa_printf(MSG_ERROR, "Failed to open l2_packet "
  975. "interface");
  976. return -1;
  977. }
  978. }
  979. #endif /* CONFIG_IEEE80211R */
  980. ieee802_11_set_beacon(hapd);
  981. #ifdef RADIUS_SERVER
  982. if (conf->radius_server_clients &&
  983. hostapd_setup_radius_srv(hapd, conf))
  984. return -1;
  985. #endif /* RADIUS_SERVER */
  986. return 0;
  987. }
  988. static void hostapd_tx_queue_params(struct hostapd_iface *iface)
  989. {
  990. struct hostapd_data *hapd = iface->bss[0];
  991. int i;
  992. struct hostapd_tx_queue_params *p;
  993. for (i = 0; i < NUM_TX_QUEUES; i++) {
  994. p = &iface->conf->tx_queue[i];
  995. if (!p->configured)
  996. continue;
  997. if (hostapd_set_tx_queue_params(hapd, i, p->aifs, p->cwmin,
  998. p->cwmax, p->burst)) {
  999. wpa_printf(MSG_DEBUG, "Failed to set TX queue "
  1000. "parameters for queue %d.", i);
  1001. /* Continue anyway */
  1002. }
  1003. }
  1004. }
  1005. static int setup_interface(struct hostapd_iface *iface)
  1006. {
  1007. struct hostapd_data *hapd = iface->bss[0];
  1008. struct hostapd_bss_config *conf = hapd->conf;
  1009. size_t i;
  1010. char country[4];
  1011. u8 *b = conf->bssid;
  1012. /*
  1013. * Initialize the driver interface and make sure that all BSSes get
  1014. * configured with a pointer to this driver interface.
  1015. */
  1016. if (!(b[0] | b[1] | b[2] | b[3] | b[4] | b[5]))
  1017. b = NULL;
  1018. hapd->drv_priv = hostapd_driver_init(hapd, b);
  1019. if (hapd->drv_priv == NULL) {
  1020. wpa_printf(MSG_ERROR, "%s driver initialization failed.",
  1021. hapd->driver ? hapd->driver->name : "Unknown");
  1022. hapd->driver = NULL;
  1023. return -1;
  1024. }
  1025. for (i = 0; i < iface->num_bss; i++) {
  1026. iface->bss[i]->driver = hapd->driver;
  1027. iface->bss[i]->drv_priv = hapd->drv_priv;
  1028. }
  1029. if (hostapd_validate_bssid_configuration(iface))
  1030. return -1;
  1031. if (hapd->iconf->country[0] && hapd->iconf->country[1]) {
  1032. os_memcpy(country, hapd->iconf->country, 3);
  1033. country[3] = '\0';
  1034. if (hostapd_set_country(hapd, country) < 0) {
  1035. wpa_printf(MSG_ERROR, "Failed to set country code");
  1036. return -1;
  1037. }
  1038. }
  1039. if (hostapd_get_hw_features(iface)) {
  1040. /* Not all drivers support this yet, so continue without hw
  1041. * feature data. */
  1042. } else {
  1043. int ret = hostapd_select_hw_mode(iface);
  1044. if (ret < 0) {
  1045. wpa_printf(MSG_ERROR, "Could not select hw_mode and "
  1046. "channel. (%d)", ret);
  1047. return -1;
  1048. }
  1049. ret = hostapd_check_ht_capab(iface);
  1050. if (ret < 0)
  1051. return -1;
  1052. if (ret == 1) {
  1053. wpa_printf(MSG_DEBUG, "Interface initialization will "
  1054. "be completed in a callback");
  1055. return 0;
  1056. }
  1057. }
  1058. return hostapd_setup_interface_complete(iface, 0);
  1059. }
  1060. int hostapd_setup_interface_complete(struct hostapd_iface *iface, int err)
  1061. {
  1062. struct hostapd_data *hapd = iface->bss[0];
  1063. int freq;
  1064. size_t j;
  1065. u8 *prev_addr;
  1066. if (err) {
  1067. wpa_printf(MSG_ERROR, "Interface initialization failed");
  1068. eloop_terminate();
  1069. return -1;
  1070. }
  1071. wpa_printf(MSG_DEBUG, "Completing interface initialization");
  1072. if (hapd->iconf->channel) {
  1073. freq = hostapd_hw_get_freq(hapd, hapd->iconf->channel);
  1074. wpa_printf(MSG_DEBUG, "Mode: %s Channel: %d "
  1075. "Frequency: %d MHz",
  1076. hostapd_hw_mode_txt(hapd->iconf->hw_mode),
  1077. hapd->iconf->channel, freq);
  1078. if (hostapd_set_freq(hapd, hapd->iconf->hw_mode, freq,
  1079. hapd->iconf->channel,
  1080. hapd->iconf->ieee80211n,
  1081. hapd->iconf->secondary_channel)) {
  1082. wpa_printf(MSG_ERROR, "Could not set channel for "
  1083. "kernel driver");
  1084. return -1;
  1085. }
  1086. }
  1087. if (hapd->iconf->rts_threshold > -1 &&
  1088. hostapd_set_rts(hapd, hapd->iconf->rts_threshold)) {
  1089. wpa_printf(MSG_ERROR, "Could not set RTS threshold for "
  1090. "kernel driver");
  1091. return -1;
  1092. }
  1093. if (hapd->iconf->fragm_threshold > -1 &&
  1094. hostapd_set_frag(hapd, hapd->iconf->fragm_threshold)) {
  1095. wpa_printf(MSG_ERROR, "Could not set fragmentation threshold "
  1096. "for kernel driver");
  1097. return -1;
  1098. }
  1099. prev_addr = hapd->own_addr;
  1100. for (j = 0; j < iface->num_bss; j++) {
  1101. hapd = iface->bss[j];
  1102. if (j)
  1103. os_memcpy(hapd->own_addr, prev_addr, ETH_ALEN);
  1104. if (hostapd_setup_bss(hapd, j == 0))
  1105. return -1;
  1106. if (hostapd_mac_comp_empty(hapd->conf->bssid) == 0)
  1107. prev_addr = hapd->own_addr;
  1108. }
  1109. hostapd_tx_queue_params(iface);
  1110. ap_list_init(iface);
  1111. if (hostapd_driver_commit(hapd) < 0) {
  1112. wpa_printf(MSG_ERROR, "%s: Failed to commit driver "
  1113. "configuration", __func__);
  1114. return -1;
  1115. }
  1116. wpa_printf(MSG_DEBUG, "%s: Setup of interface done.",
  1117. iface->bss[0]->conf->iface);
  1118. return 0;
  1119. }
  1120. /**
  1121. * hostapd_setup_interface - Setup of an interface
  1122. * @iface: Pointer to interface data.
  1123. * Returns: 0 on success, -1 on failure
  1124. *
  1125. * Initializes the driver interface, validates the configuration,
  1126. * and sets driver parameters based on the configuration.
  1127. * Flushes old stations, sets the channel, encryption,
  1128. * beacons, and WDS links based on the configuration.
  1129. */
  1130. int hostapd_setup_interface(struct hostapd_iface *iface)
  1131. {
  1132. int ret;
  1133. ret = setup_interface(iface);
  1134. if (ret) {
  1135. wpa_printf(MSG_DEBUG, "%s: Unable to setup interface.",
  1136. iface->bss[0]->conf->iface);
  1137. eloop_terminate();
  1138. return -1;
  1139. }
  1140. return 0;
  1141. }
  1142. /**
  1143. * hostapd_alloc_bss_data - Allocate and initialize per-BSS data
  1144. * @hapd_iface: Pointer to interface data
  1145. * @conf: Pointer to per-interface configuration
  1146. * @bss: Pointer to per-BSS configuration for this BSS
  1147. * Returns: Pointer to allocated BSS data
  1148. *
  1149. * This function is used to allocate per-BSS data structure. This data will be
  1150. * freed after hostapd_cleanup() is called for it during interface
  1151. * deinitialization.
  1152. */
  1153. struct hostapd_data *
  1154. hostapd_alloc_bss_data(struct hostapd_iface *hapd_iface,
  1155. struct hostapd_config *conf,
  1156. struct hostapd_bss_config *bss)
  1157. {
  1158. struct hostapd_data *hapd;
  1159. hapd = os_zalloc(sizeof(*hapd));
  1160. if (hapd == NULL)
  1161. return NULL;
  1162. hapd->iconf = conf;
  1163. hapd->conf = bss;
  1164. hapd->iface = hapd_iface;
  1165. #ifdef EAP_TLS_FUNCS
  1166. if (hapd->conf->eap_server &&
  1167. (hapd->conf->ca_cert || hapd->conf->server_cert ||
  1168. hapd->conf->dh_file)) {
  1169. struct tls_connection_params params;
  1170. hapd->ssl_ctx = tls_init(NULL);
  1171. if (hapd->ssl_ctx == NULL) {
  1172. wpa_printf(MSG_ERROR, "Failed to initialize TLS");
  1173. goto fail;
  1174. }
  1175. os_memset(&params, 0, sizeof(params));
  1176. params.ca_cert = hapd->conf->ca_cert;
  1177. params.client_cert = hapd->conf->server_cert;
  1178. params.private_key = hapd->conf->private_key;
  1179. params.private_key_passwd = hapd->conf->private_key_passwd;
  1180. params.dh_file = hapd->conf->dh_file;
  1181. if (tls_global_set_params(hapd->ssl_ctx, &params)) {
  1182. wpa_printf(MSG_ERROR, "Failed to set TLS parameters");
  1183. goto fail;
  1184. }
  1185. if (tls_global_set_verify(hapd->ssl_ctx,
  1186. hapd->conf->check_crl)) {
  1187. wpa_printf(MSG_ERROR, "Failed to enable check_crl");
  1188. goto fail;
  1189. }
  1190. }
  1191. #endif /* EAP_TLS_FUNCS */
  1192. #ifdef EAP_SIM_DB
  1193. if (hapd->conf->eap_sim_db) {
  1194. hapd->eap_sim_db_priv =
  1195. eap_sim_db_init(hapd->conf->eap_sim_db,
  1196. hostapd_sim_db_cb, hapd);
  1197. if (hapd->eap_sim_db_priv == NULL) {
  1198. wpa_printf(MSG_ERROR, "Failed to initialize EAP-SIM "
  1199. "database interface");
  1200. goto fail;
  1201. }
  1202. }
  1203. #endif /* EAP_SIM_DB */
  1204. hapd->driver = hapd->iconf->driver;
  1205. return hapd;
  1206. #if defined(EAP_TLS_FUNCS) || defined(EAP_SIM_DB)
  1207. fail:
  1208. #endif
  1209. /* TODO: cleanup allocated resources(?) */
  1210. os_free(hapd);
  1211. return NULL;
  1212. }
  1213. void hostapd_interface_deinit(struct hostapd_iface *iface)
  1214. {
  1215. size_t j;
  1216. if (iface == NULL)
  1217. return;
  1218. hostapd_cleanup_iface_pre(iface);
  1219. for (j = 0; j < iface->num_bss; j++) {
  1220. struct hostapd_data *hapd = iface->bss[j];
  1221. hostapd_free_stas(hapd);
  1222. hostapd_flush_old_stations(hapd);
  1223. hostapd_cleanup(hapd);
  1224. if (j == iface->num_bss - 1 && hapd->driver)
  1225. hostapd_driver_deinit(hapd);
  1226. }
  1227. for (j = 0; j < iface->num_bss; j++)
  1228. os_free(iface->bss[j]);
  1229. hostapd_cleanup_iface(iface);
  1230. }
  1231. int hostapd_register_probereq_cb(struct hostapd_data *hapd,
  1232. void (*cb)(void *ctx, const u8 *sa,
  1233. const u8 *ie, size_t ie_len),
  1234. void *ctx)
  1235. {
  1236. struct hostapd_probereq_cb *n;
  1237. n = os_realloc(hapd->probereq_cb, (hapd->num_probereq_cb + 1) *
  1238. sizeof(struct hostapd_probereq_cb));
  1239. if (n == NULL)
  1240. return -1;
  1241. hapd->probereq_cb = n;
  1242. n = &hapd->probereq_cb[hapd->num_probereq_cb];
  1243. hapd->num_probereq_cb++;
  1244. n->cb = cb;
  1245. n->ctx = ctx;
  1246. return 0;
  1247. }