wext-core.c 31.5 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
J
Johannes Berg 已提交
2
 * This file implement the Wireless Extensions core API.
L
Linus Torvalds 已提交
3 4
 *
 * Authors :	Jean Tourrilhes - HPL - <jt@hpl.hp.com>
5
 * Copyright (c) 1997-2007 Jean Tourrilhes, All Rights Reserved.
J
Johannes Berg 已提交
6
 * Copyright	2009 Johannes Berg <johannes@sipsolutions.net>
L
Linus Torvalds 已提交
7 8 9
 *
 * (As all part of the Linux kernel, this file is GPL)
 */
J
Johannes Berg 已提交
10 11 12
#include <linux/kernel.h>
#include <linux/netdevice.h>
#include <linux/rtnetlink.h>
13
#include <linux/slab.h>
J
Johannes Berg 已提交
14 15
#include <linux/wireless.h>
#include <linux/uaccess.h>
16
#include <linux/export.h>
J
Johannes Berg 已提交
17 18
#include <net/cfg80211.h>
#include <net/iw_handler.h>
19
#include <net/netlink.h>
20
#include <net/wext.h>
J
Johannes Berg 已提交
21 22 23 24 25
#include <net/net_namespace.h>

typedef int (*wext_ioctl_func)(struct net_device *, struct iwreq *,
			       unsigned int, struct iw_request_info *,
			       iw_handler);
L
Linus Torvalds 已提交
26 27 28 29 30 31 32


/*
 * Meta-data about all the standard Wireless Extension request we
 * know about.
 */
