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