Merge git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable
[linux-2.6/mini2440.git] / net / wireless / wext.c
blob0e59f9ae9b81fadcff031f044a2b1bfa14e21d3c
1 /*
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)
8 */
10 /************************** DOCUMENTATION **************************/
12 * API definition :
13 * --------------
14 * See <linux/wireless.h> for details of the APIs and the rest.
16 * History :
17 * -------
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 lose 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>
96 #include <net/net_namespace.h>
98 #include <linux/wireless.h> /* Pretty obvious */
99 #include <net/iw_handler.h> /* New driver API */
100 #include <net/netlink.h>
101 #include <net/wext.h>
103 #include <asm/uaccess.h> /* copy_to_user() */
105 /************************* GLOBAL VARIABLES *************************/
107 * You should not use global variables, because of re-entrancy.
108 * On our case, it's only const, so it's OK...
111 * Meta-data about all the standard Wireless Extension request we
112 * know about.
114 static const struct iw_ioctl_description standard_ioctl[] = {
115 [SIOCSIWCOMMIT - SIOCIWFIRST] = {
116 .header_type = IW_HEADER_TYPE_NULL,
118 [SIOCGIWNAME - SIOCIWFIRST] = {
119 .header_type = IW_HEADER_TYPE_CHAR,
120 .flags = IW_DESCR_FLAG_DUMP,
122 [SIOCSIWNWID - SIOCIWFIRST] = {
123 .header_type = IW_HEADER_TYPE_PARAM,
124 .flags = IW_DESCR_FLAG_EVENT,
126 [SIOCGIWNWID - SIOCIWFIRST] = {
127 .header_type = IW_HEADER_TYPE_PARAM,
128 .flags = IW_DESCR_FLAG_DUMP,
130 [SIOCSIWFREQ - SIOCIWFIRST] = {
131 .header_type = IW_HEADER_TYPE_FREQ,
132 .flags = IW_DESCR_FLAG_EVENT,
134 [SIOCGIWFREQ - SIOCIWFIRST] = {
135 .header_type = IW_HEADER_TYPE_FREQ,
136 .flags = IW_DESCR_FLAG_DUMP,
138 [SIOCSIWMODE - SIOCIWFIRST] = {
139 .header_type = IW_HEADER_TYPE_UINT,
140 .flags = IW_DESCR_FLAG_EVENT,
142 [SIOCGIWMODE - SIOCIWFIRST] = {
143 .header_type = IW_HEADER_TYPE_UINT,
144 .flags = IW_DESCR_FLAG_DUMP,
146 [SIOCSIWSENS - SIOCIWFIRST] = {
147 .header_type = IW_HEADER_TYPE_PARAM,
149 [SIOCGIWSENS - SIOCIWFIRST] = {
150 .header_type = IW_HEADER_TYPE_PARAM,
152 [SIOCSIWRANGE - SIOCIWFIRST] = {
153 .header_type = IW_HEADER_TYPE_NULL,
155 [SIOCGIWRANGE - SIOCIWFIRST] = {
156 .header_type = IW_HEADER_TYPE_POINT,
157 .token_size = 1,
158 .max_tokens = sizeof(struct iw_range),
159 .flags = IW_DESCR_FLAG_DUMP,
161 [SIOCSIWPRIV - SIOCIWFIRST] = {
162 .header_type = IW_HEADER_TYPE_NULL,
164 [SIOCGIWPRIV - SIOCIWFIRST] = { /* (handled directly by us) */
165 .header_type = IW_HEADER_TYPE_POINT,
166 .token_size = sizeof(struct iw_priv_args),
167 .max_tokens = 16,
168 .flags = IW_DESCR_FLAG_NOMAX,
170 [SIOCSIWSTATS - SIOCIWFIRST] = {
171 .header_type = IW_HEADER_TYPE_NULL,
173 [SIOCGIWSTATS - SIOCIWFIRST] = { /* (handled directly by us) */
174 .header_type = IW_HEADER_TYPE_POINT,
175 .token_size = 1,
176 .max_tokens = sizeof(struct iw_statistics),
177 .flags = IW_DESCR_FLAG_DUMP,
179 [SIOCSIWSPY - SIOCIWFIRST] = {
180 .header_type = IW_HEADER_TYPE_POINT,
181 .token_size = sizeof(struct sockaddr),
182 .max_tokens = IW_MAX_SPY,
184 [SIOCGIWSPY - SIOCIWFIRST] = {
185 .header_type = IW_HEADER_TYPE_POINT,
186 .token_size = sizeof(struct sockaddr) +
187 sizeof(struct iw_quality),
188 .max_tokens = IW_MAX_SPY,
190 [SIOCSIWTHRSPY - SIOCIWFIRST] = {
191 .header_type = IW_HEADER_TYPE_POINT,
192 .token_size = sizeof(struct iw_thrspy),
193 .min_tokens = 1,
194 .max_tokens = 1,
196 [SIOCGIWTHRSPY - SIOCIWFIRST] = {
197 .header_type = IW_HEADER_TYPE_POINT,
198 .token_size = sizeof(struct iw_thrspy),
199 .min_tokens = 1,
200 .max_tokens = 1,
202 [SIOCSIWAP - SIOCIWFIRST] = {
203 .header_type = IW_HEADER_TYPE_ADDR,
205 [SIOCGIWAP - SIOCIWFIRST] = {
206 .header_type = IW_HEADER_TYPE_ADDR,
207 .flags = IW_DESCR_FLAG_DUMP,
209 [SIOCSIWMLME - SIOCIWFIRST] = {
210 .header_type = IW_HEADER_TYPE_POINT,
211 .token_size = 1,
212 .min_tokens = sizeof(struct iw_mlme),
213 .max_tokens = sizeof(struct iw_mlme),
215 [SIOCGIWAPLIST - SIOCIWFIRST] = {
216 .header_type = IW_HEADER_TYPE_POINT,
217 .token_size = sizeof(struct sockaddr) +
218 sizeof(struct iw_quality),
219 .max_tokens = IW_MAX_AP,
220 .flags = IW_DESCR_FLAG_NOMAX,
222 [SIOCSIWSCAN - SIOCIWFIRST] = {
223 .header_type = IW_HEADER_TYPE_POINT,
224 .token_size = 1,
225 .min_tokens = 0,
226 .max_tokens = sizeof(struct iw_scan_req),
228 [SIOCGIWSCAN - SIOCIWFIRST] = {
229 .header_type = IW_HEADER_TYPE_POINT,
230 .token_size = 1,
231 .max_tokens = IW_SCAN_MAX_DATA,
232 .flags = IW_DESCR_FLAG_NOMAX,
234 [SIOCSIWESSID - SIOCIWFIRST] = {
235 .header_type = IW_HEADER_TYPE_POINT,
236 .token_size = 1,
237 .max_tokens = IW_ESSID_MAX_SIZE,
238 .flags = IW_DESCR_FLAG_EVENT,
240 [SIOCGIWESSID - SIOCIWFIRST] = {
241 .header_type = IW_HEADER_TYPE_POINT,
242 .token_size = 1,
243 .max_tokens = IW_ESSID_MAX_SIZE,
244 .flags = IW_DESCR_FLAG_DUMP,
246 [SIOCSIWNICKN - SIOCIWFIRST] = {
247 .header_type = IW_HEADER_TYPE_POINT,
248 .token_size = 1,
249 .max_tokens = IW_ESSID_MAX_SIZE,
251 [SIOCGIWNICKN - SIOCIWFIRST] = {
252 .header_type = IW_HEADER_TYPE_POINT,
253 .token_size = 1,
254 .max_tokens = IW_ESSID_MAX_SIZE,
256 [SIOCSIWRATE - SIOCIWFIRST] = {
257 .header_type = IW_HEADER_TYPE_PARAM,
259 [SIOCGIWRATE - SIOCIWFIRST] = {
260 .header_type = IW_HEADER_TYPE_PARAM,
262 [SIOCSIWRTS - SIOCIWFIRST] = {
263 .header_type = IW_HEADER_TYPE_PARAM,
265 [SIOCGIWRTS - SIOCIWFIRST] = {
266 .header_type = IW_HEADER_TYPE_PARAM,
268 [SIOCSIWFRAG - SIOCIWFIRST] = {
269 .header_type = IW_HEADER_TYPE_PARAM,
271 [SIOCGIWFRAG - SIOCIWFIRST] = {
272 .header_type = IW_HEADER_TYPE_PARAM,
274 [SIOCSIWTXPOW - SIOCIWFIRST] = {
275 .header_type = IW_HEADER_TYPE_PARAM,
277 [SIOCGIWTXPOW - SIOCIWFIRST] = {
278 .header_type = IW_HEADER_TYPE_PARAM,
280 [SIOCSIWRETRY - SIOCIWFIRST] = {
281 .header_type = IW_HEADER_TYPE_PARAM,
283 [SIOCGIWRETRY - SIOCIWFIRST] = {
284 .header_type = IW_HEADER_TYPE_PARAM,
286 [SIOCSIWENCODE - SIOCIWFIRST] = {
287 .header_type = IW_HEADER_TYPE_POINT,
288 .token_size = 1,
289 .max_tokens = IW_ENCODING_TOKEN_MAX,
290 .flags = IW_DESCR_FLAG_EVENT | IW_DESCR_FLAG_RESTRICT,
292 [SIOCGIWENCODE - SIOCIWFIRST] = {
293 .header_type = IW_HEADER_TYPE_POINT,
294 .token_size = 1,
295 .max_tokens = IW_ENCODING_TOKEN_MAX,
296 .flags = IW_DESCR_FLAG_DUMP | IW_DESCR_FLAG_RESTRICT,
298 [SIOCSIWPOWER - SIOCIWFIRST] = {
299 .header_type = IW_HEADER_TYPE_PARAM,
301 [SIOCGIWPOWER - SIOCIWFIRST] = {
302 .header_type = IW_HEADER_TYPE_PARAM,
304 [SIOCSIWGENIE - SIOCIWFIRST] = {
305 .header_type = IW_HEADER_TYPE_POINT,
306 .token_size = 1,
307 .max_tokens = IW_GENERIC_IE_MAX,
309 [SIOCGIWGENIE - SIOCIWFIRST] = {
310 .header_type = IW_HEADER_TYPE_POINT,
311 .token_size = 1,
312 .max_tokens = IW_GENERIC_IE_MAX,
314 [SIOCSIWAUTH - SIOCIWFIRST] = {
315 .header_type = IW_HEADER_TYPE_PARAM,
317 [SIOCGIWAUTH - SIOCIWFIRST] = {
318 .header_type = IW_HEADER_TYPE_PARAM,
320 [SIOCSIWENCODEEXT - SIOCIWFIRST] = {
321 .header_type = IW_HEADER_TYPE_POINT,
322 .token_size = 1,
323 .min_tokens = sizeof(struct iw_encode_ext),
324 .max_tokens = sizeof(struct iw_encode_ext) +
325 IW_ENCODING_TOKEN_MAX,
327 [SIOCGIWENCODEEXT - SIOCIWFIRST] = {
328 .header_type = IW_HEADER_TYPE_POINT,
329 .token_size = 1,
330 .min_tokens = sizeof(struct iw_encode_ext),
331 .max_tokens = sizeof(struct iw_encode_ext) +
332 IW_ENCODING_TOKEN_MAX,
334 [SIOCSIWPMKSA - SIOCIWFIRST] = {
335 .header_type = IW_HEADER_TYPE_POINT,
336 .token_size = 1,
337 .min_tokens = sizeof(struct iw_pmksa),
338 .max_tokens = sizeof(struct iw_pmksa),
341 static const unsigned standard_ioctl_num = ARRAY_SIZE(standard_ioctl);
344 * Meta-data about all the additional standard Wireless Extension events
345 * we know about.
347 static const struct iw_ioctl_description standard_event[] = {
348 [IWEVTXDROP - IWEVFIRST] = {
349 .header_type = IW_HEADER_TYPE_ADDR,
351 [IWEVQUAL - IWEVFIRST] = {
352 .header_type = IW_HEADER_TYPE_QUAL,
354 [IWEVCUSTOM - IWEVFIRST] = {
355 .header_type = IW_HEADER_TYPE_POINT,
356 .token_size = 1,
357 .max_tokens = IW_CUSTOM_MAX,
359 [IWEVREGISTERED - IWEVFIRST] = {
360 .header_type = IW_HEADER_TYPE_ADDR,
362 [IWEVEXPIRED - IWEVFIRST] = {
363 .header_type = IW_HEADER_TYPE_ADDR,
365 [IWEVGENIE - IWEVFIRST] = {
366 .header_type = IW_HEADER_TYPE_POINT,
367 .token_size = 1,
368 .max_tokens = IW_GENERIC_IE_MAX,
370 [IWEVMICHAELMICFAILURE - IWEVFIRST] = {
371 .header_type = IW_HEADER_TYPE_POINT,
372 .token_size = 1,
373 .max_tokens = sizeof(struct iw_michaelmicfailure),
375 [IWEVASSOCREQIE - IWEVFIRST] = {
376 .header_type = IW_HEADER_TYPE_POINT,
377 .token_size = 1,
378 .max_tokens = IW_GENERIC_IE_MAX,
380 [IWEVASSOCRESPIE - IWEVFIRST] = {
381 .header_type = IW_HEADER_TYPE_POINT,
382 .token_size = 1,
383 .max_tokens = IW_GENERIC_IE_MAX,
385 [IWEVPMKIDCAND - IWEVFIRST] = {
386 .header_type = IW_HEADER_TYPE_POINT,
387 .token_size = 1,
388 .max_tokens = sizeof(struct iw_pmkid_cand),
391 static const unsigned standard_event_num = ARRAY_SIZE(standard_event);
393 /* Size (in bytes) of the various private data types */
394 static const char iw_priv_type_size[] = {
395 0, /* IW_PRIV_TYPE_NONE */
396 1, /* IW_PRIV_TYPE_BYTE */
397 1, /* IW_PRIV_TYPE_CHAR */
398 0, /* Not defined */
399 sizeof(__u32), /* IW_PRIV_TYPE_INT */
400 sizeof(struct iw_freq), /* IW_PRIV_TYPE_FLOAT */
401 sizeof(struct sockaddr), /* IW_PRIV_TYPE_ADDR */
402 0, /* Not defined */
405 /* Size (in bytes) of various events */
406 static const int event_type_size[] = {
407 IW_EV_LCP_LEN, /* IW_HEADER_TYPE_NULL */
409 IW_EV_CHAR_LEN, /* IW_HEADER_TYPE_CHAR */
411 IW_EV_UINT_LEN, /* IW_HEADER_TYPE_UINT */
412 IW_EV_FREQ_LEN, /* IW_HEADER_TYPE_FREQ */
413 IW_EV_ADDR_LEN, /* IW_HEADER_TYPE_ADDR */
415 IW_EV_POINT_LEN, /* Without variable payload */
416 IW_EV_PARAM_LEN, /* IW_HEADER_TYPE_PARAM */
417 IW_EV_QUAL_LEN, /* IW_HEADER_TYPE_QUAL */
421 /************************ COMMON SUBROUTINES ************************/
423 * Stuff that may be used in various place or doesn't fit in one
424 * of the section below.
427 /* ---------------------------------------------------------------- */
429 * Return the driver handler associated with a specific Wireless Extension.
431 static iw_handler get_handler(struct net_device *dev, unsigned int cmd)
433 /* Don't "optimise" the following variable, it will crash */
434 unsigned int index; /* *MUST* be unsigned */
436 /* Check if we have some wireless handlers defined */
437 if (dev->wireless_handlers == NULL)
438 return NULL;
440 /* Try as a standard command */
441 index = cmd - SIOCIWFIRST;
442 if (index < dev->wireless_handlers->num_standard)
443 return dev->wireless_handlers->standard[index];
445 /* Try as a private command */
446 index = cmd - SIOCIWFIRSTPRIV;
447 if (index < dev->wireless_handlers->num_private)
448 return dev->wireless_handlers->private[index];
450 /* Not found */
451 return NULL;
454 /* ---------------------------------------------------------------- */
456 * Get statistics out of the driver
458 static struct iw_statistics *get_wireless_stats(struct net_device *dev)
460 /* New location */
461 if ((dev->wireless_handlers != NULL) &&
462 (dev->wireless_handlers->get_wireless_stats != NULL))
463 return dev->wireless_handlers->get_wireless_stats(dev);
465 /* Not found */
466 return NULL;
469 /* ---------------------------------------------------------------- */
471 * Call the commit handler in the driver
472 * (if exist and if conditions are right)
474 * Note : our current commit strategy is currently pretty dumb,
475 * but we will be able to improve on that...
476 * The goal is to try to agreagate as many changes as possible
477 * before doing the commit. Drivers that will define a commit handler
478 * are usually those that need a reset after changing parameters, so
479 * we want to minimise the number of reset.
480 * A cool idea is to use a timer : at each "set" command, we re-set the
481 * timer, when the timer eventually fires, we call the driver.
482 * Hopefully, more on that later.
484 * Also, I'm waiting to see how many people will complain about the
485 * netif_running(dev) test. I'm open on that one...
486 * Hopefully, the driver will remember to do a commit in "open()" ;-)
488 static int call_commit_handler(struct net_device *dev)
490 if ((netif_running(dev)) &&
491 (dev->wireless_handlers->standard[0] != NULL))
492 /* Call the commit handler on the driver */
493 return dev->wireless_handlers->standard[0](dev, NULL,
494 NULL, NULL);
495 else
496 return 0; /* Command completed successfully */
499 /* ---------------------------------------------------------------- */
501 * Calculate size of private arguments
503 static int get_priv_size(__u16 args)
505 int num = args & IW_PRIV_SIZE_MASK;
506 int type = (args & IW_PRIV_TYPE_MASK) >> 12;
508 return num * iw_priv_type_size[type];
511 /* ---------------------------------------------------------------- */
513 * Re-calculate the size of private arguments
515 static int adjust_priv_size(__u16 args, struct iw_point *iwp)
517 int num = iwp->length;
518 int max = args & IW_PRIV_SIZE_MASK;
519 int type = (args & IW_PRIV_TYPE_MASK) >> 12;
521 /* Make sure the driver doesn't goof up */
522 if (max < num)
523 num = max;
525 return num * iw_priv_type_size[type];
528 /* ---------------------------------------------------------------- */
530 * Standard Wireless Handler : get wireless stats
531 * Allow programatic access to /proc/net/wireless even if /proc
532 * doesn't exist... Also more efficient...
534 static int iw_handler_get_iwstats(struct net_device * dev,
535 struct iw_request_info * info,
536 union iwreq_data * wrqu,
537 char * extra)
539 /* Get stats from the driver */
540 struct iw_statistics *stats;
542 stats = get_wireless_stats(dev);
543 if (stats) {
544 /* Copy statistics to extra */
545 memcpy(extra, stats, sizeof(struct iw_statistics));
546 wrqu->data.length = sizeof(struct iw_statistics);
548 /* Check if we need to clear the updated flag */
549 if (wrqu->data.flags != 0)
550 stats->qual.updated &= ~IW_QUAL_ALL_UPDATED;
551 return 0;
552 } else
553 return -EOPNOTSUPP;
556 /* ---------------------------------------------------------------- */
558 * Standard Wireless Handler : get iwpriv definitions
559 * Export the driver private handler definition
560 * They will be picked up by tools like iwpriv...
562 static int iw_handler_get_private(struct net_device * dev,
563 struct iw_request_info * info,
564 union iwreq_data * wrqu,
565 char * extra)
567 /* Check if the driver has something to export */
568 if ((dev->wireless_handlers->num_private_args == 0) ||
569 (dev->wireless_handlers->private_args == NULL))
570 return -EOPNOTSUPP;
572 /* Check if there is enough buffer up there */
573 if (wrqu->data.length < dev->wireless_handlers->num_private_args) {
574 /* User space can't know in advance how large the buffer
575 * needs to be. Give it a hint, so that we can support
576 * any size buffer we want somewhat efficiently... */
577 wrqu->data.length = dev->wireless_handlers->num_private_args;
578 return -E2BIG;
581 /* Set the number of available ioctls. */
582 wrqu->data.length = dev->wireless_handlers->num_private_args;
584 /* Copy structure to the user buffer. */
585 memcpy(extra, dev->wireless_handlers->private_args,
586 sizeof(struct iw_priv_args) * wrqu->data.length);
588 return 0;
592 /******************** /proc/net/wireless SUPPORT ********************/
594 * The /proc/net/wireless file is a human readable user-space interface
595 * exporting various wireless specific statistics from the wireless devices.
596 * This is the most popular part of the Wireless Extensions ;-)
598 * This interface is a pure clone of /proc/net/dev (in net/core/dev.c).
599 * The content of the file is basically the content of "struct iw_statistics".
602 #ifdef CONFIG_PROC_FS
604 /* ---------------------------------------------------------------- */
606 * Print one entry (line) of /proc/net/wireless
608 static void wireless_seq_printf_stats(struct seq_file *seq,
609 struct net_device *dev)
611 /* Get stats from the driver */
612 struct iw_statistics *stats = get_wireless_stats(dev);
614 if (stats) {
615 seq_printf(seq, "%6s: %04x %3d%c %3d%c %3d%c %6d %6d %6d "
616 "%6d %6d %6d\n",
617 dev->name, stats->status, stats->qual.qual,
618 stats->qual.updated & IW_QUAL_QUAL_UPDATED
619 ? '.' : ' ',
620 ((__s32) stats->qual.level) -
621 ((stats->qual.updated & IW_QUAL_DBM) ? 0x100 : 0),
622 stats->qual.updated & IW_QUAL_LEVEL_UPDATED
623 ? '.' : ' ',
624 ((__s32) stats->qual.noise) -
625 ((stats->qual.updated & IW_QUAL_DBM) ? 0x100 : 0),
626 stats->qual.updated & IW_QUAL_NOISE_UPDATED
627 ? '.' : ' ',
628 stats->discard.nwid, stats->discard.code,
629 stats->discard.fragment, stats->discard.retries,
630 stats->discard.misc, stats->miss.beacon);
631 stats->qual.updated &= ~IW_QUAL_ALL_UPDATED;
635 /* ---------------------------------------------------------------- */
637 * Print info for /proc/net/wireless (print all entries)
639 static int wireless_seq_show(struct seq_file *seq, void *v)
641 if (v == SEQ_START_TOKEN)
642 seq_printf(seq, "Inter-| sta-| Quality | Discarded "
643 "packets | Missed | WE\n"
644 " face | tus | link level noise | nwid "
645 "crypt frag retry misc | beacon | %d\n",
646 WIRELESS_EXT);
647 else
648 wireless_seq_printf_stats(seq, v);
649 return 0;
652 static const struct seq_operations wireless_seq_ops = {
653 .start = dev_seq_start,
654 .next = dev_seq_next,
655 .stop = dev_seq_stop,
656 .show = wireless_seq_show,
659 static int wireless_seq_open(struct inode *inode, struct file *file)
661 return seq_open_net(inode, file, &wireless_seq_ops,
662 sizeof(struct seq_net_private));
665 static const struct file_operations wireless_seq_fops = {
666 .owner = THIS_MODULE,
667 .open = wireless_seq_open,
668 .read = seq_read,
669 .llseek = seq_lseek,
670 .release = seq_release_net,
673 int wext_proc_init(struct net *net)
675 /* Create /proc/net/wireless entry */
676 if (!proc_net_fops_create(net, "wireless", S_IRUGO, &wireless_seq_fops))
677 return -ENOMEM;
679 return 0;
682 void wext_proc_exit(struct net *net)
684 proc_net_remove(net, "wireless");
686 #endif /* CONFIG_PROC_FS */
688 /************************** IOCTL SUPPORT **************************/
690 * The original user space API to configure all those Wireless Extensions
691 * is through IOCTLs.
692 * In there, we check if we need to call the new driver API (iw_handler)
693 * or just call the driver ioctl handler.
696 /* ---------------------------------------------------------------- */
697 static int ioctl_standard_iw_point(struct iw_point *iwp, unsigned int cmd,
698 const struct iw_ioctl_description *descr,
699 iw_handler handler, struct net_device *dev,
700 struct iw_request_info *info)
702 int err, extra_size, user_length = 0, essid_compat = 0;
703 char *extra;
705 /* Calculate space needed by arguments. Always allocate
706 * for max space.
708 extra_size = descr->max_tokens * descr->token_size;
710 /* Check need for ESSID compatibility for WE < 21 */
711 switch (cmd) {
712 case SIOCSIWESSID:
713 case SIOCGIWESSID:
714 case SIOCSIWNICKN:
715 case SIOCGIWNICKN:
716 if (iwp->length == descr->max_tokens + 1)
717 essid_compat = 1;
718 else if (IW_IS_SET(cmd) && (iwp->length != 0)) {
719 char essid[IW_ESSID_MAX_SIZE + 1];
721 err = copy_from_user(essid, iwp->pointer,
722 iwp->length *
723 descr->token_size);
724 if (err)
725 return -EFAULT;
727 if (essid[iwp->length - 1] == '\0')
728 essid_compat = 1;
730 break;
731 default:
732 break;
735 iwp->length -= essid_compat;
737 /* Check what user space is giving us */
738 if (IW_IS_SET(cmd)) {
739 /* Check NULL pointer */
740 if (!iwp->pointer && iwp->length != 0)
741 return -EFAULT;
742 /* Check if number of token fits within bounds */
743 if (iwp->length > descr->max_tokens)
744 return -E2BIG;
745 if (iwp->length < descr->min_tokens)
746 return -EINVAL;
747 } else {
748 /* Check NULL pointer */
749 if (!iwp->pointer)
750 return -EFAULT;
751 /* Save user space buffer size for checking */
752 user_length = iwp->length;
754 /* Don't check if user_length > max to allow forward
755 * compatibility. The test user_length < min is
756 * implied by the test at the end.
759 /* Support for very large requests */
760 if ((descr->flags & IW_DESCR_FLAG_NOMAX) &&
761 (user_length > descr->max_tokens)) {
762 /* Allow userspace to GET more than max so
763 * we can support any size GET requests.
764 * There is still a limit : -ENOMEM.
766 extra_size = user_length * descr->token_size;
768 /* Note : user_length is originally a __u16,
769 * and token_size is controlled by us,
770 * so extra_size won't get negative and
771 * won't overflow...
776 /* kzalloc() ensures NULL-termination for essid_compat. */
777 extra = kzalloc(extra_size, GFP_KERNEL);
778 if (!extra)
779 return -ENOMEM;
781 /* If it is a SET, get all the extra data in here */
782 if (IW_IS_SET(cmd) && (iwp->length != 0)) {
783 if (copy_from_user(extra, iwp->pointer,
784 iwp->length *
785 descr->token_size)) {
786 err = -EFAULT;
787 goto out;
790 if (cmd == SIOCSIWENCODEEXT) {
791 struct iw_encode_ext *ee = (void *) extra;
793 if (iwp->length < sizeof(*ee) + ee->key_len)
794 return -EFAULT;
798 err = handler(dev, info, (union iwreq_data *) iwp, extra);
800 iwp->length += essid_compat;
802 /* If we have something to return to the user */
803 if (!err && IW_IS_GET(cmd)) {
804 /* Check if there is enough buffer up there */
805 if (user_length < iwp->length) {
806 err = -E2BIG;
807 goto out;
810 if (copy_to_user(iwp->pointer, extra,
811 iwp->length *
812 descr->token_size)) {
813 err = -EFAULT;
814 goto out;
818 /* Generate an event to notify listeners of the change */
819 if ((descr->flags & IW_DESCR_FLAG_EVENT) && err == -EIWCOMMIT) {
820 union iwreq_data *data = (union iwreq_data *) iwp;
822 if (descr->flags & IW_DESCR_FLAG_RESTRICT)
823 /* If the event is restricted, don't
824 * export the payload.
826 wireless_send_event(dev, cmd, data, NULL);
827 else
828 wireless_send_event(dev, cmd, data, extra);
831 out:
832 kfree(extra);
833 return err;
837 * Wrapper to call a standard Wireless Extension handler.
838 * We do various checks and also take care of moving data between
839 * user space and kernel space.
841 static int ioctl_standard_call(struct net_device * dev,
842 struct iwreq *iwr,
843 unsigned int cmd,
844 struct iw_request_info *info,
845 iw_handler handler)
847 const struct iw_ioctl_description * descr;
848 int ret = -EINVAL;
850 /* Get the description of the IOCTL */
851 if ((cmd - SIOCIWFIRST) >= standard_ioctl_num)
852 return -EOPNOTSUPP;
853 descr = &(standard_ioctl[cmd - SIOCIWFIRST]);
855 /* Check if we have a pointer to user space data or not */
856 if (descr->header_type != IW_HEADER_TYPE_POINT) {
858 /* No extra arguments. Trivial to handle */
859 ret = handler(dev, info, &(iwr->u), NULL);
861 /* Generate an event to notify listeners of the change */
862 if ((descr->flags & IW_DESCR_FLAG_EVENT) &&
863 ((ret == 0) || (ret == -EIWCOMMIT)))
864 wireless_send_event(dev, cmd, &(iwr->u), NULL);
865 } else {
866 ret = ioctl_standard_iw_point(&iwr->u.data, cmd, descr,
867 handler, dev, info);
870 /* Call commit handler if needed and defined */
871 if (ret == -EIWCOMMIT)
872 ret = call_commit_handler(dev);
874 /* Here, we will generate the appropriate event if needed */
876 return ret;
879 /* ---------------------------------------------------------------- */
881 * Wrapper to call a private Wireless Extension handler.
882 * We do various checks and also take care of moving data between
883 * user space and kernel space.
884 * It's not as nice and slimline as the standard wrapper. The cause
885 * is struct iw_priv_args, which was not really designed for the
886 * job we are going here.
888 * IMPORTANT : This function prevent to set and get data on the same
889 * IOCTL and enforce the SET/GET convention. Not doing it would be
890 * far too hairy...
891 * If you need to set and get data at the same time, please don't use
892 * a iw_handler but process it in your ioctl handler (i.e. use the
893 * old driver API).
895 static int get_priv_descr_and_size(struct net_device *dev, unsigned int cmd,
896 const struct iw_priv_args **descrp)
898 const struct iw_priv_args *descr;
899 int i, extra_size;
901 descr = NULL;
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];
905 break;
909 extra_size = 0;
910 if (descr) {
911 if (IW_IS_SET(cmd)) {
912 int offset = 0; /* For sub-ioctls */
913 /* Check for sub-ioctl handler */
914 if (descr->name[0] == '\0')
915 /* Reserve one int for sub-ioctl index */
916 offset = sizeof(__u32);
918 /* Size of set arguments */
919 extra_size = get_priv_size(descr->set_args);
921 /* Does it fits in iwr ? */
922 if ((descr->set_args & IW_PRIV_SIZE_FIXED) &&
923 ((extra_size + offset) <= IFNAMSIZ))
924 extra_size = 0;
925 } else {
926 /* Size of get arguments */
927 extra_size = get_priv_size(descr->get_args);
929 /* Does it fits in iwr ? */
930 if ((descr->get_args & IW_PRIV_SIZE_FIXED) &&
931 (extra_size <= IFNAMSIZ))
932 extra_size = 0;
935 *descrp = descr;
936 return extra_size;
939 static int ioctl_private_iw_point(struct iw_point *iwp, unsigned int cmd,
940 const struct iw_priv_args *descr,
941 iw_handler handler, struct net_device *dev,
942 struct iw_request_info *info, int extra_size)
944 char *extra;
945 int err;
947 /* Check what user space is giving us */
948 if (IW_IS_SET(cmd)) {
949 if (!iwp->pointer && iwp->length != 0)
950 return -EFAULT;
952 if (iwp->length > (descr->set_args & IW_PRIV_SIZE_MASK))
953 return -E2BIG;
954 } else if (!iwp->pointer)
955 return -EFAULT;
957 extra = kmalloc(extra_size, GFP_KERNEL);
958 if (!extra)
959 return -ENOMEM;
961 /* If it is a SET, get all the extra data in here */
962 if (IW_IS_SET(cmd) && (iwp->length != 0)) {
963 if (copy_from_user(extra, iwp->pointer, extra_size)) {
964 err = -EFAULT;
965 goto out;
969 /* Call the handler */
970 err = handler(dev, info, (union iwreq_data *) iwp, extra);
972 /* If we have something to return to the user */
973 if (!err && IW_IS_GET(cmd)) {
974 /* Adjust for the actual length if it's variable,
975 * avoid leaking kernel bits outside.
977 if (!(descr->get_args & IW_PRIV_SIZE_FIXED))
978 extra_size = adjust_priv_size(descr->get_args, iwp);
980 if (copy_to_user(iwp->pointer, extra, extra_size))
981 err = -EFAULT;
984 out:
985 kfree(extra);
986 return err;
989 static int ioctl_private_call(struct net_device *dev, struct iwreq *iwr,
990 unsigned int cmd, struct iw_request_info *info,
991 iw_handler handler)
993 int extra_size = 0, ret = -EINVAL;
994 const struct iw_priv_args *descr;
996 extra_size = get_priv_descr_and_size(dev, cmd, &descr);
998 /* Check if we have a pointer to user space data or not. */
999 if (extra_size == 0) {
1000 /* No extra arguments. Trivial to handle */
1001 ret = handler(dev, info, &(iwr->u), (char *) &(iwr->u));
1002 } else {
1003 ret = ioctl_private_iw_point(&iwr->u.data, cmd, descr,
1004 handler, dev, info, extra_size);
1007 /* Call commit handler if needed and defined */
1008 if (ret == -EIWCOMMIT)
1009 ret = call_commit_handler(dev);
1011 return ret;
1014 /* ---------------------------------------------------------------- */
1015 typedef int (*wext_ioctl_func)(struct net_device *, struct iwreq *,
1016 unsigned int, struct iw_request_info *,
1017 iw_handler);
1020 * Main IOCTl dispatcher.
1021 * Check the type of IOCTL and call the appropriate wrapper...
1023 static int wireless_process_ioctl(struct net *net, struct ifreq *ifr,
1024 unsigned int cmd,
1025 struct iw_request_info *info,
1026 wext_ioctl_func standard,
1027 wext_ioctl_func private)
1029 struct iwreq *iwr = (struct iwreq *) ifr;
1030 struct net_device *dev;
1031 iw_handler handler;
1033 /* Permissions are already checked in dev_ioctl() before calling us.
1034 * The copy_to/from_user() of ifr is also dealt with in there */
1036 /* Make sure the device exist */
1037 if ((dev = __dev_get_by_name(net, ifr->ifr_name)) == NULL)
1038 return -ENODEV;
1040 /* A bunch of special cases, then the generic case...
1041 * Note that 'cmd' is already filtered in dev_ioctl() with
1042 * (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) */
1043 if (cmd == SIOCGIWSTATS)
1044 return standard(dev, iwr, cmd, info,
1045 &iw_handler_get_iwstats);
1047 if (cmd == SIOCGIWPRIV && dev->wireless_handlers)
1048 return standard(dev, iwr, cmd, info,
1049 &iw_handler_get_private);
1051 /* Basic check */
1052 if (!netif_device_present(dev))
1053 return -ENODEV;
1055 /* New driver API : try to find the handler */
1056 handler = get_handler(dev, cmd);
1057 if (handler) {
1058 /* Standard and private are not the same */
1059 if (cmd < SIOCIWFIRSTPRIV)
1060 return standard(dev, iwr, cmd, info, handler);
1061 else
1062 return private(dev, iwr, cmd, info, handler);
1064 /* Old driver API : call driver ioctl handler */
1065 if (dev->netdev_ops->ndo_do_ioctl)
1066 return dev->netdev_ops->ndo_do_ioctl(dev, ifr, cmd);
1067 return -EOPNOTSUPP;
1070 /* If command is `set a parameter', or `get the encoding parameters',
1071 * check if the user has the right to do it.
1073 static int wext_permission_check(unsigned int cmd)
1075 if ((IW_IS_SET(cmd) || cmd == SIOCGIWENCODE || cmd == SIOCGIWENCODEEXT)
1076 && !capable(CAP_NET_ADMIN))
1077 return -EPERM;
1079 return 0;
1082 /* entry point from dev ioctl */
1083 static int wext_ioctl_dispatch(struct net *net, struct ifreq *ifr,
1084 unsigned int cmd, struct iw_request_info *info,
1085 wext_ioctl_func standard,
1086 wext_ioctl_func private)
1088 int ret = wext_permission_check(cmd);
1090 if (ret)
1091 return ret;
1093 dev_load(net, ifr->ifr_name);
1094 rtnl_lock();
1095 ret = wireless_process_ioctl(net, ifr, cmd, info, standard, private);
1096 rtnl_unlock();
1098 return ret;
1101 int wext_handle_ioctl(struct net *net, struct ifreq *ifr, unsigned int cmd,
1102 void __user *arg)
1104 struct iw_request_info info = { .cmd = cmd, .flags = 0 };
1105 int ret;
1107 ret = wext_ioctl_dispatch(net, ifr, cmd, &info,
1108 ioctl_standard_call,
1109 ioctl_private_call);
1110 if (ret >= 0 &&
1111 IW_IS_GET(cmd) &&
1112 copy_to_user(arg, ifr, sizeof(struct iwreq)))
1113 return -EFAULT;
1115 return ret;
1118 #ifdef CONFIG_COMPAT
1119 static int compat_standard_call(struct net_device *dev,
1120 struct iwreq *iwr,
1121 unsigned int cmd,
1122 struct iw_request_info *info,
1123 iw_handler handler)
1125 const struct iw_ioctl_description *descr;
1126 struct compat_iw_point *iwp_compat;
1127 struct iw_point iwp;
1128 int err;
1130 descr = standard_ioctl + (cmd - SIOCIWFIRST);
1132 if (descr->header_type != IW_HEADER_TYPE_POINT)
1133 return ioctl_standard_call(dev, iwr, cmd, info, handler);
1135 iwp_compat = (struct compat_iw_point *) &iwr->u.data;
1136 iwp.pointer = compat_ptr(iwp_compat->pointer);
1137 iwp.length = iwp_compat->length;
1138 iwp.flags = iwp_compat->flags;
1140 err = ioctl_standard_iw_point(&iwp, cmd, descr, handler, dev, info);
1142 iwp_compat->pointer = ptr_to_compat(iwp.pointer);
1143 iwp_compat->length = iwp.length;
1144 iwp_compat->flags = iwp.flags;
1146 return err;
1149 static int compat_private_call(struct net_device *dev, struct iwreq *iwr,
1150 unsigned int cmd, struct iw_request_info *info,
1151 iw_handler handler)
1153 const struct iw_priv_args *descr;
1154 int ret, extra_size;
1156 extra_size = get_priv_descr_and_size(dev, cmd, &descr);
1158 /* Check if we have a pointer to user space data or not. */
1159 if (extra_size == 0) {
1160 /* No extra arguments. Trivial to handle */
1161 ret = handler(dev, info, &(iwr->u), (char *) &(iwr->u));
1162 } else {
1163 struct compat_iw_point *iwp_compat;
1164 struct iw_point iwp;
1166 iwp_compat = (struct compat_iw_point *) &iwr->u.data;
1167 iwp.pointer = compat_ptr(iwp_compat->pointer);
1168 iwp.length = iwp_compat->length;
1169 iwp.flags = iwp_compat->flags;
1171 ret = ioctl_private_iw_point(&iwp, cmd, descr,
1172 handler, dev, info, extra_size);
1174 iwp_compat->pointer = ptr_to_compat(iwp.pointer);
1175 iwp_compat->length = iwp.length;
1176 iwp_compat->flags = iwp.flags;
1179 /* Call commit handler if needed and defined */
1180 if (ret == -EIWCOMMIT)
1181 ret = call_commit_handler(dev);
1183 return ret;
1186 int compat_wext_handle_ioctl(struct net *net, unsigned int cmd,
1187 unsigned long arg)
1189 void __user *argp = (void __user *)arg;
1190 struct iw_request_info info;
1191 struct iwreq iwr;
1192 char *colon;
1193 int ret;
1195 if (copy_from_user(&iwr, argp, sizeof(struct iwreq)))
1196 return -EFAULT;
1198 iwr.ifr_name[IFNAMSIZ-1] = 0;
1199 colon = strchr(iwr.ifr_name, ':');
1200 if (colon)
1201 *colon = 0;
1203 info.cmd = cmd;
1204 info.flags = IW_REQUEST_FLAG_COMPAT;
1206 ret = wext_ioctl_dispatch(net, (struct ifreq *) &iwr, cmd, &info,
1207 compat_standard_call,
1208 compat_private_call);
1210 if (ret >= 0 &&
1211 IW_IS_GET(cmd) &&
1212 copy_to_user(argp, &iwr, sizeof(struct iwreq)))
1213 return -EFAULT;
1215 return ret;
1217 #endif
1219 /************************* EVENT PROCESSING *************************/
1221 * Process events generated by the wireless layer or the driver.
1222 * Most often, the event will be propagated through rtnetlink
1225 /* ---------------------------------------------------------------- */
1227 * Locking...
1228 * ----------
1230 * Thanks to Herbert Xu <herbert@gondor.apana.org.au> for fixing
1231 * the locking issue in here and implementing this code !
1233 * The issue : wireless_send_event() is often called in interrupt context,
1234 * while the Netlink layer can never be called in interrupt context.
1235 * The fully formed RtNetlink events are queued, and then a tasklet is run
1236 * to feed those to Netlink.
1237 * The skb_queue is interrupt safe, and its lock is not held while calling
1238 * Netlink, so there is no possibility of dealock.
1239 * Jean II
1242 static struct sk_buff_head wireless_nlevent_queue;
1244 static int __init wireless_nlevent_init(void)
1246 skb_queue_head_init(&wireless_nlevent_queue);
1247 return 0;
1250 subsys_initcall(wireless_nlevent_init);
1252 static void wireless_nlevent_process(unsigned long data)
1254 struct sk_buff *skb;
1256 while ((skb = skb_dequeue(&wireless_nlevent_queue)))
1257 rtnl_notify(skb, &init_net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC);
1260 static DECLARE_TASKLET(wireless_nlevent_tasklet, wireless_nlevent_process, 0);
1262 /* ---------------------------------------------------------------- */
1264 * Fill a rtnetlink message with our event data.
1265 * Note that we propage only the specified event and don't dump the
1266 * current wireless config. Dumping the wireless config is far too
1267 * expensive (for each parameter, the driver need to query the hardware).
1269 static int rtnetlink_fill_iwinfo(struct sk_buff *skb, struct net_device *dev,
1270 int type, char *event, int event_len)
1272 struct ifinfomsg *r;
1273 struct nlmsghdr *nlh;
1275 nlh = nlmsg_put(skb, 0, 0, type, sizeof(*r), 0);
1276 if (nlh == NULL)
1277 return -EMSGSIZE;
1279 r = nlmsg_data(nlh);
1280 r->ifi_family = AF_UNSPEC;
1281 r->__ifi_pad = 0;
1282 r->ifi_type = dev->type;
1283 r->ifi_index = dev->ifindex;
1284 r->ifi_flags = dev_get_flags(dev);
1285 r->ifi_change = 0; /* Wireless changes don't affect those flags */
1287 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
1288 /* Add the wireless events in the netlink packet */
1289 NLA_PUT(skb, IFLA_WIRELESS, event_len, event);
1291 return nlmsg_end(skb, nlh);
1293 nla_put_failure:
1294 nlmsg_cancel(skb, nlh);
1295 return -EMSGSIZE;
1298 /* ---------------------------------------------------------------- */
1300 * Create and broadcast and send it on the standard rtnetlink socket
1301 * This is a pure clone rtmsg_ifinfo() in net/core/rtnetlink.c
1302 * Andrzej Krzysztofowicz mandated that I used a IFLA_XXX field
1303 * within a RTM_NEWLINK event.
1305 static void rtmsg_iwinfo(struct net_device *dev, char *event, int event_len)
1307 struct sk_buff *skb;
1308 int err;
1310 if (!net_eq(dev_net(dev), &init_net))
1311 return;
1313 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
1314 if (!skb)
1315 return;
1317 err = rtnetlink_fill_iwinfo(skb, dev, RTM_NEWLINK, event, event_len);
1318 if (err < 0) {
1319 WARN_ON(err == -EMSGSIZE);
1320 kfree_skb(skb);
1321 return;
1324 NETLINK_CB(skb).dst_group = RTNLGRP_LINK;
1325 skb_queue_tail(&wireless_nlevent_queue, skb);
1326 tasklet_schedule(&wireless_nlevent_tasklet);
1329 /* ---------------------------------------------------------------- */
1331 * Main event dispatcher. Called from other parts and drivers.
1332 * Send the event on the appropriate channels.
1333 * May be called from interrupt context.
1335 void wireless_send_event(struct net_device * dev,
1336 unsigned int cmd,
1337 union iwreq_data * wrqu,
1338 char * extra)
1340 const struct iw_ioctl_description * descr = NULL;
1341 int extra_len = 0;
1342 struct iw_event *event; /* Mallocated whole event */
1343 int event_len; /* Its size */
1344 int hdr_len; /* Size of the event header */
1345 int wrqu_off = 0; /* Offset in wrqu */
1346 /* Don't "optimise" the following variable, it will crash */
1347 unsigned cmd_index; /* *MUST* be unsigned */
1349 /* Get the description of the Event */
1350 if (cmd <= SIOCIWLAST) {
1351 cmd_index = cmd - SIOCIWFIRST;
1352 if (cmd_index < standard_ioctl_num)
1353 descr = &(standard_ioctl[cmd_index]);
1354 } else {
1355 cmd_index = cmd - IWEVFIRST;
1356 if (cmd_index < standard_event_num)
1357 descr = &(standard_event[cmd_index]);
1359 /* Don't accept unknown events */
1360 if (descr == NULL) {
1361 /* Note : we don't return an error to the driver, because
1362 * the driver would not know what to do about it. It can't
1363 * return an error to the user, because the event is not
1364 * initiated by a user request.
1365 * The best the driver could do is to log an error message.
1366 * We will do it ourselves instead...
1368 printk(KERN_ERR "%s (WE) : Invalid/Unknown Wireless Event (0x%04X)\n",
1369 dev->name, cmd);
1370 return;
1373 /* Check extra parameters and set extra_len */
1374 if (descr->header_type == IW_HEADER_TYPE_POINT) {
1375 /* Check if number of token fits within bounds */
1376 if (wrqu->data.length > descr->max_tokens) {
1377 printk(KERN_ERR "%s (WE) : Wireless Event too big (%d)\n", dev->name, wrqu->data.length);
1378 return;
1380 if (wrqu->data.length < descr->min_tokens) {
1381 printk(KERN_ERR "%s (WE) : Wireless Event too small (%d)\n", dev->name, wrqu->data.length);
1382 return;
1384 /* Calculate extra_len - extra is NULL for restricted events */
1385 if (extra != NULL)
1386 extra_len = wrqu->data.length * descr->token_size;
1387 /* Always at an offset in wrqu */
1388 wrqu_off = IW_EV_POINT_OFF;
1391 /* Total length of the event */
1392 hdr_len = event_type_size[descr->header_type];
1393 event_len = hdr_len + extra_len;
1395 /* Create temporary buffer to hold the event */
1396 event = kmalloc(event_len, GFP_ATOMIC);
1397 if (event == NULL)
1398 return;
1400 /* Fill event */
1401 event->len = event_len;
1402 event->cmd = cmd;
1403 memcpy(&event->u, ((char *) wrqu) + wrqu_off, hdr_len - IW_EV_LCP_LEN);
1404 if (extra)
1405 memcpy(((char *) event) + hdr_len, extra, extra_len);
1407 /* Send via the RtNetlink event channel */
1408 rtmsg_iwinfo(dev, (char *) event, event_len);
1410 /* Cleanup */
1411 kfree(event);
1413 return; /* Always success, I guess ;-) */
1415 EXPORT_SYMBOL(wireless_send_event);
1417 /********************** ENHANCED IWSPY SUPPORT **********************/
1419 * In the old days, the driver was handling spy support all by itself.
1420 * Now, the driver can delegate this task to Wireless Extensions.
1421 * It needs to use those standard spy iw_handler in struct iw_handler_def,
1422 * push data to us via wireless_spy_update() and include struct iw_spy_data
1423 * in its private part (and export it in net_device->wireless_data->spy_data).
1424 * One of the main advantage of centralising spy support here is that
1425 * it becomes much easier to improve and extend it without having to touch
1426 * the drivers. One example is the addition of the Spy-Threshold events.
1429 /* ---------------------------------------------------------------- */
1431 * Return the pointer to the spy data in the driver.
1432 * Because this is called on the Rx path via wireless_spy_update(),
1433 * we want it to be efficient...
1435 static inline struct iw_spy_data *get_spydata(struct net_device *dev)
1437 /* This is the new way */
1438 if (dev->wireless_data)
1439 return dev->wireless_data->spy_data;
1440 return NULL;
1443 /*------------------------------------------------------------------*/
1445 * Standard Wireless Handler : set Spy List
1447 int iw_handler_set_spy(struct net_device * dev,
1448 struct iw_request_info * info,
1449 union iwreq_data * wrqu,
1450 char * extra)
1452 struct iw_spy_data * spydata = get_spydata(dev);
1453 struct sockaddr * address = (struct sockaddr *) extra;
1455 /* Make sure driver is not buggy or using the old API */
1456 if (!spydata)
1457 return -EOPNOTSUPP;
1459 /* Disable spy collection while we copy the addresses.
1460 * While we copy addresses, any call to wireless_spy_update()
1461 * will NOP. This is OK, as anyway the addresses are changing. */
1462 spydata->spy_number = 0;
1464 /* We want to operate without locking, because wireless_spy_update()
1465 * most likely will happen in the interrupt handler, and therefore
1466 * have its own locking constraints and needs performance.
1467 * The rtnl_lock() make sure we don't race with the other iw_handlers.
1468 * This make sure wireless_spy_update() "see" that the spy list
1469 * is temporarily disabled. */
1470 smp_wmb();
1472 /* Are there are addresses to copy? */
1473 if (wrqu->data.length > 0) {
1474 int i;
1476 /* Copy addresses */
1477 for (i = 0; i < wrqu->data.length; i++)
1478 memcpy(spydata->spy_address[i], address[i].sa_data,
1479 ETH_ALEN);
1480 /* Reset stats */
1481 memset(spydata->spy_stat, 0,
1482 sizeof(struct iw_quality) * IW_MAX_SPY);
1485 /* Make sure above is updated before re-enabling */
1486 smp_wmb();
1488 /* Enable addresses */
1489 spydata->spy_number = wrqu->data.length;
1491 return 0;
1493 EXPORT_SYMBOL(iw_handler_set_spy);
1495 /*------------------------------------------------------------------*/
1497 * Standard Wireless Handler : get Spy List
1499 int iw_handler_get_spy(struct net_device * dev,
1500 struct iw_request_info * info,
1501 union iwreq_data * wrqu,
1502 char * extra)
1504 struct iw_spy_data * spydata = get_spydata(dev);
1505 struct sockaddr * address = (struct sockaddr *) extra;
1506 int i;
1508 /* Make sure driver is not buggy or using the old API */
1509 if (!spydata)
1510 return -EOPNOTSUPP;
1512 wrqu->data.length = spydata->spy_number;
1514 /* Copy addresses. */
1515 for (i = 0; i < spydata->spy_number; i++) {
1516 memcpy(address[i].sa_data, spydata->spy_address[i], ETH_ALEN);
1517 address[i].sa_family = AF_UNIX;
1519 /* Copy stats to the user buffer (just after). */
1520 if (spydata->spy_number > 0)
1521 memcpy(extra + (sizeof(struct sockaddr) *spydata->spy_number),
1522 spydata->spy_stat,
1523 sizeof(struct iw_quality) * spydata->spy_number);
1524 /* Reset updated flags. */
1525 for (i = 0; i < spydata->spy_number; i++)
1526 spydata->spy_stat[i].updated &= ~IW_QUAL_ALL_UPDATED;
1527 return 0;
1529 EXPORT_SYMBOL(iw_handler_get_spy);
1531 /*------------------------------------------------------------------*/
1533 * Standard Wireless Handler : set spy threshold
1535 int iw_handler_set_thrspy(struct net_device * dev,
1536 struct iw_request_info *info,
1537 union iwreq_data * wrqu,
1538 char * extra)
1540 struct iw_spy_data * spydata = get_spydata(dev);
1541 struct iw_thrspy * threshold = (struct iw_thrspy *) extra;
1543 /* Make sure driver is not buggy or using the old API */
1544 if (!spydata)
1545 return -EOPNOTSUPP;
1547 /* Just do it */
1548 memcpy(&(spydata->spy_thr_low), &(threshold->low),
1549 2 * sizeof(struct iw_quality));
1551 /* Clear flag */
1552 memset(spydata->spy_thr_under, '\0', sizeof(spydata->spy_thr_under));
1554 return 0;
1556 EXPORT_SYMBOL(iw_handler_set_thrspy);
1558 /*------------------------------------------------------------------*/
1560 * Standard Wireless Handler : get spy threshold
1562 int iw_handler_get_thrspy(struct net_device * dev,
1563 struct iw_request_info *info,
1564 union iwreq_data * wrqu,
1565 char * extra)
1567 struct iw_spy_data * spydata = get_spydata(dev);
1568 struct iw_thrspy * threshold = (struct iw_thrspy *) extra;
1570 /* Make sure driver is not buggy or using the old API */
1571 if (!spydata)
1572 return -EOPNOTSUPP;
1574 /* Just do it */
1575 memcpy(&(threshold->low), &(spydata->spy_thr_low),
1576 2 * sizeof(struct iw_quality));
1578 return 0;
1580 EXPORT_SYMBOL(iw_handler_get_thrspy);
1582 /*------------------------------------------------------------------*/
1584 * Prepare and send a Spy Threshold event
1586 static void iw_send_thrspy_event(struct net_device * dev,
1587 struct iw_spy_data * spydata,
1588 unsigned char * address,
1589 struct iw_quality * wstats)
1591 union iwreq_data wrqu;
1592 struct iw_thrspy threshold;
1594 /* Init */
1595 wrqu.data.length = 1;
1596 wrqu.data.flags = 0;
1597 /* Copy address */
1598 memcpy(threshold.addr.sa_data, address, ETH_ALEN);
1599 threshold.addr.sa_family = ARPHRD_ETHER;
1600 /* Copy stats */
1601 memcpy(&(threshold.qual), wstats, sizeof(struct iw_quality));
1602 /* Copy also thresholds */
1603 memcpy(&(threshold.low), &(spydata->spy_thr_low),
1604 2 * sizeof(struct iw_quality));
1606 /* Send event to user space */
1607 wireless_send_event(dev, SIOCGIWTHRSPY, &wrqu, (char *) &threshold);
1610 /* ---------------------------------------------------------------- */
1612 * Call for the driver to update the spy data.
1613 * For now, the spy data is a simple array. As the size of the array is
1614 * small, this is good enough. If we wanted to support larger number of
1615 * spy addresses, we should use something more efficient...
1617 void wireless_spy_update(struct net_device * dev,
1618 unsigned char * address,
1619 struct iw_quality * wstats)
1621 struct iw_spy_data * spydata = get_spydata(dev);
1622 int i;
1623 int match = -1;
1625 /* Make sure driver is not buggy or using the old API */
1626 if (!spydata)
1627 return;
1629 /* Update all records that match */
1630 for (i = 0; i < spydata->spy_number; i++)
1631 if (!compare_ether_addr(address, spydata->spy_address[i])) {
1632 memcpy(&(spydata->spy_stat[i]), wstats,
1633 sizeof(struct iw_quality));
1634 match = i;
1637 /* Generate an event if we cross the spy threshold.
1638 * To avoid event storms, we have a simple hysteresis : we generate
1639 * event only when we go under the low threshold or above the
1640 * high threshold. */
1641 if (match >= 0) {
1642 if (spydata->spy_thr_under[match]) {
1643 if (wstats->level > spydata->spy_thr_high.level) {
1644 spydata->spy_thr_under[match] = 0;
1645 iw_send_thrspy_event(dev, spydata,
1646 address, wstats);
1648 } else {
1649 if (wstats->level < spydata->spy_thr_low.level) {
1650 spydata->spy_thr_under[match] = 1;
1651 iw_send_thrspy_event(dev, spydata,
1652 address, wstats);
1657 EXPORT_SYMBOL(wireless_spy_update);