blob: 4cffbf65cccd72d8402eec48cfee15c9d01d57f6 [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"
24
25static ssize_t ieee80211_if_read(
26 struct ieee80211_sub_if_data *sdata,
27 char __user *userbuf,
28 size_t count, loff_t *ppos,
29 ssize_t (*format)(const struct ieee80211_sub_if_data *, char *, int))
30{
31 char buf[70];
32 ssize_t ret = -EINVAL;
33
34 read_lock(&dev_base_lock);
Luis Carlos Cobo73bb3e42008-03-31 15:10:22 -070035 if (sdata->dev->reg_state == NETREG_REGISTERED)
Jiri Bence9f207f2007-05-05 11:46:38 -070036 ret = (*format)(sdata, buf, sizeof(buf));
Jiri Bence9f207f2007-05-05 11:46:38 -070037 read_unlock(&dev_base_lock);
Luis Carlos Cobo73bb3e42008-03-31 15:10:22 -070038
39 if (ret != -EINVAL)
40 ret = simple_read_from_buffer(userbuf, count, ppos, buf, ret);
41
Jiri Bence9f207f2007-05-05 11:46:38 -070042 return ret;
43}
44
Johannes Berg0f782312009-12-01 13:37:02 +010045static ssize_t ieee80211_if_write(
46 struct ieee80211_sub_if_data *sdata,
47 const char __user *userbuf,
48 size_t count, loff_t *ppos,
49 ssize_t (*write)(struct ieee80211_sub_if_data *, const char *, int))
50{
51 u8 *buf;
Eric Dumazet51f5f8c2010-03-10 17:13:36 +010052 ssize_t ret;
Johannes Berg0f782312009-12-01 13:37:02 +010053
Eric Dumazet51f5f8c2010-03-10 17:13:36 +010054 buf = kmalloc(count, GFP_KERNEL);
Johannes Berg0f782312009-12-01 13:37:02 +010055 if (!buf)
56 return -ENOMEM;
57
Eric Dumazet51f5f8c2010-03-10 17:13:36 +010058 ret = -EFAULT;
Johannes Berg0f782312009-12-01 13:37:02 +010059 if (copy_from_user(buf, userbuf, count))
Eric Dumazet51f5f8c2010-03-10 17:13:36 +010060 goto freebuf;
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
Eric Dumazet51f5f8c2010-03-10 17:13:36 +010068freebuf:
69 kfree(buf);
Johannes Berg0f782312009-12-01 13:37:02 +010070 return ret;
71}
72
Jiri Bence9f207f2007-05-05 11:46:38 -070073#define IEEE80211_IF_FMT(name, field, format_string) \
74static ssize_t ieee80211_if_fmt_##name( \
75 const struct ieee80211_sub_if_data *sdata, char *buf, \
76 int buflen) \
77{ \
78 return scnprintf(buf, buflen, format_string, sdata->field); \
79}
80#define IEEE80211_IF_FMT_DEC(name, field) \
81 IEEE80211_IF_FMT(name, field, "%d\n")
82#define IEEE80211_IF_FMT_HEX(name, field) \
83 IEEE80211_IF_FMT(name, field, "%#x\n")
Ben Greear4914b3b2011-01-27 22:09:34 -080084#define IEEE80211_IF_FMT_LHEX(name, field) \
85 IEEE80211_IF_FMT(name, field, "%#lx\n")
Jiri Bence9f207f2007-05-05 11:46:38 -070086#define IEEE80211_IF_FMT_SIZE(name, field) \
87 IEEE80211_IF_FMT(name, field, "%zd\n")
88
89#define IEEE80211_IF_FMT_ATOMIC(name, field) \
90static ssize_t ieee80211_if_fmt_##name( \
91 const struct ieee80211_sub_if_data *sdata, \
92 char *buf, int buflen) \
93{ \
94 return scnprintf(buf, buflen, "%d\n", atomic_read(&sdata->field));\
95}
96
97#define IEEE80211_IF_FMT_MAC(name, field) \
98static ssize_t ieee80211_if_fmt_##name( \
99 const struct ieee80211_sub_if_data *sdata, char *buf, \
100 int buflen) \
101{ \
Johannes Berg0c68ae262008-10-27 15:56:10 -0700102 return scnprintf(buf, buflen, "%pM\n", sdata->field); \
Jiri Bence9f207f2007-05-05 11:46:38 -0700103}
104
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700105#define IEEE80211_IF_FMT_DEC_DIV_16(name, field) \
106static 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", sdata->field / 16); \
111}
112
Johannes Berg0f782312009-12-01 13:37:02 +0100113#define __IEEE80211_IF_FILE(name, _write) \
Jiri Bence9f207f2007-05-05 11:46:38 -0700114static ssize_t ieee80211_if_read_##name(struct file *file, \
115 char __user *userbuf, \
116 size_t count, loff_t *ppos) \
117{ \
118 return ieee80211_if_read(file->private_data, \
119 userbuf, count, ppos, \
120 ieee80211_if_fmt_##name); \
121} \
122static const struct file_operations name##_ops = { \
123 .read = ieee80211_if_read_##name, \
Johannes Berg0f782312009-12-01 13:37:02 +0100124 .write = (_write), \
Jiri Bence9f207f2007-05-05 11:46:38 -0700125 .open = mac80211_open_file_generic, \
Arnd Bergmann2b18ab362010-07-06 19:05:31 +0200126 .llseek = generic_file_llseek, \
Jiri Bence9f207f2007-05-05 11:46:38 -0700127}
128
Johannes Berg0f782312009-12-01 13:37:02 +0100129#define __IEEE80211_IF_FILE_W(name) \
130static ssize_t ieee80211_if_write_##name(struct file *file, \
131 const char __user *userbuf, \
132 size_t count, loff_t *ppos) \
133{ \
134 return ieee80211_if_write(file->private_data, userbuf, count, \
135 ppos, ieee80211_if_parse_##name); \
136} \
137__IEEE80211_IF_FILE(name, ieee80211_if_write_##name)
138
139
Jiri Bence9f207f2007-05-05 11:46:38 -0700140#define IEEE80211_IF_FILE(name, field, format) \
141 IEEE80211_IF_FMT_##format(name, field) \
Johannes Berg0f782312009-12-01 13:37:02 +0100142 __IEEE80211_IF_FILE(name, NULL)
Jiri Bence9f207f2007-05-05 11:46:38 -0700143
144/* common attributes */
Jiri Bence9f207f2007-05-05 11:46:38 -0700145IEEE80211_IF_FILE(drop_unencrypted, drop_unencrypted, DEC);
Jouni Malinen37eb0b12010-01-06 13:09:08 +0200146IEEE80211_IF_FILE(rc_rateidx_mask_2ghz, rc_rateidx_mask[IEEE80211_BAND_2GHZ],
147 HEX);
148IEEE80211_IF_FILE(rc_rateidx_mask_5ghz, rc_rateidx_mask[IEEE80211_BAND_5GHZ],
149 HEX);
Ben Greear4914b3b2011-01-27 22:09:34 -0800150IEEE80211_IF_FILE(flags, flags, HEX);
151IEEE80211_IF_FILE(state, state, LHEX);
Ben Greear0fa025f2011-01-28 17:05:42 -0800152IEEE80211_IF_FILE(channel_type, vif.bss_conf.channel_type, DEC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700153
Johannes Berg46900292009-02-15 12:44:28 +0100154/* STA attributes */
Johannes Berg46900292009-02-15 12:44:28 +0100155IEEE80211_IF_FILE(bssid, u.mgd.bssid, MAC);
Johannes Berg46900292009-02-15 12:44:28 +0100156IEEE80211_IF_FILE(aid, u.mgd.aid, DEC);
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700157IEEE80211_IF_FILE(last_beacon, u.mgd.last_beacon_signal, DEC);
158IEEE80211_IF_FILE(ave_beacon, u.mgd.ave_beacon_signal, DEC_DIV_16);
Jiri Bence9f207f2007-05-05 11:46:38 -0700159
Johannes Berg0f782312009-12-01 13:37:02 +0100160static int ieee80211_set_smps(struct ieee80211_sub_if_data *sdata,
161 enum ieee80211_smps_mode smps_mode)
162{
163 struct ieee80211_local *local = sdata->local;
164 int err;
165
166 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_STATIC_SMPS) &&
167 smps_mode == IEEE80211_SMPS_STATIC)
168 return -EINVAL;
169
170 /* auto should be dynamic if in PS mode */
171 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS) &&
172 (smps_mode == IEEE80211_SMPS_DYNAMIC ||
173 smps_mode == IEEE80211_SMPS_AUTOMATIC))
174 return -EINVAL;
175
176 /* supported only on managed interfaces for now */
177 if (sdata->vif.type != NL80211_IFTYPE_STATION)
178 return -EOPNOTSUPP;
179
180 mutex_lock(&local->iflist_mtx);
181 err = __ieee80211_request_smps(sdata, smps_mode);
182 mutex_unlock(&local->iflist_mtx);
183
184 return err;
185}
186
187static const char *smps_modes[IEEE80211_SMPS_NUM_MODES] = {
188 [IEEE80211_SMPS_AUTOMATIC] = "auto",
189 [IEEE80211_SMPS_OFF] = "off",
190 [IEEE80211_SMPS_STATIC] = "static",
191 [IEEE80211_SMPS_DYNAMIC] = "dynamic",
192};
193
194static ssize_t ieee80211_if_fmt_smps(const struct ieee80211_sub_if_data *sdata,
195 char *buf, int buflen)
196{
197 if (sdata->vif.type != NL80211_IFTYPE_STATION)
198 return -EOPNOTSUPP;
199
200 return snprintf(buf, buflen, "request: %s\nused: %s\n",
201 smps_modes[sdata->u.mgd.req_smps],
202 smps_modes[sdata->u.mgd.ap_smps]);
203}
204
205static ssize_t ieee80211_if_parse_smps(struct ieee80211_sub_if_data *sdata,
206 const char *buf, int buflen)
207{
208 enum ieee80211_smps_mode mode;
209
210 for (mode = 0; mode < IEEE80211_SMPS_NUM_MODES; mode++) {
211 if (strncmp(buf, smps_modes[mode], buflen) == 0) {
212 int err = ieee80211_set_smps(sdata, mode);
213 if (!err)
214 return buflen;
215 return err;
216 }
217 }
218
219 return -EINVAL;
220}
221
222__IEEE80211_IF_FILE_W(smps);
223
Jiri Bence9f207f2007-05-05 11:46:38 -0700224/* AP attributes */
225IEEE80211_IF_FILE(num_sta_ps, u.ap.num_sta_ps, ATOMIC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700226IEEE80211_IF_FILE(dtim_count, u.ap.dtim_count, DEC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700227
228static ssize_t ieee80211_if_fmt_num_buffered_multicast(
229 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
230{
231 return scnprintf(buf, buflen, "%u\n",
232 skb_queue_len(&sdata->u.ap.ps_bc_buf));
233}
Johannes Berg0f782312009-12-01 13:37:02 +0100234__IEEE80211_IF_FILE(num_buffered_multicast, NULL);
Jiri Bence9f207f2007-05-05 11:46:38 -0700235
Jiri Bence9f207f2007-05-05 11:46:38 -0700236/* WDS attributes */
237IEEE80211_IF_FILE(peer, u.wds.remote_addr, MAC);
238
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100239#ifdef CONFIG_MAC80211_MESH
240/* Mesh stats attributes */
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700241IEEE80211_IF_FILE(fwded_mcast, u.mesh.mshstats.fwded_mcast, DEC);
242IEEE80211_IF_FILE(fwded_unicast, u.mesh.mshstats.fwded_unicast, DEC);
Johannes Berg472dbc42008-09-11 00:01:49 +0200243IEEE80211_IF_FILE(fwded_frames, u.mesh.mshstats.fwded_frames, DEC);
244IEEE80211_IF_FILE(dropped_frames_ttl, u.mesh.mshstats.dropped_frames_ttl, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100245IEEE80211_IF_FILE(dropped_frames_no_route,
Johannes Berg472dbc42008-09-11 00:01:49 +0200246 u.mesh.mshstats.dropped_frames_no_route, DEC);
247IEEE80211_IF_FILE(estab_plinks, u.mesh.mshstats.estab_plinks, ATOMIC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100248
249/* Mesh parameters */
Johannes Berg36ff3822008-10-07 12:04:31 +0200250IEEE80211_IF_FILE(dot11MeshMaxRetries,
251 u.mesh.mshcfg.dot11MeshMaxRetries, DEC);
252IEEE80211_IF_FILE(dot11MeshRetryTimeout,
253 u.mesh.mshcfg.dot11MeshRetryTimeout, DEC);
254IEEE80211_IF_FILE(dot11MeshConfirmTimeout,
255 u.mesh.mshcfg.dot11MeshConfirmTimeout, DEC);
256IEEE80211_IF_FILE(dot11MeshHoldingTimeout,
257 u.mesh.mshcfg.dot11MeshHoldingTimeout, DEC);
258IEEE80211_IF_FILE(dot11MeshTTL, u.mesh.mshcfg.dot11MeshTTL, DEC);
Javier Cardona45904f22010-12-03 09:20:40 +0100259IEEE80211_IF_FILE(element_ttl, u.mesh.mshcfg.element_ttl, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200260IEEE80211_IF_FILE(auto_open_plinks, u.mesh.mshcfg.auto_open_plinks, DEC);
261IEEE80211_IF_FILE(dot11MeshMaxPeerLinks,
262 u.mesh.mshcfg.dot11MeshMaxPeerLinks, DEC);
263IEEE80211_IF_FILE(dot11MeshHWMPactivePathTimeout,
264 u.mesh.mshcfg.dot11MeshHWMPactivePathTimeout, DEC);
265IEEE80211_IF_FILE(dot11MeshHWMPpreqMinInterval,
266 u.mesh.mshcfg.dot11MeshHWMPpreqMinInterval, DEC);
267IEEE80211_IF_FILE(dot11MeshHWMPnetDiameterTraversalTime,
268 u.mesh.mshcfg.dot11MeshHWMPnetDiameterTraversalTime, DEC);
269IEEE80211_IF_FILE(dot11MeshHWMPmaxPREQretries,
270 u.mesh.mshcfg.dot11MeshHWMPmaxPREQretries, DEC);
271IEEE80211_IF_FILE(path_refresh_time,
272 u.mesh.mshcfg.path_refresh_time, DEC);
273IEEE80211_IF_FILE(min_discovery_timeout,
274 u.mesh.mshcfg.min_discovery_timeout, DEC);
Rui Paulo63c57232009-11-09 23:46:57 +0000275IEEE80211_IF_FILE(dot11MeshHWMPRootMode,
276 u.mesh.mshcfg.dot11MeshHWMPRootMode, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100277#endif
278
279
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100280#define DEBUGFS_ADD(name) \
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100281 debugfs_create_file(#name, 0400, sdata->debugfs.dir, \
282 sdata, &name##_ops);
Jiri Bence9f207f2007-05-05 11:46:38 -0700283
Johannes Berg0f782312009-12-01 13:37:02 +0100284#define DEBUGFS_ADD_MODE(name, mode) \
285 debugfs_create_file(#name, mode, sdata->debugfs.dir, \
286 sdata, &name##_ops);
287
Jiri Bence9f207f2007-05-05 11:46:38 -0700288static void add_sta_files(struct ieee80211_sub_if_data *sdata)
289{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100290 DEBUGFS_ADD(drop_unencrypted);
Ben Greear4914b3b2011-01-27 22:09:34 -0800291 DEBUGFS_ADD(flags);
292 DEBUGFS_ADD(state);
Ben Greear0fa025f2011-01-28 17:05:42 -0800293 DEBUGFS_ADD(channel_type);
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100294 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
295 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
Johannes Berg3e122be2008-07-09 14:40:34 +0200296
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100297 DEBUGFS_ADD(bssid);
298 DEBUGFS_ADD(aid);
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700299 DEBUGFS_ADD(last_beacon);
300 DEBUGFS_ADD(ave_beacon);
Johannes Berg0f782312009-12-01 13:37:02 +0100301 DEBUGFS_ADD_MODE(smps, 0600);
Jiri Bence9f207f2007-05-05 11:46:38 -0700302}
303
304static void add_ap_files(struct ieee80211_sub_if_data *sdata)
305{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100306 DEBUGFS_ADD(drop_unencrypted);
Ben Greear4914b3b2011-01-27 22:09:34 -0800307 DEBUGFS_ADD(flags);
308 DEBUGFS_ADD(state);
Ben Greear0fa025f2011-01-28 17:05:42 -0800309 DEBUGFS_ADD(channel_type);
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100310 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
311 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
Johannes Berg3e122be2008-07-09 14:40:34 +0200312
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100313 DEBUGFS_ADD(num_sta_ps);
314 DEBUGFS_ADD(dtim_count);
315 DEBUGFS_ADD(num_buffered_multicast);
Jiri Bence9f207f2007-05-05 11:46:38 -0700316}
317
318static void add_wds_files(struct ieee80211_sub_if_data *sdata)
319{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100320 DEBUGFS_ADD(drop_unencrypted);
Ben Greear4914b3b2011-01-27 22:09:34 -0800321 DEBUGFS_ADD(flags);
322 DEBUGFS_ADD(state);
Ben Greear0fa025f2011-01-28 17:05:42 -0800323 DEBUGFS_ADD(channel_type);
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100324 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
325 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
Johannes Berg3e122be2008-07-09 14:40:34 +0200326
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100327 DEBUGFS_ADD(peer);
Jiri Bence9f207f2007-05-05 11:46:38 -0700328}
329
330static void add_vlan_files(struct ieee80211_sub_if_data *sdata)
331{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100332 DEBUGFS_ADD(drop_unencrypted);
Ben Greear4914b3b2011-01-27 22:09:34 -0800333 DEBUGFS_ADD(flags);
334 DEBUGFS_ADD(state);
Ben Greear0fa025f2011-01-28 17:05:42 -0800335 DEBUGFS_ADD(channel_type);
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100336 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
337 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
Jiri Bence9f207f2007-05-05 11:46:38 -0700338}
339
340static void add_monitor_files(struct ieee80211_sub_if_data *sdata)
341{
Ben Greear4914b3b2011-01-27 22:09:34 -0800342 DEBUGFS_ADD(flags);
343 DEBUGFS_ADD(state);
Ben Greear0fa025f2011-01-28 17:05:42 -0800344 DEBUGFS_ADD(channel_type);
Jiri Bence9f207f2007-05-05 11:46:38 -0700345}
346
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100347#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100348
349static void add_mesh_stats(struct ieee80211_sub_if_data *sdata)
350{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100351 struct dentry *dir = debugfs_create_dir("mesh_stats",
352 sdata->debugfs.dir);
353
354#define MESHSTATS_ADD(name)\
355 debugfs_create_file(#name, 0400, dir, sdata, &name##_ops);
356
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700357 MESHSTATS_ADD(fwded_mcast);
358 MESHSTATS_ADD(fwded_unicast);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100359 MESHSTATS_ADD(fwded_frames);
360 MESHSTATS_ADD(dropped_frames_ttl);
361 MESHSTATS_ADD(dropped_frames_no_route);
362 MESHSTATS_ADD(estab_plinks);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100363#undef MESHSTATS_ADD
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100364}
365
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100366static void add_mesh_config(struct ieee80211_sub_if_data *sdata)
367{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100368 struct dentry *dir = debugfs_create_dir("mesh_config",
369 sdata->debugfs.dir);
370
371#define MESHPARAMS_ADD(name) \
372 debugfs_create_file(#name, 0600, dir, sdata, &name##_ops);
373
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100374 MESHPARAMS_ADD(dot11MeshMaxRetries);
375 MESHPARAMS_ADD(dot11MeshRetryTimeout);
376 MESHPARAMS_ADD(dot11MeshConfirmTimeout);
377 MESHPARAMS_ADD(dot11MeshHoldingTimeout);
378 MESHPARAMS_ADD(dot11MeshTTL);
Javier Cardona45904f22010-12-03 09:20:40 +0100379 MESHPARAMS_ADD(element_ttl);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100380 MESHPARAMS_ADD(auto_open_plinks);
381 MESHPARAMS_ADD(dot11MeshMaxPeerLinks);
382 MESHPARAMS_ADD(dot11MeshHWMPactivePathTimeout);
383 MESHPARAMS_ADD(dot11MeshHWMPpreqMinInterval);
384 MESHPARAMS_ADD(dot11MeshHWMPnetDiameterTraversalTime);
385 MESHPARAMS_ADD(dot11MeshHWMPmaxPREQretries);
386 MESHPARAMS_ADD(path_refresh_time);
387 MESHPARAMS_ADD(min_discovery_timeout);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100388
389#undef MESHPARAMS_ADD
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100390}
391#endif
392
Jiri Bence9f207f2007-05-05 11:46:38 -0700393static void add_files(struct ieee80211_sub_if_data *sdata)
394{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100395 if (!sdata->debugfs.dir)
Jiri Bence9f207f2007-05-05 11:46:38 -0700396 return;
397
Johannes Berg51fb61e2007-12-19 01:31:27 +0100398 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200399 case NL80211_IFTYPE_MESH_POINT:
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100400#ifdef CONFIG_MAC80211_MESH
401 add_mesh_stats(sdata);
402 add_mesh_config(sdata);
403#endif
Johannes Berg472dbc42008-09-11 00:01:49 +0200404 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200405 case NL80211_IFTYPE_STATION:
Jiri Bence9f207f2007-05-05 11:46:38 -0700406 add_sta_files(sdata);
407 break;
Johannes Berg46900292009-02-15 12:44:28 +0100408 case NL80211_IFTYPE_ADHOC:
409 /* XXX */
410 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200411 case NL80211_IFTYPE_AP:
Jiri Bence9f207f2007-05-05 11:46:38 -0700412 add_ap_files(sdata);
413 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200414 case NL80211_IFTYPE_WDS:
Jiri Bence9f207f2007-05-05 11:46:38 -0700415 add_wds_files(sdata);
416 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200417 case NL80211_IFTYPE_MONITOR:
Jiri Bence9f207f2007-05-05 11:46:38 -0700418 add_monitor_files(sdata);
419 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200420 case NL80211_IFTYPE_AP_VLAN:
Jiri Bence9f207f2007-05-05 11:46:38 -0700421 add_vlan_files(sdata);
422 break;
423 default:
424 break;
425 }
426}
427
Jiri Bence9f207f2007-05-05 11:46:38 -0700428void ieee80211_debugfs_add_netdev(struct ieee80211_sub_if_data *sdata)
429{
430 char buf[10+IFNAMSIZ];
431
Johannes Berg47846c92009-11-25 17:46:19 +0100432 sprintf(buf, "netdev:%s", sdata->name);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100433 sdata->debugfs.dir = debugfs_create_dir(buf,
Jiri Bence9f207f2007-05-05 11:46:38 -0700434 sdata->local->hw.wiphy->debugfsdir);
Ben Greear295bafb2010-09-22 20:29:01 -0700435 if (sdata->debugfs.dir)
436 sdata->debugfs.subdir_stations = debugfs_create_dir("stations",
437 sdata->debugfs.dir);
Johannes Berg75636522008-07-09 14:40:35 +0200438 add_files(sdata);
Jiri Bence9f207f2007-05-05 11:46:38 -0700439}
440
441void ieee80211_debugfs_remove_netdev(struct ieee80211_sub_if_data *sdata)
442{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100443 if (!sdata->debugfs.dir)
444 return;
445
446 debugfs_remove_recursive(sdata->debugfs.dir);
447 sdata->debugfs.dir = NULL;
Jiri Bence9f207f2007-05-05 11:46:38 -0700448}
449
Johannes Berg47846c92009-11-25 17:46:19 +0100450void ieee80211_debugfs_rename_netdev(struct ieee80211_sub_if_data *sdata)
Jiri Bence9f207f2007-05-05 11:46:38 -0700451{
Johannes Berg7c8081e2007-06-21 18:30:19 +0200452 struct dentry *dir;
Johannes Berg47846c92009-11-25 17:46:19 +0100453 char buf[10 + IFNAMSIZ];
Johannes Berg3e122be2008-07-09 14:40:34 +0200454
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100455 dir = sdata->debugfs.dir;
Johannes Bergc74e90a2008-10-08 10:18:36 +0200456
457 if (!dir)
Johannes Berg47846c92009-11-25 17:46:19 +0100458 return;
Johannes Bergc74e90a2008-10-08 10:18:36 +0200459
Johannes Berg47846c92009-11-25 17:46:19 +0100460 sprintf(buf, "netdev:%s", sdata->name);
Johannes Berg7c8081e2007-06-21 18:30:19 +0200461 if (!debugfs_rename(dir->d_parent, dir, dir->d_parent, buf))
462 printk(KERN_ERR "mac80211: debugfs: failed to rename debugfs "
463 "dir to %s\n", buf);
Jiri Bence9f207f2007-05-05 11:46:38 -0700464}