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/slab.h>
17 #include <linux/notifier.h>
18 #include <net/mac80211.h>
19 #include <net/cfg80211.h>
20 #include "ieee80211_i.h"
23 #include "debugfs_netdev.h"
25 static ssize_t
ieee80211_if_read(
26 struct ieee80211_sub_if_data
*sdata
,
28 size_t count
, loff_t
*ppos
,
29 ssize_t (*format
)(const struct ieee80211_sub_if_data
*, char *, int))
32 ssize_t ret
= -EINVAL
;
34 read_lock(&dev_base_lock
);
35 if (sdata
->dev
->reg_state
== NETREG_REGISTERED
)
36 ret
= (*format
)(sdata
, buf
, sizeof(buf
));
37 read_unlock(&dev_base_lock
);
40 ret
= simple_read_from_buffer(userbuf
, count
, ppos
, buf
, ret
);
45 static ssize_t
ieee80211_if_write(
46 struct ieee80211_sub_if_data
*sdata
,
47 const char __user
*userbuf
,
48 size_t count
, loff_t
*ppos
,
49 ssize_t (*write
)(struct ieee80211_sub_if_data
*, const char *, int))
54 buf
= kmalloc(count
, GFP_KERNEL
);
59 if (copy_from_user(buf
, userbuf
, count
))
64 if (sdata
->dev
->reg_state
== NETREG_REGISTERED
)
65 ret
= (*write
)(sdata
, buf
, count
);
73 #define IEEE80211_IF_FMT(name, field, format_string) \
74 static ssize_t ieee80211_if_fmt_##name( \
75 const struct ieee80211_sub_if_data *sdata, char *buf, \
78 return scnprintf(buf, buflen, format_string, sdata->field); \
80 #define IEEE80211_IF_FMT_DEC(name, field) \
81 IEEE80211_IF_FMT(name, field, "%d\n")
82 #define IEEE80211_IF_FMT_HEX(name, field) \
83 IEEE80211_IF_FMT(name, field, "%#x\n")
84 #define IEEE80211_IF_FMT_SIZE(name, field) \
85 IEEE80211_IF_FMT(name, field, "%zd\n")
87 #define IEEE80211_IF_FMT_ATOMIC(name, field) \
88 static ssize_t ieee80211_if_fmt_##name( \
89 const struct ieee80211_sub_if_data *sdata, \
90 char *buf, int buflen) \
92 return scnprintf(buf, buflen, "%d\n", atomic_read(&sdata->field));\
95 #define IEEE80211_IF_FMT_MAC(name, field) \
96 static ssize_t ieee80211_if_fmt_##name( \
97 const struct ieee80211_sub_if_data *sdata, char *buf, \
100 return scnprintf(buf, buflen, "%pM\n", sdata->field); \
103 #define IEEE80211_IF_FMT_DEC_DIV_16(name, field) \
104 static ssize_t ieee80211_if_fmt_##name( \
105 const struct ieee80211_sub_if_data *sdata, \
106 char *buf, int buflen) \
108 return scnprintf(buf, buflen, "%d\n", sdata->field / 16); \
111 #define __IEEE80211_IF_FILE(name, _write) \
112 static ssize_t ieee80211_if_read_##name(struct file *file, \
113 char __user *userbuf, \
114 size_t count, loff_t *ppos) \
116 return ieee80211_if_read(file->private_data, \
117 userbuf, count, ppos, \
118 ieee80211_if_fmt_##name); \
120 static const struct file_operations name##_ops = { \
121 .read = ieee80211_if_read_##name, \
123 .open = mac80211_open_file_generic, \
126 #define __IEEE80211_IF_FILE_W(name) \
127 static ssize_t ieee80211_if_write_##name(struct file *file, \
128 const char __user *userbuf, \
129 size_t count, loff_t *ppos) \
131 return ieee80211_if_write(file->private_data, userbuf, count, \
132 ppos, ieee80211_if_parse_##name); \
134 __IEEE80211_IF_FILE(name, ieee80211_if_write_##name)
137 #define IEEE80211_IF_FILE(name, field, format) \
138 IEEE80211_IF_FMT_##format(name, field) \
139 __IEEE80211_IF_FILE(name, NULL)
141 /* common attributes */
142 IEEE80211_IF_FILE(drop_unencrypted
, drop_unencrypted
, DEC
);
143 IEEE80211_IF_FILE(rc_rateidx_mask_2ghz
, rc_rateidx_mask
[IEEE80211_BAND_2GHZ
],
145 IEEE80211_IF_FILE(rc_rateidx_mask_5ghz
, rc_rateidx_mask
[IEEE80211_BAND_5GHZ
],
149 IEEE80211_IF_FILE(bssid
, u
.mgd
.bssid
, MAC
);
150 IEEE80211_IF_FILE(aid
, u
.mgd
.aid
, DEC
);
151 IEEE80211_IF_FILE(last_beacon
, u
.mgd
.last_beacon_signal
, DEC
);
152 IEEE80211_IF_FILE(ave_beacon
, u
.mgd
.ave_beacon_signal
, DEC_DIV_16
);
154 static int ieee80211_set_smps(struct ieee80211_sub_if_data
*sdata
,
155 enum ieee80211_smps_mode smps_mode
)
157 struct ieee80211_local
*local
= sdata
->local
;
160 if (!(local
->hw
.flags
& IEEE80211_HW_SUPPORTS_STATIC_SMPS
) &&
161 smps_mode
== IEEE80211_SMPS_STATIC
)
164 /* auto should be dynamic if in PS mode */
165 if (!(local
->hw
.flags
& IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS
) &&
166 (smps_mode
== IEEE80211_SMPS_DYNAMIC
||
167 smps_mode
== IEEE80211_SMPS_AUTOMATIC
))
170 /* supported only on managed interfaces for now */
171 if (sdata
->vif
.type
!= NL80211_IFTYPE_STATION
)
174 mutex_lock(&local
->iflist_mtx
);
175 err
= __ieee80211_request_smps(sdata
, smps_mode
);
176 mutex_unlock(&local
->iflist_mtx
);
181 static const char *smps_modes
[IEEE80211_SMPS_NUM_MODES
] = {
182 [IEEE80211_SMPS_AUTOMATIC
] = "auto",
183 [IEEE80211_SMPS_OFF
] = "off",
184 [IEEE80211_SMPS_STATIC
] = "static",
185 [IEEE80211_SMPS_DYNAMIC
] = "dynamic",
188 static ssize_t
ieee80211_if_fmt_smps(const struct ieee80211_sub_if_data
*sdata
,
189 char *buf
, int buflen
)
191 if (sdata
->vif
.type
!= NL80211_IFTYPE_STATION
)
194 return snprintf(buf
, buflen
, "request: %s\nused: %s\n",
195 smps_modes
[sdata
->u
.mgd
.req_smps
],
196 smps_modes
[sdata
->u
.mgd
.ap_smps
]);
199 static ssize_t
ieee80211_if_parse_smps(struct ieee80211_sub_if_data
*sdata
,
200 const char *buf
, int buflen
)
202 enum ieee80211_smps_mode mode
;
204 for (mode
= 0; mode
< IEEE80211_SMPS_NUM_MODES
; mode
++) {
205 if (strncmp(buf
, smps_modes
[mode
], buflen
) == 0) {
206 int err
= ieee80211_set_smps(sdata
, mode
);
216 __IEEE80211_IF_FILE_W(smps
);
219 IEEE80211_IF_FILE(num_sta_ps
, u
.ap
.num_sta_ps
, ATOMIC
);
220 IEEE80211_IF_FILE(dtim_count
, u
.ap
.dtim_count
, DEC
);
222 static ssize_t
ieee80211_if_fmt_num_buffered_multicast(
223 const struct ieee80211_sub_if_data
*sdata
, char *buf
, int buflen
)
225 return scnprintf(buf
, buflen
, "%u\n",
226 skb_queue_len(&sdata
->u
.ap
.ps_bc_buf
));
228 __IEEE80211_IF_FILE(num_buffered_multicast
, NULL
);
231 IEEE80211_IF_FILE(peer
, u
.wds
.remote_addr
, MAC
);
233 #ifdef CONFIG_MAC80211_MESH
234 /* Mesh stats attributes */
235 IEEE80211_IF_FILE(fwded_mcast
, u
.mesh
.mshstats
.fwded_mcast
, DEC
);
236 IEEE80211_IF_FILE(fwded_unicast
, u
.mesh
.mshstats
.fwded_unicast
, DEC
);
237 IEEE80211_IF_FILE(fwded_frames
, u
.mesh
.mshstats
.fwded_frames
, DEC
);
238 IEEE80211_IF_FILE(dropped_frames_ttl
, u
.mesh
.mshstats
.dropped_frames_ttl
, DEC
);
239 IEEE80211_IF_FILE(dropped_frames_no_route
,
240 u
.mesh
.mshstats
.dropped_frames_no_route
, DEC
);
241 IEEE80211_IF_FILE(estab_plinks
, u
.mesh
.mshstats
.estab_plinks
, ATOMIC
);
243 /* Mesh parameters */
244 IEEE80211_IF_FILE(dot11MeshMaxRetries
,
245 u
.mesh
.mshcfg
.dot11MeshMaxRetries
, DEC
);
246 IEEE80211_IF_FILE(dot11MeshRetryTimeout
,
247 u
.mesh
.mshcfg
.dot11MeshRetryTimeout
, DEC
);
248 IEEE80211_IF_FILE(dot11MeshConfirmTimeout
,
249 u
.mesh
.mshcfg
.dot11MeshConfirmTimeout
, DEC
);
250 IEEE80211_IF_FILE(dot11MeshHoldingTimeout
,
251 u
.mesh
.mshcfg
.dot11MeshHoldingTimeout
, DEC
);
252 IEEE80211_IF_FILE(dot11MeshTTL
, u
.mesh
.mshcfg
.dot11MeshTTL
, DEC
);
253 IEEE80211_IF_FILE(auto_open_plinks
, u
.mesh
.mshcfg
.auto_open_plinks
, DEC
);
254 IEEE80211_IF_FILE(dot11MeshMaxPeerLinks
,
255 u
.mesh
.mshcfg
.dot11MeshMaxPeerLinks
, DEC
);
256 IEEE80211_IF_FILE(dot11MeshHWMPactivePathTimeout
,
257 u
.mesh
.mshcfg
.dot11MeshHWMPactivePathTimeout
, DEC
);
258 IEEE80211_IF_FILE(dot11MeshHWMPpreqMinInterval
,
259 u
.mesh
.mshcfg
.dot11MeshHWMPpreqMinInterval
, DEC
);
260 IEEE80211_IF_FILE(dot11MeshHWMPnetDiameterTraversalTime
,
261 u
.mesh
.mshcfg
.dot11MeshHWMPnetDiameterTraversalTime
, DEC
);
262 IEEE80211_IF_FILE(dot11MeshHWMPmaxPREQretries
,
263 u
.mesh
.mshcfg
.dot11MeshHWMPmaxPREQretries
, DEC
);
264 IEEE80211_IF_FILE(path_refresh_time
,
265 u
.mesh
.mshcfg
.path_refresh_time
, DEC
);
266 IEEE80211_IF_FILE(min_discovery_timeout
,
267 u
.mesh
.mshcfg
.min_discovery_timeout
, DEC
);
268 IEEE80211_IF_FILE(dot11MeshHWMPRootMode
,
269 u
.mesh
.mshcfg
.dot11MeshHWMPRootMode
, DEC
);
273 #define DEBUGFS_ADD(name) \
274 debugfs_create_file(#name, 0400, sdata->debugfs.dir, \
277 #define DEBUGFS_ADD_MODE(name, mode) \
278 debugfs_create_file(#name, mode, sdata->debugfs.dir, \
281 static void add_sta_files(struct ieee80211_sub_if_data
*sdata
)
283 DEBUGFS_ADD(drop_unencrypted
);
284 DEBUGFS_ADD(rc_rateidx_mask_2ghz
);
285 DEBUGFS_ADD(rc_rateidx_mask_5ghz
);
289 DEBUGFS_ADD(last_beacon
);
290 DEBUGFS_ADD(ave_beacon
);
291 DEBUGFS_ADD_MODE(smps
, 0600);
294 static void add_ap_files(struct ieee80211_sub_if_data
*sdata
)
296 DEBUGFS_ADD(drop_unencrypted
);
297 DEBUGFS_ADD(rc_rateidx_mask_2ghz
);
298 DEBUGFS_ADD(rc_rateidx_mask_5ghz
);
300 DEBUGFS_ADD(num_sta_ps
);
301 DEBUGFS_ADD(dtim_count
);
302 DEBUGFS_ADD(num_buffered_multicast
);
305 static void add_wds_files(struct ieee80211_sub_if_data
*sdata
)
307 DEBUGFS_ADD(drop_unencrypted
);
308 DEBUGFS_ADD(rc_rateidx_mask_2ghz
);
309 DEBUGFS_ADD(rc_rateidx_mask_5ghz
);
314 static void add_vlan_files(struct ieee80211_sub_if_data
*sdata
)
316 DEBUGFS_ADD(drop_unencrypted
);
317 DEBUGFS_ADD(rc_rateidx_mask_2ghz
);
318 DEBUGFS_ADD(rc_rateidx_mask_5ghz
);
321 static void add_monitor_files(struct ieee80211_sub_if_data
*sdata
)
325 #ifdef CONFIG_MAC80211_MESH
327 static void add_mesh_stats(struct ieee80211_sub_if_data
*sdata
)
329 struct dentry
*dir
= debugfs_create_dir("mesh_stats",
332 #define MESHSTATS_ADD(name)\
333 debugfs_create_file(#name, 0400, dir, sdata, &name##_ops);
335 MESHSTATS_ADD(fwded_mcast
);
336 MESHSTATS_ADD(fwded_unicast
);
337 MESHSTATS_ADD(fwded_frames
);
338 MESHSTATS_ADD(dropped_frames_ttl
);
339 MESHSTATS_ADD(dropped_frames_no_route
);
340 MESHSTATS_ADD(estab_plinks
);
344 static void add_mesh_config(struct ieee80211_sub_if_data
*sdata
)
346 struct dentry
*dir
= debugfs_create_dir("mesh_config",
349 #define MESHPARAMS_ADD(name) \
350 debugfs_create_file(#name, 0600, dir, sdata, &name##_ops);
352 MESHPARAMS_ADD(dot11MeshMaxRetries
);
353 MESHPARAMS_ADD(dot11MeshRetryTimeout
);
354 MESHPARAMS_ADD(dot11MeshConfirmTimeout
);
355 MESHPARAMS_ADD(dot11MeshHoldingTimeout
);
356 MESHPARAMS_ADD(dot11MeshTTL
);
357 MESHPARAMS_ADD(auto_open_plinks
);
358 MESHPARAMS_ADD(dot11MeshMaxPeerLinks
);
359 MESHPARAMS_ADD(dot11MeshHWMPactivePathTimeout
);
360 MESHPARAMS_ADD(dot11MeshHWMPpreqMinInterval
);
361 MESHPARAMS_ADD(dot11MeshHWMPnetDiameterTraversalTime
);
362 MESHPARAMS_ADD(dot11MeshHWMPmaxPREQretries
);
363 MESHPARAMS_ADD(path_refresh_time
);
364 MESHPARAMS_ADD(min_discovery_timeout
);
366 #undef MESHPARAMS_ADD
370 static void add_files(struct ieee80211_sub_if_data
*sdata
)
372 if (!sdata
->debugfs
.dir
)
375 switch (sdata
->vif
.type
) {
376 case NL80211_IFTYPE_MESH_POINT
:
377 #ifdef CONFIG_MAC80211_MESH
378 add_mesh_stats(sdata
);
379 add_mesh_config(sdata
);
382 case NL80211_IFTYPE_STATION
:
383 add_sta_files(sdata
);
385 case NL80211_IFTYPE_ADHOC
:
388 case NL80211_IFTYPE_AP
:
391 case NL80211_IFTYPE_WDS
:
392 add_wds_files(sdata
);
394 case NL80211_IFTYPE_MONITOR
:
395 add_monitor_files(sdata
);
397 case NL80211_IFTYPE_AP_VLAN
:
398 add_vlan_files(sdata
);
405 void ieee80211_debugfs_add_netdev(struct ieee80211_sub_if_data
*sdata
)
407 char buf
[10+IFNAMSIZ
];
409 sprintf(buf
, "netdev:%s", sdata
->name
);
410 sdata
->debugfs
.dir
= debugfs_create_dir(buf
,
411 sdata
->local
->hw
.wiphy
->debugfsdir
);
415 void ieee80211_debugfs_remove_netdev(struct ieee80211_sub_if_data
*sdata
)
417 if (!sdata
->debugfs
.dir
)
420 debugfs_remove_recursive(sdata
->debugfs
.dir
);
421 sdata
->debugfs
.dir
= NULL
;
424 void ieee80211_debugfs_rename_netdev(struct ieee80211_sub_if_data
*sdata
)
427 char buf
[10 + IFNAMSIZ
];
429 dir
= sdata
->debugfs
.dir
;
434 sprintf(buf
, "netdev:%s", sdata
->name
);
435 if (!debugfs_rename(dir
->d_parent
, dir
, dir
->d_parent
, buf
))
436 printk(KERN_ERR
"mac80211: debugfs: failed to rename debugfs "