hostapd.c 35 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403
  1. /*
  2. * hostapd / Initialization and configuration
  3. * Copyright (c) 2002-2012, 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 "radius/radius_client.h"
  13. #include "radius/radius_das.h"
  14. #include "drivers/driver.h"
  15. #include "hostapd.h"
  16. #include "authsrv.h"
  17. #include "sta_info.h"
  18. #include "accounting.h"
  19. #include "ap_list.h"
  20. #include "beacon.h"
  21. #include "iapp.h"
  22. #include "ieee802_1x.h"
  23. #include "ieee802_11_auth.h"
  24. #include "vlan_init.h"
  25. #include "wpa_auth.h"
  26. #include "wps_hostapd.h"
  27. #include "hw_features.h"
  28. #include "wpa_auth_glue.h"
  29. #include "ap_drv_ops.h"
  30. #include "ap_config.h"
  31. #include "p2p_hostapd.h"
  32. #include "gas_serv.h"
  33. static int hostapd_flush_old_stations(struct hostapd_data *hapd, u16 reason);
  34. static int hostapd_setup_encryption(char *iface, struct hostapd_data *hapd);
  35. static int hostapd_broadcast_wep_clear(struct hostapd_data *hapd);
  36. extern int wpa_debug_level;
  37. extern struct wpa_driver_ops *wpa_drivers[];
  38. int hostapd_for_each_interface(struct hapd_interfaces *interfaces,
  39. int (*cb)(struct hostapd_iface *iface,
  40. void *ctx), void *ctx)
  41. {
  42. size_t i;
  43. int ret;
  44. for (i = 0; i < interfaces->count; i++) {
  45. ret = cb(interfaces->iface[i], ctx);
  46. if (ret)
  47. return ret;
  48. }
  49. return 0;
  50. }
  51. static void hostapd_reload_bss(struct hostapd_data *hapd)
  52. {
  53. #ifndef CONFIG_NO_RADIUS
  54. radius_client_reconfig(hapd->radius, hapd->conf->radius);
  55. #endif /* CONFIG_NO_RADIUS */
  56. if (hostapd_setup_wpa_psk(hapd->conf)) {
  57. wpa_printf(MSG_ERROR, "Failed to re-configure WPA PSK "
  58. "after reloading configuration");
  59. }
  60. if (hapd->conf->ieee802_1x || hapd->conf->wpa)
  61. hostapd_set_drv_ieee8021x(hapd, hapd->conf->iface, 1);
  62. else
  63. hostapd_set_drv_ieee8021x(hapd, hapd->conf->iface, 0);
  64. if (hapd->conf->wpa && hapd->wpa_auth == NULL) {
  65. hostapd_setup_wpa(hapd);
  66. if (hapd->wpa_auth)
  67. wpa_init_keys(hapd->wpa_auth);
  68. } else if (hapd->conf->wpa) {
  69. const u8 *wpa_ie;
  70. size_t wpa_ie_len;
  71. hostapd_reconfig_wpa(hapd);
  72. wpa_ie = wpa_auth_get_wpa_ie(hapd->wpa_auth, &wpa_ie_len);
  73. if (hostapd_set_generic_elem(hapd, wpa_ie, wpa_ie_len))
  74. wpa_printf(MSG_ERROR, "Failed to configure WPA IE for "
  75. "the kernel driver.");
  76. } else if (hapd->wpa_auth) {
  77. wpa_deinit(hapd->wpa_auth);
  78. hapd->wpa_auth = NULL;
  79. hostapd_set_privacy(hapd, 0);
  80. hostapd_setup_encryption(hapd->conf->iface, hapd);
  81. hostapd_set_generic_elem(hapd, (u8 *) "", 0);
  82. }
  83. ieee802_11_set_beacon(hapd);
  84. hostapd_update_wps(hapd);
  85. if (hapd->conf->ssid.ssid_set &&
  86. hostapd_set_ssid(hapd, hapd->conf->ssid.ssid,
  87. hapd->conf->ssid.ssid_len)) {
  88. wpa_printf(MSG_ERROR, "Could not set SSID for kernel driver");
  89. /* try to continue */
  90. }
  91. wpa_printf(MSG_DEBUG, "Reconfigured interface %s", hapd->conf->iface);
  92. }
  93. int hostapd_reload_config(struct hostapd_iface *iface)
  94. {
  95. struct hostapd_data *hapd = iface->bss[0];
  96. struct hostapd_config *newconf, *oldconf;
  97. size_t j;
  98. if (iface->interfaces == NULL ||
  99. iface->interfaces->config_read_cb == NULL)
  100. return -1;
  101. newconf = iface->interfaces->config_read_cb(iface->config_fname);
  102. if (newconf == NULL)
  103. return -1;
  104. /*
  105. * Deauthenticate all stations since the new configuration may not
  106. * allow them to use the BSS anymore.
  107. */
  108. for (j = 0; j < iface->num_bss; j++) {
  109. hostapd_flush_old_stations(iface->bss[j],
  110. WLAN_REASON_PREV_AUTH_NOT_VALID);
  111. hostapd_broadcast_wep_clear(iface->bss[j]);
  112. #ifndef CONFIG_NO_RADIUS
  113. /* TODO: update dynamic data based on changed configuration
  114. * items (e.g., open/close sockets, etc.) */
  115. radius_client_flush(iface->bss[j]->radius, 0);
  116. #endif /* CONFIG_NO_RADIUS */
  117. }
  118. oldconf = hapd->iconf;
  119. iface->conf = newconf;
  120. for (j = 0; j < iface->num_bss; j++) {
  121. hapd = iface->bss[j];
  122. hapd->iconf = newconf;
  123. hapd->conf = &newconf->bss[j];
  124. hostapd_reload_bss(hapd);
  125. }
  126. hostapd_config_free(oldconf);
  127. return 0;
  128. }
  129. static void hostapd_broadcast_key_clear_iface(struct hostapd_data *hapd,
  130. char *ifname)
  131. {
  132. int i;
  133. for (i = 0; i < NUM_WEP_KEYS; i++) {
  134. if (hostapd_drv_set_key(ifname, hapd, WPA_ALG_NONE, NULL, i,
  135. 0, NULL, 0, NULL, 0)) {
  136. wpa_printf(MSG_DEBUG, "Failed to clear default "
  137. "encryption keys (ifname=%s keyidx=%d)",
  138. ifname, i);
  139. }
  140. }
  141. #ifdef CONFIG_IEEE80211W
  142. if (hapd->conf->ieee80211w) {
  143. for (i = NUM_WEP_KEYS; i < NUM_WEP_KEYS + 2; i++) {
  144. if (hostapd_drv_set_key(ifname, hapd, WPA_ALG_NONE,
  145. NULL, i, 0, NULL,
  146. 0, NULL, 0)) {
  147. wpa_printf(MSG_DEBUG, "Failed to clear "
  148. "default mgmt encryption keys "
  149. "(ifname=%s keyidx=%d)", ifname, i);
  150. }
  151. }
  152. }
  153. #endif /* CONFIG_IEEE80211W */
  154. }
  155. static int hostapd_broadcast_wep_clear(struct hostapd_data *hapd)
  156. {
  157. hostapd_broadcast_key_clear_iface(hapd, hapd->conf->iface);
  158. return 0;
  159. }
  160. static int hostapd_broadcast_wep_set(struct hostapd_data *hapd)
  161. {
  162. int errors = 0, idx;
  163. struct hostapd_ssid *ssid = &hapd->conf->ssid;
  164. idx = ssid->wep.idx;
  165. if (ssid->wep.default_len &&
  166. hostapd_drv_set_key(hapd->conf->iface,
  167. hapd, WPA_ALG_WEP, broadcast_ether_addr, idx,
  168. 1, NULL, 0, ssid->wep.key[idx],
  169. ssid->wep.len[idx])) {
  170. wpa_printf(MSG_WARNING, "Could not set WEP encryption.");
  171. errors++;
  172. }
  173. if (ssid->dyn_vlan_keys) {
  174. size_t i;
  175. for (i = 0; i <= ssid->max_dyn_vlan_keys; i++) {
  176. const char *ifname;
  177. struct hostapd_wep_keys *key = ssid->dyn_vlan_keys[i];
  178. if (key == NULL)
  179. continue;
  180. ifname = hostapd_get_vlan_id_ifname(hapd->conf->vlan,
  181. i);
  182. if (ifname == NULL)
  183. continue;
  184. idx = key->idx;
  185. if (hostapd_drv_set_key(ifname, hapd, WPA_ALG_WEP,
  186. broadcast_ether_addr, idx, 1,
  187. NULL, 0, key->key[idx],
  188. key->len[idx])) {
  189. wpa_printf(MSG_WARNING, "Could not set "
  190. "dynamic VLAN WEP encryption.");
  191. errors++;
  192. }
  193. }
  194. }
  195. return errors;
  196. }
  197. static void hostapd_free_hapd_data(struct hostapd_data *hapd)
  198. {
  199. iapp_deinit(hapd->iapp);
  200. hapd->iapp = NULL;
  201. accounting_deinit(hapd);
  202. hostapd_deinit_wpa(hapd);
  203. vlan_deinit(hapd);
  204. hostapd_acl_deinit(hapd);
  205. #ifndef CONFIG_NO_RADIUS
  206. radius_client_deinit(hapd->radius);
  207. hapd->radius = NULL;
  208. radius_das_deinit(hapd->radius_das);
  209. hapd->radius_das = NULL;
  210. #endif /* CONFIG_NO_RADIUS */
  211. hostapd_deinit_wps(hapd);
  212. authsrv_deinit(hapd);
  213. if (hapd->interface_added &&
  214. hostapd_if_remove(hapd, WPA_IF_AP_BSS, hapd->conf->iface)) {
  215. wpa_printf(MSG_WARNING, "Failed to remove BSS interface %s",
  216. hapd->conf->iface);
  217. }
  218. os_free(hapd->probereq_cb);
  219. hapd->probereq_cb = NULL;
  220. #ifdef CONFIG_P2P
  221. wpabuf_free(hapd->p2p_beacon_ie);
  222. hapd->p2p_beacon_ie = NULL;
  223. wpabuf_free(hapd->p2p_probe_resp_ie);
  224. hapd->p2p_probe_resp_ie = NULL;
  225. #endif /* CONFIG_P2P */
  226. wpabuf_free(hapd->time_adv);
  227. #ifdef CONFIG_INTERWORKING
  228. gas_serv_deinit(hapd);
  229. #endif /* CONFIG_INTERWORKING */
  230. #ifdef CONFIG_SQLITE
  231. os_free(hapd->tmp_eap_user.identity);
  232. os_free(hapd->tmp_eap_user.password);
  233. #endif /* CONFIG_SQLITE */
  234. }
  235. /**
  236. * hostapd_cleanup - Per-BSS cleanup (deinitialization)
  237. * @hapd: Pointer to BSS data
  238. *
  239. * This function is used to free all per-BSS data structures and resources.
  240. * This gets called in a loop for each BSS between calls to
  241. * hostapd_cleanup_iface_pre() and hostapd_cleanup_iface() when an interface
  242. * is deinitialized. Most of the modules that are initialized in
  243. * hostapd_setup_bss() are deinitialized here.
  244. */
  245. static void hostapd_cleanup(struct hostapd_data *hapd)
  246. {
  247. if (hapd->iface->interfaces &&
  248. hapd->iface->interfaces->ctrl_iface_deinit)
  249. hapd->iface->interfaces->ctrl_iface_deinit(hapd);
  250. hostapd_free_hapd_data(hapd);
  251. }
  252. /**
  253. * hostapd_cleanup_iface_pre - Preliminary per-interface cleanup
  254. * @iface: Pointer to interface data
  255. *
  256. * This function is called before per-BSS data structures are deinitialized
  257. * with hostapd_cleanup().
  258. */
  259. static void hostapd_cleanup_iface_pre(struct hostapd_iface *iface)
  260. {
  261. }
  262. static void hostapd_cleanup_iface_partial(struct hostapd_iface *iface)
  263. {
  264. hostapd_free_hw_features(iface->hw_features, iface->num_hw_features);
  265. iface->hw_features = NULL;
  266. os_free(iface->current_rates);
  267. iface->current_rates = NULL;
  268. os_free(iface->basic_rates);
  269. iface->basic_rates = NULL;
  270. ap_list_deinit(iface);
  271. }
  272. /**
  273. * hostapd_cleanup_iface - Complete per-interface cleanup
  274. * @iface: Pointer to interface data
  275. *
  276. * This function is called after per-BSS data structures are deinitialized
  277. * with hostapd_cleanup().
  278. */
  279. static void hostapd_cleanup_iface(struct hostapd_iface *iface)
  280. {
  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. os_free(iface);
  287. }
  288. static void hostapd_clear_wep(struct hostapd_data *hapd)
  289. {
  290. if (hapd->drv_priv) {
  291. hostapd_set_privacy(hapd, 0);
  292. hostapd_broadcast_wep_clear(hapd);
  293. }
  294. }
  295. static int hostapd_setup_encryption(char *iface, struct hostapd_data *hapd)
  296. {
  297. int i;
  298. hostapd_broadcast_wep_set(hapd);
  299. if (hapd->conf->ssid.wep.default_len) {
  300. hostapd_set_privacy(hapd, 1);
  301. return 0;
  302. }
  303. /*
  304. * When IEEE 802.1X is not enabled, the driver may need to know how to
  305. * set authentication algorithms for static WEP.
  306. */
  307. hostapd_drv_set_authmode(hapd, hapd->conf->auth_algs);
  308. for (i = 0; i < 4; i++) {
  309. if (hapd->conf->ssid.wep.key[i] &&
  310. hostapd_drv_set_key(iface, hapd, WPA_ALG_WEP, NULL, i,
  311. i == hapd->conf->ssid.wep.idx, NULL, 0,
  312. hapd->conf->ssid.wep.key[i],
  313. hapd->conf->ssid.wep.len[i])) {
  314. wpa_printf(MSG_WARNING, "Could not set WEP "
  315. "encryption.");
  316. return -1;
  317. }
  318. if (hapd->conf->ssid.wep.key[i] &&
  319. i == hapd->conf->ssid.wep.idx)
  320. hostapd_set_privacy(hapd, 1);
  321. }
  322. return 0;
  323. }
  324. static int hostapd_flush_old_stations(struct hostapd_data *hapd, u16 reason)
  325. {
  326. int ret = 0;
  327. u8 addr[ETH_ALEN];
  328. if (hostapd_drv_none(hapd) || hapd->drv_priv == NULL)
  329. return 0;
  330. wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "Flushing old station entries");
  331. if (hostapd_flush(hapd)) {
  332. wpa_msg(hapd->msg_ctx, MSG_WARNING, "Could not connect to "
  333. "kernel driver");
  334. ret = -1;
  335. }
  336. wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "Deauthenticate all stations");
  337. os_memset(addr, 0xff, ETH_ALEN);
  338. hostapd_drv_sta_deauth(hapd, addr, reason);
  339. hostapd_free_stas(hapd);
  340. return ret;
  341. }
  342. /**
  343. * hostapd_validate_bssid_configuration - Validate BSSID configuration
  344. * @iface: Pointer to interface data
  345. * Returns: 0 on success, -1 on failure
  346. *
  347. * This function is used to validate that the configured BSSIDs are valid.
  348. */
  349. static int hostapd_validate_bssid_configuration(struct hostapd_iface *iface)
  350. {
  351. u8 mask[ETH_ALEN] = { 0 };
  352. struct hostapd_data *hapd = iface->bss[0];
  353. unsigned int i = iface->conf->num_bss, bits = 0, j;
  354. int auto_addr = 0;
  355. if (hostapd_drv_none(hapd))
  356. return 0;
  357. /* Generate BSSID mask that is large enough to cover the BSSIDs. */
  358. /* Determine the bits necessary to cover the number of BSSIDs. */
  359. for (i--; i; i >>= 1)
  360. bits++;
  361. /* Determine the bits necessary to any configured BSSIDs,
  362. if they are higher than the number of BSSIDs. */
  363. for (j = 0; j < iface->conf->num_bss; j++) {
  364. if (hostapd_mac_comp_empty(iface->conf->bss[j].bssid) == 0) {
  365. if (j)
  366. auto_addr++;
  367. continue;
  368. }
  369. for (i = 0; i < ETH_ALEN; i++) {
  370. mask[i] |=
  371. iface->conf->bss[j].bssid[i] ^
  372. hapd->own_addr[i];
  373. }
  374. }
  375. if (!auto_addr)
  376. goto skip_mask_ext;
  377. for (i = 0; i < ETH_ALEN && mask[i] == 0; i++)
  378. ;
  379. j = 0;
  380. if (i < ETH_ALEN) {
  381. j = (5 - i) * 8;
  382. while (mask[i] != 0) {
  383. mask[i] >>= 1;
  384. j++;
  385. }
  386. }
  387. if (bits < j)
  388. bits = j;
  389. if (bits > 40) {
  390. wpa_printf(MSG_ERROR, "Too many bits in the BSSID mask (%u)",
  391. bits);
  392. return -1;
  393. }
  394. os_memset(mask, 0xff, ETH_ALEN);
  395. j = bits / 8;
  396. for (i = 5; i > 5 - j; i--)
  397. mask[i] = 0;
  398. j = bits % 8;
  399. while (j--)
  400. mask[i] <<= 1;
  401. skip_mask_ext:
  402. wpa_printf(MSG_DEBUG, "BSS count %lu, BSSID mask " MACSTR " (%d bits)",
  403. (unsigned long) iface->conf->num_bss, MAC2STR(mask), bits);
  404. if (!auto_addr)
  405. return 0;
  406. for (i = 0; i < ETH_ALEN; i++) {
  407. if ((hapd->own_addr[i] & mask[i]) != hapd->own_addr[i]) {
  408. wpa_printf(MSG_ERROR, "Invalid BSSID mask " MACSTR
  409. " for start address " MACSTR ".",
  410. MAC2STR(mask), MAC2STR(hapd->own_addr));
  411. wpa_printf(MSG_ERROR, "Start address must be the "
  412. "first address in the block (i.e., addr "
  413. "AND mask == addr).");
  414. return -1;
  415. }
  416. }
  417. return 0;
  418. }
  419. static int mac_in_conf(struct hostapd_config *conf, const void *a)
  420. {
  421. size_t i;
  422. for (i = 0; i < conf->num_bss; i++) {
  423. if (hostapd_mac_comp(conf->bss[i].bssid, a) == 0) {
  424. return 1;
  425. }
  426. }
  427. return 0;
  428. }
  429. #ifndef CONFIG_NO_RADIUS
  430. static int hostapd_das_nas_mismatch(struct hostapd_data *hapd,
  431. struct radius_das_attrs *attr)
  432. {
  433. /* TODO */
  434. return 0;
  435. }
  436. static struct sta_info * hostapd_das_find_sta(struct hostapd_data *hapd,
  437. struct radius_das_attrs *attr)
  438. {
  439. struct sta_info *sta = NULL;
  440. char buf[128];
  441. if (attr->sta_addr)
  442. sta = ap_get_sta(hapd, attr->sta_addr);
  443. if (sta == NULL && attr->acct_session_id &&
  444. attr->acct_session_id_len == 17) {
  445. for (sta = hapd->sta_list; sta; sta = sta->next) {
  446. os_snprintf(buf, sizeof(buf), "%08X-%08X",
  447. sta->acct_session_id_hi,
  448. sta->acct_session_id_lo);
  449. if (os_memcmp(attr->acct_session_id, buf, 17) == 0)
  450. break;
  451. }
  452. }
  453. if (sta == NULL && attr->cui) {
  454. for (sta = hapd->sta_list; sta; sta = sta->next) {
  455. struct wpabuf *cui;
  456. cui = ieee802_1x_get_radius_cui(sta->eapol_sm);
  457. if (cui && wpabuf_len(cui) == attr->cui_len &&
  458. os_memcmp(wpabuf_head(cui), attr->cui,
  459. attr->cui_len) == 0)
  460. break;
  461. }
  462. }
  463. if (sta == NULL && attr->user_name) {
  464. for (sta = hapd->sta_list; sta; sta = sta->next) {
  465. u8 *identity;
  466. size_t identity_len;
  467. identity = ieee802_1x_get_identity(sta->eapol_sm,
  468. &identity_len);
  469. if (identity &&
  470. identity_len == attr->user_name_len &&
  471. os_memcmp(identity, attr->user_name, identity_len)
  472. == 0)
  473. break;
  474. }
  475. }
  476. return sta;
  477. }
  478. static enum radius_das_res
  479. hostapd_das_disconnect(void *ctx, struct radius_das_attrs *attr)
  480. {
  481. struct hostapd_data *hapd = ctx;
  482. struct sta_info *sta;
  483. if (hostapd_das_nas_mismatch(hapd, attr))
  484. return RADIUS_DAS_NAS_MISMATCH;
  485. sta = hostapd_das_find_sta(hapd, attr);
  486. if (sta == NULL)
  487. return RADIUS_DAS_SESSION_NOT_FOUND;
  488. hostapd_drv_sta_deauth(hapd, sta->addr,
  489. WLAN_REASON_PREV_AUTH_NOT_VALID);
  490. ap_sta_deauthenticate(hapd, sta, WLAN_REASON_PREV_AUTH_NOT_VALID);
  491. return RADIUS_DAS_SUCCESS;
  492. }
  493. #endif /* CONFIG_NO_RADIUS */
  494. /**
  495. * hostapd_setup_bss - Per-BSS setup (initialization)
  496. * @hapd: Pointer to BSS data
  497. * @first: Whether this BSS is the first BSS of an interface
  498. *
  499. * This function is used to initialize all per-BSS data structures and
  500. * resources. This gets called in a loop for each BSS when an interface is
  501. * initialized. Most of the modules that are initialized here will be
  502. * deinitialized in hostapd_cleanup().
  503. */
  504. static int hostapd_setup_bss(struct hostapd_data *hapd, int first)
  505. {
  506. struct hostapd_bss_config *conf = hapd->conf;
  507. u8 ssid[HOSTAPD_MAX_SSID_LEN + 1];
  508. int ssid_len, set_ssid;
  509. char force_ifname[IFNAMSIZ];
  510. u8 if_addr[ETH_ALEN];
  511. if (!first) {
  512. if (hostapd_mac_comp_empty(hapd->conf->bssid) == 0) {
  513. /* Allocate the next available BSSID. */
  514. do {
  515. inc_byte_array(hapd->own_addr, ETH_ALEN);
  516. } while (mac_in_conf(hapd->iconf, hapd->own_addr));
  517. } else {
  518. /* Allocate the configured BSSID. */
  519. os_memcpy(hapd->own_addr, hapd->conf->bssid, ETH_ALEN);
  520. if (hostapd_mac_comp(hapd->own_addr,
  521. hapd->iface->bss[0]->own_addr) ==
  522. 0) {
  523. wpa_printf(MSG_ERROR, "BSS '%s' may not have "
  524. "BSSID set to the MAC address of "
  525. "the radio", hapd->conf->iface);
  526. return -1;
  527. }
  528. }
  529. hapd->interface_added = 1;
  530. if (hostapd_if_add(hapd->iface->bss[0], WPA_IF_AP_BSS,
  531. hapd->conf->iface, hapd->own_addr, hapd,
  532. &hapd->drv_priv, force_ifname, if_addr,
  533. hapd->conf->bridge[0] ? hapd->conf->bridge :
  534. NULL)) {
  535. wpa_printf(MSG_ERROR, "Failed to add BSS (BSSID="
  536. MACSTR ")", MAC2STR(hapd->own_addr));
  537. return -1;
  538. }
  539. }
  540. if (conf->wmm_enabled < 0)
  541. conf->wmm_enabled = hapd->iconf->ieee80211n;
  542. hostapd_flush_old_stations(hapd, WLAN_REASON_PREV_AUTH_NOT_VALID);
  543. hostapd_set_privacy(hapd, 0);
  544. hostapd_broadcast_wep_clear(hapd);
  545. if (hostapd_setup_encryption(hapd->conf->iface, hapd))
  546. return -1;
  547. /*
  548. * Fetch the SSID from the system and use it or,
  549. * if one was specified in the config file, verify they
  550. * match.
  551. */
  552. ssid_len = hostapd_get_ssid(hapd, ssid, sizeof(ssid));
  553. if (ssid_len < 0) {
  554. wpa_printf(MSG_ERROR, "Could not read SSID from system");
  555. return -1;
  556. }
  557. if (conf->ssid.ssid_set) {
  558. /*
  559. * If SSID is specified in the config file and it differs
  560. * from what is being used then force installation of the
  561. * new SSID.
  562. */
  563. set_ssid = (conf->ssid.ssid_len != (size_t) ssid_len ||
  564. os_memcmp(conf->ssid.ssid, ssid, ssid_len) != 0);
  565. } else {
  566. /*
  567. * No SSID in the config file; just use the one we got
  568. * from the system.
  569. */
  570. set_ssid = 0;
  571. conf->ssid.ssid_len = ssid_len;
  572. os_memcpy(conf->ssid.ssid, ssid, conf->ssid.ssid_len);
  573. }
  574. if (!hostapd_drv_none(hapd)) {
  575. wpa_printf(MSG_ERROR, "Using interface %s with hwaddr " MACSTR
  576. " and ssid \"%s\"",
  577. hapd->conf->iface, MAC2STR(hapd->own_addr),
  578. wpa_ssid_txt(hapd->conf->ssid.ssid,
  579. hapd->conf->ssid.ssid_len));
  580. }
  581. if (hostapd_setup_wpa_psk(conf)) {
  582. wpa_printf(MSG_ERROR, "WPA-PSK setup failed.");
  583. return -1;
  584. }
  585. /* Set SSID for the kernel driver (to be used in beacon and probe
  586. * response frames) */
  587. if (set_ssid && hostapd_set_ssid(hapd, conf->ssid.ssid,
  588. conf->ssid.ssid_len)) {
  589. wpa_printf(MSG_ERROR, "Could not set SSID for kernel driver");
  590. return -1;
  591. }
  592. if (wpa_debug_level == MSG_MSGDUMP)
  593. conf->radius->msg_dumps = 1;
  594. #ifndef CONFIG_NO_RADIUS
  595. hapd->radius = radius_client_init(hapd, conf->radius);
  596. if (hapd->radius == NULL) {
  597. wpa_printf(MSG_ERROR, "RADIUS client initialization failed.");
  598. return -1;
  599. }
  600. if (hapd->conf->radius_das_port) {
  601. struct radius_das_conf das_conf;
  602. os_memset(&das_conf, 0, sizeof(das_conf));
  603. das_conf.port = hapd->conf->radius_das_port;
  604. das_conf.shared_secret = hapd->conf->radius_das_shared_secret;
  605. das_conf.shared_secret_len =
  606. hapd->conf->radius_das_shared_secret_len;
  607. das_conf.client_addr = &hapd->conf->radius_das_client_addr;
  608. das_conf.time_window = hapd->conf->radius_das_time_window;
  609. das_conf.require_event_timestamp =
  610. hapd->conf->radius_das_require_event_timestamp;
  611. das_conf.ctx = hapd;
  612. das_conf.disconnect = hostapd_das_disconnect;
  613. hapd->radius_das = radius_das_init(&das_conf);
  614. if (hapd->radius_das == NULL) {
  615. wpa_printf(MSG_ERROR, "RADIUS DAS initialization "
  616. "failed.");
  617. return -1;
  618. }
  619. }
  620. #endif /* CONFIG_NO_RADIUS */
  621. if (hostapd_acl_init(hapd)) {
  622. wpa_printf(MSG_ERROR, "ACL initialization failed.");
  623. return -1;
  624. }
  625. if (hostapd_init_wps(hapd, conf))
  626. return -1;
  627. if (authsrv_init(hapd) < 0)
  628. return -1;
  629. if (ieee802_1x_init(hapd)) {
  630. wpa_printf(MSG_ERROR, "IEEE 802.1X initialization failed.");
  631. return -1;
  632. }
  633. if (hapd->conf->wpa && hostapd_setup_wpa(hapd))
  634. return -1;
  635. if (accounting_init(hapd)) {
  636. wpa_printf(MSG_ERROR, "Accounting initialization failed.");
  637. return -1;
  638. }
  639. if (hapd->conf->ieee802_11f &&
  640. (hapd->iapp = iapp_init(hapd, hapd->conf->iapp_iface)) == NULL) {
  641. wpa_printf(MSG_ERROR, "IEEE 802.11F (IAPP) initialization "
  642. "failed.");
  643. return -1;
  644. }
  645. #ifdef CONFIG_INTERWORKING
  646. if (gas_serv_init(hapd)) {
  647. wpa_printf(MSG_ERROR, "GAS server initialization failed");
  648. return -1;
  649. }
  650. #endif /* CONFIG_INTERWORKING */
  651. if (hapd->iface->interfaces &&
  652. hapd->iface->interfaces->ctrl_iface_init &&
  653. hapd->iface->interfaces->ctrl_iface_init(hapd)) {
  654. wpa_printf(MSG_ERROR, "Failed to setup control interface");
  655. return -1;
  656. }
  657. if (!hostapd_drv_none(hapd) && vlan_init(hapd)) {
  658. wpa_printf(MSG_ERROR, "VLAN initialization failed.");
  659. return -1;
  660. }
  661. ieee802_11_set_beacon(hapd);
  662. if (hapd->wpa_auth && wpa_init_keys(hapd->wpa_auth) < 0)
  663. return -1;
  664. if (hapd->driver && hapd->driver->set_operstate)
  665. hapd->driver->set_operstate(hapd->drv_priv, 1);
  666. return 0;
  667. }
  668. static void hostapd_tx_queue_params(struct hostapd_iface *iface)
  669. {
  670. struct hostapd_data *hapd = iface->bss[0];
  671. int i;
  672. struct hostapd_tx_queue_params *p;
  673. for (i = 0; i < NUM_TX_QUEUES; i++) {
  674. p = &iface->conf->tx_queue[i];
  675. if (hostapd_set_tx_queue_params(hapd, i, p->aifs, p->cwmin,
  676. p->cwmax, p->burst)) {
  677. wpa_printf(MSG_DEBUG, "Failed to set TX queue "
  678. "parameters for queue %d.", i);
  679. /* Continue anyway */
  680. }
  681. }
  682. }
  683. static int setup_interface(struct hostapd_iface *iface)
  684. {
  685. struct hostapd_data *hapd = iface->bss[0];
  686. size_t i;
  687. char country[4];
  688. /*
  689. * Make sure that all BSSes get configured with a pointer to the same
  690. * driver interface.
  691. */
  692. for (i = 1; i < iface->num_bss; i++) {
  693. iface->bss[i]->driver = hapd->driver;
  694. iface->bss[i]->drv_priv = hapd->drv_priv;
  695. }
  696. if (hostapd_validate_bssid_configuration(iface))
  697. return -1;
  698. if (hapd->iconf->country[0] && hapd->iconf->country[1]) {
  699. os_memcpy(country, hapd->iconf->country, 3);
  700. country[3] = '\0';
  701. if (hostapd_set_country(hapd, country) < 0) {
  702. wpa_printf(MSG_ERROR, "Failed to set country code");
  703. return -1;
  704. }
  705. }
  706. if (hostapd_get_hw_features(iface)) {
  707. /* Not all drivers support this yet, so continue without hw
  708. * feature data. */
  709. } else {
  710. int ret = hostapd_select_hw_mode(iface);
  711. if (ret < 0) {
  712. wpa_printf(MSG_ERROR, "Could not select hw_mode and "
  713. "channel. (%d)", ret);
  714. return -1;
  715. }
  716. ret = hostapd_check_ht_capab(iface);
  717. if (ret < 0)
  718. return -1;
  719. if (ret == 1) {
  720. wpa_printf(MSG_DEBUG, "Interface initialization will "
  721. "be completed in a callback");
  722. return 0;
  723. }
  724. }
  725. return hostapd_setup_interface_complete(iface, 0);
  726. }
  727. int hostapd_setup_interface_complete(struct hostapd_iface *iface, int err)
  728. {
  729. struct hostapd_data *hapd = iface->bss[0];
  730. size_t j;
  731. u8 *prev_addr;
  732. if (err) {
  733. wpa_printf(MSG_ERROR, "Interface initialization failed");
  734. eloop_terminate();
  735. return -1;
  736. }
  737. wpa_printf(MSG_DEBUG, "Completing interface initialization");
  738. if (hapd->iconf->channel) {
  739. iface->freq = hostapd_hw_get_freq(hapd, hapd->iconf->channel);
  740. wpa_printf(MSG_DEBUG, "Mode: %s Channel: %d "
  741. "Frequency: %d MHz",
  742. hostapd_hw_mode_txt(hapd->iconf->hw_mode),
  743. hapd->iconf->channel, iface->freq);
  744. if (hostapd_set_freq(hapd, hapd->iconf->hw_mode, iface->freq,
  745. hapd->iconf->channel,
  746. hapd->iconf->ieee80211n,
  747. hapd->iconf->secondary_channel)) {
  748. wpa_printf(MSG_ERROR, "Could not set channel for "
  749. "kernel driver");
  750. return -1;
  751. }
  752. }
  753. if (iface->current_mode) {
  754. if (hostapd_prepare_rates(iface, iface->current_mode)) {
  755. wpa_printf(MSG_ERROR, "Failed to prepare rates "
  756. "table.");
  757. hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE80211,
  758. HOSTAPD_LEVEL_WARNING,
  759. "Failed to prepare rates table.");
  760. return -1;
  761. }
  762. }
  763. if (hapd->iconf->rts_threshold > -1 &&
  764. hostapd_set_rts(hapd, hapd->iconf->rts_threshold)) {
  765. wpa_printf(MSG_ERROR, "Could not set RTS threshold for "
  766. "kernel driver");
  767. return -1;
  768. }
  769. if (hapd->iconf->fragm_threshold > -1 &&
  770. hostapd_set_frag(hapd, hapd->iconf->fragm_threshold)) {
  771. wpa_printf(MSG_ERROR, "Could not set fragmentation threshold "
  772. "for kernel driver");
  773. return -1;
  774. }
  775. prev_addr = hapd->own_addr;
  776. for (j = 0; j < iface->num_bss; j++) {
  777. hapd = iface->bss[j];
  778. if (j)
  779. os_memcpy(hapd->own_addr, prev_addr, ETH_ALEN);
  780. if (hostapd_setup_bss(hapd, j == 0))
  781. return -1;
  782. if (hostapd_mac_comp_empty(hapd->conf->bssid) == 0)
  783. prev_addr = hapd->own_addr;
  784. }
  785. hostapd_tx_queue_params(iface);
  786. ap_list_init(iface);
  787. if (hostapd_driver_commit(hapd) < 0) {
  788. wpa_printf(MSG_ERROR, "%s: Failed to commit driver "
  789. "configuration", __func__);
  790. return -1;
  791. }
  792. /*
  793. * WPS UPnP module can be initialized only when the "upnp_iface" is up.
  794. * If "interface" and "upnp_iface" are the same (e.g., non-bridge
  795. * mode), the interface is up only after driver_commit, so initialize
  796. * WPS after driver_commit.
  797. */
  798. for (j = 0; j < iface->num_bss; j++) {
  799. if (hostapd_init_wps_complete(iface->bss[j]))
  800. return -1;
  801. }
  802. if (hapd->setup_complete_cb)
  803. hapd->setup_complete_cb(hapd->setup_complete_cb_ctx);
  804. wpa_printf(MSG_DEBUG, "%s: Setup of interface done.",
  805. iface->bss[0]->conf->iface);
  806. return 0;
  807. }
  808. /**
  809. * hostapd_setup_interface - Setup of an interface
  810. * @iface: Pointer to interface data.
  811. * Returns: 0 on success, -1 on failure
  812. *
  813. * Initializes the driver interface, validates the configuration,
  814. * and sets driver parameters based on the configuration.
  815. * Flushes old stations, sets the channel, encryption,
  816. * beacons, and WDS links based on the configuration.
  817. */
  818. int hostapd_setup_interface(struct hostapd_iface *iface)
  819. {
  820. int ret;
  821. ret = setup_interface(iface);
  822. if (ret) {
  823. wpa_printf(MSG_ERROR, "%s: Unable to setup interface.",
  824. iface->bss[0]->conf->iface);
  825. return -1;
  826. }
  827. return 0;
  828. }
  829. /**
  830. * hostapd_alloc_bss_data - Allocate and initialize per-BSS data
  831. * @hapd_iface: Pointer to interface data
  832. * @conf: Pointer to per-interface configuration
  833. * @bss: Pointer to per-BSS configuration for this BSS
  834. * Returns: Pointer to allocated BSS data
  835. *
  836. * This function is used to allocate per-BSS data structure. This data will be
  837. * freed after hostapd_cleanup() is called for it during interface
  838. * deinitialization.
  839. */
  840. struct hostapd_data *
  841. hostapd_alloc_bss_data(struct hostapd_iface *hapd_iface,
  842. struct hostapd_config *conf,
  843. struct hostapd_bss_config *bss)
  844. {
  845. struct hostapd_data *hapd;
  846. hapd = os_zalloc(sizeof(*hapd));
  847. if (hapd == NULL)
  848. return NULL;
  849. hapd->new_assoc_sta_cb = hostapd_new_assoc_sta;
  850. hapd->iconf = conf;
  851. hapd->conf = bss;
  852. hapd->iface = hapd_iface;
  853. hapd->driver = hapd->iconf->driver;
  854. hapd->ctrl_sock = -1;
  855. return hapd;
  856. }
  857. void hostapd_interface_deinit(struct hostapd_iface *iface)
  858. {
  859. size_t j;
  860. if (iface == NULL)
  861. return;
  862. hostapd_cleanup_iface_pre(iface);
  863. for (j = 0; j < iface->num_bss; j++) {
  864. struct hostapd_data *hapd = iface->bss[j];
  865. hostapd_free_stas(hapd);
  866. hostapd_flush_old_stations(hapd, WLAN_REASON_DEAUTH_LEAVING);
  867. hostapd_clear_wep(hapd);
  868. hostapd_cleanup(hapd);
  869. }
  870. }
  871. void hostapd_interface_free(struct hostapd_iface *iface)
  872. {
  873. size_t j;
  874. for (j = 0; j < iface->num_bss; j++)
  875. os_free(iface->bss[j]);
  876. hostapd_cleanup_iface(iface);
  877. }
  878. #ifdef HOSTAPD
  879. void hostapd_interface_deinit_free(struct hostapd_iface *iface)
  880. {
  881. const struct wpa_driver_ops *driver;
  882. void *drv_priv;
  883. if (iface == NULL)
  884. return;
  885. driver = iface->bss[0]->driver;
  886. drv_priv = iface->bss[0]->drv_priv;
  887. hostapd_interface_deinit(iface);
  888. if (driver && driver->hapd_deinit && drv_priv)
  889. driver->hapd_deinit(drv_priv);
  890. hostapd_interface_free(iface);
  891. }
  892. int hostapd_enable_iface(struct hostapd_iface *hapd_iface)
  893. {
  894. if (hapd_iface->bss[0]->drv_priv != NULL) {
  895. wpa_printf(MSG_ERROR, "Interface %s already enabled",
  896. hapd_iface->conf->bss[0].iface);
  897. return -1;
  898. }
  899. wpa_printf(MSG_DEBUG, "Enable interface %s",
  900. hapd_iface->conf->bss[0].iface);
  901. if (hapd_iface->interfaces == NULL ||
  902. hapd_iface->interfaces->driver_init == NULL ||
  903. hapd_iface->interfaces->driver_init(hapd_iface) ||
  904. hostapd_setup_interface(hapd_iface)) {
  905. hostapd_interface_deinit_free(hapd_iface);
  906. return -1;
  907. }
  908. return 0;
  909. }
  910. int hostapd_reload_iface(struct hostapd_iface *hapd_iface)
  911. {
  912. size_t j;
  913. wpa_printf(MSG_DEBUG, "Reload interface %s",
  914. hapd_iface->conf->bss[0].iface);
  915. for (j = 0; j < hapd_iface->num_bss; j++) {
  916. hostapd_flush_old_stations(hapd_iface->bss[j],
  917. WLAN_REASON_PREV_AUTH_NOT_VALID);
  918. #ifndef CONFIG_NO_RADIUS
  919. /* TODO: update dynamic data based on changed configuration
  920. * items (e.g., open/close sockets, etc.) */
  921. radius_client_flush(hapd_iface->bss[j]->radius, 0);
  922. #endif /* CONFIG_NO_RADIUS */
  923. hostapd_reload_bss(hapd_iface->bss[j]);
  924. }
  925. return 0;
  926. }
  927. int hostapd_disable_iface(struct hostapd_iface *hapd_iface)
  928. {
  929. size_t j;
  930. struct hostapd_bss_config *bss;
  931. const struct wpa_driver_ops *driver;
  932. void *drv_priv;
  933. if (hapd_iface == NULL)
  934. return -1;
  935. bss = hapd_iface->bss[0]->conf;
  936. driver = hapd_iface->bss[0]->driver;
  937. drv_priv = hapd_iface->bss[0]->drv_priv;
  938. /* whatever hostapd_interface_deinit does */
  939. for (j = 0; j < hapd_iface->num_bss; j++) {
  940. struct hostapd_data *hapd = hapd_iface->bss[j];
  941. hostapd_free_stas(hapd);
  942. hostapd_flush_old_stations(hapd, WLAN_REASON_DEAUTH_LEAVING);
  943. hostapd_clear_wep(hapd);
  944. hostapd_free_hapd_data(hapd);
  945. }
  946. if (driver && driver->hapd_deinit && drv_priv) {
  947. driver->hapd_deinit(drv_priv);
  948. hapd_iface->bss[0]->drv_priv = NULL;
  949. }
  950. /* From hostapd_cleanup_iface: These were initialized in
  951. * hostapd_setup_interface and hostapd_setup_interface_complete
  952. */
  953. hostapd_cleanup_iface_partial(hapd_iface);
  954. bss->wpa = 0;
  955. bss->wpa_key_mgmt = -1;
  956. bss->wpa_pairwise = -1;
  957. wpa_printf(MSG_DEBUG, "Interface %s disabled", bss->iface);
  958. return 0;
  959. }
  960. static struct hostapd_iface *
  961. hostapd_iface_alloc(struct hapd_interfaces *interfaces)
  962. {
  963. struct hostapd_iface **iface, *hapd_iface;
  964. iface = os_realloc_array(interfaces->iface, interfaces->count + 1,
  965. sizeof(struct hostapd_iface *));
  966. if (iface == NULL)
  967. return NULL;
  968. interfaces->iface = iface;
  969. hapd_iface = interfaces->iface[interfaces->count] =
  970. os_zalloc(sizeof(*hapd_iface));
  971. if (hapd_iface == NULL) {
  972. wpa_printf(MSG_ERROR, "%s: Failed to allocate memory for "
  973. "the interface", __func__);
  974. return NULL;
  975. }
  976. interfaces->count++;
  977. hapd_iface->interfaces = interfaces;
  978. return hapd_iface;
  979. }
  980. static struct hostapd_config *
  981. hostapd_config_alloc(struct hapd_interfaces *interfaces, const char *ifname,
  982. const char *ctrl_iface)
  983. {
  984. struct hostapd_bss_config *bss;
  985. struct hostapd_config *conf;
  986. /* Allocates memory for bss and conf */
  987. conf = hostapd_config_defaults();
  988. if (conf == NULL) {
  989. wpa_printf(MSG_ERROR, "%s: Failed to allocate memory for "
  990. "configuration", __func__);
  991. return NULL;
  992. }
  993. conf->driver = wpa_drivers[0];
  994. if (conf->driver == NULL) {
  995. wpa_printf(MSG_ERROR, "No driver wrappers registered!");
  996. hostapd_config_free(conf);
  997. return NULL;
  998. }
  999. bss = conf->last_bss = conf->bss;
  1000. os_strlcpy(bss->iface, ifname, sizeof(bss->iface));
  1001. bss->ctrl_interface = os_strdup(ctrl_iface);
  1002. if (bss->ctrl_interface == NULL) {
  1003. hostapd_config_free(conf);
  1004. return NULL;
  1005. }
  1006. /* Reading configuration file skipped, will be done in SET!
  1007. * From reading the configuration till the end has to be done in
  1008. * SET
  1009. */
  1010. return conf;
  1011. }
  1012. static struct hostapd_iface * hostapd_data_alloc(
  1013. struct hapd_interfaces *interfaces, struct hostapd_config *conf)
  1014. {
  1015. size_t i;
  1016. struct hostapd_iface *hapd_iface =
  1017. interfaces->iface[interfaces->count - 1];
  1018. struct hostapd_data *hapd;
  1019. hapd_iface->conf = conf;
  1020. hapd_iface->num_bss = conf->num_bss;
  1021. hapd_iface->bss = os_zalloc(conf->num_bss *
  1022. sizeof(struct hostapd_data *));
  1023. if (hapd_iface->bss == NULL)
  1024. return NULL;
  1025. for (i = 0; i < conf->num_bss; i++) {
  1026. hapd = hapd_iface->bss[i] =
  1027. hostapd_alloc_bss_data(hapd_iface, conf,
  1028. &conf->bss[i]);
  1029. if (hapd == NULL)
  1030. return NULL;
  1031. hapd->msg_ctx = hapd;
  1032. }
  1033. hapd_iface->interfaces = interfaces;
  1034. return hapd_iface;
  1035. }
  1036. int hostapd_add_iface(struct hapd_interfaces *interfaces, char *buf)
  1037. {
  1038. struct hostapd_config *conf = NULL;
  1039. struct hostapd_iface *hapd_iface = NULL;
  1040. char *ptr;
  1041. size_t i;
  1042. ptr = os_strchr(buf, ' ');
  1043. if (ptr == NULL)
  1044. return -1;
  1045. *ptr++ = '\0';
  1046. for (i = 0; i < interfaces->count; i++) {
  1047. if (!os_strcmp(interfaces->iface[i]->conf->bss[0].iface,
  1048. buf)) {
  1049. wpa_printf(MSG_INFO, "Cannot add interface - it "
  1050. "already exists");
  1051. return -1;
  1052. }
  1053. }
  1054. hapd_iface = hostapd_iface_alloc(interfaces);
  1055. if (hapd_iface == NULL) {
  1056. wpa_printf(MSG_ERROR, "%s: Failed to allocate memory "
  1057. "for interface", __func__);
  1058. goto fail;
  1059. }
  1060. conf = hostapd_config_alloc(interfaces, buf, ptr);
  1061. if (conf == NULL) {
  1062. wpa_printf(MSG_ERROR, "%s: Failed to allocate memory "
  1063. "for configuration", __func__);
  1064. goto fail;
  1065. }
  1066. hapd_iface = hostapd_data_alloc(interfaces, conf);
  1067. if (hapd_iface == NULL) {
  1068. wpa_printf(MSG_ERROR, "%s: Failed to allocate memory "
  1069. "for hostapd", __func__);
  1070. goto fail;
  1071. }
  1072. if (hapd_iface->interfaces &&
  1073. hapd_iface->interfaces->ctrl_iface_init &&
  1074. hapd_iface->interfaces->ctrl_iface_init(hapd_iface->bss[0])) {
  1075. wpa_printf(MSG_ERROR, "%s: Failed to setup control "
  1076. "interface", __func__);
  1077. goto fail;
  1078. }
  1079. wpa_printf(MSG_INFO, "Add interface '%s'", conf->bss[0].iface);
  1080. return 0;
  1081. fail:
  1082. if (conf)
  1083. hostapd_config_free(conf);
  1084. if (hapd_iface) {
  1085. os_free(hapd_iface->bss[interfaces->count]);
  1086. os_free(hapd_iface);
  1087. }
  1088. return -1;
  1089. }
  1090. int hostapd_remove_iface(struct hapd_interfaces *interfaces, char *buf)
  1091. {
  1092. struct hostapd_iface *hapd_iface;
  1093. size_t i, k = 0;
  1094. for (i = 0; i < interfaces->count; i++) {
  1095. hapd_iface = interfaces->iface[i];
  1096. if (hapd_iface == NULL)
  1097. return -1;
  1098. if (!os_strcmp(hapd_iface->conf->bss[0].iface, buf)) {
  1099. wpa_printf(MSG_INFO, "Remove interface '%s'", buf);
  1100. hostapd_interface_deinit_free(hapd_iface);
  1101. k = i;
  1102. while (k < (interfaces->count - 1)) {
  1103. interfaces->iface[k] =
  1104. interfaces->iface[k + 1];
  1105. k++;
  1106. }
  1107. interfaces->count--;
  1108. return 0;
  1109. }
  1110. }
  1111. return -1;
  1112. }
  1113. #endif /* HOSTAPD */
  1114. /**
  1115. * hostapd_new_assoc_sta - Notify that a new station associated with the AP
  1116. * @hapd: Pointer to BSS data
  1117. * @sta: Pointer to the associated STA data
  1118. * @reassoc: 1 to indicate this was a re-association; 0 = first association
  1119. *
  1120. * This function will be called whenever a station associates with the AP. It
  1121. * can be called from ieee802_11.c for drivers that export MLME to hostapd and
  1122. * from drv_callbacks.c based on driver events for drivers that take care of
  1123. * management frames (IEEE 802.11 authentication and association) internally.
  1124. */
  1125. void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta,
  1126. int reassoc)
  1127. {
  1128. if (hapd->tkip_countermeasures) {
  1129. hostapd_drv_sta_deauth(hapd, sta->addr,
  1130. WLAN_REASON_MICHAEL_MIC_FAILURE);
  1131. return;
  1132. }
  1133. hostapd_prune_associations(hapd, sta->addr);
  1134. /* IEEE 802.11F (IAPP) */
  1135. if (hapd->conf->ieee802_11f)
  1136. iapp_new_station(hapd->iapp, sta);
  1137. #ifdef CONFIG_P2P
  1138. if (sta->p2p_ie == NULL && !sta->no_p2p_set) {
  1139. sta->no_p2p_set = 1;
  1140. hapd->num_sta_no_p2p++;
  1141. if (hapd->num_sta_no_p2p == 1)
  1142. hostapd_p2p_non_p2p_sta_connected(hapd);
  1143. }
  1144. #endif /* CONFIG_P2P */
  1145. /* Start accounting here, if IEEE 802.1X and WPA are not used.
  1146. * IEEE 802.1X/WPA code will start accounting after the station has
  1147. * been authorized. */
  1148. if (!hapd->conf->ieee802_1x && !hapd->conf->wpa) {
  1149. os_get_time(&sta->connected_time);
  1150. accounting_sta_start(hapd, sta);
  1151. }
  1152. /* Start IEEE 802.1X authentication process for new stations */
  1153. ieee802_1x_new_station(hapd, sta);
  1154. if (reassoc) {
  1155. if (sta->auth_alg != WLAN_AUTH_FT &&
  1156. !(sta->flags & (WLAN_STA_WPS | WLAN_STA_MAYBE_WPS)))
  1157. wpa_auth_sm_event(sta->wpa_sm, WPA_REAUTH);
  1158. } else
  1159. wpa_auth_sta_associated(hapd->wpa_auth, sta->wpa_sm);
  1160. wpa_printf(MSG_DEBUG, "%s: reschedule ap_handle_timer timeout "
  1161. "for " MACSTR " (%d seconds - ap_max_inactivity)",
  1162. __func__, MAC2STR(sta->addr),
  1163. hapd->conf->ap_max_inactivity);
  1164. eloop_cancel_timeout(ap_handle_timer, hapd, sta);
  1165. eloop_register_timeout(hapd->conf->ap_max_inactivity, 0,
  1166. ap_handle_timer, hapd, sta);
  1167. }