blob: 5b2e22e7a316a7a72a6ffe113946e38ec5eee0cd [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * ioctl32.c: Conversion between 32bit and 64bit native ioctls.
4 *
5 * Copyright (C) 1997-2000 Jakub Jelinek (jakub@redhat.com)
6 * Copyright (C) 1998 Eddie C. Dost (ecd@skynet.be)
7 * Copyright (C) 2001,2002 Andi Kleen, SuSE Labs
Pavel Macheka2531292010-07-18 14:27:13 +02008 * Copyright (C) 2003 Pavel Machek (pavel@ucw.cz)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * These routines maintain argument size conversion between 32bit and 64bit
11 * ioctls.
12 */
13
Akos Maroy3fee37c2008-01-06 11:15:55 +010014#include <linux/joystick.h>
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/types.h>
17#include <linux/compat.h>
18#include <linux/kernel.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080019#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/compiler.h>
21#include <linux/sched.h>
22#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/ioctl.h>
24#include <linux/if.h>
25#include <linux/if_bridge.h>
NeilBrownbff61972009-03-31 14:33:13 +110026#include <linux/raid/md_u.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/kd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/route.h>
29#include <linux/in6.h>
30#include <linux/ipv6_route.h>
31#include <linux/skbuff.h>
32#include <linux/netlink.h>
33#include <linux/vt.h>
Ankit Jain3e63cbb2009-06-19 14:28:07 -040034#include <linux/falloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/fs.h>
36#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/ppp_defs.h>
Paul Mackerras4b32da2b2012-03-04 12:56:55 +000038#include <linux/ppp-ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/if_pppox.h>
40#include <linux/mtio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/tty.h>
42#include <linux/vt_kern.h>
43#include <linux/fb.h>
Mauro Carvalho Chehab88ae7622010-12-27 07:47:54 -030044#include <linux/videodev2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/netdevice.h>
46#include <linux/raw.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/blkdev.h>
48#include <linux/elevator.h>
49#include <linux/rtc.h>
50#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/if_tun.h>
53#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <linux/syscalls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/atalk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090056#include <linux/gfp.h>
Hans Verkuil594edf32015-11-11 08:26:12 -020057#include <linux/cec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Al Viro66cf1912016-01-07 09:53:30 -050059#include "internal.h"
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <net/bluetooth/bluetooth.h>
Marcel Holtmannf49daa82014-07-11 04:58:29 +020062#include <net/bluetooth/hci_sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <net/bluetooth/rfcomm.h>
64
65#include <linux/capi.h>
Hansjoerg Lipp5024ad42006-06-26 00:25:35 -070066#include <linux/gigaset_dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Randy Dunlap3c3622d2008-07-16 08:52:00 -050068#ifdef CONFIG_BLOCK
Johannes Stezenbach390192b2011-07-01 22:32:26 +020069#include <linux/cdrom.h>
70#include <linux/fd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <scsi/scsi_ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#include <scsi/sg.h>
Randy Dunlap3c3622d2008-07-16 08:52:00 -050074#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080076#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#include <linux/ethtool.h>
78#include <linux/mii.h>
79#include <linux/if_bonding.h>
80#include <linux/watchdog.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#include <linux/soundcard.h>
83#include <linux/lp.h>
84#include <linux/ppdev.h>
85
86#include <linux/atm.h>
87#include <linux/atmarp.h>
88#include <linux/atmclip.h>
89#include <linux/atmdev.h>
90#include <linux/atmioc.h>
91#include <linux/atmlec.h>
92#include <linux/atmmpc.h>
93#include <linux/atmsvc.h>
94#include <linux/atm_tcp.h>
95#include <linux/sonet.h>
96#include <linux/atm_suni.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98#include <linux/usb.h>
99#include <linux/usbdevice_fs.h>
100#include <linux/nbd.h>
101#include <linux/random.h>
102#include <linux/filter.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104#include <linux/hiddev.h>
105
David S. Miller6e87abd2005-11-16 00:52:57 -0800106
Arnd Bergmann661f6272009-11-05 19:52:55 +0100107#include <linux/sort.h>
108
David S. Miller81639042007-07-29 00:50:42 -0700109#ifdef CONFIG_SPARC
110#include <asm/fbio.h>
111#endif
112
Jann Horna7f61e892016-01-05 18:27:30 +0100113#define convert_in_user(srcptr, dstptr) \
114({ \
115 typeof(*srcptr) val; \
116 \
117 get_user(val, srcptr) || put_user(val, dstptr); \
118})
119
Al Viro66cf1912016-01-07 09:53:30 -0500120static int do_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Jann Hornb4341722016-01-05 18:27:29 +0100121{
122 int err;
123
124 err = security_file_ioctl(file, cmd, arg);
125 if (err)
126 return err;
127
Al Viro66cf1912016-01-07 09:53:30 -0500128 return vfs_ioctl(file, cmd, arg);
Jann Hornb4341722016-01-05 18:27:29 +0100129}
130
David Howells93614012006-09-30 20:45:40 +0200131#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132typedef struct sg_io_hdr32 {
133 compat_int_t interface_id; /* [i] 'S' for SCSI generic (required) */
134 compat_int_t dxfer_direction; /* [i] data transfer direction */
135 unsigned char cmd_len; /* [i] SCSI command length ( <= 16 bytes) */
136 unsigned char mx_sb_len; /* [i] max length to write to sbp */
137 unsigned short iovec_count; /* [i] 0 implies no scatter gather */
138 compat_uint_t dxfer_len; /* [i] byte count of data transfer */
139 compat_uint_t dxferp; /* [i], [*io] points to data transfer memory
140 or scatter gather list */
141 compat_uptr_t cmdp; /* [i], [*i] points to command to perform */
142 compat_uptr_t sbp; /* [i], [*o] points to sense_buffer memory */
143 compat_uint_t timeout; /* [i] MAX_UINT->no timeout (unit: millisec) */
144 compat_uint_t flags; /* [i] 0 -> default, see SG_FLAG... */
145 compat_int_t pack_id; /* [i->o] unused internally (normally) */
146 compat_uptr_t usr_ptr; /* [i->o] unused internally */
147 unsigned char status; /* [o] scsi status */
148 unsigned char masked_status; /* [o] shifted, masked scsi status */
149 unsigned char msg_status; /* [o] messaging level data (optional) */
150 unsigned char sb_len_wr; /* [o] byte count actually written to sbp */
151 unsigned short host_status; /* [o] errors from host adapter */
152 unsigned short driver_status; /* [o] errors from software driver */
153 compat_int_t resid; /* [o] dxfer_len - actual_transferred */
154 compat_uint_t duration; /* [o] time taken by cmd (unit: millisec) */
155 compat_uint_t info; /* [o] auxiliary information */
156} sg_io_hdr32_t; /* 64 bytes long (on sparc32) */
157
158typedef struct sg_iovec32 {
159 compat_uint_t iov_base;
160 compat_uint_t iov_len;
161} sg_iovec32_t;
162
163static int sg_build_iovec(sg_io_hdr_t __user *sgio, void __user *dxferp, u16 iovec_count)
164{
165 sg_iovec_t __user *iov = (sg_iovec_t __user *) (sgio + 1);
166 sg_iovec32_t __user *iov32 = dxferp;
167 int i;
168
169 for (i = 0; i < iovec_count; i++) {
170 u32 base, len;
171
172 if (get_user(base, &iov32[i].iov_base) ||
173 get_user(len, &iov32[i].iov_len) ||
174 put_user(compat_ptr(base), &iov[i].iov_base) ||
175 put_user(len, &iov[i].iov_len))
176 return -EFAULT;
177 }
178
179 if (put_user(iov, &sgio->dxferp))
180 return -EFAULT;
181 return 0;
182}
183
Al Viro66cf1912016-01-07 09:53:30 -0500184static int sg_ioctl_trans(struct file *file, unsigned int cmd,
Arnd Bergmann43c6e7b92009-11-14 23:16:18 +0100185 sg_io_hdr32_t __user *sgio32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
187 sg_io_hdr_t __user *sgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 u16 iovec_count;
189 u32 data;
190 void __user *dxferp;
191 int err;
FUJITA Tomonori84eb8fb2010-01-05 19:41:44 +0900192 int interface_id;
193
194 if (get_user(interface_id, &sgio32->interface_id))
195 return -EFAULT;
196 if (interface_id != 'S')
Al Viro66cf1912016-01-07 09:53:30 -0500197 return do_ioctl(file, cmd, (unsigned long)sgio32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 if (get_user(iovec_count, &sgio32->iovec_count))
200 return -EFAULT;
201
202 {
203 void __user *top = compat_alloc_user_space(0);
204 void __user *new = compat_alloc_user_space(sizeof(sg_io_hdr_t) +
205 (iovec_count * sizeof(sg_iovec_t)));
206 if (new > top)
207 return -EINVAL;
208
209 sgio = new;
210 }
211
212 /* Ok, now construct. */
213 if (copy_in_user(&sgio->interface_id, &sgio32->interface_id,
214 (2 * sizeof(int)) +
215 (2 * sizeof(unsigned char)) +
216 (1 * sizeof(unsigned short)) +
217 (1 * sizeof(unsigned int))))
218 return -EFAULT;
219
220 if (get_user(data, &sgio32->dxferp))
221 return -EFAULT;
222 dxferp = compat_ptr(data);
223 if (iovec_count) {
224 if (sg_build_iovec(sgio, dxferp, iovec_count))
225 return -EFAULT;
226 } else {
227 if (put_user(dxferp, &sgio->dxferp))
228 return -EFAULT;
229 }
230
231 {
232 unsigned char __user *cmdp;
233 unsigned char __user *sbp;
234
235 if (get_user(data, &sgio32->cmdp))
236 return -EFAULT;
237 cmdp = compat_ptr(data);
238
239 if (get_user(data, &sgio32->sbp))
240 return -EFAULT;
241 sbp = compat_ptr(data);
242
243 if (put_user(cmdp, &sgio->cmdp) ||
244 put_user(sbp, &sgio->sbp))
245 return -EFAULT;
246 }
247
248 if (copy_in_user(&sgio->timeout, &sgio32->timeout,
249 3 * sizeof(int)))
250 return -EFAULT;
251
252 if (get_user(data, &sgio32->usr_ptr))
253 return -EFAULT;
254 if (put_user(compat_ptr(data), &sgio->usr_ptr))
255 return -EFAULT;
256
Al Viro66cf1912016-01-07 09:53:30 -0500257 err = do_ioctl(file, cmd, (unsigned long) sgio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 if (err >= 0) {
260 void __user *datap;
261
262 if (copy_in_user(&sgio32->pack_id, &sgio->pack_id,
263 sizeof(int)) ||
264 get_user(datap, &sgio->usr_ptr) ||
265 put_user((u32)(unsigned long)datap,
266 &sgio32->usr_ptr) ||
267 copy_in_user(&sgio32->status, &sgio->status,
268 (4 * sizeof(unsigned char)) +
269 (2 * sizeof(unsigned short)) +
270 (3 * sizeof(int))))
271 err = -EFAULT;
272 }
273
274 return err;
275}
276
Andi Kleen29663872006-01-11 22:44:03 +0100277struct compat_sg_req_info { /* used by SG_GET_REQUEST_TABLE ioctl() */
278 char req_state;
279 char orphan;
280 char sg_io_owned;
281 char problem;
282 int pack_id;
283 compat_uptr_t usr_ptr;
284 unsigned int duration;
285 int unused;
286};
287
Al Viro66cf1912016-01-07 09:53:30 -0500288static int sg_grt_trans(struct file *file,
Jann Hornb4341722016-01-05 18:27:29 +0100289 unsigned int cmd, struct compat_sg_req_info __user *o)
Andi Kleen29663872006-01-11 22:44:03 +0100290{
291 int err, i;
Al Viro6b2b4e52006-02-01 06:33:33 -0500292 sg_req_info_t __user *r;
Andi Kleen29663872006-01-11 22:44:03 +0100293 r = compat_alloc_user_space(sizeof(sg_req_info_t)*SG_MAX_QUEUE);
Al Viro66cf1912016-01-07 09:53:30 -0500294 err = do_ioctl(file, cmd, (unsigned long)r);
Andi Kleen29663872006-01-11 22:44:03 +0100295 if (err < 0)
296 return err;
297 for (i = 0; i < SG_MAX_QUEUE; i++) {
298 void __user *ptr;
299 int d;
300
301 if (copy_in_user(o + i, r + i, offsetof(sg_req_info_t, usr_ptr)) ||
302 get_user(ptr, &r[i].usr_ptr) ||
303 get_user(d, &r[i].duration) ||
304 put_user((u32)(unsigned long)(ptr), &o[i].usr_ptr) ||
305 put_user(d, &o[i].duration))
306 return -EFAULT;
307 }
308 return err;
309}
David Howells93614012006-09-30 20:45:40 +0200310#endif /* CONFIG_BLOCK */
Andi Kleen29663872006-01-11 22:44:03 +0100311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312struct sock_fprog32 {
313 unsigned short len;
314 compat_caddr_t filter;
315};
316
317#define PPPIOCSPASS32 _IOW('t', 71, struct sock_fprog32)
318#define PPPIOCSACTIVE32 _IOW('t', 70, struct sock_fprog32)
319
Al Viro66cf1912016-01-07 09:53:30 -0500320static int ppp_sock_fprog_ioctl_trans(struct file *file,
Jann Hornb4341722016-01-05 18:27:29 +0100321 unsigned int cmd, struct sock_fprog32 __user *u_fprog32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 struct sock_fprog __user *u_fprog64 = compat_alloc_user_space(sizeof(struct sock_fprog));
324 void __user *fptr64;
325 u32 fptr32;
326 u16 flen;
327
328 if (get_user(flen, &u_fprog32->len) ||
329 get_user(fptr32, &u_fprog32->filter))
330 return -EFAULT;
331
332 fptr64 = compat_ptr(fptr32);
333
334 if (put_user(flen, &u_fprog64->len) ||
335 put_user(fptr64, &u_fprog64->filter))
336 return -EFAULT;
337
338 if (cmd == PPPIOCSPASS32)
339 cmd = PPPIOCSPASS;
340 else
341 cmd = PPPIOCSACTIVE;
342
Al Viro66cf1912016-01-07 09:53:30 -0500343 return do_ioctl(file, cmd, (unsigned long) u_fprog64);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
346struct ppp_option_data32 {
347 compat_caddr_t ptr;
348 u32 length;
349 compat_int_t transmit;
350};
351#define PPPIOCSCOMPRESS32 _IOW('t', 77, struct ppp_option_data32)
352
353struct ppp_idle32 {
354 compat_time_t xmit_idle;
355 compat_time_t recv_idle;
356};
357#define PPPIOCGIDLE32 _IOR('t', 63, struct ppp_idle32)
358
Al Viro66cf1912016-01-07 09:53:30 -0500359static int ppp_gidle(struct file *file, unsigned int cmd,
Arnd Bergmann43c6e7b92009-11-14 23:16:18 +0100360 struct ppp_idle32 __user *idle32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
362 struct ppp_idle __user *idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 __kernel_time_t xmit, recv;
364 int err;
365
366 idle = compat_alloc_user_space(sizeof(*idle));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Al Viro66cf1912016-01-07 09:53:30 -0500368 err = do_ioctl(file, PPPIOCGIDLE, (unsigned long) idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 if (!err) {
371 if (get_user(xmit, &idle->xmit_idle) ||
372 get_user(recv, &idle->recv_idle) ||
373 put_user(xmit, &idle32->xmit_idle) ||
374 put_user(recv, &idle32->recv_idle))
375 err = -EFAULT;
376 }
377 return err;
378}
379
Al Viro66cf1912016-01-07 09:53:30 -0500380static int ppp_scompress(struct file *file, unsigned int cmd,
Arnd Bergmann43c6e7b92009-11-14 23:16:18 +0100381 struct ppp_option_data32 __user *odata32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
383 struct ppp_option_data __user *odata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 __u32 data;
385 void __user *datap;
386
387 odata = compat_alloc_user_space(sizeof(*odata));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 if (get_user(data, &odata32->ptr))
390 return -EFAULT;
391
392 datap = compat_ptr(data);
393 if (put_user(datap, &odata->ptr))
394 return -EFAULT;
395
396 if (copy_in_user(&odata->length, &odata32->length,
397 sizeof(__u32) + sizeof(int)))
398 return -EFAULT;
399
Al Viro66cf1912016-01-07 09:53:30 -0500400 return do_ioctl(file, PPPIOCSCOMPRESS, (unsigned long) odata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
David Howells93614012006-09-30 20:45:40 +0200403#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404struct mtget32 {
405 compat_long_t mt_type;
406 compat_long_t mt_resid;
407 compat_long_t mt_dsreg;
408 compat_long_t mt_gstat;
409 compat_long_t mt_erreg;
410 compat_daddr_t mt_fileno;
411 compat_daddr_t mt_blkno;
412};
413#define MTIOCGET32 _IOR('m', 2, struct mtget32)
414
415struct mtpos32 {
416 compat_long_t mt_blkno;
417};
418#define MTIOCPOS32 _IOR('m', 3, struct mtpos32)
419
Al Viro66cf1912016-01-07 09:53:30 -0500420static int mt_ioctl_trans(struct file *file,
Jann Hornb4341722016-01-05 18:27:29 +0100421 unsigned int cmd, void __user *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
Jann Horna7f61e892016-01-05 18:27:30 +0100423 /* NULL initialization to make gcc shut up */
424 struct mtget __user *get = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 struct mtget32 __user *umget32;
Jann Horna7f61e892016-01-05 18:27:30 +0100426 struct mtpos __user *pos = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 struct mtpos32 __user *upos32;
428 unsigned long kcmd;
429 void *karg;
430 int err = 0;
431
432 switch(cmd) {
433 case MTIOCPOS32:
434 kcmd = MTIOCPOS;
Jann Horna7f61e892016-01-05 18:27:30 +0100435 pos = compat_alloc_user_space(sizeof(*pos));
436 karg = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 break;
Andrew Morton45bf5cd2010-03-05 13:43:19 -0800438 default: /* MTIOCGET32 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 kcmd = MTIOCGET;
Jann Horna7f61e892016-01-05 18:27:30 +0100440 get = compat_alloc_user_space(sizeof(*get));
441 karg = get;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
Jann Horna7f61e892016-01-05 18:27:30 +0100444 if (karg == NULL)
445 return -EFAULT;
Al Viro66cf1912016-01-07 09:53:30 -0500446 err = do_ioctl(file, kcmd, (unsigned long)karg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (err)
448 return err;
449 switch (cmd) {
450 case MTIOCPOS32:
Arnd Bergmann43c6e7b92009-11-14 23:16:18 +0100451 upos32 = argp;
Jann Horna7f61e892016-01-05 18:27:30 +0100452 err = convert_in_user(&pos->mt_blkno, &upos32->mt_blkno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 break;
454 case MTIOCGET32:
Arnd Bergmann43c6e7b92009-11-14 23:16:18 +0100455 umget32 = argp;
Jann Horna7f61e892016-01-05 18:27:30 +0100456 err = convert_in_user(&get->mt_type, &umget32->mt_type);
457 err |= convert_in_user(&get->mt_resid, &umget32->mt_resid);
458 err |= convert_in_user(&get->mt_dsreg, &umget32->mt_dsreg);
459 err |= convert_in_user(&get->mt_gstat, &umget32->mt_gstat);
460 err |= convert_in_user(&get->mt_erreg, &umget32->mt_erreg);
461 err |= convert_in_user(&get->mt_fileno, &umget32->mt_fileno);
462 err |= convert_in_user(&get->mt_blkno, &umget32->mt_blkno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 break;
464 }
465 return err ? -EFAULT: 0;
466}
467
David Howells93614012006-09-30 20:45:40 +0200468#endif /* CONFIG_BLOCK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470/* Bluetooth ioctls */
Johan Hedberg2cdf0962010-07-09 16:28:36 -0300471#define HCIUARTSETPROTO _IOW('U', 200, int)
472#define HCIUARTGETPROTO _IOR('U', 201, int)
473#define HCIUARTGETDEVICE _IOR('U', 202, int)
Johan Hedberg63c7d092010-07-12 11:37:04 -0300474#define HCIUARTSETFLAGS _IOW('U', 203, int)
475#define HCIUARTGETFLAGS _IOR('U', 204, int)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477#define BNEPCONNADD _IOW('B', 200, int)
478#define BNEPCONNDEL _IOW('B', 201, int)
479#define BNEPGETCONNLIST _IOR('B', 210, int)
480#define BNEPGETCONNINFO _IOR('B', 211, int)
Grzegorz Kolodziejczyk0477e2e2015-04-03 12:14:53 +0200481#define BNEPGETSUPPFEAT _IOR('B', 212, int)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483#define CMTPCONNADD _IOW('C', 200, int)
484#define CMTPCONNDEL _IOW('C', 201, int)
485#define CMTPGETCONNLIST _IOR('C', 210, int)
486#define CMTPGETCONNINFO _IOR('C', 211, int)
487
488#define HIDPCONNADD _IOW('H', 200, int)
489#define HIDPCONNDEL _IOW('H', 201, int)
490#define HIDPGETCONNLIST _IOR('H', 210, int)
491#define HIDPGETCONNINFO _IOR('H', 211, int)
492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494struct serial_struct32 {
495 compat_int_t type;
496 compat_int_t line;
497 compat_uint_t port;
498 compat_int_t irq;
499 compat_int_t flags;
500 compat_int_t xmit_fifo_size;
501 compat_int_t custom_divisor;
502 compat_int_t baud_base;
503 unsigned short close_delay;
504 char io_type;
505 char reserved_char[1];
506 compat_int_t hub6;
507 unsigned short closing_wait; /* time to wait before closing */
508 unsigned short closing_wait2; /* no longer used... */
509 compat_uint_t iomem_base;
510 unsigned short iomem_reg_shift;
511 unsigned int port_high;
512 /* compat_ulong_t iomap_base FIXME */
513 compat_int_t reserved[1];
514};
515
Al Viro66cf1912016-01-07 09:53:30 -0500516static int serial_struct_ioctl(struct file *file,
Jann Hornb4341722016-01-05 18:27:29 +0100517 unsigned cmd, struct serial_struct32 __user *ss32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 typedef struct serial_struct32 SS32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 int err;
Jann Horna7f61e892016-01-05 18:27:30 +0100521 struct serial_struct __user *ss = compat_alloc_user_space(sizeof(*ss));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 __u32 udata;
Heiko Carstens7116e992006-12-06 20:36:36 -0800523 unsigned int base;
Jann Horna7f61e892016-01-05 18:27:30 +0100524 unsigned char *iomem_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Jann Horna7f61e892016-01-05 18:27:30 +0100526 if (ss == NULL)
527 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 if (cmd == TIOCSSERIAL) {
Jann Horna7f61e892016-01-05 18:27:30 +0100529 if (copy_in_user(ss, ss32, offsetof(SS32, iomem_base)) ||
530 get_user(udata, &ss32->iomem_base))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return -EFAULT;
Jann Horna7f61e892016-01-05 18:27:30 +0100532 iomem_base = compat_ptr(udata);
533 if (put_user(iomem_base, &ss->iomem_base) ||
534 convert_in_user(&ss32->iomem_reg_shift,
535 &ss->iomem_reg_shift) ||
536 convert_in_user(&ss32->port_high, &ss->port_high) ||
537 put_user(0UL, &ss->iomap_base))
Heiko Carstens7116e992006-12-06 20:36:36 -0800538 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
Jann Horna7f61e892016-01-05 18:27:30 +0100540 err = do_ioctl(file, cmd, (unsigned long)ss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (cmd == TIOCGSERIAL && err >= 0) {
Jann Horna7f61e892016-01-05 18:27:30 +0100542 if (copy_in_user(ss32, ss, offsetof(SS32, iomem_base)) ||
543 get_user(iomem_base, &ss->iomem_base))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 return -EFAULT;
Jann Horna7f61e892016-01-05 18:27:30 +0100545 base = (unsigned long)iomem_base >> 32 ?
546 0xffffffff : (unsigned)(unsigned long)iomem_base;
547 if (put_user(base, &ss32->iomem_base) ||
548 convert_in_user(&ss->iomem_reg_shift,
549 &ss32->iomem_reg_shift) ||
550 convert_in_user(&ss->port_high, &ss32->port_high))
Heiko Carstens7116e992006-12-06 20:36:36 -0800551 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553 return err;
554}
555
Christoph Hellwigec3cad92006-01-09 20:52:11 -0800556#define RTC_IRQP_READ32 _IOR('p', 0x0b, compat_ulong_t)
557#define RTC_IRQP_SET32 _IOW('p', 0x0c, compat_ulong_t)
558#define RTC_EPOCH_READ32 _IOR('p', 0x0d, compat_ulong_t)
559#define RTC_EPOCH_SET32 _IOW('p', 0x0e, compat_ulong_t)
560
Al Viro66cf1912016-01-07 09:53:30 -0500561static int rtc_ioctl(struct file *file,
Jann Hornb4341722016-01-05 18:27:29 +0100562 unsigned cmd, void __user *argp)
Christoph Hellwigec3cad92006-01-09 20:52:11 -0800563{
Jann Horna7f61e892016-01-05 18:27:30 +0100564 unsigned long __user *valp = compat_alloc_user_space(sizeof(*valp));
Christoph Hellwigec3cad92006-01-09 20:52:11 -0800565 int ret;
566
Jann Horna7f61e892016-01-05 18:27:30 +0100567 if (valp == NULL)
568 return -EFAULT;
Christoph Hellwigec3cad92006-01-09 20:52:11 -0800569 switch (cmd) {
570 case RTC_IRQP_READ32:
571 case RTC_EPOCH_READ32:
Al Viro66cf1912016-01-07 09:53:30 -0500572 ret = do_ioctl(file, (cmd == RTC_IRQP_READ32) ?
Christoph Hellwigec3cad92006-01-09 20:52:11 -0800573 RTC_IRQP_READ : RTC_EPOCH_READ,
Jann Horna7f61e892016-01-05 18:27:30 +0100574 (unsigned long)valp);
Christoph Hellwigec3cad92006-01-09 20:52:11 -0800575 if (ret)
576 return ret;
Jann Horna7f61e892016-01-05 18:27:30 +0100577 return convert_in_user(valp, (unsigned int __user *)argp);
Christoph Hellwigec3cad92006-01-09 20:52:11 -0800578 case RTC_IRQP_SET32:
Al Viro66cf1912016-01-07 09:53:30 -0500579 return do_ioctl(file, RTC_IRQP_SET, (unsigned long)argp);
Christoph Hellwigec3cad92006-01-09 20:52:11 -0800580 case RTC_EPOCH_SET32:
Al Viro66cf1912016-01-07 09:53:30 -0500581 return do_ioctl(file, RTC_EPOCH_SET, (unsigned long)argp);
Christoph Hellwigec3cad92006-01-09 20:52:11 -0800582 }
Arnd Bergmann43c6e7b92009-11-14 23:16:18 +0100583
584 return -ENOIOCTLCMD;
Christoph Hellwigec3cad92006-01-09 20:52:11 -0800585}
586
Ankit Jain3e63cbb2009-06-19 14:28:07 -0400587/* on ia32 l_start is on a 32-bit boundary */
588#if defined(CONFIG_IA64) || defined(CONFIG_X86_64)
589struct space_resv_32 {
590 __s16 l_type;
591 __s16 l_whence;
592 __s64 l_start __attribute__((packed));
593 /* len == 0 means until end of file */
594 __s64 l_len __attribute__((packed));
595 __s32 l_sysid;
596 __u32 l_pid;
597 __s32 l_pad[4]; /* reserve area */
598};
599
600#define FS_IOC_RESVSP_32 _IOW ('X', 40, struct space_resv_32)
601#define FS_IOC_RESVSP64_32 _IOW ('X', 42, struct space_resv_32)
602
603/* just account for different alignment */
Arnd Bergmann43c6e7b92009-11-14 23:16:18 +0100604static int compat_ioctl_preallocate(struct file *file,
605 struct space_resv_32 __user *p32)
Ankit Jain3e63cbb2009-06-19 14:28:07 -0400606{
Ankit Jain3e63cbb2009-06-19 14:28:07 -0400607 struct space_resv __user *p = compat_alloc_user_space(sizeof(*p));
608
609 if (copy_in_user(&p->l_type, &p32->l_type, sizeof(s16)) ||
610 copy_in_user(&p->l_whence, &p32->l_whence, sizeof(s16)) ||
611 copy_in_user(&p->l_start, &p32->l_start, sizeof(s64)) ||
612 copy_in_user(&p->l_len, &p32->l_len, sizeof(s64)) ||
613 copy_in_user(&p->l_sysid, &p32->l_sysid, sizeof(s32)) ||
614 copy_in_user(&p->l_pid, &p32->l_pid, sizeof(u32)) ||
615 copy_in_user(&p->l_pad, &p32->l_pad, 4*sizeof(u32)))
616 return -EFAULT;
617
618 return ioctl_preallocate(file, p);
619}
620#endif
621
Arnd Bergmann661f6272009-11-05 19:52:55 +0100622/*
623 * simple reversible transform to make our table more evenly
624 * distributed after sorting.
625 */
626#define XFORM(i) (((i) ^ ((i) << 27) ^ ((i) << 17)) & 0xffffffff)
Christoph Hellwig6272e262007-05-08 00:29:21 -0700627
Mark Charlebois9280cdd2017-04-28 15:15:12 -0700628#define COMPATIBLE_IOCTL(cmd) XFORM((u32)cmd),
Andi Kleen421f0282007-05-02 19:27:20 +0200629/* ioctl should not be warned about even if it's not implemented.
630 Valid reasons to use this:
631 - It is implemented with ->compat_ioctl on some device, but programs
632 call it on others too.
633 - The ioctl is not implemented in the native kernel, but programs
634 call it commonly anyways.
635 Most other reasons are not valid. */
636#define IGNORE_IOCTL(cmd) COMPATIBLE_IOCTL(cmd)
Christoph Hellwige6a6d2e2006-01-09 20:52:14 -0800637
Arnd Bergmann661f6272009-11-05 19:52:55 +0100638static unsigned int ioctl_pointer[] = {
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700639/* compatible ioctls first */
640COMPATIBLE_IOCTL(0x4B50) /* KDGHWCLK - not in the kernel, but don't complain */
641COMPATIBLE_IOCTL(0x4B51) /* KDSHWCLK - not in the kernel, but don't complain */
642
643/* Big T */
644COMPATIBLE_IOCTL(TCGETA)
645COMPATIBLE_IOCTL(TCSETA)
646COMPATIBLE_IOCTL(TCSETAW)
647COMPATIBLE_IOCTL(TCSETAF)
648COMPATIBLE_IOCTL(TCSBRK)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700649COMPATIBLE_IOCTL(TCXONC)
650COMPATIBLE_IOCTL(TCFLSH)
651COMPATIBLE_IOCTL(TCGETS)
652COMPATIBLE_IOCTL(TCSETS)
653COMPATIBLE_IOCTL(TCSETSW)
654COMPATIBLE_IOCTL(TCSETSF)
655COMPATIBLE_IOCTL(TIOCLINUX)
656COMPATIBLE_IOCTL(TIOCSBRK)
Werner Finkb7b8de02010-12-03 12:48:23 +0100657COMPATIBLE_IOCTL(TIOCGDEV)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700658COMPATIBLE_IOCTL(TIOCCBRK)
Andreas Schwab4cfbafd2010-02-10 13:56:40 -0800659COMPATIBLE_IOCTL(TIOCGSID)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700660COMPATIBLE_IOCTL(TIOCGICOUNT)
Cyrill Gorcunovc6298032012-10-24 23:43:21 +0400661COMPATIBLE_IOCTL(TIOCGEXCL)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700662/* Little t */
663COMPATIBLE_IOCTL(TIOCGETD)
664COMPATIBLE_IOCTL(TIOCSETD)
665COMPATIBLE_IOCTL(TIOCEXCL)
666COMPATIBLE_IOCTL(TIOCNXCL)
667COMPATIBLE_IOCTL(TIOCCONS)
668COMPATIBLE_IOCTL(TIOCGSOFTCAR)
669COMPATIBLE_IOCTL(TIOCSSOFTCAR)
670COMPATIBLE_IOCTL(TIOCSWINSZ)
671COMPATIBLE_IOCTL(TIOCGWINSZ)
672COMPATIBLE_IOCTL(TIOCMGET)
673COMPATIBLE_IOCTL(TIOCMBIC)
674COMPATIBLE_IOCTL(TIOCMBIS)
675COMPATIBLE_IOCTL(TIOCMSET)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700676COMPATIBLE_IOCTL(TIOCNOTTY)
677COMPATIBLE_IOCTL(TIOCSTI)
678COMPATIBLE_IOCTL(TIOCOUTQ)
679COMPATIBLE_IOCTL(TIOCSPGRP)
680COMPATIBLE_IOCTL(TIOCGPGRP)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700681COMPATIBLE_IOCTL(TIOCSERGETLSR)
Jaeden Amero142e5462012-09-24 10:39:45 -0500682#ifdef TIOCSRS485
Jaeden Amero84c3b842012-09-19 15:34:31 +0100683COMPATIBLE_IOCTL(TIOCSRS485)
Jaeden Amero142e5462012-09-24 10:39:45 -0500684#endif
685#ifdef TIOCGRS485
Jaeden Amero84c3b842012-09-19 15:34:31 +0100686COMPATIBLE_IOCTL(TIOCGRS485)
Jaeden Amero142e5462012-09-24 10:39:45 -0500687#endif
Heiko Carstens81257de2007-11-28 16:22:07 -0800688#ifdef TCGETS2
689COMPATIBLE_IOCTL(TCGETS2)
690COMPATIBLE_IOCTL(TCSETS2)
691COMPATIBLE_IOCTL(TCSETSW2)
692COMPATIBLE_IOCTL(TCSETSF2)
693#endif
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700694/* Little f */
695COMPATIBLE_IOCTL(FIOCLEX)
696COMPATIBLE_IOCTL(FIONCLEX)
697COMPATIBLE_IOCTL(FIOASYNC)
698COMPATIBLE_IOCTL(FIONBIO)
699COMPATIBLE_IOCTL(FIONREAD) /* This is also TIOCINQ */
Eric Sandeen69130c72009-08-06 15:07:37 -0700700COMPATIBLE_IOCTL(FS_IOC_FIEMAP)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700701/* 0x00 */
702COMPATIBLE_IOCTL(FIBMAP)
703COMPATIBLE_IOCTL(FIGETBSZ)
Christoph Hellwig5cf8cf42009-02-26 21:32:51 +0100704/* 'X' - originally XFS but some now in the VFS */
705COMPATIBLE_IOCTL(FIFREEZE)
706COMPATIBLE_IOCTL(FITHAW)
Mikulas Patocka9abea2d2015-07-09 18:05:15 +0200707COMPATIBLE_IOCTL(FITRIM)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700708COMPATIBLE_IOCTL(KDGETKEYCODE)
709COMPATIBLE_IOCTL(KDSETKEYCODE)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700710COMPATIBLE_IOCTL(KDGKBTYPE)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700711COMPATIBLE_IOCTL(KDGETMODE)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700712COMPATIBLE_IOCTL(KDGKBMODE)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700713COMPATIBLE_IOCTL(KDGKBMETA)
714COMPATIBLE_IOCTL(KDGKBENT)
715COMPATIBLE_IOCTL(KDSKBENT)
716COMPATIBLE_IOCTL(KDGKBSENT)
717COMPATIBLE_IOCTL(KDSKBSENT)
718COMPATIBLE_IOCTL(KDGKBDIACR)
719COMPATIBLE_IOCTL(KDSKBDIACR)
Michael Schuttecaaa3572012-09-04 22:54:16 -0700720COMPATIBLE_IOCTL(KDGKBDIACRUC)
721COMPATIBLE_IOCTL(KDSKBDIACRUC)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700722COMPATIBLE_IOCTL(KDKBDREP)
723COMPATIBLE_IOCTL(KDGKBLED)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700724COMPATIBLE_IOCTL(KDGETLED)
Randy Dunlap3c3622d2008-07-16 08:52:00 -0500725#ifdef CONFIG_BLOCK
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700726/* Big S */
727COMPATIBLE_IOCTL(SCSI_IOCTL_GET_IDLUN)
728COMPATIBLE_IOCTL(SCSI_IOCTL_DOORLOCK)
729COMPATIBLE_IOCTL(SCSI_IOCTL_DOORUNLOCK)
730COMPATIBLE_IOCTL(SCSI_IOCTL_TEST_UNIT_READY)
731COMPATIBLE_IOCTL(SCSI_IOCTL_GET_BUS_NUMBER)
732COMPATIBLE_IOCTL(SCSI_IOCTL_SEND_COMMAND)
733COMPATIBLE_IOCTL(SCSI_IOCTL_PROBE_HOST)
734COMPATIBLE_IOCTL(SCSI_IOCTL_GET_PCI)
Randy Dunlap3c3622d2008-07-16 08:52:00 -0500735#endif
Atsushi Nemoto3f001712010-01-10 23:29:16 +0900736/* Big V (don't complain on serial console) */
737IGNORE_IOCTL(VT_OPENQRY)
738IGNORE_IOCTL(VT_GETMODE)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700739/* Little p (/dev/rtc, /dev/envctrl, etc.) */
740COMPATIBLE_IOCTL(RTC_AIE_ON)
741COMPATIBLE_IOCTL(RTC_AIE_OFF)
742COMPATIBLE_IOCTL(RTC_UIE_ON)
743COMPATIBLE_IOCTL(RTC_UIE_OFF)
744COMPATIBLE_IOCTL(RTC_PIE_ON)
745COMPATIBLE_IOCTL(RTC_PIE_OFF)
746COMPATIBLE_IOCTL(RTC_WIE_ON)
747COMPATIBLE_IOCTL(RTC_WIE_OFF)
748COMPATIBLE_IOCTL(RTC_ALM_SET)
749COMPATIBLE_IOCTL(RTC_ALM_READ)
750COMPATIBLE_IOCTL(RTC_RD_TIME)
751COMPATIBLE_IOCTL(RTC_SET_TIME)
752COMPATIBLE_IOCTL(RTC_WKALM_SET)
753COMPATIBLE_IOCTL(RTC_WKALM_RD)
754/*
755 * These two are only for the sbus rtc driver, but
756 * hwclock tries them on every rtc device first when
757 * running on sparc. On other architectures the entries
758 * are useless but harmless.
759 */
760COMPATIBLE_IOCTL(_IOR('p', 20, int[7])) /* RTCGET */
761COMPATIBLE_IOCTL(_IOW('p', 21, int[7])) /* RTCSET */
762/* Little m */
763COMPATIBLE_IOCTL(MTIOCTOP)
764/* Socket level stuff */
765COMPATIBLE_IOCTL(FIOQSIZE)
Randy Dunlap3c3622d2008-07-16 08:52:00 -0500766#ifdef CONFIG_BLOCK
Arnd Bergmannf79f1182010-02-10 16:14:04 +0100767/* md calls this on random blockdevs */
768IGNORE_IOCTL(RAID_VERSION)
Johannes Stezenbach390192b2011-07-01 22:32:26 +0200769/* qemu/qemu-img might call these two on plain files for probing */
770IGNORE_IOCTL(CDROM_DRIVE_STATUS)
771IGNORE_IOCTL(FDGETPRM32)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700772/* SG stuff */
773COMPATIBLE_IOCTL(SG_SET_TIMEOUT)
774COMPATIBLE_IOCTL(SG_GET_TIMEOUT)
775COMPATIBLE_IOCTL(SG_EMULATED_HOST)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700776COMPATIBLE_IOCTL(SG_GET_TRANSFORM)
777COMPATIBLE_IOCTL(SG_SET_RESERVED_SIZE)
778COMPATIBLE_IOCTL(SG_GET_RESERVED_SIZE)
779COMPATIBLE_IOCTL(SG_GET_SCSI_ID)
780COMPATIBLE_IOCTL(SG_SET_FORCE_LOW_DMA)
781COMPATIBLE_IOCTL(SG_GET_LOW_DMA)
782COMPATIBLE_IOCTL(SG_SET_FORCE_PACK_ID)
783COMPATIBLE_IOCTL(SG_GET_PACK_ID)
784COMPATIBLE_IOCTL(SG_GET_NUM_WAITING)
785COMPATIBLE_IOCTL(SG_SET_DEBUG)
786COMPATIBLE_IOCTL(SG_GET_SG_TABLESIZE)
787COMPATIBLE_IOCTL(SG_GET_COMMAND_Q)
788COMPATIBLE_IOCTL(SG_SET_COMMAND_Q)
789COMPATIBLE_IOCTL(SG_GET_VERSION_NUM)
790COMPATIBLE_IOCTL(SG_NEXT_CMD_LEN)
791COMPATIBLE_IOCTL(SG_SCSI_RESET)
792COMPATIBLE_IOCTL(SG_GET_REQUEST_TABLE)
793COMPATIBLE_IOCTL(SG_SET_KEEP_ORPHAN)
794COMPATIBLE_IOCTL(SG_GET_KEEP_ORPHAN)
Randy Dunlap3c3622d2008-07-16 08:52:00 -0500795#endif
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700796/* PPP stuff */
797COMPATIBLE_IOCTL(PPPIOCGFLAGS)
798COMPATIBLE_IOCTL(PPPIOCSFLAGS)
799COMPATIBLE_IOCTL(PPPIOCGASYNCMAP)
800COMPATIBLE_IOCTL(PPPIOCSASYNCMAP)
801COMPATIBLE_IOCTL(PPPIOCGUNIT)
802COMPATIBLE_IOCTL(PPPIOCGRASYNCMAP)
803COMPATIBLE_IOCTL(PPPIOCSRASYNCMAP)
804COMPATIBLE_IOCTL(PPPIOCGMRU)
805COMPATIBLE_IOCTL(PPPIOCSMRU)
806COMPATIBLE_IOCTL(PPPIOCSMAXCID)
807COMPATIBLE_IOCTL(PPPIOCGXASYNCMAP)
808COMPATIBLE_IOCTL(PPPIOCSXASYNCMAP)
809COMPATIBLE_IOCTL(PPPIOCXFERUNIT)
810/* PPPIOCSCOMPRESS is translated */
811COMPATIBLE_IOCTL(PPPIOCGNPMODE)
812COMPATIBLE_IOCTL(PPPIOCSNPMODE)
813COMPATIBLE_IOCTL(PPPIOCGDEBUG)
814COMPATIBLE_IOCTL(PPPIOCSDEBUG)
815/* PPPIOCSPASS is translated */
816/* PPPIOCSACTIVE is translated */
817/* PPPIOCGIDLE is translated */
818COMPATIBLE_IOCTL(PPPIOCNEWUNIT)
819COMPATIBLE_IOCTL(PPPIOCATTACH)
820COMPATIBLE_IOCTL(PPPIOCDETACH)
821COMPATIBLE_IOCTL(PPPIOCSMRRU)
822COMPATIBLE_IOCTL(PPPIOCCONNECT)
823COMPATIBLE_IOCTL(PPPIOCDISCONN)
824COMPATIBLE_IOCTL(PPPIOCATTCHAN)
825COMPATIBLE_IOCTL(PPPIOCGCHAN)
Florian Westphal8bab6f12011-08-06 12:12:04 +0000826COMPATIBLE_IOCTL(PPPIOCGL2TPSTATS)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700827/* PPPOX */
828COMPATIBLE_IOCTL(PPPOEIOCSFWD)
829COMPATIBLE_IOCTL(PPPOEIOCDFWD)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700830/* Big A */
831/* sparc only */
832/* Big Q for sound/OSS */
833COMPATIBLE_IOCTL(SNDCTL_SEQ_RESET)
834COMPATIBLE_IOCTL(SNDCTL_SEQ_SYNC)
835COMPATIBLE_IOCTL(SNDCTL_SYNTH_INFO)
836COMPATIBLE_IOCTL(SNDCTL_SEQ_CTRLRATE)
837COMPATIBLE_IOCTL(SNDCTL_SEQ_GETOUTCOUNT)
838COMPATIBLE_IOCTL(SNDCTL_SEQ_GETINCOUNT)
839COMPATIBLE_IOCTL(SNDCTL_SEQ_PERCMODE)
840COMPATIBLE_IOCTL(SNDCTL_FM_LOAD_INSTR)
841COMPATIBLE_IOCTL(SNDCTL_SEQ_TESTMIDI)
842COMPATIBLE_IOCTL(SNDCTL_SEQ_RESETSAMPLES)
843COMPATIBLE_IOCTL(SNDCTL_SEQ_NRSYNTHS)
844COMPATIBLE_IOCTL(SNDCTL_SEQ_NRMIDIS)
845COMPATIBLE_IOCTL(SNDCTL_MIDI_INFO)
846COMPATIBLE_IOCTL(SNDCTL_SEQ_THRESHOLD)
847COMPATIBLE_IOCTL(SNDCTL_SYNTH_MEMAVL)
848COMPATIBLE_IOCTL(SNDCTL_FM_4OP_ENABLE)
849COMPATIBLE_IOCTL(SNDCTL_SEQ_PANIC)
850COMPATIBLE_IOCTL(SNDCTL_SEQ_OUTOFBAND)
851COMPATIBLE_IOCTL(SNDCTL_SEQ_GETTIME)
852COMPATIBLE_IOCTL(SNDCTL_SYNTH_ID)
853COMPATIBLE_IOCTL(SNDCTL_SYNTH_CONTROL)
854COMPATIBLE_IOCTL(SNDCTL_SYNTH_REMOVESAMPLE)
855/* Big T for sound/OSS */
856COMPATIBLE_IOCTL(SNDCTL_TMR_TIMEBASE)
857COMPATIBLE_IOCTL(SNDCTL_TMR_START)
858COMPATIBLE_IOCTL(SNDCTL_TMR_STOP)
859COMPATIBLE_IOCTL(SNDCTL_TMR_CONTINUE)
860COMPATIBLE_IOCTL(SNDCTL_TMR_TEMPO)
861COMPATIBLE_IOCTL(SNDCTL_TMR_SOURCE)
862COMPATIBLE_IOCTL(SNDCTL_TMR_METRONOME)
863COMPATIBLE_IOCTL(SNDCTL_TMR_SELECT)
864/* Little m for sound/OSS */
865COMPATIBLE_IOCTL(SNDCTL_MIDI_PRETIME)
866COMPATIBLE_IOCTL(SNDCTL_MIDI_MPUMODE)
867COMPATIBLE_IOCTL(SNDCTL_MIDI_MPUCMD)
868/* Big P for sound/OSS */
869COMPATIBLE_IOCTL(SNDCTL_DSP_RESET)
870COMPATIBLE_IOCTL(SNDCTL_DSP_SYNC)
871COMPATIBLE_IOCTL(SNDCTL_DSP_SPEED)
872COMPATIBLE_IOCTL(SNDCTL_DSP_STEREO)
873COMPATIBLE_IOCTL(SNDCTL_DSP_GETBLKSIZE)
874COMPATIBLE_IOCTL(SNDCTL_DSP_CHANNELS)
875COMPATIBLE_IOCTL(SOUND_PCM_WRITE_FILTER)
876COMPATIBLE_IOCTL(SNDCTL_DSP_POST)
877COMPATIBLE_IOCTL(SNDCTL_DSP_SUBDIVIDE)
878COMPATIBLE_IOCTL(SNDCTL_DSP_SETFRAGMENT)
879COMPATIBLE_IOCTL(SNDCTL_DSP_GETFMTS)
880COMPATIBLE_IOCTL(SNDCTL_DSP_SETFMT)
881COMPATIBLE_IOCTL(SNDCTL_DSP_GETOSPACE)
882COMPATIBLE_IOCTL(SNDCTL_DSP_GETISPACE)
883COMPATIBLE_IOCTL(SNDCTL_DSP_NONBLOCK)
884COMPATIBLE_IOCTL(SNDCTL_DSP_GETCAPS)
885COMPATIBLE_IOCTL(SNDCTL_DSP_GETTRIGGER)
886COMPATIBLE_IOCTL(SNDCTL_DSP_SETTRIGGER)
887COMPATIBLE_IOCTL(SNDCTL_DSP_GETIPTR)
888COMPATIBLE_IOCTL(SNDCTL_DSP_GETOPTR)
889/* SNDCTL_DSP_MAPINBUF, XXX needs translation */
890/* SNDCTL_DSP_MAPOUTBUF, XXX needs translation */
891COMPATIBLE_IOCTL(SNDCTL_DSP_SETSYNCRO)
892COMPATIBLE_IOCTL(SNDCTL_DSP_SETDUPLEX)
893COMPATIBLE_IOCTL(SNDCTL_DSP_GETODELAY)
894COMPATIBLE_IOCTL(SNDCTL_DSP_PROFILE)
895COMPATIBLE_IOCTL(SOUND_PCM_READ_RATE)
896COMPATIBLE_IOCTL(SOUND_PCM_READ_CHANNELS)
897COMPATIBLE_IOCTL(SOUND_PCM_READ_BITS)
898COMPATIBLE_IOCTL(SOUND_PCM_READ_FILTER)
899/* Big C for sound/OSS */
900COMPATIBLE_IOCTL(SNDCTL_COPR_RESET)
901COMPATIBLE_IOCTL(SNDCTL_COPR_LOAD)
902COMPATIBLE_IOCTL(SNDCTL_COPR_RDATA)
903COMPATIBLE_IOCTL(SNDCTL_COPR_RCODE)
904COMPATIBLE_IOCTL(SNDCTL_COPR_WDATA)
905COMPATIBLE_IOCTL(SNDCTL_COPR_WCODE)
906COMPATIBLE_IOCTL(SNDCTL_COPR_RUN)
907COMPATIBLE_IOCTL(SNDCTL_COPR_HALT)
908COMPATIBLE_IOCTL(SNDCTL_COPR_SENDMSG)
909COMPATIBLE_IOCTL(SNDCTL_COPR_RCVMSG)
910/* Big M for sound/OSS */
911COMPATIBLE_IOCTL(SOUND_MIXER_READ_VOLUME)
912COMPATIBLE_IOCTL(SOUND_MIXER_READ_BASS)
913COMPATIBLE_IOCTL(SOUND_MIXER_READ_TREBLE)
914COMPATIBLE_IOCTL(SOUND_MIXER_READ_SYNTH)
915COMPATIBLE_IOCTL(SOUND_MIXER_READ_PCM)
916COMPATIBLE_IOCTL(SOUND_MIXER_READ_SPEAKER)
917COMPATIBLE_IOCTL(SOUND_MIXER_READ_LINE)
918COMPATIBLE_IOCTL(SOUND_MIXER_READ_MIC)
919COMPATIBLE_IOCTL(SOUND_MIXER_READ_CD)
920COMPATIBLE_IOCTL(SOUND_MIXER_READ_IMIX)
921COMPATIBLE_IOCTL(SOUND_MIXER_READ_ALTPCM)
922COMPATIBLE_IOCTL(SOUND_MIXER_READ_RECLEV)
923COMPATIBLE_IOCTL(SOUND_MIXER_READ_IGAIN)
924COMPATIBLE_IOCTL(SOUND_MIXER_READ_OGAIN)
925COMPATIBLE_IOCTL(SOUND_MIXER_READ_LINE1)
926COMPATIBLE_IOCTL(SOUND_MIXER_READ_LINE2)
927COMPATIBLE_IOCTL(SOUND_MIXER_READ_LINE3)
928COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_DIGITAL1))
929COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_DIGITAL2))
930COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_DIGITAL3))
931COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_PHONEIN))
932COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_PHONEOUT))
933COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_VIDEO))
934COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_RADIO))
935COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_MONITOR))
936COMPATIBLE_IOCTL(SOUND_MIXER_READ_MUTE)
937/* SOUND_MIXER_READ_ENHANCE, same value as READ_MUTE */
938/* SOUND_MIXER_READ_LOUD, same value as READ_MUTE */
939COMPATIBLE_IOCTL(SOUND_MIXER_READ_RECSRC)
940COMPATIBLE_IOCTL(SOUND_MIXER_READ_DEVMASK)
941COMPATIBLE_IOCTL(SOUND_MIXER_READ_RECMASK)
942COMPATIBLE_IOCTL(SOUND_MIXER_READ_STEREODEVS)
943COMPATIBLE_IOCTL(SOUND_MIXER_READ_CAPS)
944COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_VOLUME)
945COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_BASS)
946COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_TREBLE)
947COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_SYNTH)
948COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_PCM)
949COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_SPEAKER)
950COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_LINE)
951COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_MIC)
952COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_CD)
953COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_IMIX)
954COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_ALTPCM)
955COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_RECLEV)
956COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_IGAIN)
957COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_OGAIN)
958COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_LINE1)
959COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_LINE2)
960COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_LINE3)
961COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_DIGITAL1))
962COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_DIGITAL2))
963COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_DIGITAL3))
964COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_PHONEIN))
965COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_PHONEOUT))
966COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_VIDEO))
967COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_RADIO))
968COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_MONITOR))
969COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_MUTE)
970/* SOUND_MIXER_WRITE_ENHANCE, same value as WRITE_MUTE */
971/* SOUND_MIXER_WRITE_LOUD, same value as WRITE_MUTE */
972COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_RECSRC)
973COMPATIBLE_IOCTL(SOUND_MIXER_INFO)
974COMPATIBLE_IOCTL(SOUND_OLD_MIXER_INFO)
975COMPATIBLE_IOCTL(SOUND_MIXER_ACCESS)
976COMPATIBLE_IOCTL(SOUND_MIXER_AGC)
977COMPATIBLE_IOCTL(SOUND_MIXER_3DSE)
978COMPATIBLE_IOCTL(SOUND_MIXER_PRIVATE1)
979COMPATIBLE_IOCTL(SOUND_MIXER_PRIVATE2)
980COMPATIBLE_IOCTL(SOUND_MIXER_PRIVATE3)
981COMPATIBLE_IOCTL(SOUND_MIXER_PRIVATE4)
982COMPATIBLE_IOCTL(SOUND_MIXER_PRIVATE5)
983COMPATIBLE_IOCTL(SOUND_MIXER_GETLEVELS)
984COMPATIBLE_IOCTL(SOUND_MIXER_SETLEVELS)
985COMPATIBLE_IOCTL(OSS_GETVERSION)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700986/* Raw devices */
987COMPATIBLE_IOCTL(RAW_SETBIND)
988COMPATIBLE_IOCTL(RAW_GETBIND)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700989/* Watchdog */
990COMPATIBLE_IOCTL(WDIOC_GETSUPPORT)
991COMPATIBLE_IOCTL(WDIOC_GETSTATUS)
992COMPATIBLE_IOCTL(WDIOC_GETBOOTSTATUS)
993COMPATIBLE_IOCTL(WDIOC_GETTEMP)
994COMPATIBLE_IOCTL(WDIOC_SETOPTIONS)
995COMPATIBLE_IOCTL(WDIOC_KEEPALIVE)
996COMPATIBLE_IOCTL(WDIOC_SETTIMEOUT)
997COMPATIBLE_IOCTL(WDIOC_GETTIMEOUT)
Wolfram Sang97beb3a2016-08-31 14:52:42 +0300998COMPATIBLE_IOCTL(WDIOC_SETPRETIMEOUT)
999COMPATIBLE_IOCTL(WDIOC_GETPRETIMEOUT)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -07001000/* Big R */
1001COMPATIBLE_IOCTL(RNDGETENTCNT)
1002COMPATIBLE_IOCTL(RNDADDTOENTCNT)
1003COMPATIBLE_IOCTL(RNDGETPOOL)
1004COMPATIBLE_IOCTL(RNDADDENTROPY)
1005COMPATIBLE_IOCTL(RNDZAPENTCNT)
1006COMPATIBLE_IOCTL(RNDCLEARPOOL)
1007/* Bluetooth */
1008COMPATIBLE_IOCTL(HCIDEVUP)
1009COMPATIBLE_IOCTL(HCIDEVDOWN)
1010COMPATIBLE_IOCTL(HCIDEVRESET)
1011COMPATIBLE_IOCTL(HCIDEVRESTAT)
1012COMPATIBLE_IOCTL(HCIGETDEVLIST)
1013COMPATIBLE_IOCTL(HCIGETDEVINFO)
1014COMPATIBLE_IOCTL(HCIGETCONNLIST)
1015COMPATIBLE_IOCTL(HCIGETCONNINFO)
Marcel Holtmann40be4922008-07-14 20:13:50 +02001016COMPATIBLE_IOCTL(HCIGETAUTHINFO)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -07001017COMPATIBLE_IOCTL(HCISETRAW)
1018COMPATIBLE_IOCTL(HCISETSCAN)
1019COMPATIBLE_IOCTL(HCISETAUTH)
1020COMPATIBLE_IOCTL(HCISETENCRYPT)
1021COMPATIBLE_IOCTL(HCISETPTYPE)
1022COMPATIBLE_IOCTL(HCISETLINKPOL)
1023COMPATIBLE_IOCTL(HCISETLINKMODE)
1024COMPATIBLE_IOCTL(HCISETACLMTU)
1025COMPATIBLE_IOCTL(HCISETSCOMTU)
Johan Hedbergf0358562010-05-18 13:20:32 +02001026COMPATIBLE_IOCTL(HCIBLOCKADDR)
1027COMPATIBLE_IOCTL(HCIUNBLOCKADDR)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -07001028COMPATIBLE_IOCTL(HCIINQUIRY)
1029COMPATIBLE_IOCTL(HCIUARTSETPROTO)
1030COMPATIBLE_IOCTL(HCIUARTGETPROTO)
Marcel Holtmannd10d34a2016-01-25 08:44:03 +01001031COMPATIBLE_IOCTL(HCIUARTGETDEVICE)
1032COMPATIBLE_IOCTL(HCIUARTSETFLAGS)
1033COMPATIBLE_IOCTL(HCIUARTGETFLAGS)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -07001034COMPATIBLE_IOCTL(RFCOMMCREATEDEV)
1035COMPATIBLE_IOCTL(RFCOMMRELEASEDEV)
1036COMPATIBLE_IOCTL(RFCOMMGETDEVLIST)
1037COMPATIBLE_IOCTL(RFCOMMGETDEVINFO)
1038COMPATIBLE_IOCTL(RFCOMMSTEALDLC)
1039COMPATIBLE_IOCTL(BNEPCONNADD)
1040COMPATIBLE_IOCTL(BNEPCONNDEL)
1041COMPATIBLE_IOCTL(BNEPGETCONNLIST)
1042COMPATIBLE_IOCTL(BNEPGETCONNINFO)
Grzegorz Kolodziejczyk0477e2e2015-04-03 12:14:53 +02001043COMPATIBLE_IOCTL(BNEPGETSUPPFEAT)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -07001044COMPATIBLE_IOCTL(CMTPCONNADD)
1045COMPATIBLE_IOCTL(CMTPCONNDEL)
1046COMPATIBLE_IOCTL(CMTPGETCONNLIST)
1047COMPATIBLE_IOCTL(CMTPGETCONNINFO)
1048COMPATIBLE_IOCTL(HIDPCONNADD)
1049COMPATIBLE_IOCTL(HIDPCONNDEL)
1050COMPATIBLE_IOCTL(HIDPGETCONNLIST)
1051COMPATIBLE_IOCTL(HIDPGETCONNINFO)
1052/* CAPI */
1053COMPATIBLE_IOCTL(CAPI_REGISTER)
1054COMPATIBLE_IOCTL(CAPI_GET_MANUFACTURER)
1055COMPATIBLE_IOCTL(CAPI_GET_VERSION)
1056COMPATIBLE_IOCTL(CAPI_GET_SERIAL)
1057COMPATIBLE_IOCTL(CAPI_GET_PROFILE)
1058COMPATIBLE_IOCTL(CAPI_MANUFACTURER_CMD)
1059COMPATIBLE_IOCTL(CAPI_GET_ERRCODE)
1060COMPATIBLE_IOCTL(CAPI_INSTALLED)
1061COMPATIBLE_IOCTL(CAPI_GET_FLAGS)
1062COMPATIBLE_IOCTL(CAPI_SET_FLAGS)
1063COMPATIBLE_IOCTL(CAPI_CLR_FLAGS)
1064COMPATIBLE_IOCTL(CAPI_NCCI_OPENCOUNT)
1065COMPATIBLE_IOCTL(CAPI_NCCI_GETUNIT)
1066/* Siemens Gigaset */
1067COMPATIBLE_IOCTL(GIGASET_REDIR)
1068COMPATIBLE_IOCTL(GIGASET_CONFIG)
1069COMPATIBLE_IOCTL(GIGASET_BRKCHARS)
1070COMPATIBLE_IOCTL(GIGASET_VERSION)
1071/* Misc. */
1072COMPATIBLE_IOCTL(0x41545900) /* ATYIO_CLKR */
1073COMPATIBLE_IOCTL(0x41545901) /* ATYIO_CLKW */
1074COMPATIBLE_IOCTL(PCIIOC_CONTROLLER)
1075COMPATIBLE_IOCTL(PCIIOC_MMAP_IS_IO)
1076COMPATIBLE_IOCTL(PCIIOC_MMAP_IS_MEM)
1077COMPATIBLE_IOCTL(PCIIOC_WRITE_COMBINE)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -07001078/* hiddev */
1079COMPATIBLE_IOCTL(HIDIOCGVERSION)
1080COMPATIBLE_IOCTL(HIDIOCAPPLICATION)
1081COMPATIBLE_IOCTL(HIDIOCGDEVINFO)
1082COMPATIBLE_IOCTL(HIDIOCGSTRING)
1083COMPATIBLE_IOCTL(HIDIOCINITREPORT)
1084COMPATIBLE_IOCTL(HIDIOCGREPORT)
1085COMPATIBLE_IOCTL(HIDIOCSREPORT)
1086COMPATIBLE_IOCTL(HIDIOCGREPORTINFO)
1087COMPATIBLE_IOCTL(HIDIOCGFIELDINFO)
1088COMPATIBLE_IOCTL(HIDIOCGUSAGE)
1089COMPATIBLE_IOCTL(HIDIOCSUSAGE)
1090COMPATIBLE_IOCTL(HIDIOCGUCODE)
1091COMPATIBLE_IOCTL(HIDIOCGFLAG)
1092COMPATIBLE_IOCTL(HIDIOCSFLAG)
1093COMPATIBLE_IOCTL(HIDIOCGCOLLECTIONINDEX)
1094COMPATIBLE_IOCTL(HIDIOCGCOLLECTIONINFO)
Akos Maroy3fee37c2008-01-06 11:15:55 +01001095/* joystick */
1096COMPATIBLE_IOCTL(JSIOCGVERSION)
1097COMPATIBLE_IOCTL(JSIOCGAXES)
1098COMPATIBLE_IOCTL(JSIOCGBUTTONS)
1099COMPATIBLE_IOCTL(JSIOCGNAME(0))
1100
Christoph Hellwig9c0cbd52005-10-30 15:01:41 -08001101#ifdef TIOCGLTC
1102COMPATIBLE_IOCTL(TIOCGLTC)
1103COMPATIBLE_IOCTL(TIOCSLTC)
1104#endif
Christoph Hellwig7a81e312005-11-08 21:35:07 -08001105#ifdef TIOCSTART
1106/*
Adam Buchbinder6070d812009-12-04 15:47:01 -05001107 * For these two we have definitions in ioctls.h and/or termios.h on
Christoph Hellwig7a81e312005-11-08 21:35:07 -08001108 * some architectures but no actual implemention. Some applications
1109 * like bash call them if they are defined in the headers, so we provide
1110 * entries here to avoid syslog message spew.
1111 */
1112COMPATIBLE_IOCTL(TIOCSTART)
1113COMPATIBLE_IOCTL(TIOCSTOP)
1114#endif
Andi Kleenc6b44d12006-01-12 01:05:26 -08001115
Andi Kleen2724b6d2007-05-02 19:27:21 +02001116/* fat 'r' ioctls. These are handled by fat with ->compat_ioctl,
1117 but we don't want warnings on other file systems. So declare
1118 them as compatible here. */
1119#define VFAT_IOCTL_READDIR_BOTH32 _IOR('r', 1, struct compat_dirent[2])
1120#define VFAT_IOCTL_READDIR_SHORT32 _IOR('r', 2, struct compat_dirent[2])
1121
1122IGNORE_IOCTL(VFAT_IOCTL_READDIR_BOTH32)
1123IGNORE_IOCTL(VFAT_IOCTL_READDIR_SHORT32)
Geert Uytterhoeven98701dc2007-07-15 23:42:01 -07001124
David S. Miller81639042007-07-29 00:50:42 -07001125#ifdef CONFIG_SPARC
1126/* Sparc framebuffers, handled in sbusfb_compat_ioctl() */
1127IGNORE_IOCTL(FBIOGTYPE)
1128IGNORE_IOCTL(FBIOSATTR)
1129IGNORE_IOCTL(FBIOGATTR)
1130IGNORE_IOCTL(FBIOSVIDEO)
1131IGNORE_IOCTL(FBIOGVIDEO)
1132IGNORE_IOCTL(FBIOSCURPOS)
1133IGNORE_IOCTL(FBIOGCURPOS)
1134IGNORE_IOCTL(FBIOGCURMAX)
1135IGNORE_IOCTL(FBIOPUTCMAP32)
1136IGNORE_IOCTL(FBIOGETCMAP32)
1137IGNORE_IOCTL(FBIOSCURSOR32)
1138IGNORE_IOCTL(FBIOGCURSOR32)
1139#endif
Christoph Hellwige6a6d2e2006-01-09 20:52:14 -08001140};
David S. Miller6e87abd2005-11-16 00:52:57 -08001141
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001142/*
1143 * Convert common ioctl arguments based on their command number
1144 *
1145 * Please do not add any code in here. Instead, implement
1146 * a compat_ioctl operation in the place that handleѕ the
1147 * ioctl for the native case.
1148 */
Al Viro66cf1912016-01-07 09:53:30 -05001149static long do_ioctl_trans(unsigned int cmd,
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001150 unsigned long arg, struct file *file)
1151{
Arnd Bergmann43c6e7b92009-11-14 23:16:18 +01001152 void __user *argp = compat_ptr(arg);
1153
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001154 switch (cmd) {
1155 case PPPIOCGIDLE32:
Al Viro66cf1912016-01-07 09:53:30 -05001156 return ppp_gidle(file, cmd, argp);
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001157 case PPPIOCSCOMPRESS32:
Al Viro66cf1912016-01-07 09:53:30 -05001158 return ppp_scompress(file, cmd, argp);
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001159 case PPPIOCSPASS32:
1160 case PPPIOCSACTIVE32:
Al Viro66cf1912016-01-07 09:53:30 -05001161 return ppp_sock_fprog_ioctl_trans(file, cmd, argp);
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001162#ifdef CONFIG_BLOCK
1163 case SG_IO:
Al Viro66cf1912016-01-07 09:53:30 -05001164 return sg_ioctl_trans(file, cmd, argp);
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001165 case SG_GET_REQUEST_TABLE:
Al Viro66cf1912016-01-07 09:53:30 -05001166 return sg_grt_trans(file, cmd, argp);
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001167 case MTIOCGET32:
1168 case MTIOCPOS32:
Al Viro66cf1912016-01-07 09:53:30 -05001169 return mt_ioctl_trans(file, cmd, argp);
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001170#endif
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001171 /* Serial */
1172 case TIOCGSERIAL:
1173 case TIOCSSERIAL:
Al Viro66cf1912016-01-07 09:53:30 -05001174 return serial_struct_ioctl(file, cmd, argp);
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001175 /* Not implemented in the native kernel */
1176 case RTC_IRQP_READ32:
1177 case RTC_IRQP_SET32:
1178 case RTC_EPOCH_READ32:
1179 case RTC_EPOCH_SET32:
Al Viro66cf1912016-01-07 09:53:30 -05001180 return rtc_ioctl(file, cmd, argp);
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001181 }
Arnd Bergmann789f0f82009-11-05 19:13:51 +01001182
1183 /*
1184 * These take an integer instead of a pointer as 'arg',
1185 * so we must not do a compat_ptr() translation.
1186 */
1187 switch (cmd) {
1188 /* Big T */
1189 case TCSBRKP:
1190 case TIOCMIWAIT:
1191 case TIOCSCTTY:
1192 /* RAID */
1193 case HOT_REMOVE_DISK:
1194 case HOT_ADD_DISK:
1195 case SET_DISK_FAULTY:
1196 case SET_BITMAP_FILE:
1197 /* Big K */
1198 case KDSIGACCEPT:
1199 case KIOCSOUND:
1200 case KDMKTONE:
1201 case KDSETMODE:
1202 case KDSKBMODE:
1203 case KDSKBMETA:
1204 case KDSKBLED:
1205 case KDSETLED:
Al Viro66cf1912016-01-07 09:53:30 -05001206 return vfs_ioctl(file, cmd, arg);
Arnd Bergmann789f0f82009-11-05 19:13:51 +01001207 }
1208
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001209 return -ENOIOCTLCMD;
1210}
1211
Arnd Bergmann661f6272009-11-05 19:52:55 +01001212static int compat_ioctl_check_table(unsigned int xcmd)
1213{
1214 int i;
1215 const int max = ARRAY_SIZE(ioctl_pointer) - 1;
1216
1217 BUILD_BUG_ON(max >= (1 << 16));
1218
1219 /* guess initial offset into table, assuming a
1220 normalized distribution */
1221 i = ((xcmd >> 16) * max) >> 16;
1222
1223 /* do linear search up first, until greater or equal */
1224 while (ioctl_pointer[i] < xcmd && i < max)
1225 i++;
1226
1227 /* then do linear search down */
1228 while (ioctl_pointer[i] > xcmd && i > 0)
1229 i--;
1230
1231 return ioctl_pointer[i] == xcmd;
1232}
1233
Heiko Carstens932602e2014-03-04 16:07:52 +01001234COMPAT_SYSCALL_DEFINE3(ioctl, unsigned int, fd, unsigned int, cmd,
1235 compat_ulong_t, arg32)
Christoph Hellwig6272e262007-05-08 00:29:21 -07001236{
Heiko Carstens932602e2014-03-04 16:07:52 +01001237 unsigned long arg = arg32;
Al Viro2903ff02012-08-28 12:52:22 -04001238 struct fd f = fdget(fd);
Christoph Hellwig6272e262007-05-08 00:29:21 -07001239 int error = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001240 if (!f.file)
Christoph Hellwig6272e262007-05-08 00:29:21 -07001241 goto out;
1242
1243 /* RED-PEN how should LSM module know it's handling 32bit? */
Al Viro2903ff02012-08-28 12:52:22 -04001244 error = security_file_ioctl(f.file, cmd, arg);
Christoph Hellwig6272e262007-05-08 00:29:21 -07001245 if (error)
1246 goto out_fput;
1247
1248 /*
1249 * To allow the compat_ioctl handlers to be self contained
1250 * we need to check the common ioctls here first.
1251 * Just handle them with the standard handlers below.
1252 */
1253 switch (cmd) {
1254 case FIOCLEX:
1255 case FIONCLEX:
1256 case FIONBIO:
1257 case FIOASYNC:
1258 case FIOQSIZE:
1259 break;
1260
Ankit Jain3e63cbb2009-06-19 14:28:07 -04001261#if defined(CONFIG_IA64) || defined(CONFIG_X86_64)
1262 case FS_IOC_RESVSP_32:
1263 case FS_IOC_RESVSP64_32:
Al Viro2903ff02012-08-28 12:52:22 -04001264 error = compat_ioctl_preallocate(f.file, compat_ptr(arg));
Ankit Jain3e63cbb2009-06-19 14:28:07 -04001265 goto out_fput;
1266#else
1267 case FS_IOC_RESVSP:
1268 case FS_IOC_RESVSP64:
Al Viro2903ff02012-08-28 12:52:22 -04001269 error = ioctl_preallocate(f.file, compat_ptr(arg));
Ankit Jain3e63cbb2009-06-19 14:28:07 -04001270 goto out_fput;
1271#endif
1272
Darrick J. Wongd79bdd52015-12-19 00:55:52 -08001273 case FICLONE:
1274 case FICLONERANGE:
Darrick J. Wong54dbc152015-12-19 00:55:59 -08001275 case FIDEDUPERANGE:
Josef Bacikceac2042017-09-29 15:24:06 -04001276 case FS_IOC_FIEMAP:
Darrick J. Wongd79bdd52015-12-19 00:55:52 -08001277 goto do_ioctl;
1278
Christoph Hellwig6272e262007-05-08 00:29:21 -07001279 case FIBMAP:
1280 case FIGETBSZ:
1281 case FIONREAD:
Al Viro496ad9a2013-01-23 17:07:38 -05001282 if (S_ISREG(file_inode(f.file)->i_mode))
Christoph Hellwig6272e262007-05-08 00:29:21 -07001283 break;
1284 /*FALL THROUGH*/
1285
1286 default:
Al Viro72c2d532013-09-22 16:27:52 -04001287 if (f.file->f_op->compat_ioctl) {
Al Viro2903ff02012-08-28 12:52:22 -04001288 error = f.file->f_op->compat_ioctl(f.file, cmd, arg);
Christoph Hellwig6272e262007-05-08 00:29:21 -07001289 if (error != -ENOIOCTLCMD)
1290 goto out_fput;
1291 }
1292
Al Viro72c2d532013-09-22 16:27:52 -04001293 if (!f.file->f_op->unlocked_ioctl)
Christoph Hellwig6272e262007-05-08 00:29:21 -07001294 goto do_ioctl;
1295 break;
1296 }
1297
Arnd Bergmann661f6272009-11-05 19:52:55 +01001298 if (compat_ioctl_check_table(XFORM(cmd)))
1299 goto found_handler;
Christoph Hellwig6272e262007-05-08 00:29:21 -07001300
Al Viro66cf1912016-01-07 09:53:30 -05001301 error = do_ioctl_trans(cmd, arg, f.file);
Linus Torvalds07d106d2012-01-05 15:40:12 -08001302 if (error == -ENOIOCTLCMD)
1303 error = -ENOTTY;
Christoph Hellwig6272e262007-05-08 00:29:21 -07001304
1305 goto out_fput;
1306
1307 found_handler:
Arnd Bergmann789f0f82009-11-05 19:13:51 +01001308 arg = (unsigned long)compat_ptr(arg);
Christoph Hellwig6272e262007-05-08 00:29:21 -07001309 do_ioctl:
Al Viro2903ff02012-08-28 12:52:22 -04001310 error = do_vfs_ioctl(f.file, fd, cmd, arg);
Christoph Hellwig6272e262007-05-08 00:29:21 -07001311 out_fput:
Al Viro2903ff02012-08-28 12:52:22 -04001312 fdput(f);
Christoph Hellwig6272e262007-05-08 00:29:21 -07001313 out:
1314 return error;
1315}
1316
Arnd Bergmann661f6272009-11-05 19:52:55 +01001317static int __init init_sys32_ioctl_cmp(const void *p, const void *q)
Christoph Hellwig6272e262007-05-08 00:29:21 -07001318{
Arnd Bergmann661f6272009-11-05 19:52:55 +01001319 unsigned int a, b;
1320 a = *(unsigned int *)p;
1321 b = *(unsigned int *)q;
1322 if (a > b)
1323 return 1;
1324 if (a < b)
1325 return -1;
1326 return 0;
Christoph Hellwig6272e262007-05-08 00:29:21 -07001327}
1328
1329static int __init init_sys32_ioctl(void)
1330{
Arnd Bergmann661f6272009-11-05 19:52:55 +01001331 sort(ioctl_pointer, ARRAY_SIZE(ioctl_pointer), sizeof(*ioctl_pointer),
1332 init_sys32_ioctl_cmp, NULL);
Christoph Hellwig6272e262007-05-08 00:29:21 -07001333 return 0;
1334}
1335__initcall(init_sys32_ioctl);