blob: 544d7b62d7ca9500df62a6a7a55eabfa674e6520 [file] [log] [blame]
Johannes Berg3d23e342009-09-29 23:27:28 +02001/*
2 * This file implement the Wireless Extensions core API.
3 *
4 * Authors : Jean Tourrilhes - HPL - <jt@hpl.hp.com>
5 * Copyright (c) 1997-2007 Jean Tourrilhes, All Rights Reserved.
6 * Copyright 2009 Johannes Berg <johannes@sipsolutions.net>
7 *
8 * (As all part of the Linux kernel, this file is GPL)
9 */
10#include <linux/kernel.h>
11#include <linux/netdevice.h>
12#include <linux/rtnetlink.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Johannes Berg3d23e342009-09-29 23:27:28 +020014#include <linux/wireless.h>
15#include <linux/uaccess.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040016#include <linux/export.h>
Johannes Berg3d23e342009-09-29 23:27:28 +020017#include <net/cfg80211.h>
18#include <net/iw_handler.h>
19#include <net/netlink.h>
20#include <net/wext.h>
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);
26
27
28/*
29 * Meta-data about all the standard Wireless Extension request we
30 * know about.
31 */
32static const struct iw_ioctl_description standard_ioctl[] = {
Joe Perches44608f82010-03-18 18:29:35 -070033 [IW_IOCTL_IDX(SIOCSIWCOMMIT)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +020034 .header_type = IW_HEADER_TYPE_NULL,
35 },
Joe Perches44608f82010-03-18 18:29:35 -070036 [IW_IOCTL_IDX(SIOCGIWNAME)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +020037 .header_type = IW_HEADER_TYPE_CHAR,
38 .flags = IW_DESCR_FLAG_DUMP,
39 },
Joe Perches44608f82010-03-18 18:29:35 -070040 [IW_IOCTL_IDX(SIOCSIWNWID)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +020041 .header_type = IW_HEADER_TYPE_PARAM,
42 .flags = IW_DESCR_FLAG_EVENT,
43 },
Joe Perches44608f82010-03-18 18:29:35 -070044 [IW_IOCTL_IDX(SIOCGIWNWID)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +020045 .header_type = IW_HEADER_TYPE_PARAM,
46 .flags = IW_DESCR_FLAG_DUMP,
47 },
Joe Perches44608f82010-03-18 18:29:35 -070048 [IW_IOCTL_IDX(SIOCSIWFREQ)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +020049 .header_type = IW_HEADER_TYPE_FREQ,
50 .flags = IW_DESCR_FLAG_EVENT,
51 },
Joe Perches44608f82010-03-18 18:29:35 -070052 [IW_IOCTL_IDX(SIOCGIWFREQ)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +020053 .header_type = IW_HEADER_TYPE_FREQ,
54 .flags = IW_DESCR_FLAG_DUMP,
55 },
Joe Perches44608f82010-03-18 18:29:35 -070056 [IW_IOCTL_IDX(SIOCSIWMODE)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +020057 .header_type = IW_HEADER_TYPE_UINT,
58 .flags = IW_DESCR_FLAG_EVENT,
59 },
Joe Perches44608f82010-03-18 18:29:35 -070060 [IW_IOCTL_IDX(SIOCGIWMODE)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +020061 .header_type = IW_HEADER_TYPE_UINT,
62 .flags = IW_DESCR_FLAG_DUMP,
63 },
Joe Perches44608f82010-03-18 18:29:35 -070064 [IW_IOCTL_IDX(SIOCSIWSENS)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +020065 .header_type = IW_HEADER_TYPE_PARAM,
66 },
Joe Perches44608f82010-03-18 18:29:35 -070067 [IW_IOCTL_IDX(SIOCGIWSENS)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +020068 .header_type = IW_HEADER_TYPE_PARAM,
69 },
Joe Perches44608f82010-03-18 18:29:35 -070070 [IW_IOCTL_IDX(SIOCSIWRANGE)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +020071 .header_type = IW_HEADER_TYPE_NULL,
72 },
Joe Perches44608f82010-03-18 18:29:35 -070073 [IW_IOCTL_IDX(SIOCGIWRANGE)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +020074 .header_type = IW_HEADER_TYPE_POINT,
75 .token_size = 1,
76 .max_tokens = sizeof(struct iw_range),
77 .flags = IW_DESCR_FLAG_DUMP,
78 },
Joe Perches44608f82010-03-18 18:29:35 -070079 [IW_IOCTL_IDX(SIOCSIWPRIV)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +020080 .header_type = IW_HEADER_TYPE_NULL,
81 },
Joe Perches44608f82010-03-18 18:29:35 -070082 [IW_IOCTL_IDX(SIOCGIWPRIV)] = { /* (handled directly by us) */
Johannes Berg3d23e342009-09-29 23:27:28 +020083 .header_type = IW_HEADER_TYPE_POINT,
84 .token_size = sizeof(struct iw_priv_args),
85 .max_tokens = 16,
86 .flags = IW_DESCR_FLAG_NOMAX,
87 },
Joe Perches44608f82010-03-18 18:29:35 -070088 [IW_IOCTL_IDX(SIOCSIWSTATS)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +020089 .header_type = IW_HEADER_TYPE_NULL,
90 },
Joe Perches44608f82010-03-18 18:29:35 -070091 [IW_IOCTL_IDX(SIOCGIWSTATS)] = { /* (handled directly by us) */
Johannes Berg3d23e342009-09-29 23:27:28 +020092 .header_type = IW_HEADER_TYPE_POINT,
93 .token_size = 1,
94 .max_tokens = sizeof(struct iw_statistics),
95 .flags = IW_DESCR_FLAG_DUMP,
96 },
Joe Perches44608f82010-03-18 18:29:35 -070097 [IW_IOCTL_IDX(SIOCSIWSPY)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +020098 .header_type = IW_HEADER_TYPE_POINT,
99 .token_size = sizeof(struct sockaddr),
100 .max_tokens = IW_MAX_SPY,
101 },
Joe Perches44608f82010-03-18 18:29:35 -0700102 [IW_IOCTL_IDX(SIOCGIWSPY)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200103 .header_type = IW_HEADER_TYPE_POINT,
104 .token_size = sizeof(struct sockaddr) +
105 sizeof(struct iw_quality),
106 .max_tokens = IW_MAX_SPY,
107 },
Joe Perches44608f82010-03-18 18:29:35 -0700108 [IW_IOCTL_IDX(SIOCSIWTHRSPY)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200109 .header_type = IW_HEADER_TYPE_POINT,
110 .token_size = sizeof(struct iw_thrspy),
111 .min_tokens = 1,
112 .max_tokens = 1,
113 },
Joe Perches44608f82010-03-18 18:29:35 -0700114 [IW_IOCTL_IDX(SIOCGIWTHRSPY)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200115 .header_type = IW_HEADER_TYPE_POINT,
116 .token_size = sizeof(struct iw_thrspy),
117 .min_tokens = 1,
118 .max_tokens = 1,
119 },
Joe Perches44608f82010-03-18 18:29:35 -0700120 [IW_IOCTL_IDX(SIOCSIWAP)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200121 .header_type = IW_HEADER_TYPE_ADDR,
122 },
Joe Perches44608f82010-03-18 18:29:35 -0700123 [IW_IOCTL_IDX(SIOCGIWAP)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200124 .header_type = IW_HEADER_TYPE_ADDR,
125 .flags = IW_DESCR_FLAG_DUMP,
126 },
Joe Perches44608f82010-03-18 18:29:35 -0700127 [IW_IOCTL_IDX(SIOCSIWMLME)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200128 .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 },
Joe Perches44608f82010-03-18 18:29:35 -0700133 [IW_IOCTL_IDX(SIOCGIWAPLIST)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200134 .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 },
Joe Perches44608f82010-03-18 18:29:35 -0700140 [IW_IOCTL_IDX(SIOCSIWSCAN)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200141 .header_type = IW_HEADER_TYPE_POINT,
142 .token_size = 1,
143 .min_tokens = 0,
144 .max_tokens = sizeof(struct iw_scan_req),
145 },
Joe Perches44608f82010-03-18 18:29:35 -0700146 [IW_IOCTL_IDX(SIOCGIWSCAN)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200147 .header_type = IW_HEADER_TYPE_POINT,
148 .token_size = 1,
149 .max_tokens = IW_SCAN_MAX_DATA,
150 .flags = IW_DESCR_FLAG_NOMAX,
151 },
Joe Perches44608f82010-03-18 18:29:35 -0700152 [IW_IOCTL_IDX(SIOCSIWESSID)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200153 .header_type = IW_HEADER_TYPE_POINT,
154 .token_size = 1,
155 .max_tokens = IW_ESSID_MAX_SIZE,
156 .flags = IW_DESCR_FLAG_EVENT,
157 },
Joe Perches44608f82010-03-18 18:29:35 -0700158 [IW_IOCTL_IDX(SIOCGIWESSID)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200159 .header_type = IW_HEADER_TYPE_POINT,
160 .token_size = 1,
161 .max_tokens = IW_ESSID_MAX_SIZE,
162 .flags = IW_DESCR_FLAG_DUMP,
163 },
Joe Perches44608f82010-03-18 18:29:35 -0700164 [IW_IOCTL_IDX(SIOCSIWNICKN)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200165 .header_type = IW_HEADER_TYPE_POINT,
166 .token_size = 1,
167 .max_tokens = IW_ESSID_MAX_SIZE,
168 },
Joe Perches44608f82010-03-18 18:29:35 -0700169 [IW_IOCTL_IDX(SIOCGIWNICKN)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200170 .header_type = IW_HEADER_TYPE_POINT,
171 .token_size = 1,
172 .max_tokens = IW_ESSID_MAX_SIZE,
173 },
Joe Perches44608f82010-03-18 18:29:35 -0700174 [IW_IOCTL_IDX(SIOCSIWRATE)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200175 .header_type = IW_HEADER_TYPE_PARAM,
176 },
Joe Perches44608f82010-03-18 18:29:35 -0700177 [IW_IOCTL_IDX(SIOCGIWRATE)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200178 .header_type = IW_HEADER_TYPE_PARAM,
179 },
Joe Perches44608f82010-03-18 18:29:35 -0700180 [IW_IOCTL_IDX(SIOCSIWRTS)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200181 .header_type = IW_HEADER_TYPE_PARAM,
182 },
Joe Perches44608f82010-03-18 18:29:35 -0700183 [IW_IOCTL_IDX(SIOCGIWRTS)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200184 .header_type = IW_HEADER_TYPE_PARAM,
185 },
Joe Perches44608f82010-03-18 18:29:35 -0700186 [IW_IOCTL_IDX(SIOCSIWFRAG)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200187 .header_type = IW_HEADER_TYPE_PARAM,
188 },
Joe Perches44608f82010-03-18 18:29:35 -0700189 [IW_IOCTL_IDX(SIOCGIWFRAG)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200190 .header_type = IW_HEADER_TYPE_PARAM,
191 },
Joe Perches44608f82010-03-18 18:29:35 -0700192 [IW_IOCTL_IDX(SIOCSIWTXPOW)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200193 .header_type = IW_HEADER_TYPE_PARAM,
194 },
Joe Perches44608f82010-03-18 18:29:35 -0700195 [IW_IOCTL_IDX(SIOCGIWTXPOW)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200196 .header_type = IW_HEADER_TYPE_PARAM,
197 },
Joe Perches44608f82010-03-18 18:29:35 -0700198 [IW_IOCTL_IDX(SIOCSIWRETRY)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200199 .header_type = IW_HEADER_TYPE_PARAM,
200 },
Joe Perches44608f82010-03-18 18:29:35 -0700201 [IW_IOCTL_IDX(SIOCGIWRETRY)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200202 .header_type = IW_HEADER_TYPE_PARAM,
203 },
Joe Perches44608f82010-03-18 18:29:35 -0700204 [IW_IOCTL_IDX(SIOCSIWENCODE)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200205 .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 },
Joe Perches44608f82010-03-18 18:29:35 -0700210 [IW_IOCTL_IDX(SIOCGIWENCODE)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200211 .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 },
Joe Perches44608f82010-03-18 18:29:35 -0700216 [IW_IOCTL_IDX(SIOCSIWPOWER)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200217 .header_type = IW_HEADER_TYPE_PARAM,
218 },
Joe Perches44608f82010-03-18 18:29:35 -0700219 [IW_IOCTL_IDX(SIOCGIWPOWER)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200220 .header_type = IW_HEADER_TYPE_PARAM,
221 },
Joe Perches44608f82010-03-18 18:29:35 -0700222 [IW_IOCTL_IDX(SIOCSIWGENIE)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200223 .header_type = IW_HEADER_TYPE_POINT,
224 .token_size = 1,
225 .max_tokens = IW_GENERIC_IE_MAX,
226 },
Joe Perches44608f82010-03-18 18:29:35 -0700227 [IW_IOCTL_IDX(SIOCGIWGENIE)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200228 .header_type = IW_HEADER_TYPE_POINT,
229 .token_size = 1,
230 .max_tokens = IW_GENERIC_IE_MAX,
231 },
Joe Perches44608f82010-03-18 18:29:35 -0700232 [IW_IOCTL_IDX(SIOCSIWAUTH)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200233 .header_type = IW_HEADER_TYPE_PARAM,
234 },
Joe Perches44608f82010-03-18 18:29:35 -0700235 [IW_IOCTL_IDX(SIOCGIWAUTH)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200236 .header_type = IW_HEADER_TYPE_PARAM,
237 },
Joe Perches44608f82010-03-18 18:29:35 -0700238 [IW_IOCTL_IDX(SIOCSIWENCODEEXT)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200239 .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 },
Joe Perches44608f82010-03-18 18:29:35 -0700245 [IW_IOCTL_IDX(SIOCGIWENCODEEXT)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200246 .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 },
Joe Perches44608f82010-03-18 18:29:35 -0700252 [IW_IOCTL_IDX(SIOCSIWPMKSA)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200253 .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 },
258};
Eric Dumazet95c96172012-04-15 05:58:06 +0000259static const unsigned int standard_ioctl_num = ARRAY_SIZE(standard_ioctl);
Johannes Berg3d23e342009-09-29 23:27:28 +0200260
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[] = {
Joe Perches76326f12010-03-18 18:29:36 -0700266 [IW_EVENT_IDX(IWEVTXDROP)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200267 .header_type = IW_HEADER_TYPE_ADDR,
268 },
Joe Perches76326f12010-03-18 18:29:36 -0700269 [IW_EVENT_IDX(IWEVQUAL)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200270 .header_type = IW_HEADER_TYPE_QUAL,
271 },
Joe Perches76326f12010-03-18 18:29:36 -0700272 [IW_EVENT_IDX(IWEVCUSTOM)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200273 .header_type = IW_HEADER_TYPE_POINT,
274 .token_size = 1,
275 .max_tokens = IW_CUSTOM_MAX,
276 },
Joe Perches76326f12010-03-18 18:29:36 -0700277 [IW_EVENT_IDX(IWEVREGISTERED)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200278 .header_type = IW_HEADER_TYPE_ADDR,
279 },
Joe Perches76326f12010-03-18 18:29:36 -0700280 [IW_EVENT_IDX(IWEVEXPIRED)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200281 .header_type = IW_HEADER_TYPE_ADDR,
282 },
Joe Perches76326f12010-03-18 18:29:36 -0700283 [IW_EVENT_IDX(IWEVGENIE)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200284 .header_type = IW_HEADER_TYPE_POINT,
285 .token_size = 1,
286 .max_tokens = IW_GENERIC_IE_MAX,
287 },
Joe Perches76326f12010-03-18 18:29:36 -0700288 [IW_EVENT_IDX(IWEVMICHAELMICFAILURE)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200289 .header_type = IW_HEADER_TYPE_POINT,
290 .token_size = 1,
291 .max_tokens = sizeof(struct iw_michaelmicfailure),
292 },
Joe Perches76326f12010-03-18 18:29:36 -0700293 [IW_EVENT_IDX(IWEVASSOCREQIE)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200294 .header_type = IW_HEADER_TYPE_POINT,
295 .token_size = 1,
296 .max_tokens = IW_GENERIC_IE_MAX,
297 },
Joe Perches76326f12010-03-18 18:29:36 -0700298 [IW_EVENT_IDX(IWEVASSOCRESPIE)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200299 .header_type = IW_HEADER_TYPE_POINT,
300 .token_size = 1,
301 .max_tokens = IW_GENERIC_IE_MAX,
302 },
Joe Perches76326f12010-03-18 18:29:36 -0700303 [IW_EVENT_IDX(IWEVPMKIDCAND)] = {
Johannes Berg3d23e342009-09-29 23:27:28 +0200304 .header_type = IW_HEADER_TYPE_POINT,
305 .token_size = 1,
306 .max_tokens = sizeof(struct iw_pmkid_cand),
307 },
308};
Eric Dumazet95c96172012-04-15 05:58:06 +0000309static const unsigned int standard_event_num = ARRAY_SIZE(standard_event);
Johannes Berg3d23e342009-09-29 23:27:28 +0200310
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
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
341
342
343/* IW event code */
344
Johannes Bergcb150b92016-01-27 13:29:34 +0100345void wireless_nlevent_flush(void)
Johannes Berg8bf86272016-01-27 12:37:52 +0100346{
347 struct sk_buff *skb;
348 struct net *net;
349
350 ASSERT_RTNL();
351
Kirill Tkhaif0b07bb12018-03-29 19:20:32 +0300352 down_read(&net_rwsem);
Johannes Berg8bf86272016-01-27 12:37:52 +0100353 for_each_net(net) {
354 while ((skb = skb_dequeue(&net->wext_nlevents)))
355 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL,
356 GFP_KERNEL);
357 }
Kirill Tkhaif0b07bb12018-03-29 19:20:32 +0300358 up_read(&net_rwsem);
Johannes Berg8bf86272016-01-27 12:37:52 +0100359}
Johannes Bergcb150b92016-01-27 13:29:34 +0100360EXPORT_SYMBOL_GPL(wireless_nlevent_flush);
Johannes Berg8bf86272016-01-27 12:37:52 +0100361
362static int wext_netdev_notifier_call(struct notifier_block *nb,
363 unsigned long state, void *ptr)
364{
365 /*
366 * When a netdev changes state in any way, flush all pending messages
367 * to avoid them going out in a strange order, e.g. RTM_NEWLINK after
368 * RTM_DELLINK, or with IFF_UP after without IFF_UP during dev_close()
369 * or similar - all of which could otherwise happen due to delays from
370 * schedule_work().
371 */
372 wireless_nlevent_flush();
373
374 return NOTIFY_OK;
375}
376
377static struct notifier_block wext_netdev_notifier = {
378 .notifier_call = wext_netdev_notifier_call,
379};
380
Johannes Berg3d23e342009-09-29 23:27:28 +0200381static int __net_init wext_pernet_init(struct net *net)
382{
383 skb_queue_head_init(&net->wext_nlevents);
384 return 0;
385}
386
387static void __net_exit wext_pernet_exit(struct net *net)
388{
389 skb_queue_purge(&net->wext_nlevents);
390}
391
392static struct pernet_operations wext_pernet_ops = {
393 .init = wext_pernet_init,
394 .exit = wext_pernet_exit,
395};
396
397static int __init wireless_nlevent_init(void)
398{
Johannes Berg8bf86272016-01-27 12:37:52 +0100399 int err = register_pernet_subsys(&wext_pernet_ops);
400
401 if (err)
402 return err;
403
Johannes Berg98bd1472016-03-16 14:29:08 +0100404 err = register_netdevice_notifier(&wext_netdev_notifier);
405 if (err)
406 unregister_pernet_subsys(&wext_pernet_ops);
407 return err;
Johannes Berg3d23e342009-09-29 23:27:28 +0200408}
409
410subsys_initcall(wireless_nlevent_init);
411
412/* Process events generated by the wireless layer or the driver. */
413static void wireless_nlevent_process(struct work_struct *work)
414{
Johannes Berg3d23e342009-09-29 23:27:28 +0200415 rtnl_lock();
Johannes Berg8bf86272016-01-27 12:37:52 +0100416 wireless_nlevent_flush();
Johannes Berg3d23e342009-09-29 23:27:28 +0200417 rtnl_unlock();
418}
419
420static DECLARE_WORK(wireless_nlevent_work, wireless_nlevent_process);
421
422static struct nlmsghdr *rtnetlink_ifinfo_prep(struct net_device *dev,
423 struct sk_buff *skb)
424{
425 struct ifinfomsg *r;
426 struct nlmsghdr *nlh;
427
428 nlh = nlmsg_put(skb, 0, 0, RTM_NEWLINK, sizeof(*r), 0);
429 if (!nlh)
430 return NULL;
431
432 r = nlmsg_data(nlh);
433 r->ifi_family = AF_UNSPEC;
434 r->__ifi_pad = 0;
435 r->ifi_type = dev->type;
436 r->ifi_index = dev->ifindex;
437 r->ifi_flags = dev_get_flags(dev);
438 r->ifi_change = 0; /* Wireless changes don't affect those flags */
439
David S. Miller9360ffd2012-03-29 04:41:26 -0400440 if (nla_put_string(skb, IFLA_IFNAME, dev->name))
441 goto nla_put_failure;
Johannes Berg3d23e342009-09-29 23:27:28 +0200442
443 return nlh;
444 nla_put_failure:
445 nlmsg_cancel(skb, nlh);
446 return NULL;
447}
448
449
450/*
451 * Main event dispatcher. Called from other parts and drivers.
452 * Send the event on the appropriate channels.
453 * May be called from interrupt context.
454 */
455void wireless_send_event(struct net_device * dev,
456 unsigned int cmd,
457 union iwreq_data * wrqu,
458 const char * extra)
459{
460 const struct iw_ioctl_description * descr = NULL;
461 int extra_len = 0;
462 struct iw_event *event; /* Mallocated whole event */
463 int event_len; /* Its size */
464 int hdr_len; /* Size of the event header */
465 int wrqu_off = 0; /* Offset in wrqu */
466 /* Don't "optimise" the following variable, it will crash */
Eric Dumazet95c96172012-04-15 05:58:06 +0000467 unsigned int cmd_index; /* *MUST* be unsigned */
Johannes Berg3d23e342009-09-29 23:27:28 +0200468 struct sk_buff *skb;
469 struct nlmsghdr *nlh;
470 struct nlattr *nla;
471#ifdef CONFIG_COMPAT
472 struct __compat_iw_event *compat_event;
473 struct compat_iw_point compat_wrqu;
474 struct sk_buff *compskb;
475#endif
476
477 /*
478 * Nothing in the kernel sends scan events with data, be safe.
479 * This is necessary because we cannot fix up scan event data
480 * for compat, due to being contained in 'extra', but normally
481 * applications are required to retrieve the scan data anyway
482 * and no data is included in the event, this codifies that
483 * practice.
484 */
485 if (WARN_ON(cmd == SIOCGIWSCAN && extra))
486 extra = NULL;
487
488 /* Get the description of the Event */
489 if (cmd <= SIOCIWLAST) {
Joe Perches44608f82010-03-18 18:29:35 -0700490 cmd_index = IW_IOCTL_IDX(cmd);
Johannes Berg3d23e342009-09-29 23:27:28 +0200491 if (cmd_index < standard_ioctl_num)
492 descr = &(standard_ioctl[cmd_index]);
493 } else {
Joe Perches76326f12010-03-18 18:29:36 -0700494 cmd_index = IW_EVENT_IDX(cmd);
Johannes Berg3d23e342009-09-29 23:27:28 +0200495 if (cmd_index < standard_event_num)
496 descr = &(standard_event[cmd_index]);
497 }
498 /* Don't accept unknown events */
499 if (descr == NULL) {
500 /* Note : we don't return an error to the driver, because
501 * the driver would not know what to do about it. It can't
502 * return an error to the user, because the event is not
503 * initiated by a user request.
504 * The best the driver could do is to log an error message.
505 * We will do it ourselves instead...
506 */
Joe Perchese9c02682010-11-16 19:56:49 -0800507 netdev_err(dev, "(WE) : Invalid/Unknown Wireless Event (0x%04X)\n",
508 cmd);
Johannes Berg3d23e342009-09-29 23:27:28 +0200509 return;
510 }
511
512 /* Check extra parameters and set extra_len */
513 if (descr->header_type == IW_HEADER_TYPE_POINT) {
514 /* Check if number of token fits within bounds */
515 if (wrqu->data.length > descr->max_tokens) {
Arend van Spriele5f5b2f2012-08-24 14:43:31 +0200516 netdev_err(dev, "(WE) : Wireless Event (cmd=0x%04X) too big (%d)\n",
517 cmd, wrqu->data.length);
Johannes Berg3d23e342009-09-29 23:27:28 +0200518 return;
519 }
520 if (wrqu->data.length < descr->min_tokens) {
Arend van Spriele5f5b2f2012-08-24 14:43:31 +0200521 netdev_err(dev, "(WE) : Wireless Event (cmd=0x%04X) too small (%d)\n",
522 cmd, wrqu->data.length);
Johannes Berg3d23e342009-09-29 23:27:28 +0200523 return;
524 }
525 /* Calculate extra_len - extra is NULL for restricted events */
526 if (extra != NULL)
527 extra_len = wrqu->data.length * descr->token_size;
528 /* Always at an offset in wrqu */
529 wrqu_off = IW_EV_POINT_OFF;
530 }
531
532 /* Total length of the event */
533 hdr_len = event_type_size[descr->header_type];
534 event_len = hdr_len + extra_len;
535
536 /*
537 * The problem for 64/32 bit.
538 *
539 * On 64-bit, a regular event is laid out as follows:
540 * | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 |
541 * | event.len | event.cmd | p a d d i n g |
542 * | wrqu data ... (with the correct size) |
543 *
544 * This padding exists because we manipulate event->u,
545 * and 'event' is not packed.
546 *
547 * An iw_point event is laid out like this instead:
548 * | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 |
549 * | event.len | event.cmd | p a d d i n g |
550 * | iwpnt.len | iwpnt.flg | p a d d i n g |
551 * | extra data ...
552 *
553 * The second padding exists because struct iw_point is extended,
554 * but this depends on the platform...
555 *
556 * On 32-bit, all the padding shouldn't be there.
557 */
558
559 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
560 if (!skb)
561 return;
562
563 /* Send via the RtNetlink event channel */
564 nlh = rtnetlink_ifinfo_prep(dev, skb);
565 if (WARN_ON(!nlh)) {
566 kfree_skb(skb);
567 return;
568 }
569
570 /* Add the wireless events in the netlink packet */
571 nla = nla_reserve(skb, IFLA_WIRELESS, event_len);
572 if (!nla) {
573 kfree_skb(skb);
574 return;
575 }
576 event = nla_data(nla);
577
578 /* Fill event - first clear to avoid data leaking */
579 memset(event, 0, hdr_len);
580 event->len = event_len;
581 event->cmd = cmd;
582 memcpy(&event->u, ((char *) wrqu) + wrqu_off, hdr_len - IW_EV_LCP_LEN);
583 if (extra_len)
584 memcpy(((char *) event) + hdr_len, extra, extra_len);
585
586 nlmsg_end(skb, nlh);
587#ifdef CONFIG_COMPAT
588 hdr_len = compat_event_type_size[descr->header_type];
589 event_len = hdr_len + extra_len;
590
591 compskb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
592 if (!compskb) {
593 kfree_skb(skb);
594 return;
595 }
596
597 /* Send via the RtNetlink event channel */
598 nlh = rtnetlink_ifinfo_prep(dev, compskb);
599 if (WARN_ON(!nlh)) {
600 kfree_skb(skb);
601 kfree_skb(compskb);
602 return;
603 }
604
605 /* Add the wireless events in the netlink packet */
606 nla = nla_reserve(compskb, IFLA_WIRELESS, event_len);
607 if (!nla) {
608 kfree_skb(skb);
609 kfree_skb(compskb);
610 return;
611 }
612 compat_event = nla_data(nla);
613
614 compat_event->len = event_len;
615 compat_event->cmd = cmd;
616 if (descr->header_type == IW_HEADER_TYPE_POINT) {
617 compat_wrqu.length = wrqu->data.length;
618 compat_wrqu.flags = wrqu->data.flags;
619 memcpy(&compat_event->pointer,
620 ((char *) &compat_wrqu) + IW_EV_COMPAT_POINT_OFF,
621 hdr_len - IW_EV_COMPAT_LCP_LEN);
622 if (extra_len)
623 memcpy(((char *) compat_event) + hdr_len,
624 extra, extra_len);
625 } else {
626 /* extra_len must be zero, so no if (extra) needed */
627 memcpy(&compat_event->pointer, wrqu,
628 hdr_len - IW_EV_COMPAT_LCP_LEN);
629 }
630
631 nlmsg_end(compskb, nlh);
632
633 skb_shinfo(skb)->frag_list = compskb;
634#endif
635 skb_queue_tail(&dev_net(dev)->wext_nlevents, skb);
636 schedule_work(&wireless_nlevent_work);
637}
638EXPORT_SYMBOL(wireless_send_event);
639
640
641
642/* IW handlers */
643
644struct iw_statistics *get_wireless_stats(struct net_device *dev)
645{
646#ifdef CONFIG_WIRELESS_EXT
647 if ((dev->wireless_handlers != NULL) &&
648 (dev->wireless_handlers->get_wireless_stats != NULL))
649 return dev->wireless_handlers->get_wireless_stats(dev);
650#endif
651
652#ifdef CONFIG_CFG80211_WEXT
Julia Lawall36539102010-08-28 17:41:06 +0200653 if (dev->ieee80211_ptr &&
Johannes Berg3d23e342009-09-29 23:27:28 +0200654 dev->ieee80211_ptr->wiphy &&
655 dev->ieee80211_ptr->wiphy->wext &&
656 dev->ieee80211_ptr->wiphy->wext->get_wireless_stats)
657 return dev->ieee80211_ptr->wiphy->wext->get_wireless_stats(dev);
658#endif
659
660 /* not found */
661 return NULL;
662}
663
664static int iw_handler_get_iwstats(struct net_device * dev,
665 struct iw_request_info * info,
666 union iwreq_data * wrqu,
667 char * extra)
668{
669 /* Get stats from the driver */
670 struct iw_statistics *stats;
671
672 stats = get_wireless_stats(dev);
673 if (stats) {
674 /* Copy statistics to extra */
675 memcpy(extra, stats, sizeof(struct iw_statistics));
676 wrqu->data.length = sizeof(struct iw_statistics);
677
678 /* Check if we need to clear the updated flag */
679 if (wrqu->data.flags != 0)
680 stats->qual.updated &= ~IW_QUAL_ALL_UPDATED;
681 return 0;
682 } else
683 return -EOPNOTSUPP;
684}
685
686static iw_handler get_handler(struct net_device *dev, unsigned int cmd)
687{
688 /* Don't "optimise" the following variable, it will crash */
689 unsigned int index; /* *MUST* be unsigned */
690 const struct iw_handler_def *handlers = NULL;
691
692#ifdef CONFIG_CFG80211_WEXT
693 if (dev->ieee80211_ptr && dev->ieee80211_ptr->wiphy)
694 handlers = dev->ieee80211_ptr->wiphy->wext;
695#endif
696#ifdef CONFIG_WIRELESS_EXT
697 if (dev->wireless_handlers)
698 handlers = dev->wireless_handlers;
699#endif
700
701 if (!handlers)
702 return NULL;
703
704 /* Try as a standard command */
Joe Perches44608f82010-03-18 18:29:35 -0700705 index = IW_IOCTL_IDX(cmd);
Johannes Berg3d23e342009-09-29 23:27:28 +0200706 if (index < handlers->num_standard)
707 return handlers->standard[index];
708
709#ifdef CONFIG_WEXT_PRIV
710 /* Try as a private command */
711 index = cmd - SIOCIWFIRSTPRIV;
712 if (index < handlers->num_private)
713 return handlers->private[index];
714#endif
715
716 /* Not found */
717 return NULL;
718}
719
720static int ioctl_standard_iw_point(struct iw_point *iwp, unsigned int cmd,
721 const struct iw_ioctl_description *descr,
722 iw_handler handler, struct net_device *dev,
723 struct iw_request_info *info)
724{
725 int err, extra_size, user_length = 0, essid_compat = 0;
726 char *extra;
727
728 /* Calculate space needed by arguments. Always allocate
729 * for max space.
730 */
731 extra_size = descr->max_tokens * descr->token_size;
732
733 /* Check need for ESSID compatibility for WE < 21 */
734 switch (cmd) {
735 case SIOCSIWESSID:
736 case SIOCGIWESSID:
737 case SIOCSIWNICKN:
738 case SIOCGIWNICKN:
739 if (iwp->length == descr->max_tokens + 1)
740 essid_compat = 1;
741 else if (IW_IS_SET(cmd) && (iwp->length != 0)) {
742 char essid[IW_ESSID_MAX_SIZE + 1];
743 unsigned int len;
744 len = iwp->length * descr->token_size;
745
746 if (len > IW_ESSID_MAX_SIZE)
747 return -EFAULT;
748
749 err = copy_from_user(essid, iwp->pointer, len);
750 if (err)
751 return -EFAULT;
752
753 if (essid[iwp->length - 1] == '\0')
754 essid_compat = 1;
755 }
756 break;
757 default:
758 break;
759 }
760
761 iwp->length -= essid_compat;
762
763 /* Check what user space is giving us */
764 if (IW_IS_SET(cmd)) {
765 /* Check NULL pointer */
766 if (!iwp->pointer && iwp->length != 0)
767 return -EFAULT;
768 /* Check if number of token fits within bounds */
769 if (iwp->length > descr->max_tokens)
770 return -E2BIG;
771 if (iwp->length < descr->min_tokens)
772 return -EINVAL;
773 } else {
774 /* Check NULL pointer */
775 if (!iwp->pointer)
776 return -EFAULT;
777 /* Save user space buffer size for checking */
778 user_length = iwp->length;
779
780 /* Don't check if user_length > max to allow forward
781 * compatibility. The test user_length < min is
782 * implied by the test at the end.
783 */
784
785 /* Support for very large requests */
786 if ((descr->flags & IW_DESCR_FLAG_NOMAX) &&
787 (user_length > descr->max_tokens)) {
788 /* Allow userspace to GET more than max so
789 * we can support any size GET requests.
790 * There is still a limit : -ENOMEM.
791 */
792 extra_size = user_length * descr->token_size;
793
794 /* Note : user_length is originally a __u16,
795 * and token_size is controlled by us,
796 * so extra_size won't get negative and
797 * won't overflow...
798 */
799 }
800 }
801
802 /* kzalloc() ensures NULL-termination for essid_compat. */
803 extra = kzalloc(extra_size, GFP_KERNEL);
804 if (!extra)
805 return -ENOMEM;
806
807 /* If it is a SET, get all the extra data in here */
808 if (IW_IS_SET(cmd) && (iwp->length != 0)) {
809 if (copy_from_user(extra, iwp->pointer,
810 iwp->length *
811 descr->token_size)) {
812 err = -EFAULT;
813 goto out;
814 }
815
816 if (cmd == SIOCSIWENCODEEXT) {
817 struct iw_encode_ext *ee = (void *) extra;
818
Julia Lawall7ab2485b2012-04-09 11:01:09 +0200819 if (iwp->length < sizeof(*ee) + ee->key_len) {
820 err = -EFAULT;
821 goto out;
822 }
Johannes Berg3d23e342009-09-29 23:27:28 +0200823 }
824 }
825
Johannes Berg42da2f92010-08-30 12:24:54 +0200826 if (IW_IS_GET(cmd) && !(descr->flags & IW_DESCR_FLAG_NOMAX)) {
827 /*
828 * If this is a GET, but not NOMAX, it means that the extra
829 * data is not bounded by userspace, but by max_tokens. Thus
830 * set the length to max_tokens. This matches the extra data
831 * allocation.
832 * The driver should fill it with the number of tokens it
833 * provided, and it may check iwp->length rather than having
834 * knowledge of max_tokens. If the driver doesn't change the
835 * iwp->length, this ioctl just copies back max_token tokens
836 * filled with zeroes. Hopefully the driver isn't claiming
837 * them to be valid data.
838 */
839 iwp->length = descr->max_tokens;
840 }
841
Johannes Berg3d23e342009-09-29 23:27:28 +0200842 err = handler(dev, info, (union iwreq_data *) iwp, extra);
843
844 iwp->length += essid_compat;
845
846 /* If we have something to return to the user */
847 if (!err && IW_IS_GET(cmd)) {
848 /* Check if there is enough buffer up there */
849 if (user_length < iwp->length) {
850 err = -E2BIG;
851 goto out;
852 }
853
854 if (copy_to_user(iwp->pointer, extra,
855 iwp->length *
856 descr->token_size)) {
857 err = -EFAULT;
858 goto out;
859 }
860 }
861
862 /* Generate an event to notify listeners of the change */
Jean Tourrilhes1014eb62009-11-24 10:47:08 -0800863 if ((descr->flags & IW_DESCR_FLAG_EVENT) &&
864 ((err == 0) || (err == -EIWCOMMIT))) {
Johannes Berg3d23e342009-09-29 23:27:28 +0200865 union iwreq_data *data = (union iwreq_data *) iwp;
866
867 if (descr->flags & IW_DESCR_FLAG_RESTRICT)
868 /* If the event is restricted, don't
869 * export the payload.
870 */
871 wireless_send_event(dev, cmd, data, NULL);
872 else
873 wireless_send_event(dev, cmd, data, extra);
874 }
875
876out:
877 kfree(extra);
878 return err;
879}
880
881/*
882 * Call the commit handler in the driver
883 * (if exist and if conditions are right)
884 *
885 * Note : our current commit strategy is currently pretty dumb,
886 * but we will be able to improve on that...
887 * The goal is to try to agreagate as many changes as possible
888 * before doing the commit. Drivers that will define a commit handler
889 * are usually those that need a reset after changing parameters, so
890 * we want to minimise the number of reset.
891 * A cool idea is to use a timer : at each "set" command, we re-set the
892 * timer, when the timer eventually fires, we call the driver.
893 * Hopefully, more on that later.
894 *
895 * Also, I'm waiting to see how many people will complain about the
896 * netif_running(dev) test. I'm open on that one...
897 * Hopefully, the driver will remember to do a commit in "open()" ;-)
898 */
899int call_commit_handler(struct net_device *dev)
900{
901#ifdef CONFIG_WIRELESS_EXT
902 if ((netif_running(dev)) &&
903 (dev->wireless_handlers->standard[0] != NULL))
904 /* Call the commit handler on the driver */
905 return dev->wireless_handlers->standard[0](dev, NULL,
906 NULL, NULL);
907 else
908 return 0; /* Command completed successfully */
909#else
910 /* cfg80211 has no commit */
911 return 0;
912#endif
913}
914
915/*
916 * Main IOCTl dispatcher.
917 * Check the type of IOCTL and call the appropriate wrapper...
918 */
Johannes Berg4f39a1f2017-06-14 09:21:58 +0200919static int wireless_process_ioctl(struct net *net, struct iwreq *iwr,
Johannes Berg3d23e342009-09-29 23:27:28 +0200920 unsigned int cmd,
921 struct iw_request_info *info,
922 wext_ioctl_func standard,
923 wext_ioctl_func private)
924{
Johannes Berg3d23e342009-09-29 23:27:28 +0200925 struct net_device *dev;
926 iw_handler handler;
927
928 /* Permissions are already checked in dev_ioctl() before calling us.
929 * The copy_to/from_user() of ifr is also dealt with in there */
930
931 /* Make sure the device exist */
Johannes Berg4f39a1f2017-06-14 09:21:58 +0200932 if ((dev = __dev_get_by_name(net, iwr->ifr_name)) == NULL)
Johannes Berg3d23e342009-09-29 23:27:28 +0200933 return -ENODEV;
934
935 /* A bunch of special cases, then the generic case...
936 * Note that 'cmd' is already filtered in dev_ioctl() with
937 * (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) */
938 if (cmd == SIOCGIWSTATS)
939 return standard(dev, iwr, cmd, info,
940 &iw_handler_get_iwstats);
941
942#ifdef CONFIG_WEXT_PRIV
943 if (cmd == SIOCGIWPRIV && dev->wireless_handlers)
944 return standard(dev, iwr, cmd, info,
945 iw_handler_get_private);
946#endif
947
948 /* Basic check */
949 if (!netif_device_present(dev))
950 return -ENODEV;
951
952 /* New driver API : try to find the handler */
953 handler = get_handler(dev, cmd);
954 if (handler) {
955 /* Standard and private are not the same */
956 if (cmd < SIOCIWFIRSTPRIV)
957 return standard(dev, iwr, cmd, info, handler);
958 else if (private)
959 return private(dev, iwr, cmd, info, handler);
960 }
Johannes Berg3d23e342009-09-29 23:27:28 +0200961 return -EOPNOTSUPP;
962}
963
964/* If command is `set a parameter', or `get the encoding parameters',
965 * check if the user has the right to do it.
966 */
967static int wext_permission_check(unsigned int cmd)
968{
Joe Perchesf64f9e72009-11-29 16:55:45 -0800969 if ((IW_IS_SET(cmd) || cmd == SIOCGIWENCODE ||
970 cmd == SIOCGIWENCODEEXT) &&
971 !capable(CAP_NET_ADMIN))
Johannes Berg3d23e342009-09-29 23:27:28 +0200972 return -EPERM;
973
974 return 0;
975}
976
977/* entry point from dev ioctl */
Johannes Berg4f39a1f2017-06-14 09:21:58 +0200978static int wext_ioctl_dispatch(struct net *net, struct iwreq *iwr,
Johannes Berg3d23e342009-09-29 23:27:28 +0200979 unsigned int cmd, struct iw_request_info *info,
980 wext_ioctl_func standard,
981 wext_ioctl_func private)
982{
983 int ret = wext_permission_check(cmd);
984
985 if (ret)
986 return ret;
987
Johannes Berg4f39a1f2017-06-14 09:21:58 +0200988 dev_load(net, iwr->ifr_name);
Johannes Berg3d23e342009-09-29 23:27:28 +0200989 rtnl_lock();
Johannes Berg4f39a1f2017-06-14 09:21:58 +0200990 ret = wireless_process_ioctl(net, iwr, cmd, info, standard, private);
Johannes Berg3d23e342009-09-29 23:27:28 +0200991 rtnl_unlock();
992
993 return ret;
994}
995
996/*
997 * Wrapper to call a standard Wireless Extension handler.
998 * We do various checks and also take care of moving data between
999 * user space and kernel space.
1000 */
1001static int ioctl_standard_call(struct net_device * dev,
1002 struct iwreq *iwr,
1003 unsigned int cmd,
1004 struct iw_request_info *info,
1005 iw_handler handler)
1006{
1007 const struct iw_ioctl_description * descr;
1008 int ret = -EINVAL;
1009
1010 /* Get the description of the IOCTL */
Joe Perches44608f82010-03-18 18:29:35 -07001011 if (IW_IOCTL_IDX(cmd) >= standard_ioctl_num)
Johannes Berg3d23e342009-09-29 23:27:28 +02001012 return -EOPNOTSUPP;
Joe Perches44608f82010-03-18 18:29:35 -07001013 descr = &(standard_ioctl[IW_IOCTL_IDX(cmd)]);
Johannes Berg3d23e342009-09-29 23:27:28 +02001014
1015 /* Check if we have a pointer to user space data or not */
1016 if (descr->header_type != IW_HEADER_TYPE_POINT) {
1017
1018 /* No extra arguments. Trivial to handle */
1019 ret = handler(dev, info, &(iwr->u), NULL);
1020
1021 /* Generate an event to notify listeners of the change */
1022 if ((descr->flags & IW_DESCR_FLAG_EVENT) &&
1023 ((ret == 0) || (ret == -EIWCOMMIT)))
1024 wireless_send_event(dev, cmd, &(iwr->u), NULL);
1025 } else {
1026 ret = ioctl_standard_iw_point(&iwr->u.data, cmd, descr,
1027 handler, dev, info);
1028 }
1029
1030 /* Call commit handler if needed and defined */
1031 if (ret == -EIWCOMMIT)
1032 ret = call_commit_handler(dev);
1033
1034 /* Here, we will generate the appropriate event if needed */
1035
1036 return ret;
1037}
1038
1039
Al Virob1b0c242017-10-01 20:13:08 -04001040int wext_handle_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Johannes Berg3d23e342009-09-29 23:27:28 +02001041{
1042 struct iw_request_info info = { .cmd = cmd, .flags = 0 };
Al Virob1b0c242017-10-01 20:13:08 -04001043 struct iwreq iwr;
Johannes Berg3d23e342009-09-29 23:27:28 +02001044 int ret;
1045
Al Virob1b0c242017-10-01 20:13:08 -04001046 if (copy_from_user(&iwr, arg, sizeof(iwr)))
1047 return -EFAULT;
1048
1049 iwr.ifr_name[sizeof(iwr.ifr_name) - 1] = 0;
1050
1051 ret = wext_ioctl_dispatch(net, &iwr, cmd, &info,
Johannes Berg3d23e342009-09-29 23:27:28 +02001052 ioctl_standard_call,
1053 ioctl_private_call);
1054 if (ret >= 0 &&
1055 IW_IS_GET(cmd) &&
Al Virob1b0c242017-10-01 20:13:08 -04001056 copy_to_user(arg, &iwr, sizeof(struct iwreq)))
Johannes Berg3d23e342009-09-29 23:27:28 +02001057 return -EFAULT;
1058
1059 return ret;
1060}
1061
1062#ifdef CONFIG_COMPAT
1063static int compat_standard_call(struct net_device *dev,
1064 struct iwreq *iwr,
1065 unsigned int cmd,
1066 struct iw_request_info *info,
1067 iw_handler handler)
1068{
1069 const struct iw_ioctl_description *descr;
1070 struct compat_iw_point *iwp_compat;
1071 struct iw_point iwp;
1072 int err;
1073
Joe Perches44608f82010-03-18 18:29:35 -07001074 descr = standard_ioctl + IW_IOCTL_IDX(cmd);
Johannes Berg3d23e342009-09-29 23:27:28 +02001075
1076 if (descr->header_type != IW_HEADER_TYPE_POINT)
1077 return ioctl_standard_call(dev, iwr, cmd, info, handler);
1078
1079 iwp_compat = (struct compat_iw_point *) &iwr->u.data;
1080 iwp.pointer = compat_ptr(iwp_compat->pointer);
1081 iwp.length = iwp_compat->length;
1082 iwp.flags = iwp_compat->flags;
1083
1084 err = ioctl_standard_iw_point(&iwp, cmd, descr, handler, dev, info);
1085
1086 iwp_compat->pointer = ptr_to_compat(iwp.pointer);
1087 iwp_compat->length = iwp.length;
1088 iwp_compat->flags = iwp.flags;
1089
1090 return err;
1091}
1092
1093int compat_wext_handle_ioctl(struct net *net, unsigned int cmd,
1094 unsigned long arg)
1095{
1096 void __user *argp = (void __user *)arg;
1097 struct iw_request_info info;
1098 struct iwreq iwr;
1099 char *colon;
1100 int ret;
1101
1102 if (copy_from_user(&iwr, argp, sizeof(struct iwreq)))
1103 return -EFAULT;
1104
1105 iwr.ifr_name[IFNAMSIZ-1] = 0;
1106 colon = strchr(iwr.ifr_name, ':');
1107 if (colon)
1108 *colon = 0;
1109
1110 info.cmd = cmd;
1111 info.flags = IW_REQUEST_FLAG_COMPAT;
1112
Johannes Berg4f39a1f2017-06-14 09:21:58 +02001113 ret = wext_ioctl_dispatch(net, &iwr, cmd, &info,
Johannes Berg3d23e342009-09-29 23:27:28 +02001114 compat_standard_call,
1115 compat_private_call);
1116
1117 if (ret >= 0 &&
1118 IW_IS_GET(cmd) &&
1119 copy_to_user(argp, &iwr, sizeof(struct iwreq)))
1120 return -EFAULT;
1121
1122 return ret;
1123}
1124#endif
Johannes Berg10b2eb62017-01-13 09:31:32 +01001125
1126char *iwe_stream_add_event(struct iw_request_info *info, char *stream,
1127 char *ends, struct iw_event *iwe, int event_len)
1128{
1129 int lcp_len = iwe_stream_lcp_len(info);
1130
1131 event_len = iwe_stream_event_len_adjust(info, event_len);
1132
1133 /* Check if it's possible */
1134 if (likely((stream + event_len) < ends)) {
1135 iwe->len = event_len;
1136 /* Beware of alignement issues on 64 bits */
1137 memcpy(stream, (char *) iwe, IW_EV_LCP_PK_LEN);
1138 memcpy(stream + lcp_len, &iwe->u,
1139 event_len - lcp_len);
1140 stream += event_len;
1141 }
1142
1143 return stream;
1144}
1145EXPORT_SYMBOL(iwe_stream_add_event);
1146
1147char *iwe_stream_add_point(struct iw_request_info *info, char *stream,
1148 char *ends, struct iw_event *iwe, char *extra)
1149{
1150 int event_len = iwe_stream_point_len(info) + iwe->u.data.length;
1151 int point_len = iwe_stream_point_len(info);
1152 int lcp_len = iwe_stream_lcp_len(info);
1153
1154 /* Check if it's possible */
1155 if (likely((stream + event_len) < ends)) {
1156 iwe->len = event_len;
1157 memcpy(stream, (char *) iwe, IW_EV_LCP_PK_LEN);
1158 memcpy(stream + lcp_len,
1159 ((char *) &iwe->u) + IW_EV_POINT_OFF,
1160 IW_EV_POINT_PK_LEN - IW_EV_LCP_PK_LEN);
1161 if (iwe->u.data.length && extra)
1162 memcpy(stream + point_len, extra, iwe->u.data.length);
1163 stream += event_len;
1164 }
1165
1166 return stream;
1167}
1168EXPORT_SYMBOL(iwe_stream_add_point);
1169
1170char *iwe_stream_add_value(struct iw_request_info *info, char *event,
1171 char *value, char *ends, struct iw_event *iwe,
1172 int event_len)
1173{
1174 int lcp_len = iwe_stream_lcp_len(info);
1175
1176 /* Don't duplicate LCP */
1177 event_len -= IW_EV_LCP_LEN;
1178
1179 /* Check if it's possible */
1180 if (likely((value + event_len) < ends)) {
1181 /* Add new value */
1182 memcpy(value, &iwe->u, event_len);
1183 value += event_len;
1184 /* Patch LCP */
1185 iwe->len = value - event;
1186 memcpy(event, (char *) iwe, lcp_len);
1187 }
1188
1189 return value;
1190}
1191EXPORT_SYMBOL(iwe_stream_add_value);