Linux Audio

Check our new training course

Loading...
v4.17
  1// SPDX-License-Identifier: GPL-2.0
  2/* /proc routines for Host AP driver */
  3
  4#include <linux/types.h>
  5#include <linux/proc_fs.h>
  6#include <linux/export.h>
  7#include <net/lib80211.h>
  8
  9#include "hostap_wlan.h"
 10#include "hostap.h"
 11
 12#define PROC_LIMIT (PAGE_SIZE - 80)
 13
 14
 15#ifndef PRISM2_NO_PROCFS_DEBUG
 16static int prism2_debug_proc_show(struct seq_file *m, void *v)
 17{
 18	local_info_t *local = m->private;
 19	int i;
 20
 21	seq_printf(m, "next_txfid=%d next_alloc=%d\n",
 22		   local->next_txfid, local->next_alloc);
 23	for (i = 0; i < PRISM2_TXFID_COUNT; i++)
 24		seq_printf(m, "FID: tx=%04X intransmit=%04X\n",
 25			   local->txfid[i], local->intransmitfid[i]);
 26	seq_printf(m, "FW TX rate control: %d\n", local->fw_tx_rate_control);
 27	seq_printf(m, "beacon_int=%d\n", local->beacon_int);
 28	seq_printf(m, "dtim_period=%d\n", local->dtim_period);
 29	seq_printf(m, "wds_max_connections=%d\n", local->wds_max_connections);
 30	seq_printf(m, "dev_enabled=%d\n", local->dev_enabled);
 31	seq_printf(m, "sw_tick_stuck=%d\n", local->sw_tick_stuck);
 32	for (i = 0; i < WEP_KEYS; i++) {
 33		if (local->crypt_info.crypt[i] &&
 34		    local->crypt_info.crypt[i]->ops) {
 35			seq_printf(m, "crypt[%d]=%s\n", i,
 36				   local->crypt_info.crypt[i]->ops->name);
 37		}
 38	}
 39	seq_printf(m, "pri_only=%d\n", local->pri_only);
 40	seq_printf(m, "pci=%d\n", local->func->hw_type == HOSTAP_HW_PCI);
 41	seq_printf(m, "sram_type=%d\n", local->sram_type);
 42	seq_printf(m, "no_pri=%d\n", local->no_pri);
 43
 44	return 0;
 45}
 
 46
 47static int prism2_debug_proc_open(struct inode *inode, struct file *file)
 48{
 49	return single_open(file, prism2_debug_proc_show, PDE_DATA(inode));
 50}
 51
 52static const struct file_operations prism2_debug_proc_fops = {
 53	.open		= prism2_debug_proc_open,
 54	.read		= seq_read,
 55	.llseek		= seq_lseek,
 56	.release	= single_release,
 57};
 58#endif /* PRISM2_NO_PROCFS_DEBUG */
 59
 60
 61static int prism2_stats_proc_show(struct seq_file *m, void *v)
 62{
 63	local_info_t *local = m->private;
 64	struct comm_tallies_sums *sums = &local->comm_tallies;
 65
 66	seq_printf(m, "TxUnicastFrames=%u\n", sums->tx_unicast_frames);
 67	seq_printf(m, "TxMulticastframes=%u\n", sums->tx_multicast_frames);
 68	seq_printf(m, "TxFragments=%u\n", sums->tx_fragments);
 69	seq_printf(m, "TxUnicastOctets=%u\n", sums->tx_unicast_octets);
 70	seq_printf(m, "TxMulticastOctets=%u\n", sums->tx_multicast_octets);
 71	seq_printf(m, "TxDeferredTransmissions=%u\n",
 72		   sums->tx_deferred_transmissions);
 73	seq_printf(m, "TxSingleRetryFrames=%u\n", sums->tx_single_retry_frames);
 74	seq_printf(m, "TxMultipleRetryFrames=%u\n",
 75		   sums->tx_multiple_retry_frames);
 76	seq_printf(m, "TxRetryLimitExceeded=%u\n",
 77		   sums->tx_retry_limit_exceeded);
 78	seq_printf(m, "TxDiscards=%u\n", sums->tx_discards);
 79	seq_printf(m, "RxUnicastFrames=%u\n", sums->rx_unicast_frames);
 80	seq_printf(m, "RxMulticastFrames=%u\n", sums->rx_multicast_frames);
 81	seq_printf(m, "RxFragments=%u\n", sums->rx_fragments);
 82	seq_printf(m, "RxUnicastOctets=%u\n", sums->rx_unicast_octets);
 83	seq_printf(m, "RxMulticastOctets=%u\n", sums->rx_multicast_octets);
 84	seq_printf(m, "RxFCSErrors=%u\n", sums->rx_fcs_errors);
 85	seq_printf(m, "RxDiscardsNoBuffer=%u\n", sums->rx_discards_no_buffer);
 86	seq_printf(m, "TxDiscardsWrongSA=%u\n", sums->tx_discards_wrong_sa);
 87	seq_printf(m, "RxDiscardsWEPUndecryptable=%u\n",
 88		   sums->rx_discards_wep_undecryptable);
 89	seq_printf(m, "RxMessageInMsgFragments=%u\n",
 90		   sums->rx_message_in_msg_fragments);
 91	seq_printf(m, "RxMessageInBadMsgFragments=%u\n",
 92		   sums->rx_message_in_bad_msg_fragments);
 93	/* FIX: this may grow too long for one page(?) */
 94
 95	return 0;
 96}
 97
 98static int prism2_stats_proc_open(struct inode *inode, struct file *file)
 99{
100	return single_open(file, prism2_stats_proc_show, PDE_DATA(inode));
101}
102
103static const struct file_operations prism2_stats_proc_fops = {
104	.open		= prism2_stats_proc_open,
105	.read		= seq_read,
106	.llseek		= seq_lseek,
107	.release	= single_release,
108};
109
110
111static int prism2_wds_proc_show(struct seq_file *m, void *v)
112{
113	struct list_head *ptr = v;
114	struct hostap_interface *iface;
115
116	iface = list_entry(ptr, struct hostap_interface, list);
117	if (iface->type == HOSTAP_INTERFACE_WDS)
118		seq_printf(m, "%s\t%pM\n",
119			   iface->dev->name, iface->u.wds.remote_addr);
120	return 0;
121}
122
123static void *prism2_wds_proc_start(struct seq_file *m, loff_t *_pos)
124{
125	local_info_t *local = m->private;
126	read_lock_bh(&local->iface_lock);
127	return seq_list_start(&local->hostap_interfaces, *_pos);
128}
129
130static void *prism2_wds_proc_next(struct seq_file *m, void *v, loff_t *_pos)
131{
132	local_info_t *local = m->private;
133	return seq_list_next(v, &local->hostap_interfaces, _pos);
134}
135
136static void prism2_wds_proc_stop(struct seq_file *m, void *v)
137{
138	local_info_t *local = m->private;
139	read_unlock_bh(&local->iface_lock);
140}
141
142static const struct seq_operations prism2_wds_proc_seqops = {
143	.start	= prism2_wds_proc_start,
144	.next	= prism2_wds_proc_next,
145	.stop	= prism2_wds_proc_stop,
146	.show	= prism2_wds_proc_show,
147};
148
149static int prism2_wds_proc_open(struct inode *inode, struct file *file)
150{
151	int ret = seq_open(file, &prism2_wds_proc_seqops);
152	if (ret == 0) {
153		struct seq_file *m = file->private_data;
154		m->private = PDE_DATA(inode);
155	}
156	return ret;
157}
158
159static const struct file_operations prism2_wds_proc_fops = {
160	.open		= prism2_wds_proc_open,
161	.read		= seq_read,
162	.llseek		= seq_lseek,
163	.release	= seq_release,
164};
165
166
167static int prism2_bss_list_proc_show(struct seq_file *m, void *v)
168{
169	local_info_t *local = m->private;
170	struct list_head *ptr = v;
171	struct hostap_bss_info *bss;
172
173	if (ptr == &local->bss_list) {
174		seq_printf(m, "#BSSID\tlast_update\tcount\tcapab_info\tSSID(txt)\t"
175			   "SSID(hex)\tWPA IE\n");
176		return 0;
177	}
178
179	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);
183
184	seq_printf(m, "%*pE", (int)bss->ssid_len, bss->ssid);
185
186	seq_putc(m, '\t');
187	seq_printf(m, "%*phN", (int)bss->ssid_len, bss->ssid);
188	seq_putc(m, '\t');
189	seq_printf(m, "%*phN", (int)bss->wpa_ie_len, bss->wpa_ie);
190	seq_putc(m, '\n');
191	return 0;
192}
193
194static void *prism2_bss_list_proc_start(struct seq_file *m, loff_t *_pos)
 