static const struct iw_ioctl_description standard_ioctl[] = {
33
	[IW_IOCTL_IDX(SIOCSIWCOMMIT)] = {
L
Linus Torvalds 已提交
34 35
		.header_type	= IW_HEADER_TYPE_NULL,
	},
36
	[IW_IOCTL_IDX(SIOCGIWNAME)] = {
L
Linus Torvalds 已提交
37 38 39
		.header_type	= IW_HEADER_TYPE_CHAR,
		.flags		= IW_DESCR_FLAG_DUMP,
	},
40
	[IW_IOCTL_IDX(SIOCSIWNWID)] = {
L
Linus Torvalds 已提交
41 42 43
		.header_type	= IW_HEADER_TYPE_PARAM,
		.flags		= IW_DESCR_FLAG_EVENT,
	},
44
	[IW_IOCTL_IDX(SIOCGIWNWID)] = {
L
Linus Torvalds 已提交
45 46 47
		.header_type	= IW_HEADER_TYPE_PARAM,
		.flags		= IW_DESCR_FLAG_DUMP,
	},
48
	[IW_IOCTL_IDX(SIOCSIWFREQ)] = {
L
Linus Torvalds 已提交
49 50 51
		.header_type	= IW_HEADER_TYPE_FREQ,
		.flags		= IW_DESCR_FLAG_EVENT,
	},
52
	[IW_IOCTL_IDX(SIOCGIWFREQ)] = {
L
Linus Torvalds 已提交
53 54 55
		.header_type	= IW_HEADER_TYPE_FREQ,
		.flags		= IW_DESCR_FLAG_DUMP,
	},
56
	[IW_IOCTL_IDX(SIOCSIWMODE)] = {
L
Linus Torvalds 已提交
57 58 59
		.header_type	= IW_HEADER_TYPE_UINT,
		.flags		= IW_DESCR_FLAG_EVENT,
	},
60
	[IW_IOCTL_IDX(SIOCGIWMODE)] = {
L
Linus Torvalds 已提交
61 62 63
		.header_type	= IW_HEADER_TYPE_UINT,
		.flags		= IW_DESCR_FLAG_DUMP,
	},
64
	[IW_IOCTL_IDX(SIOCSIWSENS)] = {
L
Linus Torvalds 已提交
65 66
		.header_type	= IW_HEADER_TYPE_PARAM,
	},
67
	[IW_IOCTL_IDX(SIOCGIWSENS)] = {
L
Linus Torvalds 已提交
68 69
		.header_type	= IW_HEADER_TYPE_PARAM,
	},
70
	[IW_IOCTL_IDX(SIOCSIWRANGE)] = {
L
Linus Torvalds 已提交
71 72
		.header_type	= IW_HEADER_TYPE_NULL,
	},
73
	[IW_IOCTL_IDX(SIOCGIWRANGE)] = {
L
Linus Torvalds 已提交
74 75 76 77 78
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= 1,
		.max_tokens	= sizeof(struct iw_range),
		.flags		= IW_DESCR_FLAG_DUMP,
	},
79
	[IW_IOCTL_IDX(SIOCSIWPRIV)] = {
L
Linus Torvalds 已提交
80 81
		.header_type	= IW_HEADER_TYPE_NULL,
	},
82
	[IW_IOCTL_IDX(SIOCGIWPRIV)] = { /* (handled directly by us) */
83 84 85 86
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= sizeof(struct iw_priv_args),
		.max_tokens	= 16,
		.flags		= IW_DESCR_FLAG_NOMAX,
L
Linus Torvalds 已提交
87
	},
88
	[IW_IOCTL_IDX(SIOCSIWSTATS)] = {
L
Linus Torvalds 已提交
89 90
		.header_type	= IW_HEADER_TYPE_NULL,
	},
91
	[IW_IOCTL_IDX(SIOCGIWSTATS)] = { /* (handled directly by us) */
92 93 94
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= 1,
		.max_tokens	= sizeof(struct iw_statistics),
L
Linus Torvalds 已提交
95 96
		.flags		= IW_DESCR_FLAG_DUMP,
	},
97
	[IW_IOCTL_IDX(SIOCSIWSPY)] = {
L
Linus Torvalds 已提交
98 99 100 101
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= sizeof(struct sockaddr),
		.max_tokens	= IW_MAX_SPY,
	},
102
	[IW_IOCTL_IDX(SIOCGIWSPY)] = {
L
Linus Torvalds 已提交
103 104 105 106 107
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= sizeof(struct sockaddr) +
				  sizeof(struct iw_quality),
		.max_tokens	= IW_MAX_SPY,
	},
108
	[IW_IOCTL_IDX(SIOCSIWTHRSPY)] = {
L
Linus Torvalds 已提交
109 110 111 112 113
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= sizeof(struct iw_thrspy),
		.min_tokens	= 1,
		.max_tokens	= 1,
	},
114
	[IW_IOCTL_IDX(SIOCGIWTHRSPY)] = {
L
Linus Torvalds 已提交
115 116 117 118 119
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= sizeof(struct iw_thrspy),
		.min_tokens	= 1,
		.max_tokens	= 1,
	},
120
	[IW_IOCTL_IDX(SIOCSIWAP)] = {
L
Linus Torvalds 已提交
121 122
		.header_type	= IW_HEADER_TYPE_ADDR,
	},
123
	[IW_IOCTL_IDX(SIOCGIWAP)] = {
L
Linus Torvalds 已提交
124 125 126
		.header_type	= IW_HEADER_TYPE_ADDR,
		.flags		= IW_DESCR_FLAG_DUMP,
	},
127
	[IW_IOCTL_IDX(SIOCSIWMLME)] = {
已提交
128 129 130 131 132
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= 1,
		.min_tokens	= sizeof(struct iw_mlme),
		.max_tokens	= sizeof(struct iw_mlme),
	},
133
	[IW_IOCTL_IDX(SIOCGIWAPLIST)] = {
L
Linus Torvalds 已提交
134 135 136 137 138 139
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= sizeof(struct sockaddr) +
				  sizeof(struct iw_quality),
		.max_tokens	= IW_MAX_AP,
		.flags		= IW_DESCR_FLAG_NOMAX,
	},
140
	[IW_IOCTL_IDX(SIOCSIWSCAN)] = {
已提交
141 142 143 144
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= 1,
		.min_tokens	= 0,
		.max_tokens	= sizeof(struct iw_scan_req),
L
Linus Torvalds 已提交
145
	},
146
	[IW_IOCTL_IDX(SIOCGIWSCAN)] = {
L
Linus Torvalds 已提交
147 148 149 150 151
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= 1,
		.max_tokens	= IW_SCAN_MAX_DATA,
		.flags		= IW_DESCR_FLAG_NOMAX,
	},
152
	[IW_IOCTL_IDX(SIOCSIWESSID)] = {
L
Linus Torvalds 已提交
153 154
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= 1,
155
		.max_tokens	= IW_ESSID_MAX_SIZE,
L
Linus Torvalds 已提交
156 157
		.flags		= IW_DESCR_FLAG_EVENT,
	},
158
	[IW_IOCTL_IDX(SIOCGIWESSID)] = {
L
Linus Torvalds 已提交
159 160
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= 1,
161
		.max_tokens	= IW_ESSID_MAX_SIZE,
L
Linus Torvalds 已提交
162 163
		.flags		= IW_DESCR_FLAG_DUMP,
	},
164
	[IW_IOCTL_IDX(SIOCSIWNICKN)] = {
L
Linus Torvalds 已提交
165 166
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= 1,
167
		.max_tokens	= IW_ESSID_MAX_SIZE,
L
Linus Torvalds 已提交
168
	},
169
	[IW_IOCTL_IDX(SIOCGIWNICKN)] = {
L
Linus Torvalds 已提交
170 171
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= 1,
172
		.max_tokens	= IW_ESSID_MAX_SIZE,
L
Linus Torvalds 已提交
173
	},
174
	[IW_IOCTL_IDX(SIOCSIWRATE)] = {
L
Linus Torvalds 已提交
175 176
		.header_type	= IW_HEADER_TYPE_PARAM,
	},
177
	[IW_IOCTL_IDX(SIOCGIWRATE)] = {
L
Linus Torvalds 已提交
178 179
		.header_type	= IW_HEADER_TYPE_PARAM,
	},
180
	[IW_IOCTL_IDX(SIOCSIWRTS)] = {
L
Linus Torvalds 已提交
181 182
		.header_type	= IW_HEADER_TYPE_PARAM,
	},
183
	[IW_IOCTL_IDX(SIOCGIWRTS)] = {
L
Linus Torvalds 已提交
184 185
		.header_type	= IW_HEADER_TYPE_PARAM,
	},
186
	[IW_IOCTL_IDX(SIOCSIWFRAG)] = {
L
Linus Torvalds 已提交
187 188
		.header_type	= IW_HEADER_TYPE_PARAM,
	},
189
	[IW_IOCTL_IDX(SIOCGIWFRAG)] = {
L
Linus Torvalds 已提交
190 191
		.header_type	= IW_HEADER_TYPE_PARAM,
	},
192
	[IW_IOCTL_IDX(SIOCSIWTXPOW)] = {
L
Linus Torvalds 已提交
193 194
		.header_type	= IW_HEADER_TYPE_PARAM,
	},
195
	[IW_IOCTL_IDX(SIOCGIWTXPOW)] = {
L
Linus Torvalds 已提交
196 197
		.header_type	= IW_HEADER_TYPE_PARAM,
	},
198
	[IW_IOCTL_IDX(SIOCSIWRETRY)] = {
L
Linus Torvalds 已提交
199 200
		.header_type	= IW_HEADER_TYPE_PARAM,
	},
201
	[IW_IOCTL_IDX(SIOCGIWRETRY)] = {
L
Linus Torvalds 已提交
202 203
		.header_type	= IW_HEADER_TYPE_PARAM,
	},
204
	[IW_IOCTL_IDX(SIOCSIWENCODE)] = {
L
Linus Torvalds 已提交
205 206 207 208 209
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= 1,
		.max_tokens	= IW_ENCODING_TOKEN_MAX,
		.flags		= IW_DESCR_FLAG_EVENT | IW_DESCR_FLAG_RESTRICT,
	},
210
	[IW_IOCTL_IDX(SIOCGIWENCODE)] = {
L
Linus Torvalds 已提交
211 212 213 214 215
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= 1,
		.max_tokens	= IW_ENCODING_TOKEN_MAX,
		.flags		= IW_DESCR_FLAG_DUMP | IW_DESCR_FLAG_RESTRICT,
	},
216
	[IW_IOCTL_IDX(SIOCSIWPOWER)] = {
L
Linus Torvalds 已提交
217 218
		.header_type	= IW_HEADER_TYPE_PARAM,
	},
219
	[IW_IOCTL_IDX(SIOCGIWPOWER)] = {
L
Linus Torvalds 已提交
220 221
		.header_type	= IW_HEADER_TYPE_PARAM,
	},
222
	[IW_IOCTL_IDX(SIOCSIWGENIE)] = {
已提交
223 224 225 226
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= 1,
		.max_tokens	= IW_GENERIC_IE_MAX,
	},
227
	[IW_IOCTL_IDX(SIOCGIWGENIE)] = {
已提交
228 229 230 231
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= 1,
		.max_tokens	= IW_GENERIC_IE_MAX,
	},
232
	[IW_IOCTL_IDX(SIOCSIWAUTH)] = {
已提交
233 234
		.header_type	= IW_HEADER_TYPE_PARAM,
	},
235
	[IW_IOCTL_IDX(SIOCGIWAUTH)] = {
已提交
236 237
		.header_type	= IW_HEADER_TYPE_PARAM,
	},
238
	[IW_IOCTL_IDX(SIOCSIWENCODEEXT)] = {
已提交
239 240 241 242 243 244
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= 1,
		.min_tokens	= sizeof(struct iw_encode_ext),
		.max_tokens	= sizeof(struct iw_encode_ext) +
				  IW_ENCODING_TOKEN_MAX,
	},
245
	[IW_IOCTL_IDX(SIOCGIWENCODEEXT)] = {
已提交
246 247 248 249 250 251
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= 1,
		.min_tokens	= sizeof(struct iw_encode_ext),
		.max_tokens	= sizeof(struct iw_encode_ext) +
				  IW_ENCODING_TOKEN_MAX,
	},
252
	[IW_IOCTL_IDX(SIOCSIWPMKSA)] = {
已提交
253 254 255 256 257
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= 1,
		.min_tokens	= sizeof(struct iw_pmksa),
		.max_tokens	= sizeof(struct iw_pmksa),
	},
L
Linus Torvalds 已提交
258
};
259
static const unsigned int standard_ioctl_num = ARRAY_SIZE(standard_ioctl);
L
Linus Torvalds 已提交
260 261 262 263 264 265

