2 * Copyright (c) 2006 Jiri Benc <jbenc@suse.cz>
3 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
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.
10 #include <linux/kernel.h>
11 #include <linux/device.h>
13 #include <linux/if_ether.h>
14 #include <linux/interrupt.h>
15 #include <linux/netdevice.h>
16 #include <linux/rtnetlink.h>
17 #include <linux/slab.h>
18 #include <linux/notifier.h>
19 #include <net/mac80211.h>
20 #include <net/cfg80211.h>
21 #include "ieee80211_i.h"
24 #include "debugfs_netdev.h"
25 #include "driver-ops.h"
27 static ssize_t
ieee80211_if_read(
28 struct ieee80211_sub_if_data
*sdata
,
30 size_t count
, loff_t
*ppos
,
31 ssize_t (*format
)(const struct ieee80211_sub_if_data
*, char *, int))
34 ssize_t ret
= -EINVAL
;
36 read_lock(&dev_base_lock
);
37 ret
= (*format
)(sdata
, buf
, sizeof(buf
));
38 read_unlock(&dev_base_lock
);
41 ret
= simple_read_from_buffer(userbuf
, count
, ppos
, buf
, ret
);
46 static 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))
55 if (count
>= sizeof(buf
))
58 if (copy_from_user(buf
, userbuf
, count
))
64 ret
= (*write
)(sdata
, buf
, count
);
70 #define IEEE80211_IF_FMT(name, field, format_string) \
71 static ssize_t ieee80211_if_fmt_##name( \
72 const struct ieee80211_sub_if_data *sdata, char *buf, \
75 return scnprintf(buf, buflen, format_string, sdata->field); \
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")
81 #define IEEE80211_IF_FMT_LHEX(name, field) \
82 IEEE80211_IF_FMT(name, field, "%#lx\n")
83 #define IEEE80211_IF_FMT_SIZE(name, field) \
84 IEEE80211_IF_FMT(name, field, "%zd\n")
86 #define IEEE80211_IF_FMT_HEXARRAY(name, field) \
87 static ssize_t ieee80211_if_fmt_##name( \
88 const struct ieee80211_sub_if_data *sdata, \
89 char *buf, int buflen) \
93 for (i = 0; i < sizeof(sdata->field); i++) { \
94 p += scnprintf(p, buflen + buf - p, "%.2x ", \
97 p += scnprintf(p, buflen + buf - p, "\n"); \
101 #define IEEE80211_IF_FMT_ATOMIC(name, field) \
102 static ssize_t ieee80211_if_fmt_##name( \
103 const struct ieee80211_sub_if_data *sdata, \
104 char *buf, int buflen) \
106 return scnprintf(buf, buflen, "%d\n", atomic_read(&sdata->field));\
109 #define IEEE80211_IF_FMT_MAC(name, field) \
110 static ssize_t ieee80211_if_fmt_##name( \
111 const struct ieee80211_sub_if_data *sdata, char *buf, \
114 return scnprintf(buf, buflen, "%pM\n", sdata->field); \
117 #define IEEE80211_IF_FMT_JIFFIES_TO_MS(name, field) \
118 static ssize_t ieee80211_if_fmt_##name( \
119 const struct ieee80211_sub_if_data *sdata, \
120 char *buf, int buflen) \
122 return scnprintf(buf, buflen, "%d\n", \
123 jiffies_to_msecs(sdata->field)); \
126 #define _IEEE80211_IF_FILE_OPS(name, _read, _write) \
127 static const struct file_operations name##_ops = { \
130 .open = simple_open, \
131 .llseek = generic_file_llseek, \
134 #define _IEEE80211_IF_FILE_R_FN(name) \
135 static ssize_t ieee80211_if_read_##name(struct file *file, \
136 char __user *userbuf, \
137 size_t count, loff_t *ppos) \
139 return ieee80211_if_read(file->private_data, \
140 userbuf, count, ppos, \
141 ieee80211_if_fmt_##name); \
144 #define _IEEE80211_IF_FILE_W_FN(name) \
145 static ssize_t ieee80211_if_write_##name(struct file *file, \
146 const char __user *userbuf, \
147 size_t count, loff_t *ppos) \
149 return ieee80211_if_write(file->private_data, userbuf, count, \
150 ppos, ieee80211_if_parse_##name); \
153 #define IEEE80211_IF_FILE_R(name) \
154 _IEEE80211_IF_FILE_R_FN(name) \
155 _IEEE80211_IF_FILE_OPS(name, ieee80211_if_read_##name, NULL)
157 #define IEEE80211_IF_FILE_W(name) \
158 _IEEE80211_IF_FILE_W_FN(name) \
159 _IEEE80211_IF_FILE_OPS(name, NULL, ieee80211_if_write_##name)
161 #define IEEE80211_IF_FILE_RW(name) \
162 _IEEE80211_IF_FILE_R_FN(name) \
163 _IEEE80211_IF_FILE_W_FN(name) \
164 _IEEE80211_IF_FILE_OPS(name, ieee80211_if_read_##name, \
165 ieee80211_if_write_##name)
167 #define IEEE80211_IF_FILE(name, field, format) \
168 IEEE80211_IF_FMT_##format(name, field) \
169 IEEE80211_IF_FILE_R(name)
171 /* common attributes */
172 IEEE80211_IF_FILE(rc_rateidx_mask_2ghz
, rc_rateidx_mask
[NL80211_BAND_2GHZ
],
174 IEEE80211_IF_FILE(rc_rateidx_mask_5ghz
, rc_rateidx_mask
[NL80211_BAND_5GHZ
],
176 IEEE80211_IF_FILE(rc_rateidx_mcs_mask_2ghz
,
177 rc_rateidx_mcs_mask
[NL80211_BAND_2GHZ
], HEXARRAY
);
178 IEEE80211_IF_FILE(rc_rateidx_mcs_mask_5ghz
,
179 rc_rateidx_mcs_mask
[NL80211_BAND_5GHZ
], HEXARRAY
);
181 static ssize_t
ieee80211_if_fmt_rc_rateidx_vht_mcs_mask_2ghz(
182 const struct ieee80211_sub_if_data
*sdata
,
183 char *buf
, int buflen
)
186 const u16
*mask
= sdata
->rc_rateidx_vht_mcs_mask
[NL80211_BAND_2GHZ
];
188 for (i
= 0; i
< NL80211_VHT_NSS_MAX
; i
++)
189 len
+= scnprintf(buf
+ len
, buflen
- len
, "%04x ", mask
[i
]);
190 len
+= scnprintf(buf
+ len
, buflen
- len
, "\n");
195 IEEE80211_IF_FILE_R(rc_rateidx_vht_mcs_mask_2ghz
);
197 static ssize_t
ieee80211_if_fmt_rc_rateidx_vht_mcs_mask_5ghz(
198 const struct ieee80211_sub_if_data
*sdata
,
199 char *buf
, int buflen
)
202 const u16
*mask
= sdata
->rc_rateidx_vht_mcs_mask
[NL80211_BAND_5GHZ
];
204 for (i
= 0; i
< NL80211_VHT_NSS_MAX
; i
++)
205 len
+= scnprintf(buf
+ len
, buflen
- len
, "%04x ", mask
[i
]);
206 len
+= scnprintf(buf
+ len
, buflen
- len
, "\n");
211 IEEE80211_IF_FILE_R(rc_rateidx_vht_mcs_mask_5ghz
);
213 IEEE80211_IF_FILE(flags
, flags
, HEX
);
214 IEEE80211_IF_FILE(state
, state
, LHEX
);
215 IEEE80211_IF_FILE(txpower
, vif
.bss_conf
.txpower
, DEC
);
216 IEEE80211_IF_FILE(ap_power_level
, ap_power_level
, DEC
);
217 IEEE80211_IF_FILE(user_power_level
, user_power_level
, DEC
);
220 ieee80211_if_fmt_hw_queues(const struct ieee80211_sub_if_data
*sdata
,
221 char *buf
, int buflen
)
225 len
= scnprintf(buf
, buflen
, "AC queues: VO:%d VI:%d BE:%d BK:%d\n",
226 sdata
->vif
.hw_queue
[IEEE80211_AC_VO
],
227 sdata
->vif
.hw_queue
[IEEE80211_AC_VI
],
228 sdata
->vif
.hw_queue
[IEEE80211_AC_BE
],
229 sdata
->vif
.hw_queue
[IEEE80211_AC_BK
]);
231 if (sdata
->vif
.type
== NL80211_IFTYPE_AP
)
232 len
+= scnprintf(buf
+ len
, buflen
- len
, "cab queue: %d\n",
233 sdata
->vif
.cab_queue
);
237 IEEE80211_IF_FILE_R(hw_queues
);
240 IEEE80211_IF_FILE(bssid
, u
.mgd
.bssid
, MAC
);
241 IEEE80211_IF_FILE(aid
, u
.mgd
.aid
, DEC
);
242 IEEE80211_IF_FILE(beacon_timeout
, u
.mgd
.beacon_timeout
, JIFFIES_TO_MS
);
244 static int ieee80211_set_smps(struct ieee80211_sub_if_data
*sdata
,
245 enum ieee80211_smps_mode smps_mode
)
247 struct ieee80211_local
*local
= sdata
->local
;
250 if (!(local
->hw
.wiphy
->features
& NL80211_FEATURE_STATIC_SMPS
) &&
251 smps_mode
== IEEE80211_SMPS_STATIC
)
254 /* auto should be dynamic if in PS mode */
255 if (!(local
->hw
.wiphy
->features
& NL80211_FEATURE_DYNAMIC_SMPS
) &&
256 (smps_mode
== IEEE80211_SMPS_DYNAMIC
||
257 smps_mode
== IEEE80211_SMPS_AUTOMATIC
))
260 if (sdata
->vif
.type
!= NL80211_IFTYPE_STATION
&&
261 sdata
->vif
.type
!= NL80211_IFTYPE_AP
)
265 if (sdata
->vif
.type
== NL80211_IFTYPE_STATION
)
266 err
= __ieee80211_request_smps_mgd(sdata
, smps_mode
);
268 err
= __ieee80211_request_smps_ap(sdata
, smps_mode
);
274 static const char *smps_modes
[IEEE80211_SMPS_NUM_MODES
] = {
275 [IEEE80211_SMPS_AUTOMATIC
] = "auto",
276 [IEEE80211_SMPS_OFF
] = "off",
277 [IEEE80211_SMPS_STATIC
] = "static",
278 [IEEE80211_SMPS_DYNAMIC
] = "dynamic",
281 static ssize_t
ieee80211_if_fmt_smps(const struct ieee80211_sub_if_data
*sdata
,
282 char *buf
, int buflen
)
284 if (sdata
->vif
.type
== NL80211_IFTYPE_STATION
)
285 return snprintf(buf
, buflen
, "request: %s\nused: %s\n",
286 smps_modes
[sdata
->u
.mgd
.req_smps
],
287 smps_modes
[sdata
->smps_mode
]);
288 if (sdata
->vif
.type
== NL80211_IFTYPE_AP
)
289 return snprintf(buf
, buflen
, "request: %s\nused: %s\n",
290 smps_modes
[sdata
->u
.ap
.req_smps
],
291 smps_modes
[sdata
->smps_mode
]);
295 static ssize_t
ieee80211_if_parse_smps(struct ieee80211_sub_if_data
*sdata
,
296 const char *buf
, int buflen
)
298 enum ieee80211_smps_mode mode
;
300 for (mode
= 0; mode
< IEEE80211_SMPS_NUM_MODES
; mode
++) {
301 if (strncmp(buf
, smps_modes
[mode
], buflen
) == 0) {
302 int err
= ieee80211_set_smps(sdata
, mode
);
311 IEEE80211_IF_FILE_RW(smps
);
313 static ssize_t
ieee80211_if_parse_tkip_mic_test(
314 struct ieee80211_sub_if_data
*sdata
, const char *buf
, int buflen
)
316 struct ieee80211_local
*local
= sdata
->local
;
319 struct ieee80211_hdr
*hdr
;
322 if (!mac_pton(buf
, addr
))
325 if (!ieee80211_sdata_running(sdata
))
328 skb
= dev_alloc_skb(local
->hw
.extra_tx_headroom
+ 24 + 100);
331 skb_reserve(skb
, local
->hw
.extra_tx_headroom
);
333 hdr
= (struct ieee80211_hdr
*) skb_put(skb
, 24);
335 fc
= cpu_to_le16(IEEE80211_FTYPE_DATA
| IEEE80211_STYPE_DATA
);
337 switch (sdata
->vif
.type
) {
338 case NL80211_IFTYPE_AP
:
339 fc
|= cpu_to_le16(IEEE80211_FCTL_FROMDS
);
341 memcpy(hdr
->addr1
, addr
, ETH_ALEN
);
342 memcpy(hdr
->addr2
, sdata
->vif
.addr
, ETH_ALEN
);
343 memcpy(hdr
->addr3
, sdata
->vif
.addr
, ETH_ALEN
);
345 case NL80211_IFTYPE_STATION
:
346 fc
|= cpu_to_le16(IEEE80211_FCTL_TODS
);
349 if (!sdata
->u
.mgd
.associated
) {
354 memcpy(hdr
->addr1
, sdata
->u
.mgd
.associated
->bssid
, ETH_ALEN
);
355 memcpy(hdr
->addr2
, sdata
->vif
.addr
, ETH_ALEN
);
356 memcpy(hdr
->addr3
, addr
, ETH_ALEN
);
363 hdr
->frame_control
= fc
;
366 * Add some length to the test frame to make it look bit more valid.
367 * The exact contents does not matter since the recipient is required
368 * to drop this because of the Michael MIC failure.
370 memset(skb_put(skb
, 50), 0, 50);
372 IEEE80211_SKB_CB(skb
)->flags
|= IEEE80211_TX_INTFL_TKIP_MIC_FAILURE
;
374 ieee80211_tx_skb(sdata
, skb
);
378 IEEE80211_IF_FILE_W(tkip_mic_test
);
380 static ssize_t
ieee80211_if_parse_beacon_loss(
381 struct ieee80211_sub_if_data
*sdata
, const char *buf
, int buflen
)
383 if (!ieee80211_sdata_running(sdata
) || !sdata
->vif
.bss_conf
.assoc
)
386 ieee80211_beacon_loss(&sdata
->vif
);
390 IEEE80211_IF_FILE_W(beacon_loss
);
392 static ssize_t
ieee80211_if_fmt_uapsd_queues(
393 const struct ieee80211_sub_if_data
*sdata
, char *buf
, int buflen
)
395 const struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
397 return snprintf(buf
, buflen
, "0x%x\n", ifmgd
->uapsd_queues
);
400 static ssize_t
ieee80211_if_parse_uapsd_queues(
401 struct ieee80211_sub_if_data
*sdata
, const char *buf
, int buflen
)
403 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
407 ret
= kstrtou8(buf
, 0, &val
);
411 if (val
& ~IEEE80211_WMM_IE_STA_QOSINFO_AC_MASK
)
414 ifmgd
->uapsd_queues
= val
;
418 IEEE80211_IF_FILE_RW(uapsd_queues
);
420 static ssize_t
ieee80211_if_fmt_uapsd_max_sp_len(
421 const struct ieee80211_sub_if_data
*sdata
, char *buf
, int buflen
)
423 const struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
425 return snprintf(buf
, buflen
, "0x%x\n", ifmgd
->uapsd_max_sp_len
);
428 static ssize_t
ieee80211_if_parse_uapsd_max_sp_len(
429 struct ieee80211_sub_if_data
*sdata
, const char *buf
, int buflen
)
431 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
435 ret
= kstrtoul(buf
, 0, &val
);
439 if (val
& ~IEEE80211_WMM_IE_STA_QOSINFO_SP_MASK
)
442 ifmgd
->uapsd_max_sp_len
= val
;
446 IEEE80211_IF_FILE_RW(uapsd_max_sp_len
);
448 static ssize_t
ieee80211_if_fmt_tdls_wider_bw(
449 const struct ieee80211_sub_if_data
*sdata
, char *buf
, int buflen
)
451 const struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
454 tdls_wider_bw
= ieee80211_hw_check(&sdata
->local
->hw
, TDLS_WIDER_BW
) &&
455 !ifmgd
->tdls_wider_bw_prohibited
;
457 return snprintf(buf
, buflen
, "%d\n", tdls_wider_bw
);
460 static ssize_t
ieee80211_if_parse_tdls_wider_bw(
461 struct ieee80211_sub_if_data
*sdata
, const char *buf
, int buflen
)
463 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
467 ret
= kstrtou8(buf
, 0, &val
);
471 ifmgd
->tdls_wider_bw_prohibited
= !val
;
474 IEEE80211_IF_FILE_RW(tdls_wider_bw
);
477 IEEE80211_IF_FILE(num_mcast_sta
, u
.ap
.num_mcast_sta
, ATOMIC
);
478 IEEE80211_IF_FILE(num_sta_ps
, u
.ap
.ps
.num_sta_ps
, ATOMIC
);
479 IEEE80211_IF_FILE(dtim_count
, u
.ap
.ps
.dtim_count
, DEC
);
480 IEEE80211_IF_FILE(num_mcast_sta_vlan
, u
.vlan
.num_mcast_sta
, ATOMIC
);
482 static ssize_t
ieee80211_if_fmt_num_buffered_multicast(
483 const struct ieee80211_sub_if_data
*sdata
, char *buf
, int buflen
)
485 return scnprintf(buf
, buflen
, "%u\n",
486 skb_queue_len(&sdata
->u
.ap
.ps
.bc_buf
));
488 IEEE80211_IF_FILE_R(num_buffered_multicast
);
490 static ssize_t
ieee80211_if_fmt_aqm(
491 const struct ieee80211_sub_if_data
*sdata
, char *buf
, int buflen
)
493 struct ieee80211_local
*local
= sdata
->local
;
494 struct txq_info
*txqi
= to_txq_info(sdata
->vif
.txq
);
497 spin_lock_bh(&local
->fq
.lock
);
502 "ac backlog-bytes backlog-packets new-flows drops marks overlimit collisions tx-bytes tx-packets\n"
503 "%u %u %u %u %u %u %u %u %u %u\n",
505 txqi
->tin
.backlog_bytes
,
506 txqi
->tin
.backlog_packets
,
508 txqi
->cstats
.drop_count
,
509 txqi
->cstats
.ecn_mark
,
511 txqi
->tin
.collisions
,
513 txqi
->tin
.tx_packets
);
516 spin_unlock_bh(&local
->fq
.lock
);
520 IEEE80211_IF_FILE_R(aqm
);
522 IEEE80211_IF_FILE(multicast_to_unicast
, u
.ap
.multicast_to_unicast
, HEX
);
524 /* IBSS attributes */
525 static ssize_t
ieee80211_if_fmt_tsf(
526 const struct ieee80211_sub_if_data
*sdata
, char *buf
, int buflen
)
528 struct ieee80211_local
*local
= sdata
->local
;
531 tsf
= drv_get_tsf(local
, (struct ieee80211_sub_if_data
*)sdata
);
533 return scnprintf(buf
, buflen
, "0x%016llx\n", (unsigned long long) tsf
);
536 static ssize_t
ieee80211_if_parse_tsf(
537 struct ieee80211_sub_if_data
*sdata
, const char *buf
, int buflen
)
539 struct ieee80211_local
*local
= sdata
->local
;
540 unsigned long long tsf
;
542 int tsf_is_delta
= 0;
544 if (strncmp(buf
, "reset", 5) == 0) {
545 if (local
->ops
->reset_tsf
) {
546 drv_reset_tsf(local
, sdata
);
547 wiphy_info(local
->hw
.wiphy
, "debugfs reset TSF\n");
550 if (buflen
> 10 && buf
[1] == '=') {
553 else if (buf
[0] == '-')
559 ret
= kstrtoull(buf
, 10, &tsf
);
562 if (tsf_is_delta
&& local
->ops
->offset_tsf
) {
563 drv_offset_tsf(local
, sdata
, tsf_is_delta
* tsf
);
564 wiphy_info(local
->hw
.wiphy
,
565 "debugfs offset TSF by %018lld\n",
567 } else if (local
->ops
->set_tsf
) {
569 tsf
= drv_get_tsf(local
, sdata
) +
571 drv_set_tsf(local
, sdata
, tsf
);
572 wiphy_info(local
->hw
.wiphy
,
573 "debugfs set TSF to %#018llx\n", tsf
);
577 ieee80211_recalc_dtim(local
, sdata
);
580 IEEE80211_IF_FILE_RW(tsf
);
584 IEEE80211_IF_FILE(peer
, u
.wds
.remote_addr
, MAC
);
586 #ifdef CONFIG_MAC80211_MESH
587 IEEE80211_IF_FILE(estab_plinks
, u
.mesh
.estab_plinks
, ATOMIC
);
589 /* Mesh stats attributes */
590 IEEE80211_IF_FILE(fwded_mcast
, u
.mesh
.mshstats
.fwded_mcast
, DEC
);
591 IEEE80211_IF_FILE(fwded_unicast
, u
.mesh
.mshstats
.fwded_unicast
, DEC
);
592 IEEE80211_IF_FILE(fwded_frames
, u
.mesh
.mshstats
.fwded_frames
, DEC
);
593 IEEE80211_IF_FILE(dropped_frames_ttl
, u
.mesh
.mshstats
.dropped_frames_ttl
, DEC
);
594 IEEE80211_IF_FILE(dropped_frames_congestion
,
595 u
.mesh
.mshstats
.dropped_frames_congestion
, DEC
);
596 IEEE80211_IF_FILE(dropped_frames_no_route
,
597 u
.mesh
.mshstats
.dropped_frames_no_route
, DEC
);
599 /* Mesh parameters */
600 IEEE80211_IF_FILE(dot11MeshMaxRetries
,
601 u
.mesh
.mshcfg
.dot11MeshMaxRetries
, DEC
);
602 IEEE80211_IF_FILE(dot11MeshRetryTimeout
,
603 u
.mesh
.mshcfg
.dot11MeshRetryTimeout
, DEC
);
604 IEEE80211_IF_FILE(dot11MeshConfirmTimeout
,
605 u
.mesh
.mshcfg
.dot11MeshConfirmTimeout
, DEC
);
606 IEEE80211_IF_FILE(dot11MeshHoldingTimeout
,
607 u
.mesh
.mshcfg
.dot11MeshHoldingTimeout
, DEC
);
608 IEEE80211_IF_FILE(dot11MeshTTL
, u
.mesh
.mshcfg
.dot11MeshTTL
, DEC
);
609 IEEE80211_IF_FILE(element_ttl
, u
.mesh
.mshcfg
.element_ttl
, DEC
);
610 IEEE80211_IF_FILE(auto_open_plinks
, u
.mesh
.mshcfg
.auto_open_plinks
, DEC
);
611 IEEE80211_IF_FILE(dot11MeshMaxPeerLinks
,
612 u
.mesh
.mshcfg
.dot11MeshMaxPeerLinks
, DEC
);
613 IEEE80211_IF_FILE(dot11MeshHWMPactivePathTimeout
,
614 u
.mesh
.mshcfg
.dot11MeshHWMPactivePathTimeout
, DEC
);
615 IEEE80211_IF_FILE(dot11MeshHWMPpreqMinInterval
,
616 u
.mesh
.mshcfg
.dot11MeshHWMPpreqMinInterval
, DEC
);
617 IEEE80211_IF_FILE(dot11MeshHWMPperrMinInterval
,
618 u
.mesh
.mshcfg
.dot11MeshHWMPperrMinInterval
, DEC
);
619 IEEE80211_IF_FILE(dot11MeshHWMPnetDiameterTraversalTime
,
620 u
.mesh
.mshcfg
.dot11MeshHWMPnetDiameterTraversalTime
, DEC
);
621 IEEE80211_IF_FILE(dot11MeshHWMPmaxPREQretries
,
622 u
.mesh
.mshcfg
.dot11MeshHWMPmaxPREQretries
, DEC
);
623 IEEE80211_IF_FILE(path_refresh_time
,
624 u
.mesh
.mshcfg
.path_refresh_time
, DEC
);
625 IEEE80211_IF_FILE(min_discovery_timeout
,
626 u
.mesh
.mshcfg
.min_discovery_timeout
, DEC
);
627 IEEE80211_IF_FILE(dot11MeshHWMPRootMode
,
628 u
.mesh
.mshcfg
.dot11MeshHWMPRootMode
, DEC
);
629 IEEE80211_IF_FILE(dot11MeshGateAnnouncementProtocol
,
630 u
.mesh
.mshcfg
.dot11MeshGateAnnouncementProtocol
, DEC
);
631 IEEE80211_IF_FILE(dot11MeshHWMPRannInterval
,
632 u
.mesh
.mshcfg
.dot11MeshHWMPRannInterval
, DEC
);
633 IEEE80211_IF_FILE(dot11MeshForwarding
, u
.mesh
.mshcfg
.dot11MeshForwarding
, DEC
);
634 IEEE80211_IF_FILE(rssi_threshold
, u
.mesh
.mshcfg
.rssi_threshold
, DEC
);
635 IEEE80211_IF_FILE(ht_opmode
, u
.mesh
.mshcfg
.ht_opmode
, DEC
);
636 IEEE80211_IF_FILE(dot11MeshHWMPactivePathToRootTimeout
,
637 u
.mesh
.mshcfg
.dot11MeshHWMPactivePathToRootTimeout
, DEC
);
638 IEEE80211_IF_FILE(dot11MeshHWMProotInterval
,
639 u
.mesh
.mshcfg
.dot11MeshHWMProotInterval
, DEC
);
640 IEEE80211_IF_FILE(dot11MeshHWMPconfirmationInterval
,
641 u
.mesh
.mshcfg
.dot11MeshHWMPconfirmationInterval
, DEC
);
642 IEEE80211_IF_FILE(power_mode
, u
.mesh
.mshcfg
.power_mode
, DEC
);
643 IEEE80211_IF_FILE(dot11MeshAwakeWindowDuration
,
644 u
.mesh
.mshcfg
.dot11MeshAwakeWindowDuration
, DEC
);
647 #define DEBUGFS_ADD_MODE(name, mode) \
648 debugfs_create_file(#name, mode, sdata->vif.debugfs_dir, \
651 #define DEBUGFS_ADD(name) DEBUGFS_ADD_MODE(name, 0400)
653 static void add_common_files(struct ieee80211_sub_if_data
*sdata
)
655 DEBUGFS_ADD(rc_rateidx_mask_2ghz
);
656 DEBUGFS_ADD(rc_rateidx_mask_5ghz
);
657 DEBUGFS_ADD(rc_rateidx_mcs_mask_2ghz
);
658 DEBUGFS_ADD(rc_rateidx_mcs_mask_5ghz
);
659 DEBUGFS_ADD(rc_rateidx_vht_mcs_mask_2ghz
);
660 DEBUGFS_ADD(rc_rateidx_vht_mcs_mask_5ghz
);
661 DEBUGFS_ADD(hw_queues
);
663 if (sdata
->local
->ops
->wake_tx_queue
)
667 static void add_sta_files(struct ieee80211_sub_if_data
*sdata
)
671 DEBUGFS_ADD(beacon_timeout
);
672 DEBUGFS_ADD_MODE(smps
, 0600);
673 DEBUGFS_ADD_MODE(tkip_mic_test
, 0200);
674 DEBUGFS_ADD_MODE(beacon_loss
, 0200);
675 DEBUGFS_ADD_MODE(uapsd_queues
, 0600);
676 DEBUGFS_ADD_MODE(uapsd_max_sp_len
, 0600);
677 DEBUGFS_ADD_MODE(tdls_wider_bw
, 0600);
680 static void add_ap_files(struct ieee80211_sub_if_data
*sdata
)
682 DEBUGFS_ADD(num_mcast_sta
);
683 DEBUGFS_ADD_MODE(smps
, 0600);
684 DEBUGFS_ADD(num_sta_ps
);
685 DEBUGFS_ADD(dtim_count
);
686 DEBUGFS_ADD(num_buffered_multicast
);
687 DEBUGFS_ADD_MODE(tkip_mic_test
, 0200);
688 DEBUGFS_ADD_MODE(multicast_to_unicast
, 0600);
691 static void add_vlan_files(struct ieee80211_sub_if_data
*sdata
)
693 /* add num_mcast_sta_vlan using name num_mcast_sta */
694 debugfs_create_file("num_mcast_sta", 0400, sdata
->vif
.debugfs_dir
,
695 sdata
, &num_mcast_sta_vlan_ops
);
698 static void add_ibss_files(struct ieee80211_sub_if_data
*sdata
)
700 DEBUGFS_ADD_MODE(tsf
, 0600);
703 static void add_wds_files(struct ieee80211_sub_if_data
*sdata
)
708 #ifdef CONFIG_MAC80211_MESH
710 static void add_mesh_files(struct ieee80211_sub_if_data
*sdata
)
712 DEBUGFS_ADD_MODE(tsf
, 0600);
713 DEBUGFS_ADD_MODE(estab_plinks
, 0400);
716 static void add_mesh_stats(struct ieee80211_sub_if_data
*sdata
)
718 struct dentry
*dir
= debugfs_create_dir("mesh_stats",
719 sdata
->vif
.debugfs_dir
);
720 #define MESHSTATS_ADD(name)\
721 debugfs_create_file(#name, 0400, dir, sdata, &name##_ops);
723 MESHSTATS_ADD(fwded_mcast
);
724 MESHSTATS_ADD(fwded_unicast
);
725 MESHSTATS_ADD(fwded_frames
);
726 MESHSTATS_ADD(dropped_frames_ttl
);
727 MESHSTATS_ADD(dropped_frames_no_route
);
728 MESHSTATS_ADD(dropped_frames_congestion
);
732 static void add_mesh_config(struct ieee80211_sub_if_data
*sdata
)
734 struct dentry
*dir
= debugfs_create_dir("mesh_config",
735 sdata
->vif
.debugfs_dir
);
737 #define MESHPARAMS_ADD(name) \
738 debugfs_create_file(#name, 0600, dir, sdata, &name##_ops);
740 MESHPARAMS_ADD(dot11MeshMaxRetries
);
741 MESHPARAMS_ADD(dot11MeshRetryTimeout
);
742 MESHPARAMS_ADD(dot11MeshConfirmTimeout
);
743 MESHPARAMS_ADD(dot11MeshHoldingTimeout
);
744 MESHPARAMS_ADD(dot11MeshTTL
);
745 MESHPARAMS_ADD(element_ttl
);
746 MESHPARAMS_ADD(auto_open_plinks
);
747 MESHPARAMS_ADD(dot11MeshMaxPeerLinks
);
748 MESHPARAMS_ADD(dot11MeshHWMPactivePathTimeout
);
749 MESHPARAMS_ADD(dot11MeshHWMPpreqMinInterval
);
750 MESHPARAMS_ADD(dot11MeshHWMPperrMinInterval
);
751 MESHPARAMS_ADD(dot11MeshHWMPnetDiameterTraversalTime
);
752 MESHPARAMS_ADD(dot11MeshHWMPmaxPREQretries
);
753 MESHPARAMS_ADD(path_refresh_time
);
754 MESHPARAMS_ADD(min_discovery_timeout
);
755 MESHPARAMS_ADD(dot11MeshHWMPRootMode
);
756 MESHPARAMS_ADD(dot11MeshHWMPRannInterval
);
757 MESHPARAMS_ADD(dot11MeshForwarding
);
758 MESHPARAMS_ADD(dot11MeshGateAnnouncementProtocol
);
759 MESHPARAMS_ADD(rssi_threshold
);
760 MESHPARAMS_ADD(ht_opmode
);
761 MESHPARAMS_ADD(dot11MeshHWMPactivePathToRootTimeout
);
762 MESHPARAMS_ADD(dot11MeshHWMProotInterval
);
763 MESHPARAMS_ADD(dot11MeshHWMPconfirmationInterval
);
764 MESHPARAMS_ADD(power_mode
);
765 MESHPARAMS_ADD(dot11MeshAwakeWindowDuration
);
766 #undef MESHPARAMS_ADD
770 static void add_files(struct ieee80211_sub_if_data
*sdata
)
772 if (!sdata
->vif
.debugfs_dir
)
777 DEBUGFS_ADD(txpower
);
778 DEBUGFS_ADD(user_power_level
);
779 DEBUGFS_ADD(ap_power_level
);
781 if (sdata
->vif
.type
!= NL80211_IFTYPE_MONITOR
)
782 add_common_files(sdata
);
784 switch (sdata
->vif
.type
) {
785 case NL80211_IFTYPE_MESH_POINT
:
786 #ifdef CONFIG_MAC80211_MESH
787 add_mesh_files(sdata
);
788 add_mesh_stats(sdata
);
789 add_mesh_config(sdata
);
792 case NL80211_IFTYPE_STATION
:
793 add_sta_files(sdata
);
795 case NL80211_IFTYPE_ADHOC
:
796 add_ibss_files(sdata
);
798 case NL80211_IFTYPE_AP
:
801 case NL80211_IFTYPE_AP_VLAN
:
802 add_vlan_files(sdata
);
804 case NL80211_IFTYPE_WDS
:
805 add_wds_files(sdata
);
812 void ieee80211_debugfs_add_netdev(struct ieee80211_sub_if_data
*sdata
)
814 char buf
[10+IFNAMSIZ
];
816 sprintf(buf
, "netdev:%s", sdata
->name
);
817 sdata
->vif
.debugfs_dir
= debugfs_create_dir(buf
,
818 sdata
->local
->hw
.wiphy
->debugfsdir
);
819 if (sdata
->vif
.debugfs_dir
)
820 sdata
->debugfs
.subdir_stations
= debugfs_create_dir("stations",
821 sdata
->vif
.debugfs_dir
);
825 void ieee80211_debugfs_remove_netdev(struct ieee80211_sub_if_data
*sdata
)
827 if (!sdata
->vif
.debugfs_dir
)
830 debugfs_remove_recursive(sdata
->vif
.debugfs_dir
);
831 sdata
->vif
.debugfs_dir
= NULL
;
832 sdata
->debugfs
.subdir_stations
= NULL
;
835 void ieee80211_debugfs_rename_netdev(struct ieee80211_sub_if_data
*sdata
)
838 char buf
[10 + IFNAMSIZ
];
840 dir
= sdata
->vif
.debugfs_dir
;
845 sprintf(buf
, "netdev:%s", sdata
->name
);
846 if (!debugfs_rename(dir
->d_parent
, dir
, dir
->d_parent
, buf
))
848 "debugfs: failed to rename debugfs dir to %s\n",