sta_info.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726
  1. /*
  2. * hostapd / Station table
  3. * Copyright (c) 2002-2008, 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 "common.h"
  17. #include "hostapd.h"
  18. #include "sta_flags.h"
  19. #include "sta_info.h"
  20. #include "eloop.h"
  21. #include "accounting.h"
  22. #include "ieee802_1x.h"
  23. #include "ieee802_11.h"
  24. #include "radius/radius.h"
  25. #include "wpa.h"
  26. #include "preauth.h"
  27. #include "radius/radius_client.h"
  28. #include "driver_i.h"
  29. #include "beacon.h"
  30. #include "hw_features.h"
  31. #include "mlme.h"
  32. #include "vlan_init.h"
  33. static int ap_sta_in_other_bss(struct hostapd_data *hapd,
  34. struct sta_info *sta, u32 flags);
  35. static void ap_handle_session_timer(void *eloop_ctx, void *timeout_ctx);
  36. #ifdef CONFIG_IEEE80211W
  37. static void ap_sa_query_timer(void *eloop_ctx, void *timeout_ctx);
  38. #endif /* CONFIG_IEEE80211W */
  39. int ap_for_each_sta(struct hostapd_data *hapd,
  40. int (*cb)(struct hostapd_data *hapd, struct sta_info *sta,
  41. void *ctx),
  42. void *ctx)
  43. {
  44. struct sta_info *sta;
  45. for (sta = hapd->sta_list; sta; sta = sta->next) {
  46. if (cb(hapd, sta, ctx))
  47. return 1;
  48. }
  49. return 0;
  50. }
  51. struct sta_info * ap_get_sta(struct hostapd_data *hapd, const u8 *sta)
  52. {
  53. struct sta_info *s;
  54. s = hapd->sta_hash[STA_HASH(sta)];
  55. while (s != NULL && os_memcmp(s->addr, sta, 6) != 0)
  56. s = s->hnext;
  57. return s;
  58. }
  59. static void ap_sta_list_del(struct hostapd_data *hapd, struct sta_info *sta)
  60. {
  61. struct sta_info *tmp;
  62. if (hapd->sta_list == sta) {
  63. hapd->sta_list = sta->next;
  64. return;
  65. }
  66. tmp = hapd->sta_list;
  67. while (tmp != NULL && tmp->next != sta)
  68. tmp = tmp->next;
  69. if (tmp == NULL) {
  70. wpa_printf(MSG_DEBUG, "Could not remove STA " MACSTR " from "
  71. "list.", MAC2STR(sta->addr));
  72. } else
  73. tmp->next = sta->next;
  74. }
  75. void ap_sta_hash_add(struct hostapd_data *hapd, struct sta_info *sta)
  76. {
  77. sta->hnext = hapd->sta_hash[STA_HASH(sta->addr)];
  78. hapd->sta_hash[STA_HASH(sta->addr)] = sta;
  79. }
  80. static void ap_sta_hash_del(struct hostapd_data *hapd, struct sta_info *sta)
  81. {
  82. struct sta_info *s;
  83. s = hapd->sta_hash[STA_HASH(sta->addr)];
  84. if (s == NULL) return;
  85. if (os_memcmp(s->addr, sta->addr, 6) == 0) {
  86. hapd->sta_hash[STA_HASH(sta->addr)] = s->hnext;
  87. return;
  88. }
  89. while (s->hnext != NULL &&
  90. os_memcmp(s->hnext->addr, sta->addr, ETH_ALEN) != 0)
  91. s = s->hnext;
  92. if (s->hnext != NULL)
  93. s->hnext = s->hnext->hnext;
  94. else
  95. wpa_printf(MSG_DEBUG, "AP: could not remove STA " MACSTR
  96. " from hash table", MAC2STR(sta->addr));
  97. }
  98. void ap_free_sta(struct hostapd_data *hapd, struct sta_info *sta)
  99. {
  100. int set_beacon = 0;
  101. accounting_sta_stop(hapd, sta);
  102. if (!ap_sta_in_other_bss(hapd, sta, WLAN_STA_ASSOC) &&
  103. !(sta->flags & WLAN_STA_PREAUTH))
  104. hostapd_sta_remove(hapd, sta->addr);
  105. ap_sta_hash_del(hapd, sta);
  106. ap_sta_list_del(hapd, sta);
  107. if (sta->aid > 0)
  108. hapd->sta_aid[(sta->aid - 1) / 32] &=
  109. ~BIT((sta->aid - 1) % 32);
  110. hapd->num_sta--;
  111. if (sta->nonerp_set) {
  112. sta->nonerp_set = 0;
  113. hapd->iface->num_sta_non_erp--;
  114. if (hapd->iface->num_sta_non_erp == 0)
  115. set_beacon++;
  116. }
  117. if (sta->no_short_slot_time_set) {
  118. sta->no_short_slot_time_set = 0;
  119. hapd->iface->num_sta_no_short_slot_time--;
  120. if (hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G
  121. && hapd->iface->num_sta_no_short_slot_time == 0)
  122. set_beacon++;
  123. }
  124. if (sta->no_short_preamble_set) {
  125. sta->no_short_preamble_set = 0;
  126. hapd->iface->num_sta_no_short_preamble--;
  127. if (hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G
  128. && hapd->iface->num_sta_no_short_preamble == 0)
  129. set_beacon++;
  130. }
  131. #ifdef CONFIG_IEEE80211N
  132. if (sta->no_ht_gf_set) {
  133. sta->no_ht_gf_set = 0;
  134. hapd->iface->num_sta_ht_no_gf--;
  135. }
  136. if (sta->no_ht_set) {
  137. sta->no_ht_set = 0;
  138. hapd->iface->num_sta_no_ht--;
  139. }
  140. if (sta->ht_20mhz_set) {
  141. sta->ht_20mhz_set = 0;
  142. hapd->iface->num_sta_ht_20mhz--;
  143. }
  144. #ifdef NEED_AP_MLME
  145. if (hostapd_ht_operation_update(hapd->iface) > 0)
  146. set_beacon++;
  147. #endif /* NEED_AP_MLME */
  148. #endif /* CONFIG_IEEE80211N */
  149. if (set_beacon)
  150. ieee802_11_set_beacons(hapd->iface);
  151. eloop_cancel_timeout(ap_handle_timer, hapd, sta);
  152. eloop_cancel_timeout(ap_handle_session_timer, hapd, sta);
  153. ieee802_1x_free_station(sta);
  154. wpa_auth_sta_deinit(sta->wpa_sm);
  155. rsn_preauth_free_station(hapd, sta);
  156. #ifndef CONFIG_NO_RADIUS
  157. radius_client_flush_auth(hapd->radius, sta->addr);
  158. #endif /* CONFIG_NO_RADIUS */
  159. os_free(sta->last_assoc_req);
  160. os_free(sta->challenge);
  161. #ifdef CONFIG_IEEE80211W
  162. os_free(sta->sa_query_trans_id);
  163. eloop_cancel_timeout(ap_sa_query_timer, hapd, sta);
  164. #endif /* CONFIG_IEEE80211W */
  165. wpabuf_free(sta->wps_ie);
  166. os_free(sta->ht_capabilities);
  167. os_free(sta);
  168. }
  169. void hostapd_free_stas(struct hostapd_data *hapd)
  170. {
  171. struct sta_info *sta, *prev;
  172. sta = hapd->sta_list;
  173. while (sta) {
  174. prev = sta;
  175. if (sta->flags & WLAN_STA_AUTH) {
  176. mlme_deauthenticate_indication(
  177. hapd, sta, WLAN_REASON_UNSPECIFIED);
  178. }
  179. sta = sta->next;
  180. wpa_printf(MSG_DEBUG, "Removing station " MACSTR,
  181. MAC2STR(prev->addr));
  182. ap_free_sta(hapd, prev);
  183. }
  184. }
  185. /**
  186. * ap_handle_timer - Per STA timer handler
  187. * @eloop_ctx: struct hostapd_data *
  188. * @timeout_ctx: struct sta_info *
  189. *
  190. * This function is called to check station activity and to remove inactive
  191. * stations.
  192. */
  193. void ap_handle_timer(void *eloop_ctx, void *timeout_ctx)
  194. {
  195. struct hostapd_data *hapd = eloop_ctx;
  196. struct sta_info *sta = timeout_ctx;
  197. unsigned long next_time = 0;
  198. if (sta->timeout_next == STA_REMOVE) {
  199. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  200. HOSTAPD_LEVEL_INFO, "deauthenticated due to "
  201. "local deauth request");
  202. ap_free_sta(hapd, sta);
  203. return;
  204. }
  205. if ((sta->flags & WLAN_STA_ASSOC) &&
  206. (sta->timeout_next == STA_NULLFUNC ||
  207. sta->timeout_next == STA_DISASSOC)) {
  208. int inactive_sec;
  209. wpa_printf(MSG_DEBUG, "Checking STA " MACSTR " inactivity:",
  210. MAC2STR(sta->addr));
  211. inactive_sec = hostapd_get_inact_sec(hapd, sta->addr);
  212. if (inactive_sec == -1) {
  213. wpa_printf(MSG_DEBUG, "Could not get station info "
  214. "from kernel driver for " MACSTR ".",
  215. MAC2STR(sta->addr));
  216. } else if (inactive_sec < hapd->conf->ap_max_inactivity &&
  217. sta->flags & WLAN_STA_ASSOC) {
  218. /* station activity detected; reset timeout state */
  219. wpa_printf(MSG_DEBUG, " Station has been active");
  220. sta->timeout_next = STA_NULLFUNC;
  221. next_time = hapd->conf->ap_max_inactivity -
  222. inactive_sec;
  223. }
  224. }
  225. if ((sta->flags & WLAN_STA_ASSOC) &&
  226. sta->timeout_next == STA_DISASSOC &&
  227. !(sta->flags & WLAN_STA_PENDING_POLL)) {
  228. wpa_printf(MSG_DEBUG, " Station has ACKed data poll");
  229. /* data nullfunc frame poll did not produce TX errors; assume
  230. * station ACKed it */
  231. sta->timeout_next = STA_NULLFUNC;
  232. next_time = hapd->conf->ap_max_inactivity;
  233. }
  234. if (next_time) {
  235. eloop_register_timeout(next_time, 0, ap_handle_timer, hapd,
  236. sta);
  237. return;
  238. }
  239. if (sta->timeout_next == STA_NULLFUNC &&
  240. (sta->flags & WLAN_STA_ASSOC)) {
  241. /* send data frame to poll STA and check whether this frame
  242. * is ACKed */
  243. struct ieee80211_hdr hdr;
  244. wpa_printf(MSG_DEBUG, " Polling STA with data frame");
  245. sta->flags |= WLAN_STA_PENDING_POLL;
  246. #ifndef CONFIG_NATIVE_WINDOWS
  247. os_memset(&hdr, 0, sizeof(hdr));
  248. if (hapd->driver &&
  249. os_strcmp(hapd->driver->name, "hostap") == 0) {
  250. /*
  251. * WLAN_FC_STYPE_NULLFUNC would be more appropriate,
  252. * but it is apparently not retried so TX Exc events
  253. * are not received for it.
  254. */
  255. hdr.frame_control =
  256. IEEE80211_FC(WLAN_FC_TYPE_DATA,
  257. WLAN_FC_STYPE_DATA);
  258. } else {
  259. hdr.frame_control =
  260. IEEE80211_FC(WLAN_FC_TYPE_DATA,
  261. WLAN_FC_STYPE_NULLFUNC);
  262. }
  263. hdr.frame_control |= host_to_le16(WLAN_FC_FROMDS);
  264. os_memcpy(hdr.IEEE80211_DA_FROMDS, sta->addr, ETH_ALEN);
  265. os_memcpy(hdr.IEEE80211_BSSID_FROMDS, hapd->own_addr,
  266. ETH_ALEN);
  267. os_memcpy(hdr.IEEE80211_SA_FROMDS, hapd->own_addr, ETH_ALEN);
  268. if (hostapd_send_mgmt_frame(hapd, &hdr, sizeof(hdr)) < 0)
  269. perror("ap_handle_timer: send");
  270. #endif /* CONFIG_NATIVE_WINDOWS */
  271. } else if (sta->timeout_next != STA_REMOVE) {
  272. int deauth = sta->timeout_next == STA_DEAUTH;
  273. wpa_printf(MSG_DEBUG, "Sending %s info to STA " MACSTR,
  274. deauth ? "deauthentication" : "disassociation",
  275. MAC2STR(sta->addr));
  276. if (deauth) {
  277. hostapd_sta_deauth(hapd, sta->addr,
  278. WLAN_REASON_PREV_AUTH_NOT_VALID);
  279. } else {
  280. hostapd_sta_disassoc(
  281. hapd, sta->addr,
  282. WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY);
  283. }
  284. }
  285. switch (sta->timeout_next) {
  286. case STA_NULLFUNC:
  287. sta->timeout_next = STA_DISASSOC;
  288. eloop_register_timeout(AP_DISASSOC_DELAY, 0, ap_handle_timer,
  289. hapd, sta);
  290. break;
  291. case STA_DISASSOC:
  292. sta->flags &= ~WLAN_STA_ASSOC;
  293. ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
  294. if (!sta->acct_terminate_cause)
  295. sta->acct_terminate_cause =
  296. RADIUS_ACCT_TERMINATE_CAUSE_IDLE_TIMEOUT;
  297. accounting_sta_stop(hapd, sta);
  298. ieee802_1x_free_station(sta);
  299. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  300. HOSTAPD_LEVEL_INFO, "disassociated due to "
  301. "inactivity");
  302. sta->timeout_next = STA_DEAUTH;
  303. eloop_register_timeout(AP_DEAUTH_DELAY, 0, ap_handle_timer,
  304. hapd, sta);
  305. mlme_disassociate_indication(
  306. hapd, sta, WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY);
  307. break;
  308. case STA_DEAUTH:
  309. case STA_REMOVE:
  310. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  311. HOSTAPD_LEVEL_INFO, "deauthenticated due to "
  312. "inactivity");
  313. if (!sta->acct_terminate_cause)
  314. sta->acct_terminate_cause =
  315. RADIUS_ACCT_TERMINATE_CAUSE_IDLE_TIMEOUT;
  316. mlme_deauthenticate_indication(
  317. hapd, sta,
  318. WLAN_REASON_PREV_AUTH_NOT_VALID);
  319. ap_free_sta(hapd, sta);
  320. break;
  321. }
  322. }
  323. static void ap_handle_session_timer(void *eloop_ctx, void *timeout_ctx)
  324. {
  325. struct hostapd_data *hapd = eloop_ctx;
  326. struct sta_info *sta = timeout_ctx;
  327. u8 addr[ETH_ALEN];
  328. if (!(sta->flags & WLAN_STA_AUTH))
  329. return;
  330. mlme_deauthenticate_indication(hapd, sta,
  331. WLAN_REASON_PREV_AUTH_NOT_VALID);
  332. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  333. HOSTAPD_LEVEL_INFO, "deauthenticated due to "
  334. "session timeout");
  335. sta->acct_terminate_cause =
  336. RADIUS_ACCT_TERMINATE_CAUSE_SESSION_TIMEOUT;
  337. os_memcpy(addr, sta->addr, ETH_ALEN);
  338. ap_free_sta(hapd, sta);
  339. hostapd_sta_deauth(hapd, addr, WLAN_REASON_PREV_AUTH_NOT_VALID);
  340. }
  341. void ap_sta_session_timeout(struct hostapd_data *hapd, struct sta_info *sta,
  342. u32 session_timeout)
  343. {
  344. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  345. HOSTAPD_LEVEL_DEBUG, "setting session timeout to %d "
  346. "seconds", session_timeout);
  347. eloop_cancel_timeout(ap_handle_session_timer, hapd, sta);
  348. eloop_register_timeout(session_timeout, 0, ap_handle_session_timer,
  349. hapd, sta);
  350. }
  351. void ap_sta_no_session_timeout(struct hostapd_data *hapd, struct sta_info *sta)
  352. {
  353. eloop_cancel_timeout(ap_handle_session_timer, hapd, sta);
  354. }
  355. struct sta_info * ap_sta_add(struct hostapd_data *hapd, const u8 *addr)
  356. {
  357. struct sta_info *sta;
  358. sta = ap_get_sta(hapd, addr);
  359. if (sta)
  360. return sta;
  361. wpa_printf(MSG_DEBUG, " New STA");
  362. if (hapd->num_sta >= hapd->conf->max_num_sta) {
  363. /* FIX: might try to remove some old STAs first? */
  364. wpa_printf(MSG_DEBUG, "no more room for new STAs (%d/%d)",
  365. hapd->num_sta, hapd->conf->max_num_sta);
  366. return NULL;
  367. }
  368. sta = os_zalloc(sizeof(struct sta_info));
  369. if (sta == NULL) {
  370. wpa_printf(MSG_ERROR, "malloc failed");
  371. return NULL;
  372. }
  373. sta->acct_interim_interval = hapd->conf->acct_interim_interval;
  374. /* initialize STA info data */
  375. eloop_register_timeout(hapd->conf->ap_max_inactivity, 0,
  376. ap_handle_timer, hapd, sta);
  377. os_memcpy(sta->addr, addr, ETH_ALEN);
  378. sta->next = hapd->sta_list;
  379. hapd->sta_list = sta;
  380. hapd->num_sta++;
  381. ap_sta_hash_add(hapd, sta);
  382. sta->ssid = &hapd->conf->ssid;
  383. return sta;
  384. }
  385. static int ap_sta_remove(struct hostapd_data *hapd, struct sta_info *sta)
  386. {
  387. ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
  388. wpa_printf(MSG_DEBUG, "Removing STA " MACSTR " from kernel driver",
  389. MAC2STR(sta->addr));
  390. if (hostapd_sta_remove(hapd, sta->addr) &&
  391. sta->flags & WLAN_STA_ASSOC) {
  392. wpa_printf(MSG_DEBUG, "Could not remove station " MACSTR
  393. " from kernel driver.", MAC2STR(sta->addr));
  394. return -1;
  395. }
  396. return 0;
  397. }
  398. static int ap_sta_in_other_bss(struct hostapd_data *hapd,
  399. struct sta_info *sta, u32 flags)
  400. {
  401. struct hostapd_iface *iface = hapd->iface;
  402. size_t i;
  403. for (i = 0; i < iface->num_bss; i++) {
  404. struct hostapd_data *bss = iface->bss[i];
  405. struct sta_info *sta2;
  406. /* bss should always be set during operation, but it may be
  407. * NULL during reconfiguration. Assume the STA is not
  408. * associated to another BSS in that case to avoid NULL pointer
  409. * dereferences. */
  410. if (bss == hapd || bss == NULL)
  411. continue;
  412. sta2 = ap_get_sta(bss, sta->addr);
  413. if (sta2 && ((sta2->flags & flags) == flags))
  414. return 1;
  415. }
  416. return 0;
  417. }
  418. void ap_sta_disassociate(struct hostapd_data *hapd, struct sta_info *sta,
  419. u16 reason)
  420. {
  421. wpa_printf(MSG_DEBUG, "%s: disassociate STA " MACSTR,
  422. hapd->conf->iface, MAC2STR(sta->addr));
  423. sta->flags &= ~WLAN_STA_ASSOC;
  424. if (!ap_sta_in_other_bss(hapd, sta, WLAN_STA_ASSOC))
  425. ap_sta_remove(hapd, sta);
  426. sta->timeout_next = STA_DEAUTH;
  427. eloop_cancel_timeout(ap_handle_timer, hapd, sta);
  428. eloop_register_timeout(AP_MAX_INACTIVITY_AFTER_DISASSOC, 0,
  429. ap_handle_timer, hapd, sta);
  430. accounting_sta_stop(hapd, sta);
  431. ieee802_1x_free_station(sta);
  432. mlme_disassociate_indication(hapd, sta, reason);
  433. }
  434. void ap_sta_deauthenticate(struct hostapd_data *hapd, struct sta_info *sta,
  435. u16 reason)
  436. {
  437. wpa_printf(MSG_DEBUG, "%s: deauthenticate STA " MACSTR,
  438. hapd->conf->iface, MAC2STR(sta->addr));
  439. sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC);
  440. if (!ap_sta_in_other_bss(hapd, sta, WLAN_STA_ASSOC))
  441. ap_sta_remove(hapd, sta);
  442. sta->timeout_next = STA_REMOVE;
  443. eloop_cancel_timeout(ap_handle_timer, hapd, sta);
  444. eloop_register_timeout(AP_MAX_INACTIVITY_AFTER_DEAUTH, 0,
  445. ap_handle_timer, hapd, sta);
  446. accounting_sta_stop(hapd, sta);
  447. ieee802_1x_free_station(sta);
  448. mlme_deauthenticate_indication(hapd, sta, reason);
  449. }
  450. int ap_sta_bind_vlan(struct hostapd_data *hapd, struct sta_info *sta,
  451. int old_vlanid)
  452. {
  453. #ifndef CONFIG_NO_VLAN
  454. const char *iface;
  455. struct hostapd_vlan *vlan = NULL;
  456. /*
  457. * Do not proceed furthur if the vlan id remains same. We do not want
  458. * duplicate dynamic vlan entries.
  459. */
  460. if (sta->vlan_id == old_vlanid)
  461. return 0;
  462. /*
  463. * During 1x reauth, if the vlan id changes, then remove the old id and
  464. * proceed furthur to add the new one.
  465. */
  466. if (old_vlanid > 0)
  467. vlan_remove_dynamic(hapd, old_vlanid);
  468. iface = hapd->conf->iface;
  469. if (sta->ssid->vlan[0])
  470. iface = sta->ssid->vlan;
  471. if (sta->ssid->dynamic_vlan == DYNAMIC_VLAN_DISABLED)
  472. sta->vlan_id = 0;
  473. else if (sta->vlan_id > 0) {
  474. vlan = hapd->conf->vlan;
  475. while (vlan) {
  476. if (vlan->vlan_id == sta->vlan_id ||
  477. vlan->vlan_id == VLAN_ID_WILDCARD) {
  478. iface = vlan->ifname;
  479. break;
  480. }
  481. vlan = vlan->next;
  482. }
  483. }
  484. if (sta->vlan_id > 0 && vlan == NULL) {
  485. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  486. HOSTAPD_LEVEL_DEBUG, "could not find VLAN for "
  487. "binding station to (vlan_id=%d)",
  488. sta->vlan_id);
  489. return -1;
  490. } else if (sta->vlan_id > 0 && vlan->vlan_id == VLAN_ID_WILDCARD) {
  491. vlan = vlan_add_dynamic(hapd, vlan, sta->vlan_id);
  492. if (vlan == NULL) {
  493. hostapd_logger(hapd, sta->addr,
  494. HOSTAPD_MODULE_IEEE80211,
  495. HOSTAPD_LEVEL_DEBUG, "could not add "
  496. "dynamic VLAN interface for vlan_id=%d",
  497. sta->vlan_id);
  498. return -1;
  499. }
  500. iface = vlan->ifname;
  501. if (vlan_setup_encryption_dyn(hapd, sta->ssid, iface) != 0) {
  502. hostapd_logger(hapd, sta->addr,
  503. HOSTAPD_MODULE_IEEE80211,
  504. HOSTAPD_LEVEL_DEBUG, "could not "
  505. "configure encryption for dynamic VLAN "
  506. "interface for vlan_id=%d",
  507. sta->vlan_id);
  508. }
  509. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  510. HOSTAPD_LEVEL_DEBUG, "added new dynamic VLAN "
  511. "interface '%s'", iface);
  512. } else if (vlan && vlan->vlan_id == sta->vlan_id) {
  513. if (sta->vlan_id > 0) {
  514. vlan->dynamic_vlan++;
  515. hostapd_logger(hapd, sta->addr,
  516. HOSTAPD_MODULE_IEEE80211,
  517. HOSTAPD_LEVEL_DEBUG, "updated existing "
  518. "dynamic VLAN interface '%s'", iface);
  519. }
  520. /*
  521. * Update encryption configuration for statically generated
  522. * VLAN interface. This is only used for static WEP
  523. * configuration for the case where hostapd did not yet know
  524. * which keys are to be used when the interface was added.
  525. */
  526. if (vlan_setup_encryption_dyn(hapd, sta->ssid, iface) != 0) {
  527. hostapd_logger(hapd, sta->addr,
  528. HOSTAPD_MODULE_IEEE80211,
  529. HOSTAPD_LEVEL_DEBUG, "could not "
  530. "configure encryption for VLAN "
  531. "interface for vlan_id=%d",
  532. sta->vlan_id);
  533. }
  534. }
  535. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  536. HOSTAPD_LEVEL_DEBUG, "binding station to interface "
  537. "'%s'", iface);
  538. if (wpa_auth_sta_set_vlan(sta->wpa_sm, sta->vlan_id) < 0)
  539. wpa_printf(MSG_INFO, "Failed to update VLAN-ID for WPA");
  540. return hostapd_set_sta_vlan(iface, hapd, sta->addr, sta->vlan_id);
  541. #else /* CONFIG_NO_VLAN */
  542. return 0;
  543. #endif /* CONFIG_NO_VLAN */
  544. }
  545. #ifdef CONFIG_IEEE80211W
  546. int ap_check_sa_query_timeout(struct hostapd_data *hapd, struct sta_info *sta)
  547. {
  548. u32 tu;
  549. struct os_time now, passed;
  550. os_get_time(&now);
  551. os_time_sub(&now, &sta->sa_query_start, &passed);
  552. tu = (passed.sec * 1000000 + passed.usec) / 1024;
  553. if (hapd->conf->assoc_sa_query_max_timeout < tu) {
  554. hostapd_logger(hapd, sta->addr,
  555. HOSTAPD_MODULE_IEEE80211,
  556. HOSTAPD_LEVEL_DEBUG,
  557. "association SA Query timed out");
  558. sta->sa_query_timed_out = 1;
  559. os_free(sta->sa_query_trans_id);
  560. sta->sa_query_trans_id = NULL;
  561. sta->sa_query_count = 0;
  562. eloop_cancel_timeout(ap_sa_query_timer, hapd, sta);
  563. return 1;
  564. }
  565. return 0;
  566. }
  567. static void ap_sa_query_timer(void *eloop_ctx, void *timeout_ctx)
  568. {
  569. struct hostapd_data *hapd = eloop_ctx;
  570. struct sta_info *sta = timeout_ctx;
  571. unsigned int timeout, sec, usec;
  572. u8 *trans_id, *nbuf;
  573. if (sta->sa_query_count > 0 &&
  574. ap_check_sa_query_timeout(hapd, sta))
  575. return;
  576. nbuf = os_realloc(sta->sa_query_trans_id,
  577. (sta->sa_query_count + 1) * WLAN_SA_QUERY_TR_ID_LEN);
  578. if (nbuf == NULL)
  579. return;
  580. if (sta->sa_query_count == 0) {
  581. /* Starting a new SA Query procedure */
  582. os_get_time(&sta->sa_query_start);
  583. }
  584. trans_id = nbuf + sta->sa_query_count * WLAN_SA_QUERY_TR_ID_LEN;
  585. sta->sa_query_trans_id = nbuf;
  586. sta->sa_query_count++;
  587. os_get_random(trans_id, WLAN_SA_QUERY_TR_ID_LEN);
  588. timeout = hapd->conf->assoc_sa_query_retry_timeout;
  589. sec = ((timeout / 1000) * 1024) / 1000;
  590. usec = (timeout % 1000) * 1024;
  591. eloop_register_timeout(sec, usec, ap_sa_query_timer, hapd, sta);
  592. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  593. HOSTAPD_LEVEL_DEBUG,
  594. "association SA Query attempt %d", sta->sa_query_count);
  595. #ifdef NEED_AP_MLME
  596. ieee802_11_send_sa_query_req(hapd, sta->addr, trans_id);
  597. #endif /* NEED_AP_MLME */
  598. }
  599. void ap_sta_start_sa_query(struct hostapd_data *hapd, struct sta_info *sta)
  600. {
  601. ap_sa_query_timer(hapd, sta);
  602. }
  603. void ap_sta_stop_sa_query(struct hostapd_data *hapd, struct sta_info *sta)
  604. {
  605. eloop_cancel_timeout(ap_sa_query_timer, hapd, sta);
  606. os_free(sta->sa_query_trans_id);
  607. sta->sa_query_trans_id = NULL;
  608. sta->sa_query_count = 0;
  609. }
  610. #endif /* CONFIG_IEEE80211W */