/*
 * Meta-data about all the additional standard Wireless Extension events
 * we know about.
 */
static const struct iw_ioctl_description standard_event[] = {
266
	[IW_EVENT_IDX(IWEVTXDROP)] = {
L
Linus Torvalds 已提交
267 268
		.header_type	= IW_HEADER_TYPE_ADDR,
	},
269
	[IW_EVENT_IDX(IWEVQUAL)] = {
L
Linus Torvalds 已提交
270 271
		.header_type	= IW_HEADER_TYPE_QUAL,
	},
272
	[IW_EVENT_IDX(IWEVCUSTOM)] = {
L
Linus Torvalds 已提交
273 274 275 276
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= 1,
		.max_tokens	= IW_CUSTOM_MAX,
	},
277
	[IW_EVENT_IDX(IWEVREGISTERED)] = {
L
Linus Torvalds 已提交
278 279
		.header_type	= IW_HEADER_TYPE_ADDR,
	},
280
	[IW_EVENT_IDX(IWEVEXPIRED)] = {
281
		.header_type	= IW_HEADER_TYPE_ADDR,
L
Linus Torvalds 已提交
282
	},
283
	[IW_EVENT_IDX(IWEVGENIE)] = {
已提交
284 285 286 287
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= 1,
		.max_tokens	= IW_GENERIC_IE_MAX,
	},
288
	[IW_EVENT_IDX(IWEVMICHAELMICFAILURE)] = {
289
		.header_type	= IW_HEADER_TYPE_POINT,
已提交
290 291 292
		.token_size	= 1,
		.max_tokens	= sizeof(struct iw_michaelmicfailure),
	},
293
	[IW_EVENT_IDX(IWEVASSOCREQIE)] = {
已提交
294 295 296 297
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= 1,
		.max_tokens	= IW_GENERIC_IE_MAX,
	},
298
	[IW_EVENT_IDX(IWEVASSOCRESPIE)] = {
已提交
299 300 301 302
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= 1,
		.max_tokens	= IW_GENERIC_IE_MAX,
	},
303
	[IW_EVENT_IDX(IWEVPMKIDCAND)] = {
已提交
304 305 306 307
		.header_type	= IW_HEADER_TYPE_POINT,
		.token_size	= 1,
		.max_tokens	= sizeof(struct iw_pmkid_cand),
	},
L
Linus Torvalds 已提交
308
};
309
static const unsigned int standard_event_num = ARRAY_SIZE(standard_event);
L
Linus Torvalds 已提交
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325

/* Size (in bytes) of various events */
static const int event_type_size[] = {
	IW_EV_LCP_LEN,			/* IW_HEADER_TYPE_NULL */
	0,
	IW_EV_CHAR_LEN,			/* IW_HEADER_TYPE_CHAR */
	0,
	IW_EV_UINT_LEN,			/* IW_HEADER_TYPE_UINT */
	IW_EV_FREQ_LEN,			/* IW_HEADER_TYPE_FREQ */
	IW_EV_ADDR_LEN,			/* IW_HEADER_TYPE_ADDR */
	0,
	IW_EV_POINT_LEN,		/* Without variable payload */
	IW_EV_PARAM_LEN,		/* IW_HEADER_TYPE_PARAM */
	IW_EV_QUAL_LEN,			/* IW_HEADER_TYPE_QUAL */
};

326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
#ifdef CONFIG_COMPAT
static const int compat_event_type_size[] = {
	IW_EV_COMPAT_LCP_LEN,		/* IW_HEADER_TYPE_NULL */
	0,
	IW_EV_COMPAT_CHAR_LEN,		/* IW_HEADER_TYPE_CHAR */
	0,
	IW_EV_COMPAT_UINT_LEN,		/* IW_HEADER_TYPE_UINT */
	IW_EV_COMPAT_FREQ_LEN,		/* IW_HEADER_TYPE_FREQ */
	IW_EV_COMPAT_ADDR_LEN,		/* IW_HEADER_TYPE_ADDR */
	0,
	IW_EV_COMPAT_POINT_LEN,		/* Without variable payload */
	IW_EV_COMPAT_PARAM_LEN,		/* IW_HEADER_TYPE_PARAM */
	IW_EV_COMPAT_QUAL_LEN,		/* IW_HEADER_TYPE_QUAL */
};
#endif
341

L
Linus Torvalds 已提交
342

J
Johannes Berg 已提交
343
/* IW event code */
L
Linus Torvalds 已提交
344

