blob: ef5cf2685657ff9327861a09e7db28fc312b41d1 [file] [log] [blame]
Jiri Bence9f207f2007-05-05 11:46:38 -07001/*
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 Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Jiri Bence9f207f2007-05-05 11:46:38 -070017#include <linux/notifier.h>
18#include <net/mac80211.h>
19#include <net/cfg80211.h>
20#include "ieee80211_i.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040021#include "rate.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070022#include "debugfs.h"
23#include "debugfs_netdev.h"
Eliad Peller37a41b42011-09-21 14:06:11 +030024#include "driver-ops.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070025
26static 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 Cobo73bb3e42008-03-31 15:10:22 -070036 if (sdata->dev->reg_state == NETREG_REGISTERED)
Jiri Bence9f207f2007-05-05 11:46:38 -070037 ret = (*format)(sdata, buf, sizeof(buf));
Jiri Bence9f207f2007-05-05 11:46:38 -070038 read_unlock(&dev_base_lock);
Luis Carlos Cobo73bb3e42008-03-31 15:10:22 -070039
Jouni Malinen681d1192011-02-03 18:35:19 +020040 if (ret >= 0)
Luis Carlos Cobo73bb3e42008-03-31 15:10:22 -070041 ret = simple_read_from_buffer(userbuf, count, ppos, buf, ret);
42
Jiri Bence9f207f2007-05-05 11:46:38 -070043 return ret;
44}
45
Johannes Berg0f782312009-12-01 13:37:02 +010046static 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 Pellerada577c2012-03-14 16:15:02 +020052 char buf[64];
Eric Dumazet51f5f8c2010-03-10 17:13:36 +010053 ssize_t ret;
Johannes Berg0f782312009-12-01 13:37:02 +010054
Eliad Pellerada577c2012-03-14 16:15:02 +020055 if (count >= sizeof(buf))
56 return -E2BIG;
Johannes Berg0f782312009-12-01 13:37:02 +010057
58 if (copy_from_user(buf, userbuf, count))
Eliad Pellerada577c2012-03-14 16:15:02 +020059 return -EFAULT;
60 buf[count] = '\0';
Johannes Berg0f782312009-12-01 13:37:02 +010061
Eric Dumazet51f5f8c2010-03-10 17:13:36 +010062 ret = -ENODEV;
Johannes Berg0f782312009-12-01 13:37:02 +010063 rtnl_lock();
64 if (sdata->dev->reg_state == NETREG_REGISTERED)
65 ret = (*write)(sdata, buf, count);
66 rtnl_unlock();
67
68 return ret;
69}
70
Jiri Bence9f207f2007-05-05 11:46:38 -070071#define IEEE80211_IF_FMT(name, field, format_string) \
72static ssize_t ieee80211_if_fmt_##name( \
73 const struct ieee80211_sub_if_data *sdata, char *buf, \
74 int buflen) \
75{ \
76 return scnprintf(buf, buflen, format_string, sdata->field); \
77}
78#define IEEE80211_IF_FMT_DEC(name, field) \
79 IEEE80211_IF_FMT(name, field, "%d\n")
80#define IEEE80211_IF_FMT_HEX(name, field) \
81 IEEE80211_IF_FMT(name, field, "%#x\n")
Ben Greear4914b3b2011-01-27 22:09:34 -080082#define IEEE80211_IF_FMT_LHEX(name, field) \
83 IEEE80211_IF_FMT(name, field, "%#lx\n")
Jiri Bence9f207f2007-05-05 11:46:38 -070084#define IEEE80211_IF_FMT_SIZE(name, field) \
85 IEEE80211_IF_FMT(name, field, "%zd\n")
86
Simon Wunderlich19468412012-01-28 17:25:33 +010087#define IEEE80211_IF_FMT_HEXARRAY(name, field) \
88static ssize_t ieee80211_if_fmt_##name( \
89 const struct ieee80211_sub_if_data *sdata, \
90 char *buf, int buflen) \
91{ \
92 char *p = buf; \
93 int i; \
94 for (i = 0; i < sizeof(sdata->field); i++) { \
95 p += scnprintf(p, buflen + buf - p, "%.2x ", \
96 sdata->field[i]); \
97 } \
98 p += scnprintf(p, buflen + buf - p, "\n"); \
99 return p - buf; \
100}
101
Jiri Bence9f207f2007-05-05 11:46:38 -0700102#define IEEE80211_IF_FMT_ATOMIC(name, field) \
103static ssize_t ieee80211_if_fmt_##name( \
104 const struct ieee80211_sub_if_data *sdata, \
105 char *buf, int buflen) \
106{ \
107 return scnprintf(buf, buflen, "%d\n", atomic_read(&sdata->field));\
108}
109
110#define IEEE80211_IF_FMT_MAC(name, field) \
111static ssize_t ieee80211_if_fmt_##name( \
112 const struct ieee80211_sub_if_data *sdata, char *buf, \
113 int buflen) \
114{ \
Johannes Berg0c68ae262008-10-27 15:56:10 -0700115 return scnprintf(buf, buflen, "%pM\n", sdata->field); \
Jiri Bence9f207f2007-05-05 11:46:38 -0700116}
117
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700118#define IEEE80211_IF_FMT_DEC_DIV_16(name, field) \
119static ssize_t ieee80211_if_fmt_##name( \
120 const struct ieee80211_sub_if_data *sdata, \
121 char *buf, int buflen) \
122{ \
123 return scnprintf(buf, buflen, "%d\n", sdata->field / 16); \
124}
125
Johannes Berg0f782312009-12-01 13:37:02 +0100126#define __IEEE80211_IF_FILE(name, _write) \
Jiri Bence9f207f2007-05-05 11:46:38 -0700127static ssize_t ieee80211_if_read_##name(struct file *file, \
128 char __user *userbuf, \
129 size_t count, loff_t *ppos) \
130{ \
131 return ieee80211_if_read(file->private_data, \
132 userbuf, count, ppos, \
133 ieee80211_if_fmt_##name); \
134} \
135static const struct file_operations name##_ops = { \
136 .read = ieee80211_if_read_##name, \
Johannes Berg0f782312009-12-01 13:37:02 +0100137 .write = (_write), \
Jiri Bence9f207f2007-05-05 11:46:38 -0700138 .open = mac80211_open_file_generic, \
Arnd Bergmann2b18ab362010-07-06 19:05:31 +0200139 .llseek = generic_file_llseek, \
Jiri Bence9f207f2007-05-05 11:46:38 -0700140}
141
Johannes Berg0f782312009-12-01 13:37:02 +0100142#define __IEEE80211_IF_FILE_W(name) \
143static ssize_t ieee80211_if_write_##name(struct file *file, \
144 const char __user *userbuf, \
145 size_t count, loff_t *ppos) \
146{ \
147 return ieee80211_if_write(file->private_data, userbuf, count, \
148 ppos, ieee80211_if_parse_##name); \
149} \
150__IEEE80211_IF_FILE(name, ieee80211_if_write_##name)
151
152
Jiri Bence9f207f2007-05-05 11:46:38 -0700153#define IEEE80211_IF_FILE(name, field, format) \
154 IEEE80211_IF_FMT_##format(name, field) \
Johannes Berg0f782312009-12-01 13:37:02 +0100155 __IEEE80211_IF_FILE(name, NULL)
Jiri Bence9f207f2007-05-05 11:46:38 -0700156
157/* common attributes */
Jiri Bence9f207f2007-05-05 11:46:38 -0700158IEEE80211_IF_FILE(drop_unencrypted, drop_unencrypted, DEC);
Jouni Malinen37eb0b12010-01-06 13:09:08 +0200159IEEE80211_IF_FILE(rc_rateidx_mask_2ghz, rc_rateidx_mask[IEEE80211_BAND_2GHZ],
160 HEX);
161IEEE80211_IF_FILE(rc_rateidx_mask_5ghz, rc_rateidx_mask[IEEE80211_BAND_5GHZ],
162 HEX);
Simon Wunderlich19468412012-01-28 17:25:33 +0100163IEEE80211_IF_FILE(rc_rateidx_mcs_mask_2ghz,
164 rc_rateidx_mcs_mask[IEEE80211_BAND_2GHZ], HEXARRAY);
165IEEE80211_IF_FILE(rc_rateidx_mcs_mask_5ghz,
166 rc_rateidx_mcs_mask[IEEE80211_BAND_5GHZ], HEXARRAY);
167
Ben Greear4914b3b2011-01-27 22:09:34 -0800168IEEE80211_IF_FILE(flags, flags, HEX);
169IEEE80211_IF_FILE(state, state, LHEX);
Ben Greear0fa025f2011-01-28 17:05:42 -0800170IEEE80211_IF_FILE(channel_type, vif.bss_conf.channel_type, DEC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700171
Johannes Berg46900292009-02-15 12:44:28 +0100172/* STA attributes */
Johannes Berg46900292009-02-15 12:44:28 +0100173IEEE80211_IF_FILE(bssid, u.mgd.bssid, MAC);
Johannes Berg46900292009-02-15 12:44:28 +0100174IEEE80211_IF_FILE(aid, u.mgd.aid, DEC);
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700175IEEE80211_IF_FILE(last_beacon, u.mgd.last_beacon_signal, DEC);
176IEEE80211_IF_FILE(ave_beacon, u.mgd.ave_beacon_signal, DEC_DIV_16);
Jiri Bence9f207f2007-05-05 11:46:38 -0700177
Johannes Berg0f782312009-12-01 13:37:02 +0100178static int ieee80211_set_smps(struct ieee80211_sub_if_data *sdata,
179 enum ieee80211_smps_mode smps_mode)
180{
181 struct ieee80211_local *local = sdata->local;
182 int err;
183
184 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_STATIC_SMPS) &&
185 smps_mode == IEEE80211_SMPS_STATIC)
186 return -EINVAL;
187
188 /* auto should be dynamic if in PS mode */
189 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS) &&
190 (smps_mode == IEEE80211_SMPS_DYNAMIC ||
191 smps_mode == IEEE80211_SMPS_AUTOMATIC))
192 return -EINVAL;
193
194 /* supported only on managed interfaces for now */
195 if (sdata->vif.type != NL80211_IFTYPE_STATION)
196 return -EOPNOTSUPP;
197
Johannes Berg243e6df2011-04-19 20:44:04 +0200198 mutex_lock(&sdata->u.mgd.mtx);
Johannes Berg0f782312009-12-01 13:37:02 +0100199 err = __ieee80211_request_smps(sdata, smps_mode);
Johannes Berg243e6df2011-04-19 20:44:04 +0200200 mutex_unlock(&sdata->u.mgd.mtx);
Johannes Berg0f782312009-12-01 13:37:02 +0100201
202 return err;
203}
204
205static const char *smps_modes[IEEE80211_SMPS_NUM_MODES] = {
206 [IEEE80211_SMPS_AUTOMATIC] = "auto",
207 [IEEE80211_SMPS_OFF] = "off",
208 [IEEE80211_SMPS_STATIC] = "static",
209 [IEEE80211_SMPS_DYNAMIC] = "dynamic",
210};
211
212static ssize_t ieee80211_if_fmt_smps(const struct ieee80211_sub_if_data *sdata,
213 char *buf, int buflen)
214{
215 if (sdata->vif.type != NL80211_IFTYPE_STATION)
216 return -EOPNOTSUPP;
217
218 return snprintf(buf, buflen, "request: %s\nused: %s\n",
219 smps_modes[sdata->u.mgd.req_smps],
220 smps_modes[sdata->u.mgd.ap_smps]);
221}
222
223static ssize_t ieee80211_if_parse_smps(struct ieee80211_sub_if_data *sdata,
224 const char *buf, int buflen)
225{
226 enum ieee80211_smps_mode mode;
227
228 for (mode = 0; mode < IEEE80211_SMPS_NUM_MODES; mode++) {
229 if (strncmp(buf, smps_modes[mode], buflen) == 0) {
230 int err = ieee80211_set_smps(sdata, mode);
231 if (!err)
232 return buflen;
233 return err;
234 }
235 }
236
237 return -EINVAL;
238}
239
240__IEEE80211_IF_FILE_W(smps);
241
Jouni Malinen681d1192011-02-03 18:35:19 +0200242static ssize_t ieee80211_if_fmt_tkip_mic_test(
243 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
244{
245 return -EOPNOTSUPP;
246}
247
248static int hwaddr_aton(const char *txt, u8 *addr)
249{
250 int i;
251
252 for (i = 0; i < ETH_ALEN; i++) {
253 int a, b;
254
255 a = hex_to_bin(*txt++);
256 if (a < 0)
257 return -1;
258 b = hex_to_bin(*txt++);
259 if (b < 0)
260 return -1;
261 *addr++ = (a << 4) | b;
262 if (i < 5 && *txt++ != ':')
263 return -1;
264 }
265
266 return 0;
267}
268
269static ssize_t ieee80211_if_parse_tkip_mic_test(
270 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
271{
272 struct ieee80211_local *local = sdata->local;
273 u8 addr[ETH_ALEN];
274 struct sk_buff *skb;
275 struct ieee80211_hdr *hdr;
276 __le16 fc;
277
278 /*
279 * Assume colon-delimited MAC address with possible white space
280 * following.
281 */
282 if (buflen < 3 * ETH_ALEN - 1)
283 return -EINVAL;
284 if (hwaddr_aton(buf, addr) < 0)
285 return -EINVAL;
286
287 if (!ieee80211_sdata_running(sdata))
288 return -ENOTCONN;
289
290 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 24 + 100);
291 if (!skb)
292 return -ENOMEM;
293 skb_reserve(skb, local->hw.extra_tx_headroom);
294
295 hdr = (struct ieee80211_hdr *) skb_put(skb, 24);
296 memset(hdr, 0, 24);
297 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
298
299 switch (sdata->vif.type) {
300 case NL80211_IFTYPE_AP:
301 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
302 /* DA BSSID SA */
303 memcpy(hdr->addr1, addr, ETH_ALEN);
304 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
305 memcpy(hdr->addr3, sdata->vif.addr, ETH_ALEN);
306 break;
307 case NL80211_IFTYPE_STATION:
308 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
309 /* BSSID SA DA */
310 if (sdata->vif.bss_conf.bssid == NULL) {
311 dev_kfree_skb(skb);
312 return -ENOTCONN;
313 }
314 memcpy(hdr->addr1, sdata->vif.bss_conf.bssid, ETH_ALEN);
315 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
316 memcpy(hdr->addr3, addr, ETH_ALEN);
317 break;
318 default:
319 dev_kfree_skb(skb);
320 return -EOPNOTSUPP;
321 }
322 hdr->frame_control = fc;
323
324 /*
325 * Add some length to the test frame to make it look bit more valid.
326 * The exact contents does not matter since the recipient is required
327 * to drop this because of the Michael MIC failure.
328 */
329 memset(skb_put(skb, 50), 0, 50);
330
331 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_TKIP_MIC_FAILURE;
332
333 ieee80211_tx_skb(sdata, skb);
334
335 return buflen;
336}
337
338__IEEE80211_IF_FILE_W(tkip_mic_test);
339
Jiri Bence9f207f2007-05-05 11:46:38 -0700340/* AP attributes */
Johannes Berg29623892011-12-14 12:20:31 +0100341IEEE80211_IF_FILE(num_sta_authorized, u.ap.num_sta_authorized, ATOMIC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700342IEEE80211_IF_FILE(num_sta_ps, u.ap.num_sta_ps, ATOMIC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700343IEEE80211_IF_FILE(dtim_count, u.ap.dtim_count, DEC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700344
345static ssize_t ieee80211_if_fmt_num_buffered_multicast(
346 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
347{
348 return scnprintf(buf, buflen, "%u\n",
349 skb_queue_len(&sdata->u.ap.ps_bc_buf));
350}
Johannes Berg0f782312009-12-01 13:37:02 +0100351__IEEE80211_IF_FILE(num_buffered_multicast, NULL);
Jiri Bence9f207f2007-05-05 11:46:38 -0700352
Eliad Peller37a41b42011-09-21 14:06:11 +0300353/* IBSS attributes */
354static ssize_t ieee80211_if_fmt_tsf(
355 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
356{
357 struct ieee80211_local *local = sdata->local;
358 u64 tsf;
359
360 tsf = drv_get_tsf(local, (struct ieee80211_sub_if_data *)sdata);
361
362 return scnprintf(buf, buflen, "0x%016llx\n", (unsigned long long) tsf);
363}
364
365static ssize_t ieee80211_if_parse_tsf(
366 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
367{
368 struct ieee80211_local *local = sdata->local;
369 unsigned long long tsf;
370 int ret;
371
372 if (strncmp(buf, "reset", 5) == 0) {
373 if (local->ops->reset_tsf) {
374 drv_reset_tsf(local, sdata);
375 wiphy_info(local->hw.wiphy, "debugfs reset TSF\n");
376 }
377 } else {
378 ret = kstrtoull(buf, 10, &tsf);
379 if (ret < 0)
380 return -EINVAL;
381 if (local->ops->set_tsf) {
382 drv_set_tsf(local, sdata, tsf);
383 wiphy_info(local->hw.wiphy,
384 "debugfs set TSF to %#018llx\n", tsf);
385 }
386 }
387
388 return buflen;
389}
390__IEEE80211_IF_FILE_W(tsf);
391
392
Jiri Bence9f207f2007-05-05 11:46:38 -0700393/* WDS attributes */
394IEEE80211_IF_FILE(peer, u.wds.remote_addr, MAC);
395
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100396#ifdef CONFIG_MAC80211_MESH
397/* Mesh stats attributes */
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700398IEEE80211_IF_FILE(fwded_mcast, u.mesh.mshstats.fwded_mcast, DEC);
399IEEE80211_IF_FILE(fwded_unicast, u.mesh.mshstats.fwded_unicast, DEC);
Johannes Berg472dbc42008-09-11 00:01:49 +0200400IEEE80211_IF_FILE(fwded_frames, u.mesh.mshstats.fwded_frames, DEC);
401IEEE80211_IF_FILE(dropped_frames_ttl, u.mesh.mshstats.dropped_frames_ttl, DEC);
Javier Cardonacfee66b2011-09-06 13:05:21 -0700402IEEE80211_IF_FILE(dropped_frames_congestion,
403 u.mesh.mshstats.dropped_frames_congestion, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100404IEEE80211_IF_FILE(dropped_frames_no_route,
Johannes Berg472dbc42008-09-11 00:01:49 +0200405 u.mesh.mshstats.dropped_frames_no_route, DEC);
406IEEE80211_IF_FILE(estab_plinks, u.mesh.mshstats.estab_plinks, ATOMIC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100407
408/* Mesh parameters */
Johannes Berg36ff3822008-10-07 12:04:31 +0200409IEEE80211_IF_FILE(dot11MeshMaxRetries,
410 u.mesh.mshcfg.dot11MeshMaxRetries, DEC);
411IEEE80211_IF_FILE(dot11MeshRetryTimeout,
412 u.mesh.mshcfg.dot11MeshRetryTimeout, DEC);
413IEEE80211_IF_FILE(dot11MeshConfirmTimeout,
414 u.mesh.mshcfg.dot11MeshConfirmTimeout, DEC);
415IEEE80211_IF_FILE(dot11MeshHoldingTimeout,
416 u.mesh.mshcfg.dot11MeshHoldingTimeout, DEC);
417IEEE80211_IF_FILE(dot11MeshTTL, u.mesh.mshcfg.dot11MeshTTL, DEC);
Javier Cardona45904f22010-12-03 09:20:40 +0100418IEEE80211_IF_FILE(element_ttl, u.mesh.mshcfg.element_ttl, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200419IEEE80211_IF_FILE(auto_open_plinks, u.mesh.mshcfg.auto_open_plinks, DEC);
420IEEE80211_IF_FILE(dot11MeshMaxPeerLinks,
421 u.mesh.mshcfg.dot11MeshMaxPeerLinks, DEC);
422IEEE80211_IF_FILE(dot11MeshHWMPactivePathTimeout,
423 u.mesh.mshcfg.dot11MeshHWMPactivePathTimeout, DEC);
424IEEE80211_IF_FILE(dot11MeshHWMPpreqMinInterval,
425 u.mesh.mshcfg.dot11MeshHWMPpreqMinInterval, DEC);
Thomas Pedersendca7e942011-11-24 17:15:24 -0800426IEEE80211_IF_FILE(dot11MeshHWMPperrMinInterval,
427 u.mesh.mshcfg.dot11MeshHWMPperrMinInterval, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200428IEEE80211_IF_FILE(dot11MeshHWMPnetDiameterTraversalTime,
429 u.mesh.mshcfg.dot11MeshHWMPnetDiameterTraversalTime, DEC);
430IEEE80211_IF_FILE(dot11MeshHWMPmaxPREQretries,
431 u.mesh.mshcfg.dot11MeshHWMPmaxPREQretries, DEC);
432IEEE80211_IF_FILE(path_refresh_time,
433 u.mesh.mshcfg.path_refresh_time, DEC);
434IEEE80211_IF_FILE(min_discovery_timeout,
435 u.mesh.mshcfg.min_discovery_timeout, DEC);
Rui Paulo63c57232009-11-09 23:46:57 +0000436IEEE80211_IF_FILE(dot11MeshHWMPRootMode,
437 u.mesh.mshcfg.dot11MeshHWMPRootMode, DEC);
Javier Cardona16dd7262011-08-09 16:45:11 -0700438IEEE80211_IF_FILE(dot11MeshGateAnnouncementProtocol,
439 u.mesh.mshcfg.dot11MeshGateAnnouncementProtocol, DEC);
Javier Cardona0507e152011-08-09 16:45:10 -0700440IEEE80211_IF_FILE(dot11MeshHWMPRannInterval,
441 u.mesh.mshcfg.dot11MeshHWMPRannInterval, DEC);
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +0800442IEEE80211_IF_FILE(dot11MeshForwarding, u.mesh.mshcfg.dot11MeshForwarding, DEC);
Ashok Nagarajan55335132012-02-28 17:04:08 -0800443IEEE80211_IF_FILE(rssi_threshold, u.mesh.mshcfg.rssi_threshold, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100444#endif
445
446
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100447#define DEBUGFS_ADD(name) \
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100448 debugfs_create_file(#name, 0400, sdata->debugfs.dir, \
449 sdata, &name##_ops);
Jiri Bence9f207f2007-05-05 11:46:38 -0700450
Johannes Berg0f782312009-12-01 13:37:02 +0100451#define DEBUGFS_ADD_MODE(name, mode) \
452 debugfs_create_file(#name, mode, sdata->debugfs.dir, \
453 sdata, &name##_ops);
454
Jiri Bence9f207f2007-05-05 11:46:38 -0700455static void add_sta_files(struct ieee80211_sub_if_data *sdata)
456{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100457 DEBUGFS_ADD(drop_unencrypted);
Ben Greear4914b3b2011-01-27 22:09:34 -0800458 DEBUGFS_ADD(flags);
459 DEBUGFS_ADD(state);
Ben Greear0fa025f2011-01-28 17:05:42 -0800460 DEBUGFS_ADD(channel_type);
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100461 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
462 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
Simon Wunderlich19468412012-01-28 17:25:33 +0100463 DEBUGFS_ADD(rc_rateidx_mcs_mask_2ghz);
464 DEBUGFS_ADD(rc_rateidx_mcs_mask_5ghz);
Johannes Berg3e122be2008-07-09 14:40:34 +0200465
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100466 DEBUGFS_ADD(bssid);
467 DEBUGFS_ADD(aid);
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700468 DEBUGFS_ADD(last_beacon);
469 DEBUGFS_ADD(ave_beacon);
Johannes Berg0f782312009-12-01 13:37:02 +0100470 DEBUGFS_ADD_MODE(smps, 0600);
Jouni Malinen681d1192011-02-03 18:35:19 +0200471 DEBUGFS_ADD_MODE(tkip_mic_test, 0200);
Jiri Bence9f207f2007-05-05 11:46:38 -0700472}
473
474static void add_ap_files(struct ieee80211_sub_if_data *sdata)
475{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100476 DEBUGFS_ADD(drop_unencrypted);
Ben Greear4914b3b2011-01-27 22:09:34 -0800477 DEBUGFS_ADD(flags);
478 DEBUGFS_ADD(state);
Ben Greear0fa025f2011-01-28 17:05:42 -0800479 DEBUGFS_ADD(channel_type);
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100480 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
481 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
Simon Wunderlich19468412012-01-28 17:25:33 +0100482 DEBUGFS_ADD(rc_rateidx_mcs_mask_2ghz);
483 DEBUGFS_ADD(rc_rateidx_mcs_mask_5ghz);
Johannes Berg3e122be2008-07-09 14:40:34 +0200484
Johannes Berg29623892011-12-14 12:20:31 +0100485 DEBUGFS_ADD(num_sta_authorized);
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100486 DEBUGFS_ADD(num_sta_ps);
487 DEBUGFS_ADD(dtim_count);
488 DEBUGFS_ADD(num_buffered_multicast);
Jouni Malinen681d1192011-02-03 18:35:19 +0200489 DEBUGFS_ADD_MODE(tkip_mic_test, 0200);
Jiri Bence9f207f2007-05-05 11:46:38 -0700490}
491
Eliad Peller37a41b42011-09-21 14:06:11 +0300492static void add_ibss_files(struct ieee80211_sub_if_data *sdata)
493{
Simon Wunderlich19468412012-01-28 17:25:33 +0100494 DEBUGFS_ADD(channel_type);
495 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
496 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
497 DEBUGFS_ADD(rc_rateidx_mcs_mask_2ghz);
498 DEBUGFS_ADD(rc_rateidx_mcs_mask_5ghz);
499
Eliad Peller37a41b42011-09-21 14:06:11 +0300500 DEBUGFS_ADD_MODE(tsf, 0600);
501}
502
Jiri Bence9f207f2007-05-05 11:46:38 -0700503static void add_wds_files(struct ieee80211_sub_if_data *sdata)
504{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100505 DEBUGFS_ADD(drop_unencrypted);
Ben Greear4914b3b2011-01-27 22:09:34 -0800506 DEBUGFS_ADD(flags);
507 DEBUGFS_ADD(state);
Ben Greear0fa025f2011-01-28 17:05:42 -0800508 DEBUGFS_ADD(channel_type);
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100509 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
510 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
Simon Wunderlich19468412012-01-28 17:25:33 +0100511 DEBUGFS_ADD(rc_rateidx_mcs_mask_2ghz);
512 DEBUGFS_ADD(rc_rateidx_mcs_mask_5ghz);
Johannes Berg3e122be2008-07-09 14:40:34 +0200513
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100514 DEBUGFS_ADD(peer);
Jiri Bence9f207f2007-05-05 11:46:38 -0700515}
516
517static void add_vlan_files(struct ieee80211_sub_if_data *sdata)
518{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100519 DEBUGFS_ADD(drop_unencrypted);
Ben Greear4914b3b2011-01-27 22:09:34 -0800520 DEBUGFS_ADD(flags);
521 DEBUGFS_ADD(state);
Ben Greear0fa025f2011-01-28 17:05:42 -0800522 DEBUGFS_ADD(channel_type);
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100523 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
524 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
Simon Wunderlich19468412012-01-28 17:25:33 +0100525 DEBUGFS_ADD(rc_rateidx_mcs_mask_2ghz);
526 DEBUGFS_ADD(rc_rateidx_mcs_mask_5ghz);
Jiri Bence9f207f2007-05-05 11:46:38 -0700527}
528
529static void add_monitor_files(struct ieee80211_sub_if_data *sdata)
530{
Ben Greear4914b3b2011-01-27 22:09:34 -0800531 DEBUGFS_ADD(flags);
532 DEBUGFS_ADD(state);
Ben Greear0fa025f2011-01-28 17:05:42 -0800533 DEBUGFS_ADD(channel_type);
Jiri Bence9f207f2007-05-05 11:46:38 -0700534}
535
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100536#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100537
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800538static void add_mesh_files(struct ieee80211_sub_if_data *sdata)
539{
540 DEBUGFS_ADD_MODE(tsf, 0600);
541}
542
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100543static void add_mesh_stats(struct ieee80211_sub_if_data *sdata)
544{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100545 struct dentry *dir = debugfs_create_dir("mesh_stats",
546 sdata->debugfs.dir);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100547#define MESHSTATS_ADD(name)\
548 debugfs_create_file(#name, 0400, dir, sdata, &name##_ops);
549
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700550 MESHSTATS_ADD(fwded_mcast);
551 MESHSTATS_ADD(fwded_unicast);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100552 MESHSTATS_ADD(fwded_frames);
553 MESHSTATS_ADD(dropped_frames_ttl);
554 MESHSTATS_ADD(dropped_frames_no_route);
Javier Cardonacfee66b2011-09-06 13:05:21 -0700555 MESHSTATS_ADD(dropped_frames_congestion);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100556 MESHSTATS_ADD(estab_plinks);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100557#undef MESHSTATS_ADD
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100558}
559
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100560static void add_mesh_config(struct ieee80211_sub_if_data *sdata)
561{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100562 struct dentry *dir = debugfs_create_dir("mesh_config",
563 sdata->debugfs.dir);
564
565#define MESHPARAMS_ADD(name) \
566 debugfs_create_file(#name, 0600, dir, sdata, &name##_ops);
567
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100568 MESHPARAMS_ADD(dot11MeshMaxRetries);
569 MESHPARAMS_ADD(dot11MeshRetryTimeout);
570 MESHPARAMS_ADD(dot11MeshConfirmTimeout);
571 MESHPARAMS_ADD(dot11MeshHoldingTimeout);
572 MESHPARAMS_ADD(dot11MeshTTL);
Javier Cardona45904f22010-12-03 09:20:40 +0100573 MESHPARAMS_ADD(element_ttl);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100574 MESHPARAMS_ADD(auto_open_plinks);
575 MESHPARAMS_ADD(dot11MeshMaxPeerLinks);
576 MESHPARAMS_ADD(dot11MeshHWMPactivePathTimeout);
577 MESHPARAMS_ADD(dot11MeshHWMPpreqMinInterval);
Thomas Pedersendca7e942011-11-24 17:15:24 -0800578 MESHPARAMS_ADD(dot11MeshHWMPperrMinInterval);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100579 MESHPARAMS_ADD(dot11MeshHWMPnetDiameterTraversalTime);
580 MESHPARAMS_ADD(dot11MeshHWMPmaxPREQretries);
581 MESHPARAMS_ADD(path_refresh_time);
582 MESHPARAMS_ADD(min_discovery_timeout);
Javier Cardona699403d2011-08-09 16:45:09 -0700583 MESHPARAMS_ADD(dot11MeshHWMPRootMode);
Javier Cardona0507e152011-08-09 16:45:10 -0700584 MESHPARAMS_ADD(dot11MeshHWMPRannInterval);
Javier Cardona16dd7262011-08-09 16:45:11 -0700585 MESHPARAMS_ADD(dot11MeshGateAnnouncementProtocol);
Ashok Nagarajan55335132012-02-28 17:04:08 -0800586 MESHPARAMS_ADD(rssi_threshold);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100587#undef MESHPARAMS_ADD
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100588}
589#endif
590
Jiri Bence9f207f2007-05-05 11:46:38 -0700591static void add_files(struct ieee80211_sub_if_data *sdata)
592{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100593 if (!sdata->debugfs.dir)
Jiri Bence9f207f2007-05-05 11:46:38 -0700594 return;
595
Johannes Berg51fb61e2007-12-19 01:31:27 +0100596 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200597 case NL80211_IFTYPE_MESH_POINT:
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100598#ifdef CONFIG_MAC80211_MESH
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800599 add_mesh_files(sdata);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100600 add_mesh_stats(sdata);
601 add_mesh_config(sdata);
602#endif
Johannes Berg472dbc42008-09-11 00:01:49 +0200603 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200604 case NL80211_IFTYPE_STATION:
Jiri Bence9f207f2007-05-05 11:46:38 -0700605 add_sta_files(sdata);
606 break;
Johannes Berg46900292009-02-15 12:44:28 +0100607 case NL80211_IFTYPE_ADHOC:
Eliad Peller37a41b42011-09-21 14:06:11 +0300608 add_ibss_files(sdata);
Johannes Berg46900292009-02-15 12:44:28 +0100609 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200610 case NL80211_IFTYPE_AP:
Jiri Bence9f207f2007-05-05 11:46:38 -0700611 add_ap_files(sdata);
612 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200613 case NL80211_IFTYPE_WDS:
Jiri Bence9f207f2007-05-05 11:46:38 -0700614 add_wds_files(sdata);
615 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200616 case NL80211_IFTYPE_MONITOR:
Jiri Bence9f207f2007-05-05 11:46:38 -0700617 add_monitor_files(sdata);
618 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200619 case NL80211_IFTYPE_AP_VLAN:
Jiri Bence9f207f2007-05-05 11:46:38 -0700620 add_vlan_files(sdata);
621 break;
622 default:
623 break;
624 }
625}
626
Jiri Bence9f207f2007-05-05 11:46:38 -0700627void ieee80211_debugfs_add_netdev(struct ieee80211_sub_if_data *sdata)
628{
629 char buf[10+IFNAMSIZ];
630
Johannes Berg47846c92009-11-25 17:46:19 +0100631 sprintf(buf, "netdev:%s", sdata->name);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100632 sdata->debugfs.dir = debugfs_create_dir(buf,
Jiri Bence9f207f2007-05-05 11:46:38 -0700633 sdata->local->hw.wiphy->debugfsdir);
Ben Greear295bafb2010-09-22 20:29:01 -0700634 if (sdata->debugfs.dir)
635 sdata->debugfs.subdir_stations = debugfs_create_dir("stations",
636 sdata->debugfs.dir);
Johannes Berg75636522008-07-09 14:40:35 +0200637 add_files(sdata);
Jiri Bence9f207f2007-05-05 11:46:38 -0700638}
639
640void ieee80211_debugfs_remove_netdev(struct ieee80211_sub_if_data *sdata)
641{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100642 if (!sdata->debugfs.dir)
643 return;
644
645 debugfs_remove_recursive(sdata->debugfs.dir);
646 sdata->debugfs.dir = NULL;
Jiri Bence9f207f2007-05-05 11:46:38 -0700647}
648
Johannes Berg47846c92009-11-25 17:46:19 +0100649void ieee80211_debugfs_rename_netdev(struct ieee80211_sub_if_data *sdata)
Jiri Bence9f207f2007-05-05 11:46:38 -0700650{
Johannes Berg7c8081e2007-06-21 18:30:19 +0200651 struct dentry *dir;
Johannes Berg47846c92009-11-25 17:46:19 +0100652 char buf[10 + IFNAMSIZ];
Johannes Berg3e122be2008-07-09 14:40:34 +0200653
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100654 dir = sdata->debugfs.dir;
Johannes Bergc74e90a2008-10-08 10:18:36 +0200655
656 if (!dir)
Johannes Berg47846c92009-11-25 17:46:19 +0100657 return;
Johannes Bergc74e90a2008-10-08 10:18:36 +0200658
Johannes Berg47846c92009-11-25 17:46:19 +0100659 sprintf(buf, "netdev:%s", sdata->name);
Johannes Berg7c8081e2007-06-21 18:30:19 +0200660 if (!debugfs_rename(dir->d_parent, dir, dir->d_parent, buf))
661 printk(KERN_ERR "mac80211: debugfs: failed to rename debugfs "
662 "dir to %s\n", buf);
Jiri Bence9f207f2007-05-05 11:46:38 -0700663}