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