345
void wireless_nlevent_flush(void)
J
Johannes Berg 已提交
346 347 348 349 350 351 352 353 354 355 356 357
{
	struct sk_buff *skb;
	struct net *net;

	ASSERT_RTNL();

	for_each_net(net) {
		while ((skb = skb_dequeue(&net->wext_nlevents)))
			rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL,
				    GFP_KERNEL);
	}
}
358
EXPORT_SYMBOL_GPL(wireless_nlevent_flush);
J
Johannes Berg 已提交
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378

static int wext_netdev_notifier_call(struct notifier_block *nb,
				     unsigned long state, void *ptr)
{
	/*
	 * When a netdev changes state in any way, flush all pending messages
	 * to avoid them going out in a strange order, e.g. RTM_NEWLINK after
	 * RTM_DELLINK, or with IFF_UP after without IFF_UP during dev_close()
	 * or similar - all of which could otherwise happen due to delays from
	 * schedule_work().
	 */
	wireless_nlevent_flush();

	return NOTIFY_OK;
}

static struct notifier_block wext_netdev_notifier = {
	.notifier_call = wext_netdev_notifier_call,
};

J
Johannes Berg 已提交
379
static int __net_init wext_pernet_init(struct net *net)
380
{
J
Johannes Berg 已提交
381 382
	skb_queue_head_init(&net->wext_nlevents);
	return 0;
383 384
}

J
Johannes Berg 已提交
385
static void __net_exit wext_pernet_exit(struct net *net)
386
{
J
Johannes Berg 已提交
387
	skb_queue_purge(&net->wext_nlevents);
388 389
}

J
Johannes Berg 已提交
390 391 392 393
static struct pernet_operations wext_pernet_ops = {
	.init = wext_pernet_init,
	.exit = wext_pernet_exit,
};
L
Linus Torvalds 已提交
394

J
Johannes Berg 已提交
395
static int __init wireless_nlevent_init(void)
L
Linus Torvalds 已提交
396
{
J
Johannes Berg 已提交
397 398 399 400 401
	int err = register_pernet_subsys(&wext_pernet_ops);

	if (err)
		return err;

402 403 404 405
	err = register_netdevice_notifier(&wext_netdev_notifier);
	if (err)
		unregister_pernet_subsys(&wext_pernet_ops);
	return err;
L
Linus Torvalds 已提交
406 407
}

J
Johannes Berg 已提交
408
subsys_initcall(wireless_nlevent_init);
L
Linus Torvalds 已提交
409

J
Johannes Berg 已提交
410 411
/* Process events generated by the wireless layer or the driver. */
static void wireless_nlevent_process(struct work_struct *work)
412 413
{
	rtnl_lock();
J
Johannes Berg 已提交
414
	wireless_nlevent_flush();
415 416 417
	rtnl_unlock();
}

J
Johannes Berg 已提交
418
static DECLARE_WORK(wireless_nlevent_work, wireless_nlevent_process);
L
Linus Torvalds 已提交
419

J
Johannes Berg 已提交
420 421
static struct nlmsghdr *rtnetlink_ifinfo_prep(struct net_device *dev,
					      struct sk_buff *skb)
L
Linus Torvalds 已提交
422
{
J
Johannes Berg 已提交
423 424
	struct ifinfomsg *r;
	struct nlmsghdr  *nlh;
L
Linus Torvalds 已提交
425

J
Johannes Berg 已提交
426 427 428
	nlh = nlmsg_put(skb, 0, 0, RTM_NEWLINK, sizeof(*r), 0);
	if (!nlh)
		return NULL;
L
Linus Torvalds 已提交
429

J
Johannes Berg 已提交
430 431 432 433 434 435 436
	r = nlmsg_data(nlh);
	r->ifi_family = AF_UNSPEC;
	r->__ifi_pad = 0;
	r->ifi_type = dev->type;
	r->ifi_index = dev->ifindex;
	r->ifi_flags = dev_get_flags(dev);
	r->ifi_change = 0;	/* Wireless changes don't affect those flags */
L
Linus Torvalds 已提交
437

438 439
	if (nla_put_string(skb, IFLA_IFNAME, dev->name))
		goto nla_put_failure;
440

J
Johannes Berg 已提交
441 442 443 444
	return nlh;
 nla_put_failure:
	nlmsg_cancel(skb, nlh);
	return NULL;
445
}
L
Linus Torvalds 已提交
446

J
Johannes Berg 已提交
447

L
Linus Torvalds 已提交
448
/*
J
Johannes Berg 已提交
449 450 451
 * Main event dispatcher. Called from other parts and drivers.
 * Send the event on the appropriate channels.
 * May be called from interrupt context.
L
Linus Torvalds 已提交
452
 */
J
Johannes Berg 已提交
453 454 455 456
void wireless_send_event(struct net_device *	dev,
			 unsigned int		cmd,
			 union iwreq_data *	wrqu,
			 const char *		extra)
