hostapd.c 38 KB

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