blob: e205ebabfa5015f5375a60cb79af9b2bfdbd9f80 [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 Nemtsov923eaf32014-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 Nemtsov923eaf32014-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 Berg4cd3c4e2014-01-06 15:47:15 +0100134#define _IEEE80211_IF_FILE_OPS(name, _read, _write) \
135static const struct file_operations name##_ops = { \
136 .read = (_read), \
137 .write = (_write), \
138 .open = simple_open, \
139 .llseek = generic_file_llseek, \
140}
141
142#define _IEEE80211_IF_FILE_R_FN(name) \
Jiri Bence9f207f2007-05-05 11:46:38 -0700143static ssize_t ieee80211_if_read_##name(struct file *file, \
144 char __user *userbuf, \
145 size_t count, loff_t *ppos) \
146{ \
147 return ieee80211_if_read(file->private_data, \
148 userbuf, count, ppos, \
149 ieee80211_if_fmt_##name); \
Jiri Bence9f207f2007-05-05 11:46:38 -0700150}
151
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100152#define _IEEE80211_IF_FILE_W_FN(name) \
Johannes Berg0f782312009-12-01 13:37:02 +0100153static ssize_t ieee80211_if_write_##name(struct file *file, \
154 const char __user *userbuf, \
155 size_t count, loff_t *ppos) \
156{ \
157 return ieee80211_if_write(file->private_data, userbuf, count, \
158 ppos, ieee80211_if_parse_##name); \
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100159}
Johannes Berg0f782312009-12-01 13:37:02 +0100160
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100161#define IEEE80211_IF_FILE_R(name) \
162 _IEEE80211_IF_FILE_R_FN(name) \
163 _IEEE80211_IF_FILE_OPS(name, ieee80211_if_read_##name, NULL)
164
165#define IEEE80211_IF_FILE_W(name) \
166 _IEEE80211_IF_FILE_W_FN(name) \
167 _IEEE80211_IF_FILE_OPS(name, NULL, ieee80211_if_write_##name)
168
169#define IEEE80211_IF_FILE_RW(name) \
170 _IEEE80211_IF_FILE_R_FN(name) \
171 _IEEE80211_IF_FILE_W_FN(name) \
172 _IEEE80211_IF_FILE_OPS(name, ieee80211_if_read_##name, \
173 ieee80211_if_write_##name)
Johannes Berg0f782312009-12-01 13:37:02 +0100174
Jiri Bence9f207f2007-05-05 11:46:38 -0700175#define IEEE80211_IF_FILE(name, field, format) \
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100176 IEEE80211_IF_FMT_##format(name, field) \
177 IEEE80211_IF_FILE_R(name)
Jiri Bence9f207f2007-05-05 11:46:38 -0700178
179/* common attributes */
Jiri Bence9f207f2007-05-05 11:46:38 -0700180IEEE80211_IF_FILE(drop_unencrypted, drop_unencrypted, DEC);
Jouni Malinen37eb0b12010-01-06 13:09:08 +0200181IEEE80211_IF_FILE(rc_rateidx_mask_2ghz, rc_rateidx_mask[IEEE80211_BAND_2GHZ],
182 HEX);
183IEEE80211_IF_FILE(rc_rateidx_mask_5ghz, rc_rateidx_mask[IEEE80211_BAND_5GHZ],
184 HEX);
Simon Wunderlich19468412012-01-28 17:25:33 +0100185IEEE80211_IF_FILE(rc_rateidx_mcs_mask_2ghz,
186 rc_rateidx_mcs_mask[IEEE80211_BAND_2GHZ], HEXARRAY);
187IEEE80211_IF_FILE(rc_rateidx_mcs_mask_5ghz,
188 rc_rateidx_mcs_mask[IEEE80211_BAND_5GHZ], HEXARRAY);
189
Ben Greear4914b3b2011-01-27 22:09:34 -0800190IEEE80211_IF_FILE(flags, flags, HEX);
191IEEE80211_IF_FILE(state, state, LHEX);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +0200192IEEE80211_IF_FILE(txpower, vif.bss_conf.txpower, DEC);
193IEEE80211_IF_FILE(ap_power_level, ap_power_level, DEC);
194IEEE80211_IF_FILE(user_power_level, user_power_level, DEC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700195
Johannes Berg08643312012-11-08 15:29:28 +0100196static ssize_t
197ieee80211_if_fmt_hw_queues(const struct ieee80211_sub_if_data *sdata,
198 char *buf, int buflen)
199{
200 int len;
201
202 len = scnprintf(buf, buflen, "AC queues: VO:%d VI:%d BE:%d BK:%d\n",
203 sdata->vif.hw_queue[IEEE80211_AC_VO],
204 sdata->vif.hw_queue[IEEE80211_AC_VI],
205 sdata->vif.hw_queue[IEEE80211_AC_BE],
206 sdata->vif.hw_queue[IEEE80211_AC_BK]);
207
208 if (sdata->vif.type == NL80211_IFTYPE_AP)
209 len += scnprintf(buf + len, buflen - len, "cab queue: %d\n",
210 sdata->vif.cab_queue);
211
212 return len;
213}
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100214IEEE80211_IF_FILE_R(hw_queues);
Johannes Berg08643312012-11-08 15:29:28 +0100215
Johannes Berg46900292009-02-15 12:44:28 +0100216/* STA attributes */
Johannes Berg46900292009-02-15 12:44:28 +0100217IEEE80211_IF_FILE(bssid, u.mgd.bssid, MAC);
Johannes Berg46900292009-02-15 12:44:28 +0100218IEEE80211_IF_FILE(aid, u.mgd.aid, DEC);
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700219IEEE80211_IF_FILE(last_beacon, u.mgd.last_beacon_signal, DEC);
220IEEE80211_IF_FILE(ave_beacon, u.mgd.ave_beacon_signal, DEC_DIV_16);
Ben Greear78e443e2013-03-25 11:19:34 -0700221IEEE80211_IF_FILE(beacon_timeout, u.mgd.beacon_timeout, JIFFIES_TO_MS);
Jiri Bence9f207f2007-05-05 11:46:38 -0700222
Johannes Berg0f782312009-12-01 13:37:02 +0100223static int ieee80211_set_smps(struct ieee80211_sub_if_data *sdata,
224 enum ieee80211_smps_mode smps_mode)
225{
226 struct ieee80211_local *local = sdata->local;
227 int err;
228
229 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_STATIC_SMPS) &&
230 smps_mode == IEEE80211_SMPS_STATIC)
231 return -EINVAL;
232
233 /* auto should be dynamic if in PS mode */
234 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS) &&
235 (smps_mode == IEEE80211_SMPS_DYNAMIC ||
236 smps_mode == IEEE80211_SMPS_AUTOMATIC))
237 return -EINVAL;
238
Emmanuel Grumbach687da132013-10-01 16:45:43 +0300239 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
240 sdata->vif.type != NL80211_IFTYPE_AP)
Johannes Berg0f782312009-12-01 13:37:02 +0100241 return -EOPNOTSUPP;
242
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200243 sdata_lock(sdata);
Emmanuel Grumbach687da132013-10-01 16:45:43 +0300244 if (sdata->vif.type == NL80211_IFTYPE_STATION)
245 err = __ieee80211_request_smps_mgd(sdata, smps_mode);
246 else
247 err = __ieee80211_request_smps_ap(sdata, smps_mode);
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200248 sdata_unlock(sdata);
Johannes Berg0f782312009-12-01 13:37:02 +0100249
250 return err;
251}
252
253static const char *smps_modes[IEEE80211_SMPS_NUM_MODES] = {
254 [IEEE80211_SMPS_AUTOMATIC] = "auto",
255 [IEEE80211_SMPS_OFF] = "off",
256 [IEEE80211_SMPS_STATIC] = "static",
257 [IEEE80211_SMPS_DYNAMIC] = "dynamic",
258};
259
260static ssize_t ieee80211_if_fmt_smps(const struct ieee80211_sub_if_data *sdata,
261 char *buf, int buflen)
262{
Emmanuel Grumbach687da132013-10-01 16:45:43 +0300263 if (sdata->vif.type == NL80211_IFTYPE_STATION)
264 return snprintf(buf, buflen, "request: %s\nused: %s\n",
265 smps_modes[sdata->u.mgd.req_smps],
266 smps_modes[sdata->smps_mode]);
267 if (sdata->vif.type == NL80211_IFTYPE_AP)
268 return snprintf(buf, buflen, "request: %s\nused: %s\n",
269 smps_modes[sdata->u.ap.req_smps],
270 smps_modes[sdata->smps_mode]);
271 return -EINVAL;
Johannes Berg0f782312009-12-01 13:37:02 +0100272}
273
274static ssize_t ieee80211_if_parse_smps(struct ieee80211_sub_if_data *sdata,
275 const char *buf, int buflen)
276{
277 enum ieee80211_smps_mode mode;
278
279 for (mode = 0; mode < IEEE80211_SMPS_NUM_MODES; mode++) {
280 if (strncmp(buf, smps_modes[mode], buflen) == 0) {
281 int err = ieee80211_set_smps(sdata, mode);
282 if (!err)
283 return buflen;
284 return err;
285 }
286 }
287
288 return -EINVAL;
289}
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100290IEEE80211_IF_FILE_RW(smps);
Jouni Malinen681d1192011-02-03 18:35:19 +0200291
Jouni Malinen681d1192011-02-03 18:35:19 +0200292static ssize_t ieee80211_if_parse_tkip_mic_test(
293 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
294{
295 struct ieee80211_local *local = sdata->local;
296 u8 addr[ETH_ALEN];
297 struct sk_buff *skb;
298 struct ieee80211_hdr *hdr;
299 __le16 fc;
300
Johannes Berg28656a12012-11-05 20:24:38 +0100301 if (!mac_pton(buf, addr))
Jouni Malinen681d1192011-02-03 18:35:19 +0200302 return -EINVAL;
303
304 if (!ieee80211_sdata_running(sdata))
305 return -ENOTCONN;
306
307 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 24 + 100);
308 if (!skb)
309 return -ENOMEM;
310 skb_reserve(skb, local->hw.extra_tx_headroom);
311
312 hdr = (struct ieee80211_hdr *) skb_put(skb, 24);
313 memset(hdr, 0, 24);
314 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
315
316 switch (sdata->vif.type) {
317 case NL80211_IFTYPE_AP:
318 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
319 /* DA BSSID SA */
320 memcpy(hdr->addr1, addr, ETH_ALEN);
321 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
322 memcpy(hdr->addr3, sdata->vif.addr, ETH_ALEN);
323 break;
324 case NL80211_IFTYPE_STATION:
325 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
326 /* BSSID SA DA */
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200327 sdata_lock(sdata);
Johannes Berg41c97a22012-11-05 20:27:57 +0100328 if (!sdata->u.mgd.associated) {
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200329 sdata_unlock(sdata);
Jouni Malinen681d1192011-02-03 18:35:19 +0200330 dev_kfree_skb(skb);
331 return -ENOTCONN;
332 }
Johannes Berg41c97a22012-11-05 20:27:57 +0100333 memcpy(hdr->addr1, sdata->u.mgd.associated->bssid, ETH_ALEN);
Jouni Malinen681d1192011-02-03 18:35:19 +0200334 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
335 memcpy(hdr->addr3, addr, ETH_ALEN);
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200336 sdata_unlock(sdata);
Jouni Malinen681d1192011-02-03 18:35:19 +0200337 break;
338 default:
339 dev_kfree_skb(skb);
340 return -EOPNOTSUPP;
341 }
342 hdr->frame_control = fc;
343
344 /*
345 * Add some length to the test frame to make it look bit more valid.
346 * The exact contents does not matter since the recipient is required
347 * to drop this because of the Michael MIC failure.
348 */
349 memset(skb_put(skb, 50), 0, 50);
350
351 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_TKIP_MIC_FAILURE;
352
353 ieee80211_tx_skb(sdata, skb);
354
355 return buflen;
356}
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100357IEEE80211_IF_FILE_W(tkip_mic_test);
Jouni Malinen681d1192011-02-03 18:35:19 +0200358
Eliad Peller802ee9e2014-02-11 12:36:18 +0200359static ssize_t ieee80211_if_parse_beacon_loss(
360 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
361{
362 if (!ieee80211_sdata_running(sdata) || !sdata->vif.bss_conf.assoc)
363 return -ENOTCONN;
364
365 ieee80211_beacon_loss(&sdata->vif);
366
367 return buflen;
368}
369IEEE80211_IF_FILE_W(beacon_loss);
370
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200371static ssize_t ieee80211_if_fmt_uapsd_queues(
372 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
373{
374 const struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
375
376 return snprintf(buf, buflen, "0x%x\n", ifmgd->uapsd_queues);
377}
378
379static ssize_t ieee80211_if_parse_uapsd_queues(
380 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
381{
382 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
383 u8 val;
384 int ret;
385
386 ret = kstrtou8(buf, 0, &val);
387 if (ret)
388 return ret;
389
390 if (val & ~IEEE80211_WMM_IE_STA_QOSINFO_AC_MASK)
391 return -ERANGE;
392
393 ifmgd->uapsd_queues = val;
394
395 return buflen;
396}
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100397IEEE80211_IF_FILE_RW(uapsd_queues);
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200398
399static ssize_t ieee80211_if_fmt_uapsd_max_sp_len(
400 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
401{
402 const struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
403
404 return snprintf(buf, buflen, "0x%x\n", ifmgd->uapsd_max_sp_len);
405}
406
407static ssize_t ieee80211_if_parse_uapsd_max_sp_len(
408 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
409{
410 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
411 unsigned long val;
412 int ret;
413
414 ret = kstrtoul(buf, 0, &val);
415 if (ret)
416 return -EINVAL;
417
418 if (val & ~IEEE80211_WMM_IE_STA_QOSINFO_SP_MASK)
419 return -ERANGE;
420
421 ifmgd->uapsd_max_sp_len = val;
422
423 return buflen;
424}
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100425IEEE80211_IF_FILE_RW(uapsd_max_sp_len);
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200426
Jiri Bence9f207f2007-05-05 11:46:38 -0700427/* AP attributes */
Felix Fietkau030ef8f2012-04-23 19:49:02 +0200428IEEE80211_IF_FILE(num_mcast_sta, u.ap.num_mcast_sta, ATOMIC);
Marco Porschd012a602012-10-10 12:39:50 -0700429IEEE80211_IF_FILE(num_sta_ps, u.ap.ps.num_sta_ps, ATOMIC);
430IEEE80211_IF_FILE(dtim_count, u.ap.ps.dtim_count, DEC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700431
432static ssize_t ieee80211_if_fmt_num_buffered_multicast(
433 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
434{
435 return scnprintf(buf, buflen, "%u\n",
Marco Porschd012a602012-10-10 12:39:50 -0700436 skb_queue_len(&sdata->u.ap.ps.bc_buf));
Jiri Bence9f207f2007-05-05 11:46:38 -0700437}
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100438IEEE80211_IF_FILE_R(num_buffered_multicast);
Jiri Bence9f207f2007-05-05 11:46:38 -0700439
Eliad Peller37a41b42011-09-21 14:06:11 +0300440/* IBSS attributes */
441static ssize_t ieee80211_if_fmt_tsf(
442 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
443{
444 struct ieee80211_local *local = sdata->local;
445 u64 tsf;
446
447 tsf = drv_get_tsf(local, (struct ieee80211_sub_if_data *)sdata);
448
449 return scnprintf(buf, buflen, "0x%016llx\n", (unsigned long long) tsf);
450}
451
452static ssize_t ieee80211_if_parse_tsf(
453 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
454{
455 struct ieee80211_local *local = sdata->local;
456 unsigned long long tsf;
457 int ret;
Javier Cardona9bdd3a62012-03-31 11:31:31 -0700458 int tsf_is_delta = 0;
Eliad Peller37a41b42011-09-21 14:06:11 +0300459
460 if (strncmp(buf, "reset", 5) == 0) {
461 if (local->ops->reset_tsf) {
462 drv_reset_tsf(local, sdata);
463 wiphy_info(local->hw.wiphy, "debugfs reset TSF\n");
464 }
465 } else {
Javier Cardona9bdd3a62012-03-31 11:31:31 -0700466 if (buflen > 10 && buf[1] == '=') {
467 if (buf[0] == '+')
468 tsf_is_delta = 1;
469 else if (buf[0] == '-')
470 tsf_is_delta = -1;
471 else
472 return -EINVAL;
473 buf += 2;
474 }
Eliad Peller37a41b42011-09-21 14:06:11 +0300475 ret = kstrtoull(buf, 10, &tsf);
476 if (ret < 0)
Johannes Berg6fc1da92012-11-05 20:30:39 +0100477 return ret;
Javier Cardona9bdd3a62012-03-31 11:31:31 -0700478 if (tsf_is_delta)
479 tsf = drv_get_tsf(local, sdata) + tsf_is_delta * tsf;
Eliad Peller37a41b42011-09-21 14:06:11 +0300480 if (local->ops->set_tsf) {
481 drv_set_tsf(local, sdata, tsf);
482 wiphy_info(local->hw.wiphy,
483 "debugfs set TSF to %#018llx\n", tsf);
484 }
485 }
486
Thomas Pedersen057d5f42013-12-19 10:25:15 -0800487 ieee80211_recalc_dtim(local, sdata);
Eliad Peller37a41b42011-09-21 14:06:11 +0300488 return buflen;
489}
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100490IEEE80211_IF_FILE_RW(tsf);
Eliad Peller37a41b42011-09-21 14:06:11 +0300491
492
Jiri Bence9f207f2007-05-05 11:46:38 -0700493/* WDS attributes */
494IEEE80211_IF_FILE(peer, u.wds.remote_addr, MAC);
495
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100496#ifdef CONFIG_MAC80211_MESH
Ashok Nagarajand4a5a482013-05-13 17:08:04 -0700497IEEE80211_IF_FILE(estab_plinks, u.mesh.estab_plinks, ATOMIC);
498
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100499/* Mesh stats attributes */
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700500IEEE80211_IF_FILE(fwded_mcast, u.mesh.mshstats.fwded_mcast, DEC);
501IEEE80211_IF_FILE(fwded_unicast, u.mesh.mshstats.fwded_unicast, DEC);
Johannes Berg472dbc42008-09-11 00:01:49 +0200502IEEE80211_IF_FILE(fwded_frames, u.mesh.mshstats.fwded_frames, DEC);
503IEEE80211_IF_FILE(dropped_frames_ttl, u.mesh.mshstats.dropped_frames_ttl, DEC);
Javier Cardonacfee66b2011-09-06 13:05:21 -0700504IEEE80211_IF_FILE(dropped_frames_congestion,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800505 u.mesh.mshstats.dropped_frames_congestion, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100506IEEE80211_IF_FILE(dropped_frames_no_route,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800507 u.mesh.mshstats.dropped_frames_no_route, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100508
509/* Mesh parameters */
Johannes Berg36ff3822008-10-07 12:04:31 +0200510IEEE80211_IF_FILE(dot11MeshMaxRetries,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800511 u.mesh.mshcfg.dot11MeshMaxRetries, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200512IEEE80211_IF_FILE(dot11MeshRetryTimeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800513 u.mesh.mshcfg.dot11MeshRetryTimeout, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200514IEEE80211_IF_FILE(dot11MeshConfirmTimeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800515 u.mesh.mshcfg.dot11MeshConfirmTimeout, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200516IEEE80211_IF_FILE(dot11MeshHoldingTimeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800517 u.mesh.mshcfg.dot11MeshHoldingTimeout, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200518IEEE80211_IF_FILE(dot11MeshTTL, u.mesh.mshcfg.dot11MeshTTL, DEC);
Javier Cardona45904f22010-12-03 09:20:40 +0100519IEEE80211_IF_FILE(element_ttl, u.mesh.mshcfg.element_ttl, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200520IEEE80211_IF_FILE(auto_open_plinks, u.mesh.mshcfg.auto_open_plinks, DEC);
521IEEE80211_IF_FILE(dot11MeshMaxPeerLinks,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800522 u.mesh.mshcfg.dot11MeshMaxPeerLinks, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200523IEEE80211_IF_FILE(dot11MeshHWMPactivePathTimeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800524 u.mesh.mshcfg.dot11MeshHWMPactivePathTimeout, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200525IEEE80211_IF_FILE(dot11MeshHWMPpreqMinInterval,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800526 u.mesh.mshcfg.dot11MeshHWMPpreqMinInterval, DEC);
Thomas Pedersendca7e942011-11-24 17:15:24 -0800527IEEE80211_IF_FILE(dot11MeshHWMPperrMinInterval,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800528 u.mesh.mshcfg.dot11MeshHWMPperrMinInterval, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200529IEEE80211_IF_FILE(dot11MeshHWMPnetDiameterTraversalTime,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800530 u.mesh.mshcfg.dot11MeshHWMPnetDiameterTraversalTime, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200531IEEE80211_IF_FILE(dot11MeshHWMPmaxPREQretries,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800532 u.mesh.mshcfg.dot11MeshHWMPmaxPREQretries, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200533IEEE80211_IF_FILE(path_refresh_time,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800534 u.mesh.mshcfg.path_refresh_time, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200535IEEE80211_IF_FILE(min_discovery_timeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800536 u.mesh.mshcfg.min_discovery_timeout, DEC);
Rui Paulo63c57232009-11-09 23:46:57 +0000537IEEE80211_IF_FILE(dot11MeshHWMPRootMode,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800538 u.mesh.mshcfg.dot11MeshHWMPRootMode, DEC);
Javier Cardona16dd7262011-08-09 16:45:11 -0700539IEEE80211_IF_FILE(dot11MeshGateAnnouncementProtocol,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800540 u.mesh.mshcfg.dot11MeshGateAnnouncementProtocol, DEC);
Javier Cardona0507e152011-08-09 16:45:10 -0700541IEEE80211_IF_FILE(dot11MeshHWMPRannInterval,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800542 u.mesh.mshcfg.dot11MeshHWMPRannInterval, DEC);
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +0800543IEEE80211_IF_FILE(dot11MeshForwarding, u.mesh.mshcfg.dot11MeshForwarding, DEC);
Ashok Nagarajan55335132012-02-28 17:04:08 -0800544IEEE80211_IF_FILE(rssi_threshold, u.mesh.mshcfg.rssi_threshold, DEC);
Ashok Nagarajan4416f5d2012-05-07 21:00:32 -0700545IEEE80211_IF_FILE(ht_opmode, u.mesh.mshcfg.ht_opmode, DEC);
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +0800546IEEE80211_IF_FILE(dot11MeshHWMPactivePathToRootTimeout,
547 u.mesh.mshcfg.dot11MeshHWMPactivePathToRootTimeout, DEC);
548IEEE80211_IF_FILE(dot11MeshHWMProotInterval,
549 u.mesh.mshcfg.dot11MeshHWMProotInterval, DEC);
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +0800550IEEE80211_IF_FILE(dot11MeshHWMPconfirmationInterval,
551 u.mesh.mshcfg.dot11MeshHWMPconfirmationInterval, DEC);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100552IEEE80211_IF_FILE(power_mode, u.mesh.mshcfg.power_mode, DEC);
553IEEE80211_IF_FILE(dot11MeshAwakeWindowDuration,
554 u.mesh.mshcfg.dot11MeshAwakeWindowDuration, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100555#endif
556
Johannes Berg0f782312009-12-01 13:37:02 +0100557#define DEBUGFS_ADD_MODE(name, mode) \
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100558 debugfs_create_file(#name, mode, sdata->vif.debugfs_dir, \
Johannes Berg0f782312009-12-01 13:37:02 +0100559 sdata, &name##_ops);
560
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100561#define DEBUGFS_ADD(name) DEBUGFS_ADD_MODE(name, 0400)
562
563static void add_common_files(struct ieee80211_sub_if_data *sdata)
Jiri Bence9f207f2007-05-05 11:46:38 -0700564{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100565 DEBUGFS_ADD(drop_unencrypted);
566 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
567 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
Simon Wunderlich19468412012-01-28 17:25:33 +0100568 DEBUGFS_ADD(rc_rateidx_mcs_mask_2ghz);
569 DEBUGFS_ADD(rc_rateidx_mcs_mask_5ghz);
Johannes Berg08643312012-11-08 15:29:28 +0100570 DEBUGFS_ADD(hw_queues);
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100571}
Johannes Berg3e122be2008-07-09 14:40:34 +0200572
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100573static void add_sta_files(struct ieee80211_sub_if_data *sdata)
574{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100575 DEBUGFS_ADD(bssid);
576 DEBUGFS_ADD(aid);
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700577 DEBUGFS_ADD(last_beacon);
578 DEBUGFS_ADD(ave_beacon);
Ben Greear78e443e2013-03-25 11:19:34 -0700579 DEBUGFS_ADD(beacon_timeout);
Johannes Berg0f782312009-12-01 13:37:02 +0100580 DEBUGFS_ADD_MODE(smps, 0600);
Jouni Malinen681d1192011-02-03 18:35:19 +0200581 DEBUGFS_ADD_MODE(tkip_mic_test, 0200);
Eliad Peller802ee9e2014-02-11 12:36:18 +0200582 DEBUGFS_ADD_MODE(beacon_loss, 0200);
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200583 DEBUGFS_ADD_MODE(uapsd_queues, 0600);
584 DEBUGFS_ADD_MODE(uapsd_max_sp_len, 0600);
Jiri Bence9f207f2007-05-05 11:46:38 -0700585}
586
587static void add_ap_files(struct ieee80211_sub_if_data *sdata)
588{
Felix Fietkau030ef8f2012-04-23 19:49:02 +0200589 DEBUGFS_ADD(num_mcast_sta);
Emmanuel Grumbach687da132013-10-01 16:45:43 +0300590 DEBUGFS_ADD_MODE(smps, 0600);
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100591 DEBUGFS_ADD(num_sta_ps);
592 DEBUGFS_ADD(dtim_count);
593 DEBUGFS_ADD(num_buffered_multicast);
Jouni Malinen681d1192011-02-03 18:35:19 +0200594 DEBUGFS_ADD_MODE(tkip_mic_test, 0200);
Jiri Bence9f207f2007-05-05 11:46:38 -0700595}
596
Eliad Peller37a41b42011-09-21 14:06:11 +0300597static void add_ibss_files(struct ieee80211_sub_if_data *sdata)
598{
599 DEBUGFS_ADD_MODE(tsf, 0600);
600}
601
Jiri Bence9f207f2007-05-05 11:46:38 -0700602static void add_wds_files(struct ieee80211_sub_if_data *sdata)
603{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100604 DEBUGFS_ADD(peer);
Jiri Bence9f207f2007-05-05 11:46:38 -0700605}
606
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100607#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100608
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800609static void add_mesh_files(struct ieee80211_sub_if_data *sdata)
610{
611 DEBUGFS_ADD_MODE(tsf, 0600);
Ashok Nagarajand4a5a482013-05-13 17:08:04 -0700612 DEBUGFS_ADD_MODE(estab_plinks, 0400);
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800613}
614
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100615static void add_mesh_stats(struct ieee80211_sub_if_data *sdata)
616{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100617 struct dentry *dir = debugfs_create_dir("mesh_stats",
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100618 sdata->vif.debugfs_dir);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100619#define MESHSTATS_ADD(name)\
620 debugfs_create_file(#name, 0400, dir, sdata, &name##_ops);
621
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700622 MESHSTATS_ADD(fwded_mcast);
623 MESHSTATS_ADD(fwded_unicast);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100624 MESHSTATS_ADD(fwded_frames);
625 MESHSTATS_ADD(dropped_frames_ttl);
626 MESHSTATS_ADD(dropped_frames_no_route);
Javier Cardonacfee66b2011-09-06 13:05:21 -0700627 MESHSTATS_ADD(dropped_frames_congestion);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100628#undef MESHSTATS_ADD
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100629}
630
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100631static void add_mesh_config(struct ieee80211_sub_if_data *sdata)
632{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100633 struct dentry *dir = debugfs_create_dir("mesh_config",
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100634 sdata->vif.debugfs_dir);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100635
636#define MESHPARAMS_ADD(name) \
637 debugfs_create_file(#name, 0600, dir, sdata, &name##_ops);
638
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100639 MESHPARAMS_ADD(dot11MeshMaxRetries);
640 MESHPARAMS_ADD(dot11MeshRetryTimeout);
641 MESHPARAMS_ADD(dot11MeshConfirmTimeout);
642 MESHPARAMS_ADD(dot11MeshHoldingTimeout);
643 MESHPARAMS_ADD(dot11MeshTTL);
Javier Cardona45904f22010-12-03 09:20:40 +0100644 MESHPARAMS_ADD(element_ttl);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100645 MESHPARAMS_ADD(auto_open_plinks);
646 MESHPARAMS_ADD(dot11MeshMaxPeerLinks);
647 MESHPARAMS_ADD(dot11MeshHWMPactivePathTimeout);
648 MESHPARAMS_ADD(dot11MeshHWMPpreqMinInterval);
Thomas Pedersendca7e942011-11-24 17:15:24 -0800649 MESHPARAMS_ADD(dot11MeshHWMPperrMinInterval);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100650 MESHPARAMS_ADD(dot11MeshHWMPnetDiameterTraversalTime);
651 MESHPARAMS_ADD(dot11MeshHWMPmaxPREQretries);
652 MESHPARAMS_ADD(path_refresh_time);
653 MESHPARAMS_ADD(min_discovery_timeout);
Javier Cardona699403d2011-08-09 16:45:09 -0700654 MESHPARAMS_ADD(dot11MeshHWMPRootMode);
Javier Cardona0507e152011-08-09 16:45:10 -0700655 MESHPARAMS_ADD(dot11MeshHWMPRannInterval);
Chun-Yeow Yeoh8c06e8c2012-05-31 18:17:30 +0800656 MESHPARAMS_ADD(dot11MeshForwarding);
Javier Cardona16dd7262011-08-09 16:45:11 -0700657 MESHPARAMS_ADD(dot11MeshGateAnnouncementProtocol);
Ashok Nagarajan55335132012-02-28 17:04:08 -0800658 MESHPARAMS_ADD(rssi_threshold);
Ashok Nagarajan4416f5d2012-05-07 21:00:32 -0700659 MESHPARAMS_ADD(ht_opmode);
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +0800660 MESHPARAMS_ADD(dot11MeshHWMPactivePathToRootTimeout);
661 MESHPARAMS_ADD(dot11MeshHWMProotInterval);
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +0800662 MESHPARAMS_ADD(dot11MeshHWMPconfirmationInterval);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100663 MESHPARAMS_ADD(power_mode);
664 MESHPARAMS_ADD(dot11MeshAwakeWindowDuration);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100665#undef MESHPARAMS_ADD
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100666}
667#endif
668
Jiri Bence9f207f2007-05-05 11:46:38 -0700669static void add_files(struct ieee80211_sub_if_data *sdata)
670{
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100671 if (!sdata->vif.debugfs_dir)
Jiri Bence9f207f2007-05-05 11:46:38 -0700672 return;
673
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100674 DEBUGFS_ADD(flags);
675 DEBUGFS_ADD(state);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +0200676 DEBUGFS_ADD(txpower);
677 DEBUGFS_ADD(user_power_level);
678 DEBUGFS_ADD(ap_power_level);
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100679
680 if (sdata->vif.type != NL80211_IFTYPE_MONITOR)
681 add_common_files(sdata);
682
Johannes Berg51fb61e2007-12-19 01:31:27 +0100683 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200684 case NL80211_IFTYPE_MESH_POINT:
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100685#ifdef CONFIG_MAC80211_MESH
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800686 add_mesh_files(sdata);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100687 add_mesh_stats(sdata);
688 add_mesh_config(sdata);
689#endif
Johannes Berg472dbc42008-09-11 00:01:49 +0200690 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200691 case NL80211_IFTYPE_STATION:
Jiri Bence9f207f2007-05-05 11:46:38 -0700692 add_sta_files(sdata);
693 break;
Johannes Berg46900292009-02-15 12:44:28 +0100694 case NL80211_IFTYPE_ADHOC:
Eliad Peller37a41b42011-09-21 14:06:11 +0300695 add_ibss_files(sdata);
Johannes Berg46900292009-02-15 12:44:28 +0100696 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200697 case NL80211_IFTYPE_AP:
Jiri Bence9f207f2007-05-05 11:46:38 -0700698 add_ap_files(sdata);
699 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200700 case NL80211_IFTYPE_WDS:
Jiri Bence9f207f2007-05-05 11:46:38 -0700701 add_wds_files(sdata);
702 break;
Jiri Bence9f207f2007-05-05 11:46:38 -0700703 default:
704 break;
705 }
706}
707
Jiri Bence9f207f2007-05-05 11:46:38 -0700708void ieee80211_debugfs_add_netdev(struct ieee80211_sub_if_data *sdata)
709{
710 char buf[10+IFNAMSIZ];
711
Johannes Berg47846c92009-11-25 17:46:19 +0100712 sprintf(buf, "netdev:%s", sdata->name);
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100713 sdata->vif.debugfs_dir = debugfs_create_dir(buf,
Jiri Bence9f207f2007-05-05 11:46:38 -0700714 sdata->local->hw.wiphy->debugfsdir);
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100715 if (sdata->vif.debugfs_dir)
Ben Greear295bafb2010-09-22 20:29:01 -0700716 sdata->debugfs.subdir_stations = debugfs_create_dir("stations",
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100717 sdata->vif.debugfs_dir);
Johannes Berg75636522008-07-09 14:40:35 +0200718 add_files(sdata);
Jiri Bence9f207f2007-05-05 11:46:38 -0700719}
720
721void ieee80211_debugfs_remove_netdev(struct ieee80211_sub_if_data *sdata)
722{
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100723 if (!sdata->vif.debugfs_dir)
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100724 return;
725
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100726 debugfs_remove_recursive(sdata->vif.debugfs_dir);
727 sdata->vif.debugfs_dir = NULL;
Jiri Bence9f207f2007-05-05 11:46:38 -0700728}
729
Johannes Berg47846c92009-11-25 17:46:19 +0100730void ieee80211_debugfs_rename_netdev(struct ieee80211_sub_if_data *sdata)
Jiri Bence9f207f2007-05-05 11:46:38 -0700731{
Johannes Berg7c8081e2007-06-21 18:30:19 +0200732 struct dentry *dir;
Johannes Berg47846c92009-11-25 17:46:19 +0100733 char buf[10 + IFNAMSIZ];
Johannes Berg3e122be2008-07-09 14:40:34 +0200734
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100735 dir = sdata->vif.debugfs_dir;
Johannes Bergc74e90a2008-10-08 10:18:36 +0200736
737 if (!dir)
Johannes Berg47846c92009-11-25 17:46:19 +0100738 return;
Johannes Bergc74e90a2008-10-08 10:18:36 +0200739
Johannes Berg47846c92009-11-25 17:46:19 +0100740 sprintf(buf, "netdev:%s", sdata->name);
Johannes Berg7c8081e2007-06-21 18:30:19 +0200741 if (!debugfs_rename(dir->d_parent, dir, dir->d_parent, buf))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200742 sdata_err(sdata,
743 "debugfs: failed to rename debugfs dir to %s\n",
744 buf);
Jiri Bence9f207f2007-05-05 11:46:38 -0700745}