457
{
J
Johannes Berg 已提交
458 459 460 461 462 463 464
	const struct iw_ioctl_description *	descr = NULL;
	int extra_len = 0;
	struct iw_event  *event;		/* Mallocated whole event */
	int event_len;				/* Its size */
	int hdr_len;				/* Size of the event header */
	int wrqu_off = 0;			/* Offset in wrqu */
	/* Don't "optimise" the following variable, it will crash */
465
	unsigned int	cmd_index;		/* *MUST* be unsigned */
J
Johannes Berg 已提交
466 467 468 469 470 471 472 473
	struct sk_buff *skb;
	struct nlmsghdr *nlh;
	struct nlattr *nla;
#ifdef CONFIG_COMPAT
	struct __compat_iw_event *compat_event;
	struct compat_iw_point compat_wrqu;
	struct sk_buff *compskb;
#endif
474

J
Johannes Berg 已提交
475 476 477 478 479 480 481
	/*
	 * Nothing in the kernel sends scan events with data, be safe.
	 * This is necessary because we cannot fix up scan event data
	 * for compat, due to being contained in 'extra', but normally
	 * applications are required to retrieve the scan data anyway
	 * and no data is included in the event, this codifies that
	 * practice.
482
	 */
J
Johannes Berg 已提交
483 484
	if (WARN_ON(cmd == SIOCGIWSCAN && extra))
		extra = NULL;
485

J
Johannes Berg 已提交
486 487
	/* Get the description of the Event */
	if (cmd <= SIOCIWLAST) {
488
		cmd_index = IW_IOCTL_IDX(cmd);
J
Johannes Berg 已提交
489 490 491
		if (cmd_index < standard_ioctl_num)
			descr = &(standard_ioctl[cmd_index]);
	} else {
492
		cmd_index = IW_EVENT_IDX(cmd);
J
Johannes Berg 已提交
493 494 495 496 497 498 499 500 501 502 503 504
		if (cmd_index < standard_event_num)
			descr = &(standard_event[cmd_index]);
	}
	/* Don't accept unknown events */
	if (descr == NULL) {
		/* Note : we don't return an error to the driver, because
		 * the driver would not know what to do about it. It can't
		 * return an error to the user, because the event is not
		 * initiated by a user request.
		 * The best the driver could do is to log an error message.
		 * We will do it ourselves instead...
		 */
505 506
		netdev_err(dev, "(WE) : Invalid/Unknown Wireless Event (0x%04X)\n",
			   cmd);
J
Johannes Berg 已提交
507 508 509 510 511 512 513
		return;
	}

	/* Check extra parameters and set extra_len */
	if (descr->header_type == IW_HEADER_TYPE_POINT) {
		/* Check if number of token fits within bounds */
		if (wrqu->data.length > descr->max_tokens) {
514 515
			netdev_err(dev, "(WE) : Wireless Event (cmd=0x%04X) too big (%d)\n",
				   cmd, wrqu->data.length);
J
Johannes Berg 已提交
516 517 518
			return;
		}
		if (wrqu->data.length < descr->min_tokens) {
519 520
			netdev_err(dev, "(WE) : Wireless Event (cmd=0x%04X) too small (%d)\n",
				   cmd, wrqu->data.length);
J
Johannes Berg 已提交
521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650
			return;
		}
		/* Calculate extra_len - extra is NULL for restricted events */
		if (extra != NULL)
			extra_len = wrqu->data.length * descr->token_size;
		/* Always at an offset in wrqu */
		wrqu_off = IW_EV_POINT_OFF;
	}

	/* Total length of the event */
	hdr_len = event_type_size[descr->header_type];
	event_len = hdr_len + extra_len;

	/*
	 * The problem for 64/32 bit.
	 *
	 * On 64-bit, a regular event is laid out as follows:
	 *      |  0  |  1  |  2  |  3  |  4  |  5  |  6  |  7  |
	 *      | event.len | event.cmd |     p a d d i n g     |
	 *      | wrqu data ... (with the correct size)         |
	 *
	 * This padding exists because we manipulate event->u,
	 * and 'event' is not packed.
	 *
	 * An iw_point event is laid out like this instead:
	 *      |  0  |  1  |  2  |  3  |  4  |  5  |  6  |  7  |
	 *      | event.len | event.cmd |     p a d d i n g     |
	 *      | iwpnt.len | iwpnt.flg |     p a d d i n g     |
	 *      | extra data  ...
	 *
	 * The second padding exists because struct iw_point is extended,
	 * but this depends on the platform...
	 *
	 * On 32-bit, all the padding shouldn't be there.
	 */

	skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
	if (!skb)
		return;

	/* Send via the RtNetlink event channel */
	nlh = rtnetlink_ifinfo_prep(dev, skb);
	if (WARN_ON(!nlh)) {
		kfree_skb(skb);
		return;
	}

	/* Add the wireless events in the netlink packet */
	nla = nla_reserve(skb, IFLA_WIRELESS, event_len);
	if (!nla) {
		kfree_skb(skb);
		return;
	}
	event = nla_data(nla);

	/* Fill event - first clear to avoid data leaking */
	memset(event, 0, hdr_len);
	event->len = event_len;
	event->cmd = cmd;
	memcpy(&event->u, ((char *) wrqu) + wrqu_off, hdr_len - IW_EV_LCP_LEN);
	if (extra_len)
		memcpy(((char *) event) + hdr_len, extra, extra_len);

	nlmsg_end(skb, nlh);
#ifdef CONFIG_COMPAT
	hdr_len = compat_event_type_size[descr->header_type];
	event_len = hdr_len + extra_len;

	compskb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
	if (!compskb) {
		kfree_skb(skb);
		return;
	}

	/* Send via the RtNetlink event channel */
	nlh = rtnetlink_ifinfo_prep(dev, compskb);
	if (WARN_ON(!nlh)) {
		kfree_skb(skb);
		kfree_skb(compskb);
		return;
	}

	/* Add the wireless events in the netlink packet */
	nla = nla_reserve(compskb, IFLA_WIRELESS, event_len);
	if (!nla) {
		kfree_skb(skb);
		kfree_skb(compskb);
		return;
	}
	compat_event = nla_data(nla);

	compat_event->len = event_len;
	compat_event->cmd = cmd;
	if (descr->header_type == IW_HEADER_TYPE_POINT) {
		compat_wrqu.length = wrqu->data.length;
		compat_wrqu.flags = wrqu->data.flags;
		memcpy(&compat_event->pointer,
			((char *) &compat_wrqu) + IW_EV_COMPAT_POINT_OFF,
			hdr_len - IW_EV_COMPAT_LCP_LEN);
		if (extra_len)
			memcpy(((char *) compat_event) + hdr_len,
				extra, extra_len);
	} else {
		/* extra_len must be zero, so no if (extra) needed */
		memcpy(&compat_event->pointer, wrqu,
			hdr_len - IW_EV_COMPAT_LCP_LEN);
	}

	nlmsg_end(compskb, nlh);

	skb_shinfo(skb)->frag_list = compskb;
#endif
	skb_queue_tail(&dev_net(dev)->wext_nlevents, skb);
	schedule_work(&wireless_nlevent_work);
}
EXPORT_SYMBOL(wireless_send_event);



/* IW handlers */

struct iw_statistics *get_wireless_stats(struct net_device *dev)
{
#ifdef CONFIG_WIRELESS_EXT
	if ((dev->wireless_handlers != NULL) &&
	   (dev->wireless_handlers->get_wireless_stats != NULL))
		return dev->wireless_handlers->get_wireless_stats(dev);
#endif

#ifdef CONFIG_CFG80211_WEXT
J
Julia Lawall 已提交
651
	if (dev->ieee80211_ptr &&
J
Johannes Berg 已提交
652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702
	    dev->ieee80211_ptr->wiphy &&
	    dev->ieee80211_ptr->wiphy->wext &&
	    dev->ieee80211_ptr->wiphy->wext->get_wireless_stats)
		return dev->ieee80211_ptr->wiphy->wext->get_wireless_stats(dev);
#endif

