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/interrupt.h>
14 #include <linux/netdevice.h>
15 #include <linux/rtnetlink.h>
16 #include <linux/notifier.h>
17 #include <net/mac80211.h>
18 #include <net/cfg80211.h>
19 #include "ieee80211_i.h"
22 #include "debugfs_netdev.h"
24 static ssize_t
ieee80211_if_read(
25 struct ieee80211_sub_if_data
*sdata
,
27 size_t count
, loff_t
*ppos
,
28 ssize_t (*format
)(const struct ieee80211_sub_if_data
*, char *, int))
31 ssize_t ret
= -EINVAL
;
33 read_lock(&dev_base_lock
);
34 if (sdata
->dev
->reg_state
== NETREG_REGISTERED
)
35 ret
= (*format
)(sdata
, buf
, sizeof(buf
));
36 read_unlock(&dev_base_lock
);
39 ret
= simple_read_from_buffer(userbuf
, count
, ppos
, buf
, ret
);
44 static ssize_t
ieee80211_if_write(
45 struct ieee80211_sub_if_data
*sdata
,
46 const char __user
*userbuf
,
47 size_t count
, loff_t
*ppos
,
48 ssize_t (*write
)(struct ieee80211_sub_if_data
*, const char *, int))
51 ssize_t ret
= -ENODEV
;
53 buf
= kzalloc(count
, GFP_KERNEL
);
57 if (copy_from_user(buf
, userbuf
, count
))
61 if (sdata
->dev
->reg_state
== NETREG_REGISTERED
)
62 ret
= (*write
)(sdata
, buf
, count
);
68 #define IEEE80211_IF_FMT(name, field, format_string) \
69 static ssize_t ieee80211_if_fmt_##name( \
70 const struct ieee80211_sub_if_data *sdata, char *buf, \
73 return scnprintf(buf, buflen, format_string, sdata->field); \
75 #define IEEE80211_IF_FMT_DEC(name, field) \
76 IEEE80211_IF_FMT(name, field, "%d\n")
77 #define IEEE80211_IF_FMT_HEX(name, field) \
78 IEEE80211_IF_FMT(name, field, "%#x\n")
79 #define IEEE80211_IF_FMT_SIZE(name, field) \
80 IEEE80211_IF_FMT(name, field, "%zd\n")
82 #define IEEE80211_IF_FMT_ATOMIC(name, field) \
83 static ssize_t ieee80211_if_fmt_##name( \
84 const struct ieee80211_sub_if_data *sdata, \
85 char *buf, int buflen) \
87 return scnprintf(buf, buflen, "%d\n", atomic_read(&sdata->field));\
90 #define IEEE80211_IF_FMT_MAC(name, field) \
91 static ssize_t ieee80211_if_fmt_##name( \
92 const struct ieee80211_sub_if_data *sdata, char *buf, \
95 return scnprintf(buf, buflen, "%pM\n", sdata->field); \
98 #define __IEEE80211_IF_FILE(name, _write) \
99 static ssize_t ieee80211_if_read_##name(struct file *file, \
100 char __user *userbuf, \
101 size_t count, loff_t *ppos) \
103 return ieee80211_if_read(file->private_data, \
104 userbuf, count, ppos, \
105 ieee80211_if_fmt_##name); \
107 static const struct file_operations name##_ops = { \
108 .read = ieee80211_if_read_##name, \
110 .open = mac80211_open_file_generic, \
113 #define __IEEE80211_IF_FILE_W(name) \
114 static ssize_t ieee80211_if_write_##name(struct file *file, \
115 const char __user *userbuf, \
116 size_t count, loff_t *ppos) \
118 return ieee80211_if_write(file->private_data, userbuf, count, \
119 ppos, ieee80211_if_parse_##name); \
121 __IEEE80211_IF_FILE(name, ieee80211_if_write_##name)
124 #define IEEE80211_IF_FILE(name, field, format) \
125 IEEE80211_IF_FMT_##format(name, field) \
126 __IEEE80211_IF_FILE(name, NULL)
128 /* common attributes */
129 IEEE80211_IF_FILE(drop_unencrypted
, drop_unencrypted
, DEC
);
130 IEEE80211_IF_FILE(rc_rateidx_mask_2ghz
, rc_rateidx_mask
[IEEE80211_BAND_2GHZ
],
132 IEEE80211_IF_FILE(rc_rateidx_mask_5ghz
, rc_rateidx_mask
[IEEE80211_BAND_5GHZ
],
136 IEEE80211_IF_FILE(bssid
, u
.mgd
.bssid
, MAC
);
137 IEEE80211_IF_FILE(aid
, u
.mgd
.aid
, DEC
);
139 static int ieee80211_set_smps(struct ieee80211_sub_if_data
*sdata
,
140 enum ieee80211_smps_mode smps_mode
)
142 struct ieee80211_local
*local
= sdata
->local
;
145 if (!(local
->hw
.flags
& IEEE80211_HW_SUPPORTS_STATIC_SMPS
) &&
146 smps_mode
== IEEE80211_SMPS_STATIC
)
149 /* auto should be dynamic if in PS mode */
150 if (!(local
->hw
.flags
& IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS
) &&
151 (smps_mode
== IEEE80211_SMPS_DYNAMIC
||
152 smps_mode
== IEEE80211_SMPS_AUTOMATIC
))
155 /* supported only on managed interfaces for now */
156 if (sdata
->vif
.type
!= NL80211_IFTYPE_STATION
)
159 mutex_lock(&local
->iflist_mtx
);
160 err
= __ieee80211_request_smps(sdata
, smps_mode
);
161 mutex_unlock(&local
->iflist_mtx
);
166 static const char *smps_modes
[IEEE80211_SMPS_NUM_MODES
] = {
167 [IEEE80211_SMPS_AUTOMATIC
] = "auto",
168 [IEEE80211_SMPS_OFF
] = "off",
169 [IEEE80211_SMPS_STATIC
] = "static",
170 [IEEE80211_SMPS_DYNAMIC
] = "dynamic",
173 static ssize_t
ieee80211_if_fmt_smps(const struct ieee80211_sub_if_data
*sdata
,
174 char *buf
, int buflen
)
176 if (sdata
->vif
.type
!= NL80211_IFTYPE_STATION
)
179 return snprintf(buf
, buflen
, "request: %s\nused: %s\n",
180 smps_modes
[sdata
->u
.mgd
.req_smps
],
181 smps_modes
[sdata
->u
.mgd
.ap_smps
]);
184 static ssize_t
ieee80211_if_parse_smps(struct ieee80211_sub_if_data
*sdata
,
185 const char *buf
, int buflen
)
187 enum ieee80211_smps_mode mode
;
189 for (mode
= 0; mode
< IEEE80211_SMPS_NUM_MODES
; mode
++) {
190 if (strncmp(buf
, smps_modes
[mode
], buflen
) == 0) {
191 int err
= ieee80211_set_smps(sdata
, mode
);
201 __IEEE80211_IF_FILE_W(smps
);
204 IEEE80211_IF_FILE(num_sta_ps
, u
.ap
.num_sta_ps
, ATOMIC
);
205 IEEE80211_IF_FILE(dtim_count
, u
.ap
.dtim_count
, DEC
);
207 static ssize_t
ieee80211_if_fmt_num_buffered_multicast(
208 const struct ieee80211_sub_if_data
*sdata
, char *buf
, int buflen
)
210 return scnprintf(buf
, buflen
, "%u\n",
211 skb_queue_len(&sdata
->u
.ap
.ps_bc_buf
));
213 __IEEE80211_IF_FILE(num_buffered_multicast
, NULL
);
216 IEEE80211_IF_FILE(peer
, u
.wds
.remote_addr
, MAC
);
218 #ifdef CONFIG_MAC80211_MESH
219 /* Mesh stats attributes */
220 IEEE80211_IF_FILE(fwded_mcast
, u
.mesh
.mshstats
.fwded_mcast
, DEC
);
221 IEEE80211_IF_FILE(fwded_unicast
, u
.mesh
.mshstats
.fwded_unicast
, DEC
);
222 IEEE80211_IF_FILE(fwded_frames
, u
.mesh
.mshstats
.fwded_frames
, DEC
);
223 IEEE80211_IF_FILE(dropped_frames_ttl
, u
.mesh
.mshstats
.dropped_frames_ttl
, DEC
);
224 IEEE80211_IF_FILE(dropped_frames_no_route
,
225 u
.mesh
.mshstats
.dropped_frames_no_route
, DEC
);
226 IEEE80211_IF_FILE(estab_plinks
, u
.mesh
.mshstats
.estab_plinks
, ATOMIC
);
228 /* Mesh parameters */
229 IEEE80211_IF_FILE(dot11MeshMaxRetries
,
230 u
.mesh
.mshcfg
.dot11MeshMaxRetries
, DEC
);
231 IEEE80211_IF_FILE(dot11MeshRetryTimeout
,
232 u
.mesh
.mshcfg
.dot11MeshRetryTimeout
, DEC
);
233 IEEE80211_IF_FILE(dot11MeshConfirmTimeout
,
234 u
.mesh
.mshcfg
.dot11MeshConfirmTimeout
, DEC
);
235 IEEE80211_IF_FILE(dot11MeshHoldingTimeout
,
236 u
.mesh
.mshcfg
.dot11MeshHoldingTimeout
, DEC
);
237 IEEE80211_IF_FILE(dot11MeshTTL
, u
.mesh
.mshcfg
.dot11MeshTTL
, DEC
);
238 IEEE80211_IF_FILE(auto_open_plinks
, u
.mesh
.mshcfg
.auto_open_plinks
, DEC
);
239 IEEE80211_IF_FILE(dot11MeshMaxPeerLinks
,
240 u
.mesh
.mshcfg
.dot11MeshMaxPeerLinks
, DEC
);
241 IEEE80211_IF_FILE(dot11MeshHWMPactivePathTimeout
,
242 u
.mesh
.mshcfg
.dot11MeshHWMPactivePathTimeout
, DEC
);
243 IEEE80211_IF_FILE(dot11MeshHWMPpreqMinInterval
,
244 u
.mesh
.mshcfg
.dot11MeshHWMPpreqMinInterval
, DEC
);
245 IEEE80211_IF_FILE(dot11MeshHWMPnetDiameterTraversalTime
,
246 u
.mesh
.mshcfg
.dot11MeshHWMPnetDiameterTraversalTime
, DEC
);
247 IEEE80211_IF_FILE(dot11MeshHWMPmaxPREQretries
,
248 u
.mesh
.mshcfg
.dot11MeshHWMPmaxPREQretries
, DEC
);
249 IEEE80211_IF_FILE(path_refresh_time
,
250 u
.mesh
.mshcfg
.path_refresh_time
, DEC
);
251 IEEE80211_IF_FILE(min_discovery_timeout
,
252 u
.mesh
.mshcfg
.min_discovery_timeout
, DEC
);
253 IEEE80211_IF_FILE(dot11MeshHWMPRootMode
,
254 u
.mesh
.mshcfg
.dot11MeshHWMPRootMode
, DEC
);
258 #define DEBUGFS_ADD(name) \
259 debugfs_create_file(#name, 0400, sdata->debugfs.dir, \
262 #define DEBUGFS_ADD_MODE(name, mode) \
263 debugfs_create_file(#name, mode, sdata->debugfs.dir, \
266 static void add_sta_files(struct ieee80211_sub_if_data
*sdata
)
268 DEBUGFS_ADD(drop_unencrypted
);
269 DEBUGFS_ADD(rc_rateidx_mask_2ghz
);
270 DEBUGFS_ADD(rc_rateidx_mask_5ghz
);
274 DEBUGFS_ADD_MODE(smps
, 0600);
277 static void add_ap_files(struct ieee80211_sub_if_data
*sdata
)
279 DEBUGFS_ADD(drop_unencrypted
);
280 DEBUGFS_ADD(rc_rateidx_mask_2ghz
);
281 DEBUGFS_ADD(rc_rateidx_mask_5ghz
);
283 DEBUGFS_ADD(num_sta_ps
);
284 DEBUGFS_ADD(dtim_count
);
285 DEBUGFS_ADD(num_buffered_multicast
);
288 static void add_wds_files(struct ieee80211_sub_if_data
*sdata
)
290 DEBUGFS_ADD(drop_unencrypted
);
291 DEBUGFS_ADD(rc_rateidx_mask_2ghz
);
292 DEBUGFS_ADD(rc_rateidx_mask_5ghz
);
297 static void add_vlan_files(struct ieee80211_sub_if_data
*sdata
)
299 DEBUGFS_ADD(drop_unencrypted
);
300 DEBUGFS_ADD(rc_rateidx_mask_2ghz
);
301 DEBUGFS_ADD(rc_rateidx_mask_5ghz
);
304 static void add_monitor_files(struct ieee80211_sub_if_data
*sdata
)
308 #ifdef CONFIG_MAC80211_MESH
310 static void add_mesh_stats(struct ieee80211_sub_if_data
*sdata
)
312 struct dentry
*dir
= debugfs_create_dir("mesh_stats",
315 #define MESHSTATS_ADD(name)\
316 debugfs_create_file(#name, 0400, dir, sdata, &name##_ops);
318 MESHSTATS_ADD(fwded_mcast
);
319 MESHSTATS_ADD(fwded_unicast
);
320 MESHSTATS_ADD(fwded_frames
);
321 MESHSTATS_ADD(dropped_frames_ttl
);
322 MESHSTATS_ADD(dropped_frames_no_route
);
323 MESHSTATS_ADD(estab_plinks
);
327 static void add_mesh_config(struct ieee80211_sub_if_data
*sdata
)
329 struct dentry
*dir
= debugfs_create_dir("mesh_config",
332 #define MESHPARAMS_ADD(name) \
333 debugfs_create_file(#name, 0600, dir, sdata, &name##_ops);
335 MESHPARAMS_ADD(dot11MeshMaxRetries
);
336 MESHPARAMS_ADD(dot11MeshRetryTimeout
);
337 MESHPARAMS_ADD(dot11MeshConfirmTimeout
);
338 MESHPARAMS_ADD(dot11MeshHoldingTimeout
);
339 MESHPARAMS_ADD(dot11MeshTTL
);
340 MESHPARAMS_ADD(auto_open_plinks
);
341 MESHPARAMS_ADD(dot11MeshMaxPeerLinks
);
342 MESHPARAMS_ADD(dot11MeshHWMPactivePathTimeout
);
343 MESHPARAMS_ADD(dot11MeshHWMPpreqMinInterval
);
344 MESHPARAMS_ADD(dot11MeshHWMPnetDiameterTraversalTime
);
345 MESHPARAMS_ADD(dot11MeshHWMPmaxPREQretries
);
346 MESHPARAMS_ADD(path_refresh_time
);
347 MESHPARAMS_ADD(min_discovery_timeout
);
349 #undef MESHPARAMS_ADD
353 static void add_files(struct ieee80211_sub_if_data
*sdata
)
355 if (!sdata
->debugfs
.dir
)
358 switch (sdata
->vif
.type
) {
359 case NL80211_IFTYPE_MESH_POINT
:
360 #ifdef CONFIG_MAC80211_MESH
361 add_mesh_stats(sdata
);
362 add_mesh_config(sdata
);
365 case NL80211_IFTYPE_STATION
:
366 add_sta_files(sdata
);
368 case NL80211_IFTYPE_ADHOC
:
371 case NL80211_IFTYPE_AP
:
374 case NL80211_IFTYPE_WDS
:
375 add_wds_files(sdata
);
377 case NL80211_IFTYPE_MONITOR
:
378 add_monitor_files(sdata
);
380 case NL80211_IFTYPE_AP_VLAN
:
381 add_vlan_files(sdata
);
388 void ieee80211_debugfs_add_netdev(struct ieee80211_sub_if_data
*sdata
)
390 char buf
[10+IFNAMSIZ
];
392 sprintf(buf
, "netdev:%s", sdata
->name
);
393 sdata
->debugfs
.dir
= debugfs_create_dir(buf
,
394 sdata
->local
->hw
.wiphy
->debugfsdir
);
398 void ieee80211_debugfs_remove_netdev(struct ieee80211_sub_if_data
*sdata
)
400 if (!sdata
->debugfs
.dir
)
403 debugfs_remove_recursive(sdata
->debugfs
.dir
);
404 sdata
->debugfs
.dir
= NULL
;
407 void ieee80211_debugfs_rename_netdev(struct ieee80211_sub_if_data
*sdata
)
410 char buf
[10 + IFNAMSIZ
];
412 dir
= sdata
->debugfs
.dir
;
417 sprintf(buf
, "netdev:%s", sdata
->name
);
418 if (!debugfs_rename(dir
->d_parent
, dir
, dir
->d_parent
, buf
))
419 printk(KERN_ERR
"mac80211: debugfs: failed to rename debugfs "