blob: 623e6644b80c964e0fed21f7199f5c7f4c60d7cc [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>
16#include <linux/notifier.h>
17#include <net/mac80211.h>
18#include <net/cfg80211.h>
19#include "ieee80211_i.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040020#include "rate.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070021#include "debugfs.h"
22#include "debugfs_netdev.h"
23
24static ssize_t ieee80211_if_read(
25 struct ieee80211_sub_if_data *sdata,
26 char __user *userbuf,
27 size_t count, loff_t *ppos,
28 ssize_t (*format)(const struct ieee80211_sub_if_data *, char *, int))
29{
30 char buf[70];
31 ssize_t ret = -EINVAL;
32
33 read_lock(&dev_base_lock);
Luis Carlos Cobo73bb3e42008-03-31 15:10:22 -070034 if (sdata->dev->reg_state == NETREG_REGISTERED)
Jiri Bence9f207f2007-05-05 11:46:38 -070035 ret = (*format)(sdata, buf, sizeof(buf));
Jiri Bence9f207f2007-05-05 11:46:38 -070036 read_unlock(&dev_base_lock);
Luis Carlos Cobo73bb3e42008-03-31 15:10:22 -070037
38 if (ret != -EINVAL)
39 ret = simple_read_from_buffer(userbuf, count, ppos, buf, ret);
40
Jiri Bence9f207f2007-05-05 11:46:38 -070041 return ret;
42}
43
Johannes Berg0f782312009-12-01 13:37:02 +010044static ssize_t ieee80211_if_write(
45 struct ieee80211_sub_if_data *sdata,
46 const char __user *userbuf,
47 size_t count, loff_t *ppos,
48 ssize_t (*write)(struct ieee80211_sub_if_data *, const char *, int))
49{
50 u8 *buf;
Eric Dumazet51f5f8c2010-03-10 17:13:36 +010051 ssize_t ret;
Johannes Berg0f782312009-12-01 13:37:02 +010052
Eric Dumazet51f5f8c2010-03-10 17:13:36 +010053 buf = kmalloc(count, GFP_KERNEL);
Johannes Berg0f782312009-12-01 13:37:02 +010054 if (!buf)
55 return -ENOMEM;
56
Eric Dumazet51f5f8c2010-03-10 17:13:36 +010057 ret = -EFAULT;
Johannes Berg0f782312009-12-01 13:37:02 +010058 if (copy_from_user(buf, userbuf, count))
Eric Dumazet51f5f8c2010-03-10 17:13:36 +010059 goto freebuf;
Johannes Berg0f782312009-12-01 13:37:02 +010060
Eric Dumazet51f5f8c2010-03-10 17:13:36 +010061 ret = -ENODEV;
Johannes Berg0f782312009-12-01 13:37:02 +010062 rtnl_lock();
63 if (sdata->dev->reg_state == NETREG_REGISTERED)
64 ret = (*write)(sdata, buf, count);
65 rtnl_unlock();
66
Eric Dumazet51f5f8c2010-03-10 17:13:36 +010067freebuf:
68 kfree(buf);
Johannes Berg0f782312009-12-01 13:37:02 +010069 return ret;
70}
71
Jiri Bence9f207f2007-05-05 11:46:38 -070072#define IEEE80211_IF_FMT(name, field, format_string) \
73static ssize_t ieee80211_if_fmt_##name( \
74 const struct ieee80211_sub_if_data *sdata, char *buf, \
75 int buflen) \
76{ \
77 return scnprintf(buf, buflen, format_string, sdata->field); \
78}
79#define IEEE80211_IF_FMT_DEC(name, field) \
80 IEEE80211_IF_FMT(name, field, "%d\n")
81#define IEEE80211_IF_FMT_HEX(name, field) \
82 IEEE80211_IF_FMT(name, field, "%#x\n")
83#define IEEE80211_IF_FMT_SIZE(name, field) \
84 IEEE80211_IF_FMT(name, field, "%zd\n")
85
86#define IEEE80211_IF_FMT_ATOMIC(name, field) \
87static ssize_t ieee80211_if_fmt_##name( \
88 const struct ieee80211_sub_if_data *sdata, \
89 char *buf, int buflen) \
90{ \
91 return scnprintf(buf, buflen, "%d\n", atomic_read(&sdata->field));\
92}
93
94#define IEEE80211_IF_FMT_MAC(name, field) \
95static ssize_t ieee80211_if_fmt_##name( \
96 const struct ieee80211_sub_if_data *sdata, char *buf, \
97 int buflen) \
98{ \
Johannes Berg0c68ae262008-10-27 15:56:10 -070099 return scnprintf(buf, buflen, "%pM\n", sdata->field); \
Jiri Bence9f207f2007-05-05 11:46:38 -0700100}
101
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700102#define IEEE80211_IF_FMT_DEC_DIV_16(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", sdata->field / 16); \
108}
109
Johannes Berg0f782312009-12-01 13:37:02 +0100110#define __IEEE80211_IF_FILE(name, _write) \
Jiri Bence9f207f2007-05-05 11:46:38 -0700111static ssize_t ieee80211_if_read_##name(struct file *file, \
112 char __user *userbuf, \
113 size_t count, loff_t *ppos) \
114{ \
115 return ieee80211_if_read(file->private_data, \
116 userbuf, count, ppos, \
117 ieee80211_if_fmt_##name); \
118} \
119static const struct file_operations name##_ops = { \
120 .read = ieee80211_if_read_##name, \
Johannes Berg0f782312009-12-01 13:37:02 +0100121 .write = (_write), \
Jiri Bence9f207f2007-05-05 11:46:38 -0700122 .open = mac80211_open_file_generic, \
123}
124
Johannes Berg0f782312009-12-01 13:37:02 +0100125#define __IEEE80211_IF_FILE_W(name) \
126static ssize_t ieee80211_if_write_##name(struct file *file, \
127 const char __user *userbuf, \
128 size_t count, loff_t *ppos) \
129{ \
130 return ieee80211_if_write(file->private_data, userbuf, count, \
131 ppos, ieee80211_if_parse_##name); \
132} \
133__IEEE80211_IF_FILE(name, ieee80211_if_write_##name)
134
135
Jiri Bence9f207f2007-05-05 11:46:38 -0700136#define IEEE80211_IF_FILE(name, field, format) \
137 IEEE80211_IF_FMT_##format(name, field) \
Johannes Berg0f782312009-12-01 13:37:02 +0100138 __IEEE80211_IF_FILE(name, NULL)
Jiri Bence9f207f2007-05-05 11:46:38 -0700139
140/* common attributes */
Jiri Bence9f207f2007-05-05 11:46:38 -0700141IEEE80211_IF_FILE(drop_unencrypted, drop_unencrypted, DEC);
Jouni Malinen37eb0b12010-01-06 13:09:08 +0200142IEEE80211_IF_FILE(rc_rateidx_mask_2ghz, rc_rateidx_mask[IEEE80211_BAND_2GHZ],
143 HEX);
144IEEE80211_IF_FILE(rc_rateidx_mask_5ghz, rc_rateidx_mask[IEEE80211_BAND_5GHZ],
145 HEX);
Jiri Bence9f207f2007-05-05 11:46:38 -0700146
Johannes Berg46900292009-02-15 12:44:28 +0100147/* STA attributes */
Johannes Berg46900292009-02-15 12:44:28 +0100148IEEE80211_IF_FILE(bssid, u.mgd.bssid, MAC);
Johannes Berg46900292009-02-15 12:44:28 +0100149IEEE80211_IF_FILE(aid, u.mgd.aid, DEC);
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700150IEEE80211_IF_FILE(last_beacon, u.mgd.last_beacon_signal, DEC);
151IEEE80211_IF_FILE(ave_beacon, u.mgd.ave_beacon_signal, DEC_DIV_16);
Jiri Bence9f207f2007-05-05 11:46:38 -0700152
Johannes Berg0f782312009-12-01 13:37:02 +0100153static int ieee80211_set_smps(struct ieee80211_sub_if_data *sdata,
154 enum ieee80211_smps_mode smps_mode)
155{
156 struct ieee80211_local *local = sdata->local;
157 int err;
158
159 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_STATIC_SMPS) &&
160 smps_mode == IEEE80211_SMPS_STATIC)
161 return -EINVAL;
162
163 /* auto should be dynamic if in PS mode */
164 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS) &&
165 (smps_mode == IEEE80211_SMPS_DYNAMIC ||
166 smps_mode == IEEE80211_SMPS_AUTOMATIC))
167 return -EINVAL;
168
169 /* supported only on managed interfaces for now */
170 if (sdata->vif.type != NL80211_IFTYPE_STATION)
171 return -EOPNOTSUPP;
172
173 mutex_lock(&local->iflist_mtx);
174 err = __ieee80211_request_smps(sdata, smps_mode);
175 mutex_unlock(&local->iflist_mtx);
176
177 return err;
178}
179
180static const char *smps_modes[IEEE80211_SMPS_NUM_MODES] = {
181 [IEEE80211_SMPS_AUTOMATIC] = "auto",
182 [IEEE80211_SMPS_OFF] = "off",
183 [IEEE80211_SMPS_STATIC] = "static",
184 [IEEE80211_SMPS_DYNAMIC] = "dynamic",
185};
186
187static ssize_t ieee80211_if_fmt_smps(const struct ieee80211_sub_if_data *sdata,
188 char *buf, int buflen)
189{
190 if (sdata->vif.type != NL80211_IFTYPE_STATION)
191 return -EOPNOTSUPP;
192
193 return snprintf(buf, buflen, "request: %s\nused: %s\n",
194 smps_modes[sdata->u.mgd.req_smps],
195 smps_modes[sdata->u.mgd.ap_smps]);
196}
197
198static ssize_t ieee80211_if_parse_smps(struct ieee80211_sub_if_data *sdata,
199 const char *buf, int buflen)
200{
201 enum ieee80211_smps_mode mode;
202
203 for (mode = 0; mode < IEEE80211_SMPS_NUM_MODES; mode++) {
204 if (strncmp(buf, smps_modes[mode], buflen) == 0) {
205 int err = ieee80211_set_smps(sdata, mode);
206 if (!err)
207 return buflen;
208 return err;
209 }
210 }
211
212 return -EINVAL;
213}
214
215__IEEE80211_IF_FILE_W(smps);
216
Jiri Bence9f207f2007-05-05 11:46:38 -0700217/* AP attributes */
218IEEE80211_IF_FILE(num_sta_ps, u.ap.num_sta_ps, ATOMIC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700219IEEE80211_IF_FILE(dtim_count, u.ap.dtim_count, DEC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700220
221static ssize_t ieee80211_if_fmt_num_buffered_multicast(
222 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
223{
224 return scnprintf(buf, buflen, "%u\n",
225 skb_queue_len(&sdata->u.ap.ps_bc_buf));
226}
Johannes Berg0f782312009-12-01 13:37:02 +0100227__IEEE80211_IF_FILE(num_buffered_multicast, NULL);
Jiri Bence9f207f2007-05-05 11:46:38 -0700228
Jiri Bence9f207f2007-05-05 11:46:38 -0700229/* WDS attributes */
230IEEE80211_IF_FILE(peer, u.wds.remote_addr, MAC);
231
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100232#ifdef CONFIG_MAC80211_MESH
233/* Mesh stats attributes */
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700234IEEE80211_IF_FILE(fwded_mcast, u.mesh.mshstats.fwded_mcast, DEC);
235IEEE80211_IF_FILE(fwded_unicast, u.mesh.mshstats.fwded_unicast, DEC);
Johannes Berg472dbc42008-09-11 00:01:49 +0200236IEEE80211_IF_FILE(fwded_frames, u.mesh.mshstats.fwded_frames, DEC);
237IEEE80211_IF_FILE(dropped_frames_ttl, u.mesh.mshstats.dropped_frames_ttl, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100238IEEE80211_IF_FILE(dropped_frames_no_route,
Johannes Berg472dbc42008-09-11 00:01:49 +0200239 u.mesh.mshstats.dropped_frames_no_route, DEC);
240IEEE80211_IF_FILE(estab_plinks, u.mesh.mshstats.estab_plinks, ATOMIC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100241
242/* Mesh parameters */
Johannes Berg36ff3822008-10-07 12:04:31 +0200243IEEE80211_IF_FILE(dot11MeshMaxRetries,
244 u.mesh.mshcfg.dot11MeshMaxRetries, DEC);
245IEEE80211_IF_FILE(dot11MeshRetryTimeout,
246 u.mesh.mshcfg.dot11MeshRetryTimeout, DEC);
247IEEE80211_IF_FILE(dot11MeshConfirmTimeout,
248 u.mesh.mshcfg.dot11MeshConfirmTimeout, DEC);
249IEEE80211_IF_FILE(dot11MeshHoldingTimeout,
250 u.mesh.mshcfg.dot11MeshHoldingTimeout, DEC);
251IEEE80211_IF_FILE(dot11MeshTTL, u.mesh.mshcfg.dot11MeshTTL, DEC);
252IEEE80211_IF_FILE(auto_open_plinks, u.mesh.mshcfg.auto_open_plinks, DEC);
253IEEE80211_IF_FILE(dot11MeshMaxPeerLinks,
254 u.mesh.mshcfg.dot11MeshMaxPeerLinks, DEC);
255IEEE80211_IF_FILE(dot11MeshHWMPactivePathTimeout,
256 u.mesh.mshcfg.dot11MeshHWMPactivePathTimeout, DEC);
257IEEE80211_IF_FILE(dot11MeshHWMPpreqMinInterval,
258 u.mesh.mshcfg.dot11MeshHWMPpreqMinInterval, DEC);
259IEEE80211_IF_FILE(dot11MeshHWMPnetDiameterTraversalTime,
260 u.mesh.mshcfg.dot11MeshHWMPnetDiameterTraversalTime, DEC);
261IEEE80211_IF_FILE(dot11MeshHWMPmaxPREQretries,
262 u.mesh.mshcfg.dot11MeshHWMPmaxPREQretries, DEC);
263IEEE80211_IF_FILE(path_refresh_time,
264 u.mesh.mshcfg.path_refresh_time, DEC);
265IEEE80211_IF_FILE(min_discovery_timeout,
266 u.mesh.mshcfg.min_discovery_timeout, DEC);
Rui Paulo63c57232009-11-09 23:46:57 +0000267IEEE80211_IF_FILE(dot11MeshHWMPRootMode,
268 u.mesh.mshcfg.dot11MeshHWMPRootMode, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100269#endif
270
271
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100272#define DEBUGFS_ADD(name) \
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100273 debugfs_create_file(#name, 0400, sdata->debugfs.dir, \
274 sdata, &name##_ops);
Jiri Bence9f207f2007-05-05 11:46:38 -0700275
Johannes Berg0f782312009-12-01 13:37:02 +0100276#define DEBUGFS_ADD_MODE(name, mode) \
277 debugfs_create_file(#name, mode, sdata->debugfs.dir, \
278 sdata, &name##_ops);
279
Jiri Bence9f207f2007-05-05 11:46:38 -0700280static void add_sta_files(struct ieee80211_sub_if_data *sdata)
281{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100282 DEBUGFS_ADD(drop_unencrypted);
283 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
284 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
Johannes Berg3e122be2008-07-09 14:40:34 +0200285
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100286 DEBUGFS_ADD(bssid);
287 DEBUGFS_ADD(aid);
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700288 DEBUGFS_ADD(last_beacon);
289 DEBUGFS_ADD(ave_beacon);
Johannes Berg0f782312009-12-01 13:37:02 +0100290 DEBUGFS_ADD_MODE(smps, 0600);
Jiri Bence9f207f2007-05-05 11:46:38 -0700291}
292
293static void add_ap_files(struct ieee80211_sub_if_data *sdata)
294{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100295 DEBUGFS_ADD(drop_unencrypted);
296 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
297 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
Johannes Berg3e122be2008-07-09 14:40:34 +0200298
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100299 DEBUGFS_ADD(num_sta_ps);
300 DEBUGFS_ADD(dtim_count);
301 DEBUGFS_ADD(num_buffered_multicast);
Jiri Bence9f207f2007-05-05 11:46:38 -0700302}
303
304static void add_wds_files(struct ieee80211_sub_if_data *sdata)
305{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100306 DEBUGFS_ADD(drop_unencrypted);
307 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
308 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
Johannes Berg3e122be2008-07-09 14:40:34 +0200309
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100310 DEBUGFS_ADD(peer);
Jiri Bence9f207f2007-05-05 11:46:38 -0700311}
312
313static void add_vlan_files(struct ieee80211_sub_if_data *sdata)
314{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100315 DEBUGFS_ADD(drop_unencrypted);
316 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
317 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
Jiri Bence9f207f2007-05-05 11:46:38 -0700318}
319
320static void add_monitor_files(struct ieee80211_sub_if_data *sdata)
321{
Jiri Bence9f207f2007-05-05 11:46:38 -0700322}
323
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100324#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100325
326static void add_mesh_stats(struct ieee80211_sub_if_data *sdata)
327{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100328 struct dentry *dir = debugfs_create_dir("mesh_stats",
329 sdata->debugfs.dir);
330
331#define MESHSTATS_ADD(name)\
332 debugfs_create_file(#name, 0400, dir, sdata, &name##_ops);
333
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700334 MESHSTATS_ADD(fwded_mcast);
335 MESHSTATS_ADD(fwded_unicast);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100336 MESHSTATS_ADD(fwded_frames);
337 MESHSTATS_ADD(dropped_frames_ttl);
338 MESHSTATS_ADD(dropped_frames_no_route);
339 MESHSTATS_ADD(estab_plinks);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100340#undef MESHSTATS_ADD
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100341}
342
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100343static void add_mesh_config(struct ieee80211_sub_if_data *sdata)
344{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100345 struct dentry *dir = debugfs_create_dir("mesh_config",
346 sdata->debugfs.dir);
347
348#define MESHPARAMS_ADD(name) \
349 debugfs_create_file(#name, 0600, dir, sdata, &name##_ops);
350
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100351 MESHPARAMS_ADD(dot11MeshMaxRetries);
352 MESHPARAMS_ADD(dot11MeshRetryTimeout);
353 MESHPARAMS_ADD(dot11MeshConfirmTimeout);
354 MESHPARAMS_ADD(dot11MeshHoldingTimeout);
355 MESHPARAMS_ADD(dot11MeshTTL);
356 MESHPARAMS_ADD(auto_open_plinks);
357 MESHPARAMS_ADD(dot11MeshMaxPeerLinks);
358 MESHPARAMS_ADD(dot11MeshHWMPactivePathTimeout);
359 MESHPARAMS_ADD(dot11MeshHWMPpreqMinInterval);
360 MESHPARAMS_ADD(dot11MeshHWMPnetDiameterTraversalTime);
361 MESHPARAMS_ADD(dot11MeshHWMPmaxPREQretries);
362 MESHPARAMS_ADD(path_refresh_time);
363 MESHPARAMS_ADD(min_discovery_timeout);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100364
365#undef MESHPARAMS_ADD
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100366}
367#endif
368
Jiri Bence9f207f2007-05-05 11:46:38 -0700369static void add_files(struct ieee80211_sub_if_data *sdata)
370{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100371 if (!sdata->debugfs.dir)
Jiri Bence9f207f2007-05-05 11:46:38 -0700372 return;
373
Johannes Berg51fb61e2007-12-19 01:31:27 +0100374 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200375 case NL80211_IFTYPE_MESH_POINT:
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100376#ifdef CONFIG_MAC80211_MESH
377 add_mesh_stats(sdata);
378 add_mesh_config(sdata);
379#endif
Johannes Berg472dbc42008-09-11 00:01:49 +0200380 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200381 case NL80211_IFTYPE_STATION:
Jiri Bence9f207f2007-05-05 11:46:38 -0700382 add_sta_files(sdata);
383 break;
Johannes Berg46900292009-02-15 12:44:28 +0100384 case NL80211_IFTYPE_ADHOC:
385 /* XXX */
386 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200387 case NL80211_IFTYPE_AP:
Jiri Bence9f207f2007-05-05 11:46:38 -0700388 add_ap_files(sdata);
389 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200390 case NL80211_IFTYPE_WDS:
Jiri Bence9f207f2007-05-05 11:46:38 -0700391 add_wds_files(sdata);
392 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200393 case NL80211_IFTYPE_MONITOR:
Jiri Bence9f207f2007-05-05 11:46:38 -0700394 add_monitor_files(sdata);
395 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200396 case NL80211_IFTYPE_AP_VLAN:
Jiri Bence9f207f2007-05-05 11:46:38 -0700397 add_vlan_files(sdata);
398 break;
399 default:
400 break;
401 }
402}
403
Jiri Bence9f207f2007-05-05 11:46:38 -0700404void ieee80211_debugfs_add_netdev(struct ieee80211_sub_if_data *sdata)
405{
406 char buf[10+IFNAMSIZ];
407
Johannes Berg47846c92009-11-25 17:46:19 +0100408 sprintf(buf, "netdev:%s", sdata->name);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100409 sdata->debugfs.dir = debugfs_create_dir(buf,
Jiri Bence9f207f2007-05-05 11:46:38 -0700410 sdata->local->hw.wiphy->debugfsdir);
Johannes Berg75636522008-07-09 14:40:35 +0200411 add_files(sdata);
Jiri Bence9f207f2007-05-05 11:46:38 -0700412}
413
414void ieee80211_debugfs_remove_netdev(struct ieee80211_sub_if_data *sdata)
415{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100416 if (!sdata->debugfs.dir)
417 return;
418
419 debugfs_remove_recursive(sdata->debugfs.dir);
420 sdata->debugfs.dir = NULL;
Jiri Bence9f207f2007-05-05 11:46:38 -0700421}
422
Johannes Berg47846c92009-11-25 17:46:19 +0100423void ieee80211_debugfs_rename_netdev(struct ieee80211_sub_if_data *sdata)
Jiri Bence9f207f2007-05-05 11:46:38 -0700424{
Johannes Berg7c8081e2007-06-21 18:30:19 +0200425 struct dentry *dir;
Johannes Berg47846c92009-11-25 17:46:19 +0100426 char buf[10 + IFNAMSIZ];
Johannes Berg3e122be2008-07-09 14:40:34 +0200427
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100428 dir = sdata->debugfs.dir;
Johannes Bergc74e90a2008-10-08 10:18:36 +0200429
430 if (!dir)
Johannes Berg47846c92009-11-25 17:46:19 +0100431 return;
Johannes Bergc74e90a2008-10-08 10:18:36 +0200432
Johannes Berg47846c92009-11-25 17:46:19 +0100433 sprintf(buf, "netdev:%s", sdata->name);
Johannes Berg7c8081e2007-06-21 18:30:19 +0200434 if (!debugfs_rename(dir->d_parent, dir, dir->d_parent, buf))
435 printk(KERN_ERR "mac80211: debugfs: failed to rename debugfs "
436 "dir to %s\n", buf);
Jiri Bence9f207f2007-05-05 11:46:38 -0700437}