	/* not found */
	return NULL;
}

static int iw_handler_get_iwstats(struct net_device *		dev,
				  struct iw_request_info *	info,
				  union iwreq_data *		wrqu,
				  char *			extra)
{
	/* Get stats from the driver */
	struct iw_statistics *stats;

	stats = get_wireless_stats(dev);
	if (stats) {
		/* Copy statistics to extra */
		memcpy(extra, stats, sizeof(struct iw_statistics));
		wrqu->data.length = sizeof(struct iw_statistics);

		/* Check if we need to clear the updated flag */
		if (wrqu->data.flags != 0)
			stats->qual.updated &= ~IW_QUAL_ALL_UPDATED;
		return 0;
	} else
		return -EOPNOTSUPP;
}

static iw_handler get_handler(struct net_device *dev, unsigned int cmd)
{
	/* Don't "optimise" the following variable, it will crash */
	unsigned int	index;		/* *MUST* be unsigned */
	const struct iw_handler_def *handlers = NULL;

#ifdef CONFIG_CFG80211_WEXT
	if (dev->ieee80211_ptr && dev->ieee80211_ptr->wiphy)
		handlers = dev->ieee80211_ptr->wiphy->wext;
#endif
#ifdef CONFIG_WIRELESS_EXT
	if (dev->wireless_handlers)
		handlers = dev->wireless_handlers;
#endif

	if (!handlers)
		return NULL;

	/* Try as a standard command */
703
	index = IW_IOCTL_IDX(cmd);
J
Johannes Berg 已提交
704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732
	if (index < handlers->num_standard)
		return handlers->standard[index];

#ifdef CONFIG_WEXT_PRIV
	/* Try as a private command */
	index = cmd - SIOCIWFIRSTPRIV;
	if (index < handlers->num_private)
		return handlers->private[index];
#endif

	/* Not found */
	return NULL;
}

static int ioctl_standard_iw_point(struct iw_point *iwp, unsigned int cmd,
				   const struct iw_ioctl_description *descr,
				   iw_handler handler, struct net_device *dev,
				   struct iw_request_info *info)
{
	int err, extra_size, user_length = 0, essid_compat = 0;
	char *extra;

	/* Calculate space needed by arguments. Always allocate
	 * for max space.
	 */
	extra_size = descr->max_tokens * descr->token_size;

	/* Check need for ESSID compatibility for WE < 21 */
	switch (cmd) {
733 734 735 736 737 738 739 740
	case SIOCSIWESSID:
	case SIOCGIWESSID:
	case SIOCSIWNICKN:
	case SIOCGIWNICKN:
		if (iwp->length == descr->max_tokens + 1)
			essid_compat = 1;
		else if (IW_IS_SET(cmd) && (iwp->length != 0)) {
			char essid[IW_ESSID_MAX_SIZE + 1];
741 742
			unsigned int len;
			len = iwp->length * descr->token_size;
743

744 745 746 747
			if (len > IW_ESSID_MAX_SIZE)
				return -EFAULT;

			err = copy_from_user(essid, iwp->pointer, len);
748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812
			if (err)
				return -EFAULT;

			if (essid[iwp->length - 1] == '\0')
				essid_compat = 1;
		}
		break;
	default:
		break;
	}

	iwp->length -= essid_compat;

	/* Check what user space is giving us */
	if (IW_IS_SET(cmd)) {
		/* Check NULL pointer */
		if (!iwp->pointer && iwp->length != 0)
			return -EFAULT;
		/* Check if number of token fits within bounds */
		if (iwp->length > descr->max_tokens)
			return -E2BIG;
		if (iwp->length < descr->min_tokens)
			return -EINVAL;
	} else {
		/* Check NULL pointer */
		if (!iwp->pointer)
			return -EFAULT;
		/* Save user space buffer size for checking */
		user_length = iwp->length;

		/* Don't check if user_length > max to allow forward
		 * compatibility. The test user_length < min is
		 * implied by the test at the end.
		 */

		/* Support for very large requests */
		if ((descr->flags & IW_DESCR_FLAG_NOMAX) &&
		    (user_length > descr->max_tokens)) {
			/* Allow userspace to GET more than max so
			 * we can support any size GET requests.
			 * There is still a limit : -ENOMEM.
			 */
			extra_size = user_length * descr->token_size;

			/* Note : user_length is originally a __u16,
			 * and token_size is controlled by us,
			 * so extra_size won't get negative and
			 * won't overflow...
			 */
		}
	}

	/* kzalloc() ensures NULL-termination for essid_compat. */
	extra = kzalloc(extra_size, GFP_KERNEL);
	if (!extra)
		return -ENOMEM;

	/* If it is a SET, get all the extra data in here */
	if (IW_IS_SET(cmd) && (iwp->length != 0)) {
		if (copy_from_user(extra, iwp->pointer,
				   iwp->length *
				   descr->token_size)) {
			err = -EFAULT;
			goto out;
		}
813 814 815 816

		if (cmd == SIOCSIWENCODEEXT) {
			struct iw_encode_ext *ee = (void *) extra;

817 818 819 820
			if (iwp->length < sizeof(*ee) + ee->key_len) {
				err = -EFAULT;
				goto out;
			}
821
		}
822 823
	}

824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
	if (IW_IS_GET(cmd) && !(descr->flags & IW_DESCR_FLAG_NOMAX)) {
		/*
		 * If this is a GET, but not NOMAX, it means that the extra
		 * data is not bounded by userspace, but by max_tokens. Thus
		 * set the length to max_tokens. This matches the extra data
		 * allocation.
		 * The driver should fill it with the number of tokens it
		 * provided, and it may check iwp->length rather than having
		 * knowledge of max_tokens. If the driver doesn't change the
		 * iwp->length, this ioctl just copies back max_token tokens
		 * filled with zeroes. Hopefully the driver isn't claiming
		 * them to be valid data.
		 */
		iwp->length = descr->max_tokens;
	}

840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860
	err = handler(dev, info, (union iwreq_data *) iwp, extra);

	iwp->length += essid_compat;

	/* If we have something to return to the user */
	if (!err && IW_IS_GET(cmd)) {
		/* Check if there is enough buffer up there */
		if (user_length < iwp->length) {
			err = -E2BIG;
			goto out;
		}

		if (copy_to_user(iwp->pointer, extra,
				 iwp->length *
				 descr->token_size)) {
			err = -EFAULT;
			goto out;
		}
	}

