blob: dc5ed1a8bf626ca9effec4016fe4faecd00cb2f3 [file] [log] [blame]
Jiri Bence9f207f2007-05-05 11:46:38 -07001/*
2 * mac80211 debugfs for wireless PHYs
3 *
4 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
5 *
6 * GPLv2
7 *
8 */
9
10#include <linux/debugfs.h>
11#include <linux/rtnetlink.h>
12#include "ieee80211_i.h"
13#include "ieee80211_rate.h"
14#include "debugfs.h"
15
16int mac80211_open_file_generic(struct inode *inode, struct file *file)
17{
18 file->private_data = inode->i_private;
19 return 0;
20}
21
22static const char *ieee80211_mode_str(int mode)
23{
24 switch (mode) {
25 case MODE_IEEE80211A:
26 return "IEEE 802.11a";
27 case MODE_IEEE80211B:
28 return "IEEE 802.11b";
29 case MODE_IEEE80211G:
30 return "IEEE 802.11g";
31 case MODE_ATHEROS_TURBO:
32 return "Atheros Turbo (5 GHz)";
33 default:
34 return "UNKNOWN";
35 }
36}
37
38static ssize_t modes_read(struct file *file, char __user *userbuf,
39 size_t count, loff_t *ppos)
40{
41 struct ieee80211_local *local = file->private_data;
42 struct ieee80211_hw_mode *mode;
43 char buf[150], *p = buf;
44
45 /* FIXME: locking! */
46 list_for_each_entry(mode, &local->modes_list, list) {
47 p += scnprintf(p, sizeof(buf)+buf-p,
48 "%s\n", ieee80211_mode_str(mode->mode));
49 }
50
51 return simple_read_from_buffer(userbuf, count, ppos, buf, p-buf);
52}
53
54static const struct file_operations modes_ops = {
55 .read = modes_read,
56 .open = mac80211_open_file_generic,
57};
58
59#define DEBUGFS_READONLY_FILE(name, buflen, fmt, value...) \
60static ssize_t name## _read(struct file *file, char __user *userbuf, \
61 size_t count, loff_t *ppos) \
62{ \
63 struct ieee80211_local *local = file->private_data; \
64 char buf[buflen]; \
65 int res; \
66 \
67 res = scnprintf(buf, buflen, fmt "\n", ##value); \
68 return simple_read_from_buffer(userbuf, count, ppos, buf, res); \
69} \
70 \
71static const struct file_operations name## _ops = { \
72 .read = name## _read, \
73 .open = mac80211_open_file_generic, \
74};
75
76#define DEBUGFS_ADD(name) \
77 local->debugfs.name = debugfs_create_file(#name, 0444, phyd, \
78 local, &name## _ops);
79
80#define DEBUGFS_DEL(name) \
81 debugfs_remove(local->debugfs.name); \
82 local->debugfs.name = NULL;
83
84
85DEBUGFS_READONLY_FILE(channel, 20, "%d",
86 local->hw.conf.channel);
87DEBUGFS_READONLY_FILE(frequency, 20, "%d",
88 local->hw.conf.freq);
Jiri Bence9f207f2007-05-05 11:46:38 -070089DEBUGFS_READONLY_FILE(antenna_sel_tx, 20, "%d",
90 local->hw.conf.antenna_sel_tx);
91DEBUGFS_READONLY_FILE(antenna_sel_rx, 20, "%d",
92 local->hw.conf.antenna_sel_rx);
93DEBUGFS_READONLY_FILE(bridge_packets, 20, "%d",
94 local->bridge_packets);
95DEBUGFS_READONLY_FILE(key_tx_rx_threshold, 20, "%d",
96 local->key_tx_rx_threshold);
97DEBUGFS_READONLY_FILE(rts_threshold, 20, "%d",
98 local->rts_threshold);
99DEBUGFS_READONLY_FILE(fragmentation_threshold, 20, "%d",
100 local->fragmentation_threshold);
101DEBUGFS_READONLY_FILE(short_retry_limit, 20, "%d",
102 local->short_retry_limit);
103DEBUGFS_READONLY_FILE(long_retry_limit, 20, "%d",
104 local->long_retry_limit);
105DEBUGFS_READONLY_FILE(total_ps_buffered, 20, "%d",
106 local->total_ps_buffered);
107DEBUGFS_READONLY_FILE(mode, 20, "%s",
108 ieee80211_mode_str(local->hw.conf.phymode));
109DEBUGFS_READONLY_FILE(wep_iv, 20, "%#06x",
110 local->wep_iv & 0xffffff);
Jiri Bence9f207f2007-05-05 11:46:38 -0700111DEBUGFS_READONLY_FILE(rate_ctrl_alg, 100, "%s",
112 local->rate_ctrl ? local->rate_ctrl->ops->name : "<unset>");
113
114/* statistics stuff */
115
116static inline int rtnl_lock_local(struct ieee80211_local *local)
117{
118 rtnl_lock();
119 if (unlikely(local->reg_state != IEEE80211_DEV_REGISTERED)) {
120 rtnl_unlock();
121 return -ENODEV;
122 }
123 return 0;
124}
125
126#define DEBUGFS_STATS_FILE(name, buflen, fmt, value...) \
127 DEBUGFS_READONLY_FILE(stats_ ##name, buflen, fmt, ##value)
128
129static ssize_t format_devstat_counter(struct ieee80211_local *local,
130 char __user *userbuf,
131 size_t count, loff_t *ppos,
132 int (*printvalue)(struct ieee80211_low_level_stats *stats, char *buf,
133 int buflen))
134{
135 struct ieee80211_low_level_stats stats;
136 char buf[20];
137 int res;
138
139 if (!local->ops->get_stats)
140 return -EOPNOTSUPP;
141
142 res = rtnl_lock_local(local);
143 if (res)
144 return res;
145
146 res = local->ops->get_stats(local_to_hw(local), &stats);
147 rtnl_unlock();
148 if (!res)
149 res = printvalue(&stats, buf, sizeof(buf));
150 return simple_read_from_buffer(userbuf, count, ppos, buf, res);
151}
152
153#define DEBUGFS_DEVSTATS_FILE(name) \
154static int print_devstats_##name(struct ieee80211_low_level_stats *stats,\
155 char *buf, int buflen) \
156{ \
157 return scnprintf(buf, buflen, "%u\n", stats->name); \
158} \
159static ssize_t stats_ ##name## _read(struct file *file, \
160 char __user *userbuf, \
161 size_t count, loff_t *ppos) \
162{ \
163 return format_devstat_counter(file->private_data, \
164 userbuf, \
165 count, \
166 ppos, \
167 print_devstats_##name); \
168} \
169 \
170static const struct file_operations stats_ ##name## _ops = { \
171 .read = stats_ ##name## _read, \
172 .open = mac80211_open_file_generic, \
173};
174
175#define DEBUGFS_STATS_ADD(name) \
176 local->debugfs.stats.name = debugfs_create_file(#name, 0444, statsd,\
177 local, &stats_ ##name## _ops);
178
179#define DEBUGFS_STATS_DEL(name) \
180 debugfs_remove(local->debugfs.stats.name); \
181 local->debugfs.stats.name = NULL;
182
183DEBUGFS_STATS_FILE(transmitted_fragment_count, 20, "%u",
184 local->dot11TransmittedFragmentCount);
185DEBUGFS_STATS_FILE(multicast_transmitted_frame_count, 20, "%u",
186 local->dot11MulticastTransmittedFrameCount);
187DEBUGFS_STATS_FILE(failed_count, 20, "%u",
188 local->dot11FailedCount);
189DEBUGFS_STATS_FILE(retry_count, 20, "%u",
190 local->dot11RetryCount);
191DEBUGFS_STATS_FILE(multiple_retry_count, 20, "%u",
192 local->dot11MultipleRetryCount);
193DEBUGFS_STATS_FILE(frame_duplicate_count, 20, "%u",
194 local->dot11FrameDuplicateCount);
195DEBUGFS_STATS_FILE(received_fragment_count, 20, "%u",
196 local->dot11ReceivedFragmentCount);
197DEBUGFS_STATS_FILE(multicast_received_frame_count, 20, "%u",
198 local->dot11MulticastReceivedFrameCount);
199DEBUGFS_STATS_FILE(transmitted_frame_count, 20, "%u",
200 local->dot11TransmittedFrameCount);
201DEBUGFS_STATS_FILE(wep_undecryptable_count, 20, "%u",
202 local->dot11WEPUndecryptableCount);
203#ifdef CONFIG_MAC80211_DEBUG_COUNTERS
204DEBUGFS_STATS_FILE(tx_handlers_drop, 20, "%u",
205 local->tx_handlers_drop);
206DEBUGFS_STATS_FILE(tx_handlers_queued, 20, "%u",
207 local->tx_handlers_queued);
208DEBUGFS_STATS_FILE(tx_handlers_drop_unencrypted, 20, "%u",
209 local->tx_handlers_drop_unencrypted);
210DEBUGFS_STATS_FILE(tx_handlers_drop_fragment, 20, "%u",
211 local->tx_handlers_drop_fragment);
212DEBUGFS_STATS_FILE(tx_handlers_drop_wep, 20, "%u",
213 local->tx_handlers_drop_wep);
214DEBUGFS_STATS_FILE(tx_handlers_drop_not_assoc, 20, "%u",
215 local->tx_handlers_drop_not_assoc);
216DEBUGFS_STATS_FILE(tx_handlers_drop_unauth_port, 20, "%u",
217 local->tx_handlers_drop_unauth_port);
218DEBUGFS_STATS_FILE(rx_handlers_drop, 20, "%u",
219 local->rx_handlers_drop);
220DEBUGFS_STATS_FILE(rx_handlers_queued, 20, "%u",
221 local->rx_handlers_queued);
222DEBUGFS_STATS_FILE(rx_handlers_drop_nullfunc, 20, "%u",
223 local->rx_handlers_drop_nullfunc);
224DEBUGFS_STATS_FILE(rx_handlers_drop_defrag, 20, "%u",
225 local->rx_handlers_drop_defrag);
226DEBUGFS_STATS_FILE(rx_handlers_drop_short, 20, "%u",
227 local->rx_handlers_drop_short);
228DEBUGFS_STATS_FILE(rx_handlers_drop_passive_scan, 20, "%u",
229 local->rx_handlers_drop_passive_scan);
230DEBUGFS_STATS_FILE(tx_expand_skb_head, 20, "%u",
231 local->tx_expand_skb_head);
232DEBUGFS_STATS_FILE(tx_expand_skb_head_cloned, 20, "%u",
233 local->tx_expand_skb_head_cloned);
234DEBUGFS_STATS_FILE(rx_expand_skb_head, 20, "%u",
235 local->rx_expand_skb_head);
236DEBUGFS_STATS_FILE(rx_expand_skb_head2, 20, "%u",
237 local->rx_expand_skb_head2);
238DEBUGFS_STATS_FILE(rx_handlers_fragments, 20, "%u",
239 local->rx_handlers_fragments);
240DEBUGFS_STATS_FILE(tx_status_drop, 20, "%u",
241 local->tx_status_drop);
242
243static ssize_t stats_wme_rx_queue_read(struct file *file,
244 char __user *userbuf,
245 size_t count, loff_t *ppos)
246{
247 struct ieee80211_local *local = file->private_data;
248 char buf[NUM_RX_DATA_QUEUES*15], *p = buf;
249 int i;
250
251 for (i = 0; i < NUM_RX_DATA_QUEUES; i++)
252 p += scnprintf(p, sizeof(buf)+buf-p,
253 "%u\n", local->wme_rx_queue[i]);
254
255 return simple_read_from_buffer(userbuf, count, ppos, buf, p-buf);
256}
257
258static const struct file_operations stats_wme_rx_queue_ops = {
259 .read = stats_wme_rx_queue_read,
260 .open = mac80211_open_file_generic,
261};
262
263static ssize_t stats_wme_tx_queue_read(struct file *file,
264 char __user *userbuf,
265 size_t count, loff_t *ppos)
266{
267 struct ieee80211_local *local = file->private_data;
268 char buf[NUM_TX_DATA_QUEUES*15], *p = buf;
269 int i;
270
271 for (i = 0; i < NUM_TX_DATA_QUEUES; i++)
272 p += scnprintf(p, sizeof(buf)+buf-p,
273 "%u\n", local->wme_tx_queue[i]);
274
275 return simple_read_from_buffer(userbuf, count, ppos, buf, p-buf);
276}
277
278static const struct file_operations stats_wme_tx_queue_ops = {
279 .read = stats_wme_tx_queue_read,
280 .open = mac80211_open_file_generic,
281};
282#endif
283
284DEBUGFS_DEVSTATS_FILE(dot11ACKFailureCount);
285DEBUGFS_DEVSTATS_FILE(dot11RTSFailureCount);
286DEBUGFS_DEVSTATS_FILE(dot11FCSErrorCount);
287DEBUGFS_DEVSTATS_FILE(dot11RTSSuccessCount);
288
289
290void debugfs_hw_add(struct ieee80211_local *local)
291{
292 struct dentry *phyd = local->hw.wiphy->debugfsdir;
293 struct dentry *statsd;
294
295 if (!phyd)
296 return;
297
298 local->debugfs.stations = debugfs_create_dir("stations", phyd);
299 local->debugfs.keys = debugfs_create_dir("keys", phyd);
300
301 DEBUGFS_ADD(channel);
302 DEBUGFS_ADD(frequency);
Jiri Bence9f207f2007-05-05 11:46:38 -0700303 DEBUGFS_ADD(antenna_sel_tx);
304 DEBUGFS_ADD(antenna_sel_rx);
305 DEBUGFS_ADD(bridge_packets);
306 DEBUGFS_ADD(key_tx_rx_threshold);
307 DEBUGFS_ADD(rts_threshold);
308 DEBUGFS_ADD(fragmentation_threshold);
309 DEBUGFS_ADD(short_retry_limit);
310 DEBUGFS_ADD(long_retry_limit);
311 DEBUGFS_ADD(total_ps_buffered);
312 DEBUGFS_ADD(mode);
313 DEBUGFS_ADD(wep_iv);
Jiri Bence9f207f2007-05-05 11:46:38 -0700314 DEBUGFS_ADD(modes);
315
316 statsd = debugfs_create_dir("statistics", phyd);
317 local->debugfs.statistics = statsd;
318
319 /* if the dir failed, don't put all the other things into the root! */
320 if (!statsd)
321 return;
322
323 DEBUGFS_STATS_ADD(transmitted_fragment_count);
324 DEBUGFS_STATS_ADD(multicast_transmitted_frame_count);
325 DEBUGFS_STATS_ADD(failed_count);
326 DEBUGFS_STATS_ADD(retry_count);
327 DEBUGFS_STATS_ADD(multiple_retry_count);
328 DEBUGFS_STATS_ADD(frame_duplicate_count);
329 DEBUGFS_STATS_ADD(received_fragment_count);
330 DEBUGFS_STATS_ADD(multicast_received_frame_count);
331 DEBUGFS_STATS_ADD(transmitted_frame_count);
332 DEBUGFS_STATS_ADD(wep_undecryptable_count);
333#ifdef CONFIG_MAC80211_DEBUG_COUNTERS
334 DEBUGFS_STATS_ADD(tx_handlers_drop);
335 DEBUGFS_STATS_ADD(tx_handlers_queued);
336 DEBUGFS_STATS_ADD(tx_handlers_drop_unencrypted);
337 DEBUGFS_STATS_ADD(tx_handlers_drop_fragment);
338 DEBUGFS_STATS_ADD(tx_handlers_drop_wep);
339 DEBUGFS_STATS_ADD(tx_handlers_drop_not_assoc);
340 DEBUGFS_STATS_ADD(tx_handlers_drop_unauth_port);
341 DEBUGFS_STATS_ADD(rx_handlers_drop);
342 DEBUGFS_STATS_ADD(rx_handlers_queued);
343 DEBUGFS_STATS_ADD(rx_handlers_drop_nullfunc);
344 DEBUGFS_STATS_ADD(rx_handlers_drop_defrag);
345 DEBUGFS_STATS_ADD(rx_handlers_drop_short);
346 DEBUGFS_STATS_ADD(rx_handlers_drop_passive_scan);
347 DEBUGFS_STATS_ADD(tx_expand_skb_head);
348 DEBUGFS_STATS_ADD(tx_expand_skb_head_cloned);
349 DEBUGFS_STATS_ADD(rx_expand_skb_head);
350 DEBUGFS_STATS_ADD(rx_expand_skb_head2);
351 DEBUGFS_STATS_ADD(rx_handlers_fragments);
352 DEBUGFS_STATS_ADD(tx_status_drop);
353 DEBUGFS_STATS_ADD(wme_tx_queue);
354 DEBUGFS_STATS_ADD(wme_rx_queue);
355#endif
356 DEBUGFS_STATS_ADD(dot11ACKFailureCount);
357 DEBUGFS_STATS_ADD(dot11RTSFailureCount);
358 DEBUGFS_STATS_ADD(dot11FCSErrorCount);
359 DEBUGFS_STATS_ADD(dot11RTSSuccessCount);
360}
361
362void debugfs_hw_del(struct ieee80211_local *local)
363{
364 DEBUGFS_DEL(channel);
365 DEBUGFS_DEL(frequency);
Jiri Bence9f207f2007-05-05 11:46:38 -0700366 DEBUGFS_DEL(antenna_sel_tx);
367 DEBUGFS_DEL(antenna_sel_rx);
368 DEBUGFS_DEL(bridge_packets);
369 DEBUGFS_DEL(key_tx_rx_threshold);
370 DEBUGFS_DEL(rts_threshold);
371 DEBUGFS_DEL(fragmentation_threshold);
372 DEBUGFS_DEL(short_retry_limit);
373 DEBUGFS_DEL(long_retry_limit);
374 DEBUGFS_DEL(total_ps_buffered);
375 DEBUGFS_DEL(mode);
376 DEBUGFS_DEL(wep_iv);
Jiri Bence9f207f2007-05-05 11:46:38 -0700377 DEBUGFS_DEL(modes);
378
379 DEBUGFS_STATS_DEL(transmitted_fragment_count);
380 DEBUGFS_STATS_DEL(multicast_transmitted_frame_count);
381 DEBUGFS_STATS_DEL(failed_count);
382 DEBUGFS_STATS_DEL(retry_count);
383 DEBUGFS_STATS_DEL(multiple_retry_count);
384 DEBUGFS_STATS_DEL(frame_duplicate_count);
385 DEBUGFS_STATS_DEL(received_fragment_count);
386 DEBUGFS_STATS_DEL(multicast_received_frame_count);
387 DEBUGFS_STATS_DEL(transmitted_frame_count);
388 DEBUGFS_STATS_DEL(wep_undecryptable_count);
389 DEBUGFS_STATS_DEL(num_scans);
390#ifdef CONFIG_MAC80211_DEBUG_COUNTERS
391 DEBUGFS_STATS_DEL(tx_handlers_drop);
392 DEBUGFS_STATS_DEL(tx_handlers_queued);
393 DEBUGFS_STATS_DEL(tx_handlers_drop_unencrypted);
394 DEBUGFS_STATS_DEL(tx_handlers_drop_fragment);
395 DEBUGFS_STATS_DEL(tx_handlers_drop_wep);
396 DEBUGFS_STATS_DEL(tx_handlers_drop_not_assoc);
397 DEBUGFS_STATS_DEL(tx_handlers_drop_unauth_port);
398 DEBUGFS_STATS_DEL(rx_handlers_drop);
399 DEBUGFS_STATS_DEL(rx_handlers_queued);
400 DEBUGFS_STATS_DEL(rx_handlers_drop_nullfunc);
401 DEBUGFS_STATS_DEL(rx_handlers_drop_defrag);
402 DEBUGFS_STATS_DEL(rx_handlers_drop_short);
403 DEBUGFS_STATS_DEL(rx_handlers_drop_passive_scan);
404 DEBUGFS_STATS_DEL(tx_expand_skb_head);
405 DEBUGFS_STATS_DEL(tx_expand_skb_head_cloned);
406 DEBUGFS_STATS_DEL(rx_expand_skb_head);
407 DEBUGFS_STATS_DEL(rx_expand_skb_head2);
408 DEBUGFS_STATS_DEL(rx_handlers_fragments);
409 DEBUGFS_STATS_DEL(tx_status_drop);
410 DEBUGFS_STATS_DEL(wme_tx_queue);
411 DEBUGFS_STATS_DEL(wme_rx_queue);
412#endif
413 DEBUGFS_STATS_DEL(dot11ACKFailureCount);
414 DEBUGFS_STATS_DEL(dot11RTSFailureCount);
415 DEBUGFS_STATS_DEL(dot11FCSErrorCount);
416 DEBUGFS_STATS_DEL(dot11RTSSuccessCount);
417
418 debugfs_remove(local->debugfs.statistics);
419 local->debugfs.statistics = NULL;
420 debugfs_remove(local->debugfs.stations);
421 local->debugfs.stations = NULL;
422 debugfs_remove(local->debugfs.keys);
423 local->debugfs.keys = NULL;
424}