Linux Audio

Check our new training course

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