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