sta_info.h 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800
  1. /*
  2. * Copyright 2002-2005, Devicescape Software, Inc.
  3. * Copyright 2013-2014 Intel Mobile Communications GmbH
  4. * Copyright(c) 2015-2017 Intel Deutschland GmbH
  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. #ifndef STA_INFO_H
  11. #define STA_INFO_H
  12. #include <linux/list.h>
  13. #include <linux/types.h>
  14. #include <linux/if_ether.h>
  15. #include <linux/workqueue.h>
  16. #include <linux/average.h>
  17. #include <linux/bitfield.h>
  18. #include <linux/etherdevice.h>
  19. #include <linux/rhashtable.h>
  20. #include <linux/u64_stats_sync.h>
  21. #include "key.h"
  22. /**
  23. * enum ieee80211_sta_info_flags - Stations flags
  24. *
  25. * These flags are used with &struct sta_info's @flags member, but
  26. * only indirectly with set_sta_flag() and friends.
  27. *
  28. * @WLAN_STA_AUTH: Station is authenticated.
  29. * @WLAN_STA_ASSOC: Station is associated.
  30. * @WLAN_STA_PS_STA: Station is in power-save mode
  31. * @WLAN_STA_AUTHORIZED: Station is authorized to send/receive traffic.
  32. * This bit is always checked so needs to be enabled for all stations
  33. * when virtual port control is not in use.
  34. * @WLAN_STA_SHORT_PREAMBLE: Station is capable of receiving short-preamble
  35. * frames.
  36. * @WLAN_STA_WDS: Station is one of our WDS peers.
  37. * @WLAN_STA_CLEAR_PS_FILT: Clear PS filter in hardware (using the
  38. * IEEE80211_TX_CTL_CLEAR_PS_FILT control flag) when the next
  39. * frame to this station is transmitted.
  40. * @WLAN_STA_MFP: Management frame protection is used with this STA.
  41. * @WLAN_STA_BLOCK_BA: Used to deny ADDBA requests (both TX and RX)
  42. * during suspend/resume and station removal.
  43. * @WLAN_STA_PS_DRIVER: driver requires keeping this station in
  44. * power-save mode logically to flush frames that might still
  45. * be in the queues
  46. * @WLAN_STA_PSPOLL: Station sent PS-poll while driver was keeping
  47. * station in power-save mode, reply when the driver unblocks.
  48. * @WLAN_STA_TDLS_PEER: Station is a TDLS peer.
  49. * @WLAN_STA_TDLS_PEER_AUTH: This TDLS peer is authorized to send direct
  50. * packets. This means the link is enabled.
  51. * @WLAN_STA_TDLS_INITIATOR: We are the initiator of the TDLS link with this
  52. * station.
  53. * @WLAN_STA_TDLS_CHAN_SWITCH: This TDLS peer supports TDLS channel-switching
  54. * @WLAN_STA_TDLS_OFF_CHANNEL: The local STA is currently off-channel with this
  55. * TDLS peer
  56. * @WLAN_STA_TDLS_WIDER_BW: This TDLS peer supports working on a wider bw on
  57. * the BSS base channel.
  58. * @WLAN_STA_UAPSD: Station requested unscheduled SP while driver was
  59. * keeping station in power-save mode, reply when the driver
  60. * unblocks the station.
  61. * @WLAN_STA_SP: Station is in a service period, so don't try to
  62. * reply to other uAPSD trigger frames or PS-Poll.
  63. * @WLAN_STA_4ADDR_EVENT: 4-addr event was already sent for this frame.
  64. * @WLAN_STA_INSERTED: This station is inserted into the hash table.
  65. * @WLAN_STA_RATE_CONTROL: rate control was initialized for this station.
  66. * @WLAN_STA_TOFFSET_KNOWN: toffset calculated for this station is valid.
  67. * @WLAN_STA_MPSP_OWNER: local STA is owner of a mesh Peer Service Period.
  68. * @WLAN_STA_MPSP_RECIPIENT: local STA is recipient of a MPSP.
  69. * @WLAN_STA_PS_DELIVER: station woke up, but we're still blocking TX
  70. * until pending frames are delivered
  71. *
  72. * @NUM_WLAN_STA_FLAGS: number of defined flags
  73. */
  74. enum ieee80211_sta_info_flags {
  75. WLAN_STA_AUTH,
  76. WLAN_STA_ASSOC,
  77. WLAN_STA_PS_STA,
  78. WLAN_STA_AUTHORIZED,
  79. WLAN_STA_SHORT_PREAMBLE,
  80. WLAN_STA_WDS,
  81. WLAN_STA_CLEAR_PS_FILT,
  82. WLAN_STA_MFP,
  83. WLAN_STA_BLOCK_BA,
  84. WLAN_STA_PS_DRIVER,
  85. WLAN_STA_PSPOLL,
  86. WLAN_STA_TDLS_PEER,
  87. WLAN_STA_TDLS_PEER_AUTH,
  88. WLAN_STA_TDLS_INITIATOR,
  89. WLAN_STA_TDLS_CHAN_SWITCH,
  90. WLAN_STA_TDLS_OFF_CHANNEL,
  91. WLAN_STA_TDLS_WIDER_BW,
  92. WLAN_STA_UAPSD,
  93. WLAN_STA_SP,
  94. WLAN_STA_4ADDR_EVENT,
  95. WLAN_STA_INSERTED,
  96. WLAN_STA_RATE_CONTROL,
  97. WLAN_STA_TOFFSET_KNOWN,
  98. WLAN_STA_MPSP_OWNER,
  99. WLAN_STA_MPSP_RECIPIENT,
  100. WLAN_STA_PS_DELIVER,
  101. NUM_WLAN_STA_FLAGS,
  102. };
  103. #define ADDBA_RESP_INTERVAL HZ
  104. #define HT_AGG_MAX_RETRIES 15
  105. #define HT_AGG_BURST_RETRIES 3
  106. #define HT_AGG_RETRIES_PERIOD (15 * HZ)
  107. #define HT_AGG_STATE_DRV_READY 0
  108. #define HT_AGG_STATE_RESPONSE_RECEIVED 1
  109. #define HT_AGG_STATE_OPERATIONAL 2
  110. #define HT_AGG_STATE_STOPPING 3
  111. #define HT_AGG_STATE_WANT_START 4
  112. #define HT_AGG_STATE_WANT_STOP 5
  113. #define HT_AGG_STATE_START_CB 6
  114. #define HT_AGG_STATE_STOP_CB 7
  115. enum ieee80211_agg_stop_reason {
  116. AGG_STOP_DECLINED,
  117. AGG_STOP_LOCAL_REQUEST,
  118. AGG_STOP_PEER_REQUEST,
  119. AGG_STOP_DESTROY_STA,
  120. };
  121. /**
  122. * struct tid_ampdu_tx - TID aggregation information (Tx).
  123. *
  124. * @rcu_head: rcu head for freeing structure
  125. * @session_timer: check if we keep Tx-ing on the TID (by timeout value)
  126. * @addba_resp_timer: timer for peer's response to addba request
  127. * @pending: pending frames queue -- use sta's spinlock to protect
  128. * @dialog_token: dialog token for aggregation session
  129. * @timeout: session timeout value to be filled in ADDBA requests
  130. * @state: session state (see above)
  131. * @last_tx: jiffies of last tx activity
  132. * @stop_initiator: initiator of a session stop
  133. * @tx_stop: TX DelBA frame when stopping
  134. * @buf_size: reorder buffer size at receiver
  135. * @failed_bar_ssn: ssn of the last failed BAR tx attempt
  136. * @bar_pending: BAR needs to be re-sent
  137. * @amsdu: support A-MSDU withing A-MDPU
  138. *
  139. * This structure's lifetime is managed by RCU, assignments to
  140. * the array holding it must hold the aggregation mutex.
  141. *
  142. * The TX path can access it under RCU lock-free if, and
  143. * only if, the state has the flag %HT_AGG_STATE_OPERATIONAL
  144. * set. Otherwise, the TX path must also acquire the spinlock
  145. * and re-check the state, see comments in the tx code
  146. * touching it.
  147. */
  148. struct tid_ampdu_tx {
  149. struct rcu_head rcu_head;
  150. struct timer_list session_timer;
  151. struct timer_list addba_resp_timer;
  152. struct sk_buff_head pending;
  153. unsigned long state;
  154. unsigned long last_tx;
  155. u16 timeout;
  156. u8 dialog_token;
  157. u8 stop_initiator;
  158. bool tx_stop;
  159. u8 buf_size;
  160. u16 failed_bar_ssn;
  161. bool bar_pending;
  162. bool amsdu;
  163. };
  164. /**
  165. * struct tid_ampdu_rx - TID aggregation information (Rx).
  166. *
  167. * @reorder_buf: buffer to reorder incoming aggregated MPDUs. An MPDU may be an
  168. * A-MSDU with individually reported subframes.
  169. * @reorder_buf_filtered: bitmap indicating where there are filtered frames in
  170. * the reorder buffer that should be ignored when releasing frames
  171. * @reorder_time: jiffies when skb was added
  172. * @session_timer: check if peer keeps Tx-ing on the TID (by timeout value)
  173. * @reorder_timer: releases expired frames from the reorder buffer.
  174. * @last_rx: jiffies of last rx activity
  175. * @head_seq_num: head sequence number in reordering buffer.
  176. * @stored_mpdu_num: number of MPDUs in reordering buffer
  177. * @ssn: Starting Sequence Number expected to be aggregated.
  178. * @buf_size: buffer size for incoming A-MPDUs
  179. * @timeout: reset timer value (in TUs).
  180. * @rcu_head: RCU head used for freeing this struct
  181. * @reorder_lock: serializes access to reorder buffer, see below.
  182. * @auto_seq: used for offloaded BA sessions to automatically pick head_seq_and
  183. * and ssn.
  184. * @removed: this session is removed (but might have been found due to RCU)
  185. * @started: this session has started (head ssn or higher was received)
  186. *
  187. * This structure's lifetime is managed by RCU, assignments to
  188. * the array holding it must hold the aggregation mutex.
  189. *
  190. * The @reorder_lock is used to protect the members of this
  191. * struct, except for @timeout, @buf_size and @dialog_token,
  192. * which are constant across the lifetime of the struct (the
  193. * dialog token being used only for debugging).
  194. */
  195. struct tid_ampdu_rx {
  196. struct rcu_head rcu_head;
  197. spinlock_t reorder_lock;
  198. u64 reorder_buf_filtered;
  199. struct sk_buff_head *reorder_buf;
  200. unsigned long *reorder_time;
  201. struct timer_list session_timer;
  202. struct timer_list reorder_timer;
  203. unsigned long last_rx;
  204. u16 head_seq_num;
  205. u16 stored_mpdu_num;
  206. u16 ssn;
  207. u16 buf_size;
  208. u16 timeout;
  209. u8 auto_seq:1,
  210. removed:1,
  211. started:1;
  212. };
  213. /**
  214. * struct sta_ampdu_mlme - STA aggregation information.
  215. *
  216. * @mtx: mutex to protect all TX data (except non-NULL assignments
  217. * to tid_tx[idx], which are protected by the sta spinlock)
  218. * tid_start_tx is also protected by sta->lock.
  219. * @tid_rx: aggregation info for Rx per TID -- RCU protected
  220. * @tid_rx_token: dialog tokens for valid aggregation sessions
  221. * @tid_rx_timer_expired: bitmap indicating on which TIDs the
  222. * RX timer expired until the work for it runs
  223. * @tid_rx_stop_requested: bitmap indicating which BA sessions per TID the
  224. * driver requested to close until the work for it runs
  225. * @tid_rx_manage_offl: bitmap indicating which BA sessions were requested
  226. * to be treated as started/stopped due to offloading
  227. * @agg_session_valid: bitmap indicating which TID has a rx BA session open on
  228. * @unexpected_agg: bitmap indicating which TID already sent a delBA due to
  229. * unexpected aggregation related frames outside a session
  230. * @work: work struct for starting/stopping aggregation
  231. * @tid_tx: aggregation info for Tx per TID
  232. * @tid_start_tx: sessions where start was requested
  233. * @last_addba_req_time: timestamp of the last addBA request.
  234. * @addba_req_num: number of times addBA request has been sent.
  235. * @dialog_token_allocator: dialog token enumerator for each new session;
  236. */
  237. struct sta_ampdu_mlme {
  238. struct mutex mtx;
  239. /* rx */
  240. struct tid_ampdu_rx __rcu *tid_rx[IEEE80211_NUM_TIDS];
  241. u8 tid_rx_token[IEEE80211_NUM_TIDS];
  242. unsigned long tid_rx_timer_expired[BITS_TO_LONGS(IEEE80211_NUM_TIDS)];
  243. unsigned long tid_rx_stop_requested[BITS_TO_LONGS(IEEE80211_NUM_TIDS)];
  244. unsigned long tid_rx_manage_offl[BITS_TO_LONGS(2 * IEEE80211_NUM_TIDS)];
  245. unsigned long agg_session_valid[BITS_TO_LONGS(IEEE80211_NUM_TIDS)];
  246. unsigned long unexpected_agg[BITS_TO_LONGS(IEEE80211_NUM_TIDS)];
  247. /* tx */
  248. struct work_struct work;
  249. struct tid_ampdu_tx __rcu *tid_tx[IEEE80211_NUM_TIDS];
  250. struct tid_ampdu_tx *tid_start_tx[IEEE80211_NUM_TIDS];
  251. unsigned long last_addba_req_time[IEEE80211_NUM_TIDS];
  252. u8 addba_req_num[IEEE80211_NUM_TIDS];
  253. u8 dialog_token_allocator;
  254. };
  255. /* Value to indicate no TID reservation */
  256. #define IEEE80211_TID_UNRESERVED 0xff
  257. #define IEEE80211_FAST_XMIT_MAX_IV 18
  258. /**
  259. * struct ieee80211_fast_tx - TX fastpath information
  260. * @key: key to use for hw crypto
  261. * @hdr: the 802.11 header to put with the frame
  262. * @hdr_len: actual 802.11 header length
  263. * @sa_offs: offset of the SA
  264. * @da_offs: offset of the DA
  265. * @pn_offs: offset where to put PN for crypto (or 0 if not needed)
  266. * @band: band this will be transmitted on, for tx_info
  267. * @rcu_head: RCU head to free this struct
  268. *
  269. * This struct is small enough so that the common case (maximum crypto
  270. * header length of 8 like for CCMP/GCMP) fits into a single 64-byte
  271. * cache line.
  272. */
  273. struct ieee80211_fast_tx {
  274. struct ieee80211_key *key;
  275. u8 hdr_len;
  276. u8 sa_offs, da_offs, pn_offs;
  277. u8 band;
  278. u8 hdr[30 + 2 + IEEE80211_FAST_XMIT_MAX_IV +
  279. sizeof(rfc1042_header)] __aligned(2);
  280. struct rcu_head rcu_head;
  281. };
  282. /**
  283. * struct ieee80211_fast_rx - RX fastpath information
  284. * @dev: netdevice for reporting the SKB
  285. * @vif_type: (P2P-less) interface type of the original sdata (sdata->vif.type)
  286. * @vif_addr: interface address
  287. * @rfc1042_hdr: copy of the RFC 1042 SNAP header (to have in cache)
  288. * @control_port_protocol: control port protocol copied from sdata
  289. * @expected_ds_bits: from/to DS bits expected
  290. * @icv_len: length of the MIC if present
  291. * @key: bool indicating encryption is expected (key is set)
  292. * @sta_notify: notify the MLME code (once)
  293. * @internal_forward: forward froms internally on AP/VLAN type interfaces
  294. * @uses_rss: copy of USES_RSS hw flag
  295. * @da_offs: offset of the DA in the header (for header conversion)
  296. * @sa_offs: offset of the SA in the header (for header conversion)
  297. * @rcu_head: RCU head for freeing this structure
  298. */
  299. struct ieee80211_fast_rx {
  300. struct net_device *dev;
  301. enum nl80211_iftype vif_type;
  302. u8 vif_addr[ETH_ALEN] __aligned(2);
  303. u8 rfc1042_hdr[6] __aligned(2);
  304. __be16 control_port_protocol;
  305. __le16 expected_ds_bits;
  306. u8 icv_len;
  307. u8 key:1,
  308. sta_notify:1,
  309. internal_forward:1,
  310. uses_rss:1;
  311. u8 da_offs, sa_offs;
  312. struct rcu_head rcu_head;
  313. };
  314. /* we use only values in the range 0-100, so pick a large precision */
  315. DECLARE_EWMA(mesh_fail_avg, 20, 8)
  316. /**
  317. * struct mesh_sta - mesh STA information
  318. * @plink_lock: serialize access to plink fields
  319. * @llid: Local link ID
  320. * @plid: Peer link ID
  321. * @aid: local aid supplied by peer
  322. * @reason: Cancel reason on PLINK_HOLDING state
  323. * @plink_retries: Retries in establishment
  324. * @plink_state: peer link state
  325. * @plink_timeout: timeout of peer link
  326. * @plink_timer: peer link watch timer
  327. * @t_offset: timing offset relative to this host
  328. * @t_offset_setpoint: reference timing offset of this sta to be used when
  329. * calculating clockdrift
  330. * @local_pm: local link-specific power save mode
  331. * @peer_pm: peer-specific power save mode towards local STA
  332. * @nonpeer_pm: STA power save mode towards non-peer neighbors
  333. * @processed_beacon: set to true after peer rates and capabilities are
  334. * processed
  335. * @fail_avg: moving percentage of failed MSDUs
  336. */
  337. struct mesh_sta {
  338. struct timer_list plink_timer;
  339. s64 t_offset;
  340. s64 t_offset_setpoint;
  341. spinlock_t plink_lock;
  342. u16 llid;
  343. u16 plid;
  344. u16 aid;
  345. u16 reason;
  346. u8 plink_retries;
  347. bool processed_beacon;
  348. enum nl80211_plink_state plink_state;
  349. u32 plink_timeout;
  350. /* mesh power save */
  351. enum nl80211_mesh_power_mode local_pm;
  352. enum nl80211_mesh_power_mode peer_pm;
  353. enum nl80211_mesh_power_mode nonpeer_pm;
  354. /* moving percentage of failed MSDUs */
  355. struct ewma_mesh_fail_avg fail_avg;
  356. };
  357. DECLARE_EWMA(signal, 10, 8)
  358. struct ieee80211_sta_rx_stats {
  359. unsigned long packets;
  360. unsigned long last_rx;
  361. unsigned long num_duplicates;
  362. unsigned long fragments;
  363. unsigned long dropped;
  364. int last_signal;
  365. u8 chains;
  366. s8 chain_signal_last[IEEE80211_MAX_CHAINS];
  367. u16 last_rate;
  368. struct u64_stats_sync syncp;
  369. u64 bytes;
  370. u64 msdu[IEEE80211_NUM_TIDS + 1];
  371. };
  372. /**
  373. * The bandwidth threshold below which the per-station CoDel parameters will be
  374. * scaled to be more lenient (to prevent starvation of slow stations). This
  375. * value will be scaled by the number of active stations when it is being
  376. * applied.
  377. */
  378. #define STA_SLOW_THRESHOLD 6000 /* 6 Mbps */
  379. /**
  380. * struct sta_info - STA information
  381. *
  382. * This structure collects information about a station that
  383. * mac80211 is communicating with.
  384. *
  385. * @list: global linked list entry
  386. * @free_list: list entry for keeping track of stations to free
  387. * @hash_node: hash node for rhashtable
  388. * @addr: station's MAC address - duplicated from public part to
  389. * let the hash table work with just a single cacheline
  390. * @local: pointer to the global information
  391. * @sdata: virtual interface this station belongs to
  392. * @ptk: peer keys negotiated with this station, if any
  393. * @ptk_idx: last installed peer key index
  394. * @gtk: group keys negotiated with this station, if any
  395. * @rate_ctrl: rate control algorithm reference
  396. * @rate_ctrl_lock: spinlock used to protect rate control data
  397. * (data inside the algorithm, so serializes calls there)
  398. * @rate_ctrl_priv: rate control private per-STA pointer
  399. * @lock: used for locking all fields that require locking, see comments
  400. * in the header file.
  401. * @drv_deliver_wk: used for delivering frames after driver PS unblocking
  402. * @listen_interval: listen interval of this station, when we're acting as AP
  403. * @_flags: STA flags, see &enum ieee80211_sta_info_flags, do not use directly
  404. * @ps_lock: used for powersave (when mac80211 is the AP) related locking
  405. * @ps_tx_buf: buffers (per AC) of frames to transmit to this station
  406. * when it leaves power saving state or polls
  407. * @tx_filtered: buffers (per AC) of frames we already tried to
  408. * transmit but were filtered by hardware due to STA having
  409. * entered power saving state, these are also delivered to
  410. * the station when it leaves powersave or polls for frames
  411. * @driver_buffered_tids: bitmap of TIDs the driver has data buffered on
  412. * @txq_buffered_tids: bitmap of TIDs that mac80211 has txq data buffered on
  413. * @last_connected: time (in seconds) when a station got connected
  414. * @last_seq_ctrl: last received seq/frag number from this STA (per TID
  415. * plus one for non-QoS frames)
  416. * @tid_seq: per-TID sequence numbers for sending to this STA
  417. * @ampdu_mlme: A-MPDU state machine state
  418. * @timer_to_tid: identity mapping to ID timers
  419. * @mesh: mesh STA information
  420. * @debugfs_dir: debug filesystem directory dentry
  421. * @dead: set to true when sta is unlinked
  422. * @removed: set to true when sta is being removed from sta_list
  423. * @uploaded: set to true when sta is uploaded to the driver
  424. * @sta: station information we share with the driver
  425. * @sta_state: duplicates information about station state (for debug)
  426. * @rcu_head: RCU head used for freeing this station struct
  427. * @cur_max_bandwidth: maximum bandwidth to use for TX to the station,
  428. * taken from HT/VHT capabilities or VHT operating mode notification
  429. * @known_smps_mode: the smps_mode the client thinks we are in. Relevant for
  430. * AP only.
  431. * @cipher_scheme: optional cipher scheme for this station
  432. * @cparams: CoDel parameters for this station.
  433. * @reserved_tid: reserved TID (if any, otherwise IEEE80211_TID_UNRESERVED)
  434. * @fast_tx: TX fastpath information
  435. * @fast_rx: RX fastpath information
  436. * @tdls_chandef: a TDLS peer can have a wider chandef that is compatible to
  437. * the BSS one.
  438. * @tx_stats: TX statistics
  439. * @rx_stats: RX statistics
  440. * @pcpu_rx_stats: per-CPU RX statistics, assigned only if the driver needs
  441. * this (by advertising the USES_RSS hw flag)
  442. * @status_stats: TX status statistics
  443. */
  444. struct sta_info {
  445. /* General information, mostly static */
  446. struct list_head list, free_list;
  447. struct rcu_head rcu_head;
  448. struct rhlist_head hash_node;
  449. u8 addr[ETH_ALEN];
  450. struct ieee80211_local *local;
  451. struct ieee80211_sub_if_data *sdata;
  452. struct ieee80211_key __rcu *gtk[NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS];
  453. struct ieee80211_key __rcu *ptk[NUM_DEFAULT_KEYS];
  454. u8 ptk_idx;
  455. struct rate_control_ref *rate_ctrl;
  456. void *rate_ctrl_priv;
  457. spinlock_t rate_ctrl_lock;
  458. spinlock_t lock;
  459. struct ieee80211_fast_tx __rcu *fast_tx;
  460. struct ieee80211_fast_rx __rcu *fast_rx;
  461. struct ieee80211_sta_rx_stats __percpu *pcpu_rx_stats;
  462. #ifdef CONFIG_MAC80211_MESH
  463. struct mesh_sta *mesh;
  464. #endif
  465. struct work_struct drv_deliver_wk;
  466. u16 listen_interval;
  467. bool dead;
  468. bool removed;
  469. bool uploaded;
  470. enum ieee80211_sta_state sta_state;
  471. /* use the accessors defined below */
  472. unsigned long _flags;
  473. /* STA powersave lock and frame queues */
  474. spinlock_t ps_lock;
  475. struct sk_buff_head ps_tx_buf[IEEE80211_NUM_ACS];
  476. struct sk_buff_head tx_filtered[IEEE80211_NUM_ACS];
  477. unsigned long driver_buffered_tids;
  478. unsigned long txq_buffered_tids;
  479. long last_connected;
  480. /* Updated from RX path only, no locking requirements */
  481. struct ieee80211_sta_rx_stats rx_stats;
  482. struct {
  483. struct ewma_signal signal;
  484. struct ewma_signal chain_signal[IEEE80211_MAX_CHAINS];
  485. } rx_stats_avg;
  486. /* Plus 1 for non-QoS frames */
  487. __le16 last_seq_ctrl[IEEE80211_NUM_TIDS + 1];
  488. /* Updated from TX status path only, no locking requirements */
  489. struct {
  490. unsigned long filtered;
  491. unsigned long retry_failed, retry_count;
  492. unsigned int lost_packets;
  493. unsigned long last_tdls_pkt_time;
  494. u64 msdu_retries[IEEE80211_NUM_TIDS + 1];
  495. u64 msdu_failed[IEEE80211_NUM_TIDS + 1];
  496. unsigned long last_ack;
  497. } status_stats;
  498. /* Updated from TX path only, no locking requirements */
  499. struct {
  500. u64 packets[IEEE80211_NUM_ACS];
  501. u64 bytes[IEEE80211_NUM_ACS];
  502. struct ieee80211_tx_rate last_rate;
  503. u64 msdu[IEEE80211_NUM_TIDS + 1];
  504. } tx_stats;
  505. u16 tid_seq[IEEE80211_QOS_CTL_TID_MASK + 1];
  506. /*
  507. * Aggregation information, locked with lock.
  508. */
  509. struct sta_ampdu_mlme ampdu_mlme;
  510. u8 timer_to_tid[IEEE80211_NUM_TIDS];
  511. #ifdef CONFIG_MAC80211_DEBUGFS
  512. struct dentry *debugfs_dir;
  513. #endif
  514. enum ieee80211_sta_rx_bandwidth cur_max_bandwidth;
  515. enum ieee80211_smps_mode known_smps_mode;
  516. const struct ieee80211_cipher_scheme *cipher_scheme;
  517. struct codel_params cparams;
  518. u8 reserved_tid;
  519. struct cfg80211_chan_def tdls_chandef;
  520. /* keep last! */
  521. struct ieee80211_sta sta;
  522. };
  523. static inline enum nl80211_plink_state sta_plink_state(struct sta_info *sta)
  524. {
  525. #ifdef CONFIG_MAC80211_MESH
  526. return sta->mesh->plink_state;
  527. #endif
  528. return NL80211_PLINK_LISTEN;
  529. }
  530. static inline void set_sta_flag(struct sta_info *sta,
  531. enum ieee80211_sta_info_flags flag)
  532. {
  533. WARN_ON(flag == WLAN_STA_AUTH ||
  534. flag == WLAN_STA_ASSOC ||
  535. flag == WLAN_STA_AUTHORIZED);
  536. set_bit(flag, &sta->_flags);
  537. }
  538. static inline void clear_sta_flag(struct sta_info *sta,
  539. enum ieee80211_sta_info_flags flag)
  540. {
  541. WARN_ON(flag == WLAN_STA_AUTH ||
  542. flag == WLAN_STA_ASSOC ||
  543. flag == WLAN_STA_AUTHORIZED);
  544. clear_bit(flag, &sta->_flags);
  545. }
  546. static inline int test_sta_flag(struct sta_info *sta,
  547. enum ieee80211_sta_info_flags flag)
  548. {
  549. return test_bit(flag, &sta->_flags);
  550. }
  551. static inline int test_and_clear_sta_flag(struct sta_info *sta,
  552. enum ieee80211_sta_info_flags flag)
  553. {
  554. WARN_ON(flag == WLAN_STA_AUTH ||
  555. flag == WLAN_STA_ASSOC ||
  556. flag == WLAN_STA_AUTHORIZED);
  557. return test_and_clear_bit(flag, &sta->_flags);
  558. }
  559. static inline int test_and_set_sta_flag(struct sta_info *sta,
  560. enum ieee80211_sta_info_flags flag)
  561. {
  562. WARN_ON(flag == WLAN_STA_AUTH ||
  563. flag == WLAN_STA_ASSOC ||
  564. flag == WLAN_STA_AUTHORIZED);
  565. return test_and_set_bit(flag, &sta->_flags);
  566. }
  567. int sta_info_move_state(struct sta_info *sta,
  568. enum ieee80211_sta_state new_state);
  569. static inline void sta_info_pre_move_state(struct sta_info *sta,
  570. enum ieee80211_sta_state new_state)
  571. {
  572. int ret;
  573. WARN_ON_ONCE(test_sta_flag(sta, WLAN_STA_INSERTED));
  574. ret = sta_info_move_state(sta, new_state);
  575. WARN_ON_ONCE(ret);
  576. }
  577. void ieee80211_assign_tid_tx(struct sta_info *sta, int tid,
  578. struct tid_ampdu_tx *tid_tx);
  579. static inline struct tid_ampdu_tx *
  580. rcu_dereference_protected_tid_tx(struct sta_info *sta, int tid)
  581. {
  582. return rcu_dereference_protected(sta->ampdu_mlme.tid_tx[tid],
  583. lockdep_is_held(&sta->lock) ||
  584. lockdep_is_held(&sta->ampdu_mlme.mtx));
  585. }
  586. /* Maximum number of frames to buffer per power saving station per AC */
  587. #define STA_MAX_TX_BUFFER 64
  588. /* Minimum buffered frame expiry time. If STA uses listen interval that is
  589. * smaller than this value, the minimum value here is used instead. */
  590. #define STA_TX_BUFFER_EXPIRE (10 * HZ)
  591. /* How often station data is cleaned up (e.g., expiration of buffered frames)
  592. */
  593. #define STA_INFO_CLEANUP_INTERVAL (10 * HZ)
  594. struct rhlist_head *sta_info_hash_lookup(struct ieee80211_local *local,
  595. const u8 *addr);
  596. /*
  597. * Get a STA info, must be under RCU read lock.
  598. */
  599. struct sta_info *sta_info_get(struct ieee80211_sub_if_data *sdata,
  600. const u8 *addr);
  601. struct sta_info *sta_info_get_bss(struct ieee80211_sub_if_data *sdata,
  602. const u8 *addr);
  603. #define for_each_sta_info(local, _addr, _sta, _tmp) \
  604. rhl_for_each_entry_rcu(_sta, _tmp, \
  605. sta_info_hash_lookup(local, _addr), hash_node)
  606. /*
  607. * Get STA info by index, BROKEN!
  608. */
  609. struct sta_info *sta_info_get_by_idx(struct ieee80211_sub_if_data *sdata,
  610. int idx);
  611. /*
  612. * Create a new STA info, caller owns returned structure
  613. * until sta_info_insert().
  614. */
  615. struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
  616. const u8 *addr, gfp_t gfp);
  617. void sta_info_free(struct ieee80211_local *local, struct sta_info *sta);
  618. /*
  619. * Insert STA info into hash table/list, returns zero or a
  620. * -EEXIST if (if the same MAC address is already present).
  621. *
  622. * Calling the non-rcu version makes the caller relinquish,
  623. * the _rcu version calls read_lock_rcu() and must be called
  624. * without it held.
  625. */
  626. int sta_info_insert(struct sta_info *sta);
  627. int sta_info_insert_rcu(struct sta_info *sta) __acquires(RCU);
  628. int __must_check __sta_info_destroy(struct sta_info *sta);
  629. int sta_info_destroy_addr(struct ieee80211_sub_if_data *sdata,
  630. const u8 *addr);
  631. int sta_info_destroy_addr_bss(struct ieee80211_sub_if_data *sdata,
  632. const u8 *addr);
  633. void sta_info_recalc_tim(struct sta_info *sta);
  634. int sta_info_init(struct ieee80211_local *local);
  635. void sta_info_stop(struct ieee80211_local *local);
  636. /**
  637. * sta_info_flush - flush matching STA entries from the STA table
  638. *
  639. * Returns the number of removed STA entries.
  640. *
  641. * @sdata: sdata to remove all stations from
  642. * @vlans: if the given interface is an AP interface, also flush VLANs
  643. */
  644. int __sta_info_flush(struct ieee80211_sub_if_data *sdata, bool vlans);
  645. static inline int sta_info_flush(struct ieee80211_sub_if_data *sdata)
  646. {
  647. return __sta_info_flush(sdata, false);
  648. }
  649. void sta_set_rate_info_tx(struct sta_info *sta,
  650. const struct ieee80211_tx_rate *rate,
  651. struct rate_info *rinfo);
  652. void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo);
  653. u32 sta_get_expected_throughput(struct sta_info *sta);
  654. void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata,
  655. unsigned long exp_time);
  656. u8 sta_info_tx_streams(struct sta_info *sta);
  657. void ieee80211_sta_ps_deliver_wakeup(struct sta_info *sta);
  658. void ieee80211_sta_ps_deliver_poll_response(struct sta_info *sta);
  659. void ieee80211_sta_ps_deliver_uapsd(struct sta_info *sta);
  660. unsigned long ieee80211_sta_last_active(struct sta_info *sta);
  661. enum sta_stats_type {
  662. STA_STATS_RATE_TYPE_INVALID = 0,
  663. STA_STATS_RATE_TYPE_LEGACY,
  664. STA_STATS_RATE_TYPE_HT,
  665. STA_STATS_RATE_TYPE_VHT,
  666. };
  667. #define STA_STATS_FIELD_HT_MCS GENMASK( 7, 0)
  668. #define STA_STATS_FIELD_LEGACY_IDX GENMASK( 3, 0)
  669. #define STA_STATS_FIELD_LEGACY_BAND GENMASK( 7, 4)
  670. #define STA_STATS_FIELD_VHT_MCS GENMASK( 3, 0)
  671. #define STA_STATS_FIELD_VHT_NSS GENMASK( 7, 4)
  672. #define STA_STATS_FIELD_BW GENMASK(11, 8)
  673. #define STA_STATS_FIELD_SGI GENMASK(12, 12)
  674. #define STA_STATS_FIELD_TYPE GENMASK(15, 13)
  675. #define STA_STATS_FIELD(_n, _v) FIELD_PREP(STA_STATS_FIELD_ ## _n, _v)
  676. #define STA_STATS_GET(_n, _v) FIELD_GET(STA_STATS_FIELD_ ## _n, _v)
  677. #define STA_STATS_RATE_INVALID 0
  678. static inline u32 sta_stats_encode_rate(struct ieee80211_rx_status *s)
  679. {
  680. u16 r;
  681. r = STA_STATS_FIELD(BW, s->bw);
  682. if (s->enc_flags & RX_ENC_FLAG_SHORT_GI)
  683. r |= STA_STATS_FIELD(SGI, 1);
  684. switch (s->encoding) {
  685. case RX_ENC_VHT:
  686. r |= STA_STATS_FIELD(TYPE, STA_STATS_RATE_TYPE_VHT);
  687. r |= STA_STATS_FIELD(VHT_NSS, s->nss);
  688. r |= STA_STATS_FIELD(VHT_MCS, s->rate_idx);
  689. break;
  690. case RX_ENC_HT:
  691. r |= STA_STATS_FIELD(TYPE, STA_STATS_RATE_TYPE_HT);
  692. r |= STA_STATS_FIELD(HT_MCS, s->rate_idx);
  693. break;
  694. case RX_ENC_LEGACY:
  695. r |= STA_STATS_FIELD(TYPE, STA_STATS_RATE_TYPE_LEGACY);
  696. r |= STA_STATS_FIELD(LEGACY_BAND, s->band);
  697. r |= STA_STATS_FIELD(LEGACY_IDX, s->rate_idx);
  698. break;
  699. default:
  700. WARN_ON(1);
  701. return STA_STATS_RATE_INVALID;
  702. }
  703. return r;
  704. }
  705. #endif /* STA_INFO_H */