hostapd.c 37 KB

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