	/* Generate an event to notify listeners of the change */
861 862
	if ((descr->flags & IW_DESCR_FLAG_EVENT) &&
	    ((err == 0) || (err == -EIWCOMMIT))) {
863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878
		union iwreq_data *data = (union iwreq_data *) iwp;

		if (descr->flags & IW_DESCR_FLAG_RESTRICT)
			/* If the event is restricted, don't
			 * export the payload.
			 */
			wireless_send_event(dev, cmd, data, NULL);
		else
			wireless_send_event(dev, cmd, data, extra);
	}

out:
	kfree(extra);
	return err;
}

L
Linus Torvalds 已提交
879
/*
J
Johannes Berg 已提交
880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895
 * Call the commit handler in the driver
 * (if exist and if conditions are right)
 *
 * Note : our current commit strategy is currently pretty dumb,
 * but we will be able to improve on that...
 * The goal is to try to agreagate as many changes as possible
 * before doing the commit. Drivers that will define a commit handler
 * are usually those that need a reset after changing parameters, so
 * we want to minimise the number of reset.
 * A cool idea is to use a timer : at each "set" command, we re-set the
 * timer, when the timer eventually fires, we call the driver.
 * Hopefully, more on that later.
 *
 * Also, I'm waiting to see how many people will complain about the
 * netif_running(dev) test. I'm open on that one...
 * Hopefully, the driver will remember to do a commit in "open()" ;-)
L
Linus Torvalds 已提交
896
 */
J
Johannes Berg 已提交
897
int call_commit_handler(struct net_device *dev)
L
Linus Torvalds 已提交
898
{
J
Johannes Berg 已提交
899 900 901 902 903 904 905 906 907 908 909 910
#ifdef CONFIG_WIRELESS_EXT
	if ((netif_running(dev)) &&
	   (dev->wireless_handlers->standard[0] != NULL))
		/* Call the commit handler on the driver */
		return dev->wireless_handlers->standard[0](dev, NULL,
							   NULL, NULL);
	else
		return 0;		/* Command completed successfully */
#else
	/* cfg80211 has no commit */
	return 0;
#endif
L
Linus Torvalds 已提交
911 912 913
}

/*
914
 * Main IOCTl dispatcher.
L
Linus Torvalds 已提交
915 916
 * Check the type of IOCTL and call the appropriate wrapper...
 */
917
static int wireless_process_ioctl(struct net *net, struct iwreq *iwr,
918
				  unsigned int cmd,
919
				  struct iw_request_info *info,
920 921
				  wext_ioctl_func standard,
				  wext_ioctl_func private)
L
Linus Torvalds 已提交
922 923 924 925 926 927 928 929
{
	struct net_device *dev;
	iw_handler	handler;

	/* Permissions are already checked in dev_ioctl() before calling us.
	 * The copy_to/from_user() of ifr is also dealt with in there */

	/* Make sure the device exist */
930
	if ((dev = __dev_get_by_name(net, iwr->ifr_name)) == NULL)
L
Linus Torvalds 已提交
931 932 933 934 935
		return -ENODEV;

	/* A bunch of special cases, then the generic case...
	 * Note that 'cmd' is already filtered in dev_ioctl() with
	 * (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) */
936
	if (cmd == SIOCGIWSTATS)
937
		return standard(dev, iwr, cmd, info,
938
				&iw_handler_get_iwstats);
939

J
Johannes Berg 已提交
940
#ifdef CONFIG_WEXT_PRIV
941
	if (cmd == SIOCGIWPRIV && dev->wireless_handlers)
942
		return standard(dev, iwr, cmd, info,
J
Johannes Berg 已提交
943 944
				iw_handler_get_private);
#endif
945 946 947 948 949 950 951 952 953 954

	/* Basic check */
	if (!netif_device_present(dev))
		return -ENODEV;

	/* New driver API : try to find the handler */
	handler = get_handler(dev, cmd);
	if (handler) {
		/* Standard and private are not the same */
		if (cmd < SIOCIWFIRSTPRIV)
955
			return standard(dev, iwr, cmd, info, handler);
J
Johannes Berg 已提交
956
		else if (private)
957
			return private(dev, iwr, cmd, info, handler);
L
Linus Torvalds 已提交
958
	}
959
	return -EOPNOTSUPP;
L
Linus Torvalds 已提交
960 961
}

962 963 964 965 966
/* If command is `set a parameter', or `get the encoding parameters',
 * check if the user has the right to do it.
 */
static int wext_permission_check(unsigned int cmd)
{
967 968 969
	if ((IW_IS_SET(cmd) || cmd == SIOCGIWENCODE ||
	     cmd == SIOCGIWENCODEEXT) &&
	    !capable(CAP_NET_ADMIN))
970 971 972 973 974
		return -EPERM;

	return 0;
}

975
/* entry point from dev ioctl */
976
static int wext_ioctl_dispatch(struct net *net, struct iwreq *iwr,
977
			       unsigned int cmd, struct iw_request_info *info,
978 979
			       wext_ioctl_func standard,
			       wext_ioctl_func private)
980
{
981
	int ret = wext_permission_check(cmd);
982

983 984
	if (ret)
		return ret;
985

986
	dev_load(net, iwr->ifr_name);
987
	rtnl_lock();
988
	ret = wireless_process_ioctl(net, iwr, cmd, info, standard, private);
989
	rtnl_unlock();
990 991 992 993

	return ret;
}

J
Johannes Berg 已提交
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008
/*
 * Wrapper to call a standard Wireless Extension handler.
 * We do various checks and also take care of moving data between
 * user space and kernel space.
 */
