blob: db724fc10a5f62b99383a4f5c52c528e04080e3a [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Jiri Bence9f207f2007-05-05 11:46:38 -07002/*
3 * Copyright (c) 2006 Jiri Benc <jbenc@suse.cz>
4 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
Ilan Peer52b48102020-01-31 13:12:56 +02005 * Copyright (C) 2020 Intel Corporation
Jiri Bence9f207f2007-05-05 11:46:38 -07006 */
7
8#include <linux/kernel.h>
9#include <linux/device.h>
10#include <linux/if.h>
Johannes Berg28656a12012-11-05 20:24:38 +010011#include <linux/if_ether.h>
Jiri Bence9f207f2007-05-05 11:46:38 -070012#include <linux/interrupt.h>
13#include <linux/netdevice.h>
14#include <linux/rtnetlink.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Jiri Bence9f207f2007-05-05 11:46:38 -070016#include <linux/notifier.h>
17#include <net/mac80211.h>
18#include <net/cfg80211.h>
19#include "ieee80211_i.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040020#include "rate.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070021#include "debugfs.h"
22#include "debugfs_netdev.h"
Eliad Peller37a41b42011-09-21 14:06:11 +030023#include "driver-ops.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070024
25static ssize_t ieee80211_if_read(
26 struct ieee80211_sub_if_data *sdata,
27 char __user *userbuf,
28 size_t count, loff_t *ppos,
29 ssize_t (*format)(const struct ieee80211_sub_if_data *, char *, int))
30{
Toke Høiland-Jørgensen8d51dbb2016-09-12 15:55:43 +020031 char buf[200];
Jiri Bence9f207f2007-05-05 11:46:38 -070032 ssize_t ret = -EINVAL;
33
34 read_lock(&dev_base_lock);
Arik Nemtsov923eaf32014-05-26 14:40:51 +030035 ret = (*format)(sdata, buf, sizeof(buf));
Jiri Bence9f207f2007-05-05 11:46:38 -070036 read_unlock(&dev_base_lock);
Luis Carlos Cobo73bb3e42008-03-31 15:10:22 -070037
Jouni Malinen681d1192011-02-03 18:35:19 +020038 if (ret >= 0)
Luis Carlos Cobo73bb3e42008-03-31 15:10:22 -070039 ret = simple_read_from_buffer(userbuf, count, ppos, buf, ret);
40
Jiri Bence9f207f2007-05-05 11:46:38 -070041 return ret;
42}
43
Johannes Berg0f782312009-12-01 13:37:02 +010044static ssize_t ieee80211_if_write(
45 struct ieee80211_sub_if_data *sdata,
46 const char __user *userbuf,
47 size_t count, loff_t *ppos,
48 ssize_t (*write)(struct ieee80211_sub_if_data *, const char *, int))
49{
Eliad Pellerada577c2012-03-14 16:15:02 +020050 char buf[64];
Eric Dumazet51f5f8c2010-03-10 17:13:36 +010051 ssize_t ret;
Johannes Berg0f782312009-12-01 13:37:02 +010052
Eliad Pellerada577c2012-03-14 16:15:02 +020053 if (count >= sizeof(buf))
54 return -E2BIG;
Johannes Berg0f782312009-12-01 13:37:02 +010055
56 if (copy_from_user(buf, userbuf, count))
Eliad Pellerada577c2012-03-14 16:15:02 +020057 return -EFAULT;
58 buf[count] = '\0';
Johannes Berg0f782312009-12-01 13:37:02 +010059
60 rtnl_lock();
Arik Nemtsov923eaf32014-05-26 14:40:51 +030061 ret = (*write)(sdata, buf, count);
Johannes Berg0f782312009-12-01 13:37:02 +010062 rtnl_unlock();
63
64 return ret;
65}
66
Jiri Bence9f207f2007-05-05 11:46:38 -070067#define IEEE80211_IF_FMT(name, field, format_string) \
68static ssize_t ieee80211_if_fmt_##name( \
69 const struct ieee80211_sub_if_data *sdata, char *buf, \
70 int buflen) \
71{ \
72 return scnprintf(buf, buflen, format_string, sdata->field); \
73}
74#define IEEE80211_IF_FMT_DEC(name, field) \
75 IEEE80211_IF_FMT(name, field, "%d\n")
76#define IEEE80211_IF_FMT_HEX(name, field) \
77 IEEE80211_IF_FMT(name, field, "%#x\n")
Ben Greear4914b3b2011-01-27 22:09:34 -080078#define IEEE80211_IF_FMT_LHEX(name, field) \
79 IEEE80211_IF_FMT(name, field, "%#lx\n")
Jiri Bence9f207f2007-05-05 11:46:38 -070080#define IEEE80211_IF_FMT_SIZE(name, field) \
81 IEEE80211_IF_FMT(name, field, "%zd\n")
82
Simon Wunderlich19468412012-01-28 17:25:33 +010083#define IEEE80211_IF_FMT_HEXARRAY(name, field) \
84static ssize_t ieee80211_if_fmt_##name( \
85 const struct ieee80211_sub_if_data *sdata, \
86 char *buf, int buflen) \
87{ \
88 char *p = buf; \
89 int i; \
90 for (i = 0; i < sizeof(sdata->field); i++) { \
91 p += scnprintf(p, buflen + buf - p, "%.2x ", \
92 sdata->field[i]); \
93 } \
94 p += scnprintf(p, buflen + buf - p, "\n"); \
95 return p - buf; \
96}
97
Jiri Bence9f207f2007-05-05 11:46:38 -070098#define IEEE80211_IF_FMT_ATOMIC(name, field) \
99static ssize_t ieee80211_if_fmt_##name( \
100 const struct ieee80211_sub_if_data *sdata, \
101 char *buf, int buflen) \
102{ \
103 return scnprintf(buf, buflen, "%d\n", atomic_read(&sdata->field));\
104}
105
106#define IEEE80211_IF_FMT_MAC(name, field) \
107static ssize_t ieee80211_if_fmt_##name( \
108 const struct ieee80211_sub_if_data *sdata, char *buf, \
109 int buflen) \
110{ \
Johannes Berg0c68ae262008-10-27 15:56:10 -0700111 return scnprintf(buf, buflen, "%pM\n", sdata->field); \
Jiri Bence9f207f2007-05-05 11:46:38 -0700112}
113
Ben Greear78e443e2013-03-25 11:19:34 -0700114#define IEEE80211_IF_FMT_JIFFIES_TO_MS(name, field) \
115static ssize_t ieee80211_if_fmt_##name( \
116 const struct ieee80211_sub_if_data *sdata, \
117 char *buf, int buflen) \
118{ \
119 return scnprintf(buf, buflen, "%d\n", \
120 jiffies_to_msecs(sdata->field)); \
121}
122
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100123#define _IEEE80211_IF_FILE_OPS(name, _read, _write) \
124static const struct file_operations name##_ops = { \
125 .read = (_read), \
126 .write = (_write), \
127 .open = simple_open, \
128 .llseek = generic_file_llseek, \
129}
130
131#define _IEEE80211_IF_FILE_R_FN(name) \
Jiri Bence9f207f2007-05-05 11:46:38 -0700132static ssize_t ieee80211_if_read_##name(struct file *file, \
133 char __user *userbuf, \
134 size_t count, loff_t *ppos) \
135{ \
136 return ieee80211_if_read(file->private_data, \
137 userbuf, count, ppos, \
138 ieee80211_if_fmt_##name); \
Jiri Bence9f207f2007-05-05 11:46:38 -0700139}
140
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100141#define _IEEE80211_IF_FILE_W_FN(name) \
Johannes Berg0f782312009-12-01 13:37:02 +0100142static ssize_t ieee80211_if_write_##name(struct file *file, \
143 const char __user *userbuf, \
144 size_t count, loff_t *ppos) \
145{ \
146 return ieee80211_if_write(file->private_data, userbuf, count, \
147 ppos, ieee80211_if_parse_##name); \
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100148}
Johannes Berg0f782312009-12-01 13:37:02 +0100149
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100150#define IEEE80211_IF_FILE_R(name) \
151 _IEEE80211_IF_FILE_R_FN(name) \
152 _IEEE80211_IF_FILE_OPS(name, ieee80211_if_read_##name, NULL)
153
154#define IEEE80211_IF_FILE_W(name) \
155 _IEEE80211_IF_FILE_W_FN(name) \
156 _IEEE80211_IF_FILE_OPS(name, NULL, ieee80211_if_write_##name)
157
158#define IEEE80211_IF_FILE_RW(name) \
159 _IEEE80211_IF_FILE_R_FN(name) \
160 _IEEE80211_IF_FILE_W_FN(name) \
161 _IEEE80211_IF_FILE_OPS(name, ieee80211_if_read_##name, \
162 ieee80211_if_write_##name)
Johannes Berg0f782312009-12-01 13:37:02 +0100163
Jiri Bence9f207f2007-05-05 11:46:38 -0700164#define IEEE80211_IF_FILE(name, field, format) \
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100165 IEEE80211_IF_FMT_##format(name, field) \
166 IEEE80211_IF_FILE_R(name)
Jiri Bence9f207f2007-05-05 11:46:38 -0700167
168/* common attributes */
Johannes Berg57fbcce2016-04-12 15:56:15 +0200169IEEE80211_IF_FILE(rc_rateidx_mask_2ghz, rc_rateidx_mask[NL80211_BAND_2GHZ],
Jouni Malinen37eb0b12010-01-06 13:09:08 +0200170 HEX);
Johannes Berg57fbcce2016-04-12 15:56:15 +0200171IEEE80211_IF_FILE(rc_rateidx_mask_5ghz, rc_rateidx_mask[NL80211_BAND_5GHZ],
Jouni Malinen37eb0b12010-01-06 13:09:08 +0200172 HEX);
Simon Wunderlich19468412012-01-28 17:25:33 +0100173IEEE80211_IF_FILE(rc_rateidx_mcs_mask_2ghz,
Johannes Berg57fbcce2016-04-12 15:56:15 +0200174 rc_rateidx_mcs_mask[NL80211_BAND_2GHZ], HEXARRAY);
Simon Wunderlich19468412012-01-28 17:25:33 +0100175IEEE80211_IF_FILE(rc_rateidx_mcs_mask_5ghz,
Johannes Berg57fbcce2016-04-12 15:56:15 +0200176 rc_rateidx_mcs_mask[NL80211_BAND_5GHZ], HEXARRAY);
Simon Wunderlich19468412012-01-28 17:25:33 +0100177
Lorenzo Bianconib119ad62015-08-06 23:47:33 +0200178static ssize_t ieee80211_if_fmt_rc_rateidx_vht_mcs_mask_2ghz(
179 const struct ieee80211_sub_if_data *sdata,
180 char *buf, int buflen)
181{
182 int i, len = 0;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200183 const u16 *mask = sdata->rc_rateidx_vht_mcs_mask[NL80211_BAND_2GHZ];
Lorenzo Bianconib119ad62015-08-06 23:47:33 +0200184
185 for (i = 0; i < NL80211_VHT_NSS_MAX; i++)
186 len += scnprintf(buf + len, buflen - len, "%04x ", mask[i]);
187 len += scnprintf(buf + len, buflen - len, "\n");
188
189 return len;
190}
191
192IEEE80211_IF_FILE_R(rc_rateidx_vht_mcs_mask_2ghz);
193
194static ssize_t ieee80211_if_fmt_rc_rateidx_vht_mcs_mask_5ghz(
195 const struct ieee80211_sub_if_data *sdata,
196 char *buf, int buflen)
197{
198 int i, len = 0;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200199 const u16 *mask = sdata->rc_rateidx_vht_mcs_mask[NL80211_BAND_5GHZ];
Lorenzo Bianconib119ad62015-08-06 23:47:33 +0200200
201 for (i = 0; i < NL80211_VHT_NSS_MAX; i++)
202 len += scnprintf(buf + len, buflen - len, "%04x ", mask[i]);
203 len += scnprintf(buf + len, buflen - len, "\n");
204
205 return len;
206}
207
208IEEE80211_IF_FILE_R(rc_rateidx_vht_mcs_mask_5ghz);
209
Ben Greear4914b3b2011-01-27 22:09:34 -0800210IEEE80211_IF_FILE(flags, flags, HEX);
211IEEE80211_IF_FILE(state, state, LHEX);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +0200212IEEE80211_IF_FILE(txpower, vif.bss_conf.txpower, DEC);
213IEEE80211_IF_FILE(ap_power_level, ap_power_level, DEC);
214IEEE80211_IF_FILE(user_power_level, user_power_level, DEC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700215
Johannes Berg08643312012-11-08 15:29:28 +0100216static ssize_t
217ieee80211_if_fmt_hw_queues(const struct ieee80211_sub_if_data *sdata,
218 char *buf, int buflen)
219{
220 int len;
221
222 len = scnprintf(buf, buflen, "AC queues: VO:%d VI:%d BE:%d BK:%d\n",
223 sdata->vif.hw_queue[IEEE80211_AC_VO],
224 sdata->vif.hw_queue[IEEE80211_AC_VI],
225 sdata->vif.hw_queue[IEEE80211_AC_BE],
226 sdata->vif.hw_queue[IEEE80211_AC_BK]);
227
228 if (sdata->vif.type == NL80211_IFTYPE_AP)
229 len += scnprintf(buf + len, buflen - len, "cab queue: %d\n",
230 sdata->vif.cab_queue);
231
232 return len;
233}
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100234IEEE80211_IF_FILE_R(hw_queues);
Johannes Berg08643312012-11-08 15:29:28 +0100235
Johannes Berg46900292009-02-15 12:44:28 +0100236/* STA attributes */
Johannes Berg46900292009-02-15 12:44:28 +0100237IEEE80211_IF_FILE(bssid, u.mgd.bssid, MAC);
Johannes Berg1db364c2020-04-17 12:38:04 +0200238IEEE80211_IF_FILE(aid, vif.bss_conf.aid, DEC);
Ben Greear78e443e2013-03-25 11:19:34 -0700239IEEE80211_IF_FILE(beacon_timeout, u.mgd.beacon_timeout, JIFFIES_TO_MS);
Jiri Bence9f207f2007-05-05 11:46:38 -0700240
Johannes Berg0f782312009-12-01 13:37:02 +0100241static int ieee80211_set_smps(struct ieee80211_sub_if_data *sdata,
242 enum ieee80211_smps_mode smps_mode)
243{
244 struct ieee80211_local *local = sdata->local;
245 int err;
246
Eliad Peller0d8614b2014-09-10 14:07:36 +0300247 if (!(local->hw.wiphy->features & NL80211_FEATURE_STATIC_SMPS) &&
Johannes Berg0f782312009-12-01 13:37:02 +0100248 smps_mode == IEEE80211_SMPS_STATIC)
249 return -EINVAL;
250
251 /* auto should be dynamic if in PS mode */
Eliad Peller0d8614b2014-09-10 14:07:36 +0300252 if (!(local->hw.wiphy->features & NL80211_FEATURE_DYNAMIC_SMPS) &&
Johannes Berg0f782312009-12-01 13:37:02 +0100253 (smps_mode == IEEE80211_SMPS_DYNAMIC ||
254 smps_mode == IEEE80211_SMPS_AUTOMATIC))
255 return -EINVAL;
256
Ilan Peer52b48102020-01-31 13:12:56 +0200257 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg0f782312009-12-01 13:37:02 +0100258 return -EOPNOTSUPP;
259
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200260 sdata_lock(sdata);
Ilan Peer52b48102020-01-31 13:12:56 +0200261 err = __ieee80211_request_smps_mgd(sdata, smps_mode);
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200262 sdata_unlock(sdata);
Johannes Berg0f782312009-12-01 13:37:02 +0100263
264 return err;
265}
266
267static const char *smps_modes[IEEE80211_SMPS_NUM_MODES] = {
268 [IEEE80211_SMPS_AUTOMATIC] = "auto",
269 [IEEE80211_SMPS_OFF] = "off",
270 [IEEE80211_SMPS_STATIC] = "static",
271 [IEEE80211_SMPS_DYNAMIC] = "dynamic",
272};
273
274static ssize_t ieee80211_if_fmt_smps(const struct ieee80211_sub_if_data *sdata,
275 char *buf, int buflen)
276{
Emmanuel Grumbach687da132013-10-01 16:45:43 +0300277 if (sdata->vif.type == NL80211_IFTYPE_STATION)
278 return snprintf(buf, buflen, "request: %s\nused: %s\n",
279 smps_modes[sdata->u.mgd.req_smps],
280 smps_modes[sdata->smps_mode]);
Emmanuel Grumbach687da132013-10-01 16:45:43 +0300281 return -EINVAL;
Johannes Berg0f782312009-12-01 13:37:02 +0100282}
283
284static ssize_t ieee80211_if_parse_smps(struct ieee80211_sub_if_data *sdata,
285 const char *buf, int buflen)
286{
287 enum ieee80211_smps_mode mode;
288
289 for (mode = 0; mode < IEEE80211_SMPS_NUM_MODES; mode++) {
290 if (strncmp(buf, smps_modes[mode], buflen) == 0) {
291 int err = ieee80211_set_smps(sdata, mode);
292 if (!err)
293 return buflen;
294 return err;
295 }
296 }
297
298 return -EINVAL;
299}
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100300IEEE80211_IF_FILE_RW(smps);
Jouni Malinen681d1192011-02-03 18:35:19 +0200301
Jouni Malinen681d1192011-02-03 18:35:19 +0200302static ssize_t ieee80211_if_parse_tkip_mic_test(
303 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
304{
305 struct ieee80211_local *local = sdata->local;
306 u8 addr[ETH_ALEN];
307 struct sk_buff *skb;
308 struct ieee80211_hdr *hdr;
309 __le16 fc;
310
Johannes Berg28656a12012-11-05 20:24:38 +0100311 if (!mac_pton(buf, addr))
Jouni Malinen681d1192011-02-03 18:35:19 +0200312 return -EINVAL;
313
314 if (!ieee80211_sdata_running(sdata))
315 return -ENOTCONN;
316
317 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 24 + 100);
318 if (!skb)
319 return -ENOMEM;
320 skb_reserve(skb, local->hw.extra_tx_headroom);
321
Johannes Bergb080db52017-06-16 14:29:19 +0200322 hdr = skb_put_zero(skb, 24);
Jouni Malinen681d1192011-02-03 18:35:19 +0200323 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
324
325 switch (sdata->vif.type) {
326 case NL80211_IFTYPE_AP:
327 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
328 /* DA BSSID SA */
329 memcpy(hdr->addr1, addr, ETH_ALEN);
330 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
331 memcpy(hdr->addr3, sdata->vif.addr, ETH_ALEN);
332 break;
333 case NL80211_IFTYPE_STATION:
334 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
335 /* BSSID SA DA */
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200336 sdata_lock(sdata);
Johannes Berg41c97a22012-11-05 20:27:57 +0100337 if (!sdata->u.mgd.associated) {
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200338 sdata_unlock(sdata);
Jouni Malinen681d1192011-02-03 18:35:19 +0200339 dev_kfree_skb(skb);
340 return -ENOTCONN;
341 }
Johannes Berg41c97a22012-11-05 20:27:57 +0100342 memcpy(hdr->addr1, sdata->u.mgd.associated->bssid, ETH_ALEN);
Jouni Malinen681d1192011-02-03 18:35:19 +0200343 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
344 memcpy(hdr->addr3, addr, ETH_ALEN);
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200345 sdata_unlock(sdata);
Jouni Malinen681d1192011-02-03 18:35:19 +0200346 break;
347 default:
348 dev_kfree_skb(skb);
349 return -EOPNOTSUPP;
350 }
351 hdr->frame_control = fc;
352
353 /*
354 * Add some length to the test frame to make it look bit more valid.
355 * The exact contents does not matter since the recipient is required
356 * to drop this because of the Michael MIC failure.
357 */
Johannes Bergb080db52017-06-16 14:29:19 +0200358 skb_put_zero(skb, 50);
Jouni Malinen681d1192011-02-03 18:35:19 +0200359
360 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_TKIP_MIC_FAILURE;
361
362 ieee80211_tx_skb(sdata, skb);
363
364 return buflen;
365}
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100366IEEE80211_IF_FILE_W(tkip_mic_test);
Jouni Malinen681d1192011-02-03 18:35:19 +0200367
Eliad Peller802ee9e2014-02-11 12:36:18 +0200368static ssize_t ieee80211_if_parse_beacon_loss(
369 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
370{
371 if (!ieee80211_sdata_running(sdata) || !sdata->vif.bss_conf.assoc)
372 return -ENOTCONN;
373
374 ieee80211_beacon_loss(&sdata->vif);
375
376 return buflen;
377}
378IEEE80211_IF_FILE_W(beacon_loss);
379
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200380static ssize_t ieee80211_if_fmt_uapsd_queues(
381 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
382{
383 const struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
384
385 return snprintf(buf, buflen, "0x%x\n", ifmgd->uapsd_queues);
386}
387
388static ssize_t ieee80211_if_parse_uapsd_queues(
389 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
390{
391 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
392 u8 val;
393 int ret;
394
395 ret = kstrtou8(buf, 0, &val);
396 if (ret)
397 return ret;
398
399 if (val & ~IEEE80211_WMM_IE_STA_QOSINFO_AC_MASK)
400 return -ERANGE;
401
402 ifmgd->uapsd_queues = val;
403
404 return buflen;
405}
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100406IEEE80211_IF_FILE_RW(uapsd_queues);
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200407
408static ssize_t ieee80211_if_fmt_uapsd_max_sp_len(
409 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
410{
411 const struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
412
413 return snprintf(buf, buflen, "0x%x\n", ifmgd->uapsd_max_sp_len);
414}
415
416static ssize_t ieee80211_if_parse_uapsd_max_sp_len(
417 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
418{
419 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
420 unsigned long val;
421 int ret;
422
423 ret = kstrtoul(buf, 0, &val);
424 if (ret)
425 return -EINVAL;
426
427 if (val & ~IEEE80211_WMM_IE_STA_QOSINFO_SP_MASK)
428 return -ERANGE;
429
430 ifmgd->uapsd_max_sp_len = val;
431
432 return buflen;
433}
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100434IEEE80211_IF_FILE_RW(uapsd_max_sp_len);
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200435
Arik Nemtsov82c0cc90d2015-08-15 22:39:46 +0300436static ssize_t ieee80211_if_fmt_tdls_wider_bw(
437 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
438{
439 const struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
440 bool tdls_wider_bw;
441
442 tdls_wider_bw = ieee80211_hw_check(&sdata->local->hw, TDLS_WIDER_BW) &&
443 !ifmgd->tdls_wider_bw_prohibited;
444
445 return snprintf(buf, buflen, "%d\n", tdls_wider_bw);
446}
447
448static ssize_t ieee80211_if_parse_tdls_wider_bw(
449 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
450{
451 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
452 u8 val;
453 int ret;
454
455 ret = kstrtou8(buf, 0, &val);
456 if (ret)
457 return ret;
458
459 ifmgd->tdls_wider_bw_prohibited = !val;
460 return buflen;
461}
462IEEE80211_IF_FILE_RW(tdls_wider_bw);
463
Jiri Bence9f207f2007-05-05 11:46:38 -0700464/* AP attributes */
Felix Fietkau030ef8f2012-04-23 19:49:02 +0200465IEEE80211_IF_FILE(num_mcast_sta, u.ap.num_mcast_sta, ATOMIC);
Marco Porschd012a602012-10-10 12:39:50 -0700466IEEE80211_IF_FILE(num_sta_ps, u.ap.ps.num_sta_ps, ATOMIC);
467IEEE80211_IF_FILE(dtim_count, u.ap.ps.dtim_count, DEC);
Michael Braun72f15d52016-10-10 19:12:21 +0200468IEEE80211_IF_FILE(num_mcast_sta_vlan, u.vlan.num_mcast_sta, ATOMIC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700469
470static ssize_t ieee80211_if_fmt_num_buffered_multicast(
471 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
472{
473 return scnprintf(buf, buflen, "%u\n",
Marco Porschd012a602012-10-10 12:39:50 -0700474 skb_queue_len(&sdata->u.ap.ps.bc_buf));
Jiri Bence9f207f2007-05-05 11:46:38 -0700475}
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100476IEEE80211_IF_FILE_R(num_buffered_multicast);
Jiri Bence9f207f2007-05-05 11:46:38 -0700477
Toke Høiland-Jørgensen8d51dbb2016-09-12 15:55:43 +0200478static ssize_t ieee80211_if_fmt_aqm(
479 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
480{
481 struct ieee80211_local *local = sdata->local;
Miaoqing Pan8ed31a22019-09-27 10:03:16 +0800482 struct txq_info *txqi;
Toke Høiland-Jørgensen8d51dbb2016-09-12 15:55:43 +0200483 int len;
484
Miaoqing Pan8ed31a22019-09-27 10:03:16 +0800485 if (!sdata->vif.txq)
486 return 0;
487
488 txqi = to_txq_info(sdata->vif.txq);
489
Toke Høiland-Jørgensen8d51dbb2016-09-12 15:55:43 +0200490 spin_lock_bh(&local->fq.lock);
491 rcu_read_lock();
492
493 len = scnprintf(buf,
494 buflen,
495 "ac backlog-bytes backlog-packets new-flows drops marks overlimit collisions tx-bytes tx-packets\n"
496 "%u %u %u %u %u %u %u %u %u %u\n",
497 txqi->txq.ac,
498 txqi->tin.backlog_bytes,
499 txqi->tin.backlog_packets,
500 txqi->tin.flows,
501 txqi->cstats.drop_count,
502 txqi->cstats.ecn_mark,
503 txqi->tin.overlimit,
504 txqi->tin.collisions,
505 txqi->tin.tx_bytes,
506 txqi->tin.tx_packets);
507
508 rcu_read_unlock();
509 spin_unlock_bh(&local->fq.lock);
510
511 return len;
512}
513IEEE80211_IF_FILE_R(aqm);
514
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +0200515static ssize_t ieee80211_if_fmt_airtime(
516 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
517{
518 struct ieee80211_local *local = sdata->local;
519 struct ieee80211_txq *txq = sdata->vif.txq;
520 struct airtime_info *air_info;
521 int len;
522
523 if (!txq)
524 return 0;
525
526 spin_lock_bh(&local->airtime[txq->ac].lock);
527 air_info = to_airtime_info(txq);
528 len = scnprintf(buf,
529 buflen,
530 "RX: %llu us\nTX: %llu us\nWeight: %u\n"
531 "Virt-T: %lld us\n",
532 air_info->rx_airtime,
533 air_info->tx_airtime,
534 air_info->weight,
535 air_info->v_t);
536 spin_unlock_bh(&local->airtime[txq->ac].lock);
537
538 return len;
539}
540
541IEEE80211_IF_FILE_R(airtime);
542
Michael Braunebceec82016-11-22 11:52:18 +0100543IEEE80211_IF_FILE(multicast_to_unicast, u.ap.multicast_to_unicast, HEX);
544
Eliad Peller37a41b42011-09-21 14:06:11 +0300545/* IBSS attributes */
546static ssize_t ieee80211_if_fmt_tsf(
547 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
548{
549 struct ieee80211_local *local = sdata->local;
550 u64 tsf;
551
552 tsf = drv_get_tsf(local, (struct ieee80211_sub_if_data *)sdata);
553
554 return scnprintf(buf, buflen, "0x%016llx\n", (unsigned long long) tsf);
555}
556
557static ssize_t ieee80211_if_parse_tsf(
558 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
559{
560 struct ieee80211_local *local = sdata->local;
561 unsigned long long tsf;
562 int ret;
Javier Cardona9bdd3a62012-03-31 11:31:31 -0700563 int tsf_is_delta = 0;
Eliad Peller37a41b42011-09-21 14:06:11 +0300564
565 if (strncmp(buf, "reset", 5) == 0) {
566 if (local->ops->reset_tsf) {
567 drv_reset_tsf(local, sdata);
568 wiphy_info(local->hw.wiphy, "debugfs reset TSF\n");
569 }
570 } else {
Javier Cardona9bdd3a62012-03-31 11:31:31 -0700571 if (buflen > 10 && buf[1] == '=') {
572 if (buf[0] == '+')
573 tsf_is_delta = 1;
574 else if (buf[0] == '-')
575 tsf_is_delta = -1;
576 else
577 return -EINVAL;
578 buf += 2;
579 }
Eliad Peller37a41b42011-09-21 14:06:11 +0300580 ret = kstrtoull(buf, 10, &tsf);
581 if (ret < 0)
Johannes Berg6fc1da92012-11-05 20:30:39 +0100582 return ret;
Pedersen, Thomas354d3812016-09-28 16:56:28 -0700583 if (tsf_is_delta && local->ops->offset_tsf) {
584 drv_offset_tsf(local, sdata, tsf_is_delta * tsf);
585 wiphy_info(local->hw.wiphy,
586 "debugfs offset TSF by %018lld\n",
587 tsf_is_delta * tsf);
588 } else if (local->ops->set_tsf) {
589 if (tsf_is_delta)
590 tsf = drv_get_tsf(local, sdata) +
591 tsf_is_delta * tsf;
Eliad Peller37a41b42011-09-21 14:06:11 +0300592 drv_set_tsf(local, sdata, tsf);
593 wiphy_info(local->hw.wiphy,
594 "debugfs set TSF to %#018llx\n", tsf);
595 }
596 }
597
Thomas Pedersen057d5f42013-12-19 10:25:15 -0800598 ieee80211_recalc_dtim(local, sdata);
Eliad Peller37a41b42011-09-21 14:06:11 +0300599 return buflen;
600}
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100601IEEE80211_IF_FILE_RW(tsf);
Eliad Peller37a41b42011-09-21 14:06:11 +0300602
603
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100604#ifdef CONFIG_MAC80211_MESH
Ashok Nagarajand4a5a482013-05-13 17:08:04 -0700605IEEE80211_IF_FILE(estab_plinks, u.mesh.estab_plinks, ATOMIC);
606
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100607/* Mesh stats attributes */
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700608IEEE80211_IF_FILE(fwded_mcast, u.mesh.mshstats.fwded_mcast, DEC);
609IEEE80211_IF_FILE(fwded_unicast, u.mesh.mshstats.fwded_unicast, DEC);
Johannes Berg472dbc42008-09-11 00:01:49 +0200610IEEE80211_IF_FILE(fwded_frames, u.mesh.mshstats.fwded_frames, DEC);
611IEEE80211_IF_FILE(dropped_frames_ttl, u.mesh.mshstats.dropped_frames_ttl, DEC);
Javier Cardonacfee66b2011-09-06 13:05:21 -0700612IEEE80211_IF_FILE(dropped_frames_congestion,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800613 u.mesh.mshstats.dropped_frames_congestion, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100614IEEE80211_IF_FILE(dropped_frames_no_route,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800615 u.mesh.mshstats.dropped_frames_no_route, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100616
617/* Mesh parameters */
Johannes Berg36ff3822008-10-07 12:04:31 +0200618IEEE80211_IF_FILE(dot11MeshMaxRetries,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800619 u.mesh.mshcfg.dot11MeshMaxRetries, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200620IEEE80211_IF_FILE(dot11MeshRetryTimeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800621 u.mesh.mshcfg.dot11MeshRetryTimeout, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200622IEEE80211_IF_FILE(dot11MeshConfirmTimeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800623 u.mesh.mshcfg.dot11MeshConfirmTimeout, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200624IEEE80211_IF_FILE(dot11MeshHoldingTimeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800625 u.mesh.mshcfg.dot11MeshHoldingTimeout, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200626IEEE80211_IF_FILE(dot11MeshTTL, u.mesh.mshcfg.dot11MeshTTL, DEC);
Javier Cardona45904f22010-12-03 09:20:40 +0100627IEEE80211_IF_FILE(element_ttl, u.mesh.mshcfg.element_ttl, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200628IEEE80211_IF_FILE(auto_open_plinks, u.mesh.mshcfg.auto_open_plinks, DEC);
629IEEE80211_IF_FILE(dot11MeshMaxPeerLinks,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800630 u.mesh.mshcfg.dot11MeshMaxPeerLinks, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200631IEEE80211_IF_FILE(dot11MeshHWMPactivePathTimeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800632 u.mesh.mshcfg.dot11MeshHWMPactivePathTimeout, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200633IEEE80211_IF_FILE(dot11MeshHWMPpreqMinInterval,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800634 u.mesh.mshcfg.dot11MeshHWMPpreqMinInterval, DEC);
Thomas Pedersendca7e942011-11-24 17:15:24 -0800635IEEE80211_IF_FILE(dot11MeshHWMPperrMinInterval,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800636 u.mesh.mshcfg.dot11MeshHWMPperrMinInterval, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200637IEEE80211_IF_FILE(dot11MeshHWMPnetDiameterTraversalTime,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800638 u.mesh.mshcfg.dot11MeshHWMPnetDiameterTraversalTime, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200639IEEE80211_IF_FILE(dot11MeshHWMPmaxPREQretries,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800640 u.mesh.mshcfg.dot11MeshHWMPmaxPREQretries, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200641IEEE80211_IF_FILE(path_refresh_time,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800642 u.mesh.mshcfg.path_refresh_time, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200643IEEE80211_IF_FILE(min_discovery_timeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800644 u.mesh.mshcfg.min_discovery_timeout, DEC);
Rui Paulo63c57232009-11-09 23:46:57 +0000645IEEE80211_IF_FILE(dot11MeshHWMPRootMode,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800646 u.mesh.mshcfg.dot11MeshHWMPRootMode, DEC);
Javier Cardona16dd7262011-08-09 16:45:11 -0700647IEEE80211_IF_FILE(dot11MeshGateAnnouncementProtocol,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800648 u.mesh.mshcfg.dot11MeshGateAnnouncementProtocol, DEC);
Javier Cardona0507e152011-08-09 16:45:10 -0700649IEEE80211_IF_FILE(dot11MeshHWMPRannInterval,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800650 u.mesh.mshcfg.dot11MeshHWMPRannInterval, DEC);
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +0800651IEEE80211_IF_FILE(dot11MeshForwarding, u.mesh.mshcfg.dot11MeshForwarding, DEC);
Ashok Nagarajan55335132012-02-28 17:04:08 -0800652IEEE80211_IF_FILE(rssi_threshold, u.mesh.mshcfg.rssi_threshold, DEC);
Ashok Nagarajan4416f5d2012-05-07 21:00:32 -0700653IEEE80211_IF_FILE(ht_opmode, u.mesh.mshcfg.ht_opmode, DEC);
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +0800654IEEE80211_IF_FILE(dot11MeshHWMPactivePathToRootTimeout,
655 u.mesh.mshcfg.dot11MeshHWMPactivePathToRootTimeout, DEC);
656IEEE80211_IF_FILE(dot11MeshHWMProotInterval,
657 u.mesh.mshcfg.dot11MeshHWMProotInterval, DEC);
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +0800658IEEE80211_IF_FILE(dot11MeshHWMPconfirmationInterval,
659 u.mesh.mshcfg.dot11MeshHWMPconfirmationInterval, DEC);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100660IEEE80211_IF_FILE(power_mode, u.mesh.mshcfg.power_mode, DEC);
661IEEE80211_IF_FILE(dot11MeshAwakeWindowDuration,
662 u.mesh.mshcfg.dot11MeshAwakeWindowDuration, DEC);
Bob Copeland01d66fb2018-10-25 17:36:34 -0400663IEEE80211_IF_FILE(dot11MeshConnectedToMeshGate,
664 u.mesh.mshcfg.dot11MeshConnectedToMeshGate, DEC);
Linus Lüssinge3718a62020-06-17 09:30:33 +0200665IEEE80211_IF_FILE(dot11MeshNolearn, u.mesh.mshcfg.dot11MeshNolearn, DEC);
Markus Theil184eebe2020-06-11 16:02:37 +0200666IEEE80211_IF_FILE(dot11MeshConnectedToAuthServer,
667 u.mesh.mshcfg.dot11MeshConnectedToAuthServer, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100668#endif
669
Johannes Berg0f782312009-12-01 13:37:02 +0100670#define DEBUGFS_ADD_MODE(name, mode) \
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100671 debugfs_create_file(#name, mode, sdata->vif.debugfs_dir, \
Tom Rix84674ef2020-11-27 11:38:42 -0800672 sdata, &name##_ops)
Johannes Berg0f782312009-12-01 13:37:02 +0100673
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100674#define DEBUGFS_ADD(name) DEBUGFS_ADD_MODE(name, 0400)
675
676static void add_common_files(struct ieee80211_sub_if_data *sdata)
Jiri Bence9f207f2007-05-05 11:46:38 -0700677{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100678 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
679 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
Simon Wunderlich19468412012-01-28 17:25:33 +0100680 DEBUGFS_ADD(rc_rateidx_mcs_mask_2ghz);
681 DEBUGFS_ADD(rc_rateidx_mcs_mask_5ghz);
Lorenzo Bianconib119ad62015-08-06 23:47:33 +0200682 DEBUGFS_ADD(rc_rateidx_vht_mcs_mask_2ghz);
683 DEBUGFS_ADD(rc_rateidx_vht_mcs_mask_5ghz);
Johannes Berg08643312012-11-08 15:29:28 +0100684 DEBUGFS_ADD(hw_queues);
Toke Høiland-Jørgensen8d51dbb2016-09-12 15:55:43 +0200685
Miaoqing Pan8ed31a22019-09-27 10:03:16 +0800686 if (sdata->local->ops->wake_tx_queue &&
687 sdata->vif.type != NL80211_IFTYPE_P2P_DEVICE &&
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +0200688 sdata->vif.type != NL80211_IFTYPE_NAN) {
Toke Høiland-Jørgensen8d51dbb2016-09-12 15:55:43 +0200689 DEBUGFS_ADD(aqm);
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +0200690 DEBUGFS_ADD(airtime);
691 }
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100692}
Johannes Berg3e122be2008-07-09 14:40:34 +0200693
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100694static void add_sta_files(struct ieee80211_sub_if_data *sdata)
695{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100696 DEBUGFS_ADD(bssid);
697 DEBUGFS_ADD(aid);
Ben Greear78e443e2013-03-25 11:19:34 -0700698 DEBUGFS_ADD(beacon_timeout);
Johannes Berg0f782312009-12-01 13:37:02 +0100699 DEBUGFS_ADD_MODE(smps, 0600);
Jouni Malinen681d1192011-02-03 18:35:19 +0200700 DEBUGFS_ADD_MODE(tkip_mic_test, 0200);
Eliad Peller802ee9e2014-02-11 12:36:18 +0200701 DEBUGFS_ADD_MODE(beacon_loss, 0200);
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200702 DEBUGFS_ADD_MODE(uapsd_queues, 0600);
703 DEBUGFS_ADD_MODE(uapsd_max_sp_len, 0600);
Arik Nemtsov82c0cc90d2015-08-15 22:39:46 +0300704 DEBUGFS_ADD_MODE(tdls_wider_bw, 0600);
Jiri Bence9f207f2007-05-05 11:46:38 -0700705}
706
707static void add_ap_files(struct ieee80211_sub_if_data *sdata)
708{
Felix Fietkau030ef8f2012-04-23 19:49:02 +0200709 DEBUGFS_ADD(num_mcast_sta);
Emmanuel Grumbach687da132013-10-01 16:45:43 +0300710 DEBUGFS_ADD_MODE(smps, 0600);
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100711 DEBUGFS_ADD(num_sta_ps);
712 DEBUGFS_ADD(dtim_count);
713 DEBUGFS_ADD(num_buffered_multicast);
Jouni Malinen681d1192011-02-03 18:35:19 +0200714 DEBUGFS_ADD_MODE(tkip_mic_test, 0200);
Michael Braunebceec82016-11-22 11:52:18 +0100715 DEBUGFS_ADD_MODE(multicast_to_unicast, 0600);
Jiri Bence9f207f2007-05-05 11:46:38 -0700716}
717
Michael Braun72f15d52016-10-10 19:12:21 +0200718static void add_vlan_files(struct ieee80211_sub_if_data *sdata)
719{
720 /* add num_mcast_sta_vlan using name num_mcast_sta */
721 debugfs_create_file("num_mcast_sta", 0400, sdata->vif.debugfs_dir,
722 sdata, &num_mcast_sta_vlan_ops);
723}
724
Eliad Peller37a41b42011-09-21 14:06:11 +0300725static void add_ibss_files(struct ieee80211_sub_if_data *sdata)
726{
727 DEBUGFS_ADD_MODE(tsf, 0600);
728}
729
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100730#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100731
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800732static void add_mesh_files(struct ieee80211_sub_if_data *sdata)
733{
734 DEBUGFS_ADD_MODE(tsf, 0600);
Ashok Nagarajand4a5a482013-05-13 17:08:04 -0700735 DEBUGFS_ADD_MODE(estab_plinks, 0400);
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800736}
737
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100738static void add_mesh_stats(struct ieee80211_sub_if_data *sdata)
739{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100740 struct dentry *dir = debugfs_create_dir("mesh_stats",
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100741 sdata->vif.debugfs_dir);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100742#define MESHSTATS_ADD(name)\
Tom Rix84674ef2020-11-27 11:38:42 -0800743 debugfs_create_file(#name, 0400, dir, sdata, &name##_ops)
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100744
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700745 MESHSTATS_ADD(fwded_mcast);
746 MESHSTATS_ADD(fwded_unicast);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100747 MESHSTATS_ADD(fwded_frames);
748 MESHSTATS_ADD(dropped_frames_ttl);
749 MESHSTATS_ADD(dropped_frames_no_route);
Javier Cardonacfee66b2011-09-06 13:05:21 -0700750 MESHSTATS_ADD(dropped_frames_congestion);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100751#undef MESHSTATS_ADD
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100752}
753
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100754static void add_mesh_config(struct ieee80211_sub_if_data *sdata)
755{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100756 struct dentry *dir = debugfs_create_dir("mesh_config",
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100757 sdata->vif.debugfs_dir);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100758
759#define MESHPARAMS_ADD(name) \
Tom Rix84674ef2020-11-27 11:38:42 -0800760 debugfs_create_file(#name, 0600, dir, sdata, &name##_ops)
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100761
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100762 MESHPARAMS_ADD(dot11MeshMaxRetries);
763 MESHPARAMS_ADD(dot11MeshRetryTimeout);
764 MESHPARAMS_ADD(dot11MeshConfirmTimeout);
765 MESHPARAMS_ADD(dot11MeshHoldingTimeout);
766 MESHPARAMS_ADD(dot11MeshTTL);
Javier Cardona45904f22010-12-03 09:20:40 +0100767 MESHPARAMS_ADD(element_ttl);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100768 MESHPARAMS_ADD(auto_open_plinks);
769 MESHPARAMS_ADD(dot11MeshMaxPeerLinks);
770 MESHPARAMS_ADD(dot11MeshHWMPactivePathTimeout);
771 MESHPARAMS_ADD(dot11MeshHWMPpreqMinInterval);
Thomas Pedersendca7e942011-11-24 17:15:24 -0800772 MESHPARAMS_ADD(dot11MeshHWMPperrMinInterval);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100773 MESHPARAMS_ADD(dot11MeshHWMPnetDiameterTraversalTime);
774 MESHPARAMS_ADD(dot11MeshHWMPmaxPREQretries);
775 MESHPARAMS_ADD(path_refresh_time);
776 MESHPARAMS_ADD(min_discovery_timeout);
Javier Cardona699403d2011-08-09 16:45:09 -0700777 MESHPARAMS_ADD(dot11MeshHWMPRootMode);
Javier Cardona0507e152011-08-09 16:45:10 -0700778 MESHPARAMS_ADD(dot11MeshHWMPRannInterval);
Chun-Yeow Yeoh8c06e8c2012-05-31 18:17:30 +0800779 MESHPARAMS_ADD(dot11MeshForwarding);
Javier Cardona16dd7262011-08-09 16:45:11 -0700780 MESHPARAMS_ADD(dot11MeshGateAnnouncementProtocol);
Ashok Nagarajan55335132012-02-28 17:04:08 -0800781 MESHPARAMS_ADD(rssi_threshold);
Ashok Nagarajan4416f5d2012-05-07 21:00:32 -0700782 MESHPARAMS_ADD(ht_opmode);
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +0800783 MESHPARAMS_ADD(dot11MeshHWMPactivePathToRootTimeout);
784 MESHPARAMS_ADD(dot11MeshHWMProotInterval);
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +0800785 MESHPARAMS_ADD(dot11MeshHWMPconfirmationInterval);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100786 MESHPARAMS_ADD(power_mode);
787 MESHPARAMS_ADD(dot11MeshAwakeWindowDuration);
Bob Copeland01d66fb2018-10-25 17:36:34 -0400788 MESHPARAMS_ADD(dot11MeshConnectedToMeshGate);
Linus Lüssinge3718a62020-06-17 09:30:33 +0200789 MESHPARAMS_ADD(dot11MeshNolearn);
Markus Theil184eebe2020-06-11 16:02:37 +0200790 MESHPARAMS_ADD(dot11MeshConnectedToAuthServer);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100791#undef MESHPARAMS_ADD
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100792}
793#endif
794
Jiri Bence9f207f2007-05-05 11:46:38 -0700795static void add_files(struct ieee80211_sub_if_data *sdata)
796{
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100797 if (!sdata->vif.debugfs_dir)
Jiri Bence9f207f2007-05-05 11:46:38 -0700798 return;
799
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100800 DEBUGFS_ADD(flags);
801 DEBUGFS_ADD(state);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +0200802 DEBUGFS_ADD(txpower);
803 DEBUGFS_ADD(user_power_level);
804 DEBUGFS_ADD(ap_power_level);
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100805
806 if (sdata->vif.type != NL80211_IFTYPE_MONITOR)
807 add_common_files(sdata);
808
Johannes Berg51fb61e2007-12-19 01:31:27 +0100809 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200810 case NL80211_IFTYPE_MESH_POINT:
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100811#ifdef CONFIG_MAC80211_MESH
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800812 add_mesh_files(sdata);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100813 add_mesh_stats(sdata);
814 add_mesh_config(sdata);
815#endif
Johannes Berg472dbc42008-09-11 00:01:49 +0200816 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200817 case NL80211_IFTYPE_STATION:
Jiri Bence9f207f2007-05-05 11:46:38 -0700818 add_sta_files(sdata);
819 break;
Johannes Berg46900292009-02-15 12:44:28 +0100820 case NL80211_IFTYPE_ADHOC:
Eliad Peller37a41b42011-09-21 14:06:11 +0300821 add_ibss_files(sdata);
Johannes Berg46900292009-02-15 12:44:28 +0100822 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200823 case NL80211_IFTYPE_AP:
Jiri Bence9f207f2007-05-05 11:46:38 -0700824 add_ap_files(sdata);
825 break;
Michael Braun72f15d52016-10-10 19:12:21 +0200826 case NL80211_IFTYPE_AP_VLAN:
827 add_vlan_files(sdata);
828 break;
Jiri Bence9f207f2007-05-05 11:46:38 -0700829 default:
830 break;
831 }
832}
833
Jiri Bence9f207f2007-05-05 11:46:38 -0700834void ieee80211_debugfs_add_netdev(struct ieee80211_sub_if_data *sdata)
835{
836 char buf[10+IFNAMSIZ];
837
Johannes Berg47846c92009-11-25 17:46:19 +0100838 sprintf(buf, "netdev:%s", sdata->name);
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100839 sdata->vif.debugfs_dir = debugfs_create_dir(buf,
Jiri Bence9f207f2007-05-05 11:46:38 -0700840 sdata->local->hw.wiphy->debugfsdir);
Greg Kroah-Hartman5a7bb7c2019-06-14 08:59:34 +0200841 sdata->debugfs.subdir_stations = debugfs_create_dir("stations",
842 sdata->vif.debugfs_dir);
Johannes Berg75636522008-07-09 14:40:35 +0200843 add_files(sdata);
Jiri Bence9f207f2007-05-05 11:46:38 -0700844}
845
846void ieee80211_debugfs_remove_netdev(struct ieee80211_sub_if_data *sdata)
847{
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100848 if (!sdata->vif.debugfs_dir)
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100849 return;
850
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100851 debugfs_remove_recursive(sdata->vif.debugfs_dir);
852 sdata->vif.debugfs_dir = NULL;
Tom Hughes44790042015-06-29 19:41:49 +0100853 sdata->debugfs.subdir_stations = NULL;
Jiri Bence9f207f2007-05-05 11:46:38 -0700854}
855
Johannes Berg47846c92009-11-25 17:46:19 +0100856void ieee80211_debugfs_rename_netdev(struct ieee80211_sub_if_data *sdata)
Jiri Bence9f207f2007-05-05 11:46:38 -0700857{
Johannes Berg7c8081e2007-06-21 18:30:19 +0200858 struct dentry *dir;
Johannes Berg47846c92009-11-25 17:46:19 +0100859 char buf[10 + IFNAMSIZ];
Johannes Berg3e122be2008-07-09 14:40:34 +0200860
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100861 dir = sdata->vif.debugfs_dir;
Johannes Bergc74e90a2008-10-08 10:18:36 +0200862
Johannes Berg51787912019-04-15 11:39:33 +0200863 if (IS_ERR_OR_NULL(dir))
Johannes Berg47846c92009-11-25 17:46:19 +0100864 return;
Johannes Bergc74e90a2008-10-08 10:18:36 +0200865
Johannes Berg47846c92009-11-25 17:46:19 +0100866 sprintf(buf, "netdev:%s", sdata->name);
Greg Kroah-Hartman5a7bb7c2019-06-14 08:59:34 +0200867 debugfs_rename(dir->d_parent, dir, dir->d_parent, buf);
Jiri Bence9f207f2007-05-05 11:46:38 -0700868}