blob: ebf80f3abd83fe1af18ce94863a0fe1dd090ea19 [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);
Luis Carlos Cobo73bb3e42008-03-31 15:10:22 -070037 if (sdata->dev->reg_state == NETREG_REGISTERED)
Jiri Bence9f207f2007-05-05 11:46:38 -070038 ret = (*format)(sdata, buf, sizeof(buf));
Jiri Bence9f207f2007-05-05 11:46:38 -070039 read_unlock(&dev_base_lock);
Luis Carlos Cobo73bb3e42008-03-31 15:10:22 -070040
Jouni Malinen681d1192011-02-03 18:35:19 +020041 if (ret >= 0)
Luis Carlos Cobo73bb3e42008-03-31 15:10:22 -070042 ret = simple_read_from_buffer(userbuf, count, ppos, buf, ret);
43
Jiri Bence9f207f2007-05-05 11:46:38 -070044 return ret;
45}
46
Johannes Berg0f782312009-12-01 13:37:02 +010047static ssize_t ieee80211_if_write(
48 struct ieee80211_sub_if_data *sdata,
49 const char __user *userbuf,
50 size_t count, loff_t *ppos,
51 ssize_t (*write)(struct ieee80211_sub_if_data *, const char *, int))
52{
Eliad Pellerada577c2012-03-14 16:15:02 +020053 char buf[64];
Eric Dumazet51f5f8c2010-03-10 17:13:36 +010054 ssize_t ret;
Johannes Berg0f782312009-12-01 13:37:02 +010055
Eliad Pellerada577c2012-03-14 16:15:02 +020056 if (count >= sizeof(buf))
57 return -E2BIG;
Johannes Berg0f782312009-12-01 13:37:02 +010058
59 if (copy_from_user(buf, userbuf, count))
Eliad Pellerada577c2012-03-14 16:15:02 +020060 return -EFAULT;
61 buf[count] = '\0';
Johannes Berg0f782312009-12-01 13:37:02 +010062
Eric Dumazet51f5f8c2010-03-10 17:13:36 +010063 ret = -ENODEV;
Johannes Berg0f782312009-12-01 13:37:02 +010064 rtnl_lock();
65 if (sdata->dev->reg_state == NETREG_REGISTERED)
66 ret = (*write)(sdata, buf, count);
67 rtnl_unlock();
68
69 return ret;
70}
71
Jiri Bence9f207f2007-05-05 11:46:38 -070072#define IEEE80211_IF_FMT(name, field, format_string) \
73static ssize_t ieee80211_if_fmt_##name( \
74 const struct ieee80211_sub_if_data *sdata, char *buf, \
75 int buflen) \
76{ \
77 return scnprintf(buf, buflen, format_string, sdata->field); \
78}
79#define IEEE80211_IF_FMT_DEC(name, field) \
80 IEEE80211_IF_FMT(name, field, "%d\n")
81#define IEEE80211_IF_FMT_HEX(name, field) \
82 IEEE80211_IF_FMT(name, field, "%#x\n")
Ben Greear4914b3b2011-01-27 22:09:34 -080083#define IEEE80211_IF_FMT_LHEX(name, field) \
84 IEEE80211_IF_FMT(name, field, "%#lx\n")
Jiri Bence9f207f2007-05-05 11:46:38 -070085#define IEEE80211_IF_FMT_SIZE(name, field) \
86 IEEE80211_IF_FMT(name, field, "%zd\n")
87
Simon Wunderlich19468412012-01-28 17:25:33 +010088#define IEEE80211_IF_FMT_HEXARRAY(name, field) \
89static ssize_t ieee80211_if_fmt_##name( \
90 const struct ieee80211_sub_if_data *sdata, \
91 char *buf, int buflen) \
92{ \
93 char *p = buf; \
94 int i; \
95 for (i = 0; i < sizeof(sdata->field); i++) { \
96 p += scnprintf(p, buflen + buf - p, "%.2x ", \
97 sdata->field[i]); \
98 } \
99 p += scnprintf(p, buflen + buf - p, "\n"); \
100 return p - buf; \
101}
102
Jiri Bence9f207f2007-05-05 11:46:38 -0700103#define IEEE80211_IF_FMT_ATOMIC(name, field) \
104static ssize_t ieee80211_if_fmt_##name( \
105 const struct ieee80211_sub_if_data *sdata, \
106 char *buf, int buflen) \
107{ \
108 return scnprintf(buf, buflen, "%d\n", atomic_read(&sdata->field));\
109}
110
111#define IEEE80211_IF_FMT_MAC(name, field) \
112static ssize_t ieee80211_if_fmt_##name( \
113 const struct ieee80211_sub_if_data *sdata, char *buf, \
114 int buflen) \
115{ \
Johannes Berg0c68ae262008-10-27 15:56:10 -0700116 return scnprintf(buf, buflen, "%pM\n", sdata->field); \
Jiri Bence9f207f2007-05-05 11:46:38 -0700117}
118
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700119#define IEEE80211_IF_FMT_DEC_DIV_16(name, field) \
120static ssize_t ieee80211_if_fmt_##name( \
121 const struct ieee80211_sub_if_data *sdata, \
122 char *buf, int buflen) \
123{ \
124 return scnprintf(buf, buflen, "%d\n", sdata->field / 16); \
125}
126
Ben Greear78e443e2013-03-25 11:19:34 -0700127#define IEEE80211_IF_FMT_JIFFIES_TO_MS(name, field) \
128static ssize_t ieee80211_if_fmt_##name( \
129 const struct ieee80211_sub_if_data *sdata, \
130 char *buf, int buflen) \
131{ \
132 return scnprintf(buf, buflen, "%d\n", \
133 jiffies_to_msecs(sdata->field)); \
134}
135
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100136#define _IEEE80211_IF_FILE_OPS(name, _read, _write) \
137static const struct file_operations name##_ops = { \
138 .read = (_read), \
139 .write = (_write), \
140 .open = simple_open, \
141 .llseek = generic_file_llseek, \
142}
143
144#define _IEEE80211_IF_FILE_R_FN(name) \
Jiri Bence9f207f2007-05-05 11:46:38 -0700145static ssize_t ieee80211_if_read_##name(struct file *file, \
146 char __user *userbuf, \
147 size_t count, loff_t *ppos) \
148{ \
149 return ieee80211_if_read(file->private_data, \
150 userbuf, count, ppos, \
151 ieee80211_if_fmt_##name); \
Jiri Bence9f207f2007-05-05 11:46:38 -0700152}
153
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100154#define _IEEE80211_IF_FILE_W_FN(name) \
Johannes Berg0f782312009-12-01 13:37:02 +0100155static ssize_t ieee80211_if_write_##name(struct file *file, \
156 const char __user *userbuf, \
157 size_t count, loff_t *ppos) \
158{ \
159 return ieee80211_if_write(file->private_data, userbuf, count, \
160 ppos, ieee80211_if_parse_##name); \
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100161}
Johannes Berg0f782312009-12-01 13:37:02 +0100162
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100163#define IEEE80211_IF_FILE_R(name) \
164 _IEEE80211_IF_FILE_R_FN(name) \
165 _IEEE80211_IF_FILE_OPS(name, ieee80211_if_read_##name, NULL)
166
167#define IEEE80211_IF_FILE_W(name) \
168 _IEEE80211_IF_FILE_W_FN(name) \
169 _IEEE80211_IF_FILE_OPS(name, NULL, ieee80211_if_write_##name)
170
171#define IEEE80211_IF_FILE_RW(name) \
172 _IEEE80211_IF_FILE_R_FN(name) \
173 _IEEE80211_IF_FILE_W_FN(name) \
174 _IEEE80211_IF_FILE_OPS(name, ieee80211_if_read_##name, \
175 ieee80211_if_write_##name)
Johannes Berg0f782312009-12-01 13:37:02 +0100176
Jiri Bence9f207f2007-05-05 11:46:38 -0700177#define IEEE80211_IF_FILE(name, field, format) \
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100178 IEEE80211_IF_FMT_##format(name, field) \
179 IEEE80211_IF_FILE_R(name)
Jiri Bence9f207f2007-05-05 11:46:38 -0700180
181/* common attributes */
Jiri Bence9f207f2007-05-05 11:46:38 -0700182IEEE80211_IF_FILE(drop_unencrypted, drop_unencrypted, DEC);
Jouni Malinen37eb0b12010-01-06 13:09:08 +0200183IEEE80211_IF_FILE(rc_rateidx_mask_2ghz, rc_rateidx_mask[IEEE80211_BAND_2GHZ],
184 HEX);
185IEEE80211_IF_FILE(rc_rateidx_mask_5ghz, rc_rateidx_mask[IEEE80211_BAND_5GHZ],
186 HEX);
Simon Wunderlich19468412012-01-28 17:25:33 +0100187IEEE80211_IF_FILE(rc_rateidx_mcs_mask_2ghz,
188 rc_rateidx_mcs_mask[IEEE80211_BAND_2GHZ], HEXARRAY);
189IEEE80211_IF_FILE(rc_rateidx_mcs_mask_5ghz,
190 rc_rateidx_mcs_mask[IEEE80211_BAND_5GHZ], HEXARRAY);
191
Ben Greear4914b3b2011-01-27 22:09:34 -0800192IEEE80211_IF_FILE(flags, flags, HEX);
193IEEE80211_IF_FILE(state, state, LHEX);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +0200194IEEE80211_IF_FILE(txpower, vif.bss_conf.txpower, DEC);
195IEEE80211_IF_FILE(ap_power_level, ap_power_level, DEC);
196IEEE80211_IF_FILE(user_power_level, user_power_level, DEC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700197
Johannes Berg08643312012-11-08 15:29:28 +0100198static ssize_t
199ieee80211_if_fmt_hw_queues(const struct ieee80211_sub_if_data *sdata,
200 char *buf, int buflen)
201{
202 int len;
203
204 len = scnprintf(buf, buflen, "AC queues: VO:%d VI:%d BE:%d BK:%d\n",
205 sdata->vif.hw_queue[IEEE80211_AC_VO],
206 sdata->vif.hw_queue[IEEE80211_AC_VI],
207 sdata->vif.hw_queue[IEEE80211_AC_BE],
208 sdata->vif.hw_queue[IEEE80211_AC_BK]);
209
210 if (sdata->vif.type == NL80211_IFTYPE_AP)
211 len += scnprintf(buf + len, buflen - len, "cab queue: %d\n",
212 sdata->vif.cab_queue);
213
214 return len;
215}
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100216IEEE80211_IF_FILE_R(hw_queues);
Johannes Berg08643312012-11-08 15:29:28 +0100217
Johannes Berg46900292009-02-15 12:44:28 +0100218/* STA attributes */
Johannes Berg46900292009-02-15 12:44:28 +0100219IEEE80211_IF_FILE(bssid, u.mgd.bssid, MAC);
Johannes Berg46900292009-02-15 12:44:28 +0100220IEEE80211_IF_FILE(aid, u.mgd.aid, DEC);
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700221IEEE80211_IF_FILE(last_beacon, u.mgd.last_beacon_signal, DEC);
222IEEE80211_IF_FILE(ave_beacon, u.mgd.ave_beacon_signal, DEC_DIV_16);
Ben Greear78e443e2013-03-25 11:19:34 -0700223IEEE80211_IF_FILE(beacon_timeout, u.mgd.beacon_timeout, JIFFIES_TO_MS);
Jiri Bence9f207f2007-05-05 11:46:38 -0700224
Johannes Berg0f782312009-12-01 13:37:02 +0100225static int ieee80211_set_smps(struct ieee80211_sub_if_data *sdata,
226 enum ieee80211_smps_mode smps_mode)
227{
228 struct ieee80211_local *local = sdata->local;
229 int err;
230
231 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_STATIC_SMPS) &&
232 smps_mode == IEEE80211_SMPS_STATIC)
233 return -EINVAL;
234
235 /* auto should be dynamic if in PS mode */
236 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS) &&
237 (smps_mode == IEEE80211_SMPS_DYNAMIC ||
238 smps_mode == IEEE80211_SMPS_AUTOMATIC))
239 return -EINVAL;
240
Emmanuel Grumbach687da132013-10-01 16:45:43 +0300241 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
242 sdata->vif.type != NL80211_IFTYPE_AP)
Johannes Berg0f782312009-12-01 13:37:02 +0100243 return -EOPNOTSUPP;
244
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200245 sdata_lock(sdata);
Emmanuel Grumbach687da132013-10-01 16:45:43 +0300246 if (sdata->vif.type == NL80211_IFTYPE_STATION)
247 err = __ieee80211_request_smps_mgd(sdata, smps_mode);
248 else
249 err = __ieee80211_request_smps_ap(sdata, smps_mode);
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200250 sdata_unlock(sdata);
Johannes Berg0f782312009-12-01 13:37:02 +0100251
252 return err;
253}
254
255static const char *smps_modes[IEEE80211_SMPS_NUM_MODES] = {
256 [IEEE80211_SMPS_AUTOMATIC] = "auto",
257 [IEEE80211_SMPS_OFF] = "off",
258 [IEEE80211_SMPS_STATIC] = "static",
259 [IEEE80211_SMPS_DYNAMIC] = "dynamic",
260};
261
262static ssize_t ieee80211_if_fmt_smps(const struct ieee80211_sub_if_data *sdata,
263 char *buf, int buflen)
264{
Emmanuel Grumbach687da132013-10-01 16:45:43 +0300265 if (sdata->vif.type == NL80211_IFTYPE_STATION)
266 return snprintf(buf, buflen, "request: %s\nused: %s\n",
267 smps_modes[sdata->u.mgd.req_smps],
268 smps_modes[sdata->smps_mode]);
269 if (sdata->vif.type == NL80211_IFTYPE_AP)
270 return snprintf(buf, buflen, "request: %s\nused: %s\n",
271 smps_modes[sdata->u.ap.req_smps],
272 smps_modes[sdata->smps_mode]);
273 return -EINVAL;
Johannes Berg0f782312009-12-01 13:37:02 +0100274}
275
276static ssize_t ieee80211_if_parse_smps(struct ieee80211_sub_if_data *sdata,
277 const char *buf, int buflen)
278{
279 enum ieee80211_smps_mode mode;
280
281 for (mode = 0; mode < IEEE80211_SMPS_NUM_MODES; mode++) {
282 if (strncmp(buf, smps_modes[mode], buflen) == 0) {
283 int err = ieee80211_set_smps(sdata, mode);
284 if (!err)
285 return buflen;
286 return err;
287 }
288 }
289
290 return -EINVAL;
291}
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100292IEEE80211_IF_FILE_RW(smps);
Jouni Malinen681d1192011-02-03 18:35:19 +0200293
Jouni Malinen681d1192011-02-03 18:35:19 +0200294static ssize_t ieee80211_if_parse_tkip_mic_test(
295 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
296{
297 struct ieee80211_local *local = sdata->local;
298 u8 addr[ETH_ALEN];
299 struct sk_buff *skb;
300 struct ieee80211_hdr *hdr;
301 __le16 fc;
302
Johannes Berg28656a12012-11-05 20:24:38 +0100303 if (!mac_pton(buf, addr))
Jouni Malinen681d1192011-02-03 18:35:19 +0200304 return -EINVAL;
305
306 if (!ieee80211_sdata_running(sdata))
307 return -ENOTCONN;
308
309 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 24 + 100);
310 if (!skb)
311 return -ENOMEM;
312 skb_reserve(skb, local->hw.extra_tx_headroom);
313
314 hdr = (struct ieee80211_hdr *) skb_put(skb, 24);
315 memset(hdr, 0, 24);
316 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
317
318 switch (sdata->vif.type) {
319 case NL80211_IFTYPE_AP:
320 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
321 /* DA BSSID SA */
322 memcpy(hdr->addr1, addr, ETH_ALEN);
323 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
324 memcpy(hdr->addr3, sdata->vif.addr, ETH_ALEN);
325 break;
326 case NL80211_IFTYPE_STATION:
327 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
328 /* BSSID SA DA */
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200329 sdata_lock(sdata);
Johannes Berg41c97a22012-11-05 20:27:57 +0100330 if (!sdata->u.mgd.associated) {
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200331 sdata_unlock(sdata);
Jouni Malinen681d1192011-02-03 18:35:19 +0200332 dev_kfree_skb(skb);
333 return -ENOTCONN;
334 }
Johannes Berg41c97a22012-11-05 20:27:57 +0100335 memcpy(hdr->addr1, sdata->u.mgd.associated->bssid, ETH_ALEN);
Jouni Malinen681d1192011-02-03 18:35:19 +0200336 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
337 memcpy(hdr->addr3, addr, ETH_ALEN);
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200338 sdata_unlock(sdata);
Jouni Malinen681d1192011-02-03 18:35:19 +0200339 break;
340 default:
341 dev_kfree_skb(skb);
342 return -EOPNOTSUPP;
343 }
344 hdr->frame_control = fc;
345
346 /*
347 * Add some length to the test frame to make it look bit more valid.
348 * The exact contents does not matter since the recipient is required
349 * to drop this because of the Michael MIC failure.
350 */
351 memset(skb_put(skb, 50), 0, 50);
352
353 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_TKIP_MIC_FAILURE;
354
355 ieee80211_tx_skb(sdata, skb);
356
357 return buflen;
358}
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100359IEEE80211_IF_FILE_W(tkip_mic_test);
Jouni Malinen681d1192011-02-03 18:35:19 +0200360
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200361static ssize_t ieee80211_if_fmt_uapsd_queues(
362 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
363{
364 const struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
365
366 return snprintf(buf, buflen, "0x%x\n", ifmgd->uapsd_queues);
367}
368
369static ssize_t ieee80211_if_parse_uapsd_queues(
370 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
371{
372 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
373 u8 val;
374 int ret;
375
376 ret = kstrtou8(buf, 0, &val);
377 if (ret)
378 return ret;
379
380 if (val & ~IEEE80211_WMM_IE_STA_QOSINFO_AC_MASK)
381 return -ERANGE;
382
383 ifmgd->uapsd_queues = val;
384
385 return buflen;
386}
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100387IEEE80211_IF_FILE_RW(uapsd_queues);
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200388
389static ssize_t ieee80211_if_fmt_uapsd_max_sp_len(
390 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
391{
392 const struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
393
394 return snprintf(buf, buflen, "0x%x\n", ifmgd->uapsd_max_sp_len);
395}
396
397static ssize_t ieee80211_if_parse_uapsd_max_sp_len(
398 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
399{
400 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
401 unsigned long val;
402 int ret;
403
404 ret = kstrtoul(buf, 0, &val);
405 if (ret)
406 return -EINVAL;
407
408 if (val & ~IEEE80211_WMM_IE_STA_QOSINFO_SP_MASK)
409 return -ERANGE;
410
411 ifmgd->uapsd_max_sp_len = val;
412
413 return buflen;
414}
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100415IEEE80211_IF_FILE_RW(uapsd_max_sp_len);
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200416
Jiri Bence9f207f2007-05-05 11:46:38 -0700417/* AP attributes */
Felix Fietkau030ef8f2012-04-23 19:49:02 +0200418IEEE80211_IF_FILE(num_mcast_sta, u.ap.num_mcast_sta, ATOMIC);
Marco Porschd012a602012-10-10 12:39:50 -0700419IEEE80211_IF_FILE(num_sta_ps, u.ap.ps.num_sta_ps, ATOMIC);
420IEEE80211_IF_FILE(dtim_count, u.ap.ps.dtim_count, DEC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700421
422static ssize_t ieee80211_if_fmt_num_buffered_multicast(
423 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
424{
425 return scnprintf(buf, buflen, "%u\n",
Marco Porschd012a602012-10-10 12:39:50 -0700426 skb_queue_len(&sdata->u.ap.ps.bc_buf));
Jiri Bence9f207f2007-05-05 11:46:38 -0700427}
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100428IEEE80211_IF_FILE_R(num_buffered_multicast);
Jiri Bence9f207f2007-05-05 11:46:38 -0700429
Eliad Peller37a41b42011-09-21 14:06:11 +0300430/* IBSS attributes */
431static ssize_t ieee80211_if_fmt_tsf(
432 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
433{
434 struct ieee80211_local *local = sdata->local;
435 u64 tsf;
436
437 tsf = drv_get_tsf(local, (struct ieee80211_sub_if_data *)sdata);
438
439 return scnprintf(buf, buflen, "0x%016llx\n", (unsigned long long) tsf);
440}
441
442static ssize_t ieee80211_if_parse_tsf(
443 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
444{
445 struct ieee80211_local *local = sdata->local;
446 unsigned long long tsf;
447 int ret;
Javier Cardona9bdd3a62012-03-31 11:31:31 -0700448 int tsf_is_delta = 0;
Eliad Peller37a41b42011-09-21 14:06:11 +0300449
450 if (strncmp(buf, "reset", 5) == 0) {
451 if (local->ops->reset_tsf) {
452 drv_reset_tsf(local, sdata);
453 wiphy_info(local->hw.wiphy, "debugfs reset TSF\n");
454 }
455 } else {
Javier Cardona9bdd3a62012-03-31 11:31:31 -0700456 if (buflen > 10 && buf[1] == '=') {
457 if (buf[0] == '+')
458 tsf_is_delta = 1;
459 else if (buf[0] == '-')
460 tsf_is_delta = -1;
461 else
462 return -EINVAL;
463 buf += 2;
464 }
Eliad Peller37a41b42011-09-21 14:06:11 +0300465 ret = kstrtoull(buf, 10, &tsf);
466 if (ret < 0)
Johannes Berg6fc1da92012-11-05 20:30:39 +0100467 return ret;
Javier Cardona9bdd3a62012-03-31 11:31:31 -0700468 if (tsf_is_delta)
469 tsf = drv_get_tsf(local, sdata) + tsf_is_delta * tsf;
Eliad Peller37a41b42011-09-21 14:06:11 +0300470 if (local->ops->set_tsf) {
471 drv_set_tsf(local, sdata, tsf);
472 wiphy_info(local->hw.wiphy,
473 "debugfs set TSF to %#018llx\n", tsf);
474 }
475 }
476
Thomas Pedersen057d5f42013-12-19 10:25:15 -0800477 ieee80211_recalc_dtim(local, sdata);
Eliad Peller37a41b42011-09-21 14:06:11 +0300478 return buflen;
479}
Johannes Berg4cd3c4e2014-01-06 15:47:15 +0100480IEEE80211_IF_FILE_RW(tsf);
Eliad Peller37a41b42011-09-21 14:06:11 +0300481
482
Jiri Bence9f207f2007-05-05 11:46:38 -0700483/* WDS attributes */
484IEEE80211_IF_FILE(peer, u.wds.remote_addr, MAC);
485
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100486#ifdef CONFIG_MAC80211_MESH
Ashok Nagarajand4a5a482013-05-13 17:08:04 -0700487IEEE80211_IF_FILE(estab_plinks, u.mesh.estab_plinks, ATOMIC);
488
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100489/* Mesh stats attributes */
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700490IEEE80211_IF_FILE(fwded_mcast, u.mesh.mshstats.fwded_mcast, DEC);
491IEEE80211_IF_FILE(fwded_unicast, u.mesh.mshstats.fwded_unicast, DEC);
Johannes Berg472dbc42008-09-11 00:01:49 +0200492IEEE80211_IF_FILE(fwded_frames, u.mesh.mshstats.fwded_frames, DEC);
493IEEE80211_IF_FILE(dropped_frames_ttl, u.mesh.mshstats.dropped_frames_ttl, DEC);
Javier Cardonacfee66b2011-09-06 13:05:21 -0700494IEEE80211_IF_FILE(dropped_frames_congestion,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800495 u.mesh.mshstats.dropped_frames_congestion, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100496IEEE80211_IF_FILE(dropped_frames_no_route,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800497 u.mesh.mshstats.dropped_frames_no_route, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100498
499/* Mesh parameters */
Johannes Berg36ff3822008-10-07 12:04:31 +0200500IEEE80211_IF_FILE(dot11MeshMaxRetries,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800501 u.mesh.mshcfg.dot11MeshMaxRetries, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200502IEEE80211_IF_FILE(dot11MeshRetryTimeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800503 u.mesh.mshcfg.dot11MeshRetryTimeout, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200504IEEE80211_IF_FILE(dot11MeshConfirmTimeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800505 u.mesh.mshcfg.dot11MeshConfirmTimeout, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200506IEEE80211_IF_FILE(dot11MeshHoldingTimeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800507 u.mesh.mshcfg.dot11MeshHoldingTimeout, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200508IEEE80211_IF_FILE(dot11MeshTTL, u.mesh.mshcfg.dot11MeshTTL, DEC);
Javier Cardona45904f22010-12-03 09:20:40 +0100509IEEE80211_IF_FILE(element_ttl, u.mesh.mshcfg.element_ttl, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200510IEEE80211_IF_FILE(auto_open_plinks, u.mesh.mshcfg.auto_open_plinks, DEC);
511IEEE80211_IF_FILE(dot11MeshMaxPeerLinks,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800512 u.mesh.mshcfg.dot11MeshMaxPeerLinks, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200513IEEE80211_IF_FILE(dot11MeshHWMPactivePathTimeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800514 u.mesh.mshcfg.dot11MeshHWMPactivePathTimeout, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200515IEEE80211_IF_FILE(dot11MeshHWMPpreqMinInterval,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800516 u.mesh.mshcfg.dot11MeshHWMPpreqMinInterval, DEC);
Thomas Pedersendca7e942011-11-24 17:15:24 -0800517IEEE80211_IF_FILE(dot11MeshHWMPperrMinInterval,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800518 u.mesh.mshcfg.dot11MeshHWMPperrMinInterval, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200519IEEE80211_IF_FILE(dot11MeshHWMPnetDiameterTraversalTime,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800520 u.mesh.mshcfg.dot11MeshHWMPnetDiameterTraversalTime, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200521IEEE80211_IF_FILE(dot11MeshHWMPmaxPREQretries,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800522 u.mesh.mshcfg.dot11MeshHWMPmaxPREQretries, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200523IEEE80211_IF_FILE(path_refresh_time,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800524 u.mesh.mshcfg.path_refresh_time, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200525IEEE80211_IF_FILE(min_discovery_timeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800526 u.mesh.mshcfg.min_discovery_timeout, DEC);
Rui Paulo63c57232009-11-09 23:46:57 +0000527IEEE80211_IF_FILE(dot11MeshHWMPRootMode,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800528 u.mesh.mshcfg.dot11MeshHWMPRootMode, DEC);
Javier Cardona16dd7262011-08-09 16:45:11 -0700529IEEE80211_IF_FILE(dot11MeshGateAnnouncementProtocol,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800530 u.mesh.mshcfg.dot11MeshGateAnnouncementProtocol, DEC);
Javier Cardona0507e152011-08-09 16:45:10 -0700531IEEE80211_IF_FILE(dot11MeshHWMPRannInterval,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800532 u.mesh.mshcfg.dot11MeshHWMPRannInterval, DEC);
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +0800533IEEE80211_IF_FILE(dot11MeshForwarding, u.mesh.mshcfg.dot11MeshForwarding, DEC);
Ashok Nagarajan55335132012-02-28 17:04:08 -0800534IEEE80211_IF_FILE(rssi_threshold, u.mesh.mshcfg.rssi_threshold, DEC);
Ashok Nagarajan4416f5d2012-05-07 21:00:32 -0700535IEEE80211_IF_FILE(ht_opmode, u.mesh.mshcfg.ht_opmode, DEC);
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +0800536IEEE80211_IF_FILE(dot11MeshHWMPactivePathToRootTimeout,
537 u.mesh.mshcfg.dot11MeshHWMPactivePathToRootTimeout, DEC);
538IEEE80211_IF_FILE(dot11MeshHWMProotInterval,
539 u.mesh.mshcfg.dot11MeshHWMProotInterval, DEC);
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +0800540IEEE80211_IF_FILE(dot11MeshHWMPconfirmationInterval,
541 u.mesh.mshcfg.dot11MeshHWMPconfirmationInterval, DEC);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100542IEEE80211_IF_FILE(power_mode, u.mesh.mshcfg.power_mode, DEC);
543IEEE80211_IF_FILE(dot11MeshAwakeWindowDuration,
544 u.mesh.mshcfg.dot11MeshAwakeWindowDuration, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100545#endif
546
Johannes Berg0f782312009-12-01 13:37:02 +0100547#define DEBUGFS_ADD_MODE(name, mode) \
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100548 debugfs_create_file(#name, mode, sdata->vif.debugfs_dir, \
Johannes Berg0f782312009-12-01 13:37:02 +0100549 sdata, &name##_ops);
550
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100551#define DEBUGFS_ADD(name) DEBUGFS_ADD_MODE(name, 0400)
552
553static void add_common_files(struct ieee80211_sub_if_data *sdata)
Jiri Bence9f207f2007-05-05 11:46:38 -0700554{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100555 DEBUGFS_ADD(drop_unencrypted);
556 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
557 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
Simon Wunderlich19468412012-01-28 17:25:33 +0100558 DEBUGFS_ADD(rc_rateidx_mcs_mask_2ghz);
559 DEBUGFS_ADD(rc_rateidx_mcs_mask_5ghz);
Johannes Berg08643312012-11-08 15:29:28 +0100560 DEBUGFS_ADD(hw_queues);
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100561}
Johannes Berg3e122be2008-07-09 14:40:34 +0200562
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100563static void add_sta_files(struct ieee80211_sub_if_data *sdata)
564{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100565 DEBUGFS_ADD(bssid);
566 DEBUGFS_ADD(aid);
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700567 DEBUGFS_ADD(last_beacon);
568 DEBUGFS_ADD(ave_beacon);
Ben Greear78e443e2013-03-25 11:19:34 -0700569 DEBUGFS_ADD(beacon_timeout);
Johannes Berg0f782312009-12-01 13:37:02 +0100570 DEBUGFS_ADD_MODE(smps, 0600);
Jouni Malinen681d1192011-02-03 18:35:19 +0200571 DEBUGFS_ADD_MODE(tkip_mic_test, 0200);
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200572 DEBUGFS_ADD_MODE(uapsd_queues, 0600);
573 DEBUGFS_ADD_MODE(uapsd_max_sp_len, 0600);
Jiri Bence9f207f2007-05-05 11:46:38 -0700574}
575
576static void add_ap_files(struct ieee80211_sub_if_data *sdata)
577{
Felix Fietkau030ef8f2012-04-23 19:49:02 +0200578 DEBUGFS_ADD(num_mcast_sta);
Emmanuel Grumbach687da132013-10-01 16:45:43 +0300579 DEBUGFS_ADD_MODE(smps, 0600);
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100580 DEBUGFS_ADD(num_sta_ps);
581 DEBUGFS_ADD(dtim_count);
582 DEBUGFS_ADD(num_buffered_multicast);
Jouni Malinen681d1192011-02-03 18:35:19 +0200583 DEBUGFS_ADD_MODE(tkip_mic_test, 0200);
Jiri Bence9f207f2007-05-05 11:46:38 -0700584}
585
Eliad Peller37a41b42011-09-21 14:06:11 +0300586static void add_ibss_files(struct ieee80211_sub_if_data *sdata)
587{
588 DEBUGFS_ADD_MODE(tsf, 0600);
589}
590
Jiri Bence9f207f2007-05-05 11:46:38 -0700591static void add_wds_files(struct ieee80211_sub_if_data *sdata)
592{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100593 DEBUGFS_ADD(peer);
Jiri Bence9f207f2007-05-05 11:46:38 -0700594}
595
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100596#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100597
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800598static void add_mesh_files(struct ieee80211_sub_if_data *sdata)
599{
600 DEBUGFS_ADD_MODE(tsf, 0600);
Ashok Nagarajand4a5a482013-05-13 17:08:04 -0700601 DEBUGFS_ADD_MODE(estab_plinks, 0400);
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800602}
603
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100604static void add_mesh_stats(struct ieee80211_sub_if_data *sdata)
605{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100606 struct dentry *dir = debugfs_create_dir("mesh_stats",
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100607 sdata->vif.debugfs_dir);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100608#define MESHSTATS_ADD(name)\
609 debugfs_create_file(#name, 0400, dir, sdata, &name##_ops);
610
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700611 MESHSTATS_ADD(fwded_mcast);
612 MESHSTATS_ADD(fwded_unicast);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100613 MESHSTATS_ADD(fwded_frames);
614 MESHSTATS_ADD(dropped_frames_ttl);
615 MESHSTATS_ADD(dropped_frames_no_route);
Javier Cardonacfee66b2011-09-06 13:05:21 -0700616 MESHSTATS_ADD(dropped_frames_congestion);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100617#undef MESHSTATS_ADD
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100618}
619
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100620static void add_mesh_config(struct ieee80211_sub_if_data *sdata)
621{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100622 struct dentry *dir = debugfs_create_dir("mesh_config",
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100623 sdata->vif.debugfs_dir);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100624
625#define MESHPARAMS_ADD(name) \
626 debugfs_create_file(#name, 0600, dir, sdata, &name##_ops);
627
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100628 MESHPARAMS_ADD(dot11MeshMaxRetries);
629 MESHPARAMS_ADD(dot11MeshRetryTimeout);
630 MESHPARAMS_ADD(dot11MeshConfirmTimeout);
631 MESHPARAMS_ADD(dot11MeshHoldingTimeout);
632 MESHPARAMS_ADD(dot11MeshTTL);
Javier Cardona45904f22010-12-03 09:20:40 +0100633 MESHPARAMS_ADD(element_ttl);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100634 MESHPARAMS_ADD(auto_open_plinks);
635 MESHPARAMS_ADD(dot11MeshMaxPeerLinks);
636 MESHPARAMS_ADD(dot11MeshHWMPactivePathTimeout);
637 MESHPARAMS_ADD(dot11MeshHWMPpreqMinInterval);
Thomas Pedersendca7e942011-11-24 17:15:24 -0800638 MESHPARAMS_ADD(dot11MeshHWMPperrMinInterval);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100639 MESHPARAMS_ADD(dot11MeshHWMPnetDiameterTraversalTime);
640 MESHPARAMS_ADD(dot11MeshHWMPmaxPREQretries);
641 MESHPARAMS_ADD(path_refresh_time);
642 MESHPARAMS_ADD(min_discovery_timeout);
Javier Cardona699403d2011-08-09 16:45:09 -0700643 MESHPARAMS_ADD(dot11MeshHWMPRootMode);
Javier Cardona0507e152011-08-09 16:45:10 -0700644 MESHPARAMS_ADD(dot11MeshHWMPRannInterval);
Chun-Yeow Yeoh8c06e8c2012-05-31 18:17:30 +0800645 MESHPARAMS_ADD(dot11MeshForwarding);
Javier Cardona16dd7262011-08-09 16:45:11 -0700646 MESHPARAMS_ADD(dot11MeshGateAnnouncementProtocol);
Ashok Nagarajan55335132012-02-28 17:04:08 -0800647 MESHPARAMS_ADD(rssi_threshold);
Ashok Nagarajan4416f5d2012-05-07 21:00:32 -0700648 MESHPARAMS_ADD(ht_opmode);
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +0800649 MESHPARAMS_ADD(dot11MeshHWMPactivePathToRootTimeout);
650 MESHPARAMS_ADD(dot11MeshHWMProotInterval);
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +0800651 MESHPARAMS_ADD(dot11MeshHWMPconfirmationInterval);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100652 MESHPARAMS_ADD(power_mode);
653 MESHPARAMS_ADD(dot11MeshAwakeWindowDuration);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100654#undef MESHPARAMS_ADD
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100655}
656#endif
657
Jiri Bence9f207f2007-05-05 11:46:38 -0700658static void add_files(struct ieee80211_sub_if_data *sdata)
659{
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100660 if (!sdata->vif.debugfs_dir)
Jiri Bence9f207f2007-05-05 11:46:38 -0700661 return;
662
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100663 DEBUGFS_ADD(flags);
664 DEBUGFS_ADD(state);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +0200665 DEBUGFS_ADD(txpower);
666 DEBUGFS_ADD(user_power_level);
667 DEBUGFS_ADD(ap_power_level);
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100668
669 if (sdata->vif.type != NL80211_IFTYPE_MONITOR)
670 add_common_files(sdata);
671
Johannes Berg51fb61e2007-12-19 01:31:27 +0100672 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200673 case NL80211_IFTYPE_MESH_POINT:
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100674#ifdef CONFIG_MAC80211_MESH
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800675 add_mesh_files(sdata);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100676 add_mesh_stats(sdata);
677 add_mesh_config(sdata);
678#endif
Johannes Berg472dbc42008-09-11 00:01:49 +0200679 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200680 case NL80211_IFTYPE_STATION:
Jiri Bence9f207f2007-05-05 11:46:38 -0700681 add_sta_files(sdata);
682 break;
Johannes Berg46900292009-02-15 12:44:28 +0100683 case NL80211_IFTYPE_ADHOC:
Eliad Peller37a41b42011-09-21 14:06:11 +0300684 add_ibss_files(sdata);
Johannes Berg46900292009-02-15 12:44:28 +0100685 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200686 case NL80211_IFTYPE_AP:
Jiri Bence9f207f2007-05-05 11:46:38 -0700687 add_ap_files(sdata);
688 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200689 case NL80211_IFTYPE_WDS:
Jiri Bence9f207f2007-05-05 11:46:38 -0700690 add_wds_files(sdata);
691 break;
Jiri Bence9f207f2007-05-05 11:46:38 -0700692 default:
693 break;
694 }
695}
696
Jiri Bence9f207f2007-05-05 11:46:38 -0700697void ieee80211_debugfs_add_netdev(struct ieee80211_sub_if_data *sdata)
698{
699 char buf[10+IFNAMSIZ];
700
Johannes Berg47846c92009-11-25 17:46:19 +0100701 sprintf(buf, "netdev:%s", sdata->name);
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100702 sdata->vif.debugfs_dir = debugfs_create_dir(buf,
Jiri Bence9f207f2007-05-05 11:46:38 -0700703 sdata->local->hw.wiphy->debugfsdir);
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100704 if (sdata->vif.debugfs_dir)
Ben Greear295bafb2010-09-22 20:29:01 -0700705 sdata->debugfs.subdir_stations = debugfs_create_dir("stations",
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100706 sdata->vif.debugfs_dir);
Johannes Berg75636522008-07-09 14:40:35 +0200707 add_files(sdata);
Jiri Bence9f207f2007-05-05 11:46:38 -0700708}
709
710void ieee80211_debugfs_remove_netdev(struct ieee80211_sub_if_data *sdata)
711{
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100712 if (!sdata->vif.debugfs_dir)
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100713 return;
714
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100715 debugfs_remove_recursive(sdata->vif.debugfs_dir);
716 sdata->vif.debugfs_dir = NULL;
Jiri Bence9f207f2007-05-05 11:46:38 -0700717}
718
Johannes Berg47846c92009-11-25 17:46:19 +0100719void ieee80211_debugfs_rename_netdev(struct ieee80211_sub_if_data *sdata)
Jiri Bence9f207f2007-05-05 11:46:38 -0700720{
Johannes Berg7c8081e2007-06-21 18:30:19 +0200721 struct dentry *dir;
Johannes Berg47846c92009-11-25 17:46:19 +0100722 char buf[10 + IFNAMSIZ];
Johannes Berg3e122be2008-07-09 14:40:34 +0200723
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100724 dir = sdata->vif.debugfs_dir;
Johannes Bergc74e90a2008-10-08 10:18:36 +0200725
726 if (!dir)
Johannes Berg47846c92009-11-25 17:46:19 +0100727 return;
Johannes Bergc74e90a2008-10-08 10:18:36 +0200728
Johannes Berg47846c92009-11-25 17:46:19 +0100729 sprintf(buf, "netdev:%s", sdata->name);
Johannes Berg7c8081e2007-06-21 18:30:19 +0200730 if (!debugfs_rename(dir->d_parent, dir, dir->d_parent, buf))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200731 sdata_err(sdata,
732 "debugfs: failed to rename debugfs dir to %s\n",
733 buf);
Jiri Bence9f207f2007-05-05 11:46:38 -0700734}