Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2006 Jiri Benc <jbenc@suse.cz> |
| 3 | * Copyright 2007 Johannes Berg <johannes@sipsolutions.net> |
| 4 | * |
| 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. |
| 8 | */ |
| 9 | |
| 10 | #include <linux/kernel.h> |
| 11 | #include <linux/device.h> |
| 12 | #include <linux/if.h> |
Johannes Berg | 28656a1 | 2012-11-05 20:24:38 +0100 | [diff] [blame] | 13 | #include <linux/if_ether.h> |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 14 | #include <linux/interrupt.h> |
| 15 | #include <linux/netdevice.h> |
| 16 | #include <linux/rtnetlink.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 17 | #include <linux/slab.h> |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 18 | #include <linux/notifier.h> |
| 19 | #include <net/mac80211.h> |
| 20 | #include <net/cfg80211.h> |
| 21 | #include "ieee80211_i.h" |
Johannes Berg | 2c8dccc | 2008-04-08 15:14:40 -0400 | [diff] [blame] | 22 | #include "rate.h" |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 23 | #include "debugfs.h" |
| 24 | #include "debugfs_netdev.h" |
Eliad Peller | 37a41b4 | 2011-09-21 14:06:11 +0300 | [diff] [blame] | 25 | #include "driver-ops.h" |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 26 | |
| 27 | static ssize_t ieee80211_if_read( |
| 28 | struct ieee80211_sub_if_data *sdata, |
| 29 | char __user *userbuf, |
| 30 | size_t count, loff_t *ppos, |
| 31 | ssize_t (*format)(const struct ieee80211_sub_if_data *, char *, int)) |
| 32 | { |
| 33 | char buf[70]; |
| 34 | ssize_t ret = -EINVAL; |
| 35 | |
| 36 | read_lock(&dev_base_lock); |
Luis Carlos Cobo | 73bb3e4 | 2008-03-31 15:10:22 -0700 | [diff] [blame] | 37 | if (sdata->dev->reg_state == NETREG_REGISTERED) |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 38 | ret = (*format)(sdata, buf, sizeof(buf)); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 39 | read_unlock(&dev_base_lock); |
Luis Carlos Cobo | 73bb3e4 | 2008-03-31 15:10:22 -0700 | [diff] [blame] | 40 | |
Jouni Malinen | 681d119 | 2011-02-03 18:35:19 +0200 | [diff] [blame] | 41 | if (ret >= 0) |
Luis Carlos Cobo | 73bb3e4 | 2008-03-31 15:10:22 -0700 | [diff] [blame] | 42 | ret = simple_read_from_buffer(userbuf, count, ppos, buf, ret); |
| 43 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 44 | return ret; |
| 45 | } |
| 46 | |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 47 | static ssize_t ieee80211_if_write( |
| 48 | struct ieee80211_sub_if_data *sdata, |
| 49 | const char __user *userbuf, |
| 50 | size_t count, loff_t *ppos, |
| 51 | ssize_t (*write)(struct ieee80211_sub_if_data *, const char *, int)) |
| 52 | { |
Eliad Peller | ada577c | 2012-03-14 16:15:02 +0200 | [diff] [blame] | 53 | char buf[64]; |
Eric Dumazet | 51f5f8c | 2010-03-10 17:13:36 +0100 | [diff] [blame] | 54 | ssize_t ret; |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 55 | |
Eliad Peller | ada577c | 2012-03-14 16:15:02 +0200 | [diff] [blame] | 56 | if (count >= sizeof(buf)) |
| 57 | return -E2BIG; |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 58 | |
| 59 | if (copy_from_user(buf, userbuf, count)) |
Eliad Peller | ada577c | 2012-03-14 16:15:02 +0200 | [diff] [blame] | 60 | return -EFAULT; |
| 61 | buf[count] = '\0'; |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 62 | |
Eric Dumazet | 51f5f8c | 2010-03-10 17:13:36 +0100 | [diff] [blame] | 63 | ret = -ENODEV; |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 64 | rtnl_lock(); |
| 65 | if (sdata->dev->reg_state == NETREG_REGISTERED) |
| 66 | ret = (*write)(sdata, buf, count); |
| 67 | rtnl_unlock(); |
| 68 | |
| 69 | return ret; |
| 70 | } |
| 71 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 72 | #define IEEE80211_IF_FMT(name, field, format_string) \ |
| 73 | static ssize_t ieee80211_if_fmt_##name( \ |
| 74 | const struct ieee80211_sub_if_data *sdata, char *buf, \ |
| 75 | int buflen) \ |
| 76 | { \ |
| 77 | return scnprintf(buf, buflen, format_string, sdata->field); \ |
| 78 | } |
| 79 | #define IEEE80211_IF_FMT_DEC(name, field) \ |
| 80 | IEEE80211_IF_FMT(name, field, "%d\n") |
| 81 | #define IEEE80211_IF_FMT_HEX(name, field) \ |
| 82 | IEEE80211_IF_FMT(name, field, "%#x\n") |
Ben Greear | 4914b3b | 2011-01-27 22:09:34 -0800 | [diff] [blame] | 83 | #define IEEE80211_IF_FMT_LHEX(name, field) \ |
| 84 | IEEE80211_IF_FMT(name, field, "%#lx\n") |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 85 | #define IEEE80211_IF_FMT_SIZE(name, field) \ |
| 86 | IEEE80211_IF_FMT(name, field, "%zd\n") |
| 87 | |
Simon Wunderlich | 1946841 | 2012-01-28 17:25:33 +0100 | [diff] [blame] | 88 | #define IEEE80211_IF_FMT_HEXARRAY(name, field) \ |
| 89 | static ssize_t ieee80211_if_fmt_##name( \ |
| 90 | const struct ieee80211_sub_if_data *sdata, \ |
| 91 | char *buf, int buflen) \ |
| 92 | { \ |
| 93 | char *p = buf; \ |
| 94 | int i; \ |
| 95 | for (i = 0; i < sizeof(sdata->field); i++) { \ |
| 96 | p += scnprintf(p, buflen + buf - p, "%.2x ", \ |
| 97 | sdata->field[i]); \ |
| 98 | } \ |
| 99 | p += scnprintf(p, buflen + buf - p, "\n"); \ |
| 100 | return p - buf; \ |
| 101 | } |
| 102 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 103 | #define IEEE80211_IF_FMT_ATOMIC(name, field) \ |
| 104 | static ssize_t ieee80211_if_fmt_##name( \ |
| 105 | const struct ieee80211_sub_if_data *sdata, \ |
| 106 | char *buf, int buflen) \ |
| 107 | { \ |
| 108 | return scnprintf(buf, buflen, "%d\n", atomic_read(&sdata->field));\ |
| 109 | } |
| 110 | |
| 111 | #define IEEE80211_IF_FMT_MAC(name, field) \ |
| 112 | static ssize_t ieee80211_if_fmt_##name( \ |
| 113 | const struct ieee80211_sub_if_data *sdata, char *buf, \ |
| 114 | int buflen) \ |
| 115 | { \ |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 116 | return scnprintf(buf, buflen, "%pM\n", sdata->field); \ |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 117 | } |
| 118 | |
Jouni Malinen | 17e4ec1 | 2010-03-29 23:28:30 -0700 | [diff] [blame] | 119 | #define IEEE80211_IF_FMT_DEC_DIV_16(name, field) \ |
| 120 | static ssize_t ieee80211_if_fmt_##name( \ |
| 121 | const struct ieee80211_sub_if_data *sdata, \ |
| 122 | char *buf, int buflen) \ |
| 123 | { \ |
| 124 | return scnprintf(buf, buflen, "%d\n", sdata->field / 16); \ |
| 125 | } |
| 126 | |
Ben Greear | 78e443e | 2013-03-25 11:19:34 -0700 | [diff] [blame] | 127 | #define IEEE80211_IF_FMT_JIFFIES_TO_MS(name, field) \ |
| 128 | static ssize_t ieee80211_if_fmt_##name( \ |
| 129 | const struct ieee80211_sub_if_data *sdata, \ |
| 130 | char *buf, int buflen) \ |
| 131 | { \ |
| 132 | return scnprintf(buf, buflen, "%d\n", \ |
| 133 | jiffies_to_msecs(sdata->field)); \ |
| 134 | } |
| 135 | |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 136 | #define __IEEE80211_IF_FILE(name, _write) \ |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 137 | static ssize_t ieee80211_if_read_##name(struct file *file, \ |
| 138 | char __user *userbuf, \ |
| 139 | size_t count, loff_t *ppos) \ |
| 140 | { \ |
| 141 | return ieee80211_if_read(file->private_data, \ |
| 142 | userbuf, count, ppos, \ |
| 143 | ieee80211_if_fmt_##name); \ |
| 144 | } \ |
| 145 | static const struct file_operations name##_ops = { \ |
| 146 | .read = ieee80211_if_read_##name, \ |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 147 | .write = (_write), \ |
Stephen Boyd | 234e340 | 2012-04-05 14:25:11 -0700 | [diff] [blame] | 148 | .open = simple_open, \ |
Arnd Bergmann | 2b18ab36 | 2010-07-06 19:05:31 +0200 | [diff] [blame] | 149 | .llseek = generic_file_llseek, \ |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 150 | } |
| 151 | |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 152 | #define __IEEE80211_IF_FILE_W(name) \ |
| 153 | static ssize_t ieee80211_if_write_##name(struct file *file, \ |
| 154 | const char __user *userbuf, \ |
| 155 | size_t count, loff_t *ppos) \ |
| 156 | { \ |
| 157 | return ieee80211_if_write(file->private_data, userbuf, count, \ |
| 158 | ppos, ieee80211_if_parse_##name); \ |
| 159 | } \ |
| 160 | __IEEE80211_IF_FILE(name, ieee80211_if_write_##name) |
| 161 | |
| 162 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 163 | #define IEEE80211_IF_FILE(name, field, format) \ |
| 164 | IEEE80211_IF_FMT_##format(name, field) \ |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 165 | __IEEE80211_IF_FILE(name, NULL) |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 166 | |
| 167 | /* common attributes */ |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 168 | IEEE80211_IF_FILE(drop_unencrypted, drop_unencrypted, DEC); |
Jouni Malinen | 37eb0b1 | 2010-01-06 13:09:08 +0200 | [diff] [blame] | 169 | IEEE80211_IF_FILE(rc_rateidx_mask_2ghz, rc_rateidx_mask[IEEE80211_BAND_2GHZ], |
| 170 | HEX); |
| 171 | IEEE80211_IF_FILE(rc_rateidx_mask_5ghz, rc_rateidx_mask[IEEE80211_BAND_5GHZ], |
| 172 | HEX); |
Simon Wunderlich | 1946841 | 2012-01-28 17:25:33 +0100 | [diff] [blame] | 173 | IEEE80211_IF_FILE(rc_rateidx_mcs_mask_2ghz, |
| 174 | rc_rateidx_mcs_mask[IEEE80211_BAND_2GHZ], HEXARRAY); |
| 175 | IEEE80211_IF_FILE(rc_rateidx_mcs_mask_5ghz, |
| 176 | rc_rateidx_mcs_mask[IEEE80211_BAND_5GHZ], HEXARRAY); |
| 177 | |
Ben Greear | 4914b3b | 2011-01-27 22:09:34 -0800 | [diff] [blame] | 178 | IEEE80211_IF_FILE(flags, flags, HEX); |
| 179 | IEEE80211_IF_FILE(state, state, LHEX); |
Johannes Berg | 1ea6f9c | 2012-10-24 10:59:25 +0200 | [diff] [blame] | 180 | IEEE80211_IF_FILE(txpower, vif.bss_conf.txpower, DEC); |
| 181 | IEEE80211_IF_FILE(ap_power_level, ap_power_level, DEC); |
| 182 | IEEE80211_IF_FILE(user_power_level, user_power_level, DEC); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 183 | |
Johannes Berg | 0864331 | 2012-11-08 15:29:28 +0100 | [diff] [blame] | 184 | static ssize_t |
| 185 | ieee80211_if_fmt_hw_queues(const struct ieee80211_sub_if_data *sdata, |
| 186 | char *buf, int buflen) |
| 187 | { |
| 188 | int len; |
| 189 | |
| 190 | len = scnprintf(buf, buflen, "AC queues: VO:%d VI:%d BE:%d BK:%d\n", |
| 191 | sdata->vif.hw_queue[IEEE80211_AC_VO], |
| 192 | sdata->vif.hw_queue[IEEE80211_AC_VI], |
| 193 | sdata->vif.hw_queue[IEEE80211_AC_BE], |
| 194 | sdata->vif.hw_queue[IEEE80211_AC_BK]); |
| 195 | |
| 196 | if (sdata->vif.type == NL80211_IFTYPE_AP) |
| 197 | len += scnprintf(buf + len, buflen - len, "cab queue: %d\n", |
| 198 | sdata->vif.cab_queue); |
| 199 | |
| 200 | return len; |
| 201 | } |
| 202 | __IEEE80211_IF_FILE(hw_queues, NULL); |
| 203 | |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 204 | /* STA attributes */ |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 205 | IEEE80211_IF_FILE(bssid, u.mgd.bssid, MAC); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 206 | IEEE80211_IF_FILE(aid, u.mgd.aid, DEC); |
Jouni Malinen | 17e4ec1 | 2010-03-29 23:28:30 -0700 | [diff] [blame] | 207 | IEEE80211_IF_FILE(last_beacon, u.mgd.last_beacon_signal, DEC); |
| 208 | IEEE80211_IF_FILE(ave_beacon, u.mgd.ave_beacon_signal, DEC_DIV_16); |
Ben Greear | 78e443e | 2013-03-25 11:19:34 -0700 | [diff] [blame] | 209 | IEEE80211_IF_FILE(beacon_timeout, u.mgd.beacon_timeout, JIFFIES_TO_MS); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 210 | |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 211 | static int ieee80211_set_smps(struct ieee80211_sub_if_data *sdata, |
| 212 | enum ieee80211_smps_mode smps_mode) |
| 213 | { |
| 214 | struct ieee80211_local *local = sdata->local; |
| 215 | int err; |
| 216 | |
| 217 | if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_STATIC_SMPS) && |
| 218 | smps_mode == IEEE80211_SMPS_STATIC) |
| 219 | return -EINVAL; |
| 220 | |
| 221 | /* auto should be dynamic if in PS mode */ |
| 222 | if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS) && |
| 223 | (smps_mode == IEEE80211_SMPS_DYNAMIC || |
| 224 | smps_mode == IEEE80211_SMPS_AUTOMATIC)) |
| 225 | return -EINVAL; |
| 226 | |
| 227 | /* supported only on managed interfaces for now */ |
| 228 | if (sdata->vif.type != NL80211_IFTYPE_STATION) |
| 229 | return -EOPNOTSUPP; |
| 230 | |
Johannes Berg | 243e6df | 2011-04-19 20:44:04 +0200 | [diff] [blame] | 231 | mutex_lock(&sdata->u.mgd.mtx); |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 232 | err = __ieee80211_request_smps(sdata, smps_mode); |
Johannes Berg | 243e6df | 2011-04-19 20:44:04 +0200 | [diff] [blame] | 233 | mutex_unlock(&sdata->u.mgd.mtx); |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 234 | |
| 235 | return err; |
| 236 | } |
| 237 | |
| 238 | static const char *smps_modes[IEEE80211_SMPS_NUM_MODES] = { |
| 239 | [IEEE80211_SMPS_AUTOMATIC] = "auto", |
| 240 | [IEEE80211_SMPS_OFF] = "off", |
| 241 | [IEEE80211_SMPS_STATIC] = "static", |
| 242 | [IEEE80211_SMPS_DYNAMIC] = "dynamic", |
| 243 | }; |
| 244 | |
| 245 | static ssize_t ieee80211_if_fmt_smps(const struct ieee80211_sub_if_data *sdata, |
| 246 | char *buf, int buflen) |
| 247 | { |
| 248 | if (sdata->vif.type != NL80211_IFTYPE_STATION) |
| 249 | return -EOPNOTSUPP; |
| 250 | |
| 251 | return snprintf(buf, buflen, "request: %s\nused: %s\n", |
| 252 | smps_modes[sdata->u.mgd.req_smps], |
Johannes Berg | 04ecd25 | 2012-09-11 14:34:12 +0200 | [diff] [blame] | 253 | smps_modes[sdata->smps_mode]); |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | static ssize_t ieee80211_if_parse_smps(struct ieee80211_sub_if_data *sdata, |
| 257 | const char *buf, int buflen) |
| 258 | { |
| 259 | enum ieee80211_smps_mode mode; |
| 260 | |
| 261 | for (mode = 0; mode < IEEE80211_SMPS_NUM_MODES; mode++) { |
| 262 | if (strncmp(buf, smps_modes[mode], buflen) == 0) { |
| 263 | int err = ieee80211_set_smps(sdata, mode); |
| 264 | if (!err) |
| 265 | return buflen; |
| 266 | return err; |
| 267 | } |
| 268 | } |
| 269 | |
| 270 | return -EINVAL; |
| 271 | } |
| 272 | |
| 273 | __IEEE80211_IF_FILE_W(smps); |
| 274 | |
Jouni Malinen | 681d119 | 2011-02-03 18:35:19 +0200 | [diff] [blame] | 275 | static ssize_t ieee80211_if_fmt_tkip_mic_test( |
| 276 | const struct ieee80211_sub_if_data *sdata, char *buf, int buflen) |
| 277 | { |
| 278 | return -EOPNOTSUPP; |
| 279 | } |
| 280 | |
Jouni Malinen | 681d119 | 2011-02-03 18:35:19 +0200 | [diff] [blame] | 281 | static ssize_t ieee80211_if_parse_tkip_mic_test( |
| 282 | struct ieee80211_sub_if_data *sdata, const char *buf, int buflen) |
| 283 | { |
| 284 | struct ieee80211_local *local = sdata->local; |
| 285 | u8 addr[ETH_ALEN]; |
| 286 | struct sk_buff *skb; |
| 287 | struct ieee80211_hdr *hdr; |
| 288 | __le16 fc; |
| 289 | |
Johannes Berg | 28656a1 | 2012-11-05 20:24:38 +0100 | [diff] [blame] | 290 | if (!mac_pton(buf, addr)) |
Jouni Malinen | 681d119 | 2011-02-03 18:35:19 +0200 | [diff] [blame] | 291 | return -EINVAL; |
| 292 | |
| 293 | if (!ieee80211_sdata_running(sdata)) |
| 294 | return -ENOTCONN; |
| 295 | |
| 296 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + 24 + 100); |
| 297 | if (!skb) |
| 298 | return -ENOMEM; |
| 299 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 300 | |
| 301 | hdr = (struct ieee80211_hdr *) skb_put(skb, 24); |
| 302 | memset(hdr, 0, 24); |
| 303 | fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA); |
| 304 | |
| 305 | switch (sdata->vif.type) { |
| 306 | case NL80211_IFTYPE_AP: |
| 307 | fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS); |
| 308 | /* DA BSSID SA */ |
| 309 | memcpy(hdr->addr1, addr, ETH_ALEN); |
| 310 | memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN); |
| 311 | memcpy(hdr->addr3, sdata->vif.addr, ETH_ALEN); |
| 312 | break; |
| 313 | case NL80211_IFTYPE_STATION: |
| 314 | fc |= cpu_to_le16(IEEE80211_FCTL_TODS); |
| 315 | /* BSSID SA DA */ |
Johannes Berg | 41c97a2 | 2012-11-05 20:27:57 +0100 | [diff] [blame] | 316 | mutex_lock(&sdata->u.mgd.mtx); |
| 317 | if (!sdata->u.mgd.associated) { |
| 318 | mutex_unlock(&sdata->u.mgd.mtx); |
Jouni Malinen | 681d119 | 2011-02-03 18:35:19 +0200 | [diff] [blame] | 319 | dev_kfree_skb(skb); |
| 320 | return -ENOTCONN; |
| 321 | } |
Johannes Berg | 41c97a2 | 2012-11-05 20:27:57 +0100 | [diff] [blame] | 322 | memcpy(hdr->addr1, sdata->u.mgd.associated->bssid, ETH_ALEN); |
Jouni Malinen | 681d119 | 2011-02-03 18:35:19 +0200 | [diff] [blame] | 323 | memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN); |
| 324 | memcpy(hdr->addr3, addr, ETH_ALEN); |
Johannes Berg | 41c97a2 | 2012-11-05 20:27:57 +0100 | [diff] [blame] | 325 | mutex_unlock(&sdata->u.mgd.mtx); |
Jouni Malinen | 681d119 | 2011-02-03 18:35:19 +0200 | [diff] [blame] | 326 | break; |
| 327 | default: |
| 328 | dev_kfree_skb(skb); |
| 329 | return -EOPNOTSUPP; |
| 330 | } |
| 331 | hdr->frame_control = fc; |
| 332 | |
| 333 | /* |
| 334 | * Add some length to the test frame to make it look bit more valid. |
| 335 | * The exact contents does not matter since the recipient is required |
| 336 | * to drop this because of the Michael MIC failure. |
| 337 | */ |
| 338 | memset(skb_put(skb, 50), 0, 50); |
| 339 | |
| 340 | IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_TKIP_MIC_FAILURE; |
| 341 | |
| 342 | ieee80211_tx_skb(sdata, skb); |
| 343 | |
| 344 | return buflen; |
| 345 | } |
| 346 | |
| 347 | __IEEE80211_IF_FILE_W(tkip_mic_test); |
| 348 | |
Eliad Peller | dc41e4d | 2012-03-14 16:15:03 +0200 | [diff] [blame] | 349 | static ssize_t ieee80211_if_fmt_uapsd_queues( |
| 350 | const struct ieee80211_sub_if_data *sdata, char *buf, int buflen) |
| 351 | { |
| 352 | const struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
| 353 | |
| 354 | return snprintf(buf, buflen, "0x%x\n", ifmgd->uapsd_queues); |
| 355 | } |
| 356 | |
| 357 | static ssize_t ieee80211_if_parse_uapsd_queues( |
| 358 | struct ieee80211_sub_if_data *sdata, const char *buf, int buflen) |
| 359 | { |
| 360 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
| 361 | u8 val; |
| 362 | int ret; |
| 363 | |
| 364 | ret = kstrtou8(buf, 0, &val); |
| 365 | if (ret) |
| 366 | return ret; |
| 367 | |
| 368 | if (val & ~IEEE80211_WMM_IE_STA_QOSINFO_AC_MASK) |
| 369 | return -ERANGE; |
| 370 | |
| 371 | ifmgd->uapsd_queues = val; |
| 372 | |
| 373 | return buflen; |
| 374 | } |
| 375 | __IEEE80211_IF_FILE_W(uapsd_queues); |
| 376 | |
| 377 | static ssize_t ieee80211_if_fmt_uapsd_max_sp_len( |
| 378 | const struct ieee80211_sub_if_data *sdata, char *buf, int buflen) |
| 379 | { |
| 380 | const struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
| 381 | |
| 382 | return snprintf(buf, buflen, "0x%x\n", ifmgd->uapsd_max_sp_len); |
| 383 | } |
| 384 | |
| 385 | static ssize_t ieee80211_if_parse_uapsd_max_sp_len( |
| 386 | struct ieee80211_sub_if_data *sdata, const char *buf, int buflen) |
| 387 | { |
| 388 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
| 389 | unsigned long val; |
| 390 | int ret; |
| 391 | |
| 392 | ret = kstrtoul(buf, 0, &val); |
| 393 | if (ret) |
| 394 | return -EINVAL; |
| 395 | |
| 396 | if (val & ~IEEE80211_WMM_IE_STA_QOSINFO_SP_MASK) |
| 397 | return -ERANGE; |
| 398 | |
| 399 | ifmgd->uapsd_max_sp_len = val; |
| 400 | |
| 401 | return buflen; |
| 402 | } |
| 403 | __IEEE80211_IF_FILE_W(uapsd_max_sp_len); |
| 404 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 405 | /* AP attributes */ |
Felix Fietkau | 030ef8f | 2012-04-23 19:49:02 +0200 | [diff] [blame] | 406 | IEEE80211_IF_FILE(num_mcast_sta, u.ap.num_mcast_sta, ATOMIC); |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 407 | IEEE80211_IF_FILE(num_sta_ps, u.ap.ps.num_sta_ps, ATOMIC); |
| 408 | IEEE80211_IF_FILE(dtim_count, u.ap.ps.dtim_count, DEC); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 409 | |
| 410 | static ssize_t ieee80211_if_fmt_num_buffered_multicast( |
| 411 | const struct ieee80211_sub_if_data *sdata, char *buf, int buflen) |
| 412 | { |
| 413 | return scnprintf(buf, buflen, "%u\n", |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 414 | skb_queue_len(&sdata->u.ap.ps.bc_buf)); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 415 | } |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 416 | __IEEE80211_IF_FILE(num_buffered_multicast, NULL); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 417 | |
Eliad Peller | 37a41b4 | 2011-09-21 14:06:11 +0300 | [diff] [blame] | 418 | /* IBSS attributes */ |
| 419 | static ssize_t ieee80211_if_fmt_tsf( |
| 420 | const struct ieee80211_sub_if_data *sdata, char *buf, int buflen) |
| 421 | { |
| 422 | struct ieee80211_local *local = sdata->local; |
| 423 | u64 tsf; |
| 424 | |
| 425 | tsf = drv_get_tsf(local, (struct ieee80211_sub_if_data *)sdata); |
| 426 | |
| 427 | return scnprintf(buf, buflen, "0x%016llx\n", (unsigned long long) tsf); |
| 428 | } |
| 429 | |
| 430 | static ssize_t ieee80211_if_parse_tsf( |
| 431 | struct ieee80211_sub_if_data *sdata, const char *buf, int buflen) |
| 432 | { |
| 433 | struct ieee80211_local *local = sdata->local; |
| 434 | unsigned long long tsf; |
| 435 | int ret; |
Javier Cardona | 9bdd3a6 | 2012-03-31 11:31:31 -0700 | [diff] [blame] | 436 | int tsf_is_delta = 0; |
Eliad Peller | 37a41b4 | 2011-09-21 14:06:11 +0300 | [diff] [blame] | 437 | |
| 438 | if (strncmp(buf, "reset", 5) == 0) { |
| 439 | if (local->ops->reset_tsf) { |
| 440 | drv_reset_tsf(local, sdata); |
| 441 | wiphy_info(local->hw.wiphy, "debugfs reset TSF\n"); |
| 442 | } |
| 443 | } else { |
Javier Cardona | 9bdd3a6 | 2012-03-31 11:31:31 -0700 | [diff] [blame] | 444 | if (buflen > 10 && buf[1] == '=') { |
| 445 | if (buf[0] == '+') |
| 446 | tsf_is_delta = 1; |
| 447 | else if (buf[0] == '-') |
| 448 | tsf_is_delta = -1; |
| 449 | else |
| 450 | return -EINVAL; |
| 451 | buf += 2; |
| 452 | } |
Eliad Peller | 37a41b4 | 2011-09-21 14:06:11 +0300 | [diff] [blame] | 453 | ret = kstrtoull(buf, 10, &tsf); |
| 454 | if (ret < 0) |
Johannes Berg | 6fc1da9 | 2012-11-05 20:30:39 +0100 | [diff] [blame] | 455 | return ret; |
Javier Cardona | 9bdd3a6 | 2012-03-31 11:31:31 -0700 | [diff] [blame] | 456 | if (tsf_is_delta) |
| 457 | tsf = drv_get_tsf(local, sdata) + tsf_is_delta * tsf; |
Eliad Peller | 37a41b4 | 2011-09-21 14:06:11 +0300 | [diff] [blame] | 458 | if (local->ops->set_tsf) { |
| 459 | drv_set_tsf(local, sdata, tsf); |
| 460 | wiphy_info(local->hw.wiphy, |
| 461 | "debugfs set TSF to %#018llx\n", tsf); |
| 462 | } |
| 463 | } |
| 464 | |
| 465 | return buflen; |
| 466 | } |
| 467 | __IEEE80211_IF_FILE_W(tsf); |
| 468 | |
| 469 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 470 | /* WDS attributes */ |
| 471 | IEEE80211_IF_FILE(peer, u.wds.remote_addr, MAC); |
| 472 | |
Luis Carlos Cobo | 9f42f60 | 2008-02-23 15:17:16 +0100 | [diff] [blame] | 473 | #ifdef CONFIG_MAC80211_MESH |
| 474 | /* Mesh stats attributes */ |
Daniel Walker | c8a61a7 | 2009-08-18 10:59:00 -0700 | [diff] [blame] | 475 | IEEE80211_IF_FILE(fwded_mcast, u.mesh.mshstats.fwded_mcast, DEC); |
| 476 | IEEE80211_IF_FILE(fwded_unicast, u.mesh.mshstats.fwded_unicast, DEC); |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 477 | IEEE80211_IF_FILE(fwded_frames, u.mesh.mshstats.fwded_frames, DEC); |
| 478 | IEEE80211_IF_FILE(dropped_frames_ttl, u.mesh.mshstats.dropped_frames_ttl, DEC); |
Javier Cardona | cfee66b | 2011-09-06 13:05:21 -0700 | [diff] [blame] | 479 | IEEE80211_IF_FILE(dropped_frames_congestion, |
Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 480 | u.mesh.mshstats.dropped_frames_congestion, DEC); |
Luis Carlos Cobo | 9f42f60 | 2008-02-23 15:17:16 +0100 | [diff] [blame] | 481 | IEEE80211_IF_FILE(dropped_frames_no_route, |
Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 482 | u.mesh.mshstats.dropped_frames_no_route, DEC); |
Ashok Nagarajan | 1258d97 | 2012-10-09 13:27:47 -0700 | [diff] [blame] | 483 | IEEE80211_IF_FILE(estab_plinks, u.mesh.estab_plinks, ATOMIC); |
Luis Carlos Cobo | 9f42f60 | 2008-02-23 15:17:16 +0100 | [diff] [blame] | 484 | |
| 485 | /* Mesh parameters */ |
Johannes Berg | 36ff382 | 2008-10-07 12:04:31 +0200 | [diff] [blame] | 486 | IEEE80211_IF_FILE(dot11MeshMaxRetries, |
Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 487 | u.mesh.mshcfg.dot11MeshMaxRetries, DEC); |
Johannes Berg | 36ff382 | 2008-10-07 12:04:31 +0200 | [diff] [blame] | 488 | IEEE80211_IF_FILE(dot11MeshRetryTimeout, |
Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 489 | u.mesh.mshcfg.dot11MeshRetryTimeout, DEC); |
Johannes Berg | 36ff382 | 2008-10-07 12:04:31 +0200 | [diff] [blame] | 490 | IEEE80211_IF_FILE(dot11MeshConfirmTimeout, |
Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 491 | u.mesh.mshcfg.dot11MeshConfirmTimeout, DEC); |
Johannes Berg | 36ff382 | 2008-10-07 12:04:31 +0200 | [diff] [blame] | 492 | IEEE80211_IF_FILE(dot11MeshHoldingTimeout, |
Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 493 | u.mesh.mshcfg.dot11MeshHoldingTimeout, DEC); |
Johannes Berg | 36ff382 | 2008-10-07 12:04:31 +0200 | [diff] [blame] | 494 | IEEE80211_IF_FILE(dot11MeshTTL, u.mesh.mshcfg.dot11MeshTTL, DEC); |
Javier Cardona | 45904f2 | 2010-12-03 09:20:40 +0100 | [diff] [blame] | 495 | IEEE80211_IF_FILE(element_ttl, u.mesh.mshcfg.element_ttl, DEC); |
Johannes Berg | 36ff382 | 2008-10-07 12:04:31 +0200 | [diff] [blame] | 496 | IEEE80211_IF_FILE(auto_open_plinks, u.mesh.mshcfg.auto_open_plinks, DEC); |
| 497 | IEEE80211_IF_FILE(dot11MeshMaxPeerLinks, |
Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 498 | u.mesh.mshcfg.dot11MeshMaxPeerLinks, DEC); |
Johannes Berg | 36ff382 | 2008-10-07 12:04:31 +0200 | [diff] [blame] | 499 | IEEE80211_IF_FILE(dot11MeshHWMPactivePathTimeout, |
Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 500 | u.mesh.mshcfg.dot11MeshHWMPactivePathTimeout, DEC); |
Johannes Berg | 36ff382 | 2008-10-07 12:04:31 +0200 | [diff] [blame] | 501 | IEEE80211_IF_FILE(dot11MeshHWMPpreqMinInterval, |
Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 502 | u.mesh.mshcfg.dot11MeshHWMPpreqMinInterval, DEC); |
Thomas Pedersen | dca7e94 | 2011-11-24 17:15:24 -0800 | [diff] [blame] | 503 | IEEE80211_IF_FILE(dot11MeshHWMPperrMinInterval, |
Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 504 | u.mesh.mshcfg.dot11MeshHWMPperrMinInterval, DEC); |
Johannes Berg | 36ff382 | 2008-10-07 12:04:31 +0200 | [diff] [blame] | 505 | IEEE80211_IF_FILE(dot11MeshHWMPnetDiameterTraversalTime, |
Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 506 | u.mesh.mshcfg.dot11MeshHWMPnetDiameterTraversalTime, DEC); |
Johannes Berg | 36ff382 | 2008-10-07 12:04:31 +0200 | [diff] [blame] | 507 | IEEE80211_IF_FILE(dot11MeshHWMPmaxPREQretries, |
Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 508 | u.mesh.mshcfg.dot11MeshHWMPmaxPREQretries, DEC); |
Johannes Berg | 36ff382 | 2008-10-07 12:04:31 +0200 | [diff] [blame] | 509 | IEEE80211_IF_FILE(path_refresh_time, |
Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 510 | u.mesh.mshcfg.path_refresh_time, DEC); |
Johannes Berg | 36ff382 | 2008-10-07 12:04:31 +0200 | [diff] [blame] | 511 | IEEE80211_IF_FILE(min_discovery_timeout, |
Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 512 | u.mesh.mshcfg.min_discovery_timeout, DEC); |
Rui Paulo | 63c5723 | 2009-11-09 23:46:57 +0000 | [diff] [blame] | 513 | IEEE80211_IF_FILE(dot11MeshHWMPRootMode, |
Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 514 | u.mesh.mshcfg.dot11MeshHWMPRootMode, DEC); |
Javier Cardona | 16dd726 | 2011-08-09 16:45:11 -0700 | [diff] [blame] | 515 | IEEE80211_IF_FILE(dot11MeshGateAnnouncementProtocol, |
Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 516 | u.mesh.mshcfg.dot11MeshGateAnnouncementProtocol, DEC); |
Javier Cardona | 0507e15 | 2011-08-09 16:45:10 -0700 | [diff] [blame] | 517 | IEEE80211_IF_FILE(dot11MeshHWMPRannInterval, |
Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 518 | u.mesh.mshcfg.dot11MeshHWMPRannInterval, DEC); |
Chun-Yeow Yeoh | 94f9065 | 2012-01-21 01:02:16 +0800 | [diff] [blame] | 519 | IEEE80211_IF_FILE(dot11MeshForwarding, u.mesh.mshcfg.dot11MeshForwarding, DEC); |
Ashok Nagarajan | 5533513 | 2012-02-28 17:04:08 -0800 | [diff] [blame] | 520 | IEEE80211_IF_FILE(rssi_threshold, u.mesh.mshcfg.rssi_threshold, DEC); |
Ashok Nagarajan | 4416f5d | 2012-05-07 21:00:32 -0700 | [diff] [blame] | 521 | IEEE80211_IF_FILE(ht_opmode, u.mesh.mshcfg.ht_opmode, DEC); |
Chun-Yeow Yeoh | ac1073a | 2012-06-14 02:06:06 +0800 | [diff] [blame] | 522 | IEEE80211_IF_FILE(dot11MeshHWMPactivePathToRootTimeout, |
| 523 | u.mesh.mshcfg.dot11MeshHWMPactivePathToRootTimeout, DEC); |
| 524 | IEEE80211_IF_FILE(dot11MeshHWMProotInterval, |
| 525 | u.mesh.mshcfg.dot11MeshHWMProotInterval, DEC); |
Chun-Yeow Yeoh | 728b19e | 2012-06-14 02:06:10 +0800 | [diff] [blame] | 526 | IEEE80211_IF_FILE(dot11MeshHWMPconfirmationInterval, |
| 527 | u.mesh.mshcfg.dot11MeshHWMPconfirmationInterval, DEC); |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 528 | IEEE80211_IF_FILE(power_mode, u.mesh.mshcfg.power_mode, DEC); |
| 529 | IEEE80211_IF_FILE(dot11MeshAwakeWindowDuration, |
| 530 | u.mesh.mshcfg.dot11MeshAwakeWindowDuration, DEC); |
Luis Carlos Cobo | 9f42f60 | 2008-02-23 15:17:16 +0100 | [diff] [blame] | 531 | #endif |
| 532 | |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 533 | #define DEBUGFS_ADD_MODE(name, mode) \ |
Stanislaw Gruszka | ddbfe86 | 2013-03-08 14:46:14 +0100 | [diff] [blame] | 534 | debugfs_create_file(#name, mode, sdata->vif.debugfs_dir, \ |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 535 | sdata, &name##_ops); |
| 536 | |
Felix Fietkau | fcb2c9e | 2012-03-18 22:58:05 +0100 | [diff] [blame] | 537 | #define DEBUGFS_ADD(name) DEBUGFS_ADD_MODE(name, 0400) |
| 538 | |
| 539 | static void add_common_files(struct ieee80211_sub_if_data *sdata) |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 540 | { |
Johannes Berg | 2d46d7c | 2010-01-10 17:12:41 +0100 | [diff] [blame] | 541 | DEBUGFS_ADD(drop_unencrypted); |
| 542 | DEBUGFS_ADD(rc_rateidx_mask_2ghz); |
| 543 | DEBUGFS_ADD(rc_rateidx_mask_5ghz); |
Simon Wunderlich | 1946841 | 2012-01-28 17:25:33 +0100 | [diff] [blame] | 544 | DEBUGFS_ADD(rc_rateidx_mcs_mask_2ghz); |
| 545 | DEBUGFS_ADD(rc_rateidx_mcs_mask_5ghz); |
Johannes Berg | 0864331 | 2012-11-08 15:29:28 +0100 | [diff] [blame] | 546 | DEBUGFS_ADD(hw_queues); |
Felix Fietkau | fcb2c9e | 2012-03-18 22:58:05 +0100 | [diff] [blame] | 547 | } |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 548 | |
Felix Fietkau | fcb2c9e | 2012-03-18 22:58:05 +0100 | [diff] [blame] | 549 | static void add_sta_files(struct ieee80211_sub_if_data *sdata) |
| 550 | { |
Johannes Berg | 2d46d7c | 2010-01-10 17:12:41 +0100 | [diff] [blame] | 551 | DEBUGFS_ADD(bssid); |
| 552 | DEBUGFS_ADD(aid); |
Jouni Malinen | 17e4ec1 | 2010-03-29 23:28:30 -0700 | [diff] [blame] | 553 | DEBUGFS_ADD(last_beacon); |
| 554 | DEBUGFS_ADD(ave_beacon); |
Ben Greear | 78e443e | 2013-03-25 11:19:34 -0700 | [diff] [blame] | 555 | DEBUGFS_ADD(beacon_timeout); |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 556 | DEBUGFS_ADD_MODE(smps, 0600); |
Jouni Malinen | 681d119 | 2011-02-03 18:35:19 +0200 | [diff] [blame] | 557 | DEBUGFS_ADD_MODE(tkip_mic_test, 0200); |
Eliad Peller | dc41e4d | 2012-03-14 16:15:03 +0200 | [diff] [blame] | 558 | DEBUGFS_ADD_MODE(uapsd_queues, 0600); |
| 559 | DEBUGFS_ADD_MODE(uapsd_max_sp_len, 0600); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 560 | } |
| 561 | |
| 562 | static void add_ap_files(struct ieee80211_sub_if_data *sdata) |
| 563 | { |
Felix Fietkau | 030ef8f | 2012-04-23 19:49:02 +0200 | [diff] [blame] | 564 | DEBUGFS_ADD(num_mcast_sta); |
Johannes Berg | 2d46d7c | 2010-01-10 17:12:41 +0100 | [diff] [blame] | 565 | DEBUGFS_ADD(num_sta_ps); |
| 566 | DEBUGFS_ADD(dtim_count); |
| 567 | DEBUGFS_ADD(num_buffered_multicast); |
Jouni Malinen | 681d119 | 2011-02-03 18:35:19 +0200 | [diff] [blame] | 568 | DEBUGFS_ADD_MODE(tkip_mic_test, 0200); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 569 | } |
| 570 | |
Eliad Peller | 37a41b4 | 2011-09-21 14:06:11 +0300 | [diff] [blame] | 571 | static void add_ibss_files(struct ieee80211_sub_if_data *sdata) |
| 572 | { |
| 573 | DEBUGFS_ADD_MODE(tsf, 0600); |
| 574 | } |
| 575 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 576 | static void add_wds_files(struct ieee80211_sub_if_data *sdata) |
| 577 | { |
Johannes Berg | 2d46d7c | 2010-01-10 17:12:41 +0100 | [diff] [blame] | 578 | DEBUGFS_ADD(peer); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 579 | } |
| 580 | |
Luis Carlos Cobo | 9f42f60 | 2008-02-23 15:17:16 +0100 | [diff] [blame] | 581 | #ifdef CONFIG_MAC80211_MESH |
Luis Carlos Cobo | 9f42f60 | 2008-02-23 15:17:16 +0100 | [diff] [blame] | 582 | |
Javier Cardona | 12ce8ba | 2012-03-05 17:20:38 -0800 | [diff] [blame] | 583 | static void add_mesh_files(struct ieee80211_sub_if_data *sdata) |
| 584 | { |
| 585 | DEBUGFS_ADD_MODE(tsf, 0600); |
| 586 | } |
| 587 | |
Luis Carlos Cobo | 9f42f60 | 2008-02-23 15:17:16 +0100 | [diff] [blame] | 588 | static void add_mesh_stats(struct ieee80211_sub_if_data *sdata) |
| 589 | { |
Johannes Berg | 7bcfaf2 | 2009-10-27 12:59:03 +0100 | [diff] [blame] | 590 | struct dentry *dir = debugfs_create_dir("mesh_stats", |
Stanislaw Gruszka | ddbfe86 | 2013-03-08 14:46:14 +0100 | [diff] [blame] | 591 | sdata->vif.debugfs_dir); |
Johannes Berg | 7bcfaf2 | 2009-10-27 12:59:03 +0100 | [diff] [blame] | 592 | #define MESHSTATS_ADD(name)\ |
| 593 | debugfs_create_file(#name, 0400, dir, sdata, &name##_ops); |
| 594 | |
Daniel Walker | c8a61a7 | 2009-08-18 10:59:00 -0700 | [diff] [blame] | 595 | MESHSTATS_ADD(fwded_mcast); |
| 596 | MESHSTATS_ADD(fwded_unicast); |
Luis Carlos Cobo | 9f42f60 | 2008-02-23 15:17:16 +0100 | [diff] [blame] | 597 | MESHSTATS_ADD(fwded_frames); |
| 598 | MESHSTATS_ADD(dropped_frames_ttl); |
| 599 | MESHSTATS_ADD(dropped_frames_no_route); |
Javier Cardona | cfee66b | 2011-09-06 13:05:21 -0700 | [diff] [blame] | 600 | MESHSTATS_ADD(dropped_frames_congestion); |
Luis Carlos Cobo | 9f42f60 | 2008-02-23 15:17:16 +0100 | [diff] [blame] | 601 | MESHSTATS_ADD(estab_plinks); |
Johannes Berg | 7bcfaf2 | 2009-10-27 12:59:03 +0100 | [diff] [blame] | 602 | #undef MESHSTATS_ADD |
Luis Carlos Cobo | 9f42f60 | 2008-02-23 15:17:16 +0100 | [diff] [blame] | 603 | } |
| 604 | |
Luis Carlos Cobo | 9f42f60 | 2008-02-23 15:17:16 +0100 | [diff] [blame] | 605 | static void add_mesh_config(struct ieee80211_sub_if_data *sdata) |
| 606 | { |
Johannes Berg | 7bcfaf2 | 2009-10-27 12:59:03 +0100 | [diff] [blame] | 607 | struct dentry *dir = debugfs_create_dir("mesh_config", |
Stanislaw Gruszka | ddbfe86 | 2013-03-08 14:46:14 +0100 | [diff] [blame] | 608 | sdata->vif.debugfs_dir); |
Johannes Berg | 7bcfaf2 | 2009-10-27 12:59:03 +0100 | [diff] [blame] | 609 | |
| 610 | #define MESHPARAMS_ADD(name) \ |
| 611 | debugfs_create_file(#name, 0600, dir, sdata, &name##_ops); |
| 612 | |
Luis Carlos Cobo | 9f42f60 | 2008-02-23 15:17:16 +0100 | [diff] [blame] | 613 | MESHPARAMS_ADD(dot11MeshMaxRetries); |
| 614 | MESHPARAMS_ADD(dot11MeshRetryTimeout); |
| 615 | MESHPARAMS_ADD(dot11MeshConfirmTimeout); |
| 616 | MESHPARAMS_ADD(dot11MeshHoldingTimeout); |
| 617 | MESHPARAMS_ADD(dot11MeshTTL); |
Javier Cardona | 45904f2 | 2010-12-03 09:20:40 +0100 | [diff] [blame] | 618 | MESHPARAMS_ADD(element_ttl); |
Luis Carlos Cobo | 9f42f60 | 2008-02-23 15:17:16 +0100 | [diff] [blame] | 619 | MESHPARAMS_ADD(auto_open_plinks); |
| 620 | MESHPARAMS_ADD(dot11MeshMaxPeerLinks); |
| 621 | MESHPARAMS_ADD(dot11MeshHWMPactivePathTimeout); |
| 622 | MESHPARAMS_ADD(dot11MeshHWMPpreqMinInterval); |
Thomas Pedersen | dca7e94 | 2011-11-24 17:15:24 -0800 | [diff] [blame] | 623 | MESHPARAMS_ADD(dot11MeshHWMPperrMinInterval); |
Luis Carlos Cobo | 9f42f60 | 2008-02-23 15:17:16 +0100 | [diff] [blame] | 624 | MESHPARAMS_ADD(dot11MeshHWMPnetDiameterTraversalTime); |
| 625 | MESHPARAMS_ADD(dot11MeshHWMPmaxPREQretries); |
| 626 | MESHPARAMS_ADD(path_refresh_time); |
| 627 | MESHPARAMS_ADD(min_discovery_timeout); |
Javier Cardona | 699403d | 2011-08-09 16:45:09 -0700 | [diff] [blame] | 628 | MESHPARAMS_ADD(dot11MeshHWMPRootMode); |
Javier Cardona | 0507e15 | 2011-08-09 16:45:10 -0700 | [diff] [blame] | 629 | MESHPARAMS_ADD(dot11MeshHWMPRannInterval); |
Chun-Yeow Yeoh | 8c06e8c | 2012-05-31 18:17:30 +0800 | [diff] [blame] | 630 | MESHPARAMS_ADD(dot11MeshForwarding); |
Javier Cardona | 16dd726 | 2011-08-09 16:45:11 -0700 | [diff] [blame] | 631 | MESHPARAMS_ADD(dot11MeshGateAnnouncementProtocol); |
Ashok Nagarajan | 5533513 | 2012-02-28 17:04:08 -0800 | [diff] [blame] | 632 | MESHPARAMS_ADD(rssi_threshold); |
Ashok Nagarajan | 4416f5d | 2012-05-07 21:00:32 -0700 | [diff] [blame] | 633 | MESHPARAMS_ADD(ht_opmode); |
Chun-Yeow Yeoh | ac1073a | 2012-06-14 02:06:06 +0800 | [diff] [blame] | 634 | MESHPARAMS_ADD(dot11MeshHWMPactivePathToRootTimeout); |
| 635 | MESHPARAMS_ADD(dot11MeshHWMProotInterval); |
Chun-Yeow Yeoh | 728b19e | 2012-06-14 02:06:10 +0800 | [diff] [blame] | 636 | MESHPARAMS_ADD(dot11MeshHWMPconfirmationInterval); |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 637 | MESHPARAMS_ADD(power_mode); |
| 638 | MESHPARAMS_ADD(dot11MeshAwakeWindowDuration); |
Johannes Berg | 7bcfaf2 | 2009-10-27 12:59:03 +0100 | [diff] [blame] | 639 | #undef MESHPARAMS_ADD |
Luis Carlos Cobo | 9f42f60 | 2008-02-23 15:17:16 +0100 | [diff] [blame] | 640 | } |
| 641 | #endif |
| 642 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 643 | static void add_files(struct ieee80211_sub_if_data *sdata) |
| 644 | { |
Stanislaw Gruszka | ddbfe86 | 2013-03-08 14:46:14 +0100 | [diff] [blame] | 645 | if (!sdata->vif.debugfs_dir) |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 646 | return; |
| 647 | |
Felix Fietkau | fcb2c9e | 2012-03-18 22:58:05 +0100 | [diff] [blame] | 648 | DEBUGFS_ADD(flags); |
| 649 | DEBUGFS_ADD(state); |
Johannes Berg | 1ea6f9c | 2012-10-24 10:59:25 +0200 | [diff] [blame] | 650 | DEBUGFS_ADD(txpower); |
| 651 | DEBUGFS_ADD(user_power_level); |
| 652 | DEBUGFS_ADD(ap_power_level); |
Felix Fietkau | fcb2c9e | 2012-03-18 22:58:05 +0100 | [diff] [blame] | 653 | |
| 654 | if (sdata->vif.type != NL80211_IFTYPE_MONITOR) |
| 655 | add_common_files(sdata); |
| 656 | |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 657 | switch (sdata->vif.type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 658 | case NL80211_IFTYPE_MESH_POINT: |
Luis Carlos Cobo | 9f42f60 | 2008-02-23 15:17:16 +0100 | [diff] [blame] | 659 | #ifdef CONFIG_MAC80211_MESH |
Javier Cardona | 12ce8ba | 2012-03-05 17:20:38 -0800 | [diff] [blame] | 660 | add_mesh_files(sdata); |
Luis Carlos Cobo | 9f42f60 | 2008-02-23 15:17:16 +0100 | [diff] [blame] | 661 | add_mesh_stats(sdata); |
| 662 | add_mesh_config(sdata); |
| 663 | #endif |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 664 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 665 | case NL80211_IFTYPE_STATION: |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 666 | add_sta_files(sdata); |
| 667 | break; |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 668 | case NL80211_IFTYPE_ADHOC: |
Eliad Peller | 37a41b4 | 2011-09-21 14:06:11 +0300 | [diff] [blame] | 669 | add_ibss_files(sdata); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 670 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 671 | case NL80211_IFTYPE_AP: |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 672 | add_ap_files(sdata); |
| 673 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 674 | case NL80211_IFTYPE_WDS: |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 675 | add_wds_files(sdata); |
| 676 | break; |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 677 | default: |
| 678 | break; |
| 679 | } |
| 680 | } |
| 681 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 682 | void ieee80211_debugfs_add_netdev(struct ieee80211_sub_if_data *sdata) |
| 683 | { |
| 684 | char buf[10+IFNAMSIZ]; |
| 685 | |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 686 | sprintf(buf, "netdev:%s", sdata->name); |
Stanislaw Gruszka | ddbfe86 | 2013-03-08 14:46:14 +0100 | [diff] [blame] | 687 | sdata->vif.debugfs_dir = debugfs_create_dir(buf, |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 688 | sdata->local->hw.wiphy->debugfsdir); |
Stanislaw Gruszka | ddbfe86 | 2013-03-08 14:46:14 +0100 | [diff] [blame] | 689 | if (sdata->vif.debugfs_dir) |
Ben Greear | 295bafb | 2010-09-22 20:29:01 -0700 | [diff] [blame] | 690 | sdata->debugfs.subdir_stations = debugfs_create_dir("stations", |
Stanislaw Gruszka | ddbfe86 | 2013-03-08 14:46:14 +0100 | [diff] [blame] | 691 | sdata->vif.debugfs_dir); |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 692 | add_files(sdata); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 693 | } |
| 694 | |
| 695 | void ieee80211_debugfs_remove_netdev(struct ieee80211_sub_if_data *sdata) |
| 696 | { |
Stanislaw Gruszka | ddbfe86 | 2013-03-08 14:46:14 +0100 | [diff] [blame] | 697 | if (!sdata->vif.debugfs_dir) |
Johannes Berg | 7bcfaf2 | 2009-10-27 12:59:03 +0100 | [diff] [blame] | 698 | return; |
| 699 | |
Stanislaw Gruszka | ddbfe86 | 2013-03-08 14:46:14 +0100 | [diff] [blame] | 700 | debugfs_remove_recursive(sdata->vif.debugfs_dir); |
| 701 | sdata->vif.debugfs_dir = NULL; |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 702 | } |
| 703 | |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 704 | void ieee80211_debugfs_rename_netdev(struct ieee80211_sub_if_data *sdata) |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 705 | { |
Johannes Berg | 7c8081e | 2007-06-21 18:30:19 +0200 | [diff] [blame] | 706 | struct dentry *dir; |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 707 | char buf[10 + IFNAMSIZ]; |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 708 | |
Stanislaw Gruszka | ddbfe86 | 2013-03-08 14:46:14 +0100 | [diff] [blame] | 709 | dir = sdata->vif.debugfs_dir; |
Johannes Berg | c74e90a | 2008-10-08 10:18:36 +0200 | [diff] [blame] | 710 | |
| 711 | if (!dir) |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 712 | return; |
Johannes Berg | c74e90a | 2008-10-08 10:18:36 +0200 | [diff] [blame] | 713 | |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 714 | sprintf(buf, "netdev:%s", sdata->name); |
Johannes Berg | 7c8081e | 2007-06-21 18:30:19 +0200 | [diff] [blame] | 715 | if (!debugfs_rename(dir->d_parent, dir, dir->d_parent, buf)) |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 716 | sdata_err(sdata, |
| 717 | "debugfs: failed to rename debugfs dir to %s\n", |
| 718 | buf); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 719 | } |