New: mac80211 stack from the wireless-dev tree
[openwrt.git] / package / mac80211 / src / mac80211 / debugfs_sta.c
1 /*
2  * Copyright 2003-2005  Devicescape Software, Inc.
3  * Copyright (c) 2006   Jiri Benc <jbenc@suse.cz>
4  * Copyright 2007       Johannes Berg <johannes@sipsolutions.net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  */
10
11 #include <linux/debugfs.h>
12 #include <linux/ieee80211.h>
13 #include "ieee80211_i.h"
14 #include "debugfs.h"
15 #include "debugfs_sta.h"
16 #include "sta_info.h"
17
18 /* sta attributtes */
19
20 #define STA_READ(name, buflen, field, format_string)                    \
21 static ssize_t sta_ ##name## _read(struct file *file,                   \
22                                    char __user *userbuf,                \
23                                    size_t count, loff_t *ppos)          \
24 {                                                                       \
25         int res;                                                        \
26         struct sta_info *sta = file->private_data;                      \
27         char buf[buflen];                                               \
28         res = scnprintf(buf, buflen, format_string, sta->field);        \
29         return simple_read_from_buffer(userbuf, count, ppos, buf, res); \
30 }
31 #define STA_READ_D(name, field) STA_READ(name, 20, field, "%d\n")
32 #define STA_READ_U(name, field) STA_READ(name, 20, field, "%u\n")
33 #define STA_READ_LU(name, field) STA_READ(name, 20, field, "%lu\n")
34 #define STA_READ_S(name, field) STA_READ(name, 20, field, "%s\n")
35
36 #define STA_READ_RATE(name, field)                                      \
37 static ssize_t sta_##name##_read(struct file *file,                     \
38                                  char __user *userbuf,                  \
39                                  size_t count, loff_t *ppos)            \
40 {                                                                       \
41         struct sta_info *sta = file->private_data;                      \
42         struct ieee80211_local *local = wdev_priv(sta->dev->ieee80211_ptr);\
43         struct ieee80211_hw_mode *mode = local->oper_hw_mode;           \
44         char buf[20];                                                   \
45         int res = scnprintf(buf, sizeof(buf), "%d\n",                   \
46                             (sta->field >= 0 &&                         \
47                             sta->field < mode->num_rates) ?             \
48                             mode->rates[sta->field].rate : -1);         \
49         return simple_read_from_buffer(userbuf, count, ppos, buf, res); \
50 }
51
52 #define STA_OPS(name)                                                   \
53 static const struct file_operations sta_ ##name## _ops = {              \
54         .read = sta_##name##_read,                                      \
55         .open = mac80211_open_file_generic,                             \
56 }
57
58 #define STA_FILE(name, field, format)                                   \
59                 STA_READ_##format(name, field)                          \
60                 STA_OPS(name)
61
62 STA_FILE(aid, aid, D);
63 STA_FILE(key_idx_compression, key_idx_compression, D);
64 STA_FILE(dev, dev->name, S);
65 STA_FILE(vlan_id, vlan_id, D);
66 STA_FILE(rx_packets, rx_packets, LU);
67 STA_FILE(tx_packets, tx_packets, LU);
68 STA_FILE(rx_bytes, rx_bytes, LU);
69 STA_FILE(tx_bytes, tx_bytes, LU);
70 STA_FILE(rx_duplicates, num_duplicates, LU);
71 STA_FILE(rx_fragments, rx_fragments, LU);
72 STA_FILE(rx_dropped, rx_dropped, LU);
73 STA_FILE(tx_fragments, tx_fragments, LU);
74 STA_FILE(tx_filtered, tx_filtered_count, LU);
75 STA_FILE(txrate, txrate, RATE);
76 STA_FILE(last_txrate, last_txrate, RATE);
77 STA_FILE(tx_retry_failed, tx_retry_failed, LU);
78 STA_FILE(tx_retry_count, tx_retry_count, LU);
79 STA_FILE(last_rssi, last_rssi, D);
80 STA_FILE(last_signal, last_signal, D);
81 STA_FILE(last_noise, last_noise, D);
82 STA_FILE(channel_use, channel_use, D);
83 STA_FILE(wep_weak_iv_count, wep_weak_iv_count, D);
84
85 static ssize_t sta_flags_read(struct file *file, char __user *userbuf,
86                               size_t count, loff_t *ppos)
87 {
88         char buf[100];
89         struct sta_info *sta = file->private_data;
90         int res = scnprintf(buf, sizeof(buf), "%s%s%s%s%s%s%s%s%s%s",
91                 sta->flags & WLAN_STA_AUTH ? "AUTH\n" : "",
92                 sta->flags & WLAN_STA_ASSOC ? "ASSOC\n" : "",
93                 sta->flags & WLAN_STA_PS ? "PS\n" : "",
94                 sta->flags & WLAN_STA_TIM ? "TIM\n" : "",
95                 sta->flags & WLAN_STA_PERM ? "PERM\n" : "",
96                 sta->flags & WLAN_STA_AUTHORIZED ? "AUTHORIZED\n" : "",
97                 sta->flags & WLAN_STA_SHORT_PREAMBLE ? "SHORT PREAMBLE\n" : "",
98                 sta->flags & WLAN_STA_WME ? "WME\n" : "",
99                 sta->flags & WLAN_STA_HT ? "HT\n" : "",
100                 sta->flags & WLAN_STA_WDS ? "WDS\n" : "");
101         return simple_read_from_buffer(userbuf, count, ppos, buf, res);
102 }
103 STA_OPS(flags);
104
105 static ssize_t sta_num_ps_buf_frames_read(struct file *file,
106                                           char __user *userbuf,
107                                           size_t count, loff_t *ppos)
108 {
109         char buf[20];
110         struct sta_info *sta = file->private_data;
111         int res = scnprintf(buf, sizeof(buf), "%u\n",
112                             skb_queue_len(&sta->ps_tx_buf));
113         return simple_read_from_buffer(userbuf, count, ppos, buf, res);
114 }
115 STA_OPS(num_ps_buf_frames);
116
117 static ssize_t sta_last_ack_rssi_read(struct file *file, char __user *userbuf,
118                                       size_t count, loff_t *ppos)
119 {
120         char buf[100];
121         struct sta_info *sta = file->private_data;
122         int res = scnprintf(buf, sizeof(buf), "%d %d %d\n",
123                             sta->last_ack_rssi[0],
124                             sta->last_ack_rssi[1],
125                             sta->last_ack_rssi[2]);
126         return simple_read_from_buffer(userbuf, count, ppos, buf, res);
127 }
128 STA_OPS(last_ack_rssi);
129
130 static ssize_t sta_last_ack_ms_read(struct file *file, char __user *userbuf,
131                                     size_t count, loff_t *ppos)
132 {
133         char buf[20];
134         struct sta_info *sta = file->private_data;
135         int res = scnprintf(buf, sizeof(buf), "%d\n",
136                             sta->last_ack ?
137                             jiffies_to_msecs(jiffies - sta->last_ack) : -1);
138         return simple_read_from_buffer(userbuf, count, ppos, buf, res);
139 }
140 STA_OPS(last_ack_ms);
141
142 static ssize_t sta_inactive_ms_read(struct file *file, char __user *userbuf,
143                                     size_t count, loff_t *ppos)
144 {
145         char buf[20];
146         struct sta_info *sta = file->private_data;
147         int res = scnprintf(buf, sizeof(buf), "%d\n",
148                             jiffies_to_msecs(jiffies - sta->last_rx));
149         return simple_read_from_buffer(userbuf, count, ppos, buf, res);
150 }
151 STA_OPS(inactive_ms);
152
153 static ssize_t sta_last_seq_ctrl_read(struct file *file, char __user *userbuf,
154                                       size_t count, loff_t *ppos)
155 {
156         char buf[15*NUM_RX_DATA_QUEUES], *p = buf;
157         int i;
158         struct sta_info *sta = file->private_data;
159         for (i = 0; i < NUM_RX_DATA_QUEUES; i++)
160                 p += scnprintf(p, sizeof(buf)+buf-p, "%x ",
161                                sta->last_seq_ctrl[i]);
162         p += scnprintf(p, sizeof(buf)+buf-p, "\n");
163         return simple_read_from_buffer(userbuf, count, ppos, buf, p - buf);
164 }
165 STA_OPS(last_seq_ctrl);
166
167 #ifdef CONFIG_MAC80211_DEBUG_COUNTERS
168 static ssize_t sta_wme_rx_queue_read(struct file *file, char __user *userbuf,
169                                      size_t count, loff_t *ppos)
170 {
171         char buf[15*NUM_RX_DATA_QUEUES], *p = buf;
172         int i;
173         struct sta_info *sta = file->private_data;
174         for (i = 0; i < NUM_RX_DATA_QUEUES; i++)
175                 p += scnprintf(p, sizeof(buf)+buf-p, "%u ",
176                                sta->wme_rx_queue[i]);
177         p += scnprintf(p, sizeof(buf)+buf-p, "\n");
178         return simple_read_from_buffer(userbuf, count, ppos, buf, p - buf);
179 }
180 STA_OPS(wme_rx_queue);
181
182 static ssize_t sta_wme_tx_queue_read(struct file *file, char __user *userbuf,
183                                      size_t count, loff_t *ppos)
184 {
185         char buf[15*NUM_TX_DATA_QUEUES], *p = buf;
186         int i;
187         struct sta_info *sta = file->private_data;
188         for (i = 0; i < NUM_TX_DATA_QUEUES; i++)
189                 p += scnprintf(p, sizeof(buf)+buf-p, "%u ",
190                                sta->wme_tx_queue[i]);
191         p += scnprintf(p, sizeof(buf)+buf-p, "\n");
192         return simple_read_from_buffer(userbuf, count, ppos, buf, p - buf);
193 }
194 STA_OPS(wme_tx_queue);
195 #endif
196
197 #define DEBUGFS_ADD(name) \
198         sta->debugfs.name = debugfs_create_file(#name, 0444, \
199                 sta->debugfs.dir, sta, &sta_ ##name## _ops);
200
201 #define DEBUGFS_DEL(name) \
202         debugfs_remove(sta->debugfs.name);\
203         sta->debugfs.name = NULL;
204
205
206 void ieee80211_sta_debugfs_add(struct sta_info *sta)
207 {
208         char buf[3*6];
209         struct dentry *stations_dir = sta->local->debugfs.stations;
210
211         if (!stations_dir)
212                 return;
213
214         sprintf(buf, MAC_FMT, MAC_ARG(sta->addr));
215
216         sta->debugfs.dir = debugfs_create_dir(buf, stations_dir);
217         if (!sta->debugfs.dir)
218                 return;
219
220         DEBUGFS_ADD(flags);
221         DEBUGFS_ADD(num_ps_buf_frames);
222         DEBUGFS_ADD(last_ack_rssi);
223         DEBUGFS_ADD(last_ack_ms);
224         DEBUGFS_ADD(inactive_ms);
225         DEBUGFS_ADD(last_seq_ctrl);
226 #ifdef CONFIG_MAC80211_DEBUG_COUNTERS
227         DEBUGFS_ADD(wme_rx_queue);
228         DEBUGFS_ADD(wme_tx_queue);
229 #endif
230 }
231
232 void ieee80211_sta_debugfs_remove(struct sta_info *sta)
233 {
234         DEBUGFS_DEL(flags);
235         DEBUGFS_DEL(num_ps_buf_frames);
236         DEBUGFS_DEL(last_ack_rssi);
237         DEBUGFS_DEL(last_ack_ms);
238         DEBUGFS_DEL(inactive_ms);
239         DEBUGFS_DEL(last_seq_ctrl);
240 #ifdef CONFIG_MAC80211_DEBUG_COUNTERS
241         DEBUGFS_DEL(wme_rx_queue);
242         DEBUGFS_DEL(wme_tx_queue);
243 #endif
244
245         debugfs_remove(sta->debugfs.dir);
246         sta->debugfs.dir = NULL;
247 }