sta_info.c 19 KB

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