sta_info.c 19 KB

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