blob: c6fe9914440ef4e4e09605cf3f8ba8ccd3c9c376 [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
Mauro Carvalho Chehabe97a5d82011-12-31 16:54:46 -0200106#define __DVB_CORE__
David S. Miller6e87abd2005-11-16 00:52:57 -0800107#include <linux/dvb/audio.h>
108#include <linux/dvb/dmx.h>
109#include <linux/dvb/frontend.h>
110#include <linux/dvb/video.h>
111
Arnd Bergmann661f6272009-11-05 19:52:55 +0100112#include <linux/sort.h>
113
David S. Miller81639042007-07-29 00:50:42 -0700114#ifdef CONFIG_SPARC
115#include <asm/fbio.h>
116#endif
117
Jann Horna7f61e892016-01-05 18:27:30 +0100118#define convert_in_user(srcptr, dstptr) \
119({ \
120 typeof(*srcptr) val; \
121 \
122 get_user(val, srcptr) || put_user(val, dstptr); \
123})
124
Al Viro66cf1912016-01-07 09:53:30 -0500125static int do_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Jann Hornb4341722016-01-05 18:27:29 +0100126{
127 int err;
128
129 err = security_file_ioctl(file, cmd, arg);
130 if (err)
131 return err;
132
Al Viro66cf1912016-01-07 09:53:30 -0500133 return vfs_ioctl(file, cmd, arg);
Jann Hornb4341722016-01-05 18:27:29 +0100134}
135
David S. Miller6e87abd2005-11-16 00:52:57 -0800136struct compat_video_event {
137 int32_t type;
138 compat_time_t timestamp;
139 union {
140 video_size_t size;
141 unsigned int frame_rate;
142 } u;
143};
Arnd Bergmann914282c2018-08-27 15:56:21 -0400144#define VIDEO_GET_EVENT32 _IOR('o', 28, struct compat_video_event)
David S. Miller6e87abd2005-11-16 00:52:57 -0800145
Al Viro66cf1912016-01-07 09:53:30 -0500146static int do_video_get_event(struct file *file,
Jann Hornb4341722016-01-05 18:27:29 +0100147 unsigned int cmd, struct compat_video_event __user *up)
David S. Miller6e87abd2005-11-16 00:52:57 -0800148{
Jann Horna7f61e892016-01-05 18:27:30 +0100149 struct video_event __user *kevent =
150 compat_alloc_user_space(sizeof(*kevent));
David S. Miller6e87abd2005-11-16 00:52:57 -0800151 int err;
152
Jann Horna7f61e892016-01-05 18:27:30 +0100153 if (kevent == NULL)
154 return -EFAULT;
David S. Miller6e87abd2005-11-16 00:52:57 -0800155
Arnd Bergmann914282c2018-08-27 15:56:21 -0400156 err = do_ioctl(file, VIDEO_GET_EVENT, (unsigned long)kevent);
David S. Miller6e87abd2005-11-16 00:52:57 -0800157 if (!err) {
Jann Horna7f61e892016-01-05 18:27:30 +0100158 err = convert_in_user(&kevent->type, &up->type);
159 err |= convert_in_user(&kevent->timestamp, &up->timestamp);
160 err |= convert_in_user(&kevent->u.size.w, &up->u.size.w);
161 err |= convert_in_user(&kevent->u.size.h, &up->u.size.h);
162 err |= convert_in_user(&kevent->u.size.aspect_ratio,
David S. Miller6e87abd2005-11-16 00:52:57 -0800163 &up->u.size.aspect_ratio);
164 if (err)
165 err = -EFAULT;
166 }
167
168 return err;
169}
170
171struct compat_video_still_picture {
172 compat_uptr_t iFrame;
173 int32_t size;
174};
Arnd Bergmann914282c2018-08-27 15:56:21 -0400175#define VIDEO_STILLPICTURE32 _IOW('o', 30, struct compat_video_still_picture)
David S. Miller6e87abd2005-11-16 00:52:57 -0800176
Al Viro66cf1912016-01-07 09:53:30 -0500177static int do_video_stillpicture(struct file *file,
Jann Hornb4341722016-01-05 18:27:29 +0100178 unsigned int cmd, struct compat_video_still_picture __user *up)
David S. Miller6e87abd2005-11-16 00:52:57 -0800179{
David S. Miller6e87abd2005-11-16 00:52:57 -0800180 struct video_still_picture __user *up_native;
181 compat_uptr_t fp;
182 int32_t size;
183 int err;
184
David S. Miller6e87abd2005-11-16 00:52:57 -0800185 err = get_user(fp, &up->iFrame);
186 err |= get_user(size, &up->size);
187 if (err)
188 return -EFAULT;
189
190 up_native =
191 compat_alloc_user_space(sizeof(struct video_still_picture));
192
Heiko Carstens7116e992006-12-06 20:36:36 -0800193 err = put_user(compat_ptr(fp), &up_native->iFrame);
194 err |= put_user(size, &up_native->size);
195 if (err)
196 return -EFAULT;
David S. Miller6e87abd2005-11-16 00:52:57 -0800197
Arnd Bergmann914282c2018-08-27 15:56:21 -0400198 err = do_ioctl(file, VIDEO_STILLPICTURE, (unsigned long) up_native);
David S. Miller6e87abd2005-11-16 00:52:57 -0800199
200 return err;
201}
202
David Howells93614012006-09-30 20:45:40 +0200203#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204typedef struct sg_io_hdr32 {
205 compat_int_t interface_id; /* [i] 'S' for SCSI generic (required) */
206 compat_int_t dxfer_direction; /* [i] data transfer direction */
207 unsigned char cmd_len; /* [i] SCSI command length ( <= 16 bytes) */
208 unsigned char mx_sb_len; /* [i] max length to write to sbp */
209 unsigned short iovec_count; /* [i] 0 implies no scatter gather */
210 compat_uint_t dxfer_len; /* [i] byte count of data transfer */
211 compat_uint_t dxferp; /* [i], [*io] points to data transfer memory
212 or scatter gather list */
213 compat_uptr_t cmdp; /* [i], [*i] points to command to perform */
214 compat_uptr_t sbp; /* [i], [*o] points to sense_buffer memory */
215 compat_uint_t timeout; /* [i] MAX_UINT->no timeout (unit: millisec) */
216 compat_uint_t flags; /* [i] 0 -> default, see SG_FLAG... */
217 compat_int_t pack_id; /* [i->o] unused internally (normally) */
218 compat_uptr_t usr_ptr; /* [i->o] unused internally */
219 unsigned char status; /* [o] scsi status */
220 unsigned char masked_status; /* [o] shifted, masked scsi status */
221 unsigned char msg_status; /* [o] messaging level data (optional) */
222 unsigned char sb_len_wr; /* [o] byte count actually written to sbp */
223 unsigned short host_status; /* [o] errors from host adapter */
224 unsigned short driver_status; /* [o] errors from software driver */
225 compat_int_t resid; /* [o] dxfer_len - actual_transferred */
226 compat_uint_t duration; /* [o] time taken by cmd (unit: millisec) */
227 compat_uint_t info; /* [o] auxiliary information */
228} sg_io_hdr32_t; /* 64 bytes long (on sparc32) */
229
230typedef struct sg_iovec32 {
231 compat_uint_t iov_base;
232 compat_uint_t iov_len;
233} sg_iovec32_t;
234
235static int sg_build_iovec(sg_io_hdr_t __user *sgio, void __user *dxferp, u16 iovec_count)
236{
237 sg_iovec_t __user *iov = (sg_iovec_t __user *) (sgio + 1);
238 sg_iovec32_t __user *iov32 = dxferp;
239 int i;
240
241 for (i = 0; i < iovec_count; i++) {
242 u32 base, len;
243
244 if (get_user(base, &iov32[i].iov_base) ||
245 get_user(len, &iov32[i].iov_len) ||
246 put_user(compat_ptr(base), &iov[i].iov_base) ||
247 put_user(len, &iov[i].iov_len))
248 return -EFAULT;
249 }
250
251 if (put_user(iov, &sgio->dxferp))
252 return -EFAULT;
253 return 0;
254}
255
Al Viro66cf1912016-01-07 09:53:30 -0500256static int sg_ioctl_trans(struct file *file, unsigned int cmd,
Arnd Bergmann43c6e7b92009-11-14 23:16:18 +0100257 sg_io_hdr32_t __user *sgio32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
259 sg_io_hdr_t __user *sgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 u16 iovec_count;
261 u32 data;
262 void __user *dxferp;
263 int err;
FUJITA Tomonori84eb8fb2010-01-05 19:41:44 +0900264 int interface_id;
265
266 if (get_user(interface_id, &sgio32->interface_id))
267 return -EFAULT;
268 if (interface_id != 'S')
Al Viro66cf1912016-01-07 09:53:30 -0500269 return do_ioctl(file, cmd, (unsigned long)sgio32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 if (get_user(iovec_count, &sgio32->iovec_count))
272 return -EFAULT;
273
274 {
275 void __user *top = compat_alloc_user_space(0);
276 void __user *new = compat_alloc_user_space(sizeof(sg_io_hdr_t) +
277 (iovec_count * sizeof(sg_iovec_t)));
278 if (new > top)
279 return -EINVAL;
280
281 sgio = new;
282 }
283
284 /* Ok, now construct. */
285 if (copy_in_user(&sgio->interface_id, &sgio32->interface_id,
286 (2 * sizeof(int)) +
287 (2 * sizeof(unsigned char)) +
288 (1 * sizeof(unsigned short)) +
289 (1 * sizeof(unsigned int))))
290 return -EFAULT;
291
292 if (get_user(data, &sgio32->dxferp))
293 return -EFAULT;
294 dxferp = compat_ptr(data);
295 if (iovec_count) {
296 if (sg_build_iovec(sgio, dxferp, iovec_count))
297 return -EFAULT;
298 } else {
299 if (put_user(dxferp, &sgio->dxferp))
300 return -EFAULT;
301 }
302
303 {
304 unsigned char __user *cmdp;
305 unsigned char __user *sbp;
306
307 if (get_user(data, &sgio32->cmdp))
308 return -EFAULT;
309 cmdp = compat_ptr(data);
310
311 if (get_user(data, &sgio32->sbp))
312 return -EFAULT;
313 sbp = compat_ptr(data);
314
315 if (put_user(cmdp, &sgio->cmdp) ||
316 put_user(sbp, &sgio->sbp))
317 return -EFAULT;
318 }
319
320 if (copy_in_user(&sgio->timeout, &sgio32->timeout,
321 3 * sizeof(int)))
322 return -EFAULT;
323
324 if (get_user(data, &sgio32->usr_ptr))
325 return -EFAULT;
326 if (put_user(compat_ptr(data), &sgio->usr_ptr))
327 return -EFAULT;
328
Al Viro66cf1912016-01-07 09:53:30 -0500329 err = do_ioctl(file, cmd, (unsigned long) sgio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 if (err >= 0) {
332 void __user *datap;
333
334 if (copy_in_user(&sgio32->pack_id, &sgio->pack_id,
335 sizeof(int)) ||
336 get_user(datap, &sgio->usr_ptr) ||
337 put_user((u32)(unsigned long)datap,
338 &sgio32->usr_ptr) ||
339 copy_in_user(&sgio32->status, &sgio->status,
340 (4 * sizeof(unsigned char)) +
341 (2 * sizeof(unsigned short)) +
342 (3 * sizeof(int))))
343 err = -EFAULT;
344 }
345
346 return err;
347}
348
Andi Kleen29663872006-01-11 22:44:03 +0100349struct compat_sg_req_info { /* used by SG_GET_REQUEST_TABLE ioctl() */
350 char req_state;
351 char orphan;
352 char sg_io_owned;
353 char problem;
354 int pack_id;
355 compat_uptr_t usr_ptr;
356 unsigned int duration;
357 int unused;
358};
359
Al Viro66cf1912016-01-07 09:53:30 -0500360static int sg_grt_trans(struct file *file,
Jann Hornb4341722016-01-05 18:27:29 +0100361 unsigned int cmd, struct compat_sg_req_info __user *o)
Andi Kleen29663872006-01-11 22:44:03 +0100362{
363 int err, i;
Al Viro6b2b4e52006-02-01 06:33:33 -0500364 sg_req_info_t __user *r;
Andi Kleen29663872006-01-11 22:44:03 +0100365 r = compat_alloc_user_space(sizeof(sg_req_info_t)*SG_MAX_QUEUE);
Al Viro66cf1912016-01-07 09:53:30 -0500366 err = do_ioctl(file, cmd, (unsigned long)r);
Andi Kleen29663872006-01-11 22:44:03 +0100367 if (err < 0)
368 return err;
369 for (i = 0; i < SG_MAX_QUEUE; i++) {
370 void __user *ptr;
371 int d;
372
373 if (copy_in_user(o + i, r + i, offsetof(sg_req_info_t, usr_ptr)) ||
374 get_user(ptr, &r[i].usr_ptr) ||
375 get_user(d, &r[i].duration) ||
376 put_user((u32)(unsigned long)(ptr), &o[i].usr_ptr) ||
377 put_user(d, &o[i].duration))
378 return -EFAULT;
379 }
380 return err;
381}
David Howells93614012006-09-30 20:45:40 +0200382#endif /* CONFIG_BLOCK */
Andi Kleen29663872006-01-11 22:44:03 +0100383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384struct sock_fprog32 {
385 unsigned short len;
386 compat_caddr_t filter;
387};
388
389#define PPPIOCSPASS32 _IOW('t', 71, struct sock_fprog32)
390#define PPPIOCSACTIVE32 _IOW('t', 70, struct sock_fprog32)
391
Al Viro66cf1912016-01-07 09:53:30 -0500392static int ppp_sock_fprog_ioctl_trans(struct file *file,
Jann Hornb4341722016-01-05 18:27:29 +0100393 unsigned int cmd, struct sock_fprog32 __user *u_fprog32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 struct sock_fprog __user *u_fprog64 = compat_alloc_user_space(sizeof(struct sock_fprog));
396 void __user *fptr64;
397 u32 fptr32;
398 u16 flen;
399
400 if (get_user(flen, &u_fprog32->len) ||
401 get_user(fptr32, &u_fprog32->filter))
402 return -EFAULT;
403
404 fptr64 = compat_ptr(fptr32);
405
406 if (put_user(flen, &u_fprog64->len) ||
407 put_user(fptr64, &u_fprog64->filter))
408 return -EFAULT;
409
410 if (cmd == PPPIOCSPASS32)
411 cmd = PPPIOCSPASS;
412 else
413 cmd = PPPIOCSACTIVE;
414
Al Viro66cf1912016-01-07 09:53:30 -0500415 return do_ioctl(file, cmd, (unsigned long) u_fprog64);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
418struct ppp_option_data32 {
419 compat_caddr_t ptr;
420 u32 length;
421 compat_int_t transmit;
422};
423#define PPPIOCSCOMPRESS32 _IOW('t', 77, struct ppp_option_data32)
424
425struct ppp_idle32 {
426 compat_time_t xmit_idle;
427 compat_time_t recv_idle;
428};
429#define PPPIOCGIDLE32 _IOR('t', 63, struct ppp_idle32)
430
Al Viro66cf1912016-01-07 09:53:30 -0500431static int ppp_gidle(struct file *file, unsigned int cmd,
Arnd Bergmann43c6e7b92009-11-14 23:16:18 +0100432 struct ppp_idle32 __user *idle32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
434 struct ppp_idle __user *idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 __kernel_time_t xmit, recv;
436 int err;
437
438 idle = compat_alloc_user_space(sizeof(*idle));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Al Viro66cf1912016-01-07 09:53:30 -0500440 err = do_ioctl(file, PPPIOCGIDLE, (unsigned long) idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 if (!err) {
443 if (get_user(xmit, &idle->xmit_idle) ||
444 get_user(recv, &idle->recv_idle) ||
445 put_user(xmit, &idle32->xmit_idle) ||
446 put_user(recv, &idle32->recv_idle))
447 err = -EFAULT;
448 }
449 return err;
450}
451
Al Viro66cf1912016-01-07 09:53:30 -0500452static int ppp_scompress(struct file *file, unsigned int cmd,
Arnd Bergmann43c6e7b92009-11-14 23:16:18 +0100453 struct ppp_option_data32 __user *odata32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
455 struct ppp_option_data __user *odata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 __u32 data;
457 void __user *datap;
458
459 odata = compat_alloc_user_space(sizeof(*odata));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 if (get_user(data, &odata32->ptr))
462 return -EFAULT;
463
464 datap = compat_ptr(data);
465 if (put_user(datap, &odata->ptr))
466 return -EFAULT;
467
468 if (copy_in_user(&odata->length, &odata32->length,
469 sizeof(__u32) + sizeof(int)))
470 return -EFAULT;
471
Al Viro66cf1912016-01-07 09:53:30 -0500472 return do_ioctl(file, PPPIOCSCOMPRESS, (unsigned long) odata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
474
David Howells93614012006-09-30 20:45:40 +0200475#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476struct mtget32 {
477 compat_long_t mt_type;
478 compat_long_t mt_resid;
479 compat_long_t mt_dsreg;
480 compat_long_t mt_gstat;
481 compat_long_t mt_erreg;
482 compat_daddr_t mt_fileno;
483 compat_daddr_t mt_blkno;
484};
485#define MTIOCGET32 _IOR('m', 2, struct mtget32)
486
487struct mtpos32 {
488 compat_long_t mt_blkno;
489};
490#define MTIOCPOS32 _IOR('m', 3, struct mtpos32)
491
Al Viro66cf1912016-01-07 09:53:30 -0500492static int mt_ioctl_trans(struct file *file,
Jann Hornb4341722016-01-05 18:27:29 +0100493 unsigned int cmd, void __user *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Jann Horna7f61e892016-01-05 18:27:30 +0100495 /* NULL initialization to make gcc shut up */
496 struct mtget __user *get = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 struct mtget32 __user *umget32;
Jann Horna7f61e892016-01-05 18:27:30 +0100498 struct mtpos __user *pos = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 struct mtpos32 __user *upos32;
500 unsigned long kcmd;
501 void *karg;
502 int err = 0;
503
504 switch(cmd) {
505 case MTIOCPOS32:
506 kcmd = MTIOCPOS;
Jann Horna7f61e892016-01-05 18:27:30 +0100507 pos = compat_alloc_user_space(sizeof(*pos));
508 karg = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 break;
Andrew Morton45bf5cd2010-03-05 13:43:19 -0800510 default: /* MTIOCGET32 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 kcmd = MTIOCGET;
Jann Horna7f61e892016-01-05 18:27:30 +0100512 get = compat_alloc_user_space(sizeof(*get));
513 karg = get;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
Jann Horna7f61e892016-01-05 18:27:30 +0100516 if (karg == NULL)
517 return -EFAULT;
Al Viro66cf1912016-01-07 09:53:30 -0500518 err = do_ioctl(file, kcmd, (unsigned long)karg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (err)
520 return err;
521 switch (cmd) {
522 case MTIOCPOS32:
Arnd Bergmann43c6e7b92009-11-14 23:16:18 +0100523 upos32 = argp;
Jann Horna7f61e892016-01-05 18:27:30 +0100524 err = convert_in_user(&pos->mt_blkno, &upos32->mt_blkno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 break;
526 case MTIOCGET32:
Arnd Bergmann43c6e7b92009-11-14 23:16:18 +0100527 umget32 = argp;
Jann Horna7f61e892016-01-05 18:27:30 +0100528 err = convert_in_user(&get->mt_type, &umget32->mt_type);
529 err |= convert_in_user(&get->mt_resid, &umget32->mt_resid);
530 err |= convert_in_user(&get->mt_dsreg, &umget32->mt_dsreg);
531 err |= convert_in_user(&get->mt_gstat, &umget32->mt_gstat);
532 err |= convert_in_user(&get->mt_erreg, &umget32->mt_erreg);
533 err |= convert_in_user(&get->mt_fileno, &umget32->mt_fileno);
534 err |= convert_in_user(&get->mt_blkno, &umget32->mt_blkno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 break;
536 }
537 return err ? -EFAULT: 0;
538}
539
David Howells93614012006-09-30 20:45:40 +0200540#endif /* CONFIG_BLOCK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542/* Bluetooth ioctls */
Johan Hedberg2cdf0962010-07-09 16:28:36 -0300543#define HCIUARTSETPROTO _IOW('U', 200, int)
544#define HCIUARTGETPROTO _IOR('U', 201, int)
545#define HCIUARTGETDEVICE _IOR('U', 202, int)
Johan Hedberg63c7d092010-07-12 11:37:04 -0300546#define HCIUARTSETFLAGS _IOW('U', 203, int)
547#define HCIUARTGETFLAGS _IOR('U', 204, int)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549#define BNEPCONNADD _IOW('B', 200, int)
550#define BNEPCONNDEL _IOW('B', 201, int)
551#define BNEPGETCONNLIST _IOR('B', 210, int)
552#define BNEPGETCONNINFO _IOR('B', 211, int)
Grzegorz Kolodziejczyk0477e2e2015-04-03 12:14:53 +0200553#define BNEPGETSUPPFEAT _IOR('B', 212, int)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555#define CMTPCONNADD _IOW('C', 200, int)
556#define CMTPCONNDEL _IOW('C', 201, int)
557#define CMTPGETCONNLIST _IOR('C', 210, int)
558#define CMTPGETCONNINFO _IOR('C', 211, int)
559
560#define HIDPCONNADD _IOW('H', 200, int)
561#define HIDPCONNDEL _IOW('H', 201, int)
562#define HIDPGETCONNLIST _IOR('H', 210, int)
563#define HIDPGETCONNINFO _IOR('H', 211, int)
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566struct serial_struct32 {
567 compat_int_t type;
568 compat_int_t line;
569 compat_uint_t port;
570 compat_int_t irq;
571 compat_int_t flags;
572 compat_int_t xmit_fifo_size;
573 compat_int_t custom_divisor;
574 compat_int_t baud_base;
575 unsigned short close_delay;
576 char io_type;
577 char reserved_char[1];
578 compat_int_t hub6;
579 unsigned short closing_wait; /* time to wait before closing */
580 unsigned short closing_wait2; /* no longer used... */
581 compat_uint_t iomem_base;
582 unsigned short iomem_reg_shift;
583 unsigned int port_high;
584 /* compat_ulong_t iomap_base FIXME */
585 compat_int_t reserved[1];
586};
587
Al Viro66cf1912016-01-07 09:53:30 -0500588static int serial_struct_ioctl(struct file *file,
Jann Hornb4341722016-01-05 18:27:29 +0100589 unsigned cmd, struct serial_struct32 __user *ss32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 typedef struct serial_struct32 SS32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 int err;
Jann Horna7f61e892016-01-05 18:27:30 +0100593 struct serial_struct __user *ss = compat_alloc_user_space(sizeof(*ss));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 __u32 udata;
Heiko Carstens7116e992006-12-06 20:36:36 -0800595 unsigned int base;
Jann Horna7f61e892016-01-05 18:27:30 +0100596 unsigned char *iomem_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Jann Horna7f61e892016-01-05 18:27:30 +0100598 if (ss == NULL)
599 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (cmd == TIOCSSERIAL) {
Jann Horna7f61e892016-01-05 18:27:30 +0100601 if (copy_in_user(ss, ss32, offsetof(SS32, iomem_base)) ||
602 get_user(udata, &ss32->iomem_base))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return -EFAULT;
Jann Horna7f61e892016-01-05 18:27:30 +0100604 iomem_base = compat_ptr(udata);
605 if (put_user(iomem_base, &ss->iomem_base) ||
606 convert_in_user(&ss32->iomem_reg_shift,
607 &ss->iomem_reg_shift) ||
608 convert_in_user(&ss32->port_high, &ss->port_high) ||
609 put_user(0UL, &ss->iomap_base))
Heiko Carstens7116e992006-12-06 20:36:36 -0800610 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
Jann Horna7f61e892016-01-05 18:27:30 +0100612 err = do_ioctl(file, cmd, (unsigned long)ss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (cmd == TIOCGSERIAL && err >= 0) {
Jann Horna7f61e892016-01-05 18:27:30 +0100614 if (copy_in_user(ss32, ss, offsetof(SS32, iomem_base)) ||
615 get_user(iomem_base, &ss->iomem_base))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 return -EFAULT;
Jann Horna7f61e892016-01-05 18:27:30 +0100617 base = (unsigned long)iomem_base >> 32 ?
618 0xffffffff : (unsigned)(unsigned long)iomem_base;
619 if (put_user(base, &ss32->iomem_base) ||
620 convert_in_user(&ss->iomem_reg_shift,
621 &ss32->iomem_reg_shift) ||
622 convert_in_user(&ss->port_high, &ss32->port_high))
Heiko Carstens7116e992006-12-06 20:36:36 -0800623 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 }
625 return err;
626}
627
Christoph Hellwigec3cad92006-01-09 20:52:11 -0800628#define RTC_IRQP_READ32 _IOR('p', 0x0b, compat_ulong_t)
629#define RTC_IRQP_SET32 _IOW('p', 0x0c, compat_ulong_t)
630#define RTC_EPOCH_READ32 _IOR('p', 0x0d, compat_ulong_t)
631#define RTC_EPOCH_SET32 _IOW('p', 0x0e, compat_ulong_t)
632
Al Viro66cf1912016-01-07 09:53:30 -0500633static int rtc_ioctl(struct file *file,
Jann Hornb4341722016-01-05 18:27:29 +0100634 unsigned cmd, void __user *argp)
Christoph Hellwigec3cad92006-01-09 20:52:11 -0800635{
Jann Horna7f61e892016-01-05 18:27:30 +0100636 unsigned long __user *valp = compat_alloc_user_space(sizeof(*valp));
Christoph Hellwigec3cad92006-01-09 20:52:11 -0800637 int ret;
638
Jann Horna7f61e892016-01-05 18:27:30 +0100639 if (valp == NULL)
640 return -EFAULT;
Christoph Hellwigec3cad92006-01-09 20:52:11 -0800641 switch (cmd) {
642 case RTC_IRQP_READ32:
643 case RTC_EPOCH_READ32:
Al Viro66cf1912016-01-07 09:53:30 -0500644 ret = do_ioctl(file, (cmd == RTC_IRQP_READ32) ?
Christoph Hellwigec3cad92006-01-09 20:52:11 -0800645 RTC_IRQP_READ : RTC_EPOCH_READ,
Jann Horna7f61e892016-01-05 18:27:30 +0100646 (unsigned long)valp);
Christoph Hellwigec3cad92006-01-09 20:52:11 -0800647 if (ret)
648 return ret;
Jann Horna7f61e892016-01-05 18:27:30 +0100649 return convert_in_user(valp, (unsigned int __user *)argp);
Christoph Hellwigec3cad92006-01-09 20:52:11 -0800650 case RTC_IRQP_SET32:
Al Viro66cf1912016-01-07 09:53:30 -0500651 return do_ioctl(file, RTC_IRQP_SET, (unsigned long)argp);
Christoph Hellwigec3cad92006-01-09 20:52:11 -0800652 case RTC_EPOCH_SET32:
Al Viro66cf1912016-01-07 09:53:30 -0500653 return do_ioctl(file, RTC_EPOCH_SET, (unsigned long)argp);
Christoph Hellwigec3cad92006-01-09 20:52:11 -0800654 }
Arnd Bergmann43c6e7b92009-11-14 23:16:18 +0100655
656 return -ENOIOCTLCMD;
Christoph Hellwigec3cad92006-01-09 20:52:11 -0800657}
658
Ankit Jain3e63cbb2009-06-19 14:28:07 -0400659/* on ia32 l_start is on a 32-bit boundary */
660#if defined(CONFIG_IA64) || defined(CONFIG_X86_64)
661struct space_resv_32 {
662 __s16 l_type;
663 __s16 l_whence;
664 __s64 l_start __attribute__((packed));
665 /* len == 0 means until end of file */
666 __s64 l_len __attribute__((packed));
667 __s32 l_sysid;
668 __u32 l_pid;
669 __s32 l_pad[4]; /* reserve area */
670};
671
672#define FS_IOC_RESVSP_32 _IOW ('X', 40, struct space_resv_32)
673#define FS_IOC_RESVSP64_32 _IOW ('X', 42, struct space_resv_32)
674
675/* just account for different alignment */
Arnd Bergmann43c6e7b92009-11-14 23:16:18 +0100676static int compat_ioctl_preallocate(struct file *file,
677 struct space_resv_32 __user *p32)
Ankit Jain3e63cbb2009-06-19 14:28:07 -0400678{
Ankit Jain3e63cbb2009-06-19 14:28:07 -0400679 struct space_resv __user *p = compat_alloc_user_space(sizeof(*p));
680
681 if (copy_in_user(&p->l_type, &p32->l_type, sizeof(s16)) ||
682 copy_in_user(&p->l_whence, &p32->l_whence, sizeof(s16)) ||
683 copy_in_user(&p->l_start, &p32->l_start, sizeof(s64)) ||
684 copy_in_user(&p->l_len, &p32->l_len, sizeof(s64)) ||
685 copy_in_user(&p->l_sysid, &p32->l_sysid, sizeof(s32)) ||
686 copy_in_user(&p->l_pid, &p32->l_pid, sizeof(u32)) ||
687 copy_in_user(&p->l_pad, &p32->l_pad, 4*sizeof(u32)))
688 return -EFAULT;
689
690 return ioctl_preallocate(file, p);
691}
692#endif
693
Arnd Bergmann661f6272009-11-05 19:52:55 +0100694/*
695 * simple reversible transform to make our table more evenly
696 * distributed after sorting.
697 */
698#define XFORM(i) (((i) ^ ((i) << 27) ^ ((i) << 17)) & 0xffffffff)
Christoph Hellwig6272e262007-05-08 00:29:21 -0700699
Mark Charlebois9280cdd2017-04-28 15:15:12 -0700700#define COMPATIBLE_IOCTL(cmd) XFORM((u32)cmd),
Andi Kleen421f0282007-05-02 19:27:20 +0200701/* ioctl should not be warned about even if it's not implemented.
702 Valid reasons to use this:
703 - It is implemented with ->compat_ioctl on some device, but programs
704 call it on others too.
705 - The ioctl is not implemented in the native kernel, but programs
706 call it commonly anyways.
707 Most other reasons are not valid. */
708#define IGNORE_IOCTL(cmd) COMPATIBLE_IOCTL(cmd)
Christoph Hellwige6a6d2e2006-01-09 20:52:14 -0800709
Arnd Bergmann661f6272009-11-05 19:52:55 +0100710static unsigned int ioctl_pointer[] = {
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700711/* compatible ioctls first */
712COMPATIBLE_IOCTL(0x4B50) /* KDGHWCLK - not in the kernel, but don't complain */
713COMPATIBLE_IOCTL(0x4B51) /* KDSHWCLK - not in the kernel, but don't complain */
714
715/* Big T */
716COMPATIBLE_IOCTL(TCGETA)
717COMPATIBLE_IOCTL(TCSETA)
718COMPATIBLE_IOCTL(TCSETAW)
719COMPATIBLE_IOCTL(TCSETAF)
720COMPATIBLE_IOCTL(TCSBRK)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700721COMPATIBLE_IOCTL(TCXONC)
722COMPATIBLE_IOCTL(TCFLSH)
723COMPATIBLE_IOCTL(TCGETS)
724COMPATIBLE_IOCTL(TCSETS)
725COMPATIBLE_IOCTL(TCSETSW)
726COMPATIBLE_IOCTL(TCSETSF)
727COMPATIBLE_IOCTL(TIOCLINUX)
728COMPATIBLE_IOCTL(TIOCSBRK)
Werner Finkb7b8de02010-12-03 12:48:23 +0100729COMPATIBLE_IOCTL(TIOCGDEV)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700730COMPATIBLE_IOCTL(TIOCCBRK)
Andreas Schwab4cfbafd2010-02-10 13:56:40 -0800731COMPATIBLE_IOCTL(TIOCGSID)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700732COMPATIBLE_IOCTL(TIOCGICOUNT)
Cyrill Gorcunovc6298032012-10-24 23:43:21 +0400733COMPATIBLE_IOCTL(TIOCGEXCL)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700734/* Little t */
735COMPATIBLE_IOCTL(TIOCGETD)
736COMPATIBLE_IOCTL(TIOCSETD)
737COMPATIBLE_IOCTL(TIOCEXCL)
738COMPATIBLE_IOCTL(TIOCNXCL)
739COMPATIBLE_IOCTL(TIOCCONS)
740COMPATIBLE_IOCTL(TIOCGSOFTCAR)
741COMPATIBLE_IOCTL(TIOCSSOFTCAR)
742COMPATIBLE_IOCTL(TIOCSWINSZ)
743COMPATIBLE_IOCTL(TIOCGWINSZ)
744COMPATIBLE_IOCTL(TIOCMGET)
745COMPATIBLE_IOCTL(TIOCMBIC)
746COMPATIBLE_IOCTL(TIOCMBIS)
747COMPATIBLE_IOCTL(TIOCMSET)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700748COMPATIBLE_IOCTL(TIOCNOTTY)
749COMPATIBLE_IOCTL(TIOCSTI)
750COMPATIBLE_IOCTL(TIOCOUTQ)
751COMPATIBLE_IOCTL(TIOCSPGRP)
752COMPATIBLE_IOCTL(TIOCGPGRP)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700753COMPATIBLE_IOCTL(TIOCSERGETLSR)
Jaeden Amero142e5462012-09-24 10:39:45 -0500754#ifdef TIOCSRS485
Jaeden Amero84c3b842012-09-19 15:34:31 +0100755COMPATIBLE_IOCTL(TIOCSRS485)
Jaeden Amero142e5462012-09-24 10:39:45 -0500756#endif
757#ifdef TIOCGRS485
Jaeden Amero84c3b842012-09-19 15:34:31 +0100758COMPATIBLE_IOCTL(TIOCGRS485)
Jaeden Amero142e5462012-09-24 10:39:45 -0500759#endif
Heiko Carstens81257de2007-11-28 16:22:07 -0800760#ifdef TCGETS2
761COMPATIBLE_IOCTL(TCGETS2)
762COMPATIBLE_IOCTL(TCSETS2)
763COMPATIBLE_IOCTL(TCSETSW2)
764COMPATIBLE_IOCTL(TCSETSF2)
765#endif
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700766/* Little f */
767COMPATIBLE_IOCTL(FIOCLEX)
768COMPATIBLE_IOCTL(FIONCLEX)
769COMPATIBLE_IOCTL(FIOASYNC)
770COMPATIBLE_IOCTL(FIONBIO)
771COMPATIBLE_IOCTL(FIONREAD) /* This is also TIOCINQ */
Eric Sandeen69130c72009-08-06 15:07:37 -0700772COMPATIBLE_IOCTL(FS_IOC_FIEMAP)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700773/* 0x00 */
774COMPATIBLE_IOCTL(FIBMAP)
775COMPATIBLE_IOCTL(FIGETBSZ)
Christoph Hellwig5cf8cf42009-02-26 21:32:51 +0100776/* 'X' - originally XFS but some now in the VFS */
777COMPATIBLE_IOCTL(FIFREEZE)
778COMPATIBLE_IOCTL(FITHAW)
Mikulas Patocka9abea2d2015-07-09 18:05:15 +0200779COMPATIBLE_IOCTL(FITRIM)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700780COMPATIBLE_IOCTL(KDGETKEYCODE)
781COMPATIBLE_IOCTL(KDSETKEYCODE)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700782COMPATIBLE_IOCTL(KDGKBTYPE)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700783COMPATIBLE_IOCTL(KDGETMODE)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700784COMPATIBLE_IOCTL(KDGKBMODE)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700785COMPATIBLE_IOCTL(KDGKBMETA)
786COMPATIBLE_IOCTL(KDGKBENT)
787COMPATIBLE_IOCTL(KDSKBENT)
788COMPATIBLE_IOCTL(KDGKBSENT)
789COMPATIBLE_IOCTL(KDSKBSENT)
790COMPATIBLE_IOCTL(KDGKBDIACR)
791COMPATIBLE_IOCTL(KDSKBDIACR)
Michael Schuttecaaa3572012-09-04 22:54:16 -0700792COMPATIBLE_IOCTL(KDGKBDIACRUC)
793COMPATIBLE_IOCTL(KDSKBDIACRUC)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700794COMPATIBLE_IOCTL(KDKBDREP)
795COMPATIBLE_IOCTL(KDGKBLED)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700796COMPATIBLE_IOCTL(KDGETLED)
Randy Dunlap3c3622d2008-07-16 08:52:00 -0500797#ifdef CONFIG_BLOCK
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700798/* Big S */
799COMPATIBLE_IOCTL(SCSI_IOCTL_GET_IDLUN)
800COMPATIBLE_IOCTL(SCSI_IOCTL_DOORLOCK)
801COMPATIBLE_IOCTL(SCSI_IOCTL_DOORUNLOCK)
802COMPATIBLE_IOCTL(SCSI_IOCTL_TEST_UNIT_READY)
803COMPATIBLE_IOCTL(SCSI_IOCTL_GET_BUS_NUMBER)
804COMPATIBLE_IOCTL(SCSI_IOCTL_SEND_COMMAND)
805COMPATIBLE_IOCTL(SCSI_IOCTL_PROBE_HOST)
806COMPATIBLE_IOCTL(SCSI_IOCTL_GET_PCI)
Randy Dunlap3c3622d2008-07-16 08:52:00 -0500807#endif
Atsushi Nemoto3f001712010-01-10 23:29:16 +0900808/* Big V (don't complain on serial console) */
809IGNORE_IOCTL(VT_OPENQRY)
810IGNORE_IOCTL(VT_GETMODE)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700811/* Little p (/dev/rtc, /dev/envctrl, etc.) */
812COMPATIBLE_IOCTL(RTC_AIE_ON)
813COMPATIBLE_IOCTL(RTC_AIE_OFF)
814COMPATIBLE_IOCTL(RTC_UIE_ON)
815COMPATIBLE_IOCTL(RTC_UIE_OFF)
816COMPATIBLE_IOCTL(RTC_PIE_ON)
817COMPATIBLE_IOCTL(RTC_PIE_OFF)
818COMPATIBLE_IOCTL(RTC_WIE_ON)
819COMPATIBLE_IOCTL(RTC_WIE_OFF)
820COMPATIBLE_IOCTL(RTC_ALM_SET)
821COMPATIBLE_IOCTL(RTC_ALM_READ)
822COMPATIBLE_IOCTL(RTC_RD_TIME)
823COMPATIBLE_IOCTL(RTC_SET_TIME)
824COMPATIBLE_IOCTL(RTC_WKALM_SET)
825COMPATIBLE_IOCTL(RTC_WKALM_RD)
826/*
827 * These two are only for the sbus rtc driver, but
828 * hwclock tries them on every rtc device first when
829 * running on sparc. On other architectures the entries
830 * are useless but harmless.
831 */
832COMPATIBLE_IOCTL(_IOR('p', 20, int[7])) /* RTCGET */
833COMPATIBLE_IOCTL(_IOW('p', 21, int[7])) /* RTCSET */
834/* Little m */
835COMPATIBLE_IOCTL(MTIOCTOP)
836/* Socket level stuff */
837COMPATIBLE_IOCTL(FIOQSIZE)
Randy Dunlap3c3622d2008-07-16 08:52:00 -0500838#ifdef CONFIG_BLOCK
Arnd Bergmannf79f1182010-02-10 16:14:04 +0100839/* md calls this on random blockdevs */
840IGNORE_IOCTL(RAID_VERSION)
Johannes Stezenbach390192b2011-07-01 22:32:26 +0200841/* qemu/qemu-img might call these two on plain files for probing */
842IGNORE_IOCTL(CDROM_DRIVE_STATUS)
843IGNORE_IOCTL(FDGETPRM32)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700844/* SG stuff */
845COMPATIBLE_IOCTL(SG_SET_TIMEOUT)
846COMPATIBLE_IOCTL(SG_GET_TIMEOUT)
847COMPATIBLE_IOCTL(SG_EMULATED_HOST)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700848COMPATIBLE_IOCTL(SG_GET_TRANSFORM)
849COMPATIBLE_IOCTL(SG_SET_RESERVED_SIZE)
850COMPATIBLE_IOCTL(SG_GET_RESERVED_SIZE)
851COMPATIBLE_IOCTL(SG_GET_SCSI_ID)
852COMPATIBLE_IOCTL(SG_SET_FORCE_LOW_DMA)
853COMPATIBLE_IOCTL(SG_GET_LOW_DMA)
854COMPATIBLE_IOCTL(SG_SET_FORCE_PACK_ID)
855COMPATIBLE_IOCTL(SG_GET_PACK_ID)
856COMPATIBLE_IOCTL(SG_GET_NUM_WAITING)
857COMPATIBLE_IOCTL(SG_SET_DEBUG)
858COMPATIBLE_IOCTL(SG_GET_SG_TABLESIZE)
859COMPATIBLE_IOCTL(SG_GET_COMMAND_Q)
860COMPATIBLE_IOCTL(SG_SET_COMMAND_Q)
861COMPATIBLE_IOCTL(SG_GET_VERSION_NUM)
862COMPATIBLE_IOCTL(SG_NEXT_CMD_LEN)
863COMPATIBLE_IOCTL(SG_SCSI_RESET)
864COMPATIBLE_IOCTL(SG_GET_REQUEST_TABLE)
865COMPATIBLE_IOCTL(SG_SET_KEEP_ORPHAN)
866COMPATIBLE_IOCTL(SG_GET_KEEP_ORPHAN)
Randy Dunlap3c3622d2008-07-16 08:52:00 -0500867#endif
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700868/* PPP stuff */
869COMPATIBLE_IOCTL(PPPIOCGFLAGS)
870COMPATIBLE_IOCTL(PPPIOCSFLAGS)
871COMPATIBLE_IOCTL(PPPIOCGASYNCMAP)
872COMPATIBLE_IOCTL(PPPIOCSASYNCMAP)
873COMPATIBLE_IOCTL(PPPIOCGUNIT)
874COMPATIBLE_IOCTL(PPPIOCGRASYNCMAP)
875COMPATIBLE_IOCTL(PPPIOCSRASYNCMAP)
876COMPATIBLE_IOCTL(PPPIOCGMRU)
877COMPATIBLE_IOCTL(PPPIOCSMRU)
878COMPATIBLE_IOCTL(PPPIOCSMAXCID)
879COMPATIBLE_IOCTL(PPPIOCGXASYNCMAP)
880COMPATIBLE_IOCTL(PPPIOCSXASYNCMAP)
881COMPATIBLE_IOCTL(PPPIOCXFERUNIT)
882/* PPPIOCSCOMPRESS is translated */
883COMPATIBLE_IOCTL(PPPIOCGNPMODE)
884COMPATIBLE_IOCTL(PPPIOCSNPMODE)
885COMPATIBLE_IOCTL(PPPIOCGDEBUG)
886COMPATIBLE_IOCTL(PPPIOCSDEBUG)
887/* PPPIOCSPASS is translated */
888/* PPPIOCSACTIVE is translated */
889/* PPPIOCGIDLE is translated */
890COMPATIBLE_IOCTL(PPPIOCNEWUNIT)
891COMPATIBLE_IOCTL(PPPIOCATTACH)
892COMPATIBLE_IOCTL(PPPIOCDETACH)
893COMPATIBLE_IOCTL(PPPIOCSMRRU)
894COMPATIBLE_IOCTL(PPPIOCCONNECT)
895COMPATIBLE_IOCTL(PPPIOCDISCONN)
896COMPATIBLE_IOCTL(PPPIOCATTCHAN)
897COMPATIBLE_IOCTL(PPPIOCGCHAN)
Florian Westphal8bab6f12011-08-06 12:12:04 +0000898COMPATIBLE_IOCTL(PPPIOCGL2TPSTATS)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -0700899/* Big A */
900/* sparc only */
901/* Big Q for sound/OSS */
902COMPATIBLE_IOCTL(SNDCTL_SEQ_RESET)
903COMPATIBLE_IOCTL(SNDCTL_SEQ_SYNC)
904COMPATIBLE_IOCTL(SNDCTL_SYNTH_INFO)
905COMPATIBLE_IOCTL(SNDCTL_SEQ_CTRLRATE)
906COMPATIBLE_IOCTL(SNDCTL_SEQ_GETOUTCOUNT)
907COMPATIBLE_IOCTL(SNDCTL_SEQ_GETINCOUNT)
908COMPATIBLE_IOCTL(SNDCTL_SEQ_PERCMODE)
909COMPATIBLE_IOCTL(SNDCTL_FM_LOAD_INSTR)
910COMPATIBLE_IOCTL(SNDCTL_SEQ_TESTMIDI)
911COMPATIBLE_IOCTL(SNDCTL_SEQ_RESETSAMPLES)
912COMPATIBLE_IOCTL(SNDCTL_SEQ_NRSYNTHS)
913COMPATIBLE_IOCTL(SNDCTL_SEQ_NRMIDIS)
914COMPATIBLE_IOCTL(SNDCTL_MIDI_INFO)
915COMPATIBLE_IOCTL(SNDCTL_SEQ_THRESHOLD)
916COMPATIBLE_IOCTL(SNDCTL_SYNTH_MEMAVL)
917COMPATIBLE_IOCTL(SNDCTL_FM_4OP_ENABLE)
918COMPATIBLE_IOCTL(SNDCTL_SEQ_PANIC)
919COMPATIBLE_IOCTL(SNDCTL_SEQ_OUTOFBAND)
920COMPATIBLE_IOCTL(SNDCTL_SEQ_GETTIME)
921COMPATIBLE_IOCTL(SNDCTL_SYNTH_ID)
922COMPATIBLE_IOCTL(SNDCTL_SYNTH_CONTROL)
923COMPATIBLE_IOCTL(SNDCTL_SYNTH_REMOVESAMPLE)
924/* Big T for sound/OSS */
925COMPATIBLE_IOCTL(SNDCTL_TMR_TIMEBASE)
926COMPATIBLE_IOCTL(SNDCTL_TMR_START)
927COMPATIBLE_IOCTL(SNDCTL_TMR_STOP)
928COMPATIBLE_IOCTL(SNDCTL_TMR_CONTINUE)
929COMPATIBLE_IOCTL(SNDCTL_TMR_TEMPO)
930COMPATIBLE_IOCTL(SNDCTL_TMR_SOURCE)
931COMPATIBLE_IOCTL(SNDCTL_TMR_METRONOME)
932COMPATIBLE_IOCTL(SNDCTL_TMR_SELECT)
933/* Little m for sound/OSS */
934COMPATIBLE_IOCTL(SNDCTL_MIDI_PRETIME)
935COMPATIBLE_IOCTL(SNDCTL_MIDI_MPUMODE)
936COMPATIBLE_IOCTL(SNDCTL_MIDI_MPUCMD)
937/* Big P for sound/OSS */
938COMPATIBLE_IOCTL(SNDCTL_DSP_RESET)
939COMPATIBLE_IOCTL(SNDCTL_DSP_SYNC)
940COMPATIBLE_IOCTL(SNDCTL_DSP_SPEED)
941COMPATIBLE_IOCTL(SNDCTL_DSP_STEREO)
942COMPATIBLE_IOCTL(SNDCTL_DSP_GETBLKSIZE)
943COMPATIBLE_IOCTL(SNDCTL_DSP_CHANNELS)
944COMPATIBLE_IOCTL(SOUND_PCM_WRITE_FILTER)
945COMPATIBLE_IOCTL(SNDCTL_DSP_POST)
946COMPATIBLE_IOCTL(SNDCTL_DSP_SUBDIVIDE)
947COMPATIBLE_IOCTL(SNDCTL_DSP_SETFRAGMENT)
948COMPATIBLE_IOCTL(SNDCTL_DSP_GETFMTS)
949COMPATIBLE_IOCTL(SNDCTL_DSP_SETFMT)
950COMPATIBLE_IOCTL(SNDCTL_DSP_GETOSPACE)
951COMPATIBLE_IOCTL(SNDCTL_DSP_GETISPACE)
952COMPATIBLE_IOCTL(SNDCTL_DSP_NONBLOCK)
953COMPATIBLE_IOCTL(SNDCTL_DSP_GETCAPS)
954COMPATIBLE_IOCTL(SNDCTL_DSP_GETTRIGGER)
955COMPATIBLE_IOCTL(SNDCTL_DSP_SETTRIGGER)
956COMPATIBLE_IOCTL(SNDCTL_DSP_GETIPTR)
957COMPATIBLE_IOCTL(SNDCTL_DSP_GETOPTR)
958/* SNDCTL_DSP_MAPINBUF, XXX needs translation */
959/* SNDCTL_DSP_MAPOUTBUF, XXX needs translation */
960COMPATIBLE_IOCTL(SNDCTL_DSP_SETSYNCRO)
961COMPATIBLE_IOCTL(SNDCTL_DSP_SETDUPLEX)
962COMPATIBLE_IOCTL(SNDCTL_DSP_GETODELAY)
963COMPATIBLE_IOCTL(SNDCTL_DSP_PROFILE)
964COMPATIBLE_IOCTL(SOUND_PCM_READ_RATE)
965COMPATIBLE_IOCTL(SOUND_PCM_READ_CHANNELS)
966COMPATIBLE_IOCTL(SOUND_PCM_READ_BITS)
967COMPATIBLE_IOCTL(SOUND_PCM_READ_FILTER)
968/* Big C for sound/OSS */
969COMPATIBLE_IOCTL(SNDCTL_COPR_RESET)
970COMPATIBLE_IOCTL(SNDCTL_COPR_LOAD)
971COMPATIBLE_IOCTL(SNDCTL_COPR_RDATA)
972COMPATIBLE_IOCTL(SNDCTL_COPR_RCODE)
973COMPATIBLE_IOCTL(SNDCTL_COPR_WDATA)
974COMPATIBLE_IOCTL(SNDCTL_COPR_WCODE)
975COMPATIBLE_IOCTL(SNDCTL_COPR_RUN)
976COMPATIBLE_IOCTL(SNDCTL_COPR_HALT)
977COMPATIBLE_IOCTL(SNDCTL_COPR_SENDMSG)
978COMPATIBLE_IOCTL(SNDCTL_COPR_RCVMSG)
979/* Big M for sound/OSS */
980COMPATIBLE_IOCTL(SOUND_MIXER_READ_VOLUME)
981COMPATIBLE_IOCTL(SOUND_MIXER_READ_BASS)
982COMPATIBLE_IOCTL(SOUND_MIXER_READ_TREBLE)
983COMPATIBLE_IOCTL(SOUND_MIXER_READ_SYNTH)
984COMPATIBLE_IOCTL(SOUND_MIXER_READ_PCM)
985COMPATIBLE_IOCTL(SOUND_MIXER_READ_SPEAKER)
986COMPATIBLE_IOCTL(SOUND_MIXER_READ_LINE)
987COMPATIBLE_IOCTL(SOUND_MIXER_READ_MIC)
988COMPATIBLE_IOCTL(SOUND_MIXER_READ_CD)
989COMPATIBLE_IOCTL(SOUND_MIXER_READ_IMIX)
990COMPATIBLE_IOCTL(SOUND_MIXER_READ_ALTPCM)
991COMPATIBLE_IOCTL(SOUND_MIXER_READ_RECLEV)
992COMPATIBLE_IOCTL(SOUND_MIXER_READ_IGAIN)
993COMPATIBLE_IOCTL(SOUND_MIXER_READ_OGAIN)
994COMPATIBLE_IOCTL(SOUND_MIXER_READ_LINE1)
995COMPATIBLE_IOCTL(SOUND_MIXER_READ_LINE2)
996COMPATIBLE_IOCTL(SOUND_MIXER_READ_LINE3)
997COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_DIGITAL1))
998COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_DIGITAL2))
999COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_DIGITAL3))
1000COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_PHONEIN))
1001COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_PHONEOUT))
1002COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_VIDEO))
1003COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_RADIO))
1004COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_MONITOR))
1005COMPATIBLE_IOCTL(SOUND_MIXER_READ_MUTE)
1006/* SOUND_MIXER_READ_ENHANCE, same value as READ_MUTE */
1007/* SOUND_MIXER_READ_LOUD, same value as READ_MUTE */
1008COMPATIBLE_IOCTL(SOUND_MIXER_READ_RECSRC)
1009COMPATIBLE_IOCTL(SOUND_MIXER_READ_DEVMASK)
1010COMPATIBLE_IOCTL(SOUND_MIXER_READ_RECMASK)
1011COMPATIBLE_IOCTL(SOUND_MIXER_READ_STEREODEVS)
1012COMPATIBLE_IOCTL(SOUND_MIXER_READ_CAPS)
1013COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_VOLUME)
1014COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_BASS)
1015COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_TREBLE)
1016COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_SYNTH)
1017COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_PCM)
1018COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_SPEAKER)
1019COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_LINE)
1020COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_MIC)
1021COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_CD)
1022COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_IMIX)
1023COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_ALTPCM)
1024COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_RECLEV)
1025COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_IGAIN)
1026COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_OGAIN)
1027COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_LINE1)
1028COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_LINE2)
1029COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_LINE3)
1030COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_DIGITAL1))
1031COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_DIGITAL2))
1032COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_DIGITAL3))
1033COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_PHONEIN))
1034COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_PHONEOUT))
1035COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_VIDEO))
1036COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_RADIO))
1037COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_MONITOR))
1038COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_MUTE)
1039/* SOUND_MIXER_WRITE_ENHANCE, same value as WRITE_MUTE */
1040/* SOUND_MIXER_WRITE_LOUD, same value as WRITE_MUTE */
1041COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_RECSRC)
1042COMPATIBLE_IOCTL(SOUND_MIXER_INFO)
1043COMPATIBLE_IOCTL(SOUND_OLD_MIXER_INFO)
1044COMPATIBLE_IOCTL(SOUND_MIXER_ACCESS)
1045COMPATIBLE_IOCTL(SOUND_MIXER_AGC)
1046COMPATIBLE_IOCTL(SOUND_MIXER_3DSE)
1047COMPATIBLE_IOCTL(SOUND_MIXER_PRIVATE1)
1048COMPATIBLE_IOCTL(SOUND_MIXER_PRIVATE2)
1049COMPATIBLE_IOCTL(SOUND_MIXER_PRIVATE3)
1050COMPATIBLE_IOCTL(SOUND_MIXER_PRIVATE4)
1051COMPATIBLE_IOCTL(SOUND_MIXER_PRIVATE5)
1052COMPATIBLE_IOCTL(SOUND_MIXER_GETLEVELS)
1053COMPATIBLE_IOCTL(SOUND_MIXER_SETLEVELS)
1054COMPATIBLE_IOCTL(OSS_GETVERSION)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -07001055/* Raw devices */
1056COMPATIBLE_IOCTL(RAW_SETBIND)
1057COMPATIBLE_IOCTL(RAW_GETBIND)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -07001058/* Watchdog */
1059COMPATIBLE_IOCTL(WDIOC_GETSUPPORT)
1060COMPATIBLE_IOCTL(WDIOC_GETSTATUS)
1061COMPATIBLE_IOCTL(WDIOC_GETBOOTSTATUS)
1062COMPATIBLE_IOCTL(WDIOC_GETTEMP)
1063COMPATIBLE_IOCTL(WDIOC_SETOPTIONS)
1064COMPATIBLE_IOCTL(WDIOC_KEEPALIVE)
1065COMPATIBLE_IOCTL(WDIOC_SETTIMEOUT)
1066COMPATIBLE_IOCTL(WDIOC_GETTIMEOUT)
Wolfram Sang97beb3a2016-08-31 14:52:42 +03001067COMPATIBLE_IOCTL(WDIOC_SETPRETIMEOUT)
1068COMPATIBLE_IOCTL(WDIOC_GETPRETIMEOUT)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -07001069/* Big R */
1070COMPATIBLE_IOCTL(RNDGETENTCNT)
1071COMPATIBLE_IOCTL(RNDADDTOENTCNT)
1072COMPATIBLE_IOCTL(RNDGETPOOL)
1073COMPATIBLE_IOCTL(RNDADDENTROPY)
1074COMPATIBLE_IOCTL(RNDZAPENTCNT)
1075COMPATIBLE_IOCTL(RNDCLEARPOOL)
1076/* Bluetooth */
1077COMPATIBLE_IOCTL(HCIDEVUP)
1078COMPATIBLE_IOCTL(HCIDEVDOWN)
1079COMPATIBLE_IOCTL(HCIDEVRESET)
1080COMPATIBLE_IOCTL(HCIDEVRESTAT)
1081COMPATIBLE_IOCTL(HCIGETDEVLIST)
1082COMPATIBLE_IOCTL(HCIGETDEVINFO)
1083COMPATIBLE_IOCTL(HCIGETCONNLIST)
1084COMPATIBLE_IOCTL(HCIGETCONNINFO)
Marcel Holtmann40be4922008-07-14 20:13:50 +02001085COMPATIBLE_IOCTL(HCIGETAUTHINFO)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -07001086COMPATIBLE_IOCTL(HCISETRAW)
1087COMPATIBLE_IOCTL(HCISETSCAN)
1088COMPATIBLE_IOCTL(HCISETAUTH)
1089COMPATIBLE_IOCTL(HCISETENCRYPT)
1090COMPATIBLE_IOCTL(HCISETPTYPE)
1091COMPATIBLE_IOCTL(HCISETLINKPOL)
1092COMPATIBLE_IOCTL(HCISETLINKMODE)
1093COMPATIBLE_IOCTL(HCISETACLMTU)
1094COMPATIBLE_IOCTL(HCISETSCOMTU)
Johan Hedbergf0358562010-05-18 13:20:32 +02001095COMPATIBLE_IOCTL(HCIBLOCKADDR)
1096COMPATIBLE_IOCTL(HCIUNBLOCKADDR)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -07001097COMPATIBLE_IOCTL(HCIINQUIRY)
1098COMPATIBLE_IOCTL(HCIUARTSETPROTO)
1099COMPATIBLE_IOCTL(HCIUARTGETPROTO)
Marcel Holtmannd10d34a2016-01-25 08:44:03 +01001100COMPATIBLE_IOCTL(HCIUARTGETDEVICE)
1101COMPATIBLE_IOCTL(HCIUARTSETFLAGS)
1102COMPATIBLE_IOCTL(HCIUARTGETFLAGS)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -07001103COMPATIBLE_IOCTL(RFCOMMCREATEDEV)
1104COMPATIBLE_IOCTL(RFCOMMRELEASEDEV)
1105COMPATIBLE_IOCTL(RFCOMMGETDEVLIST)
1106COMPATIBLE_IOCTL(RFCOMMGETDEVINFO)
1107COMPATIBLE_IOCTL(RFCOMMSTEALDLC)
1108COMPATIBLE_IOCTL(BNEPCONNADD)
1109COMPATIBLE_IOCTL(BNEPCONNDEL)
1110COMPATIBLE_IOCTL(BNEPGETCONNLIST)
1111COMPATIBLE_IOCTL(BNEPGETCONNINFO)
Grzegorz Kolodziejczyk0477e2e2015-04-03 12:14:53 +02001112COMPATIBLE_IOCTL(BNEPGETSUPPFEAT)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -07001113COMPATIBLE_IOCTL(CMTPCONNADD)
1114COMPATIBLE_IOCTL(CMTPCONNDEL)
1115COMPATIBLE_IOCTL(CMTPGETCONNLIST)
1116COMPATIBLE_IOCTL(CMTPGETCONNINFO)
1117COMPATIBLE_IOCTL(HIDPCONNADD)
1118COMPATIBLE_IOCTL(HIDPCONNDEL)
1119COMPATIBLE_IOCTL(HIDPGETCONNLIST)
1120COMPATIBLE_IOCTL(HIDPGETCONNINFO)
1121/* CAPI */
1122COMPATIBLE_IOCTL(CAPI_REGISTER)
1123COMPATIBLE_IOCTL(CAPI_GET_MANUFACTURER)
1124COMPATIBLE_IOCTL(CAPI_GET_VERSION)
1125COMPATIBLE_IOCTL(CAPI_GET_SERIAL)
1126COMPATIBLE_IOCTL(CAPI_GET_PROFILE)
1127COMPATIBLE_IOCTL(CAPI_MANUFACTURER_CMD)
1128COMPATIBLE_IOCTL(CAPI_GET_ERRCODE)
1129COMPATIBLE_IOCTL(CAPI_INSTALLED)
1130COMPATIBLE_IOCTL(CAPI_GET_FLAGS)
1131COMPATIBLE_IOCTL(CAPI_SET_FLAGS)
1132COMPATIBLE_IOCTL(CAPI_CLR_FLAGS)
1133COMPATIBLE_IOCTL(CAPI_NCCI_OPENCOUNT)
1134COMPATIBLE_IOCTL(CAPI_NCCI_GETUNIT)
1135/* Siemens Gigaset */
1136COMPATIBLE_IOCTL(GIGASET_REDIR)
1137COMPATIBLE_IOCTL(GIGASET_CONFIG)
1138COMPATIBLE_IOCTL(GIGASET_BRKCHARS)
1139COMPATIBLE_IOCTL(GIGASET_VERSION)
1140/* Misc. */
1141COMPATIBLE_IOCTL(0x41545900) /* ATYIO_CLKR */
1142COMPATIBLE_IOCTL(0x41545901) /* ATYIO_CLKW */
1143COMPATIBLE_IOCTL(PCIIOC_CONTROLLER)
1144COMPATIBLE_IOCTL(PCIIOC_MMAP_IS_IO)
1145COMPATIBLE_IOCTL(PCIIOC_MMAP_IS_MEM)
1146COMPATIBLE_IOCTL(PCIIOC_WRITE_COMBINE)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -07001147/* hiddev */
1148COMPATIBLE_IOCTL(HIDIOCGVERSION)
1149COMPATIBLE_IOCTL(HIDIOCAPPLICATION)
1150COMPATIBLE_IOCTL(HIDIOCGDEVINFO)
1151COMPATIBLE_IOCTL(HIDIOCGSTRING)
1152COMPATIBLE_IOCTL(HIDIOCINITREPORT)
1153COMPATIBLE_IOCTL(HIDIOCGREPORT)
1154COMPATIBLE_IOCTL(HIDIOCSREPORT)
1155COMPATIBLE_IOCTL(HIDIOCGREPORTINFO)
1156COMPATIBLE_IOCTL(HIDIOCGFIELDINFO)
1157COMPATIBLE_IOCTL(HIDIOCGUSAGE)
1158COMPATIBLE_IOCTL(HIDIOCSUSAGE)
1159COMPATIBLE_IOCTL(HIDIOCGUCODE)
1160COMPATIBLE_IOCTL(HIDIOCGFLAG)
1161COMPATIBLE_IOCTL(HIDIOCSFLAG)
1162COMPATIBLE_IOCTL(HIDIOCGCOLLECTIONINDEX)
1163COMPATIBLE_IOCTL(HIDIOCGCOLLECTIONINFO)
1164/* dvb */
1165COMPATIBLE_IOCTL(AUDIO_STOP)
1166COMPATIBLE_IOCTL(AUDIO_PLAY)
1167COMPATIBLE_IOCTL(AUDIO_PAUSE)
1168COMPATIBLE_IOCTL(AUDIO_CONTINUE)
1169COMPATIBLE_IOCTL(AUDIO_SELECT_SOURCE)
1170COMPATIBLE_IOCTL(AUDIO_SET_MUTE)
1171COMPATIBLE_IOCTL(AUDIO_SET_AV_SYNC)
1172COMPATIBLE_IOCTL(AUDIO_SET_BYPASS_MODE)
1173COMPATIBLE_IOCTL(AUDIO_CHANNEL_SELECT)
1174COMPATIBLE_IOCTL(AUDIO_GET_STATUS)
1175COMPATIBLE_IOCTL(AUDIO_GET_CAPABILITIES)
1176COMPATIBLE_IOCTL(AUDIO_CLEAR_BUFFER)
1177COMPATIBLE_IOCTL(AUDIO_SET_ID)
1178COMPATIBLE_IOCTL(AUDIO_SET_MIXER)
1179COMPATIBLE_IOCTL(AUDIO_SET_STREAMTYPE)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -07001180COMPATIBLE_IOCTL(DMX_START)
1181COMPATIBLE_IOCTL(DMX_STOP)
1182COMPATIBLE_IOCTL(DMX_SET_FILTER)
1183COMPATIBLE_IOCTL(DMX_SET_PES_FILTER)
1184COMPATIBLE_IOCTL(DMX_SET_BUFFER_SIZE)
1185COMPATIBLE_IOCTL(DMX_GET_PES_PIDS)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -07001186COMPATIBLE_IOCTL(DMX_GET_STC)
Mauro Carvalho Chehab651d6662017-12-21 11:00:35 -05001187COMPATIBLE_IOCTL(DMX_REQBUFS)
1188COMPATIBLE_IOCTL(DMX_QUERYBUF)
1189COMPATIBLE_IOCTL(DMX_EXPBUF)
1190COMPATIBLE_IOCTL(DMX_QBUF)
1191COMPATIBLE_IOCTL(DMX_DQBUF)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -07001192COMPATIBLE_IOCTL(VIDEO_STOP)
1193COMPATIBLE_IOCTL(VIDEO_PLAY)
1194COMPATIBLE_IOCTL(VIDEO_FREEZE)
1195COMPATIBLE_IOCTL(VIDEO_CONTINUE)
1196COMPATIBLE_IOCTL(VIDEO_SELECT_SOURCE)
1197COMPATIBLE_IOCTL(VIDEO_SET_BLANK)
1198COMPATIBLE_IOCTL(VIDEO_GET_STATUS)
1199COMPATIBLE_IOCTL(VIDEO_SET_DISPLAY_FORMAT)
1200COMPATIBLE_IOCTL(VIDEO_FAST_FORWARD)
1201COMPATIBLE_IOCTL(VIDEO_SLOWMOTION)
1202COMPATIBLE_IOCTL(VIDEO_GET_CAPABILITIES)
1203COMPATIBLE_IOCTL(VIDEO_CLEAR_BUFFER)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -07001204COMPATIBLE_IOCTL(VIDEO_SET_STREAMTYPE)
1205COMPATIBLE_IOCTL(VIDEO_SET_FORMAT)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -07001206COMPATIBLE_IOCTL(VIDEO_GET_SIZE)
Hans Verkuil594edf32015-11-11 08:26:12 -02001207/* cec */
1208COMPATIBLE_IOCTL(CEC_ADAP_G_CAPS)
1209COMPATIBLE_IOCTL(CEC_ADAP_G_LOG_ADDRS)
1210COMPATIBLE_IOCTL(CEC_ADAP_S_LOG_ADDRS)
1211COMPATIBLE_IOCTL(CEC_ADAP_G_PHYS_ADDR)
1212COMPATIBLE_IOCTL(CEC_ADAP_S_PHYS_ADDR)
1213COMPATIBLE_IOCTL(CEC_G_MODE)
1214COMPATIBLE_IOCTL(CEC_S_MODE)
1215COMPATIBLE_IOCTL(CEC_TRANSMIT)
1216COMPATIBLE_IOCTL(CEC_RECEIVE)
1217COMPATIBLE_IOCTL(CEC_DQEVENT)
Christoph Hellwig644fd4f2007-05-08 00:29:07 -07001218
Akos Maroy3fee37c2008-01-06 11:15:55 +01001219/* joystick */
1220COMPATIBLE_IOCTL(JSIOCGVERSION)
1221COMPATIBLE_IOCTL(JSIOCGAXES)
1222COMPATIBLE_IOCTL(JSIOCGBUTTONS)
1223COMPATIBLE_IOCTL(JSIOCGNAME(0))
1224
Christoph Hellwig9c0cbd52005-10-30 15:01:41 -08001225#ifdef TIOCGLTC
1226COMPATIBLE_IOCTL(TIOCGLTC)
1227COMPATIBLE_IOCTL(TIOCSLTC)
1228#endif
Christoph Hellwig7a81e312005-11-08 21:35:07 -08001229#ifdef TIOCSTART
1230/*
Adam Buchbinder6070d812009-12-04 15:47:01 -05001231 * For these two we have definitions in ioctls.h and/or termios.h on
Christoph Hellwig7a81e312005-11-08 21:35:07 -08001232 * some architectures but no actual implemention. Some applications
1233 * like bash call them if they are defined in the headers, so we provide
1234 * entries here to avoid syslog message spew.
1235 */
1236COMPATIBLE_IOCTL(TIOCSTART)
1237COMPATIBLE_IOCTL(TIOCSTOP)
1238#endif
Andi Kleenc6b44d12006-01-12 01:05:26 -08001239
Andi Kleen2724b6d2007-05-02 19:27:21 +02001240/* fat 'r' ioctls. These are handled by fat with ->compat_ioctl,
1241 but we don't want warnings on other file systems. So declare
1242 them as compatible here. */
1243#define VFAT_IOCTL_READDIR_BOTH32 _IOR('r', 1, struct compat_dirent[2])
1244#define VFAT_IOCTL_READDIR_SHORT32 _IOR('r', 2, struct compat_dirent[2])
1245
1246IGNORE_IOCTL(VFAT_IOCTL_READDIR_BOTH32)
1247IGNORE_IOCTL(VFAT_IOCTL_READDIR_SHORT32)
Geert Uytterhoeven98701dc2007-07-15 23:42:01 -07001248
David S. Miller81639042007-07-29 00:50:42 -07001249#ifdef CONFIG_SPARC
1250/* Sparc framebuffers, handled in sbusfb_compat_ioctl() */
1251IGNORE_IOCTL(FBIOGTYPE)
1252IGNORE_IOCTL(FBIOSATTR)
1253IGNORE_IOCTL(FBIOGATTR)
1254IGNORE_IOCTL(FBIOSVIDEO)
1255IGNORE_IOCTL(FBIOGVIDEO)
1256IGNORE_IOCTL(FBIOSCURPOS)
1257IGNORE_IOCTL(FBIOGCURPOS)
1258IGNORE_IOCTL(FBIOGCURMAX)
1259IGNORE_IOCTL(FBIOPUTCMAP32)
1260IGNORE_IOCTL(FBIOGETCMAP32)
1261IGNORE_IOCTL(FBIOSCURSOR32)
1262IGNORE_IOCTL(FBIOGCURSOR32)
1263#endif
Christoph Hellwige6a6d2e2006-01-09 20:52:14 -08001264};
David S. Miller6e87abd2005-11-16 00:52:57 -08001265
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001266/*
1267 * Convert common ioctl arguments based on their command number
1268 *
1269 * Please do not add any code in here. Instead, implement
1270 * a compat_ioctl operation in the place that handleѕ the
1271 * ioctl for the native case.
1272 */
Al Viro66cf1912016-01-07 09:53:30 -05001273static long do_ioctl_trans(unsigned int cmd,
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001274 unsigned long arg, struct file *file)
1275{
Arnd Bergmann43c6e7b92009-11-14 23:16:18 +01001276 void __user *argp = compat_ptr(arg);
1277
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001278 switch (cmd) {
1279 case PPPIOCGIDLE32:
Al Viro66cf1912016-01-07 09:53:30 -05001280 return ppp_gidle(file, cmd, argp);
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001281 case PPPIOCSCOMPRESS32:
Al Viro66cf1912016-01-07 09:53:30 -05001282 return ppp_scompress(file, cmd, argp);
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001283 case PPPIOCSPASS32:
1284 case PPPIOCSACTIVE32:
Al Viro66cf1912016-01-07 09:53:30 -05001285 return ppp_sock_fprog_ioctl_trans(file, cmd, argp);
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001286#ifdef CONFIG_BLOCK
1287 case SG_IO:
Al Viro66cf1912016-01-07 09:53:30 -05001288 return sg_ioctl_trans(file, cmd, argp);
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001289 case SG_GET_REQUEST_TABLE:
Al Viro66cf1912016-01-07 09:53:30 -05001290 return sg_grt_trans(file, cmd, argp);
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001291 case MTIOCGET32:
1292 case MTIOCPOS32:
Al Viro66cf1912016-01-07 09:53:30 -05001293 return mt_ioctl_trans(file, cmd, argp);
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001294#endif
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001295 /* Serial */
1296 case TIOCGSERIAL:
1297 case TIOCSSERIAL:
Al Viro66cf1912016-01-07 09:53:30 -05001298 return serial_struct_ioctl(file, cmd, argp);
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001299 /* Not implemented in the native kernel */
1300 case RTC_IRQP_READ32:
1301 case RTC_IRQP_SET32:
1302 case RTC_EPOCH_READ32:
1303 case RTC_EPOCH_SET32:
Al Viro66cf1912016-01-07 09:53:30 -05001304 return rtc_ioctl(file, cmd, argp);
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001305
1306 /* dvb */
Arnd Bergmann914282c2018-08-27 15:56:21 -04001307 case VIDEO_GET_EVENT32:
Al Viro66cf1912016-01-07 09:53:30 -05001308 return do_video_get_event(file, cmd, argp);
Arnd Bergmann914282c2018-08-27 15:56:21 -04001309 case VIDEO_STILLPICTURE32:
Al Viro66cf1912016-01-07 09:53:30 -05001310 return do_video_stillpicture(file, cmd, argp);
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001311 }
Arnd Bergmann789f0f82009-11-05 19:13:51 +01001312
1313 /*
1314 * These take an integer instead of a pointer as 'arg',
1315 * so we must not do a compat_ptr() translation.
1316 */
1317 switch (cmd) {
1318 /* Big T */
1319 case TCSBRKP:
1320 case TIOCMIWAIT:
1321 case TIOCSCTTY:
1322 /* RAID */
1323 case HOT_REMOVE_DISK:
1324 case HOT_ADD_DISK:
1325 case SET_DISK_FAULTY:
1326 case SET_BITMAP_FILE:
1327 /* Big K */
1328 case KDSIGACCEPT:
1329 case KIOCSOUND:
1330 case KDMKTONE:
1331 case KDSETMODE:
1332 case KDSKBMODE:
1333 case KDSKBMETA:
1334 case KDSKBLED:
1335 case KDSETLED:
Al Viro66cf1912016-01-07 09:53:30 -05001336 return vfs_ioctl(file, cmd, arg);
Arnd Bergmann789f0f82009-11-05 19:13:51 +01001337 }
1338
Arnd Bergmann5a07ea02009-05-21 22:04:16 +00001339 return -ENOIOCTLCMD;
1340}
1341
Arnd Bergmann661f6272009-11-05 19:52:55 +01001342static int compat_ioctl_check_table(unsigned int xcmd)
1343{
1344 int i;
1345 const int max = ARRAY_SIZE(ioctl_pointer) - 1;
1346
1347 BUILD_BUG_ON(max >= (1 << 16));
1348
1349 /* guess initial offset into table, assuming a
1350 normalized distribution */
1351 i = ((xcmd >> 16) * max) >> 16;
1352
1353 /* do linear search up first, until greater or equal */
1354 while (ioctl_pointer[i] < xcmd && i < max)
1355 i++;
1356
1357 /* then do linear search down */
1358 while (ioctl_pointer[i] > xcmd && i > 0)
1359 i--;
1360
1361 return ioctl_pointer[i] == xcmd;
1362}
1363
Heiko Carstens932602e2014-03-04 16:07:52 +01001364COMPAT_SYSCALL_DEFINE3(ioctl, unsigned int, fd, unsigned int, cmd,
1365 compat_ulong_t, arg32)
Christoph Hellwig6272e262007-05-08 00:29:21 -07001366{
Heiko Carstens932602e2014-03-04 16:07:52 +01001367 unsigned long arg = arg32;
Al Viro2903ff02012-08-28 12:52:22 -04001368 struct fd f = fdget(fd);
Christoph Hellwig6272e262007-05-08 00:29:21 -07001369 int error = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001370 if (!f.file)
Christoph Hellwig6272e262007-05-08 00:29:21 -07001371 goto out;
1372
1373 /* RED-PEN how should LSM module know it's handling 32bit? */
Al Viro2903ff02012-08-28 12:52:22 -04001374 error = security_file_ioctl(f.file, cmd, arg);
Christoph Hellwig6272e262007-05-08 00:29:21 -07001375 if (error)
1376 goto out_fput;
1377
1378 /*
1379 * To allow the compat_ioctl handlers to be self contained
1380 * we need to check the common ioctls here first.
1381 * Just handle them with the standard handlers below.
1382 */
1383 switch (cmd) {
1384 case FIOCLEX:
1385 case FIONCLEX:
1386 case FIONBIO:
1387 case FIOASYNC:
1388 case FIOQSIZE:
1389 break;
1390
Ankit Jain3e63cbb2009-06-19 14:28:07 -04001391#if defined(CONFIG_IA64) || defined(CONFIG_X86_64)
1392 case FS_IOC_RESVSP_32:
1393 case FS_IOC_RESVSP64_32:
Al Viro2903ff02012-08-28 12:52:22 -04001394 error = compat_ioctl_preallocate(f.file, compat_ptr(arg));
Ankit Jain3e63cbb2009-06-19 14:28:07 -04001395 goto out_fput;
1396#else
1397 case FS_IOC_RESVSP:
1398 case FS_IOC_RESVSP64:
Al Viro2903ff02012-08-28 12:52:22 -04001399 error = ioctl_preallocate(f.file, compat_ptr(arg));
Ankit Jain3e63cbb2009-06-19 14:28:07 -04001400 goto out_fput;
1401#endif
1402
Darrick J. Wongd79bdd52015-12-19 00:55:52 -08001403 case FICLONE:
Al Viro0e7dd192019-04-21 18:53:50 -04001404 goto do_ioctl;
Darrick J. Wongd79bdd52015-12-19 00:55:52 -08001405 case FICLONERANGE:
Darrick J. Wong54dbc152015-12-19 00:55:59 -08001406 case FIDEDUPERANGE:
Josef Bacikceac2042017-09-29 15:24:06 -04001407 case FS_IOC_FIEMAP:
Al Viro0e7dd192019-04-21 18:53:50 -04001408 goto found_handler;
Darrick J. Wongd79bdd52015-12-19 00:55:52 -08001409
Christoph Hellwig6272e262007-05-08 00:29:21 -07001410 case FIBMAP:
1411 case FIGETBSZ:
1412 case FIONREAD:
Al Viro496ad9a2013-01-23 17:07:38 -05001413 if (S_ISREG(file_inode(f.file)->i_mode))
Christoph Hellwig6272e262007-05-08 00:29:21 -07001414 break;
1415 /*FALL THROUGH*/
1416
1417 default:
Al Viro72c2d532013-09-22 16:27:52 -04001418 if (f.file->f_op->compat_ioctl) {
Al Viro2903ff02012-08-28 12:52:22 -04001419 error = f.file->f_op->compat_ioctl(f.file, cmd, arg);
Christoph Hellwig6272e262007-05-08 00:29:21 -07001420 if (error != -ENOIOCTLCMD)
1421 goto out_fput;
1422 }
1423
Al Viro72c2d532013-09-22 16:27:52 -04001424 if (!f.file->f_op->unlocked_ioctl)
Christoph Hellwig6272e262007-05-08 00:29:21 -07001425 goto do_ioctl;
1426 break;
1427 }
1428
Arnd Bergmann661f6272009-11-05 19:52:55 +01001429 if (compat_ioctl_check_table(XFORM(cmd)))
1430 goto found_handler;
Christoph Hellwig6272e262007-05-08 00:29:21 -07001431
Al Viro66cf1912016-01-07 09:53:30 -05001432 error = do_ioctl_trans(cmd, arg, f.file);
Linus Torvalds07d106d2012-01-05 15:40:12 -08001433 if (error == -ENOIOCTLCMD)
1434 error = -ENOTTY;
Christoph Hellwig6272e262007-05-08 00:29:21 -07001435
1436 goto out_fput;
1437
1438 found_handler:
Arnd Bergmann789f0f82009-11-05 19:13:51 +01001439 arg = (unsigned long)compat_ptr(arg);
Christoph Hellwig6272e262007-05-08 00:29:21 -07001440 do_ioctl:
Al Viro2903ff02012-08-28 12:52:22 -04001441 error = do_vfs_ioctl(f.file, fd, cmd, arg);
Christoph Hellwig6272e262007-05-08 00:29:21 -07001442 out_fput:
Al Viro2903ff02012-08-28 12:52:22 -04001443 fdput(f);
Christoph Hellwig6272e262007-05-08 00:29:21 -07001444 out:
1445 return error;
1446}
1447
Arnd Bergmann661f6272009-11-05 19:52:55 +01001448static int __init init_sys32_ioctl_cmp(const void *p, const void *q)
Christoph Hellwig6272e262007-05-08 00:29:21 -07001449{
Arnd Bergmann661f6272009-11-05 19:52:55 +01001450 unsigned int a, b;
1451 a = *(unsigned int *)p;
1452 b = *(unsigned int *)q;
1453 if (a > b)
1454 return 1;
1455 if (a < b)
1456 return -1;
1457 return 0;
Christoph Hellwig6272e262007-05-08 00:29:21 -07001458}
1459
1460static int __init init_sys32_ioctl(void)
1461{
Arnd Bergmann661f6272009-11-05 19:52:55 +01001462 sort(ioctl_pointer, ARRAY_SIZE(ioctl_pointer), sizeof(*ioctl_pointer),
1463 init_sys32_ioctl_cmp, NULL);
Christoph Hellwig6272e262007-05-08 00:29:21 -07001464 return 0;
1465}
1466__initcall(init_sys32_ioctl);