blob: ee61a9f6fabc7d1d5503c2dcda150c928d024ca9 [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;
51 ssize_t ret = -ENODEV;
52
53 buf = kzalloc(count, GFP_KERNEL);
54 if (!buf)
55 return -ENOMEM;
56
57 if (copy_from_user(buf, userbuf, count))
58 return -EFAULT;
59
60 rtnl_lock();
61 if (sdata->dev->reg_state == NETREG_REGISTERED)
62 ret = (*write)(sdata, buf, count);
63 rtnl_unlock();
64
65 return ret;
66}
67
Jiri Bence9f207f2007-05-05 11:46:38 -070068#define IEEE80211_IF_FMT(name, field, format_string) \
69static ssize_t ieee80211_if_fmt_##name( \
70 const struct ieee80211_sub_if_data *sdata, char *buf, \
71 int buflen) \
72{ \
73 return scnprintf(buf, buflen, format_string, sdata->field); \
74}
75#define IEEE80211_IF_FMT_DEC(name, field) \
76 IEEE80211_IF_FMT(name, field, "%d\n")
77#define IEEE80211_IF_FMT_HEX(name, field) \
78 IEEE80211_IF_FMT(name, field, "%#x\n")
79#define IEEE80211_IF_FMT_SIZE(name, field) \
80 IEEE80211_IF_FMT(name, field, "%zd\n")
81
82#define IEEE80211_IF_FMT_ATOMIC(name, field) \
83static ssize_t ieee80211_if_fmt_##name( \
84 const struct ieee80211_sub_if_data *sdata, \
85 char *buf, int buflen) \
86{ \
87 return scnprintf(buf, buflen, "%d\n", atomic_read(&sdata->field));\
88}
89
90#define IEEE80211_IF_FMT_MAC(name, field) \
91static ssize_t ieee80211_if_fmt_##name( \
92 const struct ieee80211_sub_if_data *sdata, char *buf, \
93 int buflen) \
94{ \
Johannes Berg0c68ae262008-10-27 15:56:10 -070095 return scnprintf(buf, buflen, "%pM\n", sdata->field); \
Jiri Bence9f207f2007-05-05 11:46:38 -070096}
97
Jouni Malinen17e4ec12010-03-29 23:28:30 -070098#define IEEE80211_IF_FMT_DEC_DIV_16(name, field) \
99static ssize_t ieee80211_if_fmt_##name( \
100 const struct ieee80211_sub_if_data *sdata, \
101 char *buf, int buflen) \
102{ \
103 return scnprintf(buf, buflen, "%d\n", sdata->field / 16); \
104}
105
Johannes Berg0f782312009-12-01 13:37:02 +0100106#define __IEEE80211_IF_FILE(name, _write) \
Jiri Bence9f207f2007-05-05 11:46:38 -0700107static ssize_t ieee80211_if_read_##name(struct file *file, \
108 char __user *userbuf, \
109 size_t count, loff_t *ppos) \
110{ \
111 return ieee80211_if_read(file->private_data, \
112 userbuf, count, ppos, \
113 ieee80211_if_fmt_##name); \
114} \
115static const struct file_operations name##_ops = { \
116 .read = ieee80211_if_read_##name, \
Johannes Berg0f782312009-12-01 13:37:02 +0100117 .write = (_write), \
Jiri Bence9f207f2007-05-05 11:46:38 -0700118 .open = mac80211_open_file_generic, \
119}
120
Johannes Berg0f782312009-12-01 13:37:02 +0100121#define __IEEE80211_IF_FILE_W(name) \
122static ssize_t ieee80211_if_write_##name(struct file *file, \
123 const char __user *userbuf, \
124 size_t count, loff_t *ppos) \
125{ \
126 return ieee80211_if_write(file->private_data, userbuf, count, \
127 ppos, ieee80211_if_parse_##name); \
128} \
129__IEEE80211_IF_FILE(name, ieee80211_if_write_##name)
130
131
Jiri Bence9f207f2007-05-05 11:46:38 -0700132#define IEEE80211_IF_FILE(name, field, format) \
133 IEEE80211_IF_FMT_##format(name, field) \
Johannes Berg0f782312009-12-01 13:37:02 +0100134 __IEEE80211_IF_FILE(name, NULL)
Jiri Bence9f207f2007-05-05 11:46:38 -0700135
136/* common attributes */
Jiri Bence9f207f2007-05-05 11:46:38 -0700137IEEE80211_IF_FILE(drop_unencrypted, drop_unencrypted, DEC);
Jouni Malinen37eb0b12010-01-06 13:09:08 +0200138IEEE80211_IF_FILE(rc_rateidx_mask_2ghz, rc_rateidx_mask[IEEE80211_BAND_2GHZ],
139 HEX);
140IEEE80211_IF_FILE(rc_rateidx_mask_5ghz, rc_rateidx_mask[IEEE80211_BAND_5GHZ],
141 HEX);
Jiri Bence9f207f2007-05-05 11:46:38 -0700142
Johannes Berg46900292009-02-15 12:44:28 +0100143/* STA attributes */
Johannes Berg46900292009-02-15 12:44:28 +0100144IEEE80211_IF_FILE(bssid, u.mgd.bssid, MAC);
Johannes Berg46900292009-02-15 12:44:28 +0100145IEEE80211_IF_FILE(aid, u.mgd.aid, DEC);
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700146IEEE80211_IF_FILE(last_beacon, u.mgd.last_beacon_signal, DEC);
147IEEE80211_IF_FILE(ave_beacon, u.mgd.ave_beacon_signal, DEC_DIV_16);
Jiri Bence9f207f2007-05-05 11:46:38 -0700148
Johannes Berg0f782312009-12-01 13:37:02 +0100149static int ieee80211_set_smps(struct ieee80211_sub_if_data *sdata,
150 enum ieee80211_smps_mode smps_mode)
151{
152 struct ieee80211_local *local = sdata->local;
153 int err;
154
155 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_STATIC_SMPS) &&
156 smps_mode == IEEE80211_SMPS_STATIC)
157 return -EINVAL;
158
159 /* auto should be dynamic if in PS mode */
160 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS) &&
161 (smps_mode == IEEE80211_SMPS_DYNAMIC ||
162 smps_mode == IEEE80211_SMPS_AUTOMATIC))
163 return -EINVAL;
164
165 /* supported only on managed interfaces for now */
166 if (sdata->vif.type != NL80211_IFTYPE_STATION)
167 return -EOPNOTSUPP;
168
169 mutex_lock(&local->iflist_mtx);
170 err = __ieee80211_request_smps(sdata, smps_mode);
171 mutex_unlock(&local->iflist_mtx);
172
173 return err;
174}
175
176static const char *smps_modes[IEEE80211_SMPS_NUM_MODES] = {
177 [IEEE80211_SMPS_AUTOMATIC] = "auto",
178 [IEEE80211_SMPS_OFF] = "off",
179 [IEEE80211_SMPS_STATIC] = "static",
180 [IEEE80211_SMPS_DYNAMIC] = "dynamic",
181};
182
183static ssize_t ieee80211_if_fmt_smps(const struct ieee80211_sub_if_data *sdata,
184 char *buf, int buflen)
185{
186 if (sdata->vif.type != NL80211_IFTYPE_STATION)
187 return -EOPNOTSUPP;
188
189 return snprintf(buf, buflen, "request: %s\nused: %s\n",
190 smps_modes[sdata->u.mgd.req_smps],
191 smps_modes[sdata->u.mgd.ap_smps]);
192}
193
194static ssize_t ieee80211_if_parse_smps(struct ieee80211_sub_if_data *sdata,
195 const char *buf, int buflen)
196{
197 enum ieee80211_smps_mode mode;
198
199 for (mode = 0; mode < IEEE80211_SMPS_NUM_MODES; mode++) {
200 if (strncmp(buf, smps_modes[mode], buflen) == 0) {
201 int err = ieee80211_set_smps(sdata, mode);
202 if (!err)
203 return buflen;
204 return err;
205 }
206 }
207
208 return -EINVAL;
209}
210
211__IEEE80211_IF_FILE_W(smps);
212
Jiri Bence9f207f2007-05-05 11:46:38 -0700213/* AP attributes */
214IEEE80211_IF_FILE(num_sta_ps, u.ap.num_sta_ps, ATOMIC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700215IEEE80211_IF_FILE(dtim_count, u.ap.dtim_count, DEC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700216
217static ssize_t ieee80211_if_fmt_num_buffered_multicast(
218 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
219{
220 return scnprintf(buf, buflen, "%u\n",
221 skb_queue_len(&sdata->u.ap.ps_bc_buf));
222}
Johannes Berg0f782312009-12-01 13:37:02 +0100223__IEEE80211_IF_FILE(num_buffered_multicast, NULL);
Jiri Bence9f207f2007-05-05 11:46:38 -0700224
Jiri Bence9f207f2007-05-05 11:46:38 -0700225/* WDS attributes */
226IEEE80211_IF_FILE(peer, u.wds.remote_addr, MAC);
227
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100228#ifdef CONFIG_MAC80211_MESH
229/* Mesh stats attributes */
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700230IEEE80211_IF_FILE(fwded_mcast, u.mesh.mshstats.fwded_mcast, DEC);
231IEEE80211_IF_FILE(fwded_unicast, u.mesh.mshstats.fwded_unicast, DEC);
Johannes Berg472dbc42008-09-11 00:01:49 +0200232IEEE80211_IF_FILE(fwded_frames, u.mesh.mshstats.fwded_frames, DEC);
233IEEE80211_IF_FILE(dropped_frames_ttl, u.mesh.mshstats.dropped_frames_ttl, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100234IEEE80211_IF_FILE(dropped_frames_no_route,
Johannes Berg472dbc42008-09-11 00:01:49 +0200235 u.mesh.mshstats.dropped_frames_no_route, DEC);
236IEEE80211_IF_FILE(estab_plinks, u.mesh.mshstats.estab_plinks, ATOMIC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100237
238/* Mesh parameters */
Johannes Berg36ff3822008-10-07 12:04:31 +0200239IEEE80211_IF_FILE(dot11MeshMaxRetries,
240 u.mesh.mshcfg.dot11MeshMaxRetries, DEC);
241IEEE80211_IF_FILE(dot11MeshRetryTimeout,
242 u.mesh.mshcfg.dot11MeshRetryTimeout, DEC);
243IEEE80211_IF_FILE(dot11MeshConfirmTimeout,
244 u.mesh.mshcfg.dot11MeshConfirmTimeout, DEC);
245IEEE80211_IF_FILE(dot11MeshHoldingTimeout,
246 u.mesh.mshcfg.dot11MeshHoldingTimeout, DEC);
247IEEE80211_IF_FILE(dot11MeshTTL, u.mesh.mshcfg.dot11MeshTTL, DEC);
248IEEE80211_IF_FILE(auto_open_plinks, u.mesh.mshcfg.auto_open_plinks, DEC);
249IEEE80211_IF_FILE(dot11MeshMaxPeerLinks,
250 u.mesh.mshcfg.dot11MeshMaxPeerLinks, DEC);
251IEEE80211_IF_FILE(dot11MeshHWMPactivePathTimeout,
252 u.mesh.mshcfg.dot11MeshHWMPactivePathTimeout, DEC);
253IEEE80211_IF_FILE(dot11MeshHWMPpreqMinInterval,
254 u.mesh.mshcfg.dot11MeshHWMPpreqMinInterval, DEC);
255IEEE80211_IF_FILE(dot11MeshHWMPnetDiameterTraversalTime,
256 u.mesh.mshcfg.dot11MeshHWMPnetDiameterTraversalTime, DEC);
257IEEE80211_IF_FILE(dot11MeshHWMPmaxPREQretries,
258 u.mesh.mshcfg.dot11MeshHWMPmaxPREQretries, DEC);
259IEEE80211_IF_FILE(path_refresh_time,
260 u.mesh.mshcfg.path_refresh_time, DEC);
261IEEE80211_IF_FILE(min_discovery_timeout,
262 u.mesh.mshcfg.min_discovery_timeout, DEC);
Rui Paulo63c57232009-11-09 23:46:57 +0000263IEEE80211_IF_FILE(dot11MeshHWMPRootMode,
264 u.mesh.mshcfg.dot11MeshHWMPRootMode, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100265#endif
266
267
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100268#define DEBUGFS_ADD(name) \
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100269 debugfs_create_file(#name, 0400, sdata->debugfs.dir, \
270 sdata, &name##_ops);
Jiri Bence9f207f2007-05-05 11:46:38 -0700271
Johannes Berg0f782312009-12-01 13:37:02 +0100272#define DEBUGFS_ADD_MODE(name, mode) \
273 debugfs_create_file(#name, mode, sdata->debugfs.dir, \
274 sdata, &name##_ops);
275
Jiri Bence9f207f2007-05-05 11:46:38 -0700276static void add_sta_files(struct ieee80211_sub_if_data *sdata)
277{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100278 DEBUGFS_ADD(drop_unencrypted);
279 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
280 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
Johannes Berg3e122be2008-07-09 14:40:34 +0200281
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100282 DEBUGFS_ADD(bssid);
283 DEBUGFS_ADD(aid);
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700284 DEBUGFS_ADD(last_beacon);
285 DEBUGFS_ADD(ave_beacon);
Johannes Berg0f782312009-12-01 13:37:02 +0100286 DEBUGFS_ADD_MODE(smps, 0600);
Jiri Bence9f207f2007-05-05 11:46:38 -0700287}
288
289static void add_ap_files(struct ieee80211_sub_if_data *sdata)
290{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100291 DEBUGFS_ADD(drop_unencrypted);
292 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
293 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
Johannes Berg3e122be2008-07-09 14:40:34 +0200294
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100295 DEBUGFS_ADD(num_sta_ps);
296 DEBUGFS_ADD(dtim_count);
297 DEBUGFS_ADD(num_buffered_multicast);
Jiri Bence9f207f2007-05-05 11:46:38 -0700298}
299
300static void add_wds_files(struct ieee80211_sub_if_data *sdata)
301{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100302 DEBUGFS_ADD(drop_unencrypted);
303 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
304 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
Johannes Berg3e122be2008-07-09 14:40:34 +0200305
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100306 DEBUGFS_ADD(peer);
Jiri Bence9f207f2007-05-05 11:46:38 -0700307}
308
309static void add_vlan_files(struct ieee80211_sub_if_data *sdata)
310{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100311 DEBUGFS_ADD(drop_unencrypted);
312 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
313 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
Jiri Bence9f207f2007-05-05 11:46:38 -0700314}
315
316static void add_monitor_files(struct ieee80211_sub_if_data *sdata)
317{
Jiri Bence9f207f2007-05-05 11:46:38 -0700318}
319
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100320#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100321
322static void add_mesh_stats(struct ieee80211_sub_if_data *sdata)
323{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100324 struct dentry *dir = debugfs_create_dir("mesh_stats",
325 sdata->debugfs.dir);
326
327#define MESHSTATS_ADD(name)\
328 debugfs_create_file(#name, 0400, dir, sdata, &name##_ops);
329
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700330 MESHSTATS_ADD(fwded_mcast);
331 MESHSTATS_ADD(fwded_unicast);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100332 MESHSTATS_ADD(fwded_frames);
333 MESHSTATS_ADD(dropped_frames_ttl);
334 MESHSTATS_ADD(dropped_frames_no_route);
335 MESHSTATS_ADD(estab_plinks);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100336#undef MESHSTATS_ADD
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100337}
338
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100339static void add_mesh_config(struct ieee80211_sub_if_data *sdata)
340{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100341 struct dentry *dir = debugfs_create_dir("mesh_config",
342 sdata->debugfs.dir);
343
344#define MESHPARAMS_ADD(name) \
345 debugfs_create_file(#name, 0600, dir, sdata, &name##_ops);
346
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100347 MESHPARAMS_ADD(dot11MeshMaxRetries);
348 MESHPARAMS_ADD(dot11MeshRetryTimeout);
349 MESHPARAMS_ADD(dot11MeshConfirmTimeout);
350 MESHPARAMS_ADD(dot11MeshHoldingTimeout);
351 MESHPARAMS_ADD(dot11MeshTTL);
352 MESHPARAMS_ADD(auto_open_plinks);
353 MESHPARAMS_ADD(dot11MeshMaxPeerLinks);
354 MESHPARAMS_ADD(dot11MeshHWMPactivePathTimeout);
355 MESHPARAMS_ADD(dot11MeshHWMPpreqMinInterval);
356 MESHPARAMS_ADD(dot11MeshHWMPnetDiameterTraversalTime);
357 MESHPARAMS_ADD(dot11MeshHWMPmaxPREQretries);
358 MESHPARAMS_ADD(path_refresh_time);
359 MESHPARAMS_ADD(min_discovery_timeout);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100360
361#undef MESHPARAMS_ADD
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100362}
363#endif
364
Jiri Bence9f207f2007-05-05 11:46:38 -0700365static void add_files(struct ieee80211_sub_if_data *sdata)
366{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100367 if (!sdata->debugfs.dir)
Jiri Bence9f207f2007-05-05 11:46:38 -0700368 return;
369
Johannes Berg51fb61e2007-12-19 01:31:27 +0100370 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200371 case NL80211_IFTYPE_MESH_POINT:
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100372#ifdef CONFIG_MAC80211_MESH
373 add_mesh_stats(sdata);
374 add_mesh_config(sdata);
375#endif
Johannes Berg472dbc42008-09-11 00:01:49 +0200376 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200377 case NL80211_IFTYPE_STATION:
Jiri Bence9f207f2007-05-05 11:46:38 -0700378 add_sta_files(sdata);
379 break;
Johannes Berg46900292009-02-15 12:44:28 +0100380 case NL80211_IFTYPE_ADHOC:
381 /* XXX */
382 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200383 case NL80211_IFTYPE_AP:
Jiri Bence9f207f2007-05-05 11:46:38 -0700384 add_ap_files(sdata);
385 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200386 case NL80211_IFTYPE_WDS:
Jiri Bence9f207f2007-05-05 11:46:38 -0700387 add_wds_files(sdata);
388 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200389 case NL80211_IFTYPE_MONITOR:
Jiri Bence9f207f2007-05-05 11:46:38 -0700390 add_monitor_files(sdata);
391 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200392 case NL80211_IFTYPE_AP_VLAN:
Jiri Bence9f207f2007-05-05 11:46:38 -0700393 add_vlan_files(sdata);
394 break;
395 default:
396 break;
397 }
398}
399
Jiri Bence9f207f2007-05-05 11:46:38 -0700400void ieee80211_debugfs_add_netdev(struct ieee80211_sub_if_data *sdata)
401{
402 char buf[10+IFNAMSIZ];
403
Johannes Berg47846c92009-11-25 17:46:19 +0100404 sprintf(buf, "netdev:%s", sdata->name);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100405 sdata->debugfs.dir = debugfs_create_dir(buf,
Jiri Bence9f207f2007-05-05 11:46:38 -0700406 sdata->local->hw.wiphy->debugfsdir);
Johannes Berg75636522008-07-09 14:40:35 +0200407 add_files(sdata);
Jiri Bence9f207f2007-05-05 11:46:38 -0700408}
409
410void ieee80211_debugfs_remove_netdev(struct ieee80211_sub_if_data *sdata)
411{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100412 if (!sdata->debugfs.dir)
413 return;
414
415 debugfs_remove_recursive(sdata->debugfs.dir);
416 sdata->debugfs.dir = NULL;
Jiri Bence9f207f2007-05-05 11:46:38 -0700417}
418
Johannes Berg47846c92009-11-25 17:46:19 +0100419void ieee80211_debugfs_rename_netdev(struct ieee80211_sub_if_data *sdata)
Jiri Bence9f207f2007-05-05 11:46:38 -0700420{
Johannes Berg7c8081e2007-06-21 18:30:19 +0200421 struct dentry *dir;
Johannes Berg47846c92009-11-25 17:46:19 +0100422 char buf[10 + IFNAMSIZ];
Johannes Berg3e122be2008-07-09 14:40:34 +0200423
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100424 dir = sdata->debugfs.dir;
Johannes Bergc74e90a2008-10-08 10:18:36 +0200425
426 if (!dir)
Johannes Berg47846c92009-11-25 17:46:19 +0100427 return;
Johannes Bergc74e90a2008-10-08 10:18:36 +0200428
Johannes Berg47846c92009-11-25 17:46:19 +0100429 sprintf(buf, "netdev:%s", sdata->name);
Johannes Berg7c8081e2007-06-21 18:30:19 +0200430 if (!debugfs_rename(dir->d_parent, dir, dir->d_parent, buf))
431 printk(KERN_ERR "mac80211: debugfs: failed to rename debugfs "
432 "dir to %s\n", buf);
Jiri Bence9f207f2007-05-05 11:46:38 -0700433}