blob: 5d453916a4179877ff2f7d0b45f908905b4e5d22 [file] [log] [blame]
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -04001/*
2 * cfg80211 debugfs
3 *
4 * Copyright 2009 Luis R. Rodriguez <lrodriguez@atheros.com>
5 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -040013#include "core.h"
14#include "debugfs.h"
15
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -040016#define DEBUGFS_READONLY_FILE(name, buflen, fmt, value...) \
17static ssize_t name## _read(struct file *file, char __user *userbuf, \
18 size_t count, loff_t *ppos) \
19{ \
20 struct wiphy *wiphy= file->private_data; \
21 char buf[buflen]; \
22 int res; \
23 \
24 res = scnprintf(buf, buflen, fmt "\n", ##value); \
25 return simple_read_from_buffer(userbuf, count, ppos, buf, res); \
26} \
27 \
28static const struct file_operations name## _ops = { \
29 .read = name## _read, \
Stephen Boyd234e3402012-04-05 14:25:11 -070030 .open = simple_open, \
Arnd Bergmann2b18ab362010-07-06 19:05:31 +020031 .llseek = generic_file_llseek, \
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -040032};
33
34DEBUGFS_READONLY_FILE(rts_threshold, 20, "%d",
35 wiphy->rts_threshold)
36DEBUGFS_READONLY_FILE(fragmentation_threshold, 20, "%d",
37 wiphy->frag_threshold);
38DEBUGFS_READONLY_FILE(short_retry_limit, 20, "%d",
39 wiphy->retry_short)
40DEBUGFS_READONLY_FILE(long_retry_limit, 20, "%d",
41 wiphy->retry_long);
42
Luis R. Rodriguez80a35112009-05-02 00:39:30 -040043static int ht_print_chan(struct ieee80211_channel *chan,
44 char *buf, int buf_size, int offset)
45{
46 if (WARN_ON(offset > buf_size))
47 return 0;
48
49 if (chan->flags & IEEE80211_CHAN_DISABLED)
Eliad Pellerf364ef92013-08-27 12:40:15 +030050 return scnprintf(buf + offset,
51 buf_size - offset,
52 "%d Disabled\n",
53 chan->center_freq);
Luis R. Rodriguez80a35112009-05-02 00:39:30 -040054
Eliad Pellerf364ef92013-08-27 12:40:15 +030055 return scnprintf(buf + offset,
56 buf_size - offset,
57 "%d HT40 %c%c\n",
58 chan->center_freq,
59 (chan->flags & IEEE80211_CHAN_NO_HT40MINUS) ?
60 ' ' : '-',
61 (chan->flags & IEEE80211_CHAN_NO_HT40PLUS) ?
62 ' ' : '+');
Luis R. Rodriguez80a35112009-05-02 00:39:30 -040063}
64
65static ssize_t ht40allow_map_read(struct file *file,
66 char __user *user_buf,
67 size_t count, loff_t *ppos)
68{
69 struct wiphy *wiphy = file->private_data;
70 char *buf;
71 unsigned int offset = 0, buf_size = PAGE_SIZE, i, r;
Johannes Berg57fbcce2016-04-12 15:56:15 +020072 enum nl80211_band band;
Luis R. Rodriguez80a35112009-05-02 00:39:30 -040073 struct ieee80211_supported_band *sband;
74
75 buf = kzalloc(buf_size, GFP_KERNEL);
76 if (!buf)
77 return -ENOMEM;
78
Johannes Berg5fe231e2013-05-08 21:45:15 +020079 rtnl_lock();
Luis R. Rodriguez80a35112009-05-02 00:39:30 -040080
Johannes Berg57fbcce2016-04-12 15:56:15 +020081 for (band = 0; band < NUM_NL80211_BANDS; band++) {
Luis R. Rodriguez80a35112009-05-02 00:39:30 -040082 sband = wiphy->bands[band];
83 if (!sband)
84 continue;
85 for (i = 0; i < sband->n_channels; i++)
86 offset += ht_print_chan(&sband->channels[i],
87 buf, buf_size, offset);
88 }
89
Johannes Berg5fe231e2013-05-08 21:45:15 +020090 rtnl_unlock();
Luis R. Rodriguez80a35112009-05-02 00:39:30 -040091
92 r = simple_read_from_buffer(user_buf, count, ppos, buf, offset);
93
94 kfree(buf);
95
96 return r;
97}
98
99static const struct file_operations ht40allow_map_ops = {
100 .read = ht40allow_map_read,
Stephen Boyd234e3402012-04-05 14:25:11 -0700101 .open = simple_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200102 .llseek = default_llseek,
Luis R. Rodriguez80a35112009-05-02 00:39:30 -0400103};
104
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -0400105#define DEBUGFS_ADD(name) \
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100106 debugfs_create_file(#name, S_IRUGO, phyd, &rdev->wiphy, &name## _ops);
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -0400107
Johannes Berg79c97e92009-07-07 03:56:12 +0200108void cfg80211_debugfs_rdev_add(struct cfg80211_registered_device *rdev)
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -0400109{
Johannes Berg79c97e92009-07-07 03:56:12 +0200110 struct dentry *phyd = rdev->wiphy.debugfsdir;
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -0400111
112 DEBUGFS_ADD(rts_threshold);
113 DEBUGFS_ADD(fragmentation_threshold);
114 DEBUGFS_ADD(short_retry_limit);
115 DEBUGFS_ADD(long_retry_limit);
Luis R. Rodriguez80a35112009-05-02 00:39:30 -0400116 DEBUGFS_ADD(ht40allow_map);
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -0400117}