sta_info.h 27 KB

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