blob: 637929b65ccc1f18b1bc0ad4dc7338170955c4fe [file] [log] [blame]
Johannes Berg7bcfaf22009-10-27 12:59:03 +01001
Jiri Bence9f207f2007-05-05 11:46:38 -07002/*
3 * mac80211 debugfs for wireless PHYs
4 *
5 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
6 *
7 * GPLv2
8 *
9 */
10
11#include <linux/debugfs.h>
12#include <linux/rtnetlink.h>
13#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020014#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040015#include "rate.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070016#include "debugfs.h"
17
18int mac80211_open_file_generic(struct inode *inode, struct file *file)
19{
20 file->private_data = inode->i_private;
21 return 0;
22}
23
Jiri Bence9f207f2007-05-05 11:46:38 -070024#define DEBUGFS_READONLY_FILE(name, buflen, fmt, value...) \
25static ssize_t name## _read(struct file *file, char __user *userbuf, \
26 size_t count, loff_t *ppos) \
27{ \
28 struct ieee80211_local *local = file->private_data; \
29 char buf[buflen]; \
30 int res; \
31 \
32 res = scnprintf(buf, buflen, fmt "\n", ##value); \
33 return simple_read_from_buffer(userbuf, count, ppos, buf, res); \
34} \
35 \
36static const struct file_operations name## _ops = { \
37 .read = name## _read, \
38 .open = mac80211_open_file_generic, \
39};
40
41#define DEBUGFS_ADD(name) \
Johannes Berg7bcfaf22009-10-27 12:59:03 +010042 debugfs_create_file(#name, 0400, phyd, local, &name## _ops);
Jiri Bence9f207f2007-05-05 11:46:38 -070043
Johannes Berg827b1fb2009-03-13 11:44:18 +010044#define DEBUGFS_ADD_MODE(name, mode) \
Johannes Berg7bcfaf22009-10-27 12:59:03 +010045 debugfs_create_file(#name, mode, phyd, local, &name## _ops);
Jiri Bence9f207f2007-05-05 11:46:38 -070046
47
Jiri Bence9f207f2007-05-05 11:46:38 -070048DEBUGFS_READONLY_FILE(frequency, 20, "%d",
Johannes Berg8318d782008-01-24 19:38:38 +010049 local->hw.conf.channel->center_freq);
Jiri Bence9f207f2007-05-05 11:46:38 -070050DEBUGFS_READONLY_FILE(total_ps_buffered, 20, "%d",
51 local->total_ps_buffered);
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +010052DEBUGFS_READONLY_FILE(wep_iv, 20, "%#08x",
Jiri Bence9f207f2007-05-05 11:46:38 -070053 local->wep_iv & 0xffffff);
Jiri Bence9f207f2007-05-05 11:46:38 -070054DEBUGFS_READONLY_FILE(rate_ctrl_alg, 100, "%s",
Johannes Bergaf65cd92009-11-17 18:18:36 +010055 local->rate_ctrl ? local->rate_ctrl->ops->name : "hw/driver");
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +010056
57static ssize_t tsf_read(struct file *file, char __user *user_buf,
58 size_t count, loff_t *ppos)
59{
60 struct ieee80211_local *local = file->private_data;
Johannes Berg24487982009-04-23 18:52:52 +020061 u64 tsf;
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +010062 char buf[100];
63
Johannes Berg24487982009-04-23 18:52:52 +020064 tsf = drv_get_tsf(local);
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +010065
66 snprintf(buf, sizeof(buf), "0x%016llx\n", (unsigned long long) tsf);
67
68 return simple_read_from_buffer(user_buf, count, ppos, buf, 19);
69}
70
71static ssize_t tsf_write(struct file *file,
72 const char __user *user_buf,
73 size_t count, loff_t *ppos)
74{
75 struct ieee80211_local *local = file->private_data;
76 unsigned long long tsf;
77 char buf[100];
78 size_t len;
79
80 len = min(count, sizeof(buf) - 1);
81 if (copy_from_user(buf, user_buf, len))
82 return -EFAULT;
83 buf[len] = '\0';
84
85 if (strncmp(buf, "reset", 5) == 0) {
86 if (local->ops->reset_tsf) {
Johannes Berg24487982009-04-23 18:52:52 +020087 drv_reset_tsf(local);
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +010088 printk(KERN_INFO "%s: debugfs reset TSF\n", wiphy_name(local->hw.wiphy));
89 }
90 } else {
91 tsf = simple_strtoul(buf, NULL, 0);
92 if (local->ops->set_tsf) {
Johannes Berg24487982009-04-23 18:52:52 +020093 drv_set_tsf(local, tsf);
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +010094 printk(KERN_INFO "%s: debugfs set TSF to %#018llx\n", wiphy_name(local->hw.wiphy), tsf);
95 }
96 }
97
98 return count;
99}
100
101static const struct file_operations tsf_ops = {
102 .read = tsf_read,
103 .write = tsf_write,
104 .open = mac80211_open_file_generic
105};
Jiri Bence9f207f2007-05-05 11:46:38 -0700106
Johannes Berg827b1fb2009-03-13 11:44:18 +0100107static ssize_t reset_write(struct file *file, const char __user *user_buf,
108 size_t count, loff_t *ppos)
109{
110 struct ieee80211_local *local = file->private_data;
111
112 rtnl_lock();
113 __ieee80211_suspend(&local->hw);
114 __ieee80211_resume(&local->hw);
115 rtnl_unlock();
116
117 return count;
118}
119
120static const struct file_operations reset_ops = {
121 .write = reset_write,
122 .open = mac80211_open_file_generic,
123};
124
Johannes Bergd3707d92009-05-12 22:05:40 +0200125static ssize_t noack_read(struct file *file, char __user *user_buf,
126 size_t count, loff_t *ppos)
127{
128 struct ieee80211_local *local = file->private_data;
129 int res;
130 char buf[10];
131
132 res = scnprintf(buf, sizeof(buf), "%d\n", local->wifi_wme_noack_test);
133
134 return simple_read_from_buffer(user_buf, count, ppos, buf, res);
135}
136
137static ssize_t noack_write(struct file *file,
138 const char __user *user_buf,
139 size_t count, loff_t *ppos)
140{
141 struct ieee80211_local *local = file->private_data;
142 char buf[10];
143 size_t len;
144
145 len = min(count, sizeof(buf) - 1);
146 if (copy_from_user(buf, user_buf, len))
147 return -EFAULT;
148 buf[len] = '\0';
149
150 local->wifi_wme_noack_test = !!simple_strtoul(buf, NULL, 0);
151
152 return count;
153}
154
155static const struct file_operations noack_ops = {
156 .read = noack_read,
157 .write = noack_write,
158 .open = mac80211_open_file_generic
159};
160
Kalle Valo50ae0cf2010-01-12 10:42:39 +0200161static ssize_t uapsd_queues_read(struct file *file, char __user *user_buf,
162 size_t count, loff_t *ppos)
163{
164 struct ieee80211_local *local = file->private_data;
165 int res;
166 char buf[10];
167
168 res = scnprintf(buf, sizeof(buf), "0x%x\n", local->uapsd_queues);
169
170 return simple_read_from_buffer(user_buf, count, ppos, buf, res);
171}
172
173static ssize_t uapsd_queues_write(struct file *file,
174 const char __user *user_buf,
175 size_t count, loff_t *ppos)
176{
177 struct ieee80211_local *local = file->private_data;
178 unsigned long val;
179 char buf[10];
180 size_t len;
181 int ret;
182
183 len = min(count, sizeof(buf) - 1);
184 if (copy_from_user(buf, user_buf, len))
185 return -EFAULT;
186 buf[len] = '\0';
187
188 ret = strict_strtoul(buf, 0, &val);
189
190 if (ret)
191 return -EINVAL;
192
193 if (val & ~IEEE80211_WMM_IE_STA_QOSINFO_AC_MASK)
194 return -ERANGE;
195
196 local->uapsd_queues = val;
197
198 return count;
199}
200
201static const struct file_operations uapsd_queues_ops = {
202 .read = uapsd_queues_read,
203 .write = uapsd_queues_write,
204 .open = mac80211_open_file_generic
205};
206
207static ssize_t uapsd_max_sp_len_read(struct file *file, char __user *user_buf,
208 size_t count, loff_t *ppos)
209{
210 struct ieee80211_local *local = file->private_data;
211 int res;
212 char buf[10];
213
214 res = scnprintf(buf, sizeof(buf), "0x%x\n", local->uapsd_max_sp_len);
215
216 return simple_read_from_buffer(user_buf, count, ppos, buf, res);
217}
218
219static ssize_t uapsd_max_sp_len_write(struct file *file,
220 const char __user *user_buf,
221 size_t count, loff_t *ppos)
222{
223 struct ieee80211_local *local = file->private_data;
224 unsigned long val;
225 char buf[10];
226 size_t len;
227 int ret;
228
229 len = min(count, sizeof(buf) - 1);
230 if (copy_from_user(buf, user_buf, len))
231 return -EFAULT;
232 buf[len] = '\0';
233
234 ret = strict_strtoul(buf, 0, &val);
235
236 if (ret)
237 return -EINVAL;
238
239 if (val & ~IEEE80211_WMM_IE_STA_QOSINFO_SP_MASK)
240 return -ERANGE;
241
242 local->uapsd_max_sp_len = val;
243
244 return count;
245}
246
247static const struct file_operations uapsd_max_sp_len_ops = {
248 .read = uapsd_max_sp_len_read,
249 .write = uapsd_max_sp_len_write,
250 .open = mac80211_open_file_generic
251};
252
Benoit Papillault199d69f2010-02-04 22:00:20 +0100253static ssize_t channel_type_read(struct file *file, char __user *user_buf,
254 size_t count, loff_t *ppos)
255{
256 struct ieee80211_local *local = file->private_data;
257 const char *buf;
258
259 switch (local->hw.conf.channel_type) {
260 case NL80211_CHAN_NO_HT:
261 buf = "no ht\n";
262 break;
263 case NL80211_CHAN_HT20:
264 buf = "ht20\n";
265 break;
266 case NL80211_CHAN_HT40MINUS:
267 buf = "ht40-\n";
268 break;
269 case NL80211_CHAN_HT40PLUS:
270 buf = "ht40+\n";
271 break;
272 default:
273 buf = "???";
274 break;
275 }
276
277 return simple_read_from_buffer(user_buf, count, ppos, buf, strlen(buf));
278}
279
280static const struct file_operations channel_type_ops = {
281 .read = channel_type_read,
282 .open = mac80211_open_file_generic
283};
284
Johannes Bergdb2e6bd2009-06-14 17:37:39 +0200285static ssize_t queues_read(struct file *file, char __user *user_buf,
286 size_t count, loff_t *ppos)
287{
288 struct ieee80211_local *local = file->private_data;
289 unsigned long flags;
290 char buf[IEEE80211_MAX_QUEUES * 20];
291 int q, res = 0;
292
293 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
294 for (q = 0; q < local->hw.queues; q++)
295 res += sprintf(buf + res, "%02d: %#.8lx/%d\n", q,
296 local->queue_stop_reasons[q],
Johannes Berg3b8d81e2009-06-17 17:43:56 +0200297 skb_queue_len(&local->pending[q]));
Johannes Bergdb2e6bd2009-06-14 17:37:39 +0200298 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
299
300 return simple_read_from_buffer(user_buf, count, ppos, buf, res);
301}
302
303static const struct file_operations queues_ops = {
304 .read = queues_read,
305 .open = mac80211_open_file_generic
306};
307
Jiri Bence9f207f2007-05-05 11:46:38 -0700308/* statistics stuff */
309
Jiri Bence9f207f2007-05-05 11:46:38 -0700310#define DEBUGFS_STATS_FILE(name, buflen, fmt, value...) \
311 DEBUGFS_READONLY_FILE(stats_ ##name, buflen, fmt, ##value)
312
313static ssize_t format_devstat_counter(struct ieee80211_local *local,
314 char __user *userbuf,
315 size_t count, loff_t *ppos,
316 int (*printvalue)(struct ieee80211_low_level_stats *stats, char *buf,
317 int buflen))
318{
319 struct ieee80211_low_level_stats stats;
320 char buf[20];
321 int res;
322
Johannes Berg75636522008-07-09 14:40:35 +0200323 rtnl_lock();
Johannes Berg24487982009-04-23 18:52:52 +0200324 res = drv_get_stats(local, &stats);
Jiri Bence9f207f2007-05-05 11:46:38 -0700325 rtnl_unlock();
Johannes Berg24487982009-04-23 18:52:52 +0200326 if (res)
327 return res;
328 res = printvalue(&stats, buf, sizeof(buf));
Jiri Bence9f207f2007-05-05 11:46:38 -0700329 return simple_read_from_buffer(userbuf, count, ppos, buf, res);
330}
331
332#define DEBUGFS_DEVSTATS_FILE(name) \
333static int print_devstats_##name(struct ieee80211_low_level_stats *stats,\
334 char *buf, int buflen) \
335{ \
336 return scnprintf(buf, buflen, "%u\n", stats->name); \
337} \
338static ssize_t stats_ ##name## _read(struct file *file, \
339 char __user *userbuf, \
340 size_t count, loff_t *ppos) \
341{ \
342 return format_devstat_counter(file->private_data, \
343 userbuf, \
344 count, \
345 ppos, \
346 print_devstats_##name); \
347} \
348 \
349static const struct file_operations stats_ ##name## _ops = { \
350 .read = stats_ ##name## _read, \
351 .open = mac80211_open_file_generic, \
352};
353
354#define DEBUGFS_STATS_ADD(name) \
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100355 debugfs_create_file(#name, 0400, statsd, local, &stats_ ##name## _ops);
Jiri Bence9f207f2007-05-05 11:46:38 -0700356
357DEBUGFS_STATS_FILE(transmitted_fragment_count, 20, "%u",
358 local->dot11TransmittedFragmentCount);
359DEBUGFS_STATS_FILE(multicast_transmitted_frame_count, 20, "%u",
360 local->dot11MulticastTransmittedFrameCount);
361DEBUGFS_STATS_FILE(failed_count, 20, "%u",
362 local->dot11FailedCount);
363DEBUGFS_STATS_FILE(retry_count, 20, "%u",
364 local->dot11RetryCount);
365DEBUGFS_STATS_FILE(multiple_retry_count, 20, "%u",
366 local->dot11MultipleRetryCount);
367DEBUGFS_STATS_FILE(frame_duplicate_count, 20, "%u",
368 local->dot11FrameDuplicateCount);
369DEBUGFS_STATS_FILE(received_fragment_count, 20, "%u",
370 local->dot11ReceivedFragmentCount);
371DEBUGFS_STATS_FILE(multicast_received_frame_count, 20, "%u",
372 local->dot11MulticastReceivedFrameCount);
373DEBUGFS_STATS_FILE(transmitted_frame_count, 20, "%u",
374 local->dot11TransmittedFrameCount);
Jiri Bence9f207f2007-05-05 11:46:38 -0700375#ifdef CONFIG_MAC80211_DEBUG_COUNTERS
376DEBUGFS_STATS_FILE(tx_handlers_drop, 20, "%u",
377 local->tx_handlers_drop);
378DEBUGFS_STATS_FILE(tx_handlers_queued, 20, "%u",
379 local->tx_handlers_queued);
380DEBUGFS_STATS_FILE(tx_handlers_drop_unencrypted, 20, "%u",
381 local->tx_handlers_drop_unencrypted);
382DEBUGFS_STATS_FILE(tx_handlers_drop_fragment, 20, "%u",
383 local->tx_handlers_drop_fragment);
384DEBUGFS_STATS_FILE(tx_handlers_drop_wep, 20, "%u",
385 local->tx_handlers_drop_wep);
386DEBUGFS_STATS_FILE(tx_handlers_drop_not_assoc, 20, "%u",
387 local->tx_handlers_drop_not_assoc);
388DEBUGFS_STATS_FILE(tx_handlers_drop_unauth_port, 20, "%u",
389 local->tx_handlers_drop_unauth_port);
390DEBUGFS_STATS_FILE(rx_handlers_drop, 20, "%u",
391 local->rx_handlers_drop);
392DEBUGFS_STATS_FILE(rx_handlers_queued, 20, "%u",
393 local->rx_handlers_queued);
394DEBUGFS_STATS_FILE(rx_handlers_drop_nullfunc, 20, "%u",
395 local->rx_handlers_drop_nullfunc);
396DEBUGFS_STATS_FILE(rx_handlers_drop_defrag, 20, "%u",
397 local->rx_handlers_drop_defrag);
398DEBUGFS_STATS_FILE(rx_handlers_drop_short, 20, "%u",
399 local->rx_handlers_drop_short);
400DEBUGFS_STATS_FILE(rx_handlers_drop_passive_scan, 20, "%u",
401 local->rx_handlers_drop_passive_scan);
402DEBUGFS_STATS_FILE(tx_expand_skb_head, 20, "%u",
403 local->tx_expand_skb_head);
404DEBUGFS_STATS_FILE(tx_expand_skb_head_cloned, 20, "%u",
405 local->tx_expand_skb_head_cloned);
406DEBUGFS_STATS_FILE(rx_expand_skb_head, 20, "%u",
407 local->rx_expand_skb_head);
408DEBUGFS_STATS_FILE(rx_expand_skb_head2, 20, "%u",
409 local->rx_expand_skb_head2);
410DEBUGFS_STATS_FILE(rx_handlers_fragments, 20, "%u",
411 local->rx_handlers_fragments);
412DEBUGFS_STATS_FILE(tx_status_drop, 20, "%u",
413 local->tx_status_drop);
414
Jiri Bence9f207f2007-05-05 11:46:38 -0700415#endif
416
417DEBUGFS_DEVSTATS_FILE(dot11ACKFailureCount);
418DEBUGFS_DEVSTATS_FILE(dot11RTSFailureCount);
419DEBUGFS_DEVSTATS_FILE(dot11FCSErrorCount);
420DEBUGFS_DEVSTATS_FILE(dot11RTSSuccessCount);
421
422
423void debugfs_hw_add(struct ieee80211_local *local)
424{
425 struct dentry *phyd = local->hw.wiphy->debugfsdir;
426 struct dentry *statsd;
427
428 if (!phyd)
429 return;
430
431 local->debugfs.stations = debugfs_create_dir("stations", phyd);
432 local->debugfs.keys = debugfs_create_dir("keys", phyd);
433
Jiri Bence9f207f2007-05-05 11:46:38 -0700434 DEBUGFS_ADD(frequency);
Jiri Bence9f207f2007-05-05 11:46:38 -0700435 DEBUGFS_ADD(total_ps_buffered);
Jiri Bence9f207f2007-05-05 11:46:38 -0700436 DEBUGFS_ADD(wep_iv);
Alina Friedrichsenae54c982009-01-23 05:33:37 +0100437 DEBUGFS_ADD(tsf);
Johannes Bergdb2e6bd2009-06-14 17:37:39 +0200438 DEBUGFS_ADD(queues);
Johannes Berg827b1fb2009-03-13 11:44:18 +0100439 DEBUGFS_ADD_MODE(reset, 0200);
Johannes Bergd3707d92009-05-12 22:05:40 +0200440 DEBUGFS_ADD(noack);
Kalle Valo50ae0cf2010-01-12 10:42:39 +0200441 DEBUGFS_ADD(uapsd_queues);
442 DEBUGFS_ADD(uapsd_max_sp_len);
Benoit Papillault199d69f2010-02-04 22:00:20 +0100443 DEBUGFS_ADD(channel_type);
Jiri Bence9f207f2007-05-05 11:46:38 -0700444
445 statsd = debugfs_create_dir("statistics", phyd);
Jiri Bence9f207f2007-05-05 11:46:38 -0700446
447 /* if the dir failed, don't put all the other things into the root! */
448 if (!statsd)
449 return;
450
451 DEBUGFS_STATS_ADD(transmitted_fragment_count);
452 DEBUGFS_STATS_ADD(multicast_transmitted_frame_count);
453 DEBUGFS_STATS_ADD(failed_count);
454 DEBUGFS_STATS_ADD(retry_count);
455 DEBUGFS_STATS_ADD(multiple_retry_count);
456 DEBUGFS_STATS_ADD(frame_duplicate_count);
457 DEBUGFS_STATS_ADD(received_fragment_count);
458 DEBUGFS_STATS_ADD(multicast_received_frame_count);
459 DEBUGFS_STATS_ADD(transmitted_frame_count);
Jiri Bence9f207f2007-05-05 11:46:38 -0700460#ifdef CONFIG_MAC80211_DEBUG_COUNTERS
461 DEBUGFS_STATS_ADD(tx_handlers_drop);
462 DEBUGFS_STATS_ADD(tx_handlers_queued);
463 DEBUGFS_STATS_ADD(tx_handlers_drop_unencrypted);
464 DEBUGFS_STATS_ADD(tx_handlers_drop_fragment);
465 DEBUGFS_STATS_ADD(tx_handlers_drop_wep);
466 DEBUGFS_STATS_ADD(tx_handlers_drop_not_assoc);
467 DEBUGFS_STATS_ADD(tx_handlers_drop_unauth_port);
468 DEBUGFS_STATS_ADD(rx_handlers_drop);
469 DEBUGFS_STATS_ADD(rx_handlers_queued);
470 DEBUGFS_STATS_ADD(rx_handlers_drop_nullfunc);
471 DEBUGFS_STATS_ADD(rx_handlers_drop_defrag);
472 DEBUGFS_STATS_ADD(rx_handlers_drop_short);
473 DEBUGFS_STATS_ADD(rx_handlers_drop_passive_scan);
474 DEBUGFS_STATS_ADD(tx_expand_skb_head);
475 DEBUGFS_STATS_ADD(tx_expand_skb_head_cloned);
476 DEBUGFS_STATS_ADD(rx_expand_skb_head);
477 DEBUGFS_STATS_ADD(rx_expand_skb_head2);
478 DEBUGFS_STATS_ADD(rx_handlers_fragments);
479 DEBUGFS_STATS_ADD(tx_status_drop);
Jiri Bence9f207f2007-05-05 11:46:38 -0700480#endif
481 DEBUGFS_STATS_ADD(dot11ACKFailureCount);
482 DEBUGFS_STATS_ADD(dot11RTSFailureCount);
483 DEBUGFS_STATS_ADD(dot11FCSErrorCount);
484 DEBUGFS_STATS_ADD(dot11RTSSuccessCount);
485}