sta_info.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596
  1. /*
  2. * hostapd / Station table
  3. * Copyright (c) 2002-2007, Jouni Malinen <j@w1.fi>
  4. * Copyright (c) 2007-2008, Intel Corporation
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * Alternatively, this software may be distributed under the terms of BSD
  11. * license.
  12. *
  13. * See README and COPYING for more details.
  14. */
  15. #include "includes.h"
  16. #include "hostapd.h"
  17. #include "sta_info.h"
  18. #include "eloop.h"
  19. #include "accounting.h"
  20. #include "ieee802_1x.h"
  21. #include "ieee802_11.h"
  22. #include "radius/radius.h"
  23. #include "wpa.h"
  24. #include "preauth.h"
  25. #include "radius/radius_client.h"
  26. #include "driver.h"
  27. #include "beacon.h"
  28. #include "hw_features.h"
  29. #include "mlme.h"
  30. #include "vlan_init.h"
  31. static int ap_sta_in_other_bss(struct hostapd_data *hapd,
  32. struct sta_info *sta, u32 flags);
  33. static void ap_handle_session_timer(void *eloop_ctx, void *timeout_ctx);
  34. int ap_for_each_sta(struct hostapd_data *hapd,
  35. int (*cb)(struct hostapd_data *hapd, struct sta_info *sta,
  36. void *ctx),
  37. void *ctx)
  38. {
  39. struct sta_info *sta;
  40. for (sta = hapd->sta_list; sta; sta = sta->next) {
  41. if (cb(hapd, sta, ctx))
  42. return 1;
  43. }
  44. return 0;
  45. }
  46. struct sta_info * ap_get_sta(struct hostapd_data *hapd, const u8 *sta)
  47. {
  48. struct sta_info *s;
  49. s = hapd->sta_hash[STA_HASH(sta)];
  50. while (s != NULL && os_memcmp(s->addr, sta, 6) != 0)
  51. s = s->hnext;
  52. return s;
  53. }
  54. static void ap_sta_list_del(struct hostapd_data *hapd, struct sta_info *sta)
  55. {
  56. struct sta_info *tmp;
  57. if (hapd->sta_list == sta) {
  58. hapd->sta_list = sta->next;
  59. return;
  60. }
  61. tmp = hapd->sta_list;
  62. while (tmp != NULL && tmp->next != sta)
  63. tmp = tmp->next;
  64. if (tmp == NULL) {
  65. wpa_printf(MSG_DEBUG, "Could not remove STA " MACSTR " from "
  66. "list.", MAC2STR(sta->addr));
  67. } else
  68. tmp->next = sta->next;
  69. }
  70. void ap_sta_hash_add(struct hostapd_data *hapd, struct sta_info *sta)
  71. {
  72. sta->hnext = hapd->sta_hash[STA_HASH(sta->addr)];
  73. hapd->sta_hash[STA_HASH(sta->addr)] = sta;
  74. }
  75. static void ap_sta_hash_del(struct hostapd_data *hapd, struct sta_info *sta)
  76. {
  77. struct sta_info *s;
  78. s = hapd->sta_hash[STA_HASH(sta->addr)];
  79. if (s == NULL) return;
  80. if (os_memcmp(s->addr, sta->addr, 6) == 0) {
  81. hapd->sta_hash[STA_HASH(sta->addr)] = s->hnext;
  82. return;
  83. }
  84. while (s->hnext != NULL &&
  85. os_memcmp(s->hnext->addr, sta->addr, ETH_ALEN) != 0)
  86. s = s->hnext;
  87. if (s->hnext != NULL)
  88. s->hnext = s->hnext->hnext;
  89. else
  90. wpa_printf(MSG_DEBUG, "AP: could not remove STA " MACSTR
  91. " from hash table", MAC2STR(sta->addr));
  92. }
  93. void ap_free_sta(struct hostapd_data *hapd, struct sta_info *sta)
  94. {
  95. int set_beacon = 0;
  96. accounting_sta_stop(hapd, sta);
  97. if (!ap_sta_in_other_bss(hapd, sta, WLAN_STA_ASSOC) &&
  98. !(sta->flags & WLAN_STA_PREAUTH))
  99. hostapd_sta_remove(hapd, sta->addr);
  100. ap_sta_hash_del(hapd, sta);
  101. ap_sta_list_del(hapd, sta);
  102. if (sta->aid > 0)
  103. hapd->sta_aid[sta->aid - 1] = NULL;
  104. hapd->num_sta--;
  105. if (sta->nonerp_set) {
  106. sta->nonerp_set = 0;
  107. hapd->iface->num_sta_non_erp--;
  108. if (hapd->iface->num_sta_non_erp == 0)
  109. set_beacon++;
  110. }
  111. if (sta->no_short_slot_time_set) {
  112. sta->no_short_slot_time_set = 0;
  113. hapd->iface->num_sta_no_short_slot_time--;
  114. if (hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G
  115. && hapd->iface->num_sta_no_short_slot_time == 0)
  116. set_beacon++;
  117. }
  118. if (sta->no_short_preamble_set) {
  119. sta->no_short_preamble_set = 0;
  120. hapd->iface->num_sta_no_short_preamble--;
  121. if (hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G
  122. && hapd->iface->num_sta_no_short_preamble == 0)
  123. set_beacon++;
  124. }
  125. #ifdef CONFIG_IEEE80211N
  126. if (sta->flags & WLAN_STA_HT) {
  127. if ((sta->ht_capabilities.data.capabilities_info &
  128. HT_CAP_INFO_GREEN_FIELD) == 0)
  129. hapd->iface->num_sta_ht_no_gf--;
  130. if ((sta->ht_capabilities.data.capabilities_info &
  131. HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET) == 0)
  132. hapd->iface->num_sta_ht_20mhz--;
  133. } else
  134. hapd->iface->num_sta_no_ht--;
  135. if (hostapd_ht_operation_update(hapd->iface) > 0)
  136. set_beacon++;
  137. #endif /* CONFIG_IEEE80211N */
  138. if (set_beacon)
  139. ieee802_11_set_beacons(hapd->iface);
  140. eloop_cancel_timeout(ap_handle_timer, hapd, sta);
  141. eloop_cancel_timeout(ap_handle_session_timer, hapd, sta);
  142. ieee802_1x_free_station(sta);
  143. wpa_auth_sta_deinit(sta->wpa_sm);
  144. rsn_preauth_free_station(hapd, sta);
  145. radius_client_flush_auth(hapd->radius, sta->addr);
  146. os_free(sta->last_assoc_req);
  147. os_free(sta->challenge);
  148. os_free(sta);
  149. }
  150. void hostapd_free_stas(struct hostapd_data *hapd)
  151. {
  152. struct sta_info *sta, *prev;
  153. sta = hapd->sta_list;
  154. while (sta) {
  155. prev = sta;
  156. if (sta->flags & WLAN_STA_AUTH) {
  157. mlme_deauthenticate_indication(
  158. hapd, sta, WLAN_REASON_UNSPECIFIED);
  159. }
  160. sta = sta->next;
  161. wpa_printf(MSG_DEBUG, "Removing station " MACSTR,
  162. MAC2STR(prev->addr));
  163. ap_free_sta(hapd, prev);
  164. }
  165. }
  166. void ap_handle_timer(void *eloop_ctx, void *timeout_ctx)
  167. {
  168. struct hostapd_data *hapd = eloop_ctx;
  169. struct sta_info *sta = timeout_ctx;
  170. unsigned long next_time = 0;
  171. if (sta->timeout_next == STA_REMOVE) {
  172. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  173. HOSTAPD_LEVEL_INFO, "deauthenticated due to "
  174. "local deauth request");
  175. ap_free_sta(hapd, sta);
  176. return;
  177. }
  178. if ((sta->flags & WLAN_STA_ASSOC) &&
  179. (sta->timeout_next == STA_NULLFUNC ||
  180. sta->timeout_next == STA_DISASSOC)) {
  181. int inactive_sec;
  182. wpa_printf(MSG_DEBUG, "Checking STA " MACSTR " inactivity:",
  183. MAC2STR(sta->addr));
  184. inactive_sec = hostapd_get_inact_sec(hapd, sta->addr);
  185. if (inactive_sec == -1) {
  186. wpa_printf(MSG_DEBUG, "Could not get station info "
  187. "from kernel driver for " MACSTR ".",
  188. MAC2STR(sta->addr));
  189. } else if (inactive_sec < hapd->conf->ap_max_inactivity &&
  190. sta->flags & WLAN_STA_ASSOC) {
  191. /* station activity detected; reset timeout state */
  192. wpa_printf(MSG_DEBUG, " Station has been active");
  193. sta->timeout_next = STA_NULLFUNC;
  194. next_time = hapd->conf->ap_max_inactivity -
  195. inactive_sec;
  196. }
  197. }
  198. if ((sta->flags & WLAN_STA_ASSOC) &&
  199. sta->timeout_next == STA_DISASSOC &&
  200. !(sta->flags & WLAN_STA_PENDING_POLL)) {
  201. wpa_printf(MSG_DEBUG, " Station has ACKed data poll");
  202. /* data nullfunc frame poll did not produce TX errors; assume
  203. * station ACKed it */
  204. sta->timeout_next = STA_NULLFUNC;
  205. next_time = hapd->conf->ap_max_inactivity;
  206. }
  207. if (next_time) {
  208. eloop_register_timeout(next_time, 0, ap_handle_timer, hapd,
  209. sta);
  210. return;
  211. }
  212. if (sta->timeout_next == STA_NULLFUNC &&
  213. (sta->flags & WLAN_STA_ASSOC)) {
  214. /* send data frame to poll STA and check whether this frame
  215. * is ACKed */
  216. struct ieee80211_hdr hdr;
  217. wpa_printf(MSG_DEBUG, " Polling STA with data frame");
  218. sta->flags |= WLAN_STA_PENDING_POLL;
  219. #ifndef CONFIG_NATIVE_WINDOWS
  220. /* FIX: WLAN_FC_STYPE_NULLFUNC would be more appropriate, but
  221. * it is apparently not retried so TX Exc events are not
  222. * received for it */
  223. os_memset(&hdr, 0, sizeof(hdr));
  224. hdr.frame_control =
  225. IEEE80211_FC(WLAN_FC_TYPE_DATA, WLAN_FC_STYPE_DATA);
  226. hdr.frame_control |= host_to_le16(BIT(1));
  227. hdr.frame_control |= host_to_le16(WLAN_FC_FROMDS);
  228. os_memcpy(hdr.IEEE80211_DA_FROMDS, sta->addr, ETH_ALEN);
  229. os_memcpy(hdr.IEEE80211_BSSID_FROMDS, hapd->own_addr,
  230. ETH_ALEN);
  231. os_memcpy(hdr.IEEE80211_SA_FROMDS, hapd->own_addr, ETH_ALEN);
  232. if (hostapd_send_mgmt_frame(hapd, &hdr, sizeof(hdr), 0) < 0)
  233. perror("ap_handle_timer: send");
  234. #endif /* CONFIG_NATIVE_WINDOWS */
  235. } else if (sta->timeout_next != STA_REMOVE) {
  236. int deauth = sta->timeout_next == STA_DEAUTH;
  237. wpa_printf(MSG_DEBUG, "Sending %s info to STA " MACSTR,
  238. deauth ? "deauthentication" : "disassociation",
  239. MAC2STR(sta->addr));
  240. if (deauth) {
  241. hostapd_sta_deauth(hapd, sta->addr,
  242. WLAN_REASON_PREV_AUTH_NOT_VALID);
  243. } else {
  244. hostapd_sta_disassoc(
  245. hapd, sta->addr,
  246. WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY);
  247. }
  248. }
  249. switch (sta->timeout_next) {
  250. case STA_NULLFUNC:
  251. sta->timeout_next = STA_DISASSOC;
  252. eloop_register_timeout(AP_DISASSOC_DELAY, 0, ap_handle_timer,
  253. hapd, sta);
  254. break;
  255. case STA_DISASSOC:
  256. sta->flags &= ~WLAN_STA_ASSOC;
  257. ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
  258. if (!sta->acct_terminate_cause)
  259. sta->acct_terminate_cause =
  260. RADIUS_ACCT_TERMINATE_CAUSE_IDLE_TIMEOUT;
  261. accounting_sta_stop(hapd, sta);
  262. ieee802_1x_free_station(sta);
  263. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  264. HOSTAPD_LEVEL_INFO, "disassociated due to "
  265. "inactivity");
  266. sta->timeout_next = STA_DEAUTH;
  267. eloop_register_timeout(AP_DEAUTH_DELAY, 0, ap_handle_timer,
  268. hapd, sta);
  269. mlme_disassociate_indication(
  270. hapd, sta, WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY);
  271. break;
  272. case STA_DEAUTH:
  273. case STA_REMOVE:
  274. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  275. HOSTAPD_LEVEL_INFO, "deauthenticated due to "
  276. "inactivity");
  277. if (!sta->acct_terminate_cause)
  278. sta->acct_terminate_cause =
  279. RADIUS_ACCT_TERMINATE_CAUSE_IDLE_TIMEOUT;
  280. mlme_deauthenticate_indication(
  281. hapd, sta,
  282. WLAN_REASON_PREV_AUTH_NOT_VALID);
  283. ap_free_sta(hapd, sta);
  284. break;
  285. }
  286. }
  287. static void ap_handle_session_timer(void *eloop_ctx, void *timeout_ctx)
  288. {
  289. struct hostapd_data *hapd = eloop_ctx;
  290. struct sta_info *sta = timeout_ctx;
  291. u8 addr[ETH_ALEN];
  292. if (!(sta->flags & WLAN_STA_AUTH))
  293. return;
  294. mlme_deauthenticate_indication(hapd, sta,
  295. WLAN_REASON_PREV_AUTH_NOT_VALID);
  296. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  297. HOSTAPD_LEVEL_INFO, "deauthenticated due to "
  298. "session timeout");
  299. sta->acct_terminate_cause =
  300. RADIUS_ACCT_TERMINATE_CAUSE_SESSION_TIMEOUT;
  301. os_memcpy(addr, sta->addr, ETH_ALEN);
  302. ap_free_sta(hapd, sta);
  303. hostapd_sta_deauth(hapd, addr, WLAN_REASON_PREV_AUTH_NOT_VALID);
  304. }
  305. void ap_sta_session_timeout(struct hostapd_data *hapd, struct sta_info *sta,
  306. u32 session_timeout)
  307. {
  308. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  309. HOSTAPD_LEVEL_DEBUG, "setting session timeout to %d "
  310. "seconds", session_timeout);
  311. eloop_cancel_timeout(ap_handle_session_timer, hapd, sta);
  312. eloop_register_timeout(session_timeout, 0, ap_handle_session_timer,
  313. hapd, sta);
  314. }
  315. void ap_sta_no_session_timeout(struct hostapd_data *hapd, struct sta_info *sta)
  316. {
  317. eloop_cancel_timeout(ap_handle_session_timer, hapd, sta);
  318. }
  319. struct sta_info * ap_sta_add(struct hostapd_data *hapd, const u8 *addr)
  320. {
  321. struct sta_info *sta;
  322. sta = ap_get_sta(hapd, addr);
  323. if (sta)
  324. return sta;
  325. wpa_printf(MSG_DEBUG, " New STA");
  326. if (hapd->num_sta >= hapd->conf->max_num_sta) {
  327. /* FIX: might try to remove some old STAs first? */
  328. wpa_printf(MSG_DEBUG, "no more room for new STAs (%d/%d)",
  329. hapd->num_sta, hapd->conf->max_num_sta);
  330. return NULL;
  331. }
  332. sta = os_zalloc(sizeof(struct sta_info));
  333. if (sta == NULL) {
  334. wpa_printf(MSG_ERROR, "malloc failed");
  335. return NULL;
  336. }
  337. sta->acct_interim_interval = hapd->conf->radius->acct_interim_interval;
  338. /* initialize STA info data */
  339. eloop_register_timeout(hapd->conf->ap_max_inactivity, 0,
  340. ap_handle_timer, hapd, sta);
  341. os_memcpy(sta->addr, addr, ETH_ALEN);
  342. sta->next = hapd->sta_list;
  343. hapd->sta_list = sta;
  344. hapd->num_sta++;
  345. ap_sta_hash_add(hapd, sta);
  346. sta->ssid = &hapd->conf->ssid;
  347. return sta;
  348. }
  349. static int ap_sta_remove(struct hostapd_data *hapd, struct sta_info *sta)
  350. {
  351. ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
  352. wpa_printf(MSG_DEBUG, "Removing STA " MACSTR " from kernel driver",
  353. MAC2STR(sta->addr));
  354. if (hostapd_sta_remove(hapd, sta->addr) &&
  355. sta->flags & WLAN_STA_ASSOC) {
  356. wpa_printf(MSG_DEBUG, "Could not remove station " MACSTR
  357. " from kernel driver.", MAC2STR(sta->addr));
  358. return -1;
  359. }
  360. return 0;
  361. }
  362. static int ap_sta_in_other_bss(struct hostapd_data *hapd,
  363. struct sta_info *sta, u32 flags)
  364. {
  365. struct hostapd_iface *iface = hapd->iface;
  366. size_t i;
  367. for (i = 0; i < iface->num_bss; i++) {
  368. struct hostapd_data *bss = iface->bss[i];
  369. struct sta_info *sta2;
  370. /* bss should always be set during operation, but it may be
  371. * NULL during reconfiguration. Assume the STA is not
  372. * associated to another BSS in that case to avoid NULL pointer
  373. * dereferences. */
  374. if (bss == hapd || bss == NULL)
  375. continue;
  376. sta2 = ap_get_sta(bss, sta->addr);
  377. if (sta2 && ((sta2->flags & flags) == flags))
  378. return 1;
  379. }
  380. return 0;
  381. }
  382. void ap_sta_disassociate(struct hostapd_data *hapd, struct sta_info *sta,
  383. u16 reason)
  384. {
  385. wpa_printf(MSG_DEBUG, "%s: disassociate STA " MACSTR,
  386. hapd->conf->iface, MAC2STR(sta->addr));
  387. sta->flags &= ~WLAN_STA_ASSOC;
  388. if (!ap_sta_in_other_bss(hapd, sta, WLAN_STA_ASSOC))
  389. ap_sta_remove(hapd, sta);
  390. sta->timeout_next = STA_DEAUTH;
  391. eloop_cancel_timeout(ap_handle_timer, hapd, sta);
  392. eloop_register_timeout(AP_MAX_INACTIVITY_AFTER_DISASSOC, 0,
  393. ap_handle_timer, hapd, sta);
  394. accounting_sta_stop(hapd, sta);
  395. ieee802_1x_free_station(sta);
  396. mlme_disassociate_indication(hapd, sta, reason);
  397. }
  398. void ap_sta_deauthenticate(struct hostapd_data *hapd, struct sta_info *sta,
  399. u16 reason)
  400. {
  401. wpa_printf(MSG_DEBUG, "%s: deauthenticate STA " MACSTR,
  402. hapd->conf->iface, MAC2STR(sta->addr));
  403. sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC);
  404. if (!ap_sta_in_other_bss(hapd, sta, WLAN_STA_ASSOC))
  405. ap_sta_remove(hapd, sta);
  406. sta->timeout_next = STA_REMOVE;
  407. eloop_cancel_timeout(ap_handle_timer, hapd, sta);
  408. eloop_register_timeout(AP_MAX_INACTIVITY_AFTER_DEAUTH, 0,
  409. ap_handle_timer, hapd, sta);
  410. accounting_sta_stop(hapd, sta);
  411. ieee802_1x_free_station(sta);
  412. mlme_deauthenticate_indication(hapd, sta, reason);
  413. }
  414. int ap_sta_bind_vlan(struct hostapd_data *hapd, struct sta_info *sta,
  415. int old_vlanid)
  416. {
  417. const char *iface;
  418. struct hostapd_vlan *vlan = NULL;
  419. /*
  420. * Do not proceed furthur if the vlan id remains same. We do not want
  421. * duplicate dynamic vlan entries.
  422. */
  423. if (sta->vlan_id == old_vlanid)
  424. return 0;
  425. /*
  426. * During 1x reauth, if the vlan id changes, then remove the old id and
  427. * proceed furthur to add the new one.
  428. */
  429. if (old_vlanid > 0)
  430. vlan_remove_dynamic(hapd, old_vlanid);
  431. iface = hapd->conf->iface;
  432. if (sta->ssid->vlan[0])
  433. iface = sta->ssid->vlan;
  434. if (sta->ssid->dynamic_vlan == DYNAMIC_VLAN_DISABLED)
  435. sta->vlan_id = 0;
  436. else if (sta->vlan_id > 0) {
  437. vlan = hapd->conf->vlan;
  438. while (vlan) {
  439. if (vlan->vlan_id == sta->vlan_id ||
  440. vlan->vlan_id == VLAN_ID_WILDCARD) {
  441. iface = vlan->ifname;
  442. break;
  443. }
  444. vlan = vlan->next;
  445. }
  446. }
  447. if (sta->vlan_id > 0 && vlan == NULL) {
  448. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  449. HOSTAPD_LEVEL_DEBUG, "could not find VLAN for "
  450. "binding station to (vlan_id=%d)",
  451. sta->vlan_id);
  452. return -1;
  453. } else if (sta->vlan_id > 0 && vlan->vlan_id == VLAN_ID_WILDCARD) {
  454. vlan = vlan_add_dynamic(hapd, vlan, sta->vlan_id);
  455. if (vlan == NULL) {
  456. hostapd_logger(hapd, sta->addr,
  457. HOSTAPD_MODULE_IEEE80211,
  458. HOSTAPD_LEVEL_DEBUG, "could not add "
  459. "dynamic VLAN interface for vlan_id=%d",
  460. sta->vlan_id);
  461. return -1;
  462. }
  463. iface = vlan->ifname;
  464. if (vlan_setup_encryption_dyn(hapd, sta->ssid, iface) != 0) {
  465. hostapd_logger(hapd, sta->addr,
  466. HOSTAPD_MODULE_IEEE80211,
  467. HOSTAPD_LEVEL_DEBUG, "could not "
  468. "configure encryption for dynamic VLAN "
  469. "interface for vlan_id=%d",
  470. sta->vlan_id);
  471. }
  472. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  473. HOSTAPD_LEVEL_DEBUG, "added new dynamic VLAN "
  474. "interface '%s'", iface);
  475. } else if (vlan && vlan->vlan_id == sta->vlan_id) {
  476. if (sta->vlan_id > 0) {
  477. vlan->dynamic_vlan++;
  478. hostapd_logger(hapd, sta->addr,
  479. HOSTAPD_MODULE_IEEE80211,
  480. HOSTAPD_LEVEL_DEBUG, "updated existing "
  481. "dynamic VLAN interface '%s'", iface);
  482. }
  483. /*
  484. * Update encryption configuration for statically generated
  485. * VLAN interface. This is only used for static WEP
  486. * configuration for the case where hostapd did not yet know
  487. * which keys are to be used when the interface was added.
  488. */
  489. if (vlan_setup_encryption_dyn(hapd, sta->ssid, iface) != 0) {
  490. hostapd_logger(hapd, sta->addr,
  491. HOSTAPD_MODULE_IEEE80211,
  492. HOSTAPD_LEVEL_DEBUG, "could not "
  493. "configure encryption for VLAN "
  494. "interface for vlan_id=%d",
  495. sta->vlan_id);
  496. }
  497. }
  498. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  499. HOSTAPD_LEVEL_DEBUG, "binding station to interface "
  500. "'%s'", iface);
  501. if (wpa_auth_sta_set_vlan(sta->wpa_sm, sta->vlan_id) < 0)
  502. wpa_printf(MSG_INFO, "Failed to update VLAN-ID for WPA");
  503. return hostapd_set_sta_vlan(iface, hapd, sta->addr, sta->vlan_id);
  504. }