blob: b15412c21ac9355762a0b99ad99096d65a0a001b [file] [log] [blame]
Jiri Bence9f207f2007-05-05 11:46:38 -07001/*
2 * Copyright 2003-2005 Devicescape Software, Inc.
3 * Copyright (c) 2006 Jiri Benc <jbenc@suse.cz>
4 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
Johannes Bergd98ad832014-09-03 15:24:57 +03005 * Copyright 2013-2014 Intel Mobile Communications GmbH
Sara Sharon1e0bbeb2016-03-09 13:27:09 +02006 * Copyright(c) 2016 Intel Deutschland GmbH
Jiri Bence9f207f2007-05-05 11:46:38 -07007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/debugfs.h>
14#include <linux/ieee80211.h>
15#include "ieee80211_i.h"
16#include "debugfs.h"
17#include "debugfs_sta.h"
18#include "sta_info.h"
Sujith Manoharan77d2ece2012-11-20 08:46:02 +053019#include "driver-ops.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070020
21/* sta attributtes */
22
Eliad Peller07caf9d2010-10-27 14:58:29 +020023#define STA_READ(name, field, format_string) \
Jiri Bence9f207f2007-05-05 11:46:38 -070024static ssize_t sta_ ##name## _read(struct file *file, \
25 char __user *userbuf, \
26 size_t count, loff_t *ppos) \
27{ \
Jiri Bence9f207f2007-05-05 11:46:38 -070028 struct sta_info *sta = file->private_data; \
Eliad Peller07caf9d2010-10-27 14:58:29 +020029 return mac80211_format_buffer(userbuf, count, ppos, \
30 format_string, sta->field); \
Jiri Bence9f207f2007-05-05 11:46:38 -070031}
Eliad Peller07caf9d2010-10-27 14:58:29 +020032#define STA_READ_D(name, field) STA_READ(name, field, "%d\n")
Jiri Bence9f207f2007-05-05 11:46:38 -070033
Jiri Bence9f207f2007-05-05 11:46:38 -070034#define STA_OPS(name) \
35static const struct file_operations sta_ ##name## _ops = { \
36 .read = sta_##name##_read, \
Stephen Boyd234e3402012-04-05 14:25:11 -070037 .open = simple_open, \
Arnd Bergmann2b18ab362010-07-06 19:05:31 +020038 .llseek = generic_file_llseek, \
Jiri Bence9f207f2007-05-05 11:46:38 -070039}
40
Johannes Berga75b4362010-05-01 18:53:51 +020041#define STA_OPS_RW(name) \
42static const struct file_operations sta_ ##name## _ops = { \
43 .read = sta_##name##_read, \
44 .write = sta_##name##_write, \
Stephen Boyd234e3402012-04-05 14:25:11 -070045 .open = simple_open, \
Arnd Bergmann2b18ab362010-07-06 19:05:31 +020046 .llseek = generic_file_llseek, \
Johannes Berga75b4362010-05-01 18:53:51 +020047}
48
Jiri Bence9f207f2007-05-05 11:46:38 -070049#define STA_FILE(name, field, format) \
50 STA_READ_##format(name, field) \
51 STA_OPS(name)
52
Johannes Berg17741cd2008-09-11 00:02:02 +020053STA_FILE(aid, sta.aid, D);
Jiri Bence9f207f2007-05-05 11:46:38 -070054
Johannes Bergc84387d2016-03-17 15:02:54 +020055static const char * const sta_flag_names[] = {
56#define FLAG(F) [WLAN_STA_##F] = #F
57 FLAG(AUTH),
58 FLAG(ASSOC),
59 FLAG(PS_STA),
60 FLAG(AUTHORIZED),
61 FLAG(SHORT_PREAMBLE),
62 FLAG(WDS),
63 FLAG(CLEAR_PS_FILT),
64 FLAG(MFP),
65 FLAG(BLOCK_BA),
66 FLAG(PS_DRIVER),
67 FLAG(PSPOLL),
68 FLAG(TDLS_PEER),
69 FLAG(TDLS_PEER_AUTH),
70 FLAG(TDLS_INITIATOR),
71 FLAG(TDLS_CHAN_SWITCH),
72 FLAG(TDLS_OFF_CHANNEL),
73 FLAG(TDLS_WIDER_BW),
74 FLAG(UAPSD),
75 FLAG(SP),
76 FLAG(4ADDR_EVENT),
77 FLAG(INSERTED),
78 FLAG(RATE_CONTROL),
79 FLAG(TOFFSET_KNOWN),
80 FLAG(MPSP_OWNER),
81 FLAG(MPSP_RECIPIENT),
82 FLAG(PS_DELIVER),
83#undef FLAG
84};
85
Jiri Bence9f207f2007-05-05 11:46:38 -070086static ssize_t sta_flags_read(struct file *file, char __user *userbuf,
87 size_t count, loff_t *ppos)
88{
Johannes Bergc84387d2016-03-17 15:02:54 +020089 char buf[16 * NUM_WLAN_STA_FLAGS], *pos = buf;
90 char *end = buf + sizeof(buf) - 1;
Jiri Bence9f207f2007-05-05 11:46:38 -070091 struct sta_info *sta = file->private_data;
Johannes Bergc84387d2016-03-17 15:02:54 +020092 unsigned int flg;
Johannes Bergc2c98fd2011-09-29 16:04:36 +020093
Johannes Bergc84387d2016-03-17 15:02:54 +020094 BUILD_BUG_ON(ARRAY_SIZE(sta_flag_names) != NUM_WLAN_STA_FLAGS);
Johannes Berg5bade102011-09-29 16:04:37 +020095
Johannes Bergc84387d2016-03-17 15:02:54 +020096 for (flg = 0; flg < NUM_WLAN_STA_FLAGS; flg++) {
97 if (test_sta_flag(sta, flg))
98 pos += scnprintf(pos, end - pos, "%s\n",
99 sta_flag_names[flg]);
100 }
101
102 return simple_read_from_buffer(userbuf, count, ppos, buf, strlen(buf));
Jiri Bence9f207f2007-05-05 11:46:38 -0700103}
104STA_OPS(flags);
105
106static ssize_t sta_num_ps_buf_frames_read(struct file *file,
107 char __user *userbuf,
108 size_t count, loff_t *ppos)
109{
Jiri Bence9f207f2007-05-05 11:46:38 -0700110 struct sta_info *sta = file->private_data;
Johannes Berg948d8872011-09-29 16:04:29 +0200111 char buf[17*IEEE80211_NUM_ACS], *p = buf;
112 int ac;
113
114 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
115 p += scnprintf(p, sizeof(buf)+buf-p, "AC%d: %d\n", ac,
116 skb_queue_len(&sta->ps_tx_buf[ac]) +
117 skb_queue_len(&sta->tx_filtered[ac]));
118 return simple_read_from_buffer(userbuf, count, ppos, buf, p - buf);
Jiri Bence9f207f2007-05-05 11:46:38 -0700119}
120STA_OPS(num_ps_buf_frames);
121
Jiri Bence9f207f2007-05-05 11:46:38 -0700122static ssize_t sta_last_seq_ctrl_read(struct file *file, char __user *userbuf,
123 size_t count, loff_t *ppos)
124{
Johannes Berg5a306f52012-11-14 23:22:21 +0100125 char buf[15*IEEE80211_NUM_TIDS], *p = buf;
Jiri Bence9f207f2007-05-05 11:46:38 -0700126 int i;
127 struct sta_info *sta = file->private_data;
Johannes Berg5a306f52012-11-14 23:22:21 +0100128 for (i = 0; i < IEEE80211_NUM_TIDS; i++)
Jiri Bence9f207f2007-05-05 11:46:38 -0700129 p += scnprintf(p, sizeof(buf)+buf-p, "%x ",
Zhu Yiba9b07d2007-07-27 15:43:23 +0200130 le16_to_cpu(sta->last_seq_ctrl[i]));
Jiri Bence9f207f2007-05-05 11:46:38 -0700131 p += scnprintf(p, sizeof(buf)+buf-p, "\n");
132 return simple_read_from_buffer(userbuf, count, ppos, buf, p - buf);
133}
134STA_OPS(last_seq_ctrl);
135
Toke Høiland-Jørgensen8d51dbb2016-09-12 15:55:43 +0200136#define AQM_TXQ_ENTRY_LEN 130
137
138static ssize_t sta_aqm_read(struct file *file, char __user *userbuf,
139 size_t count, loff_t *ppos)
140{
141 struct sta_info *sta = file->private_data;
142 struct ieee80211_local *local = sta->local;
143 size_t bufsz = AQM_TXQ_ENTRY_LEN*(IEEE80211_NUM_TIDS+1);
144 char *buf = kzalloc(bufsz, GFP_KERNEL), *p = buf;
145 struct txq_info *txqi;
146 ssize_t rv;
147 int i;
148
149 if (!buf)
150 return -ENOMEM;
151
152 spin_lock_bh(&local->fq.lock);
153 rcu_read_lock();
154
155 p += scnprintf(p,
156 bufsz+buf-p,
Toke Høiland-Jørgensen484a54c2017-04-06 11:38:26 +0200157 "target %uus interval %uus ecn %s\n",
158 codel_time_to_us(sta->cparams.target),
159 codel_time_to_us(sta->cparams.interval),
160 sta->cparams.ecn ? "yes" : "no");
161 p += scnprintf(p,
162 bufsz+buf-p,
Toke Høiland-Jørgensen8d51dbb2016-09-12 15:55:43 +0200163 "tid ac backlog-bytes backlog-packets new-flows drops marks overlimit collisions tx-bytes tx-packets\n");
164
165 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
166 txqi = to_txq_info(sta->sta.txq[i]);
167 p += scnprintf(p, bufsz+buf-p,
168 "%d %d %u %u %u %u %u %u %u %u %u\n",
169 txqi->txq.tid,
170 txqi->txq.ac,
171 txqi->tin.backlog_bytes,
172 txqi->tin.backlog_packets,
173 txqi->tin.flows,
174 txqi->cstats.drop_count,
175 txqi->cstats.ecn_mark,
176 txqi->tin.overlimit,
177 txqi->tin.collisions,
178 txqi->tin.tx_bytes,
179 txqi->tin.tx_packets);
180 }
181
182 rcu_read_unlock();
183 spin_unlock_bh(&local->fq.lock);
184
185 rv = simple_read_from_buffer(userbuf, count, ppos, buf, p - buf);
186 kfree(buf);
187 return rv;
188}
189STA_OPS(aqm);
190
Ron Rindjunskyeb2ba622008-01-28 14:07:20 +0200191static ssize_t sta_agg_status_read(struct file *file, char __user *userbuf,
192 size_t count, loff_t *ppos)
193{
Johannes Berg5a306f52012-11-14 23:22:21 +0100194 char buf[71 + IEEE80211_NUM_TIDS * 40], *p = buf;
Ron Rindjunskyeb2ba622008-01-28 14:07:20 +0200195 int i;
196 struct sta_info *sta = file->private_data;
Johannes Bergdd318572010-11-29 11:09:16 +0100197 struct tid_ampdu_rx *tid_rx;
198 struct tid_ampdu_tx *tid_tx;
Ron Rindjunskyeb2ba622008-01-28 14:07:20 +0200199
Johannes Bergdd318572010-11-29 11:09:16 +0100200 rcu_read_lock();
201
Pavel Roskine0b20f12010-01-30 19:55:27 -0500202 p += scnprintf(p, sizeof(buf) + buf - p, "next dialog_token: %#02x\n",
Johannes Berg386aa232009-06-17 17:28:45 +0200203 sta->ampdu_mlme.dialog_token_allocator + 1);
Pavel Roskine0b20f12010-01-30 19:55:27 -0500204 p += scnprintf(p, sizeof(buf) + buf - p,
Johannes Berg14b058b2014-08-05 09:34:05 +0200205 "TID\t\tRX\tDTKN\tSSN\t\tTX\tDTKN\tpending\n");
Ron Rindjunskyeb2ba622008-01-28 14:07:20 +0200206
Johannes Berg5a306f52012-11-14 23:22:21 +0100207 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
Johannes Bergb473b8f2016-10-18 23:12:09 +0300208 bool tid_rx_valid;
209
Johannes Bergdd318572010-11-29 11:09:16 +0100210 tid_rx = rcu_dereference(sta->ampdu_mlme.tid_rx[i]);
211 tid_tx = rcu_dereference(sta->ampdu_mlme.tid_tx[i]);
Johannes Bergb473b8f2016-10-18 23:12:09 +0300212 tid_rx_valid = test_bit(i, sta->ampdu_mlme.agg_session_valid);
Johannes Bergdd318572010-11-29 11:09:16 +0100213
214 p += scnprintf(p, sizeof(buf) + buf - p, "%02d", i);
Johannes Bergb473b8f2016-10-18 23:12:09 +0300215 p += scnprintf(p, sizeof(buf) + buf - p, "\t\t%x",
216 tid_rx_valid);
Pavel Roskine0b20f12010-01-30 19:55:27 -0500217 p += scnprintf(p, sizeof(buf) + buf - p, "\t%#.2x",
Johannes Bergb473b8f2016-10-18 23:12:09 +0300218 tid_rx_valid ?
219 sta->ampdu_mlme.tid_rx_token[i] : 0);
Johannes Bergdd318572010-11-29 11:09:16 +0100220 p += scnprintf(p, sizeof(buf) + buf - p, "\t%#.3x",
221 tid_rx ? tid_rx->ssn : 0);
222
223 p += scnprintf(p, sizeof(buf) + buf - p, "\t\t%x", !!tid_tx);
224 p += scnprintf(p, sizeof(buf) + buf - p, "\t%#.2x",
225 tid_tx ? tid_tx->dialog_token : 0);
Pavel Roskine0b20f12010-01-30 19:55:27 -0500226 p += scnprintf(p, sizeof(buf) + buf - p, "\t%03d",
Johannes Bergdd318572010-11-29 11:09:16 +0100227 tid_tx ? skb_queue_len(&tid_tx->pending) : 0);
Pavel Roskine0b20f12010-01-30 19:55:27 -0500228 p += scnprintf(p, sizeof(buf) + buf - p, "\n");
Johannes Berg386aa232009-06-17 17:28:45 +0200229 }
Johannes Bergdd318572010-11-29 11:09:16 +0100230 rcu_read_unlock();
Ron Rindjunskyeb2ba622008-01-28 14:07:20 +0200231
232 return simple_read_from_buffer(userbuf, count, ppos, buf, p - buf);
233}
Johannes Berga75b4362010-05-01 18:53:51 +0200234
235static ssize_t sta_agg_status_write(struct file *file, const char __user *userbuf,
236 size_t count, loff_t *ppos)
237{
Sara Sharon1e0bbeb2016-03-09 13:27:09 +0200238 char _buf[25] = {}, *buf = _buf;
Johannes Berga75b4362010-05-01 18:53:51 +0200239 struct sta_info *sta = file->private_data;
240 bool start, tx;
241 unsigned long tid;
Sara Sharon1e0bbeb2016-03-09 13:27:09 +0200242 char *pos;
243 int ret, timeout = 5000;
Johannes Berga75b4362010-05-01 18:53:51 +0200244
245 if (count > sizeof(_buf))
246 return -EINVAL;
247
248 if (copy_from_user(buf, userbuf, count))
249 return -EFAULT;
250
251 buf[sizeof(_buf) - 1] = '\0';
Sara Sharon1e0bbeb2016-03-09 13:27:09 +0200252 pos = buf;
253 buf = strsep(&pos, " ");
254 if (!buf)
Johannes Berga75b4362010-05-01 18:53:51 +0200255 return -EINVAL;
256
Sara Sharon1e0bbeb2016-03-09 13:27:09 +0200257 if (!strcmp(buf, "tx"))
258 tx = true;
259 else if (!strcmp(buf, "rx"))
260 tx = false;
261 else
262 return -EINVAL;
263
264 buf = strsep(&pos, " ");
265 if (!buf)
266 return -EINVAL;
267 if (!strcmp(buf, "start")) {
Johannes Berga75b4362010-05-01 18:53:51 +0200268 start = true;
269 if (!tx)
270 return -EINVAL;
Sara Sharon1e0bbeb2016-03-09 13:27:09 +0200271 } else if (!strcmp(buf, "stop")) {
Johannes Berga75b4362010-05-01 18:53:51 +0200272 start = false;
Sara Sharon1e0bbeb2016-03-09 13:27:09 +0200273 } else {
Johannes Berga75b4362010-05-01 18:53:51 +0200274 return -EINVAL;
Sara Sharon1e0bbeb2016-03-09 13:27:09 +0200275 }
276
277 buf = strsep(&pos, " ");
278 if (!buf)
279 return -EINVAL;
280 if (sscanf(buf, "timeout=%d", &timeout) == 1) {
281 buf = strsep(&pos, " ");
282 if (!buf || !tx || !start)
283 return -EINVAL;
284 }
Johannes Berga75b4362010-05-01 18:53:51 +0200285
Abhijit Pawar4b5511e2012-12-09 23:12:28 +0000286 ret = kstrtoul(buf, 0, &tid);
Sara Sharon1e0bbeb2016-03-09 13:27:09 +0200287 if (ret || tid >= IEEE80211_NUM_TIDS)
Johannes Berga75b4362010-05-01 18:53:51 +0200288 return -EINVAL;
289
290 if (tx) {
291 if (start)
Sara Sharon1e0bbeb2016-03-09 13:27:09 +0200292 ret = ieee80211_start_tx_ba_session(&sta->sta, tid,
293 timeout);
Johannes Berga75b4362010-05-01 18:53:51 +0200294 else
Johannes Berg6a8579d2010-05-27 14:41:07 +0200295 ret = ieee80211_stop_tx_ba_session(&sta->sta, tid);
Johannes Berga75b4362010-05-01 18:53:51 +0200296 } else {
Johannes Berg53f73c02010-10-05 19:37:40 +0200297 __ieee80211_stop_rx_ba_session(sta, tid, WLAN_BACK_RECIPIENT,
298 3, true);
Johannes Berga75b4362010-05-01 18:53:51 +0200299 ret = 0;
300 }
301
302 return ret ?: count;
303}
304STA_OPS_RW(agg_status);
Ron Rindjunskyeb2ba622008-01-28 14:07:20 +0200305
Johannes Berg64491f02009-11-19 14:26:11 +0100306static ssize_t sta_ht_capa_read(struct file *file, char __user *userbuf,
307 size_t count, loff_t *ppos)
308{
Luis R. Rodriguez7db94e22009-12-07 14:54:45 -0500309#define PRINT_HT_CAP(_cond, _str) \
310 do { \
311 if (_cond) \
312 p += scnprintf(p, sizeof(buf)+buf-p, "\t" _str "\n"); \
313 } while (0)
Pavel Roskin4c82bf82010-01-30 19:55:09 -0500314 char buf[512], *p = buf;
Johannes Berg64491f02009-11-19 14:26:11 +0100315 int i;
316 struct sta_info *sta = file->private_data;
317 struct ieee80211_sta_ht_cap *htc = &sta->sta.ht_cap;
318
319 p += scnprintf(p, sizeof(buf) + buf - p, "ht %ssupported\n",
320 htc->ht_supported ? "" : "not ");
321 if (htc->ht_supported) {
Luis R. Rodriguezcb136f52009-12-07 14:01:28 -0500322 p += scnprintf(p, sizeof(buf)+buf-p, "cap: %#.4x\n", htc->cap);
Luis R. Rodriguez7db94e22009-12-07 14:54:45 -0500323
Luis R. Rodriguezc15cf5f2010-04-08 16:08:46 -0400324 PRINT_HT_CAP((htc->cap & BIT(0)), "RX LDPC");
Luis R. Rodriguez7db94e22009-12-07 14:54:45 -0500325 PRINT_HT_CAP((htc->cap & BIT(1)), "HT20/HT40");
326 PRINT_HT_CAP(!(htc->cap & BIT(1)), "HT20");
327
328 PRINT_HT_CAP(((htc->cap >> 2) & 0x3) == 0, "Static SM Power Save");
329 PRINT_HT_CAP(((htc->cap >> 2) & 0x3) == 1, "Dynamic SM Power Save");
330 PRINT_HT_CAP(((htc->cap >> 2) & 0x3) == 3, "SM Power Save disabled");
331
332 PRINT_HT_CAP((htc->cap & BIT(4)), "RX Greenfield");
333 PRINT_HT_CAP((htc->cap & BIT(5)), "RX HT20 SGI");
334 PRINT_HT_CAP((htc->cap & BIT(6)), "RX HT40 SGI");
335 PRINT_HT_CAP((htc->cap & BIT(7)), "TX STBC");
336
337 PRINT_HT_CAP(((htc->cap >> 8) & 0x3) == 0, "No RX STBC");
338 PRINT_HT_CAP(((htc->cap >> 8) & 0x3) == 1, "RX STBC 1-stream");
339 PRINT_HT_CAP(((htc->cap >> 8) & 0x3) == 2, "RX STBC 2-streams");
340 PRINT_HT_CAP(((htc->cap >> 8) & 0x3) == 3, "RX STBC 3-streams");
341
342 PRINT_HT_CAP((htc->cap & BIT(10)), "HT Delayed Block Ack");
343
Luis R. Rodriguez7db94e22009-12-07 14:54:45 -0500344 PRINT_HT_CAP(!(htc->cap & BIT(11)), "Max AMSDU length: "
Ben Greear904603f2011-11-17 14:53:36 -0800345 "3839 bytes");
346 PRINT_HT_CAP((htc->cap & BIT(11)), "Max AMSDU length: "
Luis R. Rodriguez7db94e22009-12-07 14:54:45 -0500347 "7935 bytes");
348
349 /*
350 * For beacons and probe response this would mean the BSS
351 * does or does not allow the usage of DSSS/CCK HT40.
352 * Otherwise it means the STA does or does not use
353 * DSSS/CCK HT40.
354 */
355 PRINT_HT_CAP((htc->cap & BIT(12)), "DSSS/CCK HT40");
356 PRINT_HT_CAP(!(htc->cap & BIT(12)), "No DSSS/CCK HT40");
357
358 /* BIT(13) is reserved */
359
360 PRINT_HT_CAP((htc->cap & BIT(14)), "40 MHz Intolerant");
361
362 PRINT_HT_CAP((htc->cap & BIT(15)), "L-SIG TXOP protection");
363
Johannes Berg64491f02009-11-19 14:26:11 +0100364 p += scnprintf(p, sizeof(buf)+buf-p, "ampdu factor/density: %d/%d\n",
365 htc->ampdu_factor, htc->ampdu_density);
366 p += scnprintf(p, sizeof(buf)+buf-p, "MCS mask:");
Luis R. Rodriguez9da3e062009-12-07 15:57:50 -0500367
Johannes Berg64491f02009-11-19 14:26:11 +0100368 for (i = 0; i < IEEE80211_HT_MCS_MASK_LEN; i++)
369 p += scnprintf(p, sizeof(buf)+buf-p, " %.2x",
370 htc->mcs.rx_mask[i]);
Luis R. Rodriguez9da3e062009-12-07 15:57:50 -0500371 p += scnprintf(p, sizeof(buf)+buf-p, "\n");
372
373 /* If not set this is meaningless */
374 if (le16_to_cpu(htc->mcs.rx_highest)) {
375 p += scnprintf(p, sizeof(buf)+buf-p,
376 "MCS rx highest: %d Mbps\n",
377 le16_to_cpu(htc->mcs.rx_highest));
378 }
379
Johannes Berg64491f02009-11-19 14:26:11 +0100380 p += scnprintf(p, sizeof(buf)+buf-p, "MCS tx params: %x\n",
381 htc->mcs.tx_params);
382 }
383
384 return simple_read_from_buffer(userbuf, count, ppos, buf, p - buf);
385}
386STA_OPS(ht_capa);
387
Johannes Berg90fcba62013-03-01 13:36:24 +0100388static ssize_t sta_vht_capa_read(struct file *file, char __user *userbuf,
389 size_t count, loff_t *ppos)
390{
Ben Greear0bb7ed42016-05-13 11:29:33 -0700391 char buf[512], *p = buf;
Johannes Berg90fcba62013-03-01 13:36:24 +0100392 struct sta_info *sta = file->private_data;
393 struct ieee80211_sta_vht_cap *vhtc = &sta->sta.vht_cap;
394
395 p += scnprintf(p, sizeof(buf) + buf - p, "VHT %ssupported\n",
396 vhtc->vht_supported ? "" : "not ");
397 if (vhtc->vht_supported) {
Ben Greear0bb7ed42016-05-13 11:29:33 -0700398 p += scnprintf(p, sizeof(buf) + buf - p, "cap: %#.8x\n",
399 vhtc->cap);
400#define PFLAG(a, b) \
401 do { \
402 if (vhtc->cap & IEEE80211_VHT_CAP_ ## a) \
403 p += scnprintf(p, sizeof(buf) + buf - p, \
404 "\t\t%s\n", b); \
405 } while (0)
406
407 switch (vhtc->cap & 0x3) {
408 case IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_3895:
409 p += scnprintf(p, sizeof(buf) + buf - p,
410 "\t\tMAX-MPDU-3895\n");
411 break;
412 case IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_7991:
413 p += scnprintf(p, sizeof(buf) + buf - p,
414 "\t\tMAX-MPDU-7991\n");
415 break;
416 case IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_11454:
417 p += scnprintf(p, sizeof(buf) + buf - p,
418 "\t\tMAX-MPDU-11454\n");
419 break;
420 default:
421 p += scnprintf(p, sizeof(buf) + buf - p,
422 "\t\tMAX-MPDU-UNKNOWN\n");
423 };
424 switch (vhtc->cap & IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_MASK) {
425 case 0:
426 p += scnprintf(p, sizeof(buf) + buf - p,
427 "\t\t80Mhz\n");
428 break;
429 case IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ:
430 p += scnprintf(p, sizeof(buf) + buf - p,
431 "\t\t160Mhz\n");
432 break;
433 case IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ:
434 p += scnprintf(p, sizeof(buf) + buf - p,
435 "\t\t80+80Mhz\n");
436 break;
437 default:
438 p += scnprintf(p, sizeof(buf) + buf - p,
439 "\t\tUNKNOWN-MHZ: 0x%x\n",
440 (vhtc->cap >> 2) & 0x3);
441 };
442 PFLAG(RXLDPC, "RXLDPC");
443 PFLAG(SHORT_GI_80, "SHORT-GI-80");
444 PFLAG(SHORT_GI_160, "SHORT-GI-160");
445 PFLAG(TXSTBC, "TXSTBC");
446 p += scnprintf(p, sizeof(buf) + buf - p,
447 "\t\tRXSTBC_%d\n", (vhtc->cap >> 8) & 0x7);
448 PFLAG(SU_BEAMFORMER_CAPABLE, "SU-BEAMFORMER-CAPABLE");
449 PFLAG(SU_BEAMFORMEE_CAPABLE, "SU-BEAMFORMEE-CAPABLE");
450 p += scnprintf(p, sizeof(buf) + buf - p,
451 "\t\tBEAMFORMEE-STS: 0x%x\n",
452 (vhtc->cap & IEEE80211_VHT_CAP_BEAMFORMEE_STS_MASK) >>
453 IEEE80211_VHT_CAP_BEAMFORMEE_STS_SHIFT);
454 p += scnprintf(p, sizeof(buf) + buf - p,
455 "\t\tSOUNDING-DIMENSIONS: 0x%x\n",
456 (vhtc->cap & IEEE80211_VHT_CAP_SOUNDING_DIMENSIONS_MASK)
457 >> IEEE80211_VHT_CAP_SOUNDING_DIMENSIONS_SHIFT);
458 PFLAG(MU_BEAMFORMER_CAPABLE, "MU-BEAMFORMER-CAPABLE");
459 PFLAG(MU_BEAMFORMEE_CAPABLE, "MU-BEAMFORMEE-CAPABLE");
460 PFLAG(VHT_TXOP_PS, "TXOP-PS");
461 PFLAG(HTC_VHT, "HTC-VHT");
462 p += scnprintf(p, sizeof(buf) + buf - p,
463 "\t\tMPDU-LENGTH-EXPONENT: 0x%x\n",
464 (vhtc->cap & IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK) >>
465 IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_SHIFT);
466 PFLAG(VHT_LINK_ADAPTATION_VHT_UNSOL_MFB,
467 "LINK-ADAPTATION-VHT-UNSOL-MFB");
468 p += scnprintf(p, sizeof(buf) + buf - p,
469 "\t\tLINK-ADAPTATION-VHT-MRQ-MFB: 0x%x\n",
470 (vhtc->cap & IEEE80211_VHT_CAP_VHT_LINK_ADAPTATION_VHT_MRQ_MFB) >> 26);
471 PFLAG(RX_ANTENNA_PATTERN, "RX-ANTENNA-PATTERN");
472 PFLAG(TX_ANTENNA_PATTERN, "TX-ANTENNA-PATTERN");
Johannes Berg90fcba62013-03-01 13:36:24 +0100473
474 p += scnprintf(p, sizeof(buf)+buf-p, "RX MCS: %.4x\n",
475 le16_to_cpu(vhtc->vht_mcs.rx_mcs_map));
476 if (vhtc->vht_mcs.rx_highest)
477 p += scnprintf(p, sizeof(buf)+buf-p,
478 "MCS RX highest: %d Mbps\n",
479 le16_to_cpu(vhtc->vht_mcs.rx_highest));
480 p += scnprintf(p, sizeof(buf)+buf-p, "TX MCS: %.4x\n",
481 le16_to_cpu(vhtc->vht_mcs.tx_mcs_map));
482 if (vhtc->vht_mcs.tx_highest)
483 p += scnprintf(p, sizeof(buf)+buf-p,
484 "MCS TX highest: %d Mbps\n",
485 le16_to_cpu(vhtc->vht_mcs.tx_highest));
486 }
487
488 return simple_read_from_buffer(userbuf, count, ppos, buf, p - buf);
489}
490STA_OPS(vht_capa);
491
Saravana1f2e6512012-11-29 19:54:19 +0530492
Jiri Bence9f207f2007-05-05 11:46:38 -0700493#define DEBUGFS_ADD(name) \
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100494 debugfs_create_file(#name, 0400, \
Johannes Bergfc4a25c2016-04-05 11:59:05 +0200495 sta->debugfs_dir, sta, &sta_ ##name## _ops);
Jiri Bence9f207f2007-05-05 11:46:38 -0700496
Felix Fietkau2826bcd2010-06-02 02:57:34 +0200497#define DEBUGFS_ADD_COUNTER(name, field) \
498 if (sizeof(sta->field) == sizeof(u32)) \
Johannes Bergfc4a25c2016-04-05 11:59:05 +0200499 debugfs_create_u32(#name, 0400, sta->debugfs_dir, \
Felix Fietkau2826bcd2010-06-02 02:57:34 +0200500 (u32 *) &sta->field); \
501 else \
Johannes Bergfc4a25c2016-04-05 11:59:05 +0200502 debugfs_create_u64(#name, 0400, sta->debugfs_dir, \
Felix Fietkau2826bcd2010-06-02 02:57:34 +0200503 (u64 *) &sta->field);
Jiri Bence9f207f2007-05-05 11:46:38 -0700504
505void ieee80211_sta_debugfs_add(struct sta_info *sta)
506{
Sujith Manoharan77d2ece2012-11-20 08:46:02 +0530507 struct ieee80211_local *local = sta->local;
508 struct ieee80211_sub_if_data *sdata = sta->sdata;
Ben Greear295bafb2010-09-22 20:29:01 -0700509 struct dentry *stations_dir = sta->sdata->debugfs.subdir_stations;
Johannes Berg0c68ae262008-10-27 15:56:10 -0700510 u8 mac[3*ETH_ALEN];
Jiri Bence9f207f2007-05-05 11:46:38 -0700511
512 if (!stations_dir)
513 return;
514
Johannes Berg0c68ae262008-10-27 15:56:10 -0700515 snprintf(mac, sizeof(mac), "%pM", sta->sta.addr);
Jiri Bence9f207f2007-05-05 11:46:38 -0700516
Johannes Berg63044e92008-10-07 12:04:29 +0200517 /*
518 * This might fail due to a race condition:
519 * When mac80211 unlinks a station, the debugfs entries
520 * remain, but it is already possible to link a new
521 * station with the same address which triggers adding
522 * it to debugfs; therefore, if the old station isn't
523 * destroyed quickly enough the old station's debugfs
524 * dir might still be around.
525 */
Johannes Bergfc4a25c2016-04-05 11:59:05 +0200526 sta->debugfs_dir = debugfs_create_dir(mac, stations_dir);
527 if (!sta->debugfs_dir)
Jiri Bence9f207f2007-05-05 11:46:38 -0700528 return;
529
530 DEBUGFS_ADD(flags);
Johannes Bergbddb2afc2017-02-07 10:40:50 +0100531 DEBUGFS_ADD(aid);
Jiri Bence9f207f2007-05-05 11:46:38 -0700532 DEBUGFS_ADD(num_ps_buf_frames);
Jiri Bence9f207f2007-05-05 11:46:38 -0700533 DEBUGFS_ADD(last_seq_ctrl);
Ron Rindjunskyeb2ba622008-01-28 14:07:20 +0200534 DEBUGFS_ADD(agg_status);
Johannes Berg64491f02009-11-19 14:26:11 +0100535 DEBUGFS_ADD(ht_capa);
Johannes Berg90fcba62013-03-01 13:36:24 +0100536 DEBUGFS_ADD(vht_capa);
Felix Fietkau2826bcd2010-06-02 02:57:34 +0200537
Johannes Berge5a9f8d2015-10-16 17:54:47 +0200538 DEBUGFS_ADD_COUNTER(rx_duplicates, rx_stats.num_duplicates);
539 DEBUGFS_ADD_COUNTER(rx_fragments, rx_stats.fragments);
540 DEBUGFS_ADD_COUNTER(tx_filtered, status_stats.filtered);
Sujith Manoharan77d2ece2012-11-20 08:46:02 +0530541
Toke Høiland-Jørgensen8d51dbb2016-09-12 15:55:43 +0200542 if (local->ops->wake_tx_queue)
543 DEBUGFS_ADD(aqm);
544
Johannes Berg7cf1f142013-07-12 10:40:31 +0200545 if (sizeof(sta->driver_buffered_tids) == sizeof(u32))
546 debugfs_create_x32("driver_buffered_tids", 0400,
Johannes Bergfc4a25c2016-04-05 11:59:05 +0200547 sta->debugfs_dir,
Johannes Berg7cf1f142013-07-12 10:40:31 +0200548 (u32 *)&sta->driver_buffered_tids);
549 else
550 debugfs_create_x64("driver_buffered_tids", 0400,
Johannes Bergfc4a25c2016-04-05 11:59:05 +0200551 sta->debugfs_dir,
Johannes Berg7cf1f142013-07-12 10:40:31 +0200552 (u64 *)&sta->driver_buffered_tids);
553
Johannes Bergfc4a25c2016-04-05 11:59:05 +0200554 drv_sta_add_debugfs(local, sdata, &sta->sta, sta->debugfs_dir);
Jiri Bence9f207f2007-05-05 11:46:38 -0700555}
556
557void ieee80211_sta_debugfs_remove(struct sta_info *sta)
558{
Johannes Bergfc4a25c2016-04-05 11:59:05 +0200559 debugfs_remove_recursive(sta->debugfs_dir);
560 sta->debugfs_dir = NULL;
Jiri Bence9f207f2007-05-05 11:46:38 -0700561}