195{
196	local_info_t *local = m->private;
197	spin_lock_bh(&local->lock);
198	return seq_list_start_head(&local->bss_list, *_pos);
199}
200
201static void *prism2_bss_list_proc_next(struct seq_file *m, void *v, loff_t *_pos)
202{
203	local_info_t *local = m->private;
204	return seq_list_next(v, &local->bss_list, _pos);
205}
206
207static void prism2_bss_list_proc_stop(struct seq_file *m, void *v)
 
208{
209	local_info_t *local = m->private;
210	spin_unlock_bh(&local->lock);
211}
212
213static const struct seq_operations prism2_bss_list_proc_seqops = {
214	.start	= prism2_bss_list_proc_start,
215	.next	= prism2_bss_list_proc_next,
216	.stop	= prism2_bss_list_proc_stop,
217	.show	= prism2_bss_list_proc_show,
218};
219
220static int prism2_bss_list_proc_open(struct inode *inode, struct file *file)
221{
222	int ret = seq_open(file, &prism2_bss_list_proc_seqops);
223	if (ret == 0) {
224		struct seq_file *m = file->private_data;
225		m->private = PDE_DATA(inode);
226	}
227	return ret;
228}
229
230static const struct file_operations prism2_bss_list_proc_fops = {
231	.open		= prism2_bss_list_proc_open,
232	.read		= seq_read,
233	.llseek		= seq_lseek,
234	.release	= seq_release,
235};
236
237
238static int prism2_crypt_proc_show(struct seq_file *m, void *v)
239{
240	local_info_t *local = m->private;
241	int i;
242
243	seq_printf(m, "tx_keyidx=%d\n", local->crypt_info.tx_keyidx);
244	for (i = 0; i < WEP_KEYS; i++) {
245		if (local->crypt_info.crypt[i] &&
246		    local->crypt_info.crypt[i]->ops &&
247		    local->crypt_info.crypt[i]->ops->print_stats) {
248			local->crypt_info.crypt[i]->ops->print_stats(
249				m, local->crypt_info.crypt[i]->priv);
250		}
251	}
252	return 0;
253}
254
255static int prism2_crypt_proc_open(struct inode *inode, struct file *file)
256{
257	return single_open(file, prism2_crypt_proc_show, PDE_DATA(inode));
258}
259
260static const struct file_operations prism2_crypt_proc_fops = {
261	.open		= prism2_crypt_proc_open,
262	.read		= seq_read,
263	.llseek		= seq_lseek,
264	.release	= single_release,
265};
266
267
268static ssize_t prism2_pda_proc_read(struct file *file, char __user *buf,
269				    size_t count, loff_t *_pos)
270{
271	local_info_t *local = PDE_DATA(file_inode(file));
272	size_t off;
273
274	if (local->pda == NULL || *_pos >= PRISM2_PDA_SIZE)
275		return 0;
276
277	off = *_pos;
278	if (count > PRISM2_PDA_SIZE - off)
279		count = PRISM2_PDA_SIZE - off;
280	if (copy_to_user(buf, local->pda + off, count) != 0)
281		return -EFAULT;
282	*_pos += count;
283	return count;
284}
285
286static const struct file_operations prism2_pda_proc_fops = {
287	.read		= prism2_pda_proc_read,
288	.llseek		= generic_file_llseek,
289};
290
291
292static ssize_t prism2_aux_dump_proc_no_read(struct file *file, char __user *buf,
293					    size_t bufsize, loff_t *_pos)
294{
295	return 0;
296}
297
298static const struct file_operations prism2_aux_dump_proc_fops = {
299	.read		= prism2_aux_dump_proc_no_read,
 
300};
301
302
303#ifdef PRISM2_IO_DEBUG
304static int prism2_io_debug_proc_read(char *page, char **start, off_t off,
305				     int count, int *eof, void *data)
306{
307	local_info_t *local = (local_info_t *) data;
308	int head = local->io_debug_head;
309	int start_bytes, left, copy, copied;
310
311	if (off + count > PRISM2_IO_DEBUG_SIZE * 4) {
312		*eof = 1;
313		if (off >= PRISM2_IO_DEBUG_SIZE * 4)
314			return 0;
315		count = PRISM2_IO_DEBUG_SIZE * 4 - off;
316	}
317
318	copied = 0;
319	start_bytes = (PRISM2_IO_DEBUG_SIZE - head) * 4;
320	left = count;
321
322	if (off < start_bytes) {
323		copy = start_bytes - off;
324		if (copy > count)
325			copy = count;
326		memcpy(page, ((u8 *) &local->io_debug[head]) + off, copy);
327		left -= copy;
328		if (left > 0)
329			memcpy(&page[copy], local->io_debug, left);
330	} else {
331		memcpy(page, ((u8 *) local->io_debug) + (off - start_bytes),
332		       left);
333	}
334
335	*start = page;
336
337	return count;
338}
339#endif /* PRISM2_IO_DEBUG */
340
341
342#ifndef PRISM2_NO_STATION_MODES
343static int prism2_scan_results_proc_show(struct seq_file *m, void *v)
344{
345	local_info_t *local = m->private;
346	unsigned long entry;
347	int i, len;
348	struct hfa384x_hostscan_result *scanres;
349	u8 *p;
350
351	if (v == SEQ_START_TOKEN) {
352		seq_printf(m,
353			   "CHID ANL SL BcnInt Capab Rate BSSID ATIM SupRates SSID\n");
354		return 0;
355	}
356
357	entry = (unsigned long)v - 2;
358	scanres = &local->last_scan_results[entry];
359
360	seq_printf(m, "%d %d %d %d 0x%02x %d %pM %d ",
361		   le16_to_cpu(scanres->chid),
362		   (s16) le16_to_cpu(scanres->anl),
363		   (s16) le16_to_cpu(scanres->sl),
364		   le16_to_cpu(scanres->beacon_interval),
365		   le16_to_cpu(scanres->capability),
366		   le16_to_cpu(scanres->rate),
367		   scanres->bssid,
368		   le16_to_cpu(scanres->atim));
369
370	p = scanres->sup_rates;
371	for (i = 0; i < sizeof(scanres->sup_rates); i++) {
372		if (p[i] == 0)
373			break;
374		seq_printf(m, "<%02x>", p[i]);
375	}
376	seq_putc(m, ' ');
377
378	p = scanres->ssid;
379	len = le16_to_cpu(scanres->ssid_len);
380	if (len > 32)
381		len = 32;
382	for (i = 0; i < len; i++) {
383		unsigned char c = p[i];
384		if (c >= 32 && c < 127)
385			seq_putc(m, c);
386		else
387			seq_printf(m, "<%02x>", c);
388	}
389	seq_putc(m, '\n');
390	return 0;
391}
392
393static void *prism2_scan_results_proc_start(struct seq_file *m, loff_t *_pos)
394{
395	local_info_t *local = m->private;
396	spin_lock_bh(&local->lock);
397
398	/* We have a header (pos 0) + N results to show (pos 1...N) */
399	if (*_pos > local->last_scan_results_count)
400		return NULL;
401	return (void *)(unsigned long)(*_pos + 1); /* 0 would be EOF */
402}
403
404static void *prism2_scan_results_proc_next(struct seq_file *m, void *v, loff_t *_pos)
405{
406	local_info_t *local = m->private;
407
408	++*_pos;
409	if (*_pos > local->last_scan_results_count)
410		return NULL;
411	return (void *)(unsigned long)(*_pos + 1); /* 0 would be EOF */
412}
413
414static void prism2_scan_results_proc_stop(struct seq_file *m, void *v)
415{
416	local_info_t *local = m->private;
417	spin_unlock_bh(&local->lock);
418}
419
420static const struct seq_operations prism2_scan_results_proc_seqops = {
421	.start	= prism2_scan_results_proc_start,
422	.next	= prism2_scan_results_proc_next,
423	.stop	= prism2_scan_results_proc_stop,
424	.show	= prism2_scan_results_proc_show,
425};
426
427static int prism2_scan_results_proc_open(struct inode *inode, struct file *file)
428{
429	int ret = seq_open(file, &prism2_scan_results_proc_seqops);
430	if (ret == 0) {
431		struct seq_file *m = file->private_data;
432		m->private = PDE_DATA(inode);
433	}
434	return ret;
435}
436
437static const struct file_operations prism2_scan_results_proc_fops = {
438	.open		= prism2_scan_results_proc_open,
439	.read		= seq_read,
440	.llseek		= seq_lseek,
441	.release	= seq_release,
442};
443
444
445#endif /* PRISM2_NO_STATION_MODES */
446
447
448void hostap_init_proc(local_info_t *local)
449{
450	local->proc = NULL;
451
452	if (hostap_proc == NULL) {
453		printk(KERN_WARNING "%s: hostap proc directory not created\n",
454		       local->dev->name);
455		return;
456	}
457
458	local->proc = proc_mkdir(local->ddev->name, hostap_proc);
459	if (local->proc == NULL) {
460		printk(KERN_INFO "/proc/net/hostap/%s creation failed\n",
461		       local->ddev->name);
462		return;
463	}
464
465#ifndef PRISM2_NO_PROCFS_DEBUG
466	proc_create_data("debug", 0, local->proc,
467			 &prism2_debug_proc_fops, local);
468#endif /* PRISM2_NO_PROCFS_DEBUG */
469	proc_create_data("stats", 0, local->proc,
470			 &prism2_stats_proc_fops, local);
471	proc_create_data("wds", 0, local->proc,
472			 &prism2_wds_proc_fops, local);
473	proc_create_data("pda", 0, local->proc,
474			 &prism2_pda_proc_fops, local);
475	proc_create_data("aux_dump", 0, local->proc,
476			 local->func->read_aux_fops ?: &prism2_aux_dump_proc_fops,
477			 local);
478	proc_create_data("bss_list", 0, local->proc,
479			 &prism2_bss_list_proc_fops, local);
480	proc_create_data("crypt", 0, local->proc,
481			 &prism2_crypt_proc_fops, local);
482#ifdef PRISM2_IO_DEBUG
483	proc_create_data("io_debug", 0, local->proc,
484			 &prism2_io_debug_proc_fops, local);
485#endif /* PRISM2_IO_DEBUG */
486#ifndef PRISM2_NO_STATION_MODES
487	proc_create_data("scan_results", 0, local->proc,
488			 &prism2_scan_results_proc_fops, local);
489#endif /* PRISM2_NO_STATION_MODES */
490}
491
492
493void hostap_remove_proc(local_info_t *local)
494{
495	proc_remove(local->proc);
496}
497
498
499EXPORT_SYMBOL(hostap_init_proc);
500EXPORT_SYMBOL(hostap_remove_proc);
v6.2
  1// SPDX-License-Identifier: GPL-2.0
  2/* /proc routines for Host AP driver */
  3
  4#include <linux/types.h>
  5#include <linux/proc_fs.h>
  6#include <linux/export.h>
  7#include <net/lib80211.h>
  8
  9#include "hostap_wlan.h"
 10#include "hostap.h"
 11
 12#define PROC_LIMIT (PAGE_SIZE - 80)
 13
 14#if !defined(PRISM2_NO_PROCFS_DEBUG) && defined(CONFIG_PROC_FS)
 
 15static int prism2_debug_proc_show(struct seq_file *m, void *v)
 16{
 17	local_info_t *local = m->private;
 18	int i;
 19
 20	seq_printf(m, "next_txfid=%d next_alloc=%d\n",
 21		   local->next_txfid, local->next_alloc);
 22	for (i = 0; i < PRISM2_TXFID_COUNT; i++)
 23		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);
 31	for (i = 0; i < WEP_KEYS; i++) {
 32		if (local->crypt_info.crypt[i] &&
 33		    local->crypt_info.crypt[i]->ops) {
 34			seq_printf(m, "crypt[%d]=%s\n", i,
 35				   local->crypt_info.crypt[i]->ops->name);
 36		}
 37	}
 38	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);
 42
 43	return 0;
 44}
 45#endif
 46
 47#ifdef CONFIG_PROC_FS
 
 
 
 
 
 
 
 
 
 
 
 
 
 48static int prism2_stats_proc_show(struct seq_file *m, void *v)
 49{
 50	local_info_t *local = m->private;
 51	struct comm_tallies_sums *sums = &local->comm_tallies;
 52
 53	seq_printf(m, "TxUnicastFrames=%u\n", sums->tx_unicast_frames);
 54	seq_printf(m, "TxMulticastframes=%u\n", sums->tx_multicast_frames);
 55	seq_printf(m, "TxFragments=%u\n", sums->tx_fragments);
 56	seq_printf(m, "TxUnicastOctets=%u\n", sums->tx_unicast_octets);
 57	seq_printf(m, "TxMulticastOctets=%u\n", sums->tx_multicast_octets);
 58	seq_printf(m, "TxDeferredTransmissions=%u\n",
 59		   sums->tx_deferred_transmissions);
 60	seq_printf(m, "TxSingleRetryFrames=%u\n", sums->tx_single_retry_frames);
 61	seq_printf(m, "TxMultipleRetryFrames=%u\n",
 62		   sums->tx_multiple_retry_frames);
 63	seq_printf(m, "TxRetryLimitExceeded=%u\n",
 64		   sums->tx_retry_limit_exceeded);
 65	seq_printf(m, "TxDiscards=%u\n", sums->tx_discards);
 66	seq_printf(m, "RxUnicastFrames=%u\n", sums->rx_unicast_frames);
 67	seq_printf(m, "RxMulticastFrames=%u\n", sums->rx_multicast_frames);
 68	seq_printf(m, "RxFragments=%u\n", sums->rx_fragments);
 69	seq_printf(m, "RxUnicastOctets=%u\n", sums->rx_unicast_octets);
 70	seq_printf(m, "RxMulticastOctets=%u\n", sums->rx_multicast_octets);
 71	seq_printf(m, "RxFCSErrors=%u\n", sums->rx_fcs_errors);
 72	seq_printf(m, "RxDiscardsNoBuffer=%u\n", sums->rx_discards_no_buffer);
 73	seq_printf(m, "TxDiscardsWrongSA=%u\n", sums->tx_discards_wrong_sa);
 74	seq_printf(m, "RxDiscardsWEPUndecryptable=%u\n",
 75		   sums->rx_discards_wep_undecryptable);
 76	seq_printf(m, "RxMessageInMsgFragments=%u\n",
 77		   sums->rx_message_in_msg_fragments);
 78	seq_printf(m, "RxMessageInBadMsgFragments=%u\n",
 79		   sums->rx_message_in_bad_msg_fragments);
 80	/* FIX: this may grow too long for one page(?) */
 81
 82	return 0;
 83}
 84#endif
 
 
 
 
 
 
 
 
 
 
 
 
 85
 86static int prism2_wds_proc_show(struct seq_file *m, void *v)
 87{
 88	struct list_head *ptr = v;
 89	struct hostap_interface *iface;
 90
 91	iface = list_entry(ptr, struct hostap_interface, list);
 92	if (iface->type == HOSTAP_INTERFACE_WDS)
 93		seq_printf(m, "%s\t%pM\n",
 94			   iface->dev->name, iface->u.wds.remote_addr);
 95	return 0;
 96}
 97
 98static void *prism2_wds_proc_start(struct seq_file *m, loff_t *_pos)
 99{
100	local_info_t *local = pde_data(file_inode(m->file));
101	read_lock_bh(&local->iface_lock);
102	return seq_list_start(&local->hostap_interfaces, *_pos);
103}
104
105static void *prism2_wds_proc_next(struct seq_file *m, void *v, loff_t *_pos)
106{
107	local_info_t *local = pde_data(file_inode(m->file));
108	return seq_list_next(v, &local->hostap_interfaces, _pos);
109}
110
111static void prism2_wds_proc_stop(struct seq_file *m, void *v)
112{
113	local_info_t *local = pde_data(file_inode(m->file));
114	read_unlock_bh(&local->iface_lock);
115}
116
117static const struct seq_operations prism2_wds_proc_seqops = {
118	.start	= prism2_wds_proc_start,
119	.next	= prism2_wds_proc_next,
120	.stop	= prism2_wds_proc_stop,
121	.show	= prism2_wds_proc_show,
122};
123
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
124static int prism2_bss_list_proc_show(struct seq_file *m, void *v)
125{
126	local_info_t *local = pde_data(file_inode(m->file));
127	struct list_head *ptr = v;
128	struct hostap_bss_info *bss;
129
130	if (ptr == &local->bss_list) {
131		seq_printf(m, "#BSSID\tlast_update\tcount\tcapab_info\tSSID(txt)\t"
132			   "SSID(hex)\tWPA IE\n");
133		return 0;
134	}
135
136	bss = list_entry(ptr, struct hostap_bss_info, list);
137	seq_printf(m, "%pM\t%lu\t%u\t0x%x\t",
138		   bss->bssid, bss->last_update,
139		   bss->count, bss->capab_info);
140
141	seq_printf(m, "%*pE", (int)bss->ssid_len, bss->ssid);
142
143	seq_putc(m, '\t');
144	seq_printf(m, "%*phN", (int)bss->ssid_len, bss->ssid);
145	seq_putc(m, '\t');
146	seq_printf(m, "%*phN", (int)bss->wpa_ie_len, bss->wpa_ie);
147	seq_putc(m, '\n');
148	return 0;
149}
150
151static void *prism2_bss_list_proc_start(struct seq_file *m, loff_t *_pos)
152	__acquires(&local->lock)
153{
154	local_info_t *local = pde_data(file_inode(m->file));
155	spin_lock_bh(&local->lock);
156	return seq_list_start_head(&local->bss_list, *_pos);
157}
158
159static void *prism2_bss_list_proc_next(struct seq_file *m, void *v, loff_t *_pos)
160{
161	local_info_t *local = pde_data(file_inode(m->file));
162	return seq_list_next(v, &local->bss_list, _pos);
163}
164
165static void prism2_bss_list_proc_stop(struct seq_file *m, void *v)
166	__releases(&local->lock)
167{
168	local_info_t *local = pde_data(file_inode(m->file));
169	spin_unlock_bh(&local->lock);
170}
171
172static const struct seq_operations prism2_bss_list_proc_seqops = {
173	.start	= prism2_bss_list_proc_start,
174	.next	= prism2_bss_list_proc_next,
175	.stop	= prism2_bss_list_proc_stop,
176	.show	= prism2_bss_list_proc_show,
177};
178
179#ifdef CONFIG_PROC_FS
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
180static int prism2_crypt_proc_show(struct seq_file *m, void *v)
181{
182	local_info_t *local = m->private;
183	int i;
184
185	seq_printf(m, "tx_keyidx=%d\n", local->crypt_info.tx_keyidx);
186	for (i = 0; i < WEP_KEYS; i++) {
187		if (local->crypt_info.crypt[i] &&
188		    local->crypt_info.crypt[i]->ops &&
189		    local->crypt_info.crypt[i]->ops->print_stats) {
190			local->crypt_info.crypt[i]->ops->print_stats(
191				m, local->crypt_info.crypt[i]->priv);
192		}
193	}
194	return 0;
195}
196#endif
 
 
 
 
 
 
 
 
 
 
 
 
197
198static ssize_t prism2_pda_proc_read(struct file *file, char __user *buf,
199				    size_t count, loff_t *_pos)
200{
201	local_info_t *local = pde_data(file_inode(file));
202	size_t off;
203
204	if (local->pda == NULL || *_pos >= PRISM2_PDA_SIZE)
205		return 0;
206
207	off = *_pos;
208	if (count > PRISM2_PDA_SIZE - off)
209		count = PRISM2_PDA_SIZE - off;
210	if (copy_to_user(buf, local->pda + off, count) != 0)
211		return -EFAULT;
212	*_pos += count;
213	return count;
214}
215
216static const struct proc_ops prism2_pda_proc_ops = {
217	.proc_read	= prism2_pda_proc_read,
218	.proc_lseek	= generic_file_llseek,
219};
220
221
222static ssize_t prism2_aux_dump_proc_no_read(struct file *file, char __user *buf,
223					    size_t bufsize, loff_t *_pos)
224{
225	return 0;
226}
227
228static const struct proc_ops prism2_aux_dump_proc_ops = {
229	.proc_read	= prism2_aux_dump_proc_no_read,
230	.proc_lseek	= default_llseek,
231};
232
233
234#ifdef PRISM2_IO_DEBUG
235static int prism2_io_debug_proc_read(char *page, char **start, off_t off,
236				     int count, int *eof, void *data)
237{
238	local_info_t *local = (local_info_t *) data;
239	int head = local->io_debug_head;
240	int start_bytes, left, copy;
241
242	if (off + count > PRISM2_IO_DEBUG_SIZE * 4) {
243		*eof = 1;
244		if (off >= PRISM2_IO_DEBUG_SIZE * 4)
245			return 0;
246		count = PRISM2_IO_DEBUG_SIZE * 4 - off;
247	}
248
 
249	start_bytes = (PRISM2_IO_DEBUG_SIZE - head) * 4;
250	left = count;
251
252	if (off < start_bytes) {
253		copy = start_bytes - off;
254		if (copy > count)
255			copy = count;
256		memcpy(page, ((u8 *) &local->io_debug[head]) + off, copy);
257		left -= copy;
258		if (left > 0)
259			memcpy(&page[copy], local->io_debug, left);
260	} else {
261		memcpy(page, ((u8 *) local->io_debug) + (off - start_bytes),
262		       left);
263	}
264
265	*start = page;
266
267	return count;
268}
269#endif /* PRISM2_IO_DEBUG */
270
271
272#ifndef PRISM2_NO_STATION_MODES
273static int prism2_scan_results_proc_show(struct seq_file *m, void *v)
274{
275	local_info_t *local = pde_data(file_inode(m->file));
276	unsigned long entry;
277	int i, len;
278	struct hfa384x_hostscan_result *scanres;
279	u8 *p;
280
281	if (v == SEQ_START_TOKEN) {
282		seq_printf(m,
283			   "CHID ANL SL BcnInt Capab Rate BSSID ATIM SupRates SSID\n");
284		return 0;
285	}
286
287	entry = (unsigned long)v - 2;
288	scanres = &local->last_scan_results[entry];
289
290	seq_printf(m, "%d %d %d %d 0x%02x %d %pM %d ",
291		   le16_to_cpu(scanres->chid),
292		   (s16) le16_to_cpu(scanres->anl),
293		   (s16) le16_to_cpu(scanres->sl),
294		   le16_to_cpu(scanres->beacon_interval),
295		   le16_to_cpu(scanres->capability),
296		   le16_to_cpu(scanres->rate),
297		   scanres->bssid,
298		   le16_to_cpu(scanres->atim));
299
300	p = scanres->sup_rates;
301	for (i = 0; i < sizeof(scanres->sup_rates); i++) {
302		if (p[i] == 0)
303			break;
304		seq_printf(m, "<%02x>", p[i]);
305	}
306	seq_putc(m, ' ');
307
308	p = scanres->ssid;
309	len = le16_to_cpu(scanres->ssid_len);
310	if (len > 32)
311		len = 32;
312	for (i = 0; i < len; i++) {
313		unsigned char c = p[i];
314		if (c >= 32 && c < 127)
315			seq_putc(m, c);
316		else
317			seq_printf(m, "<%02x>", c);
318	}
319	seq_putc(m, '\n');
320	return 0;
321}
322
323static void *prism2_scan_results_proc_start(struct seq_file *m, loff_t *_pos)
324{
325	local_info_t *local = pde_data(file_inode(m->file));
326	spin_lock_bh(&local->lock);
327
328	/* We have a header (pos 0) + N results to show (pos 1...N) */
329	if (*_pos > local->last_scan_results_count)
330		return NULL;
331	return (void *)(unsigned long)(*_pos + 1); /* 0 would be EOF */
332}
333
334static void *prism2_scan_results_proc_next(struct seq_file *m, void *v, loff_t *_pos)
335{
336	local_info_t *local = pde_data(file_inode(m->file));
337
338	++*_pos;
339	if (*_pos > local->last_scan_results_count)
340		return NULL;
341	return (void *)(unsigned long)(*_pos + 1); /* 0 would be EOF */
342}
343
344static void prism2_scan_results_proc_stop(struct seq_file *m, void *v)
345{
346	local_info_t *local = pde_data(file_inode(m->file));
347	spin_unlock_bh(&local->lock);
348}
349
350static const struct seq_operations prism2_scan_results_proc_seqops = {
351	.start	= prism2_scan_results_proc_start,
352	.next	= prism2_scan_results_proc_next,
353	.stop	= prism2_scan_results_proc_stop,
354	.show	= prism2_scan_results_proc_show,
355};
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
356#endif /* PRISM2_NO_STATION_MODES */
357
358
359void hostap_init_proc(local_info_t *local)
360{
361	local->proc = NULL;
362
363	if (hostap_proc == NULL) {
364		printk(KERN_WARNING "%s: hostap proc directory not created\n",
365		       local->dev->name);
366		return;
367	}
368
369	local->proc = proc_mkdir(local->ddev->name, hostap_proc);
370	if (local->proc == NULL) {
371		printk(KERN_INFO "/proc/net/hostap/%s creation failed\n",
372		       local->ddev->name);
373		return;
374	}
375
376#ifndef PRISM2_NO_PROCFS_DEBUG
377	proc_create_single_data("debug", 0, local->proc,
378			prism2_debug_proc_show, local);
379#endif /* PRISM2_NO_PROCFS_DEBUG */
380	proc_create_single_data("stats", 0, local->proc, prism2_stats_proc_show,
381			local);
382	proc_create_seq_data("wds", 0, local->proc,
383			&prism2_wds_proc_seqops, local);
384	proc_create_data("pda", 0, local->proc,
385			 &prism2_pda_proc_ops, local);
386	proc_create_data("aux_dump", 0, local->proc,
387			 local->func->read_aux_proc_ops ?: &prism2_aux_dump_proc_ops,
388			 local);
389	proc_create_seq_data("bss_list", 0, local->proc,
390			&prism2_bss_list_proc_seqops, local);
391	proc_create_single_data("crypt", 0, local->proc, prism2_crypt_proc_show,
392		local);
393#ifdef PRISM2_IO_DEBUG
394	proc_create_single_data("io_debug", 0, local->proc,
395			prism2_debug_proc_show, local);
396#endif /* PRISM2_IO_DEBUG */
397#ifndef PRISM2_NO_STATION_MODES
398	proc_create_seq_data("scan_results", 0, local->proc,
399			&prism2_scan_results_proc_seqops, local);
400#endif /* PRISM2_NO_STATION_MODES */
401}
402
403
404void hostap_remove_proc(local_info_t *local)
405{
406	proc_remove(local->proc);
407}
408
409
410EXPORT_SYMBOL(hostap_init_proc);
411EXPORT_SYMBOL(hostap_remove_proc);