]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/wireless/wext-core.c
rtlwifi: Fix oops on rate-control failure
[mirror_ubuntu-bionic-kernel.git] / net / wireless / wext-core.c
CommitLineData
1da177e4 1/*
3d23e349 2 * This file implement the Wireless Extensions core API.
1da177e4
LT
3 *
4 * Authors : Jean Tourrilhes - HPL - <jt@hpl.hp.com>
c2805fbb 5 * Copyright (c) 1997-2007 Jean Tourrilhes, All Rights Reserved.
3d23e349 6 * Copyright 2009 Johannes Berg <johannes@sipsolutions.net>
1da177e4
LT
7 *
8 * (As all part of the Linux kernel, this file is GPL)
9 */
3d23e349
JB
10#include <linux/kernel.h>
11#include <linux/netdevice.h>
12#include <linux/rtnetlink.h>
5a0e3ad6 13#include <linux/slab.h>
3d23e349
JB
14#include <linux/wireless.h>
15#include <linux/uaccess.h>
bc3b2d7f 16#include <linux/export.h>
3d23e349
JB
17#include <net/cfg80211.h>
18#include <net/iw_handler.h>
bd5785ba 19#include <net/netlink.h>
295f4a1f 20#include <net/wext.h>
3d23e349
JB
21#include <net/net_namespace.h>
22
23typedef int (*wext_ioctl_func)(struct net_device *, struct iwreq *,
24 unsigned int, struct iw_request_info *,
25 iw_handler);
1da177e4 26
1da177e4 27
1da177e4
LT
28/*
29 * Meta-data about all the standard Wireless Extension request we
30 * know about.
31 */
32static const struct iw_ioctl_description standard_ioctl[] = {
44608f80 33 [IW_IOCTL_IDX(SIOCSIWCOMMIT)] = {
1da177e4
LT
34 .header_type = IW_HEADER_TYPE_NULL,
35 },
44608f80 36 [IW_IOCTL_IDX(SIOCGIWNAME)] = {
1da177e4
LT
37 .header_type = IW_HEADER_TYPE_CHAR,
38 .flags = IW_DESCR_FLAG_DUMP,
39 },
44608f80 40 [IW_IOCTL_IDX(SIOCSIWNWID)] = {
1da177e4
LT
41 .header_type = IW_HEADER_TYPE_PARAM,
42 .flags = IW_DESCR_FLAG_EVENT,
43 },
44608f80 44 [IW_IOCTL_IDX(SIOCGIWNWID)] = {
1da177e4
LT
45 .header_type = IW_HEADER_TYPE_PARAM,
46 .flags = IW_DESCR_FLAG_DUMP,
47 },
44608f80 48 [IW_IOCTL_IDX(SIOCSIWFREQ)] = {
1da177e4
LT
49 .header_type = IW_HEADER_TYPE_FREQ,
50 .flags = IW_DESCR_FLAG_EVENT,
51 },
44608f80 52 [IW_IOCTL_IDX(SIOCGIWFREQ)] = {
1da177e4
LT
53 .header_type = IW_HEADER_TYPE_FREQ,
54 .flags = IW_DESCR_FLAG_DUMP,
55 },
44608f80 56 [IW_IOCTL_IDX(SIOCSIWMODE)] = {
1da177e4
LT
57 .header_type = IW_HEADER_TYPE_UINT,
58 .flags = IW_DESCR_FLAG_EVENT,
59 },
44608f80 60 [IW_IOCTL_IDX(SIOCGIWMODE)] = {
1da177e4
LT
61 .header_type = IW_HEADER_TYPE_UINT,
62 .flags = IW_DESCR_FLAG_DUMP,
63 },
44608f80 64 [IW_IOCTL_IDX(SIOCSIWSENS)] = {
1da177e4
LT
65 .header_type = IW_HEADER_TYPE_PARAM,
66 },
44608f80 67 [IW_IOCTL_IDX(SIOCGIWSENS)] = {
1da177e4
LT
68 .header_type = IW_HEADER_TYPE_PARAM,
69 },
44608f80 70 [IW_IOCTL_IDX(SIOCSIWRANGE)] = {
1da177e4
LT
71 .header_type = IW_HEADER_TYPE_NULL,
72 },
44608f80 73 [IW_IOCTL_IDX(SIOCGIWRANGE)] = {
1da177e4
LT
74 .header_type = IW_HEADER_TYPE_POINT,
75 .token_size = 1,
76 .max_tokens = sizeof(struct iw_range),
77 .flags = IW_DESCR_FLAG_DUMP,
78 },
44608f80 79 [IW_IOCTL_IDX(SIOCSIWPRIV)] = {
1da177e4
LT
80 .header_type = IW_HEADER_TYPE_NULL,
81 },
44608f80 82 [IW_IOCTL_IDX(SIOCGIWPRIV)] = { /* (handled directly by us) */
711e2c33
JT
83 .header_type = IW_HEADER_TYPE_POINT,
84 .token_size = sizeof(struct iw_priv_args),
85 .max_tokens = 16,
86 .flags = IW_DESCR_FLAG_NOMAX,
1da177e4 87 },
44608f80 88 [IW_IOCTL_IDX(SIOCSIWSTATS)] = {
1da177e4
LT
89 .header_type = IW_HEADER_TYPE_NULL,
90 },
44608f80 91 [IW_IOCTL_IDX(SIOCGIWSTATS)] = { /* (handled directly by us) */
711e2c33
JT
92 .header_type = IW_HEADER_TYPE_POINT,
93 .token_size = 1,
94 .max_tokens = sizeof(struct iw_statistics),
1da177e4
LT
95 .flags = IW_DESCR_FLAG_DUMP,
96 },
44608f80 97 [IW_IOCTL_IDX(SIOCSIWSPY)] = {
1da177e4
LT
98 .header_type = IW_HEADER_TYPE_POINT,
99 .token_size = sizeof(struct sockaddr),
100 .max_tokens = IW_MAX_SPY,
101 },
44608f80 102 [IW_IOCTL_IDX(SIOCGIWSPY)] = {
1da177e4
LT
103 .header_type = IW_HEADER_TYPE_POINT,
104 .token_size = sizeof(struct sockaddr) +
105 sizeof(struct iw_quality),
106 .max_tokens = IW_MAX_SPY,
107 },
44608f80 108 [IW_IOCTL_IDX(SIOCSIWTHRSPY)] = {
1da177e4
LT
109 .header_type = IW_HEADER_TYPE_POINT,
110 .token_size = sizeof(struct iw_thrspy),
111 .min_tokens = 1,
112 .max_tokens = 1,
113 },
44608f80 114 [IW_IOCTL_IDX(SIOCGIWTHRSPY)] = {
1da177e4
LT
115 .header_type = IW_HEADER_TYPE_POINT,
116 .token_size = sizeof(struct iw_thrspy),
117 .min_tokens = 1,
118 .max_tokens = 1,
119 },
44608f80 120 [IW_IOCTL_IDX(SIOCSIWAP)] = {
1da177e4
LT
121 .header_type = IW_HEADER_TYPE_ADDR,
122 },
44608f80 123 [IW_IOCTL_IDX(SIOCGIWAP)] = {
1da177e4
LT
124 .header_type = IW_HEADER_TYPE_ADDR,
125 .flags = IW_DESCR_FLAG_DUMP,
126 },
44608f80 127 [IW_IOCTL_IDX(SIOCSIWMLME)] = {
fff9cfd9
JT
128 .header_type = IW_HEADER_TYPE_POINT,
129 .token_size = 1,
130 .min_tokens = sizeof(struct iw_mlme),
131 .max_tokens = sizeof(struct iw_mlme),
132 },
44608f80 133 [IW_IOCTL_IDX(SIOCGIWAPLIST)] = {
1da177e4
LT
134 .header_type = IW_HEADER_TYPE_POINT,
135 .token_size = sizeof(struct sockaddr) +
136 sizeof(struct iw_quality),
137 .max_tokens = IW_MAX_AP,
138 .flags = IW_DESCR_FLAG_NOMAX,
139 },
44608f80 140 [IW_IOCTL_IDX(SIOCSIWSCAN)] = {
fff9cfd9
JT
141 .header_type = IW_HEADER_TYPE_POINT,
142 .token_size = 1,
143 .min_tokens = 0,
144 .max_tokens = sizeof(struct iw_scan_req),
1da177e4 145 },
44608f80 146 [IW_IOCTL_IDX(SIOCGIWSCAN)] = {
1da177e4
LT
147 .header_type = IW_HEADER_TYPE_POINT,
148 .token_size = 1,
149 .max_tokens = IW_SCAN_MAX_DATA,
150 .flags = IW_DESCR_FLAG_NOMAX,
151 },
44608f80 152 [IW_IOCTL_IDX(SIOCSIWESSID)] = {
1da177e4
LT
153 .header_type = IW_HEADER_TYPE_POINT,
154 .token_size = 1,
baef1865 155 .max_tokens = IW_ESSID_MAX_SIZE,
1da177e4
LT
156 .flags = IW_DESCR_FLAG_EVENT,
157 },
44608f80 158 [IW_IOCTL_IDX(SIOCGIWESSID)] = {
1da177e4
LT
159 .header_type = IW_HEADER_TYPE_POINT,
160 .token_size = 1,
baef1865 161 .max_tokens = IW_ESSID_MAX_SIZE,
1da177e4
LT
162 .flags = IW_DESCR_FLAG_DUMP,
163 },
44608f80 164 [IW_IOCTL_IDX(SIOCSIWNICKN)] = {
1da177e4
LT
165 .header_type = IW_HEADER_TYPE_POINT,
166 .token_size = 1,
baef1865 167 .max_tokens = IW_ESSID_MAX_SIZE,
1da177e4 168 },
44608f80 169 [IW_IOCTL_IDX(SIOCGIWNICKN)] = {
1da177e4
LT
170 .header_type = IW_HEADER_TYPE_POINT,
171 .token_size = 1,
baef1865 172 .max_tokens = IW_ESSID_MAX_SIZE,
1da177e4 173 },
44608f80 174 [IW_IOCTL_IDX(SIOCSIWRATE)] = {
1da177e4
LT
175 .header_type = IW_HEADER_TYPE_PARAM,
176 },
44608f80 177 [IW_IOCTL_IDX(SIOCGIWRATE)] = {
1da177e4
LT
178 .header_type = IW_HEADER_TYPE_PARAM,
179 },
44608f80 180 [IW_IOCTL_IDX(SIOCSIWRTS)] = {
1da177e4
LT
181 .header_type = IW_HEADER_TYPE_PARAM,
182 },
44608f80 183 [IW_IOCTL_IDX(SIOCGIWRTS)] = {
1da177e4
LT
184 .header_type = IW_HEADER_TYPE_PARAM,
185 },
44608f80 186 [IW_IOCTL_IDX(SIOCSIWFRAG)] = {
1da177e4
LT
187 .header_type = IW_HEADER_TYPE_PARAM,
188 },
44608f80 189 [IW_IOCTL_IDX(SIOCGIWFRAG)] = {
1da177e4
LT
190 .header_type = IW_HEADER_TYPE_PARAM,
191 },
44608f80 192 [IW_IOCTL_IDX(SIOCSIWTXPOW)] = {
1da177e4
LT
193 .header_type = IW_HEADER_TYPE_PARAM,
194 },
44608f80 195 [IW_IOCTL_IDX(SIOCGIWTXPOW)] = {
1da177e4
LT
196 .header_type = IW_HEADER_TYPE_PARAM,
197 },
44608f80 198 [IW_IOCTL_IDX(SIOCSIWRETRY)] = {
1da177e4
LT
199 .header_type = IW_HEADER_TYPE_PARAM,
200 },
44608f80 201 [IW_IOCTL_IDX(SIOCGIWRETRY)] = {
1da177e4
LT
202 .header_type = IW_HEADER_TYPE_PARAM,
203 },
44608f80 204 [IW_IOCTL_IDX(SIOCSIWENCODE)] = {
1da177e4
LT
205 .header_type = IW_HEADER_TYPE_POINT,
206 .token_size = 1,
207 .max_tokens = IW_ENCODING_TOKEN_MAX,
208 .flags = IW_DESCR_FLAG_EVENT | IW_DESCR_FLAG_RESTRICT,
209 },
44608f80 210 [IW_IOCTL_IDX(SIOCGIWENCODE)] = {
1da177e4
LT
211 .header_type = IW_HEADER_TYPE_POINT,
212 .token_size = 1,
213 .max_tokens = IW_ENCODING_TOKEN_MAX,
214 .flags = IW_DESCR_FLAG_DUMP | IW_DESCR_FLAG_RESTRICT,
215 },
44608f80 216 [IW_IOCTL_IDX(SIOCSIWPOWER)] = {
1da177e4
LT
217 .header_type = IW_HEADER_TYPE_PARAM,
218 },
44608f80 219 [IW_IOCTL_IDX(SIOCGIWPOWER)] = {
1da177e4
LT
220 .header_type = IW_HEADER_TYPE_PARAM,
221 },
44608f80 222 [IW_IOCTL_IDX(SIOCSIWGENIE)] = {
fff9cfd9
JT
223 .header_type = IW_HEADER_TYPE_POINT,
224 .token_size = 1,
225 .max_tokens = IW_GENERIC_IE_MAX,
226 },
44608f80 227 [IW_IOCTL_IDX(SIOCGIWGENIE)] = {
fff9cfd9
JT
228 .header_type = IW_HEADER_TYPE_POINT,
229 .token_size = 1,
230 .max_tokens = IW_GENERIC_IE_MAX,
231 },
44608f80 232 [IW_IOCTL_IDX(SIOCSIWAUTH)] = {
fff9cfd9
JT
233 .header_type = IW_HEADER_TYPE_PARAM,
234 },
44608f80 235 [IW_IOCTL_IDX(SIOCGIWAUTH)] = {
fff9cfd9
JT
236 .header_type = IW_HEADER_TYPE_PARAM,
237 },
44608f80 238 [IW_IOCTL_IDX(SIOCSIWENCODEEXT)] = {
fff9cfd9
JT
239 .header_type = IW_HEADER_TYPE_POINT,
240 .token_size = 1,
241 .min_tokens = sizeof(struct iw_encode_ext),
242 .max_tokens = sizeof(struct iw_encode_ext) +
243 IW_ENCODING_TOKEN_MAX,
244 },
44608f80 245 [IW_IOCTL_IDX(SIOCGIWENCODEEXT)] = {
fff9cfd9
JT
246 .header_type = IW_HEADER_TYPE_POINT,
247 .token_size = 1,
248 .min_tokens = sizeof(struct iw_encode_ext),
249 .max_tokens = sizeof(struct iw_encode_ext) +
250 IW_ENCODING_TOKEN_MAX,
251 },
44608f80 252 [IW_IOCTL_IDX(SIOCSIWPMKSA)] = {
fff9cfd9
JT
253 .header_type = IW_HEADER_TYPE_POINT,
254 .token_size = 1,
255 .min_tokens = sizeof(struct iw_pmksa),
256 .max_tokens = sizeof(struct iw_pmksa),
257 },
1da177e4 258};
1ac58ee3 259static const unsigned standard_ioctl_num = ARRAY_SIZE(standard_ioctl);
1da177e4
LT
260
261/*
262 * Meta-data about all the additional standard Wireless Extension events
263 * we know about.
264 */
265static const struct iw_ioctl_description standard_event[] = {
76326f1d 266 [IW_EVENT_IDX(IWEVTXDROP)] = {
1da177e4
LT
267 .header_type = IW_HEADER_TYPE_ADDR,
268 },
76326f1d 269 [IW_EVENT_IDX(IWEVQUAL)] = {
1da177e4
LT
270 .header_type = IW_HEADER_TYPE_QUAL,
271 },
76326f1d 272 [IW_EVENT_IDX(IWEVCUSTOM)] = {
1da177e4
LT
273 .header_type = IW_HEADER_TYPE_POINT,
274 .token_size = 1,
275 .max_tokens = IW_CUSTOM_MAX,
276 },
76326f1d 277 [IW_EVENT_IDX(IWEVREGISTERED)] = {
1da177e4
LT
278 .header_type = IW_HEADER_TYPE_ADDR,
279 },
76326f1d 280 [IW_EVENT_IDX(IWEVEXPIRED)] = {
4ec93edb 281 .header_type = IW_HEADER_TYPE_ADDR,
1da177e4 282 },
76326f1d 283 [IW_EVENT_IDX(IWEVGENIE)] = {
fff9cfd9
JT
284 .header_type = IW_HEADER_TYPE_POINT,
285 .token_size = 1,
286 .max_tokens = IW_GENERIC_IE_MAX,
287 },
76326f1d 288 [IW_EVENT_IDX(IWEVMICHAELMICFAILURE)] = {
4ec93edb 289 .header_type = IW_HEADER_TYPE_POINT,
fff9cfd9
JT
290 .token_size = 1,
291 .max_tokens = sizeof(struct iw_michaelmicfailure),
292 },
76326f1d 293 [IW_EVENT_IDX(IWEVASSOCREQIE)] = {
fff9cfd9
JT
294 .header_type = IW_HEADER_TYPE_POINT,
295 .token_size = 1,
296 .max_tokens = IW_GENERIC_IE_MAX,
297 },
76326f1d 298 [IW_EVENT_IDX(IWEVASSOCRESPIE)] = {
fff9cfd9
JT
299 .header_type = IW_HEADER_TYPE_POINT,
300 .token_size = 1,
301 .max_tokens = IW_GENERIC_IE_MAX,
302 },
76326f1d 303 [IW_EVENT_IDX(IWEVPMKIDCAND)] = {
fff9cfd9
JT
304 .header_type = IW_HEADER_TYPE_POINT,
305 .token_size = 1,
306 .max_tokens = sizeof(struct iw_pmkid_cand),
307 },
1da177e4 308};
1ac58ee3 309static const unsigned standard_event_num = ARRAY_SIZE(standard_event);
1da177e4 310
1da177e4
LT
311/* Size (in bytes) of various events */
312static const int event_type_size[] = {
313 IW_EV_LCP_LEN, /* IW_HEADER_TYPE_NULL */
314 0,
315 IW_EV_CHAR_LEN, /* IW_HEADER_TYPE_CHAR */
316 0,
317 IW_EV_UINT_LEN, /* IW_HEADER_TYPE_UINT */
318 IW_EV_FREQ_LEN, /* IW_HEADER_TYPE_FREQ */
319 IW_EV_ADDR_LEN, /* IW_HEADER_TYPE_ADDR */
320 0,
321 IW_EV_POINT_LEN, /* Without variable payload */
322 IW_EV_PARAM_LEN, /* IW_HEADER_TYPE_PARAM */
323 IW_EV_QUAL_LEN, /* IW_HEADER_TYPE_QUAL */
324};
325
1dacc76d
JB
326#ifdef CONFIG_COMPAT
327static const int compat_event_type_size[] = {
328 IW_EV_COMPAT_LCP_LEN, /* IW_HEADER_TYPE_NULL */
329 0,
330 IW_EV_COMPAT_CHAR_LEN, /* IW_HEADER_TYPE_CHAR */
331 0,
332 IW_EV_COMPAT_UINT_LEN, /* IW_HEADER_TYPE_UINT */
333 IW_EV_COMPAT_FREQ_LEN, /* IW_HEADER_TYPE_FREQ */
334 IW_EV_COMPAT_ADDR_LEN, /* IW_HEADER_TYPE_ADDR */
335 0,
336 IW_EV_COMPAT_POINT_LEN, /* Without variable payload */
337 IW_EV_COMPAT_PARAM_LEN, /* IW_HEADER_TYPE_PARAM */
338 IW_EV_COMPAT_QUAL_LEN, /* IW_HEADER_TYPE_QUAL */
339};
340#endif
c2805fbb 341
1da177e4 342
3d23e349 343/* IW event code */
1da177e4 344
3d23e349 345static int __net_init wext_pernet_init(struct net *net)
711e2c33 346{
3d23e349
JB
347 skb_queue_head_init(&net->wext_nlevents);
348 return 0;
711e2c33
JT
349}
350
3d23e349 351static void __net_exit wext_pernet_exit(struct net *net)
711e2c33 352{
3d23e349 353 skb_queue_purge(&net->wext_nlevents);
711e2c33
JT
354}
355
3d23e349
JB
356static struct pernet_operations wext_pernet_ops = {
357 .init = wext_pernet_init,
358 .exit = wext_pernet_exit,
359};
1da177e4 360
3d23e349 361static int __init wireless_nlevent_init(void)
1da177e4 362{
3d23e349 363 return register_pernet_subsys(&wext_pernet_ops);
1da177e4
LT
364}
365
3d23e349 366subsys_initcall(wireless_nlevent_init);
1da177e4 367
3d23e349
JB
368/* Process events generated by the wireless layer or the driver. */
369static void wireless_nlevent_process(struct work_struct *work)
7be69c0b 370{
3d23e349
JB
371 struct sk_buff *skb;
372 struct net *net;
87057825 373
7be69c0b 374 rtnl_lock();
87057825 375
3d23e349
JB
376 for_each_net(net) {
377 while ((skb = skb_dequeue(&net->wext_nlevents)))
378 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL,
379 GFP_KERNEL);
380 }
7be69c0b 381
7be69c0b
JB
382 rtnl_unlock();
383}
384
3d23e349 385static DECLARE_WORK(wireless_nlevent_work, wireless_nlevent_process);
1da177e4 386
3d23e349
JB
387static struct nlmsghdr *rtnetlink_ifinfo_prep(struct net_device *dev,
388 struct sk_buff *skb)
1da177e4 389{
3d23e349
JB
390 struct ifinfomsg *r;
391 struct nlmsghdr *nlh;
1da177e4 392
3d23e349
JB
393 nlh = nlmsg_put(skb, 0, 0, RTM_NEWLINK, sizeof(*r), 0);
394 if (!nlh)
395 return NULL;
1da177e4 396
3d23e349
JB
397 r = nlmsg_data(nlh);
398 r->ifi_family = AF_UNSPEC;
399 r->__ifi_pad = 0;
400 r->ifi_type = dev->type;
401 r->ifi_index = dev->ifindex;
402 r->ifi_flags = dev_get_flags(dev);
403 r->ifi_change = 0; /* Wireless changes don't affect those flags */
1da177e4 404
3d23e349 405 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
881d966b 406
3d23e349
JB
407 return nlh;
408 nla_put_failure:
409 nlmsg_cancel(skb, nlh);
410 return NULL;
881d966b 411}
1da177e4 412
3d23e349 413
1da177e4 414/*
3d23e349
JB
415 * Main event dispatcher. Called from other parts and drivers.
416 * Send the event on the appropriate channels.
417 * May be called from interrupt context.
1da177e4 418 */
3d23e349
JB
419void wireless_send_event(struct net_device * dev,
420 unsigned int cmd,
421 union iwreq_data * wrqu,
422 const char * extra)
84149b0f 423{
3d23e349
JB
424 const struct iw_ioctl_description * descr = NULL;
425 int extra_len = 0;
426 struct iw_event *event; /* Mallocated whole event */
427 int event_len; /* Its size */
428 int hdr_len; /* Size of the event header */
429 int wrqu_off = 0; /* Offset in wrqu */
430 /* Don't "optimise" the following variable, it will crash */
431 unsigned cmd_index; /* *MUST* be unsigned */
432 struct sk_buff *skb;
433 struct nlmsghdr *nlh;
434 struct nlattr *nla;
435#ifdef CONFIG_COMPAT
436 struct __compat_iw_event *compat_event;
437 struct compat_iw_point compat_wrqu;
438 struct sk_buff *compskb;
439#endif
84149b0f 440
3d23e349
JB
441 /*
442 * Nothing in the kernel sends scan events with data, be safe.
443 * This is necessary because we cannot fix up scan event data
444 * for compat, due to being contained in 'extra', but normally
445 * applications are required to retrieve the scan data anyway
446 * and no data is included in the event, this codifies that
447 * practice.
84149b0f 448 */
3d23e349
JB
449 if (WARN_ON(cmd == SIOCGIWSCAN && extra))
450 extra = NULL;
84149b0f 451
3d23e349
JB
452 /* Get the description of the Event */
453 if (cmd <= SIOCIWLAST) {
44608f80 454 cmd_index = IW_IOCTL_IDX(cmd);
3d23e349
JB
455 if (cmd_index < standard_ioctl_num)
456 descr = &(standard_ioctl[cmd_index]);
457 } else {
76326f1d 458 cmd_index = IW_EVENT_IDX(cmd);
3d23e349
JB
459 if (cmd_index < standard_event_num)
460 descr = &(standard_event[cmd_index]);
461 }
462 /* Don't accept unknown events */
463 if (descr == NULL) {
464 /* Note : we don't return an error to the driver, because
465 * the driver would not know what to do about it. It can't
466 * return an error to the user, because the event is not
467 * initiated by a user request.
468 * The best the driver could do is to log an error message.
469 * We will do it ourselves instead...
470 */
e9c0268f
JP
471 netdev_err(dev, "(WE) : Invalid/Unknown Wireless Event (0x%04X)\n",
472 cmd);
3d23e349
JB
473 return;
474 }
475
476 /* Check extra parameters and set extra_len */
477 if (descr->header_type == IW_HEADER_TYPE_POINT) {
478 /* Check if number of token fits within bounds */
479 if (wrqu->data.length > descr->max_tokens) {
e9c0268f
JP
480 netdev_err(dev, "(WE) : Wireless Event too big (%d)\n",
481 wrqu->data.length);
3d23e349
JB
482 return;
483 }
484 if (wrqu->data.length < descr->min_tokens) {
e9c0268f
JP
485 netdev_err(dev, "(WE) : Wireless Event too small (%d)\n",
486 wrqu->data.length);
3d23e349
JB
487 return;
488 }
489 /* Calculate extra_len - extra is NULL for restricted events */
490 if (extra != NULL)
491 extra_len = wrqu->data.length * descr->token_size;
492 /* Always at an offset in wrqu */
493 wrqu_off = IW_EV_POINT_OFF;
494 }
495
496 /* Total length of the event */
497 hdr_len = event_type_size[descr->header_type];
498 event_len = hdr_len + extra_len;
499
500 /*
501 * The problem for 64/32 bit.
502 *
503 * On 64-bit, a regular event is laid out as follows:
504 * | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 |
505 * | event.len | event.cmd | p a d d i n g |
506 * | wrqu data ... (with the correct size) |
507 *
508 * This padding exists because we manipulate event->u,
509 * and 'event' is not packed.
510 *
511 * An iw_point event is laid out like this instead:
512 * | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 |
513 * | event.len | event.cmd | p a d d i n g |
514 * | iwpnt.len | iwpnt.flg | p a d d i n g |
515 * | extra data ...
516 *
517 * The second padding exists because struct iw_point is extended,
518 * but this depends on the platform...
519 *
520 * On 32-bit, all the padding shouldn't be there.
521 */
522
523 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
524 if (!skb)
525 return;
526
527 /* Send via the RtNetlink event channel */
528 nlh = rtnetlink_ifinfo_prep(dev, skb);
529 if (WARN_ON(!nlh)) {
530 kfree_skb(skb);
531 return;
532 }
533
534 /* Add the wireless events in the netlink packet */
535 nla = nla_reserve(skb, IFLA_WIRELESS, event_len);
536 if (!nla) {
537 kfree_skb(skb);
538 return;
539 }
540 event = nla_data(nla);
541
542 /* Fill event - first clear to avoid data leaking */
543 memset(event, 0, hdr_len);
544 event->len = event_len;
545 event->cmd = cmd;
546 memcpy(&event->u, ((char *) wrqu) + wrqu_off, hdr_len - IW_EV_LCP_LEN);
547 if (extra_len)
548 memcpy(((char *) event) + hdr_len, extra, extra_len);
549
550 nlmsg_end(skb, nlh);
551#ifdef CONFIG_COMPAT
552 hdr_len = compat_event_type_size[descr->header_type];
553 event_len = hdr_len + extra_len;
554
555 compskb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
556 if (!compskb) {
557 kfree_skb(skb);
558 return;
559 }
560
561 /* Send via the RtNetlink event channel */
562 nlh = rtnetlink_ifinfo_prep(dev, compskb);
563 if (WARN_ON(!nlh)) {
564 kfree_skb(skb);
565 kfree_skb(compskb);
566 return;
567 }
568
569 /* Add the wireless events in the netlink packet */
570 nla = nla_reserve(compskb, IFLA_WIRELESS, event_len);
571 if (!nla) {
572 kfree_skb(skb);
573 kfree_skb(compskb);
574 return;
575 }
576 compat_event = nla_data(nla);
577
578 compat_event->len = event_len;
579 compat_event->cmd = cmd;
580 if (descr->header_type == IW_HEADER_TYPE_POINT) {
581 compat_wrqu.length = wrqu->data.length;
582 compat_wrqu.flags = wrqu->data.flags;
583 memcpy(&compat_event->pointer,
584 ((char *) &compat_wrqu) + IW_EV_COMPAT_POINT_OFF,
585 hdr_len - IW_EV_COMPAT_LCP_LEN);
586 if (extra_len)
587 memcpy(((char *) compat_event) + hdr_len,
588 extra, extra_len);
589 } else {
590 /* extra_len must be zero, so no if (extra) needed */
591 memcpy(&compat_event->pointer, wrqu,
592 hdr_len - IW_EV_COMPAT_LCP_LEN);
593 }
594
595 nlmsg_end(compskb, nlh);
596
597 skb_shinfo(skb)->frag_list = compskb;
598#endif
599 skb_queue_tail(&dev_net(dev)->wext_nlevents, skb);
600 schedule_work(&wireless_nlevent_work);
601}
602EXPORT_SYMBOL(wireless_send_event);
603
604
605
606/* IW handlers */
607
608struct iw_statistics *get_wireless_stats(struct net_device *dev)
609{
610#ifdef CONFIG_WIRELESS_EXT
611 if ((dev->wireless_handlers != NULL) &&
612 (dev->wireless_handlers->get_wireless_stats != NULL))
613 return dev->wireless_handlers->get_wireless_stats(dev);
614#endif
615
616#ifdef CONFIG_CFG80211_WEXT
36539107 617 if (dev->ieee80211_ptr &&
3d23e349
JB
618 dev->ieee80211_ptr->wiphy &&
619 dev->ieee80211_ptr->wiphy->wext &&
620 dev->ieee80211_ptr->wiphy->wext->get_wireless_stats)
621 return dev->ieee80211_ptr->wiphy->wext->get_wireless_stats(dev);
622#endif
623
624 /* not found */
625 return NULL;
626}
627
628static int iw_handler_get_iwstats(struct net_device * dev,
629 struct iw_request_info * info,
630 union iwreq_data * wrqu,
631 char * extra)
632{
633 /* Get stats from the driver */
634 struct iw_statistics *stats;
635
636 stats = get_wireless_stats(dev);
637 if (stats) {
638 /* Copy statistics to extra */
639 memcpy(extra, stats, sizeof(struct iw_statistics));
640 wrqu->data.length = sizeof(struct iw_statistics);
641
642 /* Check if we need to clear the updated flag */
643 if (wrqu->data.flags != 0)
644 stats->qual.updated &= ~IW_QUAL_ALL_UPDATED;
645 return 0;
646 } else
647 return -EOPNOTSUPP;
648}
649
650static iw_handler get_handler(struct net_device *dev, unsigned int cmd)
651{
652 /* Don't "optimise" the following variable, it will crash */
653 unsigned int index; /* *MUST* be unsigned */
654 const struct iw_handler_def *handlers = NULL;
655
656#ifdef CONFIG_CFG80211_WEXT
657 if (dev->ieee80211_ptr && dev->ieee80211_ptr->wiphy)
658 handlers = dev->ieee80211_ptr->wiphy->wext;
659#endif
660#ifdef CONFIG_WIRELESS_EXT
661 if (dev->wireless_handlers)
662 handlers = dev->wireless_handlers;
663#endif
664
665 if (!handlers)
666 return NULL;
667
668 /* Try as a standard command */
44608f80 669 index = IW_IOCTL_IDX(cmd);
3d23e349
JB
670 if (index < handlers->num_standard)
671 return handlers->standard[index];
672
673#ifdef CONFIG_WEXT_PRIV
674 /* Try as a private command */
675 index = cmd - SIOCIWFIRSTPRIV;
676 if (index < handlers->num_private)
677 return handlers->private[index];
678#endif
679
680 /* Not found */
681 return NULL;
682}
683
684static int ioctl_standard_iw_point(struct iw_point *iwp, unsigned int cmd,
685 const struct iw_ioctl_description *descr,
686 iw_handler handler, struct net_device *dev,
687 struct iw_request_info *info)
688{
689 int err, extra_size, user_length = 0, essid_compat = 0;
690 char *extra;
691
692 /* Calculate space needed by arguments. Always allocate
693 * for max space.
694 */
695 extra_size = descr->max_tokens * descr->token_size;
696
697 /* Check need for ESSID compatibility for WE < 21 */
698 switch (cmd) {
84149b0f
DM
699 case SIOCSIWESSID:
700 case SIOCGIWESSID:
701 case SIOCSIWNICKN:
702 case SIOCGIWNICKN:
703 if (iwp->length == descr->max_tokens + 1)
704 essid_compat = 1;
705 else if (IW_IS_SET(cmd) && (iwp->length != 0)) {
706 char essid[IW_ESSID_MAX_SIZE + 1];
8503bd8c
AV
707 unsigned int len;
708 len = iwp->length * descr->token_size;
84149b0f 709
8503bd8c
AV
710 if (len > IW_ESSID_MAX_SIZE)
711 return -EFAULT;
712
713 err = copy_from_user(essid, iwp->pointer, len);
84149b0f
DM
714 if (err)
715 return -EFAULT;
716
717 if (essid[iwp->length - 1] == '\0')
718 essid_compat = 1;
719 }
720 break;
721 default:
722 break;
723 }
724
725 iwp->length -= essid_compat;
726
727 /* Check what user space is giving us */
728 if (IW_IS_SET(cmd)) {
729 /* Check NULL pointer */
730 if (!iwp->pointer && iwp->length != 0)
731 return -EFAULT;
732 /* Check if number of token fits within bounds */
733 if (iwp->length > descr->max_tokens)
734 return -E2BIG;
735 if (iwp->length < descr->min_tokens)
736 return -EINVAL;
737 } else {
738 /* Check NULL pointer */
739 if (!iwp->pointer)
740 return -EFAULT;
741 /* Save user space buffer size for checking */
742 user_length = iwp->length;
743
744 /* Don't check if user_length > max to allow forward
745 * compatibility. The test user_length < min is
746 * implied by the test at the end.
747 */
748
749 /* Support for very large requests */
750 if ((descr->flags & IW_DESCR_FLAG_NOMAX) &&
751 (user_length > descr->max_tokens)) {
752 /* Allow userspace to GET more than max so
753 * we can support any size GET requests.
754 * There is still a limit : -ENOMEM.
755 */
756 extra_size = user_length * descr->token_size;
757
758 /* Note : user_length is originally a __u16,
759 * and token_size is controlled by us,
760 * so extra_size won't get negative and
761 * won't overflow...
762 */
763 }
764 }
765
766 /* kzalloc() ensures NULL-termination for essid_compat. */
767 extra = kzalloc(extra_size, GFP_KERNEL);
768 if (!extra)
769 return -ENOMEM;
770
771 /* If it is a SET, get all the extra data in here */
772 if (IW_IS_SET(cmd) && (iwp->length != 0)) {
773 if (copy_from_user(extra, iwp->pointer,
774 iwp->length *
775 descr->token_size)) {
776 err = -EFAULT;
777 goto out;
778 }
88f16db7
JB
779
780 if (cmd == SIOCSIWENCODEEXT) {
781 struct iw_encode_ext *ee = (void *) extra;
782
783 if (iwp->length < sizeof(*ee) + ee->key_len)
784 return -EFAULT;
785 }
84149b0f
DM
786 }
787
42da2f94
JB
788 if (IW_IS_GET(cmd) && !(descr->flags & IW_DESCR_FLAG_NOMAX)) {
789 /*
790 * If this is a GET, but not NOMAX, it means that the extra
791 * data is not bounded by userspace, but by max_tokens. Thus
792 * set the length to max_tokens. This matches the extra data
793 * allocation.
794 * The driver should fill it with the number of tokens it
795 * provided, and it may check iwp->length rather than having
796 * knowledge of max_tokens. If the driver doesn't change the
797 * iwp->length, this ioctl just copies back max_token tokens
798 * filled with zeroes. Hopefully the driver isn't claiming
799 * them to be valid data.
800 */
801 iwp->length = descr->max_tokens;
802 }
803
84149b0f
DM
804 err = handler(dev, info, (union iwreq_data *) iwp, extra);
805
806 iwp->length += essid_compat;
807
808 /* If we have something to return to the user */
809 if (!err && IW_IS_GET(cmd)) {
810 /* Check if there is enough buffer up there */
811 if (user_length < iwp->length) {
812 err = -E2BIG;
813 goto out;
814 }
815
816 if (copy_to_user(iwp->pointer, extra,
817 iwp->length *
818 descr->token_size)) {
819 err = -EFAULT;
820 goto out;
821 }
822 }
823
824 /* Generate an event to notify listeners of the change */
1014eb6e
JT
825 if ((descr->flags & IW_DESCR_FLAG_EVENT) &&
826 ((err == 0) || (err == -EIWCOMMIT))) {
84149b0f
DM
827 union iwreq_data *data = (union iwreq_data *) iwp;
828
829 if (descr->flags & IW_DESCR_FLAG_RESTRICT)
830 /* If the event is restricted, don't
831 * export the payload.
832 */
833 wireless_send_event(dev, cmd, data, NULL);
834 else
835 wireless_send_event(dev, cmd, data, extra);
836 }
837
838out:
839 kfree(extra);
840 return err;
841}
842
1da177e4 843/*
3d23e349
JB
844 * Call the commit handler in the driver
845 * (if exist and if conditions are right)
846 *
847 * Note : our current commit strategy is currently pretty dumb,
848 * but we will be able to improve on that...
849 * The goal is to try to agreagate as many changes as possible
850 * before doing the commit. Drivers that will define a commit handler
851 * are usually those that need a reset after changing parameters, so
852 * we want to minimise the number of reset.
853 * A cool idea is to use a timer : at each "set" command, we re-set the
854 * timer, when the timer eventually fires, we call the driver.
855 * Hopefully, more on that later.
856 *
857 * Also, I'm waiting to see how many people will complain about the
858 * netif_running(dev) test. I'm open on that one...
859 * Hopefully, the driver will remember to do a commit in "open()" ;-)
1da177e4 860 */
3d23e349 861int call_commit_handler(struct net_device *dev)
1da177e4 862{
3d23e349
JB
863#ifdef CONFIG_WIRELESS_EXT
864 if ((netif_running(dev)) &&
865 (dev->wireless_handlers->standard[0] != NULL))
866 /* Call the commit handler on the driver */
867 return dev->wireless_handlers->standard[0](dev, NULL,
868 NULL, NULL);
869 else
870 return 0; /* Command completed successfully */
871#else
872 /* cfg80211 has no commit */
873 return 0;
874#endif
1da177e4
LT
875}
876
1da177e4 877/*
295f4a1f 878 * Main IOCTl dispatcher.
1da177e4
LT
879 * Check the type of IOCTL and call the appropriate wrapper...
880 */
ca1e8bb8
DM
881static int wireless_process_ioctl(struct net *net, struct ifreq *ifr,
882 unsigned int cmd,
0f5cabba 883 struct iw_request_info *info,
ca1e8bb8
DM
884 wext_ioctl_func standard,
885 wext_ioctl_func private)
1da177e4 886{
d2911255 887 struct iwreq *iwr = (struct iwreq *) ifr;
1da177e4
LT
888 struct net_device *dev;
889 iw_handler handler;
890
891 /* Permissions are already checked in dev_ioctl() before calling us.
892 * The copy_to/from_user() of ifr is also dealt with in there */
893
894 /* Make sure the device exist */
881d966b 895 if ((dev = __dev_get_by_name(net, ifr->ifr_name)) == NULL)
1da177e4
LT
896 return -ENODEV;
897
898 /* A bunch of special cases, then the generic case...
899 * Note that 'cmd' is already filtered in dev_ioctl() with
900 * (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) */
dd8ceabc 901 if (cmd == SIOCGIWSTATS)
0f5cabba 902 return standard(dev, iwr, cmd, info,
ca1e8bb8 903 &iw_handler_get_iwstats);
e71a4783 904
3d23e349 905#ifdef CONFIG_WEXT_PRIV
dd8ceabc 906 if (cmd == SIOCGIWPRIV && dev->wireless_handlers)
0f5cabba 907 return standard(dev, iwr, cmd, info,
3d23e349
JB
908 iw_handler_get_private);
909#endif
dd8ceabc
JB
910
911 /* Basic check */
912 if (!netif_device_present(dev))
913 return -ENODEV;
914
915 /* New driver API : try to find the handler */
916 handler = get_handler(dev, cmd);
917 if (handler) {
918 /* Standard and private are not the same */
919 if (cmd < SIOCIWFIRSTPRIV)
0f5cabba 920 return standard(dev, iwr, cmd, info, handler);
3d23e349 921 else if (private)
0f5cabba 922 return private(dev, iwr, cmd, info, handler);
1da177e4 923 }
dd8ceabc 924 /* Old driver API : call driver ioctl handler */
148bc430
SH
925 if (dev->netdev_ops->ndo_do_ioctl)
926 return dev->netdev_ops->ndo_do_ioctl(dev, ifr, cmd);
dd8ceabc 927 return -EOPNOTSUPP;
1da177e4
LT
928}
929
67dd7608
DM
930/* If command is `set a parameter', or `get the encoding parameters',
931 * check if the user has the right to do it.
932 */
933static int wext_permission_check(unsigned int cmd)
934{
f64f9e71
JP
935 if ((IW_IS_SET(cmd) || cmd == SIOCGIWENCODE ||
936 cmd == SIOCGIWENCODEEXT) &&
937 !capable(CAP_NET_ADMIN))
67dd7608
DM
938 return -EPERM;
939
940 return 0;
941}
942
295f4a1f 943/* entry point from dev ioctl */
a67fa76d 944static int wext_ioctl_dispatch(struct net *net, struct ifreq *ifr,
0f5cabba 945 unsigned int cmd, struct iw_request_info *info,
a67fa76d
DM
946 wext_ioctl_func standard,
947 wext_ioctl_func private)
295f4a1f 948{
67dd7608 949 int ret = wext_permission_check(cmd);
295f4a1f 950
67dd7608
DM
951 if (ret)
952 return ret;
dd8ceabc 953
881d966b 954 dev_load(net, ifr->ifr_name);
295f4a1f 955 rtnl_lock();
0f5cabba 956 ret = wireless_process_ioctl(net, ifr, cmd, info, standard, private);
295f4a1f 957 rtnl_unlock();
a67fa76d
DM
958
959 return ret;
960}
961
3d23e349
JB
962/*
963 * Wrapper to call a standard Wireless Extension handler.
964 * We do various checks and also take care of moving data between
965 * user space and kernel space.
966 */
967static int ioctl_standard_call(struct net_device * dev,
968 struct iwreq *iwr,
969 unsigned int cmd,
970 struct iw_request_info *info,
971 iw_handler handler)
972{
973 const struct iw_ioctl_description * descr;
974 int ret = -EINVAL;
975
976 /* Get the description of the IOCTL */
44608f80 977 if (IW_IOCTL_IDX(cmd) >= standard_ioctl_num)
3d23e349 978 return -EOPNOTSUPP;
44608f80 979 descr = &(standard_ioctl[IW_IOCTL_IDX(cmd)]);
3d23e349
JB
980
981 /* Check if we have a pointer to user space data or not */
982 if (descr->header_type != IW_HEADER_TYPE_POINT) {
983
984 /* No extra arguments. Trivial to handle */
985 ret = handler(dev, info, &(iwr->u), NULL);
986
987 /* Generate an event to notify listeners of the change */
988 if ((descr->flags & IW_DESCR_FLAG_EVENT) &&
989 ((ret == 0) || (ret == -EIWCOMMIT)))
990 wireless_send_event(dev, cmd, &(iwr->u), NULL);
991 } else {
992 ret = ioctl_standard_iw_point(&iwr->u.data, cmd, descr,
993 handler, dev, info);
994 }
995
996 /* Call commit handler if needed and defined */
997 if (ret == -EIWCOMMIT)
998 ret = call_commit_handler(dev);
999
1000 /* Here, we will generate the appropriate event if needed */
1001
1002 return ret;
1003}
1004
1005
a67fa76d
DM
1006int wext_handle_ioctl(struct net *net, struct ifreq *ifr, unsigned int cmd,
1007 void __user *arg)
1008{
0f5cabba
DM
1009 struct iw_request_info info = { .cmd = cmd, .flags = 0 };
1010 int ret;
a67fa76d 1011
0f5cabba
DM
1012 ret = wext_ioctl_dispatch(net, ifr, cmd, &info,
1013 ioctl_standard_call,
1014 ioctl_private_call);
a67fa76d
DM
1015 if (ret >= 0 &&
1016 IW_IS_GET(cmd) &&
1017 copy_to_user(arg, ifr, sizeof(struct iwreq)))
295f4a1f 1018 return -EFAULT;
a67fa76d 1019
295f4a1f
JB
1020 return ret;
1021}
711e2c33 1022
87de87d5
DM
1023#ifdef CONFIG_COMPAT
1024static int compat_standard_call(struct net_device *dev,
1025 struct iwreq *iwr,
1026 unsigned int cmd,
0f5cabba 1027 struct iw_request_info *info,
87de87d5
DM
1028 iw_handler handler)
1029{
1030 const struct iw_ioctl_description *descr;
1031 struct compat_iw_point *iwp_compat;
87de87d5
DM
1032 struct iw_point iwp;
1033 int err;
1034
44608f80 1035 descr = standard_ioctl + IW_IOCTL_IDX(cmd);
87de87d5
DM
1036
1037 if (descr->header_type != IW_HEADER_TYPE_POINT)
0f5cabba 1038 return ioctl_standard_call(dev, iwr, cmd, info, handler);
87de87d5
DM
1039
1040 iwp_compat = (struct compat_iw_point *) &iwr->u.data;
1041 iwp.pointer = compat_ptr(iwp_compat->pointer);
1042 iwp.length = iwp_compat->length;
1043 iwp.flags = iwp_compat->flags;
1044
0f5cabba 1045 err = ioctl_standard_iw_point(&iwp, cmd, descr, handler, dev, info);
87de87d5
DM
1046
1047 iwp_compat->pointer = ptr_to_compat(iwp.pointer);
1048 iwp_compat->length = iwp.length;
1049 iwp_compat->flags = iwp.flags;
1050
1051 return err;
1052}
1053
87de87d5
DM
1054int compat_wext_handle_ioctl(struct net *net, unsigned int cmd,
1055 unsigned long arg)
1056{
1057 void __user *argp = (void __user *)arg;
0f5cabba 1058 struct iw_request_info info;
87de87d5
DM
1059 struct iwreq iwr;
1060 char *colon;
1061 int ret;
1062
1063 if (copy_from_user(&iwr, argp, sizeof(struct iwreq)))
1064 return -EFAULT;
1065
1066 iwr.ifr_name[IFNAMSIZ-1] = 0;
1067 colon = strchr(iwr.ifr_name, ':');
1068 if (colon)
1069 *colon = 0;
1070
0f5cabba
DM
1071 info.cmd = cmd;
1072 info.flags = IW_REQUEST_FLAG_COMPAT;
1073
1074 ret = wext_ioctl_dispatch(net, (struct ifreq *) &iwr, cmd, &info,
87de87d5
DM
1075 compat_standard_call,
1076 compat_private_call);
1077
1078 if (ret >= 0 &&
1079 IW_IS_GET(cmd) &&
1080 copy_to_user(argp, &iwr, sizeof(struct iwreq)))
1081 return -EFAULT;
1082
1083 return ret;
1084}
1085#endif