2 * This file implement the Wireless Extensions priv API.
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>
8 * (As all part of the Linux kernel, this file is GPL)
10 #include <linux/slab.h>
11 #include <linux/wireless.h>
12 #include <linux/netdevice.h>
13 #include <net/iw_handler.h>
16 int iw_handler_get_private(struct net_device
* dev
,
17 struct iw_request_info
* info
,
18 union iwreq_data
* wrqu
,
21 /* Check if the driver has something to export */
22 if ((dev
->wireless_handlers
->num_private_args
== 0) ||
23 (dev
->wireless_handlers
->private_args
== NULL
))
26 /* Check if there is enough buffer up there */
27 if (wrqu
->data
.length
< dev
->wireless_handlers
->num_private_args
) {
28 /* User space can't know in advance how large the buffer
29 * needs to be. Give it a hint, so that we can support
30 * any size buffer we want somewhat efficiently... */
31 wrqu
->data
.length
= dev
->wireless_handlers
->num_private_args
;
35 /* Set the number of available ioctls. */
36 wrqu
->data
.length
= dev
->wireless_handlers
->num_private_args
;
38 /* Copy structure to the user buffer. */
39 memcpy(extra
, dev
->wireless_handlers
->private_args
,
40 sizeof(struct iw_priv_args
) * wrqu
->data
.length
);
45 /* Size (in bytes) of the various private data types */
46 static const char iw_priv_type_size
[] = {
47 0, /* IW_PRIV_TYPE_NONE */
48 1, /* IW_PRIV_TYPE_BYTE */
49 1, /* IW_PRIV_TYPE_CHAR */
51 sizeof(__u32
), /* IW_PRIV_TYPE_INT */
52 sizeof(struct iw_freq
), /* IW_PRIV_TYPE_FLOAT */
53 sizeof(struct sockaddr
), /* IW_PRIV_TYPE_ADDR */
57 static int get_priv_size(__u16 args
)
59 int num
= args
& IW_PRIV_SIZE_MASK
;
60 int type
= (args
& IW_PRIV_TYPE_MASK
) >> 12;
62 return num
* iw_priv_type_size
[type
];
65 static int adjust_priv_size(__u16 args
, struct iw_point
*iwp
)
67 int num
= iwp
->length
;
68 int max
= args
& IW_PRIV_SIZE_MASK
;
69 int type
= (args
& IW_PRIV_TYPE_MASK
) >> 12;
71 /* Make sure the driver doesn't goof up */
75 return num
* iw_priv_type_size
[type
];
79 * Wrapper to call a private Wireless Extension handler.
80 * We do various checks and also take care of moving data between
81 * user space and kernel space.
82 * It's not as nice and slimline as the standard wrapper. The cause
83 * is struct iw_priv_args, which was not really designed for the
84 * job we are going here.
86 * IMPORTANT : This function prevent to set and get data on the same
87 * IOCTL and enforce the SET/GET convention. Not doing it would be
89 * If you need to set and get data at the same time, please don't use
90 * a iw_handler but process it in your ioctl handler (i.e. use the
93 static int get_priv_descr_and_size(struct net_device
*dev
, unsigned int cmd
,
94 const struct iw_priv_args
**descrp
)
96 const struct iw_priv_args
*descr
;
100 for (i
= 0; i
< dev
->wireless_handlers
->num_private_args
; i
++) {
101 if (cmd
== dev
->wireless_handlers
->private_args
[i
].cmd
) {
102 descr
= &dev
->wireless_handlers
->private_args
[i
];
109 if (IW_IS_SET(cmd
)) {
110 int offset
= 0; /* For sub-ioctls */
111 /* Check for sub-ioctl handler */
112 if (descr
->name
[0] == '\0')
113 /* Reserve one int for sub-ioctl index */
114 offset
= sizeof(__u32
);
116 /* Size of set arguments */
117 extra_size
= get_priv_size(descr
->set_args
);
119 /* Does it fits in iwr ? */
120 if ((descr
->set_args
& IW_PRIV_SIZE_FIXED
) &&
121 ((extra_size
+ offset
) <= IFNAMSIZ
))
124 /* Size of get arguments */
125 extra_size
= get_priv_size(descr
->get_args
);
127 /* Does it fits in iwr ? */
128 if ((descr
->get_args
& IW_PRIV_SIZE_FIXED
) &&
129 (extra_size
<= IFNAMSIZ
))
137 static int ioctl_private_iw_point(struct iw_point
*iwp
, unsigned int cmd
,
138 const struct iw_priv_args
*descr
,
139 iw_handler handler
, struct net_device
*dev
,
140 struct iw_request_info
*info
, int extra_size
)
145 /* Check what user space is giving us */
146 if (IW_IS_SET(cmd
)) {
147 if (!iwp
->pointer
&& iwp
->length
!= 0)
150 if (iwp
->length
> (descr
->set_args
& IW_PRIV_SIZE_MASK
))
152 } else if (!iwp
->pointer
)
155 extra
= kmalloc(extra_size
, GFP_KERNEL
);
159 /* If it is a SET, get all the extra data in here */
160 if (IW_IS_SET(cmd
) && (iwp
->length
!= 0)) {
161 if (copy_from_user(extra
, iwp
->pointer
, extra_size
)) {
167 /* Call the handler */
168 err
= handler(dev
, info
, (union iwreq_data
*) iwp
, extra
);
170 /* If we have something to return to the user */
171 if (!err
&& IW_IS_GET(cmd
)) {
172 /* Adjust for the actual length if it's variable,
173 * avoid leaking kernel bits outside.
175 if (!(descr
->get_args
& IW_PRIV_SIZE_FIXED
))
176 extra_size
= adjust_priv_size(descr
->get_args
, iwp
);
178 if (copy_to_user(iwp
->pointer
, extra
, extra_size
))
187 int ioctl_private_call(struct net_device
*dev
, struct iwreq
*iwr
,
188 unsigned int cmd
, struct iw_request_info
*info
,
191 int extra_size
= 0, ret
= -EINVAL
;
192 const struct iw_priv_args
*descr
;
194 extra_size
= get_priv_descr_and_size(dev
, cmd
, &descr
);
196 /* Check if we have a pointer to user space data or not. */
197 if (extra_size
== 0) {
198 /* No extra arguments. Trivial to handle */
199 ret
= handler(dev
, info
, &(iwr
->u
), (char *) &(iwr
->u
));
201 ret
= ioctl_private_iw_point(&iwr
->u
.data
, cmd
, descr
,
202 handler
, dev
, info
, extra_size
);
205 /* Call commit handler if needed and defined */
206 if (ret
== -EIWCOMMIT
)
207 ret
= call_commit_handler(dev
);
213 int compat_private_call(struct net_device
*dev
, struct iwreq
*iwr
,
214 unsigned int cmd
, struct iw_request_info
*info
,
217 const struct iw_priv_args
*descr
;
220 extra_size
= get_priv_descr_and_size(dev
, cmd
, &descr
);
222 /* Check if we have a pointer to user space data or not. */
223 if (extra_size
== 0) {
224 /* No extra arguments. Trivial to handle */
225 ret
= handler(dev
, info
, &(iwr
->u
), (char *) &(iwr
->u
));
227 struct compat_iw_point
*iwp_compat
;
230 iwp_compat
= (struct compat_iw_point
*) &iwr
->u
.data
;
231 iwp
.pointer
= compat_ptr(iwp_compat
->pointer
);
232 iwp
.length
= iwp_compat
->length
;
233 iwp
.flags
= iwp_compat
->flags
;
235 ret
= ioctl_private_iw_point(&iwp
, cmd
, descr
,
236 handler
, dev
, info
, extra_size
);
238 iwp_compat
->pointer
= ptr_to_compat(iwp
.pointer
);
239 iwp_compat
->length
= iwp
.length
;
240 iwp_compat
->flags
= iwp
.flags
;
243 /* Call commit handler if needed and defined */
244 if (ret
== -EIWCOMMIT
)
245 ret
= call_commit_handler(dev
);