static int ioctl_standard_call(struct net_device *	dev,
			       struct iwreq		*iwr,
			       unsigned int		cmd,
			       struct iw_request_info	*info,
			       iw_handler		handler)
{
	const struct iw_ioctl_description *	descr;
	int					ret = -EINVAL;

	/* Get the description of the IOCTL */
1009
	if (IW_IOCTL_IDX(cmd) >= standard_ioctl_num)
J
Johannes Berg 已提交
1010
		return -EOPNOTSUPP;
1011
	descr = &(standard_ioctl[IW_IOCTL_IDX(cmd)]);
J
Johannes Berg 已提交
1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037

	/* Check if we have a pointer to user space data or not */
	if (descr->header_type != IW_HEADER_TYPE_POINT) {

		/* No extra arguments. Trivial to handle */
		ret = handler(dev, info, &(iwr->u), NULL);

		/* Generate an event to notify listeners of the change */
		if ((descr->flags & IW_DESCR_FLAG_EVENT) &&
		   ((ret == 0) || (ret == -EIWCOMMIT)))
			wireless_send_event(dev, cmd, &(iwr->u), NULL);
	} else {
		ret = ioctl_standard_iw_point(&iwr->u.data, cmd, descr,
					      handler, dev, info);
	}

	/* Call commit handler if needed and defined */
	if (ret == -EIWCOMMIT)
		ret = call_commit_handler(dev);

	/* Here, we will generate the appropriate event if needed */

	return ret;
}


1038
int wext_handle_ioctl(struct net *net, unsigned int cmd, void __user *arg)
1039
{
1040
	struct iw_request_info info = { .cmd = cmd, .flags = 0 };
1041
	struct iwreq iwr;
1042
	int ret;
1043

1044 1045 1046 1047 1048 1049
	if (copy_from_user(&iwr, arg, sizeof(iwr)))
		return -EFAULT;

	iwr.ifr_name[sizeof(iwr.ifr_name) - 1] = 0;

	ret = wext_ioctl_dispatch(net, &iwr, cmd, &info,
1050 1051
				  ioctl_standard_call,
				  ioctl_private_call);
1052 1053
	if (ret >= 0 &&
	    IW_IS_GET(cmd) &&
1054
	    copy_to_user(arg, &iwr, sizeof(struct iwreq)))
1055
		return -EFAULT;
1056

1057 1058
	return ret;
}
1059

1060 1061 1062 1063
#ifdef CONFIG_COMPAT
static int compat_standard_call(struct net_device	*dev,
				struct iwreq		*iwr,
				unsigned int		cmd,
1064
				struct iw_request_info	*info,
1065 1066 1067 1068 1069 1070 1071
				iw_handler		handler)
{
	const struct iw_ioctl_description *descr;
	struct compat_iw_point *iwp_compat;
	struct iw_point iwp;
	int err;

1072
	descr = standard_ioctl + IW_IOCTL_IDX(cmd);
1073 1074

	if (descr->header_type != IW_HEADER_TYPE_POINT)
1075
		return ioctl_standard_call(dev, iwr, cmd, info, handler);
1076 1077 1078 1079 1080 1081

	iwp_compat = (struct compat_iw_point *) &iwr->u.data;
	iwp.pointer = compat_ptr(iwp_compat->pointer);
	iwp.length = iwp_compat->length;
	iwp.flags = iwp_compat->flags;

1082
	err = ioctl_standard_iw_point(&iwp, cmd, descr, handler, dev, info);
1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094

	iwp_compat->pointer = ptr_to_compat(iwp.pointer);
	iwp_compat->length = iwp.length;
	iwp_compat->flags = iwp.flags;

	return err;
}

int compat_wext_handle_ioctl(struct net *net, unsigned int cmd,
			     unsigned long arg)
{
	void __user *argp = (void __user *)arg;
1095
	struct iw_request_info info;
1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107
	struct iwreq iwr;
	char *colon;
	int ret;

	if (copy_from_user(&iwr, argp, sizeof(struct iwreq)))
		return -EFAULT;

	iwr.ifr_name[IFNAMSIZ-1] = 0;
	colon = strchr(iwr.ifr_name, ':');
	if (colon)
		*colon = 0;

1108 1109 1110
	info.cmd = cmd;
	info.flags = IW_REQUEST_FLAG_COMPAT;

1111
	ret = wext_ioctl_dispatch(net, &iwr, cmd, &info,
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122
				  compat_standard_call,
				  compat_private_call);

	if (ret >= 0 &&
	    IW_IS_GET(cmd) &&
	    copy_to_user(argp, &iwr, sizeof(struct iwreq)))
		return -EFAULT;

	return ret;
}
#endif
1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189

char *iwe_stream_add_event(struct iw_request_info *info, char *stream,
			   char *ends, struct iw_event *iwe, int event_len)
{
	int lcp_len = iwe_stream_lcp_len(info);

	event_len = iwe_stream_event_len_adjust(info, event_len);

	/* Check if it's possible */
	if (likely((stream + event_len) < ends)) {
		iwe->len = event_len;
		/* Beware of alignement issues on 64 bits */
		memcpy(stream, (char *) iwe, IW_EV_LCP_PK_LEN);
		memcpy(stream + lcp_len, &iwe->u,
		       event_len - lcp_len);
		stream += event_len;
	}

	return stream;
}
EXPORT_SYMBOL(iwe_stream_add_event);

char *iwe_stream_add_point(struct iw_request_info *info, char *stream,
			   char *ends, struct iw_event *iwe, char *extra)
{
	int event_len = iwe_stream_point_len(info) + iwe->u.data.length;
	int point_len = iwe_stream_point_len(info);
	int lcp_len   = iwe_stream_lcp_len(info);

	/* Check if it's possible */
	if (likely((stream + event_len) < ends)) {
		iwe->len = event_len;
		memcpy(stream, (char *) iwe, IW_EV_LCP_PK_LEN);
		memcpy(stream + lcp_len,
		       ((char *) &iwe->u) + IW_EV_POINT_OFF,
		       IW_EV_POINT_PK_LEN - IW_EV_LCP_PK_LEN);
		if (iwe->u.data.length && extra)
			memcpy(stream + point_len, extra, iwe->u.data.length);
		stream += event_len;
	}

	return stream;
}
EXPORT_SYMBOL(iwe_stream_add_point);

char *iwe_stream_add_value(struct iw_request_info *info, char *event,
			   char *value, char *ends, struct iw_event *iwe,
			   int event_len)
{
	int lcp_len = iwe_stream_lcp_len(info);

	/* Don't duplicate LCP */
	event_len -= IW_EV_LCP_LEN;

	/* Check if it's possible */
	if (likely((value + event_len) < ends)) {
		/* Add new value */
		memcpy(value, &iwe->u, event_len);
		value += event_len;
		/* Patch LCP */
		iwe->len = value - event;
		memcpy(event, (char *) iwe, lcp_len);
	}

	return value;
}
EXPORT_SYMBOL(iwe_stream_add_value);