blob: 8efd17c52f65c5307b6136f14fcd94e2def45b2b [file] [log] [blame]
Jouni Malinenff1d2762005-05-12 22:54:16 -04001/* /proc routines for Host AP driver */
2
Adrian Bunk5fad5a22006-01-14 03:09:34 +01003#include <linux/types.h>
4#include <linux/proc_fs.h>
Paul Gortmakeree40fa02011-05-27 16:14:23 -04005#include <linux/export.h>
John W. Linville274bfb82008-10-29 11:35:05 -04006#include <net/lib80211.h>
Adrian Bunk5fad5a22006-01-14 03:09:34 +01007
8#include "hostap_wlan.h"
9#include "hostap.h"
10
Jouni Malinenff1d2762005-05-12 22:54:16 -040011#define PROC_LIMIT (PAGE_SIZE - 80)
12
13
14#ifndef PRISM2_NO_PROCFS_DEBUG
David Howells6bbefe82013-04-10 21:13:23 +010015static int prism2_debug_proc_show(struct seq_file *m, void *v)
Jouni Malinenff1d2762005-05-12 22:54:16 -040016{
David Howells6bbefe82013-04-10 21:13:23 +010017 local_info_t *local = m->private;
Jouni Malinenff1d2762005-05-12 22:54:16 -040018 int i;
19
David Howells6bbefe82013-04-10 21:13:23 +010020 seq_printf(m, "next_txfid=%d next_alloc=%d\n",
21 local->next_txfid, local->next_alloc);
Jouni Malinenff1d2762005-05-12 22:54:16 -040022 for (i = 0; i < PRISM2_TXFID_COUNT; i++)
David Howells6bbefe82013-04-10 21:13:23 +010023 seq_printf(m, "FID: tx=%04X intransmit=%04X\n",
24 local->txfid[i], local->intransmitfid[i]);
25 seq_printf(m, "FW TX rate control: %d\n", local->fw_tx_rate_control);
26 seq_printf(m, "beacon_int=%d\n", local->beacon_int);
27 seq_printf(m, "dtim_period=%d\n", local->dtim_period);
28 seq_printf(m, "wds_max_connections=%d\n", local->wds_max_connections);
29 seq_printf(m, "dev_enabled=%d\n", local->dev_enabled);
30 seq_printf(m, "sw_tick_stuck=%d\n", local->sw_tick_stuck);
Jouni Malinenff1d2762005-05-12 22:54:16 -040031 for (i = 0; i < WEP_KEYS; i++) {
John W. Linville274bfb82008-10-29 11:35:05 -040032 if (local->crypt_info.crypt[i] &&
33 local->crypt_info.crypt[i]->ops) {
David Howells6bbefe82013-04-10 21:13:23 +010034 seq_printf(m, "crypt[%d]=%s\n", i,
35 local->crypt_info.crypt[i]->ops->name);
Jouni Malinenff1d2762005-05-12 22:54:16 -040036 }
37 }
David Howells6bbefe82013-04-10 21:13:23 +010038 seq_printf(m, "pri_only=%d\n", local->pri_only);
39 seq_printf(m, "pci=%d\n", local->func->hw_type == HOSTAP_HW_PCI);
40 seq_printf(m, "sram_type=%d\n", local->sram_type);
41 seq_printf(m, "no_pri=%d\n", local->no_pri);
Jouni Malinenff1d2762005-05-12 22:54:16 -040042
David Howells6bbefe82013-04-10 21:13:23 +010043 return 0;
Jouni Malinenff1d2762005-05-12 22:54:16 -040044}
David Howells6bbefe82013-04-10 21:13:23 +010045
46static int prism2_debug_proc_open(struct inode *inode, struct file *file)
47{
48 return single_open(file, prism2_debug_proc_show, PDE_DATA(inode));
49}
50
51static const struct file_operations prism2_debug_proc_fops = {
52 .open = prism2_debug_proc_open,
53 .read = seq_read,
54 .llseek = seq_lseek,
Al Virobc3041f2013-05-05 00:13:20 -040055 .release = single_release,
David Howells6bbefe82013-04-10 21:13:23 +010056};
Jouni Malinenff1d2762005-05-12 22:54:16 -040057#endif /* PRISM2_NO_PROCFS_DEBUG */
58
59
David Howells6bbefe82013-04-10 21:13:23 +010060static int prism2_stats_proc_show(struct seq_file *m, void *v)
Jouni Malinenff1d2762005-05-12 22:54:16 -040061{
David Howells6bbefe82013-04-10 21:13:23 +010062 local_info_t *local = m->private;
Joe Perches2c208892012-06-04 12:44:17 +000063 struct comm_tallies_sums *sums = &local->comm_tallies;
Jouni Malinenff1d2762005-05-12 22:54:16 -040064
David Howells6bbefe82013-04-10 21:13:23 +010065 seq_printf(m, "TxUnicastFrames=%u\n", sums->tx_unicast_frames);
66 seq_printf(m, "TxMulticastframes=%u\n", sums->tx_multicast_frames);
67 seq_printf(m, "TxFragments=%u\n", sums->tx_fragments);
68 seq_printf(m, "TxUnicastOctets=%u\n", sums->tx_unicast_octets);
69 seq_printf(m, "TxMulticastOctets=%u\n", sums->tx_multicast_octets);
70 seq_printf(m, "TxDeferredTransmissions=%u\n",
71 sums->tx_deferred_transmissions);
72 seq_printf(m, "TxSingleRetryFrames=%u\n", sums->tx_single_retry_frames);
73 seq_printf(m, "TxMultipleRetryFrames=%u\n",
74 sums->tx_multiple_retry_frames);
75 seq_printf(m, "TxRetryLimitExceeded=%u\n",
76 sums->tx_retry_limit_exceeded);
77 seq_printf(m, "TxDiscards=%u\n", sums->tx_discards);
78 seq_printf(m, "RxUnicastFrames=%u\n", sums->rx_unicast_frames);
79 seq_printf(m, "RxMulticastFrames=%u\n", sums->rx_multicast_frames);
80 seq_printf(m, "RxFragments=%u\n", sums->rx_fragments);
81 seq_printf(m, "RxUnicastOctets=%u\n", sums->rx_unicast_octets);
82 seq_printf(m, "RxMulticastOctets=%u\n", sums->rx_multicast_octets);
83 seq_printf(m, "RxFCSErrors=%u\n", sums->rx_fcs_errors);
84 seq_printf(m, "RxDiscardsNoBuffer=%u\n", sums->rx_discards_no_buffer);
85 seq_printf(m, "TxDiscardsWrongSA=%u\n", sums->tx_discards_wrong_sa);
86 seq_printf(m, "RxDiscardsWEPUndecryptable=%u\n",
87 sums->rx_discards_wep_undecryptable);
88 seq_printf(m, "RxMessageInMsgFragments=%u\n",
89 sums->rx_message_in_msg_fragments);
90 seq_printf(m, "RxMessageInBadMsgFragments=%u\n",
91 sums->rx_message_in_bad_msg_fragments);
Jouni Malinenff1d2762005-05-12 22:54:16 -040092 /* FIX: this may grow too long for one page(?) */
93
David Howells6bbefe82013-04-10 21:13:23 +010094 return 0;
Jouni Malinenff1d2762005-05-12 22:54:16 -040095}
96
David Howells6bbefe82013-04-10 21:13:23 +010097static int prism2_stats_proc_open(struct inode *inode, struct file *file)
Jouni Malinenff1d2762005-05-12 22:54:16 -040098{
David Howells6bbefe82013-04-10 21:13:23 +010099 return single_open(file, prism2_stats_proc_show, PDE_DATA(inode));
100}
101
102static const struct file_operations prism2_stats_proc_fops = {
103 .open = prism2_stats_proc_open,
104 .read = seq_read,
105 .llseek = seq_lseek,
Al Virobc3041f2013-05-05 00:13:20 -0400106 .release = single_release,
David Howells6bbefe82013-04-10 21:13:23 +0100107};
108
109
110static int prism2_wds_proc_show(struct seq_file *m, void *v)
111{
112 struct list_head *ptr = v;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400113 struct hostap_interface *iface;
114
David Howells6bbefe82013-04-10 21:13:23 +0100115 iface = list_entry(ptr, struct hostap_interface, list);
116 if (iface->type == HOSTAP_INTERFACE_WDS)
117 seq_printf(m, "%s\t%pM\n",
118 iface->dev->name, iface->u.wds.remote_addr);
119 return 0;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400120}
121
David Howells6bbefe82013-04-10 21:13:23 +0100122static void *prism2_wds_proc_start(struct seq_file *m, loff_t *_pos)
Jouni Malinenff1d2762005-05-12 22:54:16 -0400123{
David Howells6bbefe82013-04-10 21:13:23 +0100124 local_info_t *local = m->private;
125 read_lock_bh(&local->iface_lock);
126 return seq_list_start(&local->hostap_interfaces, *_pos);
127}
128
129static void *prism2_wds_proc_next(struct seq_file *m, void *v, loff_t *_pos)
130{
131 local_info_t *local = m->private;
132 return seq_list_next(v, &local->hostap_interfaces, _pos);
133}
134
135static void prism2_wds_proc_stop(struct seq_file *m, void *v)
136{
137 local_info_t *local = m->private;
138 read_unlock_bh(&local->iface_lock);
139}
140
141static const struct seq_operations prism2_wds_proc_seqops = {
142 .start = prism2_wds_proc_start,
143 .next = prism2_wds_proc_next,
144 .stop = prism2_wds_proc_stop,
145 .show = prism2_wds_proc_show,
146};
147
148static int prism2_wds_proc_open(struct inode *inode, struct file *file)
149{
150 int ret = seq_open(file, &prism2_wds_proc_seqops);
151 if (ret == 0) {
152 struct seq_file *m = file->private_data;
153 m->private = PDE_DATA(inode);
154 }
155 return ret;
156}
157
158static const struct file_operations prism2_wds_proc_fops = {
159 .open = prism2_wds_proc_open,
160 .read = seq_read,
161 .llseek = seq_lseek,
162 .release = seq_release,
163};
164
165
166static int prism2_bss_list_proc_show(struct seq_file *m, void *v)
167{
168 local_info_t *local = m->private;
169 struct list_head *ptr = v;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400170 struct hostap_bss_info *bss;
171 int i;
172
David Howells6bbefe82013-04-10 21:13:23 +0100173 if (ptr == &local->bss_list) {
174 seq_printf(m, "#BSSID\tlast_update\tcount\tcapab_info\tSSID(txt)\t"
175 "SSID(hex)\tWPA IE\n");
Jouni Malinenff1d2762005-05-12 22:54:16 -0400176 return 0;
177 }
178
David Howells6bbefe82013-04-10 21:13:23 +0100179 bss = list_entry(ptr, struct hostap_bss_info, list);
180 seq_printf(m, "%pM\t%lu\t%u\t0x%x\t",
181 bss->bssid, bss->last_update,
182 bss->count, bss->capab_info);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400183
David Howells6bbefe82013-04-10 21:13:23 +0100184 for (i = 0; i < bss->ssid_len; i++)
185 seq_putc(m,bss->ssid[i] >= 32 && bss->ssid[i] < 127 ?
186 bss->ssid[i] : '_');
Jouni Malinenff1d2762005-05-12 22:54:16 -0400187
David Howells6bbefe82013-04-10 21:13:23 +0100188 seq_putc(m, '\t');
Andy Shevchenko62c5afb2014-09-05 17:30:16 +0300189 seq_printf(m, "%*phN", (int)bss->ssid_len, bss->ssid);
David Howells6bbefe82013-04-10 21:13:23 +0100190 seq_putc(m, '\t');
Andy Shevchenko62c5afb2014-09-05 17:30:16 +0300191 seq_printf(m, "%*phN", (int)bss->wpa_ie_len, bss->wpa_ie);
David Howells6bbefe82013-04-10 21:13:23 +0100192 seq_putc(m, '\n');
193 return 0;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400194}
195
David Howells6bbefe82013-04-10 21:13:23 +0100196static void *prism2_bss_list_proc_start(struct seq_file *m, loff_t *_pos)
Jouni Malinenff1d2762005-05-12 22:54:16 -0400197{
David Howells6bbefe82013-04-10 21:13:23 +0100198 local_info_t *local = m->private;
199 spin_lock_bh(&local->lock);
200 return seq_list_start_head(&local->bss_list, *_pos);
201}
202
203static void *prism2_bss_list_proc_next(struct seq_file *m, void *v, loff_t *_pos)
204{
205 local_info_t *local = m->private;
206 return seq_list_next(v, &local->bss_list, _pos);
207}
208
209static void prism2_bss_list_proc_stop(struct seq_file *m, void *v)
210{
211 local_info_t *local = m->private;
212 spin_unlock_bh(&local->lock);
213}
214
215static const struct seq_operations prism2_bss_list_proc_seqops = {
216 .start = prism2_bss_list_proc_start,
217 .next = prism2_bss_list_proc_next,
218 .stop = prism2_bss_list_proc_stop,
219 .show = prism2_bss_list_proc_show,
220};
221
222static int prism2_bss_list_proc_open(struct inode *inode, struct file *file)
223{
224 int ret = seq_open(file, &prism2_bss_list_proc_seqops);
225 if (ret == 0) {
226 struct seq_file *m = file->private_data;
227 m->private = PDE_DATA(inode);
228 }
229 return ret;
230}
231
232static const struct file_operations prism2_bss_list_proc_fops = {
233 .open = prism2_bss_list_proc_open,
234 .read = seq_read,
235 .llseek = seq_lseek,
236 .release = seq_release,
237};
238
239
240static int prism2_crypt_proc_show(struct seq_file *m, void *v)
241{
242 local_info_t *local = m->private;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400243 int i;
244
David Howells6bbefe82013-04-10 21:13:23 +0100245 seq_printf(m, "tx_keyidx=%d\n", local->crypt_info.tx_keyidx);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400246 for (i = 0; i < WEP_KEYS; i++) {
John W. Linville274bfb82008-10-29 11:35:05 -0400247 if (local->crypt_info.crypt[i] &&
248 local->crypt_info.crypt[i]->ops &&
249 local->crypt_info.crypt[i]->ops->print_stats) {
David Howells6bbefe82013-04-10 21:13:23 +0100250 local->crypt_info.crypt[i]->ops->print_stats(
251 m, local->crypt_info.crypt[i]->priv);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400252 }
253 }
David Howells6bbefe82013-04-10 21:13:23 +0100254 return 0;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400255}
256
David Howells6bbefe82013-04-10 21:13:23 +0100257static int prism2_crypt_proc_open(struct inode *inode, struct file *file)
Jouni Malinenff1d2762005-05-12 22:54:16 -0400258{
David Howells6bbefe82013-04-10 21:13:23 +0100259 return single_open(file, prism2_crypt_proc_show, PDE_DATA(inode));
260}
Jouni Malinenff1d2762005-05-12 22:54:16 -0400261
David Howells6bbefe82013-04-10 21:13:23 +0100262static const struct file_operations prism2_crypt_proc_fops = {
263 .open = prism2_crypt_proc_open,
264 .read = seq_read,
265 .llseek = seq_lseek,
Al Virobc3041f2013-05-05 00:13:20 -0400266 .release = single_release,
David Howells6bbefe82013-04-10 21:13:23 +0100267};
268
269
270static ssize_t prism2_pda_proc_read(struct file *file, char __user *buf,
271 size_t count, loff_t *_pos)
272{
273 local_info_t *local = PDE_DATA(file_inode(file));
274 size_t off;
275
276 if (local->pda == NULL || *_pos >= PRISM2_PDA_SIZE)
Jouni Malinenff1d2762005-05-12 22:54:16 -0400277 return 0;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400278
David Howells6bbefe82013-04-10 21:13:23 +0100279 off = *_pos;
280 if (count > PRISM2_PDA_SIZE - off)
Jouni Malinenff1d2762005-05-12 22:54:16 -0400281 count = PRISM2_PDA_SIZE - off;
David Howells6bbefe82013-04-10 21:13:23 +0100282 if (copy_to_user(buf, local->pda + off, count) != 0)
283 return -EFAULT;
284 *_pos += count;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400285 return count;
286}
287
David Howells6bbefe82013-04-10 21:13:23 +0100288static const struct file_operations prism2_pda_proc_fops = {
289 .read = prism2_pda_proc_read,
290 .llseek = generic_file_llseek,
291};
Jouni Malinenff1d2762005-05-12 22:54:16 -0400292
David Howells6bbefe82013-04-10 21:13:23 +0100293
294static ssize_t prism2_aux_dump_proc_no_read(struct file *file, char __user *buf,
295 size_t bufsize, loff_t *_pos)
Jouni Malinenff1d2762005-05-12 22:54:16 -0400296{
David Howells6bbefe82013-04-10 21:13:23 +0100297 return 0;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400298}
299
David Howells6bbefe82013-04-10 21:13:23 +0100300static const struct file_operations prism2_aux_dump_proc_fops = {
301 .read = prism2_aux_dump_proc_no_read,
302};
303
Jouni Malinenff1d2762005-05-12 22:54:16 -0400304
305#ifdef PRISM2_IO_DEBUG
306static int prism2_io_debug_proc_read(char *page, char **start, off_t off,
307 int count, int *eof, void *data)
308{
309 local_info_t *local = (local_info_t *) data;
310 int head = local->io_debug_head;
311 int start_bytes, left, copy, copied;
312
313 if (off + count > PRISM2_IO_DEBUG_SIZE * 4) {
314 *eof = 1;
315 if (off >= PRISM2_IO_DEBUG_SIZE * 4)
316 return 0;
317 count = PRISM2_IO_DEBUG_SIZE * 4 - off;
318 }
319
320 copied = 0;
321 start_bytes = (PRISM2_IO_DEBUG_SIZE - head) * 4;
322 left = count;
323
324 if (off < start_bytes) {
325 copy = start_bytes - off;
326 if (copy > count)
327 copy = count;
328 memcpy(page, ((u8 *) &local->io_debug[head]) + off, copy);
329 left -= copy;
330 if (left > 0)
331 memcpy(&page[copy], local->io_debug, left);
332 } else {
333 memcpy(page, ((u8 *) local->io_debug) + (off - start_bytes),
334 left);
335 }
336
337 *start = page;
338
339 return count;
340}
341#endif /* PRISM2_IO_DEBUG */
342
343
344#ifndef PRISM2_NO_STATION_MODES
David Howells6bbefe82013-04-10 21:13:23 +0100345static int prism2_scan_results_proc_show(struct seq_file *m, void *v)
Jouni Malinenff1d2762005-05-12 22:54:16 -0400346{
David Howells6bbefe82013-04-10 21:13:23 +0100347 local_info_t *local = m->private;
348 unsigned long entry;
349 int i, len;
Jouni Malinen2e4fd062005-07-30 12:50:02 -0700350 struct hfa384x_hostscan_result *scanres;
David Howells6bbefe82013-04-10 21:13:23 +0100351 u8 *p;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400352
David Howells6bbefe82013-04-10 21:13:23 +0100353 if (v == SEQ_START_TOKEN) {
354 seq_printf(m,
355 "CHID ANL SL BcnInt Capab Rate BSSID ATIM SupRates SSID\n");
Jouni Malinenff1d2762005-05-12 22:54:16 -0400356 return 0;
357 }
358
David Howells6bbefe82013-04-10 21:13:23 +0100359 entry = (unsigned long)v - 2;
360 scanres = &local->last_scan_results[entry];
Jouni Malinenff1d2762005-05-12 22:54:16 -0400361
David Howells6bbefe82013-04-10 21:13:23 +0100362 seq_printf(m, "%d %d %d %d 0x%02x %d %pM %d ",
363 le16_to_cpu(scanres->chid),
364 (s16) le16_to_cpu(scanres->anl),
365 (s16) le16_to_cpu(scanres->sl),
366 le16_to_cpu(scanres->beacon_interval),
367 le16_to_cpu(scanres->capability),
368 le16_to_cpu(scanres->rate),
369 scanres->bssid,
370 le16_to_cpu(scanres->atim));
371
372 p = scanres->sup_rates;
373 for (i = 0; i < sizeof(scanres->sup_rates); i++) {
374 if (p[i] == 0)
375 break;
376 seq_printf(m, "<%02x>", p[i]);
377 }
378 seq_putc(m, ' ');
379
380 p = scanres->ssid;
381 len = le16_to_cpu(scanres->ssid_len);
382 if (len > 32)
383 len = 32;
384 for (i = 0; i < len; i++) {
385 unsigned char c = p[i];
386 if (c >= 32 && c < 127)
387 seq_putc(m, c);
388 else
389 seq_printf(m, "<%02x>", c);
390 }
391 seq_putc(m, '\n');
392 return 0;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400393}
David Howells6bbefe82013-04-10 21:13:23 +0100394
395static void *prism2_scan_results_proc_start(struct seq_file *m, loff_t *_pos)
396{
397 local_info_t *local = m->private;
398 spin_lock_bh(&local->lock);
399
400 /* We have a header (pos 0) + N results to show (pos 1...N) */
401 if (*_pos > local->last_scan_results_count)
402 return NULL;
403 return (void *)(unsigned long)(*_pos + 1); /* 0 would be EOF */
404}
405
406static void *prism2_scan_results_proc_next(struct seq_file *m, void *v, loff_t *_pos)
407{
408 local_info_t *local = m->private;
409
410 ++*_pos;
411 if (*_pos > local->last_scan_results_count)
412 return NULL;
413 return (void *)(unsigned long)(*_pos + 1); /* 0 would be EOF */
414}
415
416static void prism2_scan_results_proc_stop(struct seq_file *m, void *v)
417{
418 local_info_t *local = m->private;
419 spin_unlock_bh(&local->lock);
420}
421
422static const struct seq_operations prism2_scan_results_proc_seqops = {
423 .start = prism2_scan_results_proc_start,
424 .next = prism2_scan_results_proc_next,
425 .stop = prism2_scan_results_proc_stop,
426 .show = prism2_scan_results_proc_show,
427};
428
429static int prism2_scan_results_proc_open(struct inode *inode, struct file *file)
430{
431 int ret = seq_open(file, &prism2_scan_results_proc_seqops);
432 if (ret == 0) {
433 struct seq_file *m = file->private_data;
434 m->private = PDE_DATA(inode);
435 }
436 return ret;
437}
438
439static const struct file_operations prism2_scan_results_proc_fops = {
440 .open = prism2_scan_results_proc_open,
441 .read = seq_read,
442 .llseek = seq_lseek,
443 .release = seq_release,
444};
445
446
Jouni Malinenff1d2762005-05-12 22:54:16 -0400447#endif /* PRISM2_NO_STATION_MODES */
448
449
450void hostap_init_proc(local_info_t *local)
451{
452 local->proc = NULL;
453
454 if (hostap_proc == NULL) {
455 printk(KERN_WARNING "%s: hostap proc directory not created\n",
456 local->dev->name);
457 return;
458 }
459
460 local->proc = proc_mkdir(local->ddev->name, hostap_proc);
461 if (local->proc == NULL) {
462 printk(KERN_INFO "/proc/net/hostap/%s creation failed\n",
463 local->ddev->name);
464 return;
465 }
466
467#ifndef PRISM2_NO_PROCFS_DEBUG
David Howells6bbefe82013-04-10 21:13:23 +0100468 proc_create_data("debug", 0, local->proc,
469 &prism2_debug_proc_fops, local);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400470#endif /* PRISM2_NO_PROCFS_DEBUG */
David Howells6bbefe82013-04-10 21:13:23 +0100471 proc_create_data("stats", 0, local->proc,
472 &prism2_stats_proc_fops, local);
473 proc_create_data("wds", 0, local->proc,
474 &prism2_wds_proc_fops, local);
475 proc_create_data("pda", 0, local->proc,
476 &prism2_pda_proc_fops, local);
477 proc_create_data("aux_dump", 0, local->proc,
478 local->func->read_aux_fops ?: &prism2_aux_dump_proc_fops,
479 local);
480 proc_create_data("bss_list", 0, local->proc,
481 &prism2_bss_list_proc_fops, local);
482 proc_create_data("crypt", 0, local->proc,
483 &prism2_crypt_proc_fops, local);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400484#ifdef PRISM2_IO_DEBUG
David Howells6bbefe82013-04-10 21:13:23 +0100485 proc_create_data("io_debug", 0, local->proc,
486 &prism2_io_debug_proc_fops, local);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400487#endif /* PRISM2_IO_DEBUG */
488#ifndef PRISM2_NO_STATION_MODES
David Howells6bbefe82013-04-10 21:13:23 +0100489 proc_create_data("scan_results", 0, local->proc,
490 &prism2_scan_results_proc_fops, local);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400491#endif /* PRISM2_NO_STATION_MODES */
492}
493
494
495void hostap_remove_proc(local_info_t *local)
496{
Russell King - ARM Linux4885c872014-02-12 22:38:17 +0000497 proc_remove(local->proc);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400498}
499
500
501EXPORT_SYMBOL(hostap_init_proc);
502EXPORT_SYMBOL(hostap_remove_proc);