hostapd.c 40 KB

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