hostapd.c 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016
  1. /*
  2. * hostapd / Initialization and configuration
  3. * Copyright (c) 2002-2013, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "utils/includes.h"
  9. #include "utils/common.h"
  10. #include "utils/eloop.h"
  11. #include "common/ieee802_11_defs.h"
  12. #include "common/wpa_ctrl.h"
  13. #include "radius/radius_client.h"
  14. #include "radius/radius_das.h"
  15. #include "drivers/driver.h"
  16. #include "hostapd.h"
  17. #include "authsrv.h"
  18. #include "sta_info.h"
  19. #include "accounting.h"
  20. #include "ap_list.h"
  21. #include "beacon.h"
  22. #include "iapp.h"
  23. #include "ieee802_1x.h"
  24. #include "ieee802_11_auth.h"
  25. #include "vlan_init.h"
  26. #include "wpa_auth.h"
  27. #include "wps_hostapd.h"
  28. #include "hw_features.h"
  29. #include "wpa_auth_glue.h"
  30. #include "ap_drv_ops.h"
  31. #include "ap_config.h"
  32. #include "p2p_hostapd.h"
  33. #include "gas_serv.h"
  34. #include "dfs.h"
  35. static int hostapd_flush_old_stations(struct hostapd_data *hapd, u16 reason);
  36. static int hostapd_setup_encryption(char *iface, struct hostapd_data *hapd);
  37. static int hostapd_broadcast_wep_clear(struct hostapd_data *hapd);
  38. static int setup_interface2(struct hostapd_iface *iface);
  39. static void channel_list_update_timeout(void *eloop_ctx, void *timeout_ctx);
  40. extern int wpa_debug_level;
  41. extern struct wpa_driver_ops *wpa_drivers[];
  42. int hostapd_for_each_interface(struct hapd_interfaces *interfaces,
  43. int (*cb)(struct hostapd_iface *iface,
  44. void *ctx), void *ctx)
  45. {
  46. size_t i;
  47. int ret;
  48. for (i = 0; i < interfaces->count; i++) {
  49. ret = cb(interfaces->iface[i], ctx);
  50. if (ret)
  51. return ret;
  52. }
  53. return 0;
  54. }
  55. static void hostapd_reload_bss(struct hostapd_data *hapd)
  56. {
  57. struct hostapd_ssid *ssid;
  58. #ifndef CONFIG_NO_RADIUS
  59. radius_client_reconfig(hapd->radius, hapd->conf->radius);
  60. #endif /* CONFIG_NO_RADIUS */
  61. ssid = &hapd->conf->ssid;
  62. if (!ssid->wpa_psk_set && ssid->wpa_psk && !ssid->wpa_psk->next &&
  63. ssid->wpa_passphrase_set && ssid->wpa_passphrase) {
  64. /*
  65. * Force PSK to be derived again since SSID or passphrase may
  66. * have changed.
  67. */
  68. os_free(ssid->wpa_psk);
  69. ssid->wpa_psk = NULL;
  70. }
  71. if (hostapd_setup_wpa_psk(hapd->conf)) {
  72. wpa_printf(MSG_ERROR, "Failed to re-configure WPA PSK "
  73. "after reloading configuration");
  74. }
  75. if (hapd->conf->ieee802_1x || hapd->conf->wpa)
  76. hostapd_set_drv_ieee8021x(hapd, hapd->conf->iface, 1);
  77. else
  78. hostapd_set_drv_ieee8021x(hapd, hapd->conf->iface, 0);
  79. if (hapd->conf->wpa && hapd->wpa_auth == NULL) {
  80. hostapd_setup_wpa(hapd);
  81. if (hapd->wpa_auth)
  82. wpa_init_keys(hapd->wpa_auth);
  83. } else if (hapd->conf->wpa) {
  84. const u8 *wpa_ie;
  85. size_t wpa_ie_len;
  86. hostapd_reconfig_wpa(hapd);
  87. wpa_ie = wpa_auth_get_wpa_ie(hapd->wpa_auth, &wpa_ie_len);
  88. if (hostapd_set_generic_elem(hapd, wpa_ie, wpa_ie_len))
  89. wpa_printf(MSG_ERROR, "Failed to configure WPA IE for "
  90. "the kernel driver.");
  91. } else if (hapd->wpa_auth) {
  92. wpa_deinit(hapd->wpa_auth);
  93. hapd->wpa_auth = NULL;
  94. hostapd_set_privacy(hapd, 0);
  95. hostapd_setup_encryption(hapd->conf->iface, hapd);
  96. hostapd_set_generic_elem(hapd, (u8 *) "", 0);
  97. }
  98. ieee802_11_set_beacon(hapd);
  99. hostapd_update_wps(hapd);
  100. if (hapd->conf->ssid.ssid_set &&
  101. hostapd_set_ssid(hapd, hapd->conf->ssid.ssid,
  102. hapd->conf->ssid.ssid_len)) {
  103. wpa_printf(MSG_ERROR, "Could not set SSID for kernel driver");
  104. /* try to continue */
  105. }
  106. wpa_printf(MSG_DEBUG, "Reconfigured interface %s", hapd->conf->iface);
  107. }
  108. static void hostapd_clear_old(struct hostapd_iface *iface)
  109. {
  110. size_t j;
  111. /*
  112. * Deauthenticate all stations since the new configuration may not
  113. * allow them to use the BSS anymore.
  114. */
  115. for (j = 0; j < iface->num_bss; j++) {
  116. hostapd_flush_old_stations(iface->bss[j],
  117. WLAN_REASON_PREV_AUTH_NOT_VALID);
  118. hostapd_broadcast_wep_clear(iface->bss[j]);
  119. #ifndef CONFIG_NO_RADIUS
  120. /* TODO: update dynamic data based on changed configuration
  121. * items (e.g., open/close sockets, etc.) */
  122. radius_client_flush(iface->bss[j]->radius, 0);
  123. #endif /* CONFIG_NO_RADIUS */
  124. }
  125. }
  126. int hostapd_reload_config(struct hostapd_iface *iface)
  127. {
  128. struct hostapd_data *hapd = iface->bss[0];
  129. struct hostapd_config *newconf, *oldconf;
  130. size_t j;
  131. if (iface->config_fname == NULL) {
  132. /* Only in-memory config in use - assume it has been updated */
  133. hostapd_clear_old(iface);
  134. for (j = 0; j < iface->num_bss; j++)
  135. hostapd_reload_bss(iface->bss[j]);
  136. return 0;
  137. }
  138. if (iface->interfaces == NULL ||
  139. iface->interfaces->config_read_cb == NULL)
  140. return -1;
  141. newconf = iface->interfaces->config_read_cb(iface->config_fname);
  142. if (newconf == NULL)
  143. return -1;
  144. hostapd_clear_old(iface);
  145. oldconf = hapd->iconf;
  146. iface->conf = newconf;
  147. for (j = 0; j < iface->num_bss; j++) {
  148. hapd = iface->bss[j];
  149. hapd->iconf = newconf;
  150. hapd->conf = newconf->bss[j];
  151. hostapd_reload_bss(hapd);
  152. }
  153. hostapd_config_free(oldconf);
  154. return 0;
  155. }
  156. static void hostapd_broadcast_key_clear_iface(struct hostapd_data *hapd,
  157. char *ifname)
  158. {
  159. int i;
  160. for (i = 0; i < NUM_WEP_KEYS; i++) {
  161. if (hostapd_drv_set_key(ifname, hapd, WPA_ALG_NONE, NULL, i,
  162. 0, NULL, 0, NULL, 0)) {
  163. wpa_printf(MSG_DEBUG, "Failed to clear default "
  164. "encryption keys (ifname=%s keyidx=%d)",
  165. ifname, i);
  166. }
  167. }
  168. #ifdef CONFIG_IEEE80211W
  169. if (hapd->conf->ieee80211w) {
  170. for (i = NUM_WEP_KEYS; i < NUM_WEP_KEYS + 2; i++) {
  171. if (hostapd_drv_set_key(ifname, hapd, WPA_ALG_NONE,
  172. NULL, i, 0, NULL,
  173. 0, NULL, 0)) {
  174. wpa_printf(MSG_DEBUG, "Failed to clear "
  175. "default mgmt encryption keys "
  176. "(ifname=%s keyidx=%d)", ifname, i);
  177. }
  178. }
  179. }
  180. #endif /* CONFIG_IEEE80211W */
  181. }
  182. static int hostapd_broadcast_wep_clear(struct hostapd_data *hapd)
  183. {
  184. hostapd_broadcast_key_clear_iface(hapd, hapd->conf->iface);
  185. return 0;
  186. }
  187. static int hostapd_broadcast_wep_set(struct hostapd_data *hapd)
  188. {
  189. int errors = 0, idx;
  190. struct hostapd_ssid *ssid = &hapd->conf->ssid;
  191. idx = ssid->wep.idx;
  192. if (ssid->wep.default_len &&
  193. hostapd_drv_set_key(hapd->conf->iface,
  194. hapd, WPA_ALG_WEP, broadcast_ether_addr, idx,
  195. 1, NULL, 0, ssid->wep.key[idx],
  196. ssid->wep.len[idx])) {
  197. wpa_printf(MSG_WARNING, "Could not set WEP encryption.");
  198. errors++;
  199. }
  200. return errors;
  201. }
  202. static void hostapd_free_hapd_data(struct hostapd_data *hapd)
  203. {
  204. wpa_printf(MSG_DEBUG, "%s(%s)", __func__, hapd->conf->iface);
  205. iapp_deinit(hapd->iapp);
  206. hapd->iapp = NULL;
  207. accounting_deinit(hapd);
  208. hostapd_deinit_wpa(hapd);
  209. vlan_deinit(hapd);
  210. hostapd_acl_deinit(hapd);
  211. #ifndef CONFIG_NO_RADIUS
  212. radius_client_deinit(hapd->radius);
  213. hapd->radius = NULL;
  214. radius_das_deinit(hapd->radius_das);
  215. hapd->radius_das = NULL;
  216. #endif /* CONFIG_NO_RADIUS */
  217. hostapd_deinit_wps(hapd);
  218. authsrv_deinit(hapd);
  219. if (hapd->interface_added &&
  220. hostapd_if_remove(hapd, WPA_IF_AP_BSS, hapd->conf->iface)) {
  221. wpa_printf(MSG_WARNING, "Failed to remove BSS interface %s",
  222. hapd->conf->iface);
  223. }
  224. os_free(hapd->probereq_cb);
  225. hapd->probereq_cb = NULL;
  226. #ifdef CONFIG_P2P
  227. wpabuf_free(hapd->p2p_beacon_ie);
  228. hapd->p2p_beacon_ie = NULL;
  229. wpabuf_free(hapd->p2p_probe_resp_ie);
  230. hapd->p2p_probe_resp_ie = NULL;
  231. #endif /* CONFIG_P2P */
  232. wpabuf_free(hapd->time_adv);
  233. #ifdef CONFIG_INTERWORKING
  234. gas_serv_deinit(hapd);
  235. #endif /* CONFIG_INTERWORKING */
  236. #ifdef CONFIG_SQLITE
  237. os_free(hapd->tmp_eap_user.identity);
  238. os_free(hapd->tmp_eap_user.password);
  239. #endif /* CONFIG_SQLITE */
  240. }
  241. /**
  242. * hostapd_cleanup - Per-BSS cleanup (deinitialization)
  243. * @hapd: Pointer to BSS data
  244. *
  245. * This function is used to free all per-BSS data structures and resources.
  246. * Most of the modules that are initialized in hostapd_setup_bss() are
  247. * deinitialized here.
  248. */
  249. static void hostapd_cleanup(struct hostapd_data *hapd)
  250. {
  251. wpa_printf(MSG_DEBUG, "%s(hapd=%p (%s))", __func__, hapd,
  252. hapd->conf->iface);
  253. if (hapd->iface->interfaces &&
  254. hapd->iface->interfaces->ctrl_iface_deinit)
  255. hapd->iface->interfaces->ctrl_iface_deinit(hapd);
  256. hostapd_free_hapd_data(hapd);
  257. hapd->started = 0;
  258. }
  259. static void hostapd_cleanup_iface_partial(struct hostapd_iface *iface)
  260. {
  261. wpa_printf(MSG_DEBUG, "%s(%p)", __func__, iface);
  262. hostapd_free_hw_features(iface->hw_features, iface->num_hw_features);
  263. iface->hw_features = NULL;
  264. os_free(iface->current_rates);
  265. iface->current_rates = NULL;
  266. os_free(iface->basic_rates);
  267. iface->basic_rates = NULL;
  268. ap_list_deinit(iface);
  269. }
  270. /**
  271. * hostapd_cleanup_iface - Complete per-interface cleanup
  272. * @iface: Pointer to interface data
  273. *
  274. * This function is called after per-BSS data structures are deinitialized
  275. * with hostapd_cleanup().
  276. */
  277. static void hostapd_cleanup_iface(struct hostapd_iface *iface)
  278. {
  279. wpa_printf(MSG_DEBUG, "%s(%p)", __func__, iface);
  280. eloop_cancel_timeout(channel_list_update_timeout, iface, NULL);
  281. hostapd_cleanup_iface_partial(iface);
  282. hostapd_config_free(iface->conf);
  283. iface->conf = NULL;
  284. os_free(iface->config_fname);
  285. os_free(iface->bss);
  286. wpa_printf(MSG_DEBUG, "%s: free iface=%p", __func__, iface);
  287. os_free(iface);
  288. }
  289. static void hostapd_clear_wep(struct hostapd_data *hapd)
  290. {
  291. if (hapd->drv_priv) {
  292. hostapd_set_privacy(hapd, 0);
  293. hostapd_broadcast_wep_clear(hapd);
  294. }
  295. }
  296. static int hostapd_setup_encryption(char *iface, struct hostapd_data *hapd)
  297. {
  298. int i;
  299. hostapd_broadcast_wep_set(hapd);
  300. if (hapd->conf->ssid.wep.default_len) {
  301. hostapd_set_privacy(hapd, 1);
  302. return 0;
  303. }
  304. /*
  305. * When IEEE 802.1X is not enabled, the driver may need to know how to
  306. * set authentication algorithms for static WEP.
  307. */
  308. hostapd_drv_set_authmode(hapd, hapd->conf->auth_algs);
  309. for (i = 0; i < 4; i++) {
  310. if (hapd->conf->ssid.wep.key[i] &&
  311. hostapd_drv_set_key(iface, hapd, WPA_ALG_WEP, NULL, i,
  312. i == hapd->conf->ssid.wep.idx, NULL, 0,
  313. hapd->conf->ssid.wep.key[i],
  314. hapd->conf->ssid.wep.len[i])) {
  315. wpa_printf(MSG_WARNING, "Could not set WEP "
  316. "encryption.");
  317. return -1;
  318. }
  319. if (hapd->conf->ssid.wep.key[i] &&
  320. i == hapd->conf->ssid.wep.idx)
  321. hostapd_set_privacy(hapd, 1);
  322. }
  323. return 0;
  324. }
  325. static int hostapd_flush_old_stations(struct hostapd_data *hapd, u16 reason)
  326. {
  327. int ret = 0;
  328. u8 addr[ETH_ALEN];
  329. if (hostapd_drv_none(hapd) || hapd->drv_priv == NULL)
  330. return 0;
  331. wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "Flushing old station entries");
  332. if (hostapd_flush(hapd)) {
  333. wpa_msg(hapd->msg_ctx, MSG_WARNING, "Could not connect to "
  334. "kernel driver");
  335. ret = -1;
  336. }
  337. wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "Deauthenticate all stations");
  338. os_memset(addr, 0xff, ETH_ALEN);
  339. hostapd_drv_sta_deauth(hapd, addr, reason);
  340. hostapd_free_stas(hapd);
  341. return ret;
  342. }
  343. /**
  344. * hostapd_validate_bssid_configuration - Validate BSSID configuration
  345. * @iface: Pointer to interface data
  346. * Returns: 0 on success, -1 on failure
  347. *
  348. * This function is used to validate that the configured BSSIDs are valid.
  349. */
  350. static int hostapd_validate_bssid_configuration(struct hostapd_iface *iface)
  351. {
  352. u8 mask[ETH_ALEN] = { 0 };
  353. struct hostapd_data *hapd = iface->bss[0];
  354. unsigned int i = iface->conf->num_bss, bits = 0, j;
  355. int auto_addr = 0;
  356. if (hostapd_drv_none(hapd))
  357. return 0;
  358. /* Generate BSSID mask that is large enough to cover the BSSIDs. */
  359. /* Determine the bits necessary to cover the number of BSSIDs. */
  360. for (i--; i; i >>= 1)
  361. bits++;
  362. /* Determine the bits necessary to any configured BSSIDs,
  363. if they are higher than the number of BSSIDs. */
  364. for (j = 0; j < iface->conf->num_bss; j++) {
  365. if (hostapd_mac_comp_empty(iface->conf->bss[j]->bssid) == 0) {
  366. if (j)
  367. auto_addr++;
  368. continue;
  369. }
  370. for (i = 0; i < ETH_ALEN; i++) {
  371. mask[i] |=
  372. iface->conf->bss[j]->bssid[i] ^
  373. hapd->own_addr[i];
  374. }
  375. }
  376. if (!auto_addr)
  377. goto skip_mask_ext;
  378. for (i = 0; i < ETH_ALEN && mask[i] == 0; i++)
  379. ;
  380. j = 0;
  381. if (i < ETH_ALEN) {
  382. j = (5 - i) * 8;
  383. while (mask[i] != 0) {
  384. mask[i] >>= 1;
  385. j++;
  386. }
  387. }
  388. if (bits < j)
  389. bits = j;
  390. if (bits > 40) {
  391. wpa_printf(MSG_ERROR, "Too many bits in the BSSID mask (%u)",
  392. bits);
  393. return -1;
  394. }
  395. os_memset(mask, 0xff, ETH_ALEN);
  396. j = bits / 8;
  397. for (i = 5; i > 5 - j; i--)
  398. mask[i] = 0;
  399. j = bits % 8;
  400. while (j--)
  401. mask[i] <<= 1;
  402. skip_mask_ext:
  403. wpa_printf(MSG_DEBUG, "BSS count %lu, BSSID mask " MACSTR " (%d bits)",
  404. (unsigned long) iface->conf->num_bss, MAC2STR(mask), bits);
  405. if (!auto_addr)
  406. return 0;
  407. for (i = 0; i < ETH_ALEN; i++) {
  408. if ((hapd->own_addr[i] & mask[i]) != hapd->own_addr[i]) {
  409. wpa_printf(MSG_ERROR, "Invalid BSSID mask " MACSTR
  410. " for start address " MACSTR ".",
  411. MAC2STR(mask), MAC2STR(hapd->own_addr));
  412. wpa_printf(MSG_ERROR, "Start address must be the "
  413. "first address in the block (i.e., addr "
  414. "AND mask == addr).");
  415. return -1;
  416. }
  417. }
  418. return 0;
  419. }
  420. static int mac_in_conf(struct hostapd_config *conf, const void *a)
  421. {
  422. size_t i;
  423. for (i = 0; i < conf->num_bss; i++) {
  424. if (hostapd_mac_comp(conf->bss[i]->bssid, a) == 0) {
  425. return 1;
  426. }
  427. }
  428. return 0;
  429. }
  430. #ifndef CONFIG_NO_RADIUS
  431. static int hostapd_das_nas_mismatch(struct hostapd_data *hapd,
  432. struct radius_das_attrs *attr)
  433. {
  434. /* TODO */
  435. return 0;
  436. }
  437. static struct sta_info * hostapd_das_find_sta(struct hostapd_data *hapd,
  438. struct radius_das_attrs *attr)
  439. {
  440. struct sta_info *sta = NULL;
  441. char buf[128];
  442. if (attr->sta_addr)
  443. sta = ap_get_sta(hapd, attr->sta_addr);
  444. if (sta == NULL && attr->acct_session_id &&
  445. attr->acct_session_id_len == 17) {
  446. for (sta = hapd->sta_list; sta; sta = sta->next) {
  447. os_snprintf(buf, sizeof(buf), "%08X-%08X",
  448. sta->acct_session_id_hi,
  449. sta->acct_session_id_lo);
  450. if (os_memcmp(attr->acct_session_id, buf, 17) == 0)
  451. break;
  452. }
  453. }
  454. if (sta == NULL && attr->cui) {
  455. for (sta = hapd->sta_list; sta; sta = sta->next) {
  456. struct wpabuf *cui;
  457. cui = ieee802_1x_get_radius_cui(sta->eapol_sm);
  458. if (cui && wpabuf_len(cui) == attr->cui_len &&
  459. os_memcmp(wpabuf_head(cui), attr->cui,
  460. attr->cui_len) == 0)
  461. break;
  462. }
  463. }
  464. if (sta == NULL && attr->user_name) {
  465. for (sta = hapd->sta_list; sta; sta = sta->next) {
  466. u8 *identity;
  467. size_t identity_len;
  468. identity = ieee802_1x_get_identity(sta->eapol_sm,
  469. &identity_len);
  470. if (identity &&
  471. identity_len == attr->user_name_len &&
  472. os_memcmp(identity, attr->user_name, identity_len)
  473. == 0)
  474. break;
  475. }
  476. }
  477. return sta;
  478. }
  479. static enum radius_das_res
  480. hostapd_das_disconnect(void *ctx, struct radius_das_attrs *attr)
  481. {
  482. struct hostapd_data *hapd = ctx;
  483. struct sta_info *sta;
  484. if (hostapd_das_nas_mismatch(hapd, attr))
  485. return RADIUS_DAS_NAS_MISMATCH;
  486. sta = hostapd_das_find_sta(hapd, attr);
  487. if (sta == NULL)
  488. return RADIUS_DAS_SESSION_NOT_FOUND;
  489. hostapd_drv_sta_deauth(hapd, sta->addr,
  490. WLAN_REASON_PREV_AUTH_NOT_VALID);
  491. ap_sta_deauthenticate(hapd, sta, WLAN_REASON_PREV_AUTH_NOT_VALID);
  492. return RADIUS_DAS_SUCCESS;
  493. }
  494. #endif /* CONFIG_NO_RADIUS */
  495. /**
  496. * hostapd_setup_bss - Per-BSS setup (initialization)
  497. * @hapd: Pointer to BSS data
  498. * @first: Whether this BSS is the first BSS of an interface; -1 = not first,
  499. * but interface may exist
  500. *
  501. * This function is used to initialize all per-BSS data structures and
  502. * resources. This gets called in a loop for each BSS when an interface is
  503. * initialized. Most of the modules that are initialized here will be
  504. * deinitialized in hostapd_cleanup().
  505. */
  506. static int hostapd_setup_bss(struct hostapd_data *hapd, int first)
  507. {
  508. struct hostapd_bss_config *conf = hapd->conf;
  509. u8 ssid[HOSTAPD_MAX_SSID_LEN + 1];
  510. int ssid_len, set_ssid;
  511. char force_ifname[IFNAMSIZ];
  512. u8 if_addr[ETH_ALEN];
  513. wpa_printf(MSG_DEBUG, "%s(hapd=%p (%s), first=%d)",
  514. __func__, hapd, hapd->conf->iface, first);
  515. if (hapd->started) {
  516. wpa_printf(MSG_ERROR, "%s: Interface %s was already started",
  517. __func__, hapd->conf->iface);
  518. return -1;
  519. }
  520. hapd->started = 1;
  521. if (!first || first == -1) {
  522. if (hostapd_mac_comp_empty(hapd->conf->bssid) == 0) {
  523. /* Allocate the next available BSSID. */
  524. do {
  525. inc_byte_array(hapd->own_addr, ETH_ALEN);
  526. } while (mac_in_conf(hapd->iconf, hapd->own_addr));
  527. } else {
  528. /* Allocate the configured BSSID. */
  529. os_memcpy(hapd->own_addr, hapd->conf->bssid, ETH_ALEN);
  530. if (hostapd_mac_comp(hapd->own_addr,
  531. hapd->iface->bss[0]->own_addr) ==
  532. 0) {
  533. wpa_printf(MSG_ERROR, "BSS '%s' may not have "
  534. "BSSID set to the MAC address of "
  535. "the radio", hapd->conf->iface);
  536. return -1;
  537. }
  538. }
  539. hapd->interface_added = 1;
  540. if (hostapd_if_add(hapd->iface->bss[0], WPA_IF_AP_BSS,
  541. hapd->conf->iface, hapd->own_addr, hapd,
  542. &hapd->drv_priv, force_ifname, if_addr,
  543. hapd->conf->bridge[0] ? hapd->conf->bridge :
  544. NULL, first == -1)) {
  545. wpa_printf(MSG_ERROR, "Failed to add BSS (BSSID="
  546. MACSTR ")", MAC2STR(hapd->own_addr));
  547. return -1;
  548. }
  549. }
  550. if (conf->wmm_enabled < 0)
  551. conf->wmm_enabled = hapd->iconf->ieee80211n;
  552. hostapd_flush_old_stations(hapd, WLAN_REASON_PREV_AUTH_NOT_VALID);
  553. hostapd_set_privacy(hapd, 0);
  554. hostapd_broadcast_wep_clear(hapd);
  555. if (hostapd_setup_encryption(hapd->conf->iface, hapd))
  556. return -1;
  557. /*
  558. * Fetch the SSID from the system and use it or,
  559. * if one was specified in the config file, verify they
  560. * match.
  561. */
  562. ssid_len = hostapd_get_ssid(hapd, ssid, sizeof(ssid));
  563. if (ssid_len < 0) {
  564. wpa_printf(MSG_ERROR, "Could not read SSID from system");
  565. return -1;
  566. }
  567. if (conf->ssid.ssid_set) {
  568. /*
  569. * If SSID is specified in the config file and it differs
  570. * from what is being used then force installation of the
  571. * new SSID.
  572. */
  573. set_ssid = (conf->ssid.ssid_len != (size_t) ssid_len ||
  574. os_memcmp(conf->ssid.ssid, ssid, ssid_len) != 0);
  575. } else {
  576. /*
  577. * No SSID in the config file; just use the one we got
  578. * from the system.
  579. */
  580. set_ssid = 0;
  581. conf->ssid.ssid_len = ssid_len;
  582. os_memcpy(conf->ssid.ssid, ssid, conf->ssid.ssid_len);
  583. }
  584. if (!hostapd_drv_none(hapd)) {
  585. wpa_printf(MSG_ERROR, "Using interface %s with hwaddr " MACSTR
  586. " and ssid \"%s\"",
  587. hapd->conf->iface, MAC2STR(hapd->own_addr),
  588. wpa_ssid_txt(hapd->conf->ssid.ssid,
  589. hapd->conf->ssid.ssid_len));
  590. }
  591. if (hostapd_setup_wpa_psk(conf)) {
  592. wpa_printf(MSG_ERROR, "WPA-PSK setup failed.");
  593. return -1;
  594. }
  595. /* Set SSID for the kernel driver (to be used in beacon and probe
  596. * response frames) */
  597. if (set_ssid && hostapd_set_ssid(hapd, conf->ssid.ssid,
  598. conf->ssid.ssid_len)) {
  599. wpa_printf(MSG_ERROR, "Could not set SSID for kernel driver");
  600. return -1;
  601. }
  602. if (wpa_debug_level == MSG_MSGDUMP)
  603. conf->radius->msg_dumps = 1;
  604. #ifndef CONFIG_NO_RADIUS
  605. hapd->radius = radius_client_init(hapd, conf->radius);
  606. if (hapd->radius == NULL) {
  607. wpa_printf(MSG_ERROR, "RADIUS client initialization failed.");
  608. return -1;
  609. }
  610. if (hapd->conf->radius_das_port) {
  611. struct radius_das_conf das_conf;
  612. os_memset(&das_conf, 0, sizeof(das_conf));
  613. das_conf.port = hapd->conf->radius_das_port;
  614. das_conf.shared_secret = hapd->conf->radius_das_shared_secret;
  615. das_conf.shared_secret_len =
  616. hapd->conf->radius_das_shared_secret_len;
  617. das_conf.client_addr = &hapd->conf->radius_das_client_addr;
  618. das_conf.time_window = hapd->conf->radius_das_time_window;
  619. das_conf.require_event_timestamp =
  620. hapd->conf->radius_das_require_event_timestamp;
  621. das_conf.ctx = hapd;
  622. das_conf.disconnect = hostapd_das_disconnect;
  623. hapd->radius_das = radius_das_init(&das_conf);
  624. if (hapd->radius_das == NULL) {
  625. wpa_printf(MSG_ERROR, "RADIUS DAS initialization "
  626. "failed.");
  627. return -1;
  628. }
  629. }
  630. #endif /* CONFIG_NO_RADIUS */
  631. if (hostapd_acl_init(hapd)) {
  632. wpa_printf(MSG_ERROR, "ACL initialization failed.");
  633. return -1;
  634. }
  635. if (hostapd_init_wps(hapd, conf))
  636. return -1;
  637. if (authsrv_init(hapd) < 0)
  638. return -1;
  639. if (ieee802_1x_init(hapd)) {
  640. wpa_printf(MSG_ERROR, "IEEE 802.1X initialization failed.");
  641. return -1;
  642. }
  643. if (hapd->conf->wpa && hostapd_setup_wpa(hapd))
  644. return -1;
  645. if (accounting_init(hapd)) {
  646. wpa_printf(MSG_ERROR, "Accounting initialization failed.");
  647. return -1;
  648. }
  649. if (hapd->conf->ieee802_11f &&
  650. (hapd->iapp = iapp_init(hapd, hapd->conf->iapp_iface)) == NULL) {
  651. wpa_printf(MSG_ERROR, "IEEE 802.11F (IAPP) initialization "
  652. "failed.");
  653. return -1;
  654. }
  655. #ifdef CONFIG_INTERWORKING
  656. if (gas_serv_init(hapd)) {
  657. wpa_printf(MSG_ERROR, "GAS server initialization failed");
  658. return -1;
  659. }
  660. if (conf->qos_map_set_len &&
  661. hostapd_drv_set_qos_map(hapd, conf->qos_map_set,
  662. conf->qos_map_set_len)) {
  663. wpa_printf(MSG_ERROR, "Failed to initialize QoS Map");
  664. return -1;
  665. }
  666. #endif /* CONFIG_INTERWORKING */
  667. if (!hostapd_drv_none(hapd) && vlan_init(hapd)) {
  668. wpa_printf(MSG_ERROR, "VLAN initialization failed.");
  669. return -1;
  670. }
  671. if (!hapd->conf->start_disabled)
  672. ieee802_11_set_beacon(hapd);
  673. if (hapd->wpa_auth && wpa_init_keys(hapd->wpa_auth) < 0)
  674. return -1;
  675. if (hapd->driver && hapd->driver->set_operstate)
  676. hapd->driver->set_operstate(hapd->drv_priv, 1);
  677. return 0;
  678. }
  679. static void hostapd_tx_queue_params(struct hostapd_iface *iface)
  680. {
  681. struct hostapd_data *hapd = iface->bss[0];
  682. int i;
  683. struct hostapd_tx_queue_params *p;
  684. for (i = 0; i < NUM_TX_QUEUES; i++) {
  685. p = &iface->conf->tx_queue[i];
  686. if (hostapd_set_tx_queue_params(hapd, i, p->aifs, p->cwmin,
  687. p->cwmax, p->burst)) {
  688. wpa_printf(MSG_DEBUG, "Failed to set TX queue "
  689. "parameters for queue %d.", i);
  690. /* Continue anyway */
  691. }
  692. }
  693. }
  694. static int hostapd_set_acl_list(struct hostapd_data *hapd,
  695. struct mac_acl_entry *mac_acl,
  696. int n_entries, u8 accept_acl)
  697. {
  698. struct hostapd_acl_params *acl_params;
  699. int i, err;
  700. acl_params = os_zalloc(sizeof(*acl_params) +
  701. (n_entries * sizeof(acl_params->mac_acl[0])));
  702. if (!acl_params)
  703. return -ENOMEM;
  704. for (i = 0; i < n_entries; i++)
  705. os_memcpy(acl_params->mac_acl[i].addr, mac_acl[i].addr,
  706. ETH_ALEN);
  707. acl_params->acl_policy = accept_acl;
  708. acl_params->num_mac_acl = n_entries;
  709. err = hostapd_drv_set_acl(hapd, acl_params);
  710. os_free(acl_params);
  711. return err;
  712. }
  713. static void hostapd_set_acl(struct hostapd_data *hapd)
  714. {
  715. struct hostapd_config *conf = hapd->iconf;
  716. int err;
  717. u8 accept_acl;
  718. if (hapd->iface->drv_max_acl_mac_addrs == 0)
  719. return;
  720. if (!(conf->bss[0]->num_accept_mac || conf->bss[0]->num_deny_mac))
  721. return;
  722. if (conf->bss[0]->macaddr_acl == DENY_UNLESS_ACCEPTED) {
  723. if (conf->bss[0]->num_accept_mac) {
  724. accept_acl = 1;
  725. err = hostapd_set_acl_list(hapd,
  726. conf->bss[0]->accept_mac,
  727. conf->bss[0]->num_accept_mac,
  728. accept_acl);
  729. if (err) {
  730. wpa_printf(MSG_DEBUG, "Failed to set accept acl");
  731. return;
  732. }
  733. } else {
  734. wpa_printf(MSG_DEBUG, "Mismatch between ACL Policy & Accept/deny lists file");
  735. }
  736. } else if (conf->bss[0]->macaddr_acl == ACCEPT_UNLESS_DENIED) {
  737. if (conf->bss[0]->num_deny_mac) {
  738. accept_acl = 0;
  739. err = hostapd_set_acl_list(hapd, conf->bss[0]->deny_mac,
  740. conf->bss[0]->num_deny_mac,
  741. accept_acl);
  742. if (err) {
  743. wpa_printf(MSG_DEBUG, "Failed to set deny acl");
  744. return;
  745. }
  746. } else {
  747. wpa_printf(MSG_DEBUG, "Mismatch between ACL Policy & Accept/deny lists file");
  748. }
  749. }
  750. }
  751. static int start_ctrl_iface_bss(struct hostapd_data *hapd)
  752. {
  753. if (!hapd->iface->interfaces ||
  754. !hapd->iface->interfaces->ctrl_iface_init)
  755. return 0;
  756. if (hapd->iface->interfaces->ctrl_iface_init(hapd)) {
  757. wpa_printf(MSG_ERROR,
  758. "Failed to setup control interface for %s",
  759. hapd->conf->iface);
  760. return -1;
  761. }
  762. return 0;
  763. }
  764. static int start_ctrl_iface(struct hostapd_iface *iface)
  765. {
  766. size_t i;
  767. if (!iface->interfaces || !iface->interfaces->ctrl_iface_init)
  768. return 0;
  769. for (i = 0; i < iface->num_bss; i++) {
  770. struct hostapd_data *hapd = iface->bss[i];
  771. if (iface->interfaces->ctrl_iface_init(hapd)) {
  772. wpa_printf(MSG_ERROR,
  773. "Failed to setup control interface for %s",
  774. hapd->conf->iface);
  775. return -1;
  776. }
  777. }
  778. return 0;
  779. }
  780. static void channel_list_update_timeout(void *eloop_ctx, void *timeout_ctx)
  781. {
  782. struct hostapd_iface *iface = eloop_ctx;
  783. if (!iface->wait_channel_update) {
  784. wpa_printf(MSG_INFO, "Channel list update timeout, but interface was not waiting for it");
  785. return;
  786. }
  787. /*
  788. * It is possible that the existing channel list is acceptable, so try
  789. * to proceed.
  790. */
  791. wpa_printf(MSG_DEBUG, "Channel list update timeout - try to continue anyway");
  792. setup_interface2(iface);
  793. }
  794. void hostapd_channel_list_updated(struct hostapd_iface *iface, int initiator)
  795. {
  796. if (!iface->wait_channel_update || initiator != REGDOM_SET_BY_USER)
  797. return;
  798. wpa_printf(MSG_DEBUG, "Channel list updated - continue setup");
  799. eloop_cancel_timeout(channel_list_update_timeout, iface, NULL);
  800. setup_interface2(iface);
  801. }
  802. static int setup_interface(struct hostapd_iface *iface)
  803. {
  804. struct hostapd_data *hapd = iface->bss[0];
  805. size_t i;
  806. if (!iface->phy[0]) {
  807. const char *phy = hostapd_drv_get_radio_name(hapd);
  808. if (phy) {
  809. wpa_printf(MSG_DEBUG, "phy: %s", phy);
  810. os_strlcpy(iface->phy, phy, sizeof(iface->phy));
  811. }
  812. }
  813. /*
  814. * Make sure that all BSSes get configured with a pointer to the same
  815. * driver interface.
  816. */
  817. for (i = 1; i < iface->num_bss; i++) {
  818. iface->bss[i]->driver = hapd->driver;
  819. iface->bss[i]->drv_priv = hapd->drv_priv;
  820. }
  821. if (hostapd_validate_bssid_configuration(iface))
  822. return -1;
  823. /*
  824. * Initialize control interfaces early to allow external monitoring of
  825. * channel setup operations that may take considerable amount of time
  826. * especially for DFS cases.
  827. */
  828. if (start_ctrl_iface(iface))
  829. return -1;
  830. if (hapd->iconf->country[0] && hapd->iconf->country[1]) {
  831. char country[4], previous_country[4];
  832. hostapd_set_state(iface, HAPD_IFACE_COUNTRY_UPDATE);
  833. if (hostapd_get_country(hapd, previous_country) < 0)
  834. previous_country[0] = '\0';
  835. os_memcpy(country, hapd->iconf->country, 3);
  836. country[3] = '\0';
  837. if (hostapd_set_country(hapd, country) < 0) {
  838. wpa_printf(MSG_ERROR, "Failed to set country code");
  839. return -1;
  840. }
  841. wpa_printf(MSG_DEBUG, "Previous country code %s, new country code %s",
  842. previous_country, country);
  843. if (os_strncmp(previous_country, country, 2) != 0) {
  844. wpa_printf(MSG_DEBUG, "Continue interface setup after channel list update");
  845. iface->wait_channel_update = 1;
  846. eloop_register_timeout(1, 0,
  847. channel_list_update_timeout,
  848. iface, NULL);
  849. return 0;
  850. }
  851. }
  852. return setup_interface2(iface);
  853. }
  854. static int setup_interface2(struct hostapd_iface *iface)
  855. {
  856. iface->wait_channel_update = 0;
  857. if (hostapd_get_hw_features(iface)) {
  858. /* Not all drivers support this yet, so continue without hw
  859. * feature data. */
  860. } else {
  861. int ret = hostapd_select_hw_mode(iface);
  862. if (ret < 0) {
  863. wpa_printf(MSG_ERROR, "Could not select hw_mode and "
  864. "channel. (%d)", ret);
  865. return -1;
  866. }
  867. if (ret == 1) {
  868. wpa_printf(MSG_DEBUG, "Interface initialization will be completed in a callback (ACS)");
  869. return 0;
  870. }
  871. ret = hostapd_check_ht_capab(iface);
  872. if (ret < 0)
  873. return -1;
  874. if (ret == 1) {
  875. wpa_printf(MSG_DEBUG, "Interface initialization will "
  876. "be completed in a callback");
  877. return 0;
  878. }
  879. if (iface->conf->ieee80211h)
  880. wpa_printf(MSG_DEBUG, "DFS support is enabled");
  881. }
  882. return hostapd_setup_interface_complete(iface, 0);
  883. }
  884. /**
  885. * hostapd_setup_interface_complete - Complete interface setup
  886. *
  887. * This function is called when previous steps in the interface setup has been
  888. * completed. This can also start operations, e.g., DFS, that will require
  889. * additional processing before interface is ready to be enabled. Such
  890. * operations will call this function from eloop callbacks when finished.
  891. */
  892. int hostapd_setup_interface_complete(struct hostapd_iface *iface, int err)
  893. {
  894. struct hostapd_data *hapd = iface->bss[0];
  895. size_t j;
  896. u8 *prev_addr;
  897. if (err) {
  898. wpa_printf(MSG_ERROR, "Interface initialization failed");
  899. hostapd_set_state(iface, HAPD_IFACE_DISABLED);
  900. if (iface->interfaces && iface->interfaces->terminate_on_error)
  901. eloop_terminate();
  902. return -1;
  903. }
  904. wpa_printf(MSG_DEBUG, "Completing interface initialization");
  905. if (iface->conf->channel) {
  906. #ifdef NEED_AP_MLME
  907. int res;
  908. #endif /* NEED_AP_MLME */
  909. iface->freq = hostapd_hw_get_freq(hapd, iface->conf->channel);
  910. wpa_printf(MSG_DEBUG, "Mode: %s Channel: %d "
  911. "Frequency: %d MHz",
  912. hostapd_hw_mode_txt(iface->conf->hw_mode),
  913. iface->conf->channel, iface->freq);
  914. #ifdef NEED_AP_MLME
  915. /* Check DFS */
  916. res = hostapd_handle_dfs(iface);
  917. if (res <= 0)
  918. return res;
  919. #endif /* NEED_AP_MLME */
  920. if (hostapd_set_freq(hapd, hapd->iconf->hw_mode, iface->freq,
  921. hapd->iconf->channel,
  922. hapd->iconf->ieee80211n,
  923. hapd->iconf->ieee80211ac,
  924. hapd->iconf->secondary_channel,
  925. hapd->iconf->vht_oper_chwidth,
  926. hapd->iconf->vht_oper_centr_freq_seg0_idx,
  927. hapd->iconf->vht_oper_centr_freq_seg1_idx)) {
  928. wpa_printf(MSG_ERROR, "Could not set channel for "
  929. "kernel driver");
  930. return -1;
  931. }
  932. }
  933. if (iface->current_mode) {
  934. if (hostapd_prepare_rates(iface, iface->current_mode)) {
  935. wpa_printf(MSG_ERROR, "Failed to prepare rates "
  936. "table.");
  937. hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE80211,
  938. HOSTAPD_LEVEL_WARNING,
  939. "Failed to prepare rates table.");
  940. return -1;
  941. }
  942. }
  943. if (hapd->iconf->rts_threshold > -1 &&
  944. hostapd_set_rts(hapd, hapd->iconf->rts_threshold)) {
  945. wpa_printf(MSG_ERROR, "Could not set RTS threshold for "
  946. "kernel driver");
  947. return -1;
  948. }
  949. if (hapd->iconf->fragm_threshold > -1 &&
  950. hostapd_set_frag(hapd, hapd->iconf->fragm_threshold)) {
  951. wpa_printf(MSG_ERROR, "Could not set fragmentation threshold "
  952. "for kernel driver");
  953. return -1;
  954. }
  955. prev_addr = hapd->own_addr;
  956. for (j = 0; j < iface->num_bss; j++) {
  957. hapd = iface->bss[j];
  958. if (j)
  959. os_memcpy(hapd->own_addr, prev_addr, ETH_ALEN);
  960. if (hostapd_setup_bss(hapd, j == 0))
  961. return -1;
  962. if (hostapd_mac_comp_empty(hapd->conf->bssid) == 0)
  963. prev_addr = hapd->own_addr;
  964. }
  965. hapd = iface->bss[0];
  966. hostapd_tx_queue_params(iface);
  967. ap_list_init(iface);
  968. hostapd_set_acl(hapd);
  969. if (hostapd_driver_commit(hapd) < 0) {
  970. wpa_printf(MSG_ERROR, "%s: Failed to commit driver "
  971. "configuration", __func__);
  972. return -1;
  973. }
  974. /*
  975. * WPS UPnP module can be initialized only when the "upnp_iface" is up.
  976. * If "interface" and "upnp_iface" are the same (e.g., non-bridge
  977. * mode), the interface is up only after driver_commit, so initialize
  978. * WPS after driver_commit.
  979. */
  980. for (j = 0; j < iface->num_bss; j++) {
  981. if (hostapd_init_wps_complete(iface->bss[j]))
  982. return -1;
  983. }
  984. hostapd_set_state(iface, HAPD_IFACE_ENABLED);
  985. wpa_msg(iface->bss[0]->msg_ctx, MSG_INFO, AP_EVENT_ENABLED);
  986. if (hapd->setup_complete_cb)
  987. hapd->setup_complete_cb(hapd->setup_complete_cb_ctx);
  988. wpa_printf(MSG_DEBUG, "%s: Setup of interface done.",
  989. iface->bss[0]->conf->iface);
  990. if (iface->interfaces && iface->interfaces->terminate_on_error > 0)
  991. iface->interfaces->terminate_on_error--;
  992. return 0;
  993. }
  994. /**
  995. * hostapd_setup_interface - Setup of an interface
  996. * @iface: Pointer to interface data.
  997. * Returns: 0 on success, -1 on failure
  998. *
  999. * Initializes the driver interface, validates the configuration,
  1000. * and sets driver parameters based on the configuration.
  1001. * Flushes old stations, sets the channel, encryption,
  1002. * beacons, and WDS links based on the configuration.
  1003. *
  1004. * If interface setup requires more time, e.g., to perform HT co-ex scans, ACS,
  1005. * or DFS operations, this function returns 0 before such operations have been
  1006. * completed. The pending operations are registered into eloop and will be
  1007. * completed from eloop callbacks. Those callbacks end up calling
  1008. * hostapd_setup_interface_complete() once setup has been completed.
  1009. */
  1010. int hostapd_setup_interface(struct hostapd_iface *iface)
  1011. {
  1012. int ret;
  1013. ret = setup_interface(iface);
  1014. if (ret) {
  1015. wpa_printf(MSG_ERROR, "%s: Unable to setup interface.",
  1016. iface->bss[0]->conf->iface);
  1017. return -1;
  1018. }
  1019. return 0;
  1020. }
  1021. /**
  1022. * hostapd_alloc_bss_data - Allocate and initialize per-BSS data
  1023. * @hapd_iface: Pointer to interface data
  1024. * @conf: Pointer to per-interface configuration
  1025. * @bss: Pointer to per-BSS configuration for this BSS
  1026. * Returns: Pointer to allocated BSS data
  1027. *
  1028. * This function is used to allocate per-BSS data structure. This data will be
  1029. * freed after hostapd_cleanup() is called for it during interface
  1030. * deinitialization.
  1031. */
  1032. struct hostapd_data *
  1033. hostapd_alloc_bss_data(struct hostapd_iface *hapd_iface,
  1034. struct hostapd_config *conf,
  1035. struct hostapd_bss_config *bss)
  1036. {
  1037. struct hostapd_data *hapd;
  1038. hapd = os_zalloc(sizeof(*hapd));
  1039. if (hapd == NULL)
  1040. return NULL;
  1041. hapd->new_assoc_sta_cb = hostapd_new_assoc_sta;
  1042. hapd->iconf = conf;
  1043. hapd->conf = bss;
  1044. hapd->iface = hapd_iface;
  1045. hapd->driver = hapd->iconf->driver;
  1046. hapd->ctrl_sock = -1;
  1047. return hapd;
  1048. }
  1049. static void hostapd_bss_deinit(struct hostapd_data *hapd)
  1050. {
  1051. wpa_printf(MSG_DEBUG, "%s: deinit bss %s", __func__,
  1052. hapd->conf->iface);
  1053. hostapd_free_stas(hapd);
  1054. hostapd_flush_old_stations(hapd, WLAN_REASON_DEAUTH_LEAVING);
  1055. hostapd_clear_wep(hapd);
  1056. hostapd_cleanup(hapd);
  1057. }
  1058. void hostapd_interface_deinit(struct hostapd_iface *iface)
  1059. {
  1060. int j;
  1061. wpa_printf(MSG_DEBUG, "%s(%p)", __func__, iface);
  1062. if (iface == NULL)
  1063. return;
  1064. eloop_cancel_timeout(channel_list_update_timeout, iface, NULL);
  1065. iface->wait_channel_update = 0;
  1066. for (j = iface->num_bss - 1; j >= 0; j--)
  1067. hostapd_bss_deinit(iface->bss[j]);
  1068. }
  1069. void hostapd_interface_free(struct hostapd_iface *iface)
  1070. {
  1071. size_t j;
  1072. wpa_printf(MSG_DEBUG, "%s(%p)", __func__, iface);
  1073. for (j = 0; j < iface->num_bss; j++) {
  1074. wpa_printf(MSG_DEBUG, "%s: free hapd %p",
  1075. __func__, iface->bss[j]);
  1076. os_free(iface->bss[j]);
  1077. }
  1078. hostapd_cleanup_iface(iface);
  1079. }
  1080. /**
  1081. * hostapd_init - Allocate and initialize per-interface data
  1082. * @config_file: Path to the configuration file
  1083. * Returns: Pointer to the allocated interface data or %NULL on failure
  1084. *
  1085. * This function is used to allocate main data structures for per-interface
  1086. * data. The allocated data buffer will be freed by calling
  1087. * hostapd_cleanup_iface().
  1088. */
  1089. struct hostapd_iface * hostapd_init(struct hapd_interfaces *interfaces,
  1090. const char *config_file)
  1091. {
  1092. struct hostapd_iface *hapd_iface = NULL;
  1093. struct hostapd_config *conf = NULL;
  1094. struct hostapd_data *hapd;
  1095. size_t i;
  1096. hapd_iface = os_zalloc(sizeof(*hapd_iface));
  1097. if (hapd_iface == NULL)
  1098. goto fail;
  1099. hapd_iface->config_fname = os_strdup(config_file);
  1100. if (hapd_iface->config_fname == NULL)
  1101. goto fail;
  1102. conf = interfaces->config_read_cb(hapd_iface->config_fname);
  1103. if (conf == NULL)
  1104. goto fail;
  1105. hapd_iface->conf = conf;
  1106. hapd_iface->num_bss = conf->num_bss;
  1107. hapd_iface->bss = os_calloc(conf->num_bss,
  1108. sizeof(struct hostapd_data *));
  1109. if (hapd_iface->bss == NULL)
  1110. goto fail;
  1111. for (i = 0; i < conf->num_bss; i++) {
  1112. hapd = hapd_iface->bss[i] =
  1113. hostapd_alloc_bss_data(hapd_iface, conf,
  1114. conf->bss[i]);
  1115. if (hapd == NULL)
  1116. goto fail;
  1117. hapd->msg_ctx = hapd;
  1118. }
  1119. return hapd_iface;
  1120. fail:
  1121. wpa_printf(MSG_ERROR, "Failed to set up interface with %s",
  1122. config_file);
  1123. if (conf)
  1124. hostapd_config_free(conf);
  1125. if (hapd_iface) {
  1126. os_free(hapd_iface->config_fname);
  1127. os_free(hapd_iface->bss);
  1128. wpa_printf(MSG_DEBUG, "%s: free iface %p",
  1129. __func__, hapd_iface);
  1130. os_free(hapd_iface);
  1131. }
  1132. return NULL;
  1133. }
  1134. static int ifname_in_use(struct hapd_interfaces *interfaces, const char *ifname)
  1135. {
  1136. size_t i, j;
  1137. for (i = 0; i < interfaces->count; i++) {
  1138. struct hostapd_iface *iface = interfaces->iface[i];
  1139. for (j = 0; j < iface->num_bss; j++) {
  1140. struct hostapd_data *hapd = iface->bss[j];
  1141. if (os_strcmp(ifname, hapd->conf->iface) == 0)
  1142. return 1;
  1143. }
  1144. }
  1145. return 0;
  1146. }
  1147. /**
  1148. * hostapd_interface_init_bss - Read configuration file and init BSS data
  1149. *
  1150. * This function is used to parse configuration file for a BSS. This BSS is
  1151. * added to an existing interface sharing the same radio (if any) or a new
  1152. * interface is created if this is the first interface on a radio. This
  1153. * allocate memory for the BSS. No actual driver operations are started.
  1154. *
  1155. * This is similar to hostapd_interface_init(), but for a case where the
  1156. * configuration is used to add a single BSS instead of all BSSes for a radio.
  1157. */
  1158. struct hostapd_iface *
  1159. hostapd_interface_init_bss(struct hapd_interfaces *interfaces, const char *phy,
  1160. const char *config_fname, int debug)
  1161. {
  1162. struct hostapd_iface *new_iface = NULL, *iface = NULL;
  1163. struct hostapd_data *hapd;
  1164. int k;
  1165. size_t i, bss_idx;
  1166. if (!phy || !*phy)
  1167. return NULL;
  1168. for (i = 0; i < interfaces->count; i++) {
  1169. if (os_strcmp(interfaces->iface[i]->phy, phy) == 0) {
  1170. iface = interfaces->iface[i];
  1171. break;
  1172. }
  1173. }
  1174. wpa_printf(MSG_INFO, "Configuration file: %s (phy %s)%s",
  1175. config_fname, phy, iface ? "" : " --> new PHY");
  1176. if (iface) {
  1177. struct hostapd_config *conf;
  1178. struct hostapd_bss_config **tmp_conf;
  1179. struct hostapd_data **tmp_bss;
  1180. struct hostapd_bss_config *bss;
  1181. const char *ifname;
  1182. /* Add new BSS to existing iface */
  1183. conf = interfaces->config_read_cb(config_fname);
  1184. if (conf == NULL)
  1185. return NULL;
  1186. if (conf->num_bss > 1) {
  1187. wpa_printf(MSG_ERROR, "Multiple BSSes specified in BSS-config");
  1188. hostapd_config_free(conf);
  1189. return NULL;
  1190. }
  1191. ifname = conf->bss[0]->iface;
  1192. if (ifname[0] != '\0' && ifname_in_use(interfaces, ifname)) {
  1193. wpa_printf(MSG_ERROR,
  1194. "Interface name %s already in use", ifname);
  1195. hostapd_config_free(conf);
  1196. return NULL;
  1197. }
  1198. tmp_conf = os_realloc_array(
  1199. iface->conf->bss, iface->conf->num_bss + 1,
  1200. sizeof(struct hostapd_bss_config *));
  1201. tmp_bss = os_realloc_array(iface->bss, iface->num_bss + 1,
  1202. sizeof(struct hostapd_data *));
  1203. if (tmp_bss)
  1204. iface->bss = tmp_bss;
  1205. if (tmp_conf) {
  1206. iface->conf->bss = tmp_conf;
  1207. iface->conf->last_bss = tmp_conf[0];
  1208. }
  1209. if (tmp_bss == NULL || tmp_conf == NULL) {
  1210. hostapd_config_free(conf);
  1211. return NULL;
  1212. }
  1213. bss = iface->conf->bss[iface->conf->num_bss] = conf->bss[0];
  1214. iface->conf->num_bss++;
  1215. hapd = hostapd_alloc_bss_data(iface, iface->conf, bss);
  1216. if (hapd == NULL) {
  1217. iface->conf->num_bss--;
  1218. hostapd_config_free(conf);
  1219. return NULL;
  1220. }
  1221. iface->conf->last_bss = bss;
  1222. iface->bss[iface->num_bss] = hapd;
  1223. hapd->msg_ctx = hapd;
  1224. bss_idx = iface->num_bss++;
  1225. conf->num_bss--;
  1226. conf->bss[0] = NULL;
  1227. hostapd_config_free(conf);
  1228. } else {
  1229. /* Add a new iface with the first BSS */
  1230. new_iface = iface = hostapd_init(interfaces, config_fname);
  1231. if (!iface)
  1232. return NULL;
  1233. os_strlcpy(iface->phy, phy, sizeof(iface->phy));
  1234. iface->interfaces = interfaces;
  1235. bss_idx = 0;
  1236. }
  1237. for (k = 0; k < debug; k++) {
  1238. if (iface->bss[bss_idx]->conf->logger_stdout_level > 0)
  1239. iface->bss[bss_idx]->conf->logger_stdout_level--;
  1240. }
  1241. if (iface->conf->bss[bss_idx]->iface[0] == '\0' &&
  1242. !hostapd_drv_none(iface->bss[bss_idx])) {
  1243. wpa_printf(MSG_ERROR, "Interface name not specified in %s",
  1244. config_fname);
  1245. if (new_iface)
  1246. hostapd_interface_deinit_free(new_iface);
  1247. return NULL;
  1248. }
  1249. return iface;
  1250. }
  1251. void hostapd_interface_deinit_free(struct hostapd_iface *iface)
  1252. {
  1253. const struct wpa_driver_ops *driver;
  1254. void *drv_priv;
  1255. wpa_printf(MSG_DEBUG, "%s(%p)", __func__, iface);
  1256. if (iface == NULL)
  1257. return;
  1258. wpa_printf(MSG_DEBUG, "%s: num_bss=%u conf->num_bss=%u",
  1259. __func__, (unsigned int) iface->num_bss,
  1260. (unsigned int) iface->conf->num_bss);
  1261. driver = iface->bss[0]->driver;
  1262. drv_priv = iface->bss[0]->drv_priv;
  1263. hostapd_interface_deinit(iface);
  1264. wpa_printf(MSG_DEBUG, "%s: driver=%p drv_priv=%p -> hapd_deinit",
  1265. __func__, driver, drv_priv);
  1266. if (driver && driver->hapd_deinit && drv_priv)
  1267. driver->hapd_deinit(drv_priv);
  1268. hostapd_interface_free(iface);
  1269. }
  1270. int hostapd_enable_iface(struct hostapd_iface *hapd_iface)
  1271. {
  1272. if (hapd_iface->bss[0]->drv_priv != NULL) {
  1273. wpa_printf(MSG_ERROR, "Interface %s already enabled",
  1274. hapd_iface->conf->bss[0]->iface);
  1275. return -1;
  1276. }
  1277. wpa_printf(MSG_DEBUG, "Enable interface %s",
  1278. hapd_iface->conf->bss[0]->iface);
  1279. if (hapd_iface->interfaces == NULL ||
  1280. hapd_iface->interfaces->driver_init == NULL ||
  1281. hapd_iface->interfaces->driver_init(hapd_iface))
  1282. return -1;
  1283. if (hostapd_setup_interface(hapd_iface)) {
  1284. const struct wpa_driver_ops *driver;
  1285. void *drv_priv;
  1286. driver = hapd_iface->bss[0]->driver;
  1287. drv_priv = hapd_iface->bss[0]->drv_priv;
  1288. wpa_printf(MSG_DEBUG, "%s: driver=%p drv_priv=%p -> hapd_deinit",
  1289. __func__, driver, drv_priv);
  1290. if (driver && driver->hapd_deinit && drv_priv) {
  1291. driver->hapd_deinit(drv_priv);
  1292. hapd_iface->bss[0]->drv_priv = NULL;
  1293. }
  1294. return -1;
  1295. }
  1296. return 0;
  1297. }
  1298. int hostapd_reload_iface(struct hostapd_iface *hapd_iface)
  1299. {
  1300. size_t j;
  1301. wpa_printf(MSG_DEBUG, "Reload interface %s",
  1302. hapd_iface->conf->bss[0]->iface);
  1303. for (j = 0; j < hapd_iface->num_bss; j++)
  1304. hostapd_set_security_params(hapd_iface->conf->bss[j]);
  1305. if (hostapd_config_check(hapd_iface->conf) < 0) {
  1306. wpa_printf(MSG_ERROR, "Updated configuration is invalid");
  1307. return -1;
  1308. }
  1309. hostapd_clear_old(hapd_iface);
  1310. for (j = 0; j < hapd_iface->num_bss; j++)
  1311. hostapd_reload_bss(hapd_iface->bss[j]);
  1312. return 0;
  1313. }
  1314. int hostapd_disable_iface(struct hostapd_iface *hapd_iface)
  1315. {
  1316. size_t j;
  1317. const struct wpa_driver_ops *driver;
  1318. void *drv_priv;
  1319. if (hapd_iface == NULL)
  1320. return -1;
  1321. wpa_msg(hapd_iface->bss[0]->msg_ctx, MSG_INFO, AP_EVENT_DISABLED);
  1322. driver = hapd_iface->bss[0]->driver;
  1323. drv_priv = hapd_iface->bss[0]->drv_priv;
  1324. /* whatever hostapd_interface_deinit does */
  1325. for (j = 0; j < hapd_iface->num_bss; j++) {
  1326. struct hostapd_data *hapd = hapd_iface->bss[j];
  1327. hostapd_free_stas(hapd);
  1328. hostapd_flush_old_stations(hapd, WLAN_REASON_DEAUTH_LEAVING);
  1329. hostapd_clear_wep(hapd);
  1330. hostapd_free_hapd_data(hapd);
  1331. }
  1332. wpa_printf(MSG_DEBUG, "%s: driver=%p drv_priv=%p -> hapd_deinit",
  1333. __func__, driver, drv_priv);
  1334. if (driver && driver->hapd_deinit && drv_priv) {
  1335. driver->hapd_deinit(drv_priv);
  1336. hapd_iface->bss[0]->drv_priv = NULL;
  1337. }
  1338. /* From hostapd_cleanup_iface: These were initialized in
  1339. * hostapd_setup_interface and hostapd_setup_interface_complete
  1340. */
  1341. hostapd_cleanup_iface_partial(hapd_iface);
  1342. wpa_printf(MSG_DEBUG, "Interface %s disabled",
  1343. hapd_iface->bss[0]->conf->iface);
  1344. hostapd_set_state(hapd_iface, HAPD_IFACE_DISABLED);
  1345. return 0;
  1346. }
  1347. static struct hostapd_iface *
  1348. hostapd_iface_alloc(struct hapd_interfaces *interfaces)
  1349. {
  1350. struct hostapd_iface **iface, *hapd_iface;
  1351. iface = os_realloc_array(interfaces->iface, interfaces->count + 1,
  1352. sizeof(struct hostapd_iface *));
  1353. if (iface == NULL)
  1354. return NULL;
  1355. interfaces->iface = iface;
  1356. hapd_iface = interfaces->iface[interfaces->count] =
  1357. os_zalloc(sizeof(*hapd_iface));
  1358. if (hapd_iface == NULL) {
  1359. wpa_printf(MSG_ERROR, "%s: Failed to allocate memory for "
  1360. "the interface", __func__);
  1361. return NULL;
  1362. }
  1363. interfaces->count++;
  1364. hapd_iface->interfaces = interfaces;
  1365. return hapd_iface;
  1366. }
  1367. static struct hostapd_config *
  1368. hostapd_config_alloc(struct hapd_interfaces *interfaces, const char *ifname,
  1369. const char *ctrl_iface)
  1370. {
  1371. struct hostapd_bss_config *bss;
  1372. struct hostapd_config *conf;
  1373. /* Allocates memory for bss and conf */
  1374. conf = hostapd_config_defaults();
  1375. if (conf == NULL) {
  1376. wpa_printf(MSG_ERROR, "%s: Failed to allocate memory for "
  1377. "configuration", __func__);
  1378. return NULL;
  1379. }
  1380. conf->driver = wpa_drivers[0];
  1381. if (conf->driver == NULL) {
  1382. wpa_printf(MSG_ERROR, "No driver wrappers registered!");
  1383. hostapd_config_free(conf);
  1384. return NULL;
  1385. }
  1386. bss = conf->last_bss = conf->bss[0];
  1387. os_strlcpy(bss->iface, ifname, sizeof(bss->iface));
  1388. bss->ctrl_interface = os_strdup(ctrl_iface);
  1389. if (bss->ctrl_interface == NULL) {
  1390. hostapd_config_free(conf);
  1391. return NULL;
  1392. }
  1393. /* Reading configuration file skipped, will be done in SET!
  1394. * From reading the configuration till the end has to be done in
  1395. * SET
  1396. */
  1397. return conf;
  1398. }
  1399. static struct hostapd_iface * hostapd_data_alloc(
  1400. struct hapd_interfaces *interfaces, struct hostapd_config *conf)
  1401. {
  1402. size_t i;
  1403. struct hostapd_iface *hapd_iface =
  1404. interfaces->iface[interfaces->count - 1];
  1405. struct hostapd_data *hapd;
  1406. hapd_iface->conf = conf;
  1407. hapd_iface->num_bss = conf->num_bss;
  1408. hapd_iface->bss = os_zalloc(conf->num_bss *
  1409. sizeof(struct hostapd_data *));
  1410. if (hapd_iface->bss == NULL)
  1411. return NULL;
  1412. for (i = 0; i < conf->num_bss; i++) {
  1413. hapd = hapd_iface->bss[i] =
  1414. hostapd_alloc_bss_data(hapd_iface, conf, conf->bss[i]);
  1415. if (hapd == NULL)
  1416. return NULL;
  1417. hapd->msg_ctx = hapd;
  1418. }
  1419. hapd_iface->interfaces = interfaces;
  1420. return hapd_iface;
  1421. }
  1422. int hostapd_add_iface(struct hapd_interfaces *interfaces, char *buf)
  1423. {
  1424. struct hostapd_config *conf = NULL;
  1425. struct hostapd_iface *hapd_iface = NULL, *new_iface = NULL;
  1426. struct hostapd_data *hapd;
  1427. char *ptr;
  1428. size_t i, j;
  1429. const char *conf_file = NULL, *phy_name = NULL;
  1430. if (os_strncmp(buf, "bss_config=", 11) == 0) {
  1431. char *pos;
  1432. phy_name = buf + 11;
  1433. pos = os_strchr(phy_name, ':');
  1434. if (!pos)
  1435. return -1;
  1436. *pos++ = '\0';
  1437. conf_file = pos;
  1438. if (!os_strlen(conf_file))
  1439. return -1;
  1440. hapd_iface = hostapd_interface_init_bss(interfaces, phy_name,
  1441. conf_file, 0);
  1442. if (!hapd_iface)
  1443. return -1;
  1444. for (j = 0; j < interfaces->count; j++) {
  1445. if (interfaces->iface[j] == hapd_iface)
  1446. break;
  1447. }
  1448. if (j == interfaces->count) {
  1449. struct hostapd_iface **tmp;
  1450. tmp = os_realloc_array(interfaces->iface,
  1451. interfaces->count + 1,
  1452. sizeof(struct hostapd_iface *));
  1453. if (!tmp) {
  1454. hostapd_interface_deinit_free(hapd_iface);
  1455. return -1;
  1456. }
  1457. interfaces->iface = tmp;
  1458. interfaces->iface[interfaces->count++] = hapd_iface;
  1459. new_iface = hapd_iface;
  1460. }
  1461. if (new_iface) {
  1462. if (interfaces->driver_init(hapd_iface) ||
  1463. hostapd_setup_interface(hapd_iface)) {
  1464. interfaces->count--;
  1465. goto fail;
  1466. }
  1467. } else {
  1468. /* Assign new BSS with bss[0]'s driver info */
  1469. hapd = hapd_iface->bss[hapd_iface->num_bss - 1];
  1470. hapd->driver = hapd_iface->bss[0]->driver;
  1471. hapd->drv_priv = hapd_iface->bss[0]->drv_priv;
  1472. os_memcpy(hapd->own_addr, hapd_iface->bss[0]->own_addr,
  1473. ETH_ALEN);
  1474. if (start_ctrl_iface_bss(hapd) < 0 ||
  1475. (hapd_iface->state == HAPD_IFACE_ENABLED &&
  1476. hostapd_setup_bss(hapd, -1))) {
  1477. hapd_iface->conf->num_bss--;
  1478. hapd_iface->num_bss--;
  1479. wpa_printf(MSG_DEBUG, "%s: free hapd %p %s",
  1480. __func__, hapd, hapd->conf->iface);
  1481. os_free(hapd);
  1482. return -1;
  1483. }
  1484. }
  1485. return 0;
  1486. }
  1487. ptr = os_strchr(buf, ' ');
  1488. if (ptr == NULL)
  1489. return -1;
  1490. *ptr++ = '\0';
  1491. if (os_strncmp(ptr, "config=", 7) == 0)
  1492. conf_file = ptr + 7;
  1493. for (i = 0; i < interfaces->count; i++) {
  1494. if (!os_strcmp(interfaces->iface[i]->conf->bss[0]->iface,
  1495. buf)) {
  1496. wpa_printf(MSG_INFO, "Cannot add interface - it "
  1497. "already exists");
  1498. return -1;
  1499. }
  1500. }
  1501. hapd_iface = hostapd_iface_alloc(interfaces);
  1502. if (hapd_iface == NULL) {
  1503. wpa_printf(MSG_ERROR, "%s: Failed to allocate memory "
  1504. "for interface", __func__);
  1505. goto fail;
  1506. }
  1507. if (conf_file && interfaces->config_read_cb) {
  1508. conf = interfaces->config_read_cb(conf_file);
  1509. if (conf && conf->bss)
  1510. os_strlcpy(conf->bss[0]->iface, buf,
  1511. sizeof(conf->bss[0]->iface));
  1512. } else
  1513. conf = hostapd_config_alloc(interfaces, buf, ptr);
  1514. if (conf == NULL || conf->bss == NULL) {
  1515. wpa_printf(MSG_ERROR, "%s: Failed to allocate memory "
  1516. "for configuration", __func__);
  1517. goto fail;
  1518. }
  1519. hapd_iface = hostapd_data_alloc(interfaces, conf);
  1520. if (hapd_iface == NULL) {
  1521. wpa_printf(MSG_ERROR, "%s: Failed to allocate memory "
  1522. "for hostapd", __func__);
  1523. goto fail;
  1524. }
  1525. if (start_ctrl_iface(hapd_iface) < 0)
  1526. goto fail;
  1527. wpa_printf(MSG_INFO, "Add interface '%s'", conf->bss[0]->iface);
  1528. return 0;
  1529. fail:
  1530. if (conf)
  1531. hostapd_config_free(conf);
  1532. if (hapd_iface) {
  1533. if (hapd_iface->bss) {
  1534. for (i = 0; i < hapd_iface->num_bss; i++) {
  1535. hapd = hapd_iface->bss[i];
  1536. if (hapd && hapd_iface->interfaces &&
  1537. hapd_iface->interfaces->ctrl_iface_deinit)
  1538. hapd_iface->interfaces->
  1539. ctrl_iface_deinit(hapd);
  1540. wpa_printf(MSG_DEBUG, "%s: free hapd %p (%s)",
  1541. __func__, hapd_iface->bss[i],
  1542. hapd_iface->bss[i]->conf->iface);
  1543. os_free(hapd_iface->bss[i]);
  1544. }
  1545. os_free(hapd_iface->bss);
  1546. }
  1547. wpa_printf(MSG_DEBUG, "%s: free iface %p",
  1548. __func__, hapd_iface);
  1549. os_free(hapd_iface);
  1550. }
  1551. return -1;
  1552. }
  1553. static int hostapd_remove_bss(struct hostapd_iface *iface, unsigned int idx)
  1554. {
  1555. size_t i;
  1556. wpa_printf(MSG_INFO, "Remove BSS '%s'", iface->conf->bss[idx]->iface);
  1557. /* Remove hostapd_data only if it has already been initialized */
  1558. if (idx < iface->num_bss) {
  1559. struct hostapd_data *hapd = iface->bss[idx];
  1560. hostapd_bss_deinit(hapd);
  1561. wpa_printf(MSG_DEBUG, "%s: free hapd %p (%s)",
  1562. __func__, hapd, hapd->conf->iface);
  1563. hostapd_config_free_bss(hapd->conf);
  1564. os_free(hapd);
  1565. iface->num_bss--;
  1566. for (i = idx; i < iface->num_bss; i++)
  1567. iface->bss[i] = iface->bss[i + 1];
  1568. } else {
  1569. hostapd_config_free_bss(iface->conf->bss[idx]);
  1570. iface->conf->bss[idx] = NULL;
  1571. }
  1572. iface->conf->num_bss--;
  1573. for (i = idx; i < iface->conf->num_bss; i++)
  1574. iface->conf->bss[i] = iface->conf->bss[i + 1];
  1575. return 0;
  1576. }
  1577. int hostapd_remove_iface(struct hapd_interfaces *interfaces, char *buf)
  1578. {
  1579. struct hostapd_iface *hapd_iface;
  1580. size_t i, j, k = 0;
  1581. for (i = 0; i < interfaces->count; i++) {
  1582. hapd_iface = interfaces->iface[i];
  1583. if (hapd_iface == NULL)
  1584. return -1;
  1585. if (!os_strcmp(hapd_iface->conf->bss[0]->iface, buf)) {
  1586. wpa_printf(MSG_INFO, "Remove interface '%s'", buf);
  1587. hostapd_interface_deinit_free(hapd_iface);
  1588. k = i;
  1589. while (k < (interfaces->count - 1)) {
  1590. interfaces->iface[k] =
  1591. interfaces->iface[k + 1];
  1592. k++;
  1593. }
  1594. interfaces->count--;
  1595. return 0;
  1596. }
  1597. for (j = 0; j < hapd_iface->conf->num_bss; j++) {
  1598. if (!os_strcmp(hapd_iface->conf->bss[j]->iface, buf))
  1599. return hostapd_remove_bss(hapd_iface, j);
  1600. }
  1601. }
  1602. return -1;
  1603. }
  1604. /**
  1605. * hostapd_new_assoc_sta - Notify that a new station associated with the AP
  1606. * @hapd: Pointer to BSS data
  1607. * @sta: Pointer to the associated STA data
  1608. * @reassoc: 1 to indicate this was a re-association; 0 = first association
  1609. *
  1610. * This function will be called whenever a station associates with the AP. It
  1611. * can be called from ieee802_11.c for drivers that export MLME to hostapd and
  1612. * from drv_callbacks.c based on driver events for drivers that take care of
  1613. * management frames (IEEE 802.11 authentication and association) internally.
  1614. */
  1615. void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta,
  1616. int reassoc)
  1617. {
  1618. if (hapd->tkip_countermeasures) {
  1619. hostapd_drv_sta_deauth(hapd, sta->addr,
  1620. WLAN_REASON_MICHAEL_MIC_FAILURE);
  1621. return;
  1622. }
  1623. hostapd_prune_associations(hapd, sta->addr);
  1624. /* IEEE 802.11F (IAPP) */
  1625. if (hapd->conf->ieee802_11f)
  1626. iapp_new_station(hapd->iapp, sta);
  1627. #ifdef CONFIG_P2P
  1628. if (sta->p2p_ie == NULL && !sta->no_p2p_set) {
  1629. sta->no_p2p_set = 1;
  1630. hapd->num_sta_no_p2p++;
  1631. if (hapd->num_sta_no_p2p == 1)
  1632. hostapd_p2p_non_p2p_sta_connected(hapd);
  1633. }
  1634. #endif /* CONFIG_P2P */
  1635. /* Start accounting here, if IEEE 802.1X and WPA are not used.
  1636. * IEEE 802.1X/WPA code will start accounting after the station has
  1637. * been authorized. */
  1638. if (!hapd->conf->ieee802_1x && !hapd->conf->wpa) {
  1639. os_get_time(&sta->connected_time);
  1640. accounting_sta_start(hapd, sta);
  1641. }
  1642. /* Start IEEE 802.1X authentication process for new stations */
  1643. ieee802_1x_new_station(hapd, sta);
  1644. if (reassoc) {
  1645. if (sta->auth_alg != WLAN_AUTH_FT &&
  1646. !(sta->flags & (WLAN_STA_WPS | WLAN_STA_MAYBE_WPS)))
  1647. wpa_auth_sm_event(sta->wpa_sm, WPA_REAUTH);
  1648. } else
  1649. wpa_auth_sta_associated(hapd->wpa_auth, sta->wpa_sm);
  1650. wpa_printf(MSG_DEBUG, "%s: reschedule ap_handle_timer timeout "
  1651. "for " MACSTR " (%d seconds - ap_max_inactivity)",
  1652. __func__, MAC2STR(sta->addr),
  1653. hapd->conf->ap_max_inactivity);
  1654. eloop_cancel_timeout(ap_handle_timer, hapd, sta);
  1655. eloop_register_timeout(hapd->conf->ap_max_inactivity, 0,
  1656. ap_handle_timer, hapd, sta);
  1657. }
  1658. const char * hostapd_state_text(enum hostapd_iface_state s)
  1659. {
  1660. switch (s) {
  1661. case HAPD_IFACE_UNINITIALIZED:
  1662. return "UNINITIALIZED";
  1663. case HAPD_IFACE_DISABLED:
  1664. return "DISABLED";
  1665. case HAPD_IFACE_COUNTRY_UPDATE:
  1666. return "COUNTRY_UPDATE";
  1667. case HAPD_IFACE_ACS:
  1668. return "ACS";
  1669. case HAPD_IFACE_HT_SCAN:
  1670. return "HT_SCAN";
  1671. case HAPD_IFACE_DFS:
  1672. return "DFS";
  1673. case HAPD_IFACE_ENABLED:
  1674. return "ENABLED";
  1675. }
  1676. return "UNKNOWN";
  1677. }
  1678. void hostapd_set_state(struct hostapd_iface *iface, enum hostapd_iface_state s)
  1679. {
  1680. wpa_printf(MSG_INFO, "%s: interface state %s->%s",
  1681. iface->conf->bss[0]->iface, hostapd_state_text(iface->state),
  1682. hostapd_state_text(s));
  1683. iface->state = s;
  1684. }