2 * This file implement the Wireless Extensions APIs.
4 * Authors : Jean Tourrilhes - HPL - <jt@hpl.hp.com>
5 * Copyright (c) 1997-2007 Jean Tourrilhes, All Rights Reserved.
7 * (As all part of the Linux kernel, this file is GPL)
10 /************************** DOCUMENTATION **************************/
14 * See <linux/wireless.h> for details of the APIs and the rest.
19 * v1 - 5.12.01 - Jean II
20 * o Created this file.
22 * v2 - 13.12.01 - Jean II
23 * o Move /proc/net/wireless stuff from net/core/dev.c to here
24 * o Make Wireless Extension IOCTLs go through here
25 * o Added iw_handler handling ;-)
26 * o Added standard ioctl description
27 * o Initial dumb commit strategy based on orinoco.c
29 * v3 - 19.12.01 - Jean II
30 * o Make sure we don't go out of standard_ioctl[] in ioctl_standard_call
31 * o Add event dispatcher function
32 * o Add event description
33 * o Propagate events as rtnetlink IFLA_WIRELESS option
34 * o Generate event on selected SET requests
36 * v4 - 18.04.02 - Jean II
37 * o Fix stupid off by one in iw_ioctl_description : IW_ESSID_MAX_SIZE + 1
39 * v5 - 21.06.02 - Jean II
40 * o Add IW_PRIV_TYPE_ADDR in priv_type_size (+cleanup)
41 * o Reshuffle IW_HEADER_TYPE_XXX to map IW_PRIV_TYPE_XXX changes
42 * o Add IWEVCUSTOM for driver specific event/scanning token
43 * o Turn on WE_STRICT_WRITE by default + kernel warning
44 * o Fix WE_STRICT_WRITE in ioctl_export_private() (32 => iw_num)
45 * o Fix off-by-one in test (extra_size <= IFNAMSIZ)
47 * v6 - 9.01.03 - Jean II
48 * o Add common spy support : iw_handler_set_spy(), wireless_spy_update()
49 * o Add enhanced spy support : iw_handler_set_thrspy() and event.
50 * o Add WIRELESS_EXT version display in /proc/net/wireless
52 * v6 - 18.06.04 - Jean II
53 * o Change get_spydata() method for added safety
54 * o Remove spy #ifdef, they are always on -> cleaner code
55 * o Allow any size GET request if user specifies length > max
56 * and if request has IW_DESCR_FLAG_NOMAX flag or is SIOCGIWPRIV
57 * o Start migrating get_wireless_stats to struct iw_handler_def
58 * o Add wmb() in iw_handler_set_spy() for non-coherent archs/cpus
59 * Based on patch from Pavel Roskin <proski@gnu.org> :
60 * o Fix kernel data leak to user space in private handler handling
62 * v7 - 18.3.05 - Jean II
63 * o Remove (struct iw_point *)->pointer from events and streams
64 * o Remove spy_offset from struct iw_handler_def
65 * o Start deprecating dev->get_wireless_stats, output a warning
66 * o If IW_QUAL_DBM is set, show dBm values in /proc/net/wireless
67 * o Don't loose INVALID/DBM flags when clearing UPDATED flags (iwstats)
69 * v8 - 17.02.06 - Jean II
70 * o RtNetlink requests support (SET/GET)
72 * v8b - 03.08.06 - Herbert Xu
73 * o Fix Wireless Event locking issues.
75 * v9 - 14.3.06 - Jean II
76 * o Change length in ESSID and NICK to strlen() instead of strlen()+1
77 * o Make standard_ioctl_num and standard_event_num unsigned
78 * o Remove (struct net_device *)->get_wireless_stats()
80 * v10 - 16.3.07 - Jean II
81 * o Prevent leaking of kernel space in stream on 64 bits.
84 /***************************** INCLUDES *****************************/
86 #include <linux/module.h>
87 #include <linux/types.h> /* off_t */
88 #include <linux/netdevice.h> /* struct ifreq, dev_get_by_name() */
89 #include <linux/proc_fs.h>
90 #include <linux/rtnetlink.h> /* rtnetlink stuff */
91 #include <linux/seq_file.h>
92 #include <linux/init.h> /* for __init */
93 #include <linux/if_arp.h> /* ARPHRD_ETHER */
94 #include <linux/etherdevice.h> /* compare_ether_addr */
95 #include <linux/interrupt.h>
97 #include <linux/wireless.h> /* Pretty obvious */
98 #include <net/iw_handler.h> /* New driver API */
99 #include <net/netlink.h>
100 #include <net/wext.h>
102 #include <asm/uaccess.h> /* copy_to_user() */
104 /************************* GLOBAL VARIABLES *************************/
106 * You should not use global variables, because of re-entrancy.
107 * On our case, it's only const, so it's OK...
110 * Meta-data about all the standard Wireless Extension request we
113 static const struct iw_ioctl_description standard_ioctl[] = {
114 [SIOCSIWCOMMIT - SIOCIWFIRST] = {
115 .header_type = IW_HEADER_TYPE_NULL,
117 [SIOCGIWNAME - SIOCIWFIRST] = {
118 .header_type = IW_HEADER_TYPE_CHAR,
119 .flags = IW_DESCR_FLAG_DUMP,
121 [SIOCSIWNWID - SIOCIWFIRST] = {
122 .header_type = IW_HEADER_TYPE_PARAM,
123 .flags = IW_DESCR_FLAG_EVENT,
125 [SIOCGIWNWID - SIOCIWFIRST] = {
126 .header_type = IW_HEADER_TYPE_PARAM,
127 .flags = IW_DESCR_FLAG_DUMP,
129 [SIOCSIWFREQ - SIOCIWFIRST] = {
130 .header_type = IW_HEADER_TYPE_FREQ,
131 .flags = IW_DESCR_FLAG_EVENT,
133 [SIOCGIWFREQ - SIOCIWFIRST] = {
134 .header_type = IW_HEADER_TYPE_FREQ,
135 .flags = IW_DESCR_FLAG_DUMP,
137 [SIOCSIWMODE - SIOCIWFIRST] = {
138 .header_type = IW_HEADER_TYPE_UINT,
139 .flags = IW_DESCR_FLAG_EVENT,
141 [SIOCGIWMODE - SIOCIWFIRST] = {
142 .header_type = IW_HEADER_TYPE_UINT,
143 .flags = IW_DESCR_FLAG_DUMP,
145 [SIOCSIWSENS - SIOCIWFIRST] = {
146 .header_type = IW_HEADER_TYPE_PARAM,
148 [SIOCGIWSENS - SIOCIWFIRST] = {
149 .header_type = IW_HEADER_TYPE_PARAM,
151 [SIOCSIWRANGE - SIOCIWFIRST] = {
152 .header_type = IW_HEADER_TYPE_NULL,
154 [SIOCGIWRANGE - SIOCIWFIRST] = {
155 .header_type = IW_HEADER_TYPE_POINT,
157 .max_tokens = sizeof(struct iw_range),
158 .flags = IW_DESCR_FLAG_DUMP,
160 [SIOCSIWPRIV - SIOCIWFIRST] = {
161 .header_type = IW_HEADER_TYPE_NULL,
163 [SIOCGIWPRIV - SIOCIWFIRST] = { /* (handled directly by us) */
164 .header_type = IW_HEADER_TYPE_POINT,
165 .token_size = sizeof(struct iw_priv_args),
167 .flags = IW_DESCR_FLAG_NOMAX,
169 [SIOCSIWSTATS - SIOCIWFIRST] = {
170 .header_type = IW_HEADER_TYPE_NULL,
172 [SIOCGIWSTATS - SIOCIWFIRST] = { /* (handled directly by us) */
173 .header_type = IW_HEADER_TYPE_POINT,
175 .max_tokens = sizeof(struct iw_statistics),
176 .flags = IW_DESCR_FLAG_DUMP,
178 [SIOCSIWSPY - SIOCIWFIRST] = {
179 .header_type = IW_HEADER_TYPE_POINT,
180 .token_size = sizeof(struct sockaddr),
181 .max_tokens = IW_MAX_SPY,
183 [SIOCGIWSPY - SIOCIWFIRST] = {
184 .header_type = IW_HEADER_TYPE_POINT,
185 .token_size = sizeof(struct sockaddr) +
186 sizeof(struct iw_quality),
187 .max_tokens = IW_MAX_SPY,
189 [SIOCSIWTHRSPY - SIOCIWFIRST] = {
190 .header_type = IW_HEADER_TYPE_POINT,
191 .token_size = sizeof(struct iw_thrspy),
195 [SIOCGIWTHRSPY - SIOCIWFIRST] = {
196 .header_type = IW_HEADER_TYPE_POINT,
197 .token_size = sizeof(struct iw_thrspy),
201 [SIOCSIWAP - SIOCIWFIRST] = {
202 .header_type = IW_HEADER_TYPE_ADDR,
204 [SIOCGIWAP - SIOCIWFIRST] = {
205 .header_type = IW_HEADER_TYPE_ADDR,
206 .flags = IW_DESCR_FLAG_DUMP,
208 [SIOCSIWMLME - SIOCIWFIRST] = {
209 .header_type = IW_HEADER_TYPE_POINT,
211 .min_tokens = sizeof(struct iw_mlme),
212 .max_tokens = sizeof(struct iw_mlme),
214 [SIOCGIWAPLIST - SIOCIWFIRST] = {
215 .header_type = IW_HEADER_TYPE_POINT,
216 .token_size = sizeof(struct sockaddr) +
217 sizeof(struct iw_quality),
218 .max_tokens = IW_MAX_AP,
219 .flags = IW_DESCR_FLAG_NOMAX,
221 [SIOCSIWSCAN - SIOCIWFIRST] = {
222 .header_type = IW_HEADER_TYPE_POINT,
225 .max_tokens = sizeof(struct iw_scan_req),
227 [SIOCGIWSCAN - SIOCIWFIRST] = {
228 .header_type = IW_HEADER_TYPE_POINT,
230 .max_tokens = IW_SCAN_MAX_DATA,
231 .flags = IW_DESCR_FLAG_NOMAX,
233 [SIOCSIWESSID - SIOCIWFIRST] = {
234 .header_type = IW_HEADER_TYPE_POINT,
236 .max_tokens = IW_ESSID_MAX_SIZE,
237 .flags = IW_DESCR_FLAG_EVENT,
239 [SIOCGIWESSID - SIOCIWFIRST] = {
240 .header_type = IW_HEADER_TYPE_POINT,
242 .max_tokens = IW_ESSID_MAX_SIZE,
243 .flags = IW_DESCR_FLAG_DUMP,
245 [SIOCSIWNICKN - SIOCIWFIRST] = {
246 .header_type = IW_HEADER_TYPE_POINT,
248 .max_tokens = IW_ESSID_MAX_SIZE,
250 [SIOCGIWNICKN - SIOCIWFIRST] = {
251 .header_type = IW_HEADER_TYPE_POINT,
253 .max_tokens = IW_ESSID_MAX_SIZE,
255 [SIOCSIWRATE - SIOCIWFIRST] = {
256 .header_type = IW_HEADER_TYPE_PARAM,
258 [SIOCGIWRATE - SIOCIWFIRST] = {
259 .header_type = IW_HEADER_TYPE_PARAM,
261 [SIOCSIWRTS - SIOCIWFIRST] = {
262 .header_type = IW_HEADER_TYPE_PARAM,
264 [SIOCGIWRTS - SIOCIWFIRST] = {
265 .header_type = IW_HEADER_TYPE_PARAM,
267 [SIOCSIWFRAG - SIOCIWFIRST] = {
268 .header_type = IW_HEADER_TYPE_PARAM,
270 [SIOCGIWFRAG - SIOCIWFIRST] = {
271 .header_type = IW_HEADER_TYPE_PARAM,
273 [SIOCSIWTXPOW - SIOCIWFIRST] = {
274 .header_type = IW_HEADER_TYPE_PARAM,
276 [SIOCGIWTXPOW - SIOCIWFIRST] = {
277 .header_type = IW_HEADER_TYPE_PARAM,
279 [SIOCSIWRETRY - SIOCIWFIRST] = {
280 .header_type = IW_HEADER_TYPE_PARAM,
282 [SIOCGIWRETRY - SIOCIWFIRST] = {
283 .header_type = IW_HEADER_TYPE_PARAM,
285 [SIOCSIWENCODE - SIOCIWFIRST] = {
286 .header_type = IW_HEADER_TYPE_POINT,
288 .max_tokens = IW_ENCODING_TOKEN_MAX,
289 .flags = IW_DESCR_FLAG_EVENT | IW_DESCR_FLAG_RESTRICT,
291 [SIOCGIWENCODE - SIOCIWFIRST] = {
292 .header_type = IW_HEADER_TYPE_POINT,
294 .max_tokens = IW_ENCODING_TOKEN_MAX,
295 .flags = IW_DESCR_FLAG_DUMP | IW_DESCR_FLAG_RESTRICT,
297 [SIOCSIWPOWER - SIOCIWFIRST] = {
298 .header_type = IW_HEADER_TYPE_PARAM,
300 [SIOCGIWPOWER - SIOCIWFIRST] = {
301 .header_type = IW_HEADER_TYPE_PARAM,
303 [SIOCSIWGENIE - SIOCIWFIRST] = {
304 .header_type = IW_HEADER_TYPE_POINT,
306 .max_tokens = IW_GENERIC_IE_MAX,
308 [SIOCGIWGENIE - SIOCIWFIRST] = {
309 .header_type = IW_HEADER_TYPE_POINT,
311 .max_tokens = IW_GENERIC_IE_MAX,
313 [SIOCSIWAUTH - SIOCIWFIRST] = {
314 .header_type = IW_HEADER_TYPE_PARAM,
316 [SIOCGIWAUTH - SIOCIWFIRST] = {
317 .header_type = IW_HEADER_TYPE_PARAM,
319 [SIOCSIWENCODEEXT - SIOCIWFIRST] = {
320 .header_type = IW_HEADER_TYPE_POINT,
322 .min_tokens = sizeof(struct iw_encode_ext),
323 .max_tokens = sizeof(struct iw_encode_ext) +
324 IW_ENCODING_TOKEN_MAX,
326 [SIOCGIWENCODEEXT - SIOCIWFIRST] = {
327 .header_type = IW_HEADER_TYPE_POINT,
329 .min_tokens = sizeof(struct iw_encode_ext),
330 .max_tokens = sizeof(struct iw_encode_ext) +
331 IW_ENCODING_TOKEN_MAX,
333 [SIOCSIWPMKSA - SIOCIWFIRST] = {
334 .header_type = IW_HEADER_TYPE_POINT,
336 .min_tokens = sizeof(struct iw_pmksa),
337 .max_tokens = sizeof(struct iw_pmksa),
340 static const unsigned standard_ioctl_num = ARRAY_SIZE(standard_ioctl);
343 * Meta-data about all the additional standard Wireless Extension events
346 static const struct iw_ioctl_description standard_event[] = {
347 [IWEVTXDROP - IWEVFIRST] = {
348 .header_type = IW_HEADER_TYPE_ADDR,
350 [IWEVQUAL - IWEVFIRST] = {
351 .header_type = IW_HEADER_TYPE_QUAL,
353 [IWEVCUSTOM - IWEVFIRST] = {
354 .header_type = IW_HEADER_TYPE_POINT,
356 .max_tokens = IW_CUSTOM_MAX,
358 [IWEVREGISTERED - IWEVFIRST] = {
359 .header_type = IW_HEADER_TYPE_ADDR,
361 [IWEVEXPIRED - IWEVFIRST] = {
362 .header_type = IW_HEADER_TYPE_ADDR,
364 [IWEVGENIE - IWEVFIRST] = {
365 .header_type = IW_HEADER_TYPE_POINT,
367 .max_tokens = IW_GENERIC_IE_MAX,
369 [IWEVMICHAELMICFAILURE - IWEVFIRST] = {
370 .header_type = IW_HEADER_TYPE_POINT,
372 .max_tokens = sizeof(struct iw_michaelmicfailure),
374 [IWEVASSOCREQIE - IWEVFIRST] = {
375 .header_type = IW_HEADER_TYPE_POINT,
377 .max_tokens = IW_GENERIC_IE_MAX,
379 [IWEVASSOCRESPIE - IWEVFIRST] = {
380 .header_type = IW_HEADER_TYPE_POINT,
382 .max_tokens = IW_GENERIC_IE_MAX,
384 [IWEVPMKIDCAND - IWEVFIRST] = {
385 .header_type = IW_HEADER_TYPE_POINT,
387 .max_tokens = sizeof(struct iw_pmkid_cand),
390 static const unsigned standard_event_num = ARRAY_SIZE(standard_event);
392 /* Size (in bytes) of the various private data types */
393 static const char iw_priv_type_size[] = {
394 0, /* IW_PRIV_TYPE_NONE */
395 1, /* IW_PRIV_TYPE_BYTE */
396 1, /* IW_PRIV_TYPE_CHAR */
398 sizeof(__u32), /* IW_PRIV_TYPE_INT */
399 sizeof(struct iw_freq), /* IW_PRIV_TYPE_FLOAT */
400 sizeof(struct sockaddr), /* IW_PRIV_TYPE_ADDR */
404 /* Size (in bytes) of various events */
405 static const int event_type_size[] = {
406 IW_EV_LCP_LEN, /* IW_HEADER_TYPE_NULL */
408 IW_EV_CHAR_LEN, /* IW_HEADER_TYPE_CHAR */
410 IW_EV_UINT_LEN, /* IW_HEADER_TYPE_UINT */
411 IW_EV_FREQ_LEN, /* IW_HEADER_TYPE_FREQ */
412 IW_EV_ADDR_LEN, /* IW_HEADER_TYPE_ADDR */
414 IW_EV_POINT_LEN, /* Without variable payload */
415 IW_EV_PARAM_LEN, /* IW_HEADER_TYPE_PARAM */
416 IW_EV_QUAL_LEN, /* IW_HEADER_TYPE_QUAL */
419 /* Size (in bytes) of various events, as packed */
420 static const int event_type_pk_size[] = {
421 IW_EV_LCP_PK_LEN, /* IW_HEADER_TYPE_NULL */
423 IW_EV_CHAR_PK_LEN, /* IW_HEADER_TYPE_CHAR */
425 IW_EV_UINT_PK_LEN, /* IW_HEADER_TYPE_UINT */
426 IW_EV_FREQ_PK_LEN, /* IW_HEADER_TYPE_FREQ */
427 IW_EV_ADDR_PK_LEN, /* IW_HEADER_TYPE_ADDR */
429 IW_EV_POINT_PK_LEN, /* Without variable payload */
430 IW_EV_PARAM_PK_LEN, /* IW_HEADER_TYPE_PARAM */
431 IW_EV_QUAL_PK_LEN, /* IW_HEADER_TYPE_QUAL */
434 /************************ COMMON SUBROUTINES ************************/
436 * Stuff that may be used in various place or doesn't fit in one
437 * of the section below.
440 /* ---------------------------------------------------------------- */
442 * Return the driver handler associated with a specific Wireless Extension.
444 static iw_handler get_handler(struct net_device *dev, unsigned int cmd)
446 /* Don't "optimise" the following variable, it will crash */
447 unsigned int index; /* *MUST* be unsigned */
449 /* Check if we have some wireless handlers defined */
450 if (dev->wireless_handlers == NULL)
453 /* Try as a standard command */
454 index = cmd - SIOCIWFIRST;
455 if (index < dev->wireless_handlers->num_standard)
456 return dev->wireless_handlers->standard[index];
458 /* Try as a private command */
459 index = cmd - SIOCIWFIRSTPRIV;
460 if (index < dev->wireless_handlers->num_private)
461 return dev->wireless_handlers->private[index];
467 /* ---------------------------------------------------------------- */
469 * Get statistics out of the driver
471 static struct iw_statistics *get_wireless_stats(struct net_device *dev)
474 if ((dev->wireless_handlers != NULL) &&
475 (dev->wireless_handlers->get_wireless_stats != NULL))
476 return dev->wireless_handlers->get_wireless_stats(dev);
482 /* ---------------------------------------------------------------- */
484 * Call the commit handler in the driver
485 * (if exist and if conditions are right)
487 * Note : our current commit strategy is currently pretty dumb,
488 * but we will be able to improve on that...
489 * The goal is to try to agreagate as many changes as possible
490 * before doing the commit. Drivers that will define a commit handler
491 * are usually those that need a reset after changing parameters, so
492 * we want to minimise the number of reset.
493 * A cool idea is to use a timer : at each "set" command, we re-set the
494 * timer, when the timer eventually fires, we call the driver.
495 * Hopefully, more on that later.
497 * Also, I'm waiting to see how many people will complain about the
498 * netif_running(dev) test. I'm open on that one...
499 * Hopefully, the driver will remember to do a commit in "open()" ;-)
501 static int call_commit_handler(struct net_device *dev)
503 if ((netif_running(dev)) &&
504 (dev->wireless_handlers->standard[0] != NULL))
505 /* Call the commit handler on the driver */
506 return dev->wireless_handlers->standard[0](dev, NULL,
509 return 0; /* Command completed successfully */
512 /* ---------------------------------------------------------------- */
514 * Calculate size of private arguments
516 static inline int get_priv_size(__u16 args)
518 int num = args & IW_PRIV_SIZE_MASK;
519 int type = (args & IW_PRIV_TYPE_MASK) >> 12;
521 return num * iw_priv_type_size[type];
524 /* ---------------------------------------------------------------- */
526 * Re-calculate the size of private arguments
528 static inline int adjust_priv_size(__u16 args,
529 union iwreq_data * wrqu)
531 int num = wrqu->data.length;
532 int max = args & IW_PRIV_SIZE_MASK;
533 int type = (args & IW_PRIV_TYPE_MASK) >> 12;
535 /* Make sure the driver doesn't goof up */
539 return num * iw_priv_type_size[type];
542 /* ---------------------------------------------------------------- */
544 * Standard Wireless Handler : get wireless stats
545 * Allow programatic access to /proc/net/wireless even if /proc
546 * doesn't exist... Also more efficient...
548 static int iw_handler_get_iwstats(struct net_device * dev,
549 struct iw_request_info * info,
550 union iwreq_data * wrqu,
553 /* Get stats from the driver */
554 struct iw_statistics *stats;
556 stats = get_wireless_stats(dev);
558 /* Copy statistics to extra */
559 memcpy(extra, stats, sizeof(struct iw_statistics));
560 wrqu->data.length = sizeof(struct iw_statistics);
562 /* Check if we need to clear the updated flag */
563 if (wrqu->data.flags != 0)
564 stats->qual.updated &= ~IW_QUAL_ALL_UPDATED;
570 /* ---------------------------------------------------------------- */
572 * Standard Wireless Handler : get iwpriv definitions
573 * Export the driver private handler definition
574 * They will be picked up by tools like iwpriv...
576 static int iw_handler_get_private(struct net_device * dev,
577 struct iw_request_info * info,
578 union iwreq_data * wrqu,
581 /* Check if the driver has something to export */
582 if ((dev->wireless_handlers->num_private_args == 0) ||
583 (dev->wireless_handlers->private_args == NULL))
586 /* Check if there is enough buffer up there */
587 if (wrqu->data.length < dev->wireless_handlers->num_private_args) {
588 /* User space can't know in advance how large the buffer
589 * needs to be. Give it a hint, so that we can support
590 * any size buffer we want somewhat efficiently... */
591 wrqu->data.length = dev->wireless_handlers->num_private_args;
595 /* Set the number of available ioctls. */
596 wrqu->data.length = dev->wireless_handlers->num_private_args;
598 /* Copy structure to the user buffer. */
599 memcpy(extra, dev->wireless_handlers->private_args,
600 sizeof(struct iw_priv_args) * wrqu->data.length);
606 /******************** /proc/net/wireless SUPPORT ********************/
608 * The /proc/net/wireless file is a human readable user-space interface
609 * exporting various wireless specific statistics from the wireless devices.
610 * This is the most popular part of the Wireless Extensions ;-)
612 * This interface is a pure clone of /proc/net/dev (in net/core/dev.c).
613 * The content of the file is basically the content of "struct iw_statistics".
616 #ifdef CONFIG_PROC_FS
618 /* ---------------------------------------------------------------- */
620 * Print one entry (line) of /proc/net/wireless
622 static void wireless_seq_printf_stats(struct seq_file *seq,
623 struct net_device *dev)
625 /* Get stats from the driver */
626 struct iw_statistics *stats = get_wireless_stats(dev);
629 seq_printf(seq, "%6s: %04x %3d%c %3d%c %3d%c %6d %6d %6d "
631 dev->name, stats->status, stats->qual.qual,
632 stats->qual.updated & IW_QUAL_QUAL_UPDATED
634 ((__s32) stats->qual.level) -
635 ((stats->qual.updated & IW_QUAL_DBM) ? 0x100 : 0),
636 stats->qual.updated & IW_QUAL_LEVEL_UPDATED
638 ((__s32) stats->qual.noise) -
639 ((stats->qual.updated & IW_QUAL_DBM) ? 0x100 : 0),
640 stats->qual.updated & IW_QUAL_NOISE_UPDATED
642 stats->discard.nwid, stats->discard.code,
643 stats->discard.fragment, stats->discard.retries,
644 stats->discard.misc, stats->miss.beacon);
645 stats->qual.updated &= ~IW_QUAL_ALL_UPDATED;
649 /* ---------------------------------------------------------------- */
651 * Print info for /proc/net/wireless (print all entries)
653 static int wireless_seq_show(struct seq_file *seq, void *v)
655 if (v == SEQ_START_TOKEN)
656 seq_printf(seq, "Inter-| sta-| Quality | Discarded "
657 "packets | Missed | WE\n"
658 " face | tus | link level noise | nwid "
659 "crypt frag retry misc | beacon | %d\n",
662 wireless_seq_printf_stats(seq, v);
666 static const struct seq_operations wireless_seq_ops = {
667 .start = dev_seq_start,
668 .next = dev_seq_next,
669 .stop = dev_seq_stop,
670 .show = wireless_seq_show,
673 static int wireless_seq_open(struct inode *inode, struct file *file)
675 return seq_open(file, &wireless_seq_ops);
678 static const struct file_operations wireless_seq_fops = {
679 .owner = THIS_MODULE,
680 .open = wireless_seq_open,
683 .release = seq_release,
686 int __init wext_proc_init(void)
688 /* Create /proc/net/wireless entry */
689 if (!proc_net_fops_create("wireless", S_IRUGO, &wireless_seq_fops))
694 #endif /* CONFIG_PROC_FS */
696 /************************** IOCTL SUPPORT **************************/
698 * The original user space API to configure all those Wireless Extensions
700 * In there, we check if we need to call the new driver API (iw_handler)
701 * or just call the driver ioctl handler.
704 /* ---------------------------------------------------------------- */
706 * Wrapper to call a standard Wireless Extension handler.
707 * We do various checks and also take care of moving data between
708 * user space and kernel space.
710 static int ioctl_standard_call(struct net_device * dev,
715 struct iwreq * iwr = (struct iwreq *) ifr;
716 const struct iw_ioctl_description * descr;
717 struct iw_request_info info;
720 /* Get the description of the IOCTL */
721 if ((cmd - SIOCIWFIRST) >= standard_ioctl_num)
723 descr = &(standard_ioctl[cmd - SIOCIWFIRST]);
725 /* Prepare the call */
729 /* Check if we have a pointer to user space data or not */
730 if (descr->header_type != IW_HEADER_TYPE_POINT) {
732 /* No extra arguments. Trivial to handle */
733 ret = handler(dev, &info, &(iwr->u), NULL);
735 /* Generate an event to notify listeners of the change */
736 if ((descr->flags & IW_DESCR_FLAG_EVENT) &&
737 ((ret == 0) || (ret == -EIWCOMMIT)))
738 wireless_send_event(dev, cmd, &(iwr->u), NULL);
744 int essid_compat = 0;
746 /* Calculate space needed by arguments. Always allocate
747 * for max space. Easier, and won't last long... */
748 extra_size = descr->max_tokens * descr->token_size;
750 /* Check need for ESSID compatibility for WE < 21 */
756 if (iwr->u.data.length == descr->max_tokens + 1)
758 else if (IW_IS_SET(cmd) && (iwr->u.data.length != 0)) {
759 char essid[IW_ESSID_MAX_SIZE + 1];
761 err = copy_from_user(essid, iwr->u.data.pointer,
767 if (essid[iwr->u.data.length - 1] == '\0')
775 iwr->u.data.length -= essid_compat;
777 /* Check what user space is giving us */
778 if (IW_IS_SET(cmd)) {
779 /* Check NULL pointer */
780 if ((iwr->u.data.pointer == NULL) &&
781 (iwr->u.data.length != 0))
783 /* Check if number of token fits within bounds */
784 if (iwr->u.data.length > descr->max_tokens)
786 if (iwr->u.data.length < descr->min_tokens)
789 /* Check NULL pointer */
790 if (iwr->u.data.pointer == NULL)
792 /* Save user space buffer size for checking */
793 user_length = iwr->u.data.length;
795 /* Don't check if user_length > max to allow forward
796 * compatibility. The test user_length < min is
797 * implied by the test at the end. */
799 /* Support for very large requests */
800 if ((descr->flags & IW_DESCR_FLAG_NOMAX) &&
801 (user_length > descr->max_tokens)) {
802 /* Allow userspace to GET more than max so
803 * we can support any size GET requests.
804 * There is still a limit : -ENOMEM. */
805 extra_size = user_length * descr->token_size;
806 /* Note : user_length is originally a __u16,
807 * and token_size is controlled by us,
808 * so extra_size won't get negative and
809 * won't overflow... */
813 /* Create the kernel buffer */
814 /* kzalloc ensures NULL-termination for essid_compat */
815 extra = kzalloc(extra_size, GFP_KERNEL);
819 /* If it is a SET, get all the extra data in here */
820 if (IW_IS_SET(cmd) && (iwr->u.data.length != 0)) {
821 err = copy_from_user(extra, iwr->u.data.pointer,
830 /* Call the handler */
831 ret = handler(dev, &info, &(iwr->u), extra);
833 iwr->u.data.length += essid_compat;
835 /* If we have something to return to the user */
836 if (!ret && IW_IS_GET(cmd)) {
837 /* Check if there is enough buffer up there */
838 if (user_length < iwr->u.data.length) {
843 err = copy_to_user(iwr->u.data.pointer, extra,
850 /* Generate an event to notify listeners of the change */
851 if ((descr->flags & IW_DESCR_FLAG_EVENT) &&
852 ((ret == 0) || (ret == -EIWCOMMIT))) {
853 if (descr->flags & IW_DESCR_FLAG_RESTRICT)
854 /* If the event is restricted, don't
855 * export the payload */
856 wireless_send_event(dev, cmd, &(iwr->u), NULL);
858 wireless_send_event(dev, cmd, &(iwr->u),
862 /* Cleanup - I told you it wasn't that long ;-) */
866 /* Call commit handler if needed and defined */
867 if (ret == -EIWCOMMIT)
868 ret = call_commit_handler(dev);
870 /* Here, we will generate the appropriate event if needed */
875 /* ---------------------------------------------------------------- */
877 * Wrapper to call a private Wireless Extension handler.
878 * We do various checks and also take care of moving data between
879 * user space and kernel space.
880 * It's not as nice and slimline as the standard wrapper. The cause
881 * is struct iw_priv_args, which was not really designed for the
882 * job we are going here.
884 * IMPORTANT : This function prevent to set and get data on the same
885 * IOCTL and enforce the SET/GET convention. Not doing it would be
887 * If you need to set and get data at the same time, please don't use
888 * a iw_handler but process it in your ioctl handler (i.e. use the
891 static int ioctl_private_call(struct net_device *dev, struct ifreq *ifr,
892 unsigned int cmd, iw_handler handler)
894 struct iwreq * iwr = (struct iwreq *) ifr;
895 const struct iw_priv_args * descr = NULL;
896 struct iw_request_info info;
901 /* Get the description of the IOCTL */
902 for (i = 0; i < dev->wireless_handlers->num_private_args; i++)
903 if (cmd == dev->wireless_handlers->private_args[i].cmd) {
904 descr = &(dev->wireless_handlers->private_args[i]);
908 /* Compute the size of the set/get arguments */
910 if (IW_IS_SET(cmd)) {
911 int offset = 0; /* For sub-ioctls */
912 /* Check for sub-ioctl handler */
913 if (descr->name[0] == '\0')
914 /* Reserve one int for sub-ioctl index */
915 offset = sizeof(__u32);
917 /* Size of set arguments */
918 extra_size = get_priv_size(descr->set_args);
920 /* Does it fits in iwr ? */
921 if ((descr->set_args & IW_PRIV_SIZE_FIXED) &&
922 ((extra_size + offset) <= IFNAMSIZ))
925 /* Size of get arguments */
926 extra_size = get_priv_size(descr->get_args);
928 /* Does it fits in iwr ? */
929 if ((descr->get_args & IW_PRIV_SIZE_FIXED) &&
930 (extra_size <= IFNAMSIZ))
935 /* Prepare the call */
939 /* Check if we have a pointer to user space data or not. */
940 if (extra_size == 0) {
941 /* No extra arguments. Trivial to handle */
942 ret = handler(dev, &info, &(iwr->u), (char *) &(iwr->u));
947 /* Check what user space is giving us */
948 if (IW_IS_SET(cmd)) {
949 /* Check NULL pointer */
950 if ((iwr->u.data.pointer == NULL) &&
951 (iwr->u.data.length != 0))
954 /* Does it fits within bounds ? */
955 if (iwr->u.data.length > (descr->set_args &
958 } else if (iwr->u.data.pointer == NULL)
961 /* Always allocate for max space. Easier, and won't last
963 extra = kmalloc(extra_size, GFP_KERNEL);
967 /* If it is a SET, get all the extra data in here */
968 if (IW_IS_SET(cmd) && (iwr->u.data.length != 0)) {
969 err = copy_from_user(extra, iwr->u.data.pointer,
977 /* Call the handler */
978 ret = handler(dev, &info, &(iwr->u), extra);
980 /* If we have something to return to the user */
981 if (!ret && IW_IS_GET(cmd)) {
983 /* Adjust for the actual length if it's variable,
984 * avoid leaking kernel bits outside. */
985 if (!(descr->get_args & IW_PRIV_SIZE_FIXED)) {
986 extra_size = adjust_priv_size(descr->get_args,
990 err = copy_to_user(iwr->u.data.pointer, extra,
996 /* Cleanup - I told you it wasn't that long ;-) */
1001 /* Call commit handler if needed and defined */
1002 if (ret == -EIWCOMMIT)
1003 ret = call_commit_handler(dev);
1008 /* ---------------------------------------------------------------- */
1010 * Main IOCTl dispatcher.
1011 * Check the type of IOCTL and call the appropriate wrapper...
1013 static int wireless_process_ioctl(struct ifreq *ifr, unsigned int cmd)
1015 struct net_device *dev;
1018 /* Permissions are already checked in dev_ioctl() before calling us.
1019 * The copy_to/from_user() of ifr is also dealt with in there */
1021 /* Make sure the device exist */
1022 if ((dev = __dev_get_by_name(ifr->ifr_name)) == NULL)
1025 /* A bunch of special cases, then the generic case...
1026 * Note that 'cmd' is already filtered in dev_ioctl() with
1027 * (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) */
1028 if (cmd == SIOCGIWSTATS)
1029 return ioctl_standard_call(dev, ifr, cmd,
1030 &iw_handler_get_iwstats);
1032 if (cmd == SIOCGIWPRIV && dev->wireless_handlers)
1033 return ioctl_standard_call(dev, ifr, cmd,
1034 &iw_handler_get_private);
1037 if (!netif_device_present(dev))
1040 /* New driver API : try to find the handler */
1041 handler = get_handler(dev, cmd);
1043 /* Standard and private are not the same */
1044 if (cmd < SIOCIWFIRSTPRIV)
1045 return ioctl_standard_call(dev, ifr, cmd, handler);
1047 return ioctl_private_call(dev, ifr, cmd, handler);
1049 /* Old driver API : call driver ioctl handler */
1051 return dev->do_ioctl(dev, ifr, cmd);
1055 /* entry point from dev ioctl */
1056 int wext_handle_ioctl(struct ifreq *ifr, unsigned int cmd,
1061 /* If command is `set a parameter', or
1062 * `get the encoding parameters', check if
1063 * the user has the right to do it */
1064 if ((IW_IS_SET(cmd) || cmd == SIOCGIWENCODE || cmd == SIOCGIWENCODEEXT)
1065 && !capable(CAP_NET_ADMIN))
1068 dev_load(ifr->ifr_name);
1070 ret = wireless_process_ioctl(ifr, cmd);
1072 if (IW_IS_GET(cmd) && copy_to_user(arg, ifr, sizeof(struct ifreq)))
1077 /************************* EVENT PROCESSING *************************/
1079 * Process events generated by the wireless layer or the driver.
1080 * Most often, the event will be propagated through rtnetlink
1083 /* ---------------------------------------------------------------- */
1088 * Thanks to Herbert Xu <herbert@gondor.apana.org.au> for fixing
1089 * the locking issue in here and implementing this code !
1091 * The issue : wireless_send_event() is often called in interrupt context,
1092 * while the Netlink layer can never be called in interrupt context.
1093 * The fully formed RtNetlink events are queued, and then a tasklet is run
1094 * to feed those to Netlink.
1095 * The skb_queue is interrupt safe, and its lock is not held while calling
1096 * Netlink, so there is no possibility of dealock.
1100 static struct sk_buff_head wireless_nlevent_queue;
1102 static int __init wireless_nlevent_init(void)
1104 skb_queue_head_init(&wireless_nlevent_queue);
1108 subsys_initcall(wireless_nlevent_init);
1110 static void wireless_nlevent_process(unsigned long data)
1112 struct sk_buff *skb;
1114 while ((skb = skb_dequeue(&wireless_nlevent_queue)))
1115 rtnl_notify(skb, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC);
1118 static DECLARE_TASKLET(wireless_nlevent_tasklet, wireless_nlevent_process, 0);
1120 /* ---------------------------------------------------------------- */
1122 * Fill a rtnetlink message with our event data.
1123 * Note that we propage only the specified event and don't dump the
1124 * current wireless config. Dumping the wireless config is far too
1125 * expensive (for each parameter, the driver need to query the hardware).
1127 static int rtnetlink_fill_iwinfo(struct sk_buff *skb, struct net_device *dev,
1128 int type, char *event, int event_len)
1130 struct ifinfomsg *r;
1131 struct nlmsghdr *nlh;
1132 unsigned char *b = skb_tail_pointer(skb);
1134 nlh = NLMSG_PUT(skb, 0, 0, type, sizeof(*r));
1135 r = NLMSG_DATA(nlh);
1136 r->ifi_family = AF_UNSPEC;
1138 r->ifi_type = dev->type;
1139 r->ifi_index = dev->ifindex;
1140 r->ifi_flags = dev_get_flags(dev);
1141 r->ifi_change = 0; /* Wireless changes don't affect those flags */
1143 /* Add the wireless events in the netlink packet */
1144 RTA_PUT(skb, IFLA_WIRELESS, event_len, event);
1146 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
1155 /* ---------------------------------------------------------------- */
1157 * Create and broadcast and send it on the standard rtnetlink socket
1158 * This is a pure clone rtmsg_ifinfo() in net/core/rtnetlink.c
1159 * Andrzej Krzysztofowicz mandated that I used a IFLA_XXX field
1160 * within a RTM_NEWLINK event.
1162 static void rtmsg_iwinfo(struct net_device *dev, char *event, int event_len)
1164 struct sk_buff *skb;
1165 int size = NLMSG_GOODSIZE;
1167 skb = alloc_skb(size, GFP_ATOMIC);
1171 if (rtnetlink_fill_iwinfo(skb, dev, RTM_NEWLINK,
1172 event, event_len) < 0) {
1176 NETLINK_CB(skb).dst_group = RTNLGRP_LINK;
1177 skb_queue_tail(&wireless_nlevent_queue, skb);
1178 tasklet_schedule(&wireless_nlevent_tasklet);
1181 /* ---------------------------------------------------------------- */
1183 * Main event dispatcher. Called from other parts and drivers.
1184 * Send the event on the appropriate channels.
1185 * May be called from interrupt context.
1187 void wireless_send_event(struct net_device * dev,
1189 union iwreq_data * wrqu,
1192 const struct iw_ioctl_description * descr = NULL;
1194 struct iw_event *event; /* Mallocated whole event */
1195 int event_len; /* Its size */
1196 int hdr_len; /* Size of the event header */
1197 int wrqu_off = 0; /* Offset in wrqu */
1198 /* Don't "optimise" the following variable, it will crash */
1199 unsigned cmd_index; /* *MUST* be unsigned */
1201 /* Get the description of the Event */
1202 if (cmd <= SIOCIWLAST) {
1203 cmd_index = cmd - SIOCIWFIRST;
1204 if (cmd_index < standard_ioctl_num)
1205 descr = &(standard_ioctl[cmd_index]);
1207 cmd_index = cmd - IWEVFIRST;
1208 if (cmd_index < standard_event_num)
1209 descr = &(standard_event[cmd_index]);
1211 /* Don't accept unknown events */
1212 if (descr == NULL) {
1213 /* Note : we don't return an error to the driver, because
1214 * the driver would not know what to do about it. It can't
1215 * return an error to the user, because the event is not
1216 * initiated by a user request.
1217 * The best the driver could do is to log an error message.
1218 * We will do it ourselves instead...
1220 printk(KERN_ERR "%s (WE) : Invalid/Unknown Wireless Event (0x%04X)\n",
1225 /* Check extra parameters and set extra_len */
1226 if (descr->header_type == IW_HEADER_TYPE_POINT) {
1227 /* Check if number of token fits within bounds */
1228 if (wrqu->data.length > descr->max_tokens) {
1229 printk(KERN_ERR "%s (WE) : Wireless Event too big (%d)\n", dev->name, wrqu->data.length);
1232 if (wrqu->data.length < descr->min_tokens) {
1233 printk(KERN_ERR "%s (WE) : Wireless Event too small (%d)\n", dev->name, wrqu->data.length);
1236 /* Calculate extra_len - extra is NULL for restricted events */
1238 extra_len = wrqu->data.length * descr->token_size;
1239 /* Always at an offset in wrqu */
1240 wrqu_off = IW_EV_POINT_OFF;
1243 /* Total length of the event */
1244 hdr_len = event_type_size[descr->header_type];
1245 event_len = hdr_len + extra_len;
1247 /* Create temporary buffer to hold the event */
1248 event = kmalloc(event_len, GFP_ATOMIC);
1253 event->len = event_len;
1255 memcpy(&event->u, ((char *) wrqu) + wrqu_off, hdr_len - IW_EV_LCP_LEN);
1257 memcpy(((char *) event) + hdr_len, extra, extra_len);
1259 /* Send via the RtNetlink event channel */
1260 rtmsg_iwinfo(dev, (char *) event, event_len);
1265 return; /* Always success, I guess ;-) */
1267 EXPORT_SYMBOL(wireless_send_event);
1269 /********************** ENHANCED IWSPY SUPPORT **********************/
1271 * In the old days, the driver was handling spy support all by itself.
1272 * Now, the driver can delegate this task to Wireless Extensions.
1273 * It needs to use those standard spy iw_handler in struct iw_handler_def,
1274 * push data to us via wireless_spy_update() and include struct iw_spy_data
1275 * in its private part (and export it in net_device->wireless_data->spy_data).
1276 * One of the main advantage of centralising spy support here is that
1277 * it becomes much easier to improve and extend it without having to touch
1278 * the drivers. One example is the addition of the Spy-Threshold events.
1281 /* ---------------------------------------------------------------- */
1283 * Return the pointer to the spy data in the driver.
1284 * Because this is called on the Rx path via wireless_spy_update(),
1285 * we want it to be efficient...
1287 static inline struct iw_spy_data *get_spydata(struct net_device *dev)
1289 /* This is the new way */
1290 if (dev->wireless_data)
1291 return dev->wireless_data->spy_data;
1295 /*------------------------------------------------------------------*/
1297 * Standard Wireless Handler : set Spy List
1299 int iw_handler_set_spy(struct net_device * dev,
1300 struct iw_request_info * info,
1301 union iwreq_data * wrqu,
1304 struct iw_spy_data * spydata = get_spydata(dev);
1305 struct sockaddr * address = (struct sockaddr *) extra;
1307 /* Make sure driver is not buggy or using the old API */
1311 /* Disable spy collection while we copy the addresses.
1312 * While we copy addresses, any call to wireless_spy_update()
1313 * will NOP. This is OK, as anyway the addresses are changing. */
1314 spydata->spy_number = 0;
1316 /* We want to operate without locking, because wireless_spy_update()
1317 * most likely will happen in the interrupt handler, and therefore
1318 * have its own locking constraints and needs performance.
1319 * The rtnl_lock() make sure we don't race with the other iw_handlers.
1320 * This make sure wireless_spy_update() "see" that the spy list
1321 * is temporarily disabled. */
1324 /* Are there are addresses to copy? */
1325 if (wrqu->data.length > 0) {
1328 /* Copy addresses */
1329 for (i = 0; i < wrqu->data.length; i++)
1330 memcpy(spydata->spy_address[i], address[i].sa_data,
1333 memset(spydata->spy_stat, 0,
1334 sizeof(struct iw_quality) * IW_MAX_SPY);
1337 /* Make sure above is updated before re-enabling */
1340 /* Enable addresses */
1341 spydata->spy_number = wrqu->data.length;
1345 EXPORT_SYMBOL(iw_handler_set_spy);
1347 /*------------------------------------------------------------------*/
1349 * Standard Wireless Handler : get Spy List
1351 int iw_handler_get_spy(struct net_device * dev,
1352 struct iw_request_info * info,
1353 union iwreq_data * wrqu,
1356 struct iw_spy_data * spydata = get_spydata(dev);
1357 struct sockaddr * address = (struct sockaddr *) extra;
1360 /* Make sure driver is not buggy or using the old API */
1364 wrqu->data.length = spydata->spy_number;
1366 /* Copy addresses. */
1367 for (i = 0; i < spydata->spy_number; i++) {
1368 memcpy(address[i].sa_data, spydata->spy_address[i], ETH_ALEN);
1369 address[i].sa_family = AF_UNIX;
1371 /* Copy stats to the user buffer (just after). */
1372 if (spydata->spy_number > 0)
1373 memcpy(extra + (sizeof(struct sockaddr) *spydata->spy_number),
1375 sizeof(struct iw_quality) * spydata->spy_number);
1376 /* Reset updated flags. */
1377 for (i = 0; i < spydata->spy_number; i++)
1378 spydata->spy_stat[i].updated &= ~IW_QUAL_ALL_UPDATED;
1381 EXPORT_SYMBOL(iw_handler_get_spy);
1383 /*------------------------------------------------------------------*/
1385 * Standard Wireless Handler : set spy threshold
1387 int iw_handler_set_thrspy(struct net_device * dev,
1388 struct iw_request_info *info,
1389 union iwreq_data * wrqu,
1392 struct iw_spy_data * spydata = get_spydata(dev);
1393 struct iw_thrspy * threshold = (struct iw_thrspy *) extra;
1395 /* Make sure driver is not buggy or using the old API */
1400 memcpy(&(spydata->spy_thr_low), &(threshold->low),
1401 2 * sizeof(struct iw_quality));
1404 memset(spydata->spy_thr_under, '\0', sizeof(spydata->spy_thr_under));
1408 EXPORT_SYMBOL(iw_handler_set_thrspy);
1410 /*------------------------------------------------------------------*/
1412 * Standard Wireless Handler : get spy threshold
1414 int iw_handler_get_thrspy(struct net_device * dev,
1415 struct iw_request_info *info,
1416 union iwreq_data * wrqu,
1419 struct iw_spy_data * spydata = get_spydata(dev);
1420 struct iw_thrspy * threshold = (struct iw_thrspy *) extra;
1422 /* Make sure driver is not buggy or using the old API */
1427 memcpy(&(threshold->low), &(spydata->spy_thr_low),
1428 2 * sizeof(struct iw_quality));
1432 EXPORT_SYMBOL(iw_handler_get_thrspy);
1434 /*------------------------------------------------------------------*/
1436 * Prepare and send a Spy Threshold event
1438 static void iw_send_thrspy_event(struct net_device * dev,
1439 struct iw_spy_data * spydata,
1440 unsigned char * address,
1441 struct iw_quality * wstats)
1443 union iwreq_data wrqu;
1444 struct iw_thrspy threshold;
1447 wrqu.data.length = 1;
1448 wrqu.data.flags = 0;
1450 memcpy(threshold.addr.sa_data, address, ETH_ALEN);
1451 threshold.addr.sa_family = ARPHRD_ETHER;
1453 memcpy(&(threshold.qual), wstats, sizeof(struct iw_quality));
1454 /* Copy also thresholds */
1455 memcpy(&(threshold.low), &(spydata->spy_thr_low),
1456 2 * sizeof(struct iw_quality));
1458 /* Send event to user space */
1459 wireless_send_event(dev, SIOCGIWTHRSPY, &wrqu, (char *) &threshold);
1462 /* ---------------------------------------------------------------- */
1464 * Call for the driver to update the spy data.
1465 * For now, the spy data is a simple array. As the size of the array is
1466 * small, this is good enough. If we wanted to support larger number of
1467 * spy addresses, we should use something more efficient...
1469 void wireless_spy_update(struct net_device * dev,
1470 unsigned char * address,
1471 struct iw_quality * wstats)
1473 struct iw_spy_data * spydata = get_spydata(dev);
1477 /* Make sure driver is not buggy or using the old API */
1481 /* Update all records that match */
1482 for (i = 0; i < spydata->spy_number; i++)
1483 if (!compare_ether_addr(address, spydata->spy_address[i])) {
1484 memcpy(&(spydata->spy_stat[i]), wstats,
1485 sizeof(struct iw_quality));
1489 /* Generate an event if we cross the spy threshold.
1490 * To avoid event storms, we have a simple hysteresis : we generate
1491 * event only when we go under the low threshold or above the
1492 * high threshold. */
1494 if (spydata->spy_thr_under[match]) {
1495 if (wstats->level > spydata->spy_thr_high.level) {
1496 spydata->spy_thr_under[match] = 0;
1497 iw_send_thrspy_event(dev, spydata,
1501 if (wstats->level < spydata->spy_thr_low.level) {
1502 spydata->spy_thr_under[match] = 1;
1503 iw_send_thrspy_event(dev, spydata,
1509 EXPORT_SYMBOL(wireless_spy_update);