sta_info.c 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089
  1. /*
  2. * hostapd / Station table
  3. * Copyright (c) 2002-2013, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "utils/includes.h"
  9. #include "utils/common.h"
  10. #include "utils/eloop.h"
  11. #include "common/ieee802_11_defs.h"
  12. #include "common/wpa_ctrl.h"
  13. #include "common/sae.h"
  14. #include "radius/radius.h"
  15. #include "radius/radius_client.h"
  16. #include "p2p/p2p.h"
  17. #include "hostapd.h"
  18. #include "accounting.h"
  19. #include "ieee802_1x.h"
  20. #include "ieee802_11.h"
  21. #include "ieee802_11_auth.h"
  22. #include "wpa_auth.h"
  23. #include "preauth_auth.h"
  24. #include "ap_config.h"
  25. #include "beacon.h"
  26. #include "ap_mlme.h"
  27. #include "vlan_init.h"
  28. #include "p2p_hostapd.h"
  29. #include "ap_drv_ops.h"
  30. #include "gas_serv.h"
  31. #include "wnm_ap.h"
  32. #include "sta_info.h"
  33. static void ap_sta_remove_in_other_bss(struct hostapd_data *hapd,
  34. struct sta_info *sta);
  35. static void ap_handle_session_timer(void *eloop_ctx, void *timeout_ctx);
  36. static void ap_handle_session_warning_timer(void *eloop_ctx, void *timeout_ctx);
  37. static void ap_sta_deauth_cb_timeout(void *eloop_ctx, void *timeout_ctx);
  38. static void ap_sta_disassoc_cb_timeout(void *eloop_ctx, void *timeout_ctx);
  39. #ifdef CONFIG_IEEE80211W
  40. static void ap_sa_query_timer(void *eloop_ctx, void *timeout_ctx);
  41. #endif /* CONFIG_IEEE80211W */
  42. static int ap_sta_remove(struct hostapd_data *hapd, struct sta_info *sta);
  43. int ap_for_each_sta(struct hostapd_data *hapd,
  44. int (*cb)(struct hostapd_data *hapd, struct sta_info *sta,
  45. void *ctx),
  46. void *ctx)
  47. {
  48. struct sta_info *sta;
  49. for (sta = hapd->sta_list; sta; sta = sta->next) {
  50. if (cb(hapd, sta, ctx))
  51. return 1;
  52. }
  53. return 0;
  54. }
  55. struct sta_info * ap_get_sta(struct hostapd_data *hapd, const u8 *sta)
  56. {
  57. struct sta_info *s;
  58. s = hapd->sta_hash[STA_HASH(sta)];
  59. while (s != NULL && os_memcmp(s->addr, sta, 6) != 0)
  60. s = s->hnext;
  61. return s;
  62. }
  63. #ifdef CONFIG_P2P
  64. struct sta_info * ap_get_sta_p2p(struct hostapd_data *hapd, const u8 *addr)
  65. {
  66. struct sta_info *sta;
  67. for (sta = hapd->sta_list; sta; sta = sta->next) {
  68. const u8 *p2p_dev_addr;
  69. if (sta->p2p_ie == NULL)
  70. continue;
  71. p2p_dev_addr = p2p_get_go_dev_addr(sta->p2p_ie);
  72. if (p2p_dev_addr == NULL)
  73. continue;
  74. if (os_memcmp(p2p_dev_addr, addr, ETH_ALEN) == 0)
  75. return sta;
  76. }
  77. return NULL;
  78. }
  79. #endif /* CONFIG_P2P */
  80. static void ap_sta_list_del(struct hostapd_data *hapd, struct sta_info *sta)
  81. {
  82. struct sta_info *tmp;
  83. if (hapd->sta_list == sta) {
  84. hapd->sta_list = sta->next;
  85. return;
  86. }
  87. tmp = hapd->sta_list;
  88. while (tmp != NULL && tmp->next != sta)
  89. tmp = tmp->next;
  90. if (tmp == NULL) {
  91. wpa_printf(MSG_DEBUG, "Could not remove STA " MACSTR " from "
  92. "list.", MAC2STR(sta->addr));
  93. } else
  94. tmp->next = sta->next;
  95. }
  96. void ap_sta_hash_add(struct hostapd_data *hapd, struct sta_info *sta)
  97. {
  98. sta->hnext = hapd->sta_hash[STA_HASH(sta->addr)];
  99. hapd->sta_hash[STA_HASH(sta->addr)] = sta;
  100. }
  101. static void ap_sta_hash_del(struct hostapd_data *hapd, struct sta_info *sta)
  102. {
  103. struct sta_info *s;
  104. s = hapd->sta_hash[STA_HASH(sta->addr)];
  105. if (s == NULL) return;
  106. if (os_memcmp(s->addr, sta->addr, 6) == 0) {
  107. hapd->sta_hash[STA_HASH(sta->addr)] = s->hnext;
  108. return;
  109. }
  110. while (s->hnext != NULL &&
  111. os_memcmp(s->hnext->addr, sta->addr, ETH_ALEN) != 0)
  112. s = s->hnext;
  113. if (s->hnext != NULL)
  114. s->hnext = s->hnext->hnext;
  115. else
  116. wpa_printf(MSG_DEBUG, "AP: could not remove STA " MACSTR
  117. " from hash table", MAC2STR(sta->addr));
  118. }
  119. void ap_free_sta(struct hostapd_data *hapd, struct sta_info *sta)
  120. {
  121. int set_beacon = 0;
  122. accounting_sta_stop(hapd, sta);
  123. /* just in case */
  124. ap_sta_set_authorized(hapd, sta, 0);
  125. if (sta->flags & WLAN_STA_WDS)
  126. hostapd_set_wds_sta(hapd, NULL, sta->addr, sta->aid, 0);
  127. if (!(sta->flags & WLAN_STA_PREAUTH))
  128. hostapd_drv_sta_remove(hapd, sta->addr);
  129. ap_sta_hash_del(hapd, sta);
  130. ap_sta_list_del(hapd, sta);
  131. if (sta->aid > 0)
  132. hapd->sta_aid[(sta->aid - 1) / 32] &=
  133. ~BIT((sta->aid - 1) % 32);
  134. hapd->num_sta--;
  135. if (sta->nonerp_set) {
  136. sta->nonerp_set = 0;
  137. hapd->iface->num_sta_non_erp--;
  138. if (hapd->iface->num_sta_non_erp == 0)
  139. set_beacon++;
  140. }
  141. if (sta->no_short_slot_time_set) {
  142. sta->no_short_slot_time_set = 0;
  143. hapd->iface->num_sta_no_short_slot_time--;
  144. if (hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G
  145. && hapd->iface->num_sta_no_short_slot_time == 0)
  146. set_beacon++;
  147. }
  148. if (sta->no_short_preamble_set) {
  149. sta->no_short_preamble_set = 0;
  150. hapd->iface->num_sta_no_short_preamble--;
  151. if (hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G
  152. && hapd->iface->num_sta_no_short_preamble == 0)
  153. set_beacon++;
  154. }
  155. if (sta->no_ht_gf_set) {
  156. sta->no_ht_gf_set = 0;
  157. hapd->iface->num_sta_ht_no_gf--;
  158. }
  159. if (sta->no_ht_set) {
  160. sta->no_ht_set = 0;
  161. hapd->iface->num_sta_no_ht--;
  162. }
  163. if (sta->ht_20mhz_set) {
  164. sta->ht_20mhz_set = 0;
  165. hapd->iface->num_sta_ht_20mhz--;
  166. }
  167. #ifdef CONFIG_P2P
  168. if (sta->no_p2p_set) {
  169. sta->no_p2p_set = 0;
  170. hapd->num_sta_no_p2p--;
  171. if (hapd->num_sta_no_p2p == 0)
  172. hostapd_p2p_non_p2p_sta_disconnected(hapd);
  173. }
  174. #endif /* CONFIG_P2P */
  175. #if defined(NEED_AP_MLME) && defined(CONFIG_IEEE80211N)
  176. if (hostapd_ht_operation_update(hapd->iface) > 0)
  177. set_beacon++;
  178. #endif /* NEED_AP_MLME && CONFIG_IEEE80211N */
  179. if (set_beacon)
  180. ieee802_11_set_beacons(hapd->iface);
  181. wpa_printf(MSG_DEBUG, "%s: cancel ap_handle_timer for " MACSTR,
  182. __func__, MAC2STR(sta->addr));
  183. eloop_cancel_timeout(ap_handle_timer, hapd, sta);
  184. eloop_cancel_timeout(ap_handle_session_timer, hapd, sta);
  185. eloop_cancel_timeout(ap_handle_session_warning_timer, hapd, sta);
  186. eloop_cancel_timeout(ap_sta_deauth_cb_timeout, hapd, sta);
  187. eloop_cancel_timeout(ap_sta_disassoc_cb_timeout, hapd, sta);
  188. ieee802_1x_free_station(sta);
  189. wpa_auth_sta_deinit(sta->wpa_sm);
  190. rsn_preauth_free_station(hapd, sta);
  191. #ifndef CONFIG_NO_RADIUS
  192. if (hapd->radius)
  193. radius_client_flush_auth(hapd->radius, sta->addr);
  194. #endif /* CONFIG_NO_RADIUS */
  195. os_free(sta->last_assoc_req);
  196. os_free(sta->challenge);
  197. #ifdef CONFIG_IEEE80211W
  198. os_free(sta->sa_query_trans_id);
  199. eloop_cancel_timeout(ap_sa_query_timer, hapd, sta);
  200. #endif /* CONFIG_IEEE80211W */
  201. #ifdef CONFIG_P2P
  202. p2p_group_notif_disassoc(hapd->p2p_group, sta->addr);
  203. #endif /* CONFIG_P2P */
  204. #ifdef CONFIG_INTERWORKING
  205. if (sta->gas_dialog) {
  206. int i;
  207. for (i = 0; i < GAS_DIALOG_MAX; i++)
  208. gas_serv_dialog_clear(&sta->gas_dialog[i]);
  209. os_free(sta->gas_dialog);
  210. }
  211. #endif /* CONFIG_INTERWORKING */
  212. wpabuf_free(sta->wps_ie);
  213. wpabuf_free(sta->p2p_ie);
  214. wpabuf_free(sta->hs20_ie);
  215. os_free(sta->ht_capabilities);
  216. os_free(sta->vht_capabilities);
  217. hostapd_free_psk_list(sta->psk);
  218. os_free(sta->identity);
  219. os_free(sta->radius_cui);
  220. os_free(sta->remediation_url);
  221. wpabuf_free(sta->hs20_deauth_req);
  222. os_free(sta->hs20_session_info_url);
  223. #ifdef CONFIG_SAE
  224. sae_clear_data(sta->sae);
  225. os_free(sta->sae);
  226. #endif /* CONFIG_SAE */
  227. os_free(sta);
  228. }
  229. void hostapd_free_stas(struct hostapd_data *hapd)
  230. {
  231. struct sta_info *sta, *prev;
  232. sta = hapd->sta_list;
  233. while (sta) {
  234. prev = sta;
  235. if (sta->flags & WLAN_STA_AUTH) {
  236. mlme_deauthenticate_indication(
  237. hapd, sta, WLAN_REASON_UNSPECIFIED);
  238. }
  239. sta = sta->next;
  240. wpa_printf(MSG_DEBUG, "Removing station " MACSTR,
  241. MAC2STR(prev->addr));
  242. ap_free_sta(hapd, prev);
  243. }
  244. }
  245. /**
  246. * ap_handle_timer - Per STA timer handler
  247. * @eloop_ctx: struct hostapd_data *
  248. * @timeout_ctx: struct sta_info *
  249. *
  250. * This function is called to check station activity and to remove inactive
  251. * stations.
  252. */
  253. void ap_handle_timer(void *eloop_ctx, void *timeout_ctx)
  254. {
  255. struct hostapd_data *hapd = eloop_ctx;
  256. struct sta_info *sta = timeout_ctx;
  257. unsigned long next_time = 0;
  258. int reason;
  259. wpa_printf(MSG_DEBUG, "%s: " MACSTR " flags=0x%x timeout_next=%d",
  260. __func__, MAC2STR(sta->addr), sta->flags,
  261. sta->timeout_next);
  262. if (sta->timeout_next == STA_REMOVE) {
  263. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  264. HOSTAPD_LEVEL_INFO, "deauthenticated due to "
  265. "local deauth request");
  266. ap_free_sta(hapd, sta);
  267. return;
  268. }
  269. if ((sta->flags & WLAN_STA_ASSOC) &&
  270. (sta->timeout_next == STA_NULLFUNC ||
  271. sta->timeout_next == STA_DISASSOC)) {
  272. int inactive_sec;
  273. /*
  274. * Add random value to timeout so that we don't end up bouncing
  275. * all stations at the same time if we have lots of associated
  276. * stations that are idle (but keep re-associating).
  277. */
  278. int fuzz = os_random() % 20;
  279. inactive_sec = hostapd_drv_get_inact_sec(hapd, sta->addr);
  280. if (inactive_sec == -1) {
  281. wpa_msg(hapd->msg_ctx, MSG_DEBUG,
  282. "Check inactivity: Could not "
  283. "get station info from kernel driver for "
  284. MACSTR, MAC2STR(sta->addr));
  285. /*
  286. * The driver may not support this functionality.
  287. * Anyway, try again after the next inactivity timeout,
  288. * but do not disconnect the station now.
  289. */
  290. next_time = hapd->conf->ap_max_inactivity + fuzz;
  291. } else if (inactive_sec < hapd->conf->ap_max_inactivity &&
  292. sta->flags & WLAN_STA_ASSOC) {
  293. /* station activity detected; reset timeout state */
  294. wpa_msg(hapd->msg_ctx, MSG_DEBUG,
  295. "Station " MACSTR " has been active %is ago",
  296. MAC2STR(sta->addr), inactive_sec);
  297. sta->timeout_next = STA_NULLFUNC;
  298. next_time = hapd->conf->ap_max_inactivity + fuzz -
  299. inactive_sec;
  300. } else {
  301. wpa_msg(hapd->msg_ctx, MSG_DEBUG,
  302. "Station " MACSTR " has been "
  303. "inactive too long: %d sec, max allowed: %d",
  304. MAC2STR(sta->addr), inactive_sec,
  305. hapd->conf->ap_max_inactivity);
  306. if (hapd->conf->skip_inactivity_poll)
  307. sta->timeout_next = STA_DISASSOC;
  308. }
  309. }
  310. if ((sta->flags & WLAN_STA_ASSOC) &&
  311. sta->timeout_next == STA_DISASSOC &&
  312. !(sta->flags & WLAN_STA_PENDING_POLL) &&
  313. !hapd->conf->skip_inactivity_poll) {
  314. wpa_msg(hapd->msg_ctx, MSG_DEBUG, "Station " MACSTR
  315. " has ACKed data poll", MAC2STR(sta->addr));
  316. /* data nullfunc frame poll did not produce TX errors; assume
  317. * station ACKed it */
  318. sta->timeout_next = STA_NULLFUNC;
  319. next_time = hapd->conf->ap_max_inactivity;
  320. }
  321. if (next_time) {
  322. wpa_printf(MSG_DEBUG, "%s: register ap_handle_timer timeout "
  323. "for " MACSTR " (%lu seconds)",
  324. __func__, MAC2STR(sta->addr), next_time);
  325. eloop_register_timeout(next_time, 0, ap_handle_timer, hapd,
  326. sta);
  327. return;
  328. }
  329. if (sta->timeout_next == STA_NULLFUNC &&
  330. (sta->flags & WLAN_STA_ASSOC)) {
  331. wpa_printf(MSG_DEBUG, " Polling STA");
  332. sta->flags |= WLAN_STA_PENDING_POLL;
  333. hostapd_drv_poll_client(hapd, hapd->own_addr, sta->addr,
  334. sta->flags & WLAN_STA_WMM);
  335. } else if (sta->timeout_next != STA_REMOVE) {
  336. int deauth = sta->timeout_next == STA_DEAUTH;
  337. wpa_dbg(hapd->msg_ctx, MSG_DEBUG,
  338. "Timeout, sending %s info to STA " MACSTR,
  339. deauth ? "deauthentication" : "disassociation",
  340. MAC2STR(sta->addr));
  341. if (deauth) {
  342. hostapd_drv_sta_deauth(
  343. hapd, sta->addr,
  344. WLAN_REASON_PREV_AUTH_NOT_VALID);
  345. } else {
  346. reason = (sta->timeout_next == STA_DISASSOC) ?
  347. WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY :
  348. WLAN_REASON_PREV_AUTH_NOT_VALID;
  349. hostapd_drv_sta_disassoc(hapd, sta->addr, reason);
  350. }
  351. }
  352. switch (sta->timeout_next) {
  353. case STA_NULLFUNC:
  354. sta->timeout_next = STA_DISASSOC;
  355. wpa_printf(MSG_DEBUG, "%s: register ap_handle_timer timeout "
  356. "for " MACSTR " (%d seconds - AP_DISASSOC_DELAY)",
  357. __func__, MAC2STR(sta->addr), AP_DISASSOC_DELAY);
  358. eloop_register_timeout(AP_DISASSOC_DELAY, 0, ap_handle_timer,
  359. hapd, sta);
  360. break;
  361. case STA_DISASSOC:
  362. case STA_DISASSOC_FROM_CLI:
  363. ap_sta_set_authorized(hapd, sta, 0);
  364. sta->flags &= ~WLAN_STA_ASSOC;
  365. ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
  366. if (!sta->acct_terminate_cause)
  367. sta->acct_terminate_cause =
  368. RADIUS_ACCT_TERMINATE_CAUSE_IDLE_TIMEOUT;
  369. accounting_sta_stop(hapd, sta);
  370. ieee802_1x_free_station(sta);
  371. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  372. HOSTAPD_LEVEL_INFO, "disassociated due to "
  373. "inactivity");
  374. reason = (sta->timeout_next == STA_DISASSOC) ?
  375. WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY :
  376. WLAN_REASON_PREV_AUTH_NOT_VALID;
  377. sta->timeout_next = STA_DEAUTH;
  378. wpa_printf(MSG_DEBUG, "%s: register ap_handle_timer timeout "
  379. "for " MACSTR " (%d seconds - AP_DEAUTH_DELAY)",
  380. __func__, MAC2STR(sta->addr), AP_DEAUTH_DELAY);
  381. eloop_register_timeout(AP_DEAUTH_DELAY, 0, ap_handle_timer,
  382. hapd, sta);
  383. mlme_disassociate_indication(hapd, sta, reason);
  384. break;
  385. case STA_DEAUTH:
  386. case STA_REMOVE:
  387. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  388. HOSTAPD_LEVEL_INFO, "deauthenticated due to "
  389. "inactivity (timer DEAUTH/REMOVE)");
  390. if (!sta->acct_terminate_cause)
  391. sta->acct_terminate_cause =
  392. RADIUS_ACCT_TERMINATE_CAUSE_IDLE_TIMEOUT;
  393. mlme_deauthenticate_indication(
  394. hapd, sta,
  395. WLAN_REASON_PREV_AUTH_NOT_VALID);
  396. ap_free_sta(hapd, sta);
  397. break;
  398. }
  399. }
  400. static void ap_handle_session_timer(void *eloop_ctx, void *timeout_ctx)
  401. {
  402. struct hostapd_data *hapd = eloop_ctx;
  403. struct sta_info *sta = timeout_ctx;
  404. u8 addr[ETH_ALEN];
  405. if (!(sta->flags & WLAN_STA_AUTH)) {
  406. if (sta->flags & WLAN_STA_GAS) {
  407. wpa_printf(MSG_DEBUG, "GAS: Remove temporary STA "
  408. "entry " MACSTR, MAC2STR(sta->addr));
  409. ap_free_sta(hapd, sta);
  410. }
  411. return;
  412. }
  413. mlme_deauthenticate_indication(hapd, sta,
  414. WLAN_REASON_PREV_AUTH_NOT_VALID);
  415. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  416. HOSTAPD_LEVEL_INFO, "deauthenticated due to "
  417. "session timeout");
  418. sta->acct_terminate_cause =
  419. RADIUS_ACCT_TERMINATE_CAUSE_SESSION_TIMEOUT;
  420. os_memcpy(addr, sta->addr, ETH_ALEN);
  421. ap_free_sta(hapd, sta);
  422. hostapd_drv_sta_deauth(hapd, addr, WLAN_REASON_PREV_AUTH_NOT_VALID);
  423. }
  424. void ap_sta_replenish_timeout(struct hostapd_data *hapd, struct sta_info *sta,
  425. u32 session_timeout)
  426. {
  427. if (eloop_replenish_timeout(session_timeout, 0,
  428. ap_handle_session_timer, hapd, sta) == 1) {
  429. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  430. HOSTAPD_LEVEL_DEBUG, "setting session timeout "
  431. "to %d seconds", session_timeout);
  432. }
  433. }
  434. void ap_sta_session_timeout(struct hostapd_data *hapd, struct sta_info *sta,
  435. u32 session_timeout)
  436. {
  437. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  438. HOSTAPD_LEVEL_DEBUG, "setting session timeout to %d "
  439. "seconds", session_timeout);
  440. eloop_cancel_timeout(ap_handle_session_timer, hapd, sta);
  441. eloop_register_timeout(session_timeout, 0, ap_handle_session_timer,
  442. hapd, sta);
  443. }
  444. void ap_sta_no_session_timeout(struct hostapd_data *hapd, struct sta_info *sta)
  445. {
  446. eloop_cancel_timeout(ap_handle_session_timer, hapd, sta);
  447. }
  448. static void ap_handle_session_warning_timer(void *eloop_ctx, void *timeout_ctx)
  449. {
  450. #ifdef CONFIG_WNM
  451. struct hostapd_data *hapd = eloop_ctx;
  452. struct sta_info *sta = timeout_ctx;
  453. wpa_printf(MSG_DEBUG, "WNM: Session warning time reached for " MACSTR,
  454. MAC2STR(sta->addr));
  455. if (sta->hs20_session_info_url == NULL)
  456. return;
  457. wnm_send_ess_disassoc_imminent(hapd, sta, sta->hs20_session_info_url,
  458. sta->hs20_disassoc_timer);
  459. #endif /* CONFIG_WNM */
  460. }
  461. void ap_sta_session_warning_timeout(struct hostapd_data *hapd,
  462. struct sta_info *sta, int warning_time)
  463. {
  464. eloop_cancel_timeout(ap_handle_session_warning_timer, hapd, sta);
  465. eloop_register_timeout(warning_time, 0, ap_handle_session_warning_timer,
  466. hapd, sta);
  467. }
  468. struct sta_info * ap_sta_add(struct hostapd_data *hapd, const u8 *addr)
  469. {
  470. struct sta_info *sta;
  471. sta = ap_get_sta(hapd, addr);
  472. if (sta)
  473. return sta;
  474. wpa_printf(MSG_DEBUG, " New STA");
  475. if (hapd->num_sta >= hapd->conf->max_num_sta) {
  476. /* FIX: might try to remove some old STAs first? */
  477. wpa_printf(MSG_DEBUG, "no more room for new STAs (%d/%d)",
  478. hapd->num_sta, hapd->conf->max_num_sta);
  479. return NULL;
  480. }
  481. sta = os_zalloc(sizeof(struct sta_info));
  482. if (sta == NULL) {
  483. wpa_printf(MSG_ERROR, "malloc failed");
  484. return NULL;
  485. }
  486. sta->acct_interim_interval = hapd->conf->acct_interim_interval;
  487. accounting_sta_get_id(hapd, sta);
  488. if (!(hapd->iface->drv_flags & WPA_DRIVER_FLAGS_INACTIVITY_TIMER)) {
  489. wpa_printf(MSG_DEBUG, "%s: register ap_handle_timer timeout "
  490. "for " MACSTR " (%d seconds - ap_max_inactivity)",
  491. __func__, MAC2STR(addr),
  492. hapd->conf->ap_max_inactivity);
  493. eloop_register_timeout(hapd->conf->ap_max_inactivity, 0,
  494. ap_handle_timer, hapd, sta);
  495. }
  496. /* initialize STA info data */
  497. os_memcpy(sta->addr, addr, ETH_ALEN);
  498. sta->next = hapd->sta_list;
  499. hapd->sta_list = sta;
  500. hapd->num_sta++;
  501. ap_sta_hash_add(hapd, sta);
  502. sta->ssid = &hapd->conf->ssid;
  503. ap_sta_remove_in_other_bss(hapd, sta);
  504. return sta;
  505. }
  506. static int ap_sta_remove(struct hostapd_data *hapd, struct sta_info *sta)
  507. {
  508. ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
  509. wpa_printf(MSG_DEBUG, "Removing STA " MACSTR " from kernel driver",
  510. MAC2STR(sta->addr));
  511. if (hostapd_drv_sta_remove(hapd, sta->addr) &&
  512. sta->flags & WLAN_STA_ASSOC) {
  513. wpa_printf(MSG_DEBUG, "Could not remove station " MACSTR
  514. " from kernel driver.", MAC2STR(sta->addr));
  515. return -1;
  516. }
  517. return 0;
  518. }
  519. static void ap_sta_remove_in_other_bss(struct hostapd_data *hapd,
  520. struct sta_info *sta)
  521. {
  522. struct hostapd_iface *iface = hapd->iface;
  523. size_t i;
  524. for (i = 0; i < iface->num_bss; i++) {
  525. struct hostapd_data *bss = iface->bss[i];
  526. struct sta_info *sta2;
  527. /* bss should always be set during operation, but it may be
  528. * NULL during reconfiguration. Assume the STA is not
  529. * associated to another BSS in that case to avoid NULL pointer
  530. * dereferences. */
  531. if (bss == hapd || bss == NULL)
  532. continue;
  533. sta2 = ap_get_sta(bss, sta->addr);
  534. if (!sta2)
  535. continue;
  536. ap_sta_disconnect(bss, sta2, sta2->addr,
  537. WLAN_REASON_PREV_AUTH_NOT_VALID);
  538. }
  539. }
  540. static void ap_sta_disassoc_cb_timeout(void *eloop_ctx, void *timeout_ctx)
  541. {
  542. struct hostapd_data *hapd = eloop_ctx;
  543. struct sta_info *sta = timeout_ctx;
  544. ap_sta_remove(hapd, sta);
  545. mlme_disassociate_indication(hapd, sta, sta->disassoc_reason);
  546. }
  547. void ap_sta_disassociate(struct hostapd_data *hapd, struct sta_info *sta,
  548. u16 reason)
  549. {
  550. wpa_printf(MSG_DEBUG, "%s: disassociate STA " MACSTR,
  551. hapd->conf->iface, MAC2STR(sta->addr));
  552. sta->flags &= ~(WLAN_STA_ASSOC | WLAN_STA_ASSOC_REQ_OK);
  553. ap_sta_set_authorized(hapd, sta, 0);
  554. sta->timeout_next = STA_DEAUTH;
  555. wpa_printf(MSG_DEBUG, "%s: reschedule ap_handle_timer timeout "
  556. "for " MACSTR " (%d seconds - "
  557. "AP_MAX_INACTIVITY_AFTER_DISASSOC)",
  558. __func__, MAC2STR(sta->addr),
  559. AP_MAX_INACTIVITY_AFTER_DISASSOC);
  560. eloop_cancel_timeout(ap_handle_timer, hapd, sta);
  561. eloop_register_timeout(AP_MAX_INACTIVITY_AFTER_DISASSOC, 0,
  562. ap_handle_timer, hapd, sta);
  563. accounting_sta_stop(hapd, sta);
  564. ieee802_1x_free_station(sta);
  565. sta->disassoc_reason = reason;
  566. sta->flags |= WLAN_STA_PENDING_DISASSOC_CB;
  567. eloop_cancel_timeout(ap_sta_disassoc_cb_timeout, hapd, sta);
  568. eloop_register_timeout(hapd->iface->drv_flags &
  569. WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS ? 2 : 0, 0,
  570. ap_sta_disassoc_cb_timeout, hapd, sta);
  571. }
  572. static void ap_sta_deauth_cb_timeout(void *eloop_ctx, void *timeout_ctx)
  573. {
  574. struct hostapd_data *hapd = eloop_ctx;
  575. struct sta_info *sta = timeout_ctx;
  576. ap_sta_remove(hapd, sta);
  577. mlme_deauthenticate_indication(hapd, sta, sta->deauth_reason);
  578. }
  579. void ap_sta_deauthenticate(struct hostapd_data *hapd, struct sta_info *sta,
  580. u16 reason)
  581. {
  582. wpa_printf(MSG_DEBUG, "%s: deauthenticate STA " MACSTR,
  583. hapd->conf->iface, MAC2STR(sta->addr));
  584. sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC);
  585. ap_sta_set_authorized(hapd, sta, 0);
  586. sta->timeout_next = STA_REMOVE;
  587. wpa_printf(MSG_DEBUG, "%s: reschedule ap_handle_timer timeout "
  588. "for " MACSTR " (%d seconds - "
  589. "AP_MAX_INACTIVITY_AFTER_DEAUTH)",
  590. __func__, MAC2STR(sta->addr),
  591. AP_MAX_INACTIVITY_AFTER_DEAUTH);
  592. eloop_cancel_timeout(ap_handle_timer, hapd, sta);
  593. eloop_register_timeout(AP_MAX_INACTIVITY_AFTER_DEAUTH, 0,
  594. ap_handle_timer, hapd, sta);
  595. accounting_sta_stop(hapd, sta);
  596. ieee802_1x_free_station(sta);
  597. sta->deauth_reason = reason;
  598. sta->flags |= WLAN_STA_PENDING_DEAUTH_CB;
  599. eloop_cancel_timeout(ap_sta_deauth_cb_timeout, hapd, sta);
  600. eloop_register_timeout(hapd->iface->drv_flags &
  601. WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS ? 2 : 0, 0,
  602. ap_sta_deauth_cb_timeout, hapd, sta);
  603. }
  604. #ifdef CONFIG_WPS
  605. int ap_sta_wps_cancel(struct hostapd_data *hapd,
  606. struct sta_info *sta, void *ctx)
  607. {
  608. if (sta && (sta->flags & WLAN_STA_WPS)) {
  609. ap_sta_deauthenticate(hapd, sta,
  610. WLAN_REASON_PREV_AUTH_NOT_VALID);
  611. wpa_printf(MSG_DEBUG, "WPS: %s: Deauth sta=" MACSTR,
  612. __func__, MAC2STR(sta->addr));
  613. return 1;
  614. }
  615. return 0;
  616. }
  617. #endif /* CONFIG_WPS */
  618. int ap_sta_bind_vlan(struct hostapd_data *hapd, struct sta_info *sta,
  619. int old_vlanid)
  620. {
  621. #ifndef CONFIG_NO_VLAN
  622. const char *iface;
  623. struct hostapd_vlan *vlan = NULL;
  624. int ret;
  625. /*
  626. * Do not proceed furthur if the vlan id remains same. We do not want
  627. * duplicate dynamic vlan entries.
  628. */
  629. if (sta->vlan_id == old_vlanid)
  630. return 0;
  631. /*
  632. * During 1x reauth, if the vlan id changes, then remove the old id and
  633. * proceed furthur to add the new one.
  634. */
  635. if (old_vlanid > 0)
  636. vlan_remove_dynamic(hapd, old_vlanid);
  637. iface = hapd->conf->iface;
  638. if (sta->ssid->vlan[0])
  639. iface = sta->ssid->vlan;
  640. if (sta->ssid->dynamic_vlan == DYNAMIC_VLAN_DISABLED)
  641. sta->vlan_id = 0;
  642. else if (sta->vlan_id > 0) {
  643. struct hostapd_vlan *wildcard_vlan = NULL;
  644. vlan = hapd->conf->vlan;
  645. while (vlan) {
  646. if (vlan->vlan_id == sta->vlan_id)
  647. break;
  648. if (vlan->vlan_id == VLAN_ID_WILDCARD)
  649. wildcard_vlan = vlan;
  650. vlan = vlan->next;
  651. }
  652. if (!vlan)
  653. vlan = wildcard_vlan;
  654. if (vlan)
  655. iface = vlan->ifname;
  656. }
  657. if (sta->vlan_id > 0 && vlan == NULL) {
  658. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  659. HOSTAPD_LEVEL_DEBUG, "could not find VLAN for "
  660. "binding station to (vlan_id=%d)",
  661. sta->vlan_id);
  662. return -1;
  663. } else if (sta->vlan_id > 0 && vlan->vlan_id == VLAN_ID_WILDCARD) {
  664. vlan = vlan_add_dynamic(hapd, vlan, sta->vlan_id);
  665. if (vlan == NULL) {
  666. hostapd_logger(hapd, sta->addr,
  667. HOSTAPD_MODULE_IEEE80211,
  668. HOSTAPD_LEVEL_DEBUG, "could not add "
  669. "dynamic VLAN interface for vlan_id=%d",
  670. sta->vlan_id);
  671. return -1;
  672. }
  673. iface = vlan->ifname;
  674. if (vlan_setup_encryption_dyn(hapd, sta->ssid, iface) != 0) {
  675. hostapd_logger(hapd, sta->addr,
  676. HOSTAPD_MODULE_IEEE80211,
  677. HOSTAPD_LEVEL_DEBUG, "could not "
  678. "configure encryption for dynamic VLAN "
  679. "interface for vlan_id=%d",
  680. sta->vlan_id);
  681. }
  682. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  683. HOSTAPD_LEVEL_DEBUG, "added new dynamic VLAN "
  684. "interface '%s'", iface);
  685. } else if (vlan && vlan->vlan_id == sta->vlan_id) {
  686. if (sta->vlan_id > 0) {
  687. vlan->dynamic_vlan++;
  688. hostapd_logger(hapd, sta->addr,
  689. HOSTAPD_MODULE_IEEE80211,
  690. HOSTAPD_LEVEL_DEBUG, "updated existing "
  691. "dynamic VLAN interface '%s'", iface);
  692. }
  693. /*
  694. * Update encryption configuration for statically generated
  695. * VLAN interface. This is only used for static WEP
  696. * configuration for the case where hostapd did not yet know
  697. * which keys are to be used when the interface was added.
  698. */
  699. if (vlan_setup_encryption_dyn(hapd, sta->ssid, iface) != 0) {
  700. hostapd_logger(hapd, sta->addr,
  701. HOSTAPD_MODULE_IEEE80211,
  702. HOSTAPD_LEVEL_DEBUG, "could not "
  703. "configure encryption for VLAN "
  704. "interface for vlan_id=%d",
  705. sta->vlan_id);
  706. }
  707. }
  708. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  709. HOSTAPD_LEVEL_DEBUG, "binding station to interface "
  710. "'%s'", iface);
  711. if (wpa_auth_sta_set_vlan(sta->wpa_sm, sta->vlan_id) < 0)
  712. wpa_printf(MSG_INFO, "Failed to update VLAN-ID for WPA");
  713. ret = hostapd_drv_set_sta_vlan(iface, hapd, sta->addr, sta->vlan_id);
  714. if (ret < 0) {
  715. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  716. HOSTAPD_LEVEL_DEBUG, "could not bind the STA "
  717. "entry to vlan_id=%d", sta->vlan_id);
  718. }
  719. return ret;
  720. #else /* CONFIG_NO_VLAN */
  721. return 0;
  722. #endif /* CONFIG_NO_VLAN */
  723. }
  724. #ifdef CONFIG_IEEE80211W
  725. int ap_check_sa_query_timeout(struct hostapd_data *hapd, struct sta_info *sta)
  726. {
  727. u32 tu;
  728. struct os_reltime now, passed;
  729. os_get_reltime(&now);
  730. os_reltime_sub(&now, &sta->sa_query_start, &passed);
  731. tu = (passed.sec * 1000000 + passed.usec) / 1024;
  732. if (hapd->conf->assoc_sa_query_max_timeout < tu) {
  733. hostapd_logger(hapd, sta->addr,
  734. HOSTAPD_MODULE_IEEE80211,
  735. HOSTAPD_LEVEL_DEBUG,
  736. "association SA Query timed out");
  737. sta->sa_query_timed_out = 1;
  738. os_free(sta->sa_query_trans_id);
  739. sta->sa_query_trans_id = NULL;
  740. sta->sa_query_count = 0;
  741. eloop_cancel_timeout(ap_sa_query_timer, hapd, sta);
  742. return 1;
  743. }
  744. return 0;
  745. }
  746. static void ap_sa_query_timer(void *eloop_ctx, void *timeout_ctx)
  747. {
  748. struct hostapd_data *hapd = eloop_ctx;
  749. struct sta_info *sta = timeout_ctx;
  750. unsigned int timeout, sec, usec;
  751. u8 *trans_id, *nbuf;
  752. if (sta->sa_query_count > 0 &&
  753. ap_check_sa_query_timeout(hapd, sta))
  754. return;
  755. nbuf = os_realloc_array(sta->sa_query_trans_id,
  756. sta->sa_query_count + 1,
  757. WLAN_SA_QUERY_TR_ID_LEN);
  758. if (nbuf == NULL)
  759. return;
  760. if (sta->sa_query_count == 0) {
  761. /* Starting a new SA Query procedure */
  762. os_get_reltime(&sta->sa_query_start);
  763. }
  764. trans_id = nbuf + sta->sa_query_count * WLAN_SA_QUERY_TR_ID_LEN;
  765. sta->sa_query_trans_id = nbuf;
  766. sta->sa_query_count++;
  767. os_get_random(trans_id, WLAN_SA_QUERY_TR_ID_LEN);
  768. timeout = hapd->conf->assoc_sa_query_retry_timeout;
  769. sec = ((timeout / 1000) * 1024) / 1000;
  770. usec = (timeout % 1000) * 1024;
  771. eloop_register_timeout(sec, usec, ap_sa_query_timer, hapd, sta);
  772. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  773. HOSTAPD_LEVEL_DEBUG,
  774. "association SA Query attempt %d", sta->sa_query_count);
  775. ieee802_11_send_sa_query_req(hapd, sta->addr, trans_id);
  776. }
  777. void ap_sta_start_sa_query(struct hostapd_data *hapd, struct sta_info *sta)
  778. {
  779. ap_sa_query_timer(hapd, sta);
  780. }
  781. void ap_sta_stop_sa_query(struct hostapd_data *hapd, struct sta_info *sta)
  782. {
  783. eloop_cancel_timeout(ap_sa_query_timer, hapd, sta);
  784. os_free(sta->sa_query_trans_id);
  785. sta->sa_query_trans_id = NULL;
  786. sta->sa_query_count = 0;
  787. }
  788. #endif /* CONFIG_IEEE80211W */
  789. void ap_sta_set_authorized(struct hostapd_data *hapd, struct sta_info *sta,
  790. int authorized)
  791. {
  792. const u8 *dev_addr = NULL;
  793. char buf[100];
  794. #ifdef CONFIG_P2P
  795. u8 addr[ETH_ALEN];
  796. u8 ip_addr_buf[4];
  797. #endif /* CONFIG_P2P */
  798. if (!!authorized == !!(sta->flags & WLAN_STA_AUTHORIZED))
  799. return;
  800. #ifdef CONFIG_P2P
  801. if (hapd->p2p_group == NULL) {
  802. if (sta->p2p_ie != NULL &&
  803. p2p_parse_dev_addr_in_p2p_ie(sta->p2p_ie, addr) == 0)
  804. dev_addr = addr;
  805. } else
  806. dev_addr = p2p_group_get_dev_addr(hapd->p2p_group, sta->addr);
  807. #endif /* CONFIG_P2P */
  808. if (dev_addr)
  809. os_snprintf(buf, sizeof(buf), MACSTR " p2p_dev_addr=" MACSTR,
  810. MAC2STR(sta->addr), MAC2STR(dev_addr));
  811. else
  812. os_snprintf(buf, sizeof(buf), MACSTR, MAC2STR(sta->addr));
  813. if (authorized) {
  814. char ip_addr[100];
  815. ip_addr[0] = '\0';
  816. #ifdef CONFIG_P2P
  817. if (wpa_auth_get_ip_addr(sta->wpa_sm, ip_addr_buf) == 0) {
  818. os_snprintf(ip_addr, sizeof(ip_addr),
  819. " ip_addr=%u.%u.%u.%u",
  820. ip_addr_buf[0], ip_addr_buf[1],
  821. ip_addr_buf[2], ip_addr_buf[3]);
  822. }
  823. #endif /* CONFIG_P2P */
  824. wpa_msg(hapd->msg_ctx, MSG_INFO, AP_STA_CONNECTED "%s%s",
  825. buf, ip_addr);
  826. if (hapd->msg_ctx_parent &&
  827. hapd->msg_ctx_parent != hapd->msg_ctx)
  828. wpa_msg_no_global(hapd->msg_ctx_parent, MSG_INFO,
  829. AP_STA_CONNECTED "%s%s",
  830. buf, ip_addr);
  831. sta->flags |= WLAN_STA_AUTHORIZED;
  832. } else {
  833. wpa_msg(hapd->msg_ctx, MSG_INFO, AP_STA_DISCONNECTED "%s", buf);
  834. if (hapd->msg_ctx_parent &&
  835. hapd->msg_ctx_parent != hapd->msg_ctx)
  836. wpa_msg_no_global(hapd->msg_ctx_parent, MSG_INFO,
  837. AP_STA_DISCONNECTED "%s", buf);
  838. sta->flags &= ~WLAN_STA_AUTHORIZED;
  839. }
  840. if (hapd->sta_authorized_cb)
  841. hapd->sta_authorized_cb(hapd->sta_authorized_cb_ctx,
  842. sta->addr, authorized, dev_addr);
  843. }
  844. void ap_sta_disconnect(struct hostapd_data *hapd, struct sta_info *sta,
  845. const u8 *addr, u16 reason)
  846. {
  847. if (sta == NULL && addr)
  848. sta = ap_get_sta(hapd, addr);
  849. if (addr)
  850. hostapd_drv_sta_deauth(hapd, addr, reason);
  851. if (sta == NULL)
  852. return;
  853. ap_sta_set_authorized(hapd, sta, 0);
  854. wpa_auth_sm_event(sta->wpa_sm, WPA_DEAUTH);
  855. ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
  856. sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC);
  857. wpa_printf(MSG_DEBUG, "%s: reschedule ap_handle_timer timeout "
  858. "for " MACSTR " (%d seconds - "
  859. "AP_MAX_INACTIVITY_AFTER_DEAUTH)",
  860. __func__, MAC2STR(sta->addr),
  861. AP_MAX_INACTIVITY_AFTER_DEAUTH);
  862. eloop_cancel_timeout(ap_handle_timer, hapd, sta);
  863. eloop_register_timeout(AP_MAX_INACTIVITY_AFTER_DEAUTH, 0,
  864. ap_handle_timer, hapd, sta);
  865. sta->timeout_next = STA_REMOVE;
  866. sta->deauth_reason = reason;
  867. sta->flags |= WLAN_STA_PENDING_DEAUTH_CB;
  868. eloop_cancel_timeout(ap_sta_deauth_cb_timeout, hapd, sta);
  869. eloop_register_timeout(hapd->iface->drv_flags &
  870. WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS ? 2 : 0, 0,
  871. ap_sta_deauth_cb_timeout, hapd, sta);
  872. }
  873. void ap_sta_deauth_cb(struct hostapd_data *hapd, struct sta_info *sta)
  874. {
  875. if (!(sta->flags & WLAN_STA_PENDING_DEAUTH_CB)) {
  876. wpa_printf(MSG_DEBUG, "Ignore deauth cb for test frame");
  877. return;
  878. }
  879. sta->flags &= ~WLAN_STA_PENDING_DEAUTH_CB;
  880. eloop_cancel_timeout(ap_sta_deauth_cb_timeout, hapd, sta);
  881. ap_sta_deauth_cb_timeout(hapd, sta);
  882. }
  883. void ap_sta_disassoc_cb(struct hostapd_data *hapd, struct sta_info *sta)
  884. {
  885. if (!(sta->flags & WLAN_STA_PENDING_DISASSOC_CB)) {
  886. wpa_printf(MSG_DEBUG, "Ignore disassoc cb for test frame");
  887. return;
  888. }
  889. sta->flags &= ~WLAN_STA_PENDING_DISASSOC_CB;
  890. eloop_cancel_timeout(ap_sta_disassoc_cb_timeout, hapd, sta);
  891. ap_sta_disassoc_cb_timeout(hapd, sta);
  892. }
  893. int ap_sta_flags_txt(u32 flags, char *buf, size_t buflen)
  894. {
  895. int res;
  896. buf[0] = '\0';
  897. res = os_snprintf(buf, buflen, "%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
  898. (flags & WLAN_STA_AUTH ? "[AUTH]" : ""),
  899. (flags & WLAN_STA_ASSOC ? "[ASSOC]" : ""),
  900. (flags & WLAN_STA_AUTHORIZED ? "[AUTHORIZED]" : ""),
  901. (flags & WLAN_STA_PENDING_POLL ? "[PENDING_POLL" :
  902. ""),
  903. (flags & WLAN_STA_SHORT_PREAMBLE ?
  904. "[SHORT_PREAMBLE]" : ""),
  905. (flags & WLAN_STA_PREAUTH ? "[PREAUTH]" : ""),
  906. (flags & WLAN_STA_WMM ? "[WMM]" : ""),
  907. (flags & WLAN_STA_MFP ? "[MFP]" : ""),
  908. (flags & WLAN_STA_WPS ? "[WPS]" : ""),
  909. (flags & WLAN_STA_MAYBE_WPS ? "[MAYBE_WPS]" : ""),
  910. (flags & WLAN_STA_WDS ? "[WDS]" : ""),
  911. (flags & WLAN_STA_NONERP ? "[NonERP]" : ""),
  912. (flags & WLAN_STA_WPS2 ? "[WPS2]" : ""),
  913. (flags & WLAN_STA_GAS ? "[GAS]" : ""),
  914. (flags & WLAN_STA_VHT ? "[VHT]" : ""),
  915. (flags & WLAN_STA_WNM_SLEEP_MODE ?
  916. "[WNM_SLEEP_MODE]" : ""));
  917. return res;
  918. }