blob: 2d5b4f65c5194b724815ba3ec23be62618364b72 [file] [log] [blame]
Jiri Bence9f207f2007-05-05 11:46:38 -07001/*
2 * Copyright (c) 2006 Jiri Benc <jbenc@suse.cz>
3 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10#include <linux/kernel.h>
11#include <linux/device.h>
12#include <linux/if.h>
Johannes Berg28656a12012-11-05 20:24:38 +010013#include <linux/if_ether.h>
Jiri Bence9f207f2007-05-05 11:46:38 -070014#include <linux/interrupt.h>
15#include <linux/netdevice.h>
16#include <linux/rtnetlink.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Jiri Bence9f207f2007-05-05 11:46:38 -070018#include <linux/notifier.h>
19#include <net/mac80211.h>
20#include <net/cfg80211.h>
21#include "ieee80211_i.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040022#include "rate.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070023#include "debugfs.h"
24#include "debugfs_netdev.h"
Eliad Peller37a41b42011-09-21 14:06:11 +030025#include "driver-ops.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070026
27static ssize_t ieee80211_if_read(
28 struct ieee80211_sub_if_data *sdata,
29 char __user *userbuf,
30 size_t count, loff_t *ppos,
31 ssize_t (*format)(const struct ieee80211_sub_if_data *, char *, int))
32{
33 char buf[70];
34 ssize_t ret = -EINVAL;
35
36 read_lock(&dev_base_lock);
Arik Nemtsovec19d1e2014-05-26 14:40:51 +030037 ret = (*format)(sdata, buf, sizeof(buf));
Jiri Bence9f207f2007-05-05 11:46:38 -070038 read_unlock(&dev_base_lock);
Luis Carlos Cobo73bb3e42008-03-31 15:10:22 -070039
Jouni Malinen681d1192011-02-03 18:35:19 +020040 if (ret >= 0)
Luis Carlos Cobo73bb3e42008-03-31 15:10:22 -070041 ret = simple_read_from_buffer(userbuf, count, ppos, buf, ret);
42
Jiri Bence9f207f2007-05-05 11:46:38 -070043 return ret;
44}
45
Johannes Berg0f782312009-12-01 13:37:02 +010046static ssize_t ieee80211_if_write(
47 struct ieee80211_sub_if_data *sdata,
48 const char __user *userbuf,
49 size_t count, loff_t *ppos,
50 ssize_t (*write)(struct ieee80211_sub_if_data *, const char *, int))
51{
Eliad Pellerada577c2012-03-14 16:15:02 +020052 char buf[64];
Eric Dumazet51f5f8c2010-03-10 17:13:36 +010053 ssize_t ret;
Johannes Berg0f782312009-12-01 13:37:02 +010054
Eliad Pellerada577c2012-03-14 16:15:02 +020055 if (count >= sizeof(buf))
56 return -E2BIG;
Johannes Berg0f782312009-12-01 13:37:02 +010057
58 if (copy_from_user(buf, userbuf, count))
Eliad Pellerada577c2012-03-14 16:15:02 +020059 return -EFAULT;
60 buf[count] = '\0';
Johannes Berg0f782312009-12-01 13:37:02 +010061
Eric Dumazet51f5f8c2010-03-10 17:13:36 +010062 ret = -ENODEV;
Johannes Berg0f782312009-12-01 13:37:02 +010063 rtnl_lock();
Arik Nemtsovec19d1e2014-05-26 14:40:51 +030064 ret = (*write)(sdata, buf, count);
Johannes Berg0f782312009-12-01 13:37:02 +010065 rtnl_unlock();
66
67 return ret;
68}
69
Jiri Bence9f207f2007-05-05 11:46:38 -070070#define IEEE80211_IF_FMT(name, field, format_string) \
71static ssize_t ieee80211_if_fmt_##name( \
72 const struct ieee80211_sub_if_data *sdata, char *buf, \
73 int buflen) \
74{ \
75 return scnprintf(buf, buflen, format_string, sdata->field); \
76}
77#define IEEE80211_IF_FMT_DEC(name, field) \
78 IEEE80211_IF_FMT(name, field, "%d\n")
79#define IEEE80211_IF_FMT_HEX(name, field) \
80 IEEE80211_IF_FMT(name, field, "%#x\n")
Ben Greear4914b3b2011-01-27 22:09:34 -080081#define IEEE80211_IF_FMT_LHEX(name, field) \
82 IEEE80211_IF_FMT(name, field, "%#lx\n")
Jiri Bence9f207f2007-05-05 11:46:38 -070083#define IEEE80211_IF_FMT_SIZE(name, field) \
84 IEEE80211_IF_FMT(name, field, "%zd\n")
85
Simon Wunderlich19468412012-01-28 17:25:33 +010086#define IEEE80211_IF_FMT_HEXARRAY(name, field) \
87static ssize_t ieee80211_if_fmt_##name( \
88 const struct ieee80211_sub_if_data *sdata, \
89 char *buf, int buflen) \
90{ \
91 char *p = buf; \
92 int i; \
93 for (i = 0; i < sizeof(sdata->field); i++) { \
94 p += scnprintf(p, buflen + buf - p, "%.2x ", \
95 sdata->field[i]); \
96 } \
97 p += scnprintf(p, buflen + buf - p, "\n"); \
98 return p - buf; \
99}
100
Jiri Bence9f207f2007-05-05 11:46:38 -0700101#define IEEE80211_IF_FMT_ATOMIC(name, field) \
102static ssize_t ieee80211_if_fmt_##name( \
103 const struct ieee80211_sub_if_data *sdata, \
104 char *buf, int buflen) \
105{ \
106 return scnprintf(buf, buflen, "%d\n", atomic_read(&sdata->field));\
107}
108
109#define IEEE80211_IF_FMT_MAC(name, field) \
110static ssize_t ieee80211_if_fmt_##name( \
111 const struct ieee80211_sub_if_data *sdata, char *buf, \
112 int buflen) \
113{ \
Johannes Berg0c68ae262008-10-27 15:56:10 -0700114 return scnprintf(buf, buflen, "%pM\n", sdata->field); \
Jiri Bence9f207f2007-05-05 11:46:38 -0700115}
116
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700117#define IEEE80211_IF_FMT_DEC_DIV_16(name, field) \
118static ssize_t ieee80211_if_fmt_##name( \
119 const struct ieee80211_sub_if_data *sdata, \
120 char *buf, int buflen) \
121{ \
122 return scnprintf(buf, buflen, "%d\n", sdata->field / 16); \
123}
124
Ben Greear78e443e2013-03-25 11:19:34 -0700125#define IEEE80211_IF_FMT_JIFFIES_TO_MS(name, field) \
126static ssize_t ieee80211_if_fmt_##name( \
127 const struct ieee80211_sub_if_data *sdata, \
128 char *buf, int buflen) \
129{ \
130 return scnprintf(buf, buflen, "%d\n", \
131 jiffies_to_msecs(sdata->field)); \
132}
133
Johannes Berg0f782312009-12-01 13:37:02 +0100134#define __IEEE80211_IF_FILE(name, _write) \
Jiri Bence9f207f2007-05-05 11:46:38 -0700135static ssize_t ieee80211_if_read_##name(struct file *file, \
136 char __user *userbuf, \
137 size_t count, loff_t *ppos) \
138{ \
139 return ieee80211_if_read(file->private_data, \
140 userbuf, count, ppos, \
141 ieee80211_if_fmt_##name); \
142} \
143static const struct file_operations name##_ops = { \
144 .read = ieee80211_if_read_##name, \
Johannes Berg0f782312009-12-01 13:37:02 +0100145 .write = (_write), \
Stephen Boyd234e3402012-04-05 14:25:11 -0700146 .open = simple_open, \
Arnd Bergmann2b18ab362010-07-06 19:05:31 +0200147 .llseek = generic_file_llseek, \
Jiri Bence9f207f2007-05-05 11:46:38 -0700148}
149
Johannes Berg0f782312009-12-01 13:37:02 +0100150#define __IEEE80211_IF_FILE_W(name) \
151static ssize_t ieee80211_if_write_##name(struct file *file, \
152 const char __user *userbuf, \
153 size_t count, loff_t *ppos) \
154{ \
155 return ieee80211_if_write(file->private_data, userbuf, count, \
156 ppos, ieee80211_if_parse_##name); \
157} \
158__IEEE80211_IF_FILE(name, ieee80211_if_write_##name)
159
160
Jiri Bence9f207f2007-05-05 11:46:38 -0700161#define IEEE80211_IF_FILE(name, field, format) \
162 IEEE80211_IF_FMT_##format(name, field) \
Johannes Berg0f782312009-12-01 13:37:02 +0100163 __IEEE80211_IF_FILE(name, NULL)
Jiri Bence9f207f2007-05-05 11:46:38 -0700164
165/* common attributes */
Jiri Bence9f207f2007-05-05 11:46:38 -0700166IEEE80211_IF_FILE(drop_unencrypted, drop_unencrypted, DEC);
Jouni Malinen37eb0b12010-01-06 13:09:08 +0200167IEEE80211_IF_FILE(rc_rateidx_mask_2ghz, rc_rateidx_mask[IEEE80211_BAND_2GHZ],
168 HEX);
169IEEE80211_IF_FILE(rc_rateidx_mask_5ghz, rc_rateidx_mask[IEEE80211_BAND_5GHZ],
170 HEX);
Simon Wunderlich19468412012-01-28 17:25:33 +0100171IEEE80211_IF_FILE(rc_rateidx_mcs_mask_2ghz,
172 rc_rateidx_mcs_mask[IEEE80211_BAND_2GHZ], HEXARRAY);
173IEEE80211_IF_FILE(rc_rateidx_mcs_mask_5ghz,
174 rc_rateidx_mcs_mask[IEEE80211_BAND_5GHZ], HEXARRAY);
175
Ben Greear4914b3b2011-01-27 22:09:34 -0800176IEEE80211_IF_FILE(flags, flags, HEX);
177IEEE80211_IF_FILE(state, state, LHEX);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +0200178IEEE80211_IF_FILE(txpower, vif.bss_conf.txpower, DEC);
179IEEE80211_IF_FILE(ap_power_level, ap_power_level, DEC);
180IEEE80211_IF_FILE(user_power_level, user_power_level, DEC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700181
Johannes Berg08643312012-11-08 15:29:28 +0100182static ssize_t
183ieee80211_if_fmt_hw_queues(const struct ieee80211_sub_if_data *sdata,
184 char *buf, int buflen)
185{
186 int len;
187
188 len = scnprintf(buf, buflen, "AC queues: VO:%d VI:%d BE:%d BK:%d\n",
189 sdata->vif.hw_queue[IEEE80211_AC_VO],
190 sdata->vif.hw_queue[IEEE80211_AC_VI],
191 sdata->vif.hw_queue[IEEE80211_AC_BE],
192 sdata->vif.hw_queue[IEEE80211_AC_BK]);
193
194 if (sdata->vif.type == NL80211_IFTYPE_AP)
195 len += scnprintf(buf + len, buflen - len, "cab queue: %d\n",
196 sdata->vif.cab_queue);
197
198 return len;
199}
200__IEEE80211_IF_FILE(hw_queues, NULL);
201
Johannes Berg46900292009-02-15 12:44:28 +0100202/* STA attributes */
Johannes Berg46900292009-02-15 12:44:28 +0100203IEEE80211_IF_FILE(bssid, u.mgd.bssid, MAC);
Johannes Berg46900292009-02-15 12:44:28 +0100204IEEE80211_IF_FILE(aid, u.mgd.aid, DEC);
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700205IEEE80211_IF_FILE(last_beacon, u.mgd.last_beacon_signal, DEC);
206IEEE80211_IF_FILE(ave_beacon, u.mgd.ave_beacon_signal, DEC_DIV_16);
Ben Greear78e443e2013-03-25 11:19:34 -0700207IEEE80211_IF_FILE(beacon_timeout, u.mgd.beacon_timeout, JIFFIES_TO_MS);
Jiri Bence9f207f2007-05-05 11:46:38 -0700208
Johannes Berg0f782312009-12-01 13:37:02 +0100209static int ieee80211_set_smps(struct ieee80211_sub_if_data *sdata,
210 enum ieee80211_smps_mode smps_mode)
211{
212 struct ieee80211_local *local = sdata->local;
213 int err;
214
215 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_STATIC_SMPS) &&
216 smps_mode == IEEE80211_SMPS_STATIC)
217 return -EINVAL;
218
219 /* auto should be dynamic if in PS mode */
220 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS) &&
221 (smps_mode == IEEE80211_SMPS_DYNAMIC ||
222 smps_mode == IEEE80211_SMPS_AUTOMATIC))
223 return -EINVAL;
224
225 /* supported only on managed interfaces for now */
226 if (sdata->vif.type != NL80211_IFTYPE_STATION)
227 return -EOPNOTSUPP;
228
Johannes Berg243e6df2011-04-19 20:44:04 +0200229 mutex_lock(&sdata->u.mgd.mtx);
Johannes Berg0f782312009-12-01 13:37:02 +0100230 err = __ieee80211_request_smps(sdata, smps_mode);
Johannes Berg243e6df2011-04-19 20:44:04 +0200231 mutex_unlock(&sdata->u.mgd.mtx);
Johannes Berg0f782312009-12-01 13:37:02 +0100232
233 return err;
234}
235
236static const char *smps_modes[IEEE80211_SMPS_NUM_MODES] = {
237 [IEEE80211_SMPS_AUTOMATIC] = "auto",
238 [IEEE80211_SMPS_OFF] = "off",
239 [IEEE80211_SMPS_STATIC] = "static",
240 [IEEE80211_SMPS_DYNAMIC] = "dynamic",
241};
242
243static ssize_t ieee80211_if_fmt_smps(const struct ieee80211_sub_if_data *sdata,
244 char *buf, int buflen)
245{
246 if (sdata->vif.type != NL80211_IFTYPE_STATION)
247 return -EOPNOTSUPP;
248
249 return snprintf(buf, buflen, "request: %s\nused: %s\n",
250 smps_modes[sdata->u.mgd.req_smps],
Johannes Berg04ecd252012-09-11 14:34:12 +0200251 smps_modes[sdata->smps_mode]);
Johannes Berg0f782312009-12-01 13:37:02 +0100252}
253
254static ssize_t ieee80211_if_parse_smps(struct ieee80211_sub_if_data *sdata,
255 const char *buf, int buflen)
256{
257 enum ieee80211_smps_mode mode;
258
259 for (mode = 0; mode < IEEE80211_SMPS_NUM_MODES; mode++) {
260 if (strncmp(buf, smps_modes[mode], buflen) == 0) {
261 int err = ieee80211_set_smps(sdata, mode);
262 if (!err)
263 return buflen;
264 return err;
265 }
266 }
267
268 return -EINVAL;
269}
270
271__IEEE80211_IF_FILE_W(smps);
272
Jouni Malinen681d1192011-02-03 18:35:19 +0200273static ssize_t ieee80211_if_fmt_tkip_mic_test(
274 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
275{
276 return -EOPNOTSUPP;
277}
278
Jouni Malinen681d1192011-02-03 18:35:19 +0200279static ssize_t ieee80211_if_parse_tkip_mic_test(
280 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
281{
282 struct ieee80211_local *local = sdata->local;
283 u8 addr[ETH_ALEN];
284 struct sk_buff *skb;
285 struct ieee80211_hdr *hdr;
286 __le16 fc;
287
Johannes Berg28656a12012-11-05 20:24:38 +0100288 if (!mac_pton(buf, addr))
Jouni Malinen681d1192011-02-03 18:35:19 +0200289 return -EINVAL;
290
291 if (!ieee80211_sdata_running(sdata))
292 return -ENOTCONN;
293
294 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 24 + 100);
295 if (!skb)
296 return -ENOMEM;
297 skb_reserve(skb, local->hw.extra_tx_headroom);
298
299 hdr = (struct ieee80211_hdr *) skb_put(skb, 24);
300 memset(hdr, 0, 24);
301 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
302
303 switch (sdata->vif.type) {
304 case NL80211_IFTYPE_AP:
305 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
306 /* DA BSSID SA */
307 memcpy(hdr->addr1, addr, ETH_ALEN);
308 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
309 memcpy(hdr->addr3, sdata->vif.addr, ETH_ALEN);
310 break;
311 case NL80211_IFTYPE_STATION:
312 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
313 /* BSSID SA DA */
Johannes Berg41c97a22012-11-05 20:27:57 +0100314 mutex_lock(&sdata->u.mgd.mtx);
315 if (!sdata->u.mgd.associated) {
316 mutex_unlock(&sdata->u.mgd.mtx);
Jouni Malinen681d1192011-02-03 18:35:19 +0200317 dev_kfree_skb(skb);
318 return -ENOTCONN;
319 }
Johannes Berg41c97a22012-11-05 20:27:57 +0100320 memcpy(hdr->addr1, sdata->u.mgd.associated->bssid, ETH_ALEN);
Jouni Malinen681d1192011-02-03 18:35:19 +0200321 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
322 memcpy(hdr->addr3, addr, ETH_ALEN);
Johannes Berg41c97a22012-11-05 20:27:57 +0100323 mutex_unlock(&sdata->u.mgd.mtx);
Jouni Malinen681d1192011-02-03 18:35:19 +0200324 break;
325 default:
326 dev_kfree_skb(skb);
327 return -EOPNOTSUPP;
328 }
329 hdr->frame_control = fc;
330
331 /*
332 * Add some length to the test frame to make it look bit more valid.
333 * The exact contents does not matter since the recipient is required
334 * to drop this because of the Michael MIC failure.
335 */
336 memset(skb_put(skb, 50), 0, 50);
337
338 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_TKIP_MIC_FAILURE;
339
340 ieee80211_tx_skb(sdata, skb);
341
342 return buflen;
343}
344
345__IEEE80211_IF_FILE_W(tkip_mic_test);
346
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200347static ssize_t ieee80211_if_fmt_uapsd_queues(
348 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
349{
350 const struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
351
352 return snprintf(buf, buflen, "0x%x\n", ifmgd->uapsd_queues);
353}
354
355static ssize_t ieee80211_if_parse_uapsd_queues(
356 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
357{
358 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
359 u8 val;
360 int ret;
361
362 ret = kstrtou8(buf, 0, &val);
363 if (ret)
364 return ret;
365
366 if (val & ~IEEE80211_WMM_IE_STA_QOSINFO_AC_MASK)
367 return -ERANGE;
368
369 ifmgd->uapsd_queues = val;
370
371 return buflen;
372}
373__IEEE80211_IF_FILE_W(uapsd_queues);
374
375static ssize_t ieee80211_if_fmt_uapsd_max_sp_len(
376 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
377{
378 const struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
379
380 return snprintf(buf, buflen, "0x%x\n", ifmgd->uapsd_max_sp_len);
381}
382
383static ssize_t ieee80211_if_parse_uapsd_max_sp_len(
384 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
385{
386 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
387 unsigned long val;
388 int ret;
389
390 ret = kstrtoul(buf, 0, &val);
391 if (ret)
392 return -EINVAL;
393
394 if (val & ~IEEE80211_WMM_IE_STA_QOSINFO_SP_MASK)
395 return -ERANGE;
396
397 ifmgd->uapsd_max_sp_len = val;
398
399 return buflen;
400}
401__IEEE80211_IF_FILE_W(uapsd_max_sp_len);
402
Jiri Bence9f207f2007-05-05 11:46:38 -0700403/* AP attributes */
Felix Fietkau030ef8f2012-04-23 19:49:02 +0200404IEEE80211_IF_FILE(num_mcast_sta, u.ap.num_mcast_sta, ATOMIC);
Marco Porschd012a602012-10-10 12:39:50 -0700405IEEE80211_IF_FILE(num_sta_ps, u.ap.ps.num_sta_ps, ATOMIC);
406IEEE80211_IF_FILE(dtim_count, u.ap.ps.dtim_count, DEC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700407
408static ssize_t ieee80211_if_fmt_num_buffered_multicast(
409 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
410{
411 return scnprintf(buf, buflen, "%u\n",
Marco Porschd012a602012-10-10 12:39:50 -0700412 skb_queue_len(&sdata->u.ap.ps.bc_buf));
Jiri Bence9f207f2007-05-05 11:46:38 -0700413}
Johannes Berg0f782312009-12-01 13:37:02 +0100414__IEEE80211_IF_FILE(num_buffered_multicast, NULL);
Jiri Bence9f207f2007-05-05 11:46:38 -0700415
Eliad Peller37a41b42011-09-21 14:06:11 +0300416/* IBSS attributes */
417static ssize_t ieee80211_if_fmt_tsf(
418 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
419{
420 struct ieee80211_local *local = sdata->local;
421 u64 tsf;
422
423 tsf = drv_get_tsf(local, (struct ieee80211_sub_if_data *)sdata);
424
425 return scnprintf(buf, buflen, "0x%016llx\n", (unsigned long long) tsf);
426}
427
428static ssize_t ieee80211_if_parse_tsf(
429 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
430{
431 struct ieee80211_local *local = sdata->local;
432 unsigned long long tsf;
433 int ret;
Javier Cardona9bdd3a62012-03-31 11:31:31 -0700434 int tsf_is_delta = 0;
Eliad Peller37a41b42011-09-21 14:06:11 +0300435
436 if (strncmp(buf, "reset", 5) == 0) {
437 if (local->ops->reset_tsf) {
438 drv_reset_tsf(local, sdata);
439 wiphy_info(local->hw.wiphy, "debugfs reset TSF\n");
440 }
441 } else {
Javier Cardona9bdd3a62012-03-31 11:31:31 -0700442 if (buflen > 10 && buf[1] == '=') {
443 if (buf[0] == '+')
444 tsf_is_delta = 1;
445 else if (buf[0] == '-')
446 tsf_is_delta = -1;
447 else
448 return -EINVAL;
449 buf += 2;
450 }
Eliad Peller37a41b42011-09-21 14:06:11 +0300451 ret = kstrtoull(buf, 10, &tsf);
452 if (ret < 0)
Johannes Berg6fc1da92012-11-05 20:30:39 +0100453 return ret;
Javier Cardona9bdd3a62012-03-31 11:31:31 -0700454 if (tsf_is_delta)
455 tsf = drv_get_tsf(local, sdata) + tsf_is_delta * tsf;
Eliad Peller37a41b42011-09-21 14:06:11 +0300456 if (local->ops->set_tsf) {
457 drv_set_tsf(local, sdata, tsf);
458 wiphy_info(local->hw.wiphy,
459 "debugfs set TSF to %#018llx\n", tsf);
460 }
461 }
462
463 return buflen;
464}
465__IEEE80211_IF_FILE_W(tsf);
466
467
Jiri Bence9f207f2007-05-05 11:46:38 -0700468/* WDS attributes */
469IEEE80211_IF_FILE(peer, u.wds.remote_addr, MAC);
470
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100471#ifdef CONFIG_MAC80211_MESH
472/* Mesh stats attributes */
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700473IEEE80211_IF_FILE(fwded_mcast, u.mesh.mshstats.fwded_mcast, DEC);
474IEEE80211_IF_FILE(fwded_unicast, u.mesh.mshstats.fwded_unicast, DEC);
Johannes Berg472dbc42008-09-11 00:01:49 +0200475IEEE80211_IF_FILE(fwded_frames, u.mesh.mshstats.fwded_frames, DEC);
476IEEE80211_IF_FILE(dropped_frames_ttl, u.mesh.mshstats.dropped_frames_ttl, DEC);
Javier Cardonacfee66b2011-09-06 13:05:21 -0700477IEEE80211_IF_FILE(dropped_frames_congestion,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800478 u.mesh.mshstats.dropped_frames_congestion, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100479IEEE80211_IF_FILE(dropped_frames_no_route,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800480 u.mesh.mshstats.dropped_frames_no_route, DEC);
Ashok Nagarajan1258d972012-10-09 13:27:47 -0700481IEEE80211_IF_FILE(estab_plinks, u.mesh.estab_plinks, ATOMIC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100482
483/* Mesh parameters */
Johannes Berg36ff3822008-10-07 12:04:31 +0200484IEEE80211_IF_FILE(dot11MeshMaxRetries,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800485 u.mesh.mshcfg.dot11MeshMaxRetries, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200486IEEE80211_IF_FILE(dot11MeshRetryTimeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800487 u.mesh.mshcfg.dot11MeshRetryTimeout, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200488IEEE80211_IF_FILE(dot11MeshConfirmTimeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800489 u.mesh.mshcfg.dot11MeshConfirmTimeout, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200490IEEE80211_IF_FILE(dot11MeshHoldingTimeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800491 u.mesh.mshcfg.dot11MeshHoldingTimeout, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200492IEEE80211_IF_FILE(dot11MeshTTL, u.mesh.mshcfg.dot11MeshTTL, DEC);
Javier Cardona45904f22010-12-03 09:20:40 +0100493IEEE80211_IF_FILE(element_ttl, u.mesh.mshcfg.element_ttl, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200494IEEE80211_IF_FILE(auto_open_plinks, u.mesh.mshcfg.auto_open_plinks, DEC);
495IEEE80211_IF_FILE(dot11MeshMaxPeerLinks,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800496 u.mesh.mshcfg.dot11MeshMaxPeerLinks, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200497IEEE80211_IF_FILE(dot11MeshHWMPactivePathTimeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800498 u.mesh.mshcfg.dot11MeshHWMPactivePathTimeout, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200499IEEE80211_IF_FILE(dot11MeshHWMPpreqMinInterval,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800500 u.mesh.mshcfg.dot11MeshHWMPpreqMinInterval, DEC);
Thomas Pedersendca7e942011-11-24 17:15:24 -0800501IEEE80211_IF_FILE(dot11MeshHWMPperrMinInterval,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800502 u.mesh.mshcfg.dot11MeshHWMPperrMinInterval, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200503IEEE80211_IF_FILE(dot11MeshHWMPnetDiameterTraversalTime,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800504 u.mesh.mshcfg.dot11MeshHWMPnetDiameterTraversalTime, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200505IEEE80211_IF_FILE(dot11MeshHWMPmaxPREQretries,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800506 u.mesh.mshcfg.dot11MeshHWMPmaxPREQretries, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200507IEEE80211_IF_FILE(path_refresh_time,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800508 u.mesh.mshcfg.path_refresh_time, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200509IEEE80211_IF_FILE(min_discovery_timeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800510 u.mesh.mshcfg.min_discovery_timeout, DEC);
Rui Paulo63c57232009-11-09 23:46:57 +0000511IEEE80211_IF_FILE(dot11MeshHWMPRootMode,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800512 u.mesh.mshcfg.dot11MeshHWMPRootMode, DEC);
Javier Cardona16dd7262011-08-09 16:45:11 -0700513IEEE80211_IF_FILE(dot11MeshGateAnnouncementProtocol,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800514 u.mesh.mshcfg.dot11MeshGateAnnouncementProtocol, DEC);
Javier Cardona0507e152011-08-09 16:45:10 -0700515IEEE80211_IF_FILE(dot11MeshHWMPRannInterval,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800516 u.mesh.mshcfg.dot11MeshHWMPRannInterval, DEC);
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +0800517IEEE80211_IF_FILE(dot11MeshForwarding, u.mesh.mshcfg.dot11MeshForwarding, DEC);
Ashok Nagarajan55335132012-02-28 17:04:08 -0800518IEEE80211_IF_FILE(rssi_threshold, u.mesh.mshcfg.rssi_threshold, DEC);
Ashok Nagarajan4416f5d2012-05-07 21:00:32 -0700519IEEE80211_IF_FILE(ht_opmode, u.mesh.mshcfg.ht_opmode, DEC);
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +0800520IEEE80211_IF_FILE(dot11MeshHWMPactivePathToRootTimeout,
521 u.mesh.mshcfg.dot11MeshHWMPactivePathToRootTimeout, DEC);
522IEEE80211_IF_FILE(dot11MeshHWMProotInterval,
523 u.mesh.mshcfg.dot11MeshHWMProotInterval, DEC);
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +0800524IEEE80211_IF_FILE(dot11MeshHWMPconfirmationInterval,
525 u.mesh.mshcfg.dot11MeshHWMPconfirmationInterval, DEC);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100526IEEE80211_IF_FILE(power_mode, u.mesh.mshcfg.power_mode, DEC);
527IEEE80211_IF_FILE(dot11MeshAwakeWindowDuration,
528 u.mesh.mshcfg.dot11MeshAwakeWindowDuration, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100529#endif
530
Johannes Berg0f782312009-12-01 13:37:02 +0100531#define DEBUGFS_ADD_MODE(name, mode) \
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100532 debugfs_create_file(#name, mode, sdata->vif.debugfs_dir, \
Johannes Berg0f782312009-12-01 13:37:02 +0100533 sdata, &name##_ops);
534
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100535#define DEBUGFS_ADD(name) DEBUGFS_ADD_MODE(name, 0400)
536
537static void add_common_files(struct ieee80211_sub_if_data *sdata)
Jiri Bence9f207f2007-05-05 11:46:38 -0700538{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100539 DEBUGFS_ADD(drop_unencrypted);
540 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
541 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
Simon Wunderlich19468412012-01-28 17:25:33 +0100542 DEBUGFS_ADD(rc_rateidx_mcs_mask_2ghz);
543 DEBUGFS_ADD(rc_rateidx_mcs_mask_5ghz);
Johannes Berg08643312012-11-08 15:29:28 +0100544 DEBUGFS_ADD(hw_queues);
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100545}
Johannes Berg3e122be2008-07-09 14:40:34 +0200546
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100547static void add_sta_files(struct ieee80211_sub_if_data *sdata)
548{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100549 DEBUGFS_ADD(bssid);
550 DEBUGFS_ADD(aid);
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700551 DEBUGFS_ADD(last_beacon);
552 DEBUGFS_ADD(ave_beacon);
Ben Greear78e443e2013-03-25 11:19:34 -0700553 DEBUGFS_ADD(beacon_timeout);
Johannes Berg0f782312009-12-01 13:37:02 +0100554 DEBUGFS_ADD_MODE(smps, 0600);
Jouni Malinen681d1192011-02-03 18:35:19 +0200555 DEBUGFS_ADD_MODE(tkip_mic_test, 0200);
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200556 DEBUGFS_ADD_MODE(uapsd_queues, 0600);
557 DEBUGFS_ADD_MODE(uapsd_max_sp_len, 0600);
Jiri Bence9f207f2007-05-05 11:46:38 -0700558}
559
560static void add_ap_files(struct ieee80211_sub_if_data *sdata)
561{
Felix Fietkau030ef8f2012-04-23 19:49:02 +0200562 DEBUGFS_ADD(num_mcast_sta);
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100563 DEBUGFS_ADD(num_sta_ps);
564 DEBUGFS_ADD(dtim_count);
565 DEBUGFS_ADD(num_buffered_multicast);
Jouni Malinen681d1192011-02-03 18:35:19 +0200566 DEBUGFS_ADD_MODE(tkip_mic_test, 0200);
Jiri Bence9f207f2007-05-05 11:46:38 -0700567}
568
Eliad Peller37a41b42011-09-21 14:06:11 +0300569static void add_ibss_files(struct ieee80211_sub_if_data *sdata)
570{
571 DEBUGFS_ADD_MODE(tsf, 0600);
572}
573
Jiri Bence9f207f2007-05-05 11:46:38 -0700574static void add_wds_files(struct ieee80211_sub_if_data *sdata)
575{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100576 DEBUGFS_ADD(peer);
Jiri Bence9f207f2007-05-05 11:46:38 -0700577}
578
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100579#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100580
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800581static void add_mesh_files(struct ieee80211_sub_if_data *sdata)
582{
583 DEBUGFS_ADD_MODE(tsf, 0600);
584}
585
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100586static void add_mesh_stats(struct ieee80211_sub_if_data *sdata)
587{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100588 struct dentry *dir = debugfs_create_dir("mesh_stats",
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100589 sdata->vif.debugfs_dir);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100590#define MESHSTATS_ADD(name)\
591 debugfs_create_file(#name, 0400, dir, sdata, &name##_ops);
592
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700593 MESHSTATS_ADD(fwded_mcast);
594 MESHSTATS_ADD(fwded_unicast);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100595 MESHSTATS_ADD(fwded_frames);
596 MESHSTATS_ADD(dropped_frames_ttl);
597 MESHSTATS_ADD(dropped_frames_no_route);
Javier Cardonacfee66b2011-09-06 13:05:21 -0700598 MESHSTATS_ADD(dropped_frames_congestion);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100599 MESHSTATS_ADD(estab_plinks);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100600#undef MESHSTATS_ADD
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100601}
602
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100603static void add_mesh_config(struct ieee80211_sub_if_data *sdata)
604{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100605 struct dentry *dir = debugfs_create_dir("mesh_config",
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100606 sdata->vif.debugfs_dir);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100607
608#define MESHPARAMS_ADD(name) \
609 debugfs_create_file(#name, 0600, dir, sdata, &name##_ops);
610
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100611 MESHPARAMS_ADD(dot11MeshMaxRetries);
612 MESHPARAMS_ADD(dot11MeshRetryTimeout);
613 MESHPARAMS_ADD(dot11MeshConfirmTimeout);
614 MESHPARAMS_ADD(dot11MeshHoldingTimeout);
615 MESHPARAMS_ADD(dot11MeshTTL);
Javier Cardona45904f22010-12-03 09:20:40 +0100616 MESHPARAMS_ADD(element_ttl);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100617 MESHPARAMS_ADD(auto_open_plinks);
618 MESHPARAMS_ADD(dot11MeshMaxPeerLinks);
619 MESHPARAMS_ADD(dot11MeshHWMPactivePathTimeout);
620 MESHPARAMS_ADD(dot11MeshHWMPpreqMinInterval);
Thomas Pedersendca7e942011-11-24 17:15:24 -0800621 MESHPARAMS_ADD(dot11MeshHWMPperrMinInterval);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100622 MESHPARAMS_ADD(dot11MeshHWMPnetDiameterTraversalTime);
623 MESHPARAMS_ADD(dot11MeshHWMPmaxPREQretries);
624 MESHPARAMS_ADD(path_refresh_time);
625 MESHPARAMS_ADD(min_discovery_timeout);
Javier Cardona699403d2011-08-09 16:45:09 -0700626 MESHPARAMS_ADD(dot11MeshHWMPRootMode);
Javier Cardona0507e152011-08-09 16:45:10 -0700627 MESHPARAMS_ADD(dot11MeshHWMPRannInterval);
Chun-Yeow Yeoh8c06e8c2012-05-31 18:17:30 +0800628 MESHPARAMS_ADD(dot11MeshForwarding);
Javier Cardona16dd7262011-08-09 16:45:11 -0700629 MESHPARAMS_ADD(dot11MeshGateAnnouncementProtocol);
Ashok Nagarajan55335132012-02-28 17:04:08 -0800630 MESHPARAMS_ADD(rssi_threshold);
Ashok Nagarajan4416f5d2012-05-07 21:00:32 -0700631 MESHPARAMS_ADD(ht_opmode);
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +0800632 MESHPARAMS_ADD(dot11MeshHWMPactivePathToRootTimeout);
633 MESHPARAMS_ADD(dot11MeshHWMProotInterval);
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +0800634 MESHPARAMS_ADD(dot11MeshHWMPconfirmationInterval);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100635 MESHPARAMS_ADD(power_mode);
636 MESHPARAMS_ADD(dot11MeshAwakeWindowDuration);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100637#undef MESHPARAMS_ADD
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100638}
639#endif
640
Jiri Bence9f207f2007-05-05 11:46:38 -0700641static void add_files(struct ieee80211_sub_if_data *sdata)
642{
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100643 if (!sdata->vif.debugfs_dir)
Jiri Bence9f207f2007-05-05 11:46:38 -0700644 return;
645
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100646 DEBUGFS_ADD(flags);
647 DEBUGFS_ADD(state);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +0200648 DEBUGFS_ADD(txpower);
649 DEBUGFS_ADD(user_power_level);
650 DEBUGFS_ADD(ap_power_level);
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100651
652 if (sdata->vif.type != NL80211_IFTYPE_MONITOR)
653 add_common_files(sdata);
654
Johannes Berg51fb61e2007-12-19 01:31:27 +0100655 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200656 case NL80211_IFTYPE_MESH_POINT:
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100657#ifdef CONFIG_MAC80211_MESH
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800658 add_mesh_files(sdata);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100659 add_mesh_stats(sdata);
660 add_mesh_config(sdata);
661#endif
Johannes Berg472dbc42008-09-11 00:01:49 +0200662 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200663 case NL80211_IFTYPE_STATION:
Jiri Bence9f207f2007-05-05 11:46:38 -0700664 add_sta_files(sdata);
665 break;
Johannes Berg46900292009-02-15 12:44:28 +0100666 case NL80211_IFTYPE_ADHOC:
Eliad Peller37a41b42011-09-21 14:06:11 +0300667 add_ibss_files(sdata);
Johannes Berg46900292009-02-15 12:44:28 +0100668 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200669 case NL80211_IFTYPE_AP:
Jiri Bence9f207f2007-05-05 11:46:38 -0700670 add_ap_files(sdata);
671 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200672 case NL80211_IFTYPE_WDS:
Jiri Bence9f207f2007-05-05 11:46:38 -0700673 add_wds_files(sdata);
674 break;
Jiri Bence9f207f2007-05-05 11:46:38 -0700675 default:
676 break;
677 }
678}
679
Jiri Bence9f207f2007-05-05 11:46:38 -0700680void ieee80211_debugfs_add_netdev(struct ieee80211_sub_if_data *sdata)
681{
682 char buf[10+IFNAMSIZ];
683
Johannes Berg47846c92009-11-25 17:46:19 +0100684 sprintf(buf, "netdev:%s", sdata->name);
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100685 sdata->vif.debugfs_dir = debugfs_create_dir(buf,
Jiri Bence9f207f2007-05-05 11:46:38 -0700686 sdata->local->hw.wiphy->debugfsdir);
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100687 if (sdata->vif.debugfs_dir)
Ben Greear295bafb2010-09-22 20:29:01 -0700688 sdata->debugfs.subdir_stations = debugfs_create_dir("stations",
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100689 sdata->vif.debugfs_dir);
Johannes Berg75636522008-07-09 14:40:35 +0200690 add_files(sdata);
Jiri Bence9f207f2007-05-05 11:46:38 -0700691}
692
693void ieee80211_debugfs_remove_netdev(struct ieee80211_sub_if_data *sdata)
694{
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100695 if (!sdata->vif.debugfs_dir)
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100696 return;
697
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100698 debugfs_remove_recursive(sdata->vif.debugfs_dir);
699 sdata->vif.debugfs_dir = NULL;
Jiri Bence9f207f2007-05-05 11:46:38 -0700700}
701
Johannes Berg47846c92009-11-25 17:46:19 +0100702void ieee80211_debugfs_rename_netdev(struct ieee80211_sub_if_data *sdata)
Jiri Bence9f207f2007-05-05 11:46:38 -0700703{
Johannes Berg7c8081e2007-06-21 18:30:19 +0200704 struct dentry *dir;
Johannes Berg47846c92009-11-25 17:46:19 +0100705 char buf[10 + IFNAMSIZ];
Johannes Berg3e122be2008-07-09 14:40:34 +0200706
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100707 dir = sdata->vif.debugfs_dir;
Johannes Bergc74e90a2008-10-08 10:18:36 +0200708
709 if (!dir)
Johannes Berg47846c92009-11-25 17:46:19 +0100710 return;
Johannes Bergc74e90a2008-10-08 10:18:36 +0200711
Johannes Berg47846c92009-11-25 17:46:19 +0100712 sprintf(buf, "netdev:%s", sdata->name);
Johannes Berg7c8081e2007-06-21 18:30:19 +0200713 if (!debugfs_rename(dir->d_parent, dir, dir->d_parent, buf))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200714 sdata_err(sdata,
715 "debugfs: failed to rename debugfs dir to %s\n",
716 buf);
Jiri Bence9f207f2007-05-05 11:46:38 -0700717}