compat_ioctl.c 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  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
  8. * Copyright (C) 2003 Pavel Machek (pavel@ucw.cz)
  9. *
  10. * These routines maintain argument size conversion between 32bit and 64bit
  11. * ioctls.
  12. */
  13. #include <linux/joystick.h>
  14. #include <linux/types.h>
  15. #include <linux/compat.h>
  16. #include <linux/kernel.h>
  17. #include <linux/capability.h>
  18. #include <linux/compiler.h>
  19. #include <linux/sched.h>
  20. #include <linux/smp.h>
  21. #include <linux/ioctl.h>
  22. #include <linux/if.h>
  23. #include <linux/if_bridge.h>
  24. #include <linux/raid/md_u.h>
  25. #include <linux/kd.h>
  26. #include <linux/route.h>
  27. #include <linux/in6.h>
  28. #include <linux/ipv6_route.h>
  29. #include <linux/skbuff.h>
  30. #include <linux/netlink.h>
  31. #include <linux/vt.h>
  32. #include <linux/falloc.h>
  33. #include <linux/fs.h>
  34. #include <linux/file.h>
  35. #include <linux/ppp_defs.h>
  36. #include <linux/ppp-ioctl.h>
  37. #include <linux/if_pppox.h>
  38. #include <linux/mtio.h>
  39. #include <linux/tty.h>
  40. #include <linux/vt_kern.h>
  41. #include <linux/fb.h>
  42. #include <linux/videodev2.h>
  43. #include <linux/netdevice.h>
  44. #include <linux/raw.h>
  45. #include <linux/blkdev.h>
  46. #include <linux/elevator.h>
  47. #include <linux/rtc.h>
  48. #include <linux/pci.h>
  49. #include <linux/serial.h>
  50. #include <linux/if_tun.h>
  51. #include <linux/ctype.h>
  52. #include <linux/syscalls.h>
  53. #include <linux/atalk.h>
  54. #include <linux/gfp.h>
  55. #include <linux/cec.h>
  56. #include "internal.h"
  57. #include <net/bluetooth/bluetooth.h>
  58. #include <net/bluetooth/hci_sock.h>
  59. #include <net/bluetooth/rfcomm.h>
  60. #include <linux/capi.h>
  61. #include <linux/gigaset_dev.h>
  62. #ifdef CONFIG_BLOCK
  63. #include <linux/cdrom.h>
  64. #include <linux/fd.h>
  65. #include <scsi/scsi.h>
  66. #include <scsi/scsi_ioctl.h>
  67. #include <scsi/sg.h>
  68. #endif
  69. #include <linux/uaccess.h>
  70. #include <linux/ethtool.h>
  71. #include <linux/mii.h>
  72. #include <linux/if_bonding.h>
  73. #include <linux/watchdog.h>
  74. #include <linux/soundcard.h>
  75. #include <linux/lp.h>
  76. #include <linux/ppdev.h>
  77. #include <linux/atm.h>
  78. #include <linux/atmarp.h>
  79. #include <linux/atmclip.h>
  80. #include <linux/atmdev.h>
  81. #include <linux/atmioc.h>
  82. #include <linux/atmlec.h>
  83. #include <linux/atmmpc.h>
  84. #include <linux/atmsvc.h>
  85. #include <linux/atm_tcp.h>
  86. #include <linux/sonet.h>
  87. #include <linux/atm_suni.h>
  88. #include <linux/usb.h>
  89. #include <linux/usbdevice_fs.h>
  90. #include <linux/nbd.h>
  91. #include <linux/random.h>
  92. #include <linux/filter.h>
  93. #include <linux/hiddev.h>
  94. #define __DVB_CORE__
  95. #include <linux/dvb/audio.h>
  96. #include <linux/dvb/dmx.h>
  97. #include <linux/dvb/frontend.h>
  98. #include <linux/dvb/video.h>
  99. #include <linux/sort.h>
  100. #ifdef CONFIG_SPARC
  101. #include <asm/fbio.h>
  102. #endif
  103. #define convert_in_user(srcptr, dstptr) \
  104. ({ \
  105. typeof(*srcptr) val; \
  106. \
  107. get_user(val, srcptr) || put_user(val, dstptr); \
  108. })
  109. static int do_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
  110. {
  111. int err;
  112. err = security_file_ioctl(file, cmd, arg);
  113. if (err)
  114. return err;
  115. return vfs_ioctl(file, cmd, arg);
  116. }
  117. struct compat_video_event {
  118. int32_t type;
  119. compat_time_t timestamp;
  120. union {
  121. video_size_t size;
  122. unsigned int frame_rate;
  123. } u;
  124. };
  125. #define VIDEO_GET_EVENT32 _IOR('o', 28, struct compat_video_event)
  126. static int do_video_get_event(struct file *file,
  127. unsigned int cmd, struct compat_video_event __user *up)
  128. {
  129. struct video_event __user *kevent =
  130. compat_alloc_user_space(sizeof(*kevent));
  131. int err;
  132. if (kevent == NULL)
  133. return -EFAULT;
  134. err = do_ioctl(file, VIDEO_GET_EVENT, (unsigned long)kevent);
  135. if (!err) {
  136. err = convert_in_user(&kevent->type, &up->type);
  137. err |= convert_in_user(&kevent->timestamp, &up->timestamp);
  138. err |= convert_in_user(&kevent->u.size.w, &up->u.size.w);
  139. err |= convert_in_user(&kevent->u.size.h, &up->u.size.h);
  140. err |= convert_in_user(&kevent->u.size.aspect_ratio,
  141. &up->u.size.aspect_ratio);
  142. if (err)
  143. err = -EFAULT;
  144. }
  145. return err;
  146. }
  147. struct compat_video_still_picture {
  148. compat_uptr_t iFrame;
  149. int32_t size;
  150. };
  151. #define VIDEO_STILLPICTURE32 _IOW('o', 30, struct compat_video_still_picture)
  152. static int do_video_stillpicture(struct file *file,
  153. unsigned int cmd, struct compat_video_still_picture __user *up)
  154. {
  155. struct video_still_picture __user *up_native;
  156. compat_uptr_t fp;
  157. int32_t size;
  158. int err;
  159. err = get_user(fp, &up->iFrame);
  160. err |= get_user(size, &up->size);
  161. if (err)
  162. return -EFAULT;
  163. up_native =
  164. compat_alloc_user_space(sizeof(struct video_still_picture));
  165. err = put_user(compat_ptr(fp), &up_native->iFrame);
  166. err |= put_user(size, &up_native->size);
  167. if (err)
  168. return -EFAULT;
  169. err = do_ioctl(file, VIDEO_STILLPICTURE, (unsigned long) up_native);
  170. return err;
  171. }
  172. #ifdef CONFIG_BLOCK
  173. typedef struct sg_io_hdr32 {
  174. compat_int_t interface_id; /* [i] 'S' for SCSI generic (required) */
  175. compat_int_t dxfer_direction; /* [i] data transfer direction */
  176. unsigned char cmd_len; /* [i] SCSI command length ( <= 16 bytes) */
  177. unsigned char mx_sb_len; /* [i] max length to write to sbp */
  178. unsigned short iovec_count; /* [i] 0 implies no scatter gather */
  179. compat_uint_t dxfer_len; /* [i] byte count of data transfer */
  180. compat_uint_t dxferp; /* [i], [*io] points to data transfer memory
  181. or scatter gather list */
  182. compat_uptr_t cmdp; /* [i], [*i] points to command to perform */
  183. compat_uptr_t sbp; /* [i], [*o] points to sense_buffer memory */
  184. compat_uint_t timeout; /* [i] MAX_UINT->no timeout (unit: millisec) */
  185. compat_uint_t flags; /* [i] 0 -> default, see SG_FLAG... */
  186. compat_int_t pack_id; /* [i->o] unused internally (normally) */
  187. compat_uptr_t usr_ptr; /* [i->o] unused internally */
  188. unsigned char status; /* [o] scsi status */
  189. unsigned char masked_status; /* [o] shifted, masked scsi status */
  190. unsigned char msg_status; /* [o] messaging level data (optional) */
  191. unsigned char sb_len_wr; /* [o] byte count actually written to sbp */
  192. unsigned short host_status; /* [o] errors from host adapter */
  193. unsigned short driver_status; /* [o] errors from software driver */
  194. compat_int_t resid; /* [o] dxfer_len - actual_transferred */
  195. compat_uint_t duration; /* [o] time taken by cmd (unit: millisec) */
  196. compat_uint_t info; /* [o] auxiliary information */
  197. } sg_io_hdr32_t; /* 64 bytes long (on sparc32) */
  198. typedef struct sg_iovec32 {
  199. compat_uint_t iov_base;
  200. compat_uint_t iov_len;
  201. } sg_iovec32_t;
  202. static int sg_build_iovec(sg_io_hdr_t __user *sgio, void __user *dxferp, u16 iovec_count)
  203. {
  204. sg_iovec_t __user *iov = (sg_iovec_t __user *) (sgio + 1);
  205. sg_iovec32_t __user *iov32 = dxferp;
  206. int i;
  207. for (i = 0; i < iovec_count; i++) {
  208. u32 base, len;
  209. if (get_user(base, &iov32[i].iov_base) ||
  210. get_user(len, &iov32[i].iov_len) ||
  211. put_user(compat_ptr(base), &iov[i].iov_base) ||
  212. put_user(len, &iov[i].iov_len))
  213. return -EFAULT;
  214. }
  215. if (put_user(iov, &sgio->dxferp))
  216. return -EFAULT;
  217. return 0;
  218. }
  219. static int sg_ioctl_trans(struct file *file, unsigned int cmd,
  220. sg_io_hdr32_t __user *sgio32)
  221. {
  222. sg_io_hdr_t __user *sgio;
  223. u16 iovec_count;
  224. u32 data;
  225. void __user *dxferp;
  226. int err;
  227. int interface_id;
  228. if (get_user(interface_id, &sgio32->interface_id))
  229. return -EFAULT;
  230. if (interface_id != 'S')
  231. return do_ioctl(file, cmd, (unsigned long)sgio32);
  232. if (get_user(iovec_count, &sgio32->iovec_count))
  233. return -EFAULT;
  234. {
  235. void __user *top = compat_alloc_user_space(0);
  236. void __user *new = compat_alloc_user_space(sizeof(sg_io_hdr_t) +
  237. (iovec_count * sizeof(sg_iovec_t)));
  238. if (new > top)
  239. return -EINVAL;
  240. sgio = new;
  241. }
  242. /* Ok, now construct. */
  243. if (copy_in_user(&sgio->interface_id, &sgio32->interface_id,
  244. (2 * sizeof(int)) +
  245. (2 * sizeof(unsigned char)) +
  246. (1 * sizeof(unsigned short)) +
  247. (1 * sizeof(unsigned int))))
  248. return -EFAULT;
  249. if (get_user(data, &sgio32->dxferp))
  250. return -EFAULT;
  251. dxferp = compat_ptr(data);
  252. if (iovec_count) {
  253. if (sg_build_iovec(sgio, dxferp, iovec_count))
  254. return -EFAULT;
  255. } else {
  256. if (put_user(dxferp, &sgio->dxferp))
  257. return -EFAULT;
  258. }
  259. {
  260. unsigned char __user *cmdp;
  261. unsigned char __user *sbp;
  262. if (get_user(data, &sgio32->cmdp))
  263. return -EFAULT;
  264. cmdp = compat_ptr(data);
  265. if (get_user(data, &sgio32->sbp))
  266. return -EFAULT;
  267. sbp = compat_ptr(data);
  268. if (put_user(cmdp, &sgio->cmdp) ||
  269. put_user(sbp, &sgio->sbp))
  270. return -EFAULT;
  271. }
  272. if (copy_in_user(&sgio->timeout, &sgio32->timeout,
  273. 3 * sizeof(int)))
  274. return -EFAULT;
  275. if (get_user(data, &sgio32->usr_ptr))
  276. return -EFAULT;
  277. if (put_user(compat_ptr(data), &sgio->usr_ptr))
  278. return -EFAULT;
  279. err = do_ioctl(file, cmd, (unsigned long) sgio);
  280. if (err >= 0) {
  281. void __user *datap;
  282. if (copy_in_user(&sgio32->pack_id, &sgio->pack_id,
  283. sizeof(int)) ||
  284. get_user(datap, &sgio->usr_ptr) ||
  285. put_user((u32)(unsigned long)datap,
  286. &sgio32->usr_ptr) ||
  287. copy_in_user(&sgio32->status, &sgio->status,
  288. (4 * sizeof(unsigned char)) +
  289. (2 * sizeof(unsigned short)) +
  290. (3 * sizeof(int))))
  291. err = -EFAULT;
  292. }
  293. return err;
  294. }
  295. struct compat_sg_req_info { /* used by SG_GET_REQUEST_TABLE ioctl() */
  296. char req_state;
  297. char orphan;
  298. char sg_io_owned;
  299. char problem;
  300. int pack_id;
  301. compat_uptr_t usr_ptr;
  302. unsigned int duration;
  303. int unused;
  304. };
  305. static int sg_grt_trans(struct file *file,
  306. unsigned int cmd, struct compat_sg_req_info __user *o)
  307. {
  308. int err, i;
  309. sg_req_info_t __user *r;
  310. r = compat_alloc_user_space(sizeof(sg_req_info_t)*SG_MAX_QUEUE);
  311. err = do_ioctl(file, cmd, (unsigned long)r);
  312. if (err < 0)
  313. return err;
  314. for (i = 0; i < SG_MAX_QUEUE; i++) {
  315. void __user *ptr;
  316. int d;
  317. if (copy_in_user(o + i, r + i, offsetof(sg_req_info_t, usr_ptr)) ||
  318. get_user(ptr, &r[i].usr_ptr) ||
  319. get_user(d, &r[i].duration) ||
  320. put_user((u32)(unsigned long)(ptr), &o[i].usr_ptr) ||
  321. put_user(d, &o[i].duration))
  322. return -EFAULT;
  323. }
  324. return err;
  325. }
  326. #endif /* CONFIG_BLOCK */
  327. struct sock_fprog32 {
  328. unsigned short len;
  329. compat_caddr_t filter;
  330. };
  331. #define PPPIOCSPASS32 _IOW('t', 71, struct sock_fprog32)
  332. #define PPPIOCSACTIVE32 _IOW('t', 70, struct sock_fprog32)
  333. static int ppp_sock_fprog_ioctl_trans(struct file *file,
  334. unsigned int cmd, struct sock_fprog32 __user *u_fprog32)
  335. {
  336. struct sock_fprog __user *u_fprog64 = compat_alloc_user_space(sizeof(struct sock_fprog));
  337. void __user *fptr64;
  338. u32 fptr32;
  339. u16 flen;
  340. if (get_user(flen, &u_fprog32->len) ||
  341. get_user(fptr32, &u_fprog32->filter))
  342. return -EFAULT;
  343. fptr64 = compat_ptr(fptr32);
  344. if (put_user(flen, &u_fprog64->len) ||
  345. put_user(fptr64, &u_fprog64->filter))
  346. return -EFAULT;
  347. if (cmd == PPPIOCSPASS32)
  348. cmd = PPPIOCSPASS;
  349. else
  350. cmd = PPPIOCSACTIVE;
  351. return do_ioctl(file, cmd, (unsigned long) u_fprog64);
  352. }
  353. struct ppp_option_data32 {
  354. compat_caddr_t ptr;
  355. u32 length;
  356. compat_int_t transmit;
  357. };
  358. #define PPPIOCSCOMPRESS32 _IOW('t', 77, struct ppp_option_data32)
  359. struct ppp_idle32 {
  360. compat_time_t xmit_idle;
  361. compat_time_t recv_idle;
  362. };
  363. #define PPPIOCGIDLE32 _IOR('t', 63, struct ppp_idle32)
  364. static int ppp_gidle(struct file *file, unsigned int cmd,
  365. struct ppp_idle32 __user *idle32)
  366. {
  367. struct ppp_idle __user *idle;
  368. __kernel_time_t xmit, recv;
  369. int err;
  370. idle = compat_alloc_user_space(sizeof(*idle));
  371. err = do_ioctl(file, PPPIOCGIDLE, (unsigned long) idle);
  372. if (!err) {
  373. if (get_user(xmit, &idle->xmit_idle) ||
  374. get_user(recv, &idle->recv_idle) ||
  375. put_user(xmit, &idle32->xmit_idle) ||
  376. put_user(recv, &idle32->recv_idle))
  377. err = -EFAULT;
  378. }
  379. return err;
  380. }
  381. static int ppp_scompress(struct file *file, unsigned int cmd,
  382. struct ppp_option_data32 __user *odata32)
  383. {
  384. struct ppp_option_data __user *odata;
  385. __u32 data;
  386. void __user *datap;
  387. odata = compat_alloc_user_space(sizeof(*odata));
  388. if (get_user(data, &odata32->ptr))
  389. return -EFAULT;
  390. datap = compat_ptr(data);
  391. if (put_user(datap, &odata->ptr))
  392. return -EFAULT;
  393. if (copy_in_user(&odata->length, &odata32->length,
  394. sizeof(__u32) + sizeof(int)))
  395. return -EFAULT;
  396. return do_ioctl(file, PPPIOCSCOMPRESS, (unsigned long) odata);
  397. }
  398. #ifdef CONFIG_BLOCK
  399. struct mtget32 {
  400. compat_long_t mt_type;
  401. compat_long_t mt_resid;
  402. compat_long_t mt_dsreg;
  403. compat_long_t mt_gstat;
  404. compat_long_t mt_erreg;
  405. compat_daddr_t mt_fileno;
  406. compat_daddr_t mt_blkno;
  407. };
  408. #define MTIOCGET32 _IOR('m', 2, struct mtget32)
  409. struct mtpos32 {
  410. compat_long_t mt_blkno;
  411. };
  412. #define MTIOCPOS32 _IOR('m', 3, struct mtpos32)
  413. static int mt_ioctl_trans(struct file *file,
  414. unsigned int cmd, void __user *argp)
  415. {
  416. /* NULL initialization to make gcc shut up */
  417. struct mtget __user *get = NULL;
  418. struct mtget32 __user *umget32;
  419. struct mtpos __user *pos = NULL;
  420. struct mtpos32 __user *upos32;
  421. unsigned long kcmd;
  422. void *karg;
  423. int err = 0;
  424. switch(cmd) {
  425. case MTIOCPOS32:
  426. kcmd = MTIOCPOS;
  427. pos = compat_alloc_user_space(sizeof(*pos));
  428. karg = pos;
  429. break;
  430. default: /* MTIOCGET32 */
  431. kcmd = MTIOCGET;
  432. get = compat_alloc_user_space(sizeof(*get));
  433. karg = get;
  434. break;
  435. }
  436. if (karg == NULL)
  437. return -EFAULT;
  438. err = do_ioctl(file, kcmd, (unsigned long)karg);
  439. if (err)
  440. return err;
  441. switch (cmd) {
  442. case MTIOCPOS32:
  443. upos32 = argp;
  444. err = convert_in_user(&pos->mt_blkno, &upos32->mt_blkno);
  445. break;
  446. case MTIOCGET32:
  447. umget32 = argp;
  448. err = convert_in_user(&get->mt_type, &umget32->mt_type);
  449. err |= convert_in_user(&get->mt_resid, &umget32->mt_resid);
  450. err |= convert_in_user(&get->mt_dsreg, &umget32->mt_dsreg);
  451. err |= convert_in_user(&get->mt_gstat, &umget32->mt_gstat);
  452. err |= convert_in_user(&get->mt_erreg, &umget32->mt_erreg);
  453. err |= convert_in_user(&get->mt_fileno, &umget32->mt_fileno);
  454. err |= convert_in_user(&get->mt_blkno, &umget32->mt_blkno);
  455. break;
  456. }
  457. return err ? -EFAULT: 0;
  458. }
  459. #endif /* CONFIG_BLOCK */
  460. /* Bluetooth ioctls */
  461. #define HCIUARTSETPROTO _IOW('U', 200, int)
  462. #define HCIUARTGETPROTO _IOR('U', 201, int)
  463. #define HCIUARTGETDEVICE _IOR('U', 202, int)
  464. #define HCIUARTSETFLAGS _IOW('U', 203, int)
  465. #define HCIUARTGETFLAGS _IOR('U', 204, int)
  466. #define BNEPCONNADD _IOW('B', 200, int)
  467. #define BNEPCONNDEL _IOW('B', 201, int)
  468. #define BNEPGETCONNLIST _IOR('B', 210, int)
  469. #define BNEPGETCONNINFO _IOR('B', 211, int)
  470. #define BNEPGETSUPPFEAT _IOR('B', 212, int)
  471. #define CMTPCONNADD _IOW('C', 200, int)
  472. #define CMTPCONNDEL _IOW('C', 201, int)
  473. #define CMTPGETCONNLIST _IOR('C', 210, int)
  474. #define CMTPGETCONNINFO _IOR('C', 211, int)
  475. #define HIDPCONNADD _IOW('H', 200, int)
  476. #define HIDPCONNDEL _IOW('H', 201, int)
  477. #define HIDPGETCONNLIST _IOR('H', 210, int)
  478. #define HIDPGETCONNINFO _IOR('H', 211, int)
  479. struct serial_struct32 {
  480. compat_int_t type;
  481. compat_int_t line;
  482. compat_uint_t port;
  483. compat_int_t irq;
  484. compat_int_t flags;
  485. compat_int_t xmit_fifo_size;
  486. compat_int_t custom_divisor;
  487. compat_int_t baud_base;
  488. unsigned short close_delay;
  489. char io_type;
  490. char reserved_char[1];
  491. compat_int_t hub6;
  492. unsigned short closing_wait; /* time to wait before closing */
  493. unsigned short closing_wait2; /* no longer used... */
  494. compat_uint_t iomem_base;
  495. unsigned short iomem_reg_shift;
  496. unsigned int port_high;
  497. /* compat_ulong_t iomap_base FIXME */
  498. compat_int_t reserved[1];
  499. };
  500. static int serial_struct_ioctl(struct file *file,
  501. unsigned cmd, struct serial_struct32 __user *ss32)
  502. {
  503. typedef struct serial_struct32 SS32;
  504. int err;
  505. struct serial_struct __user *ss = compat_alloc_user_space(sizeof(*ss));
  506. __u32 udata;
  507. unsigned int base;
  508. unsigned char *iomem_base;
  509. if (ss == NULL)
  510. return -EFAULT;
  511. if (cmd == TIOCSSERIAL) {
  512. if (copy_in_user(ss, ss32, offsetof(SS32, iomem_base)) ||
  513. get_user(udata, &ss32->iomem_base))
  514. return -EFAULT;
  515. iomem_base = compat_ptr(udata);
  516. if (put_user(iomem_base, &ss->iomem_base) ||
  517. convert_in_user(&ss32->iomem_reg_shift,
  518. &ss->iomem_reg_shift) ||
  519. convert_in_user(&ss32->port_high, &ss->port_high) ||
  520. put_user(0UL, &ss->iomap_base))
  521. return -EFAULT;
  522. }
  523. err = do_ioctl(file, cmd, (unsigned long)ss);
  524. if (cmd == TIOCGSERIAL && err >= 0) {
  525. if (copy_in_user(ss32, ss, offsetof(SS32, iomem_base)) ||
  526. get_user(iomem_base, &ss->iomem_base))
  527. return -EFAULT;
  528. base = (unsigned long)iomem_base >> 32 ?
  529. 0xffffffff : (unsigned)(unsigned long)iomem_base;
  530. if (put_user(base, &ss32->iomem_base) ||
  531. convert_in_user(&ss->iomem_reg_shift,
  532. &ss32->iomem_reg_shift) ||
  533. convert_in_user(&ss->port_high, &ss32->port_high))
  534. return -EFAULT;
  535. }
  536. return err;
  537. }
  538. #define RTC_IRQP_READ32 _IOR('p', 0x0b, compat_ulong_t)
  539. #define RTC_IRQP_SET32 _IOW('p', 0x0c, compat_ulong_t)
  540. #define RTC_EPOCH_READ32 _IOR('p', 0x0d, compat_ulong_t)
  541. #define RTC_EPOCH_SET32 _IOW('p', 0x0e, compat_ulong_t)
  542. static int rtc_ioctl(struct file *file,
  543. unsigned cmd, void __user *argp)
  544. {
  545. unsigned long __user *valp = compat_alloc_user_space(sizeof(*valp));
  546. int ret;
  547. if (valp == NULL)
  548. return -EFAULT;
  549. switch (cmd) {
  550. case RTC_IRQP_READ32:
  551. case RTC_EPOCH_READ32:
  552. ret = do_ioctl(file, (cmd == RTC_IRQP_READ32) ?
  553. RTC_IRQP_READ : RTC_EPOCH_READ,
  554. (unsigned long)valp);
  555. if (ret)
  556. return ret;
  557. return convert_in_user(valp, (unsigned int __user *)argp);
  558. case RTC_IRQP_SET32:
  559. return do_ioctl(file, RTC_IRQP_SET, (unsigned long)argp);
  560. case RTC_EPOCH_SET32:
  561. return do_ioctl(file, RTC_EPOCH_SET, (unsigned long)argp);
  562. }
  563. return -ENOIOCTLCMD;
  564. }
  565. /* on ia32 l_start is on a 32-bit boundary */
  566. #if defined(CONFIG_IA64) || defined(CONFIG_X86_64)
  567. struct space_resv_32 {
  568. __s16 l_type;
  569. __s16 l_whence;
  570. __s64 l_start __attribute__((packed));
  571. /* len == 0 means until end of file */
  572. __s64 l_len __attribute__((packed));
  573. __s32 l_sysid;
  574. __u32 l_pid;
  575. __s32 l_pad[4]; /* reserve area */
  576. };
  577. #define FS_IOC_RESVSP_32 _IOW ('X', 40, struct space_resv_32)
  578. #define FS_IOC_RESVSP64_32 _IOW ('X', 42, struct space_resv_32)
  579. /* just account for different alignment */
  580. static int compat_ioctl_preallocate(struct file *file,
  581. struct space_resv_32 __user *p32)
  582. {
  583. struct space_resv __user *p = compat_alloc_user_space(sizeof(*p));
  584. if (copy_in_user(&p->l_type, &p32->l_type, sizeof(s16)) ||
  585. copy_in_user(&p->l_whence, &p32->l_whence, sizeof(s16)) ||
  586. copy_in_user(&p->l_start, &p32->l_start, sizeof(s64)) ||
  587. copy_in_user(&p->l_len, &p32->l_len, sizeof(s64)) ||
  588. copy_in_user(&p->l_sysid, &p32->l_sysid, sizeof(s32)) ||
  589. copy_in_user(&p->l_pid, &p32->l_pid, sizeof(u32)) ||
  590. copy_in_user(&p->l_pad, &p32->l_pad, 4*sizeof(u32)))
  591. return -EFAULT;
  592. return ioctl_preallocate(file, p);
  593. }
  594. #endif
  595. /*
  596. * simple reversible transform to make our table more evenly
  597. * distributed after sorting.
  598. */
  599. #define XFORM(i) (((i) ^ ((i) << 27) ^ ((i) << 17)) & 0xffffffff)
  600. #define COMPATIBLE_IOCTL(cmd) XFORM((u32)cmd),
  601. /* ioctl should not be warned about even if it's not implemented.
  602. Valid reasons to use this:
  603. - It is implemented with ->compat_ioctl on some device, but programs
  604. call it on others too.
  605. - The ioctl is not implemented in the native kernel, but programs
  606. call it commonly anyways.
  607. Most other reasons are not valid. */
  608. #define IGNORE_IOCTL(cmd) COMPATIBLE_IOCTL(cmd)
  609. static unsigned int ioctl_pointer[] = {
  610. /* compatible ioctls first */
  611. COMPATIBLE_IOCTL(0x4B50) /* KDGHWCLK - not in the kernel, but don't complain */
  612. COMPATIBLE_IOCTL(0x4B51) /* KDSHWCLK - not in the kernel, but don't complain */
  613. /* Big T */
  614. COMPATIBLE_IOCTL(TCGETA)
  615. COMPATIBLE_IOCTL(TCSETA)
  616. COMPATIBLE_IOCTL(TCSETAW)
  617. COMPATIBLE_IOCTL(TCSETAF)
  618. COMPATIBLE_IOCTL(TCSBRK)
  619. COMPATIBLE_IOCTL(TCXONC)
  620. COMPATIBLE_IOCTL(TCFLSH)
  621. COMPATIBLE_IOCTL(TCGETS)
  622. COMPATIBLE_IOCTL(TCSETS)
  623. COMPATIBLE_IOCTL(TCSETSW)
  624. COMPATIBLE_IOCTL(TCSETSF)
  625. COMPATIBLE_IOCTL(TIOCLINUX)
  626. COMPATIBLE_IOCTL(TIOCSBRK)
  627. COMPATIBLE_IOCTL(TIOCGDEV)
  628. COMPATIBLE_IOCTL(TIOCCBRK)
  629. COMPATIBLE_IOCTL(TIOCGSID)
  630. COMPATIBLE_IOCTL(TIOCGICOUNT)
  631. COMPATIBLE_IOCTL(TIOCGEXCL)
  632. /* Little t */
  633. COMPATIBLE_IOCTL(TIOCGETD)
  634. COMPATIBLE_IOCTL(TIOCSETD)
  635. COMPATIBLE_IOCTL(TIOCEXCL)
  636. COMPATIBLE_IOCTL(TIOCNXCL)
  637. COMPATIBLE_IOCTL(TIOCCONS)
  638. COMPATIBLE_IOCTL(TIOCGSOFTCAR)
  639. COMPATIBLE_IOCTL(TIOCSSOFTCAR)
  640. COMPATIBLE_IOCTL(TIOCSWINSZ)
  641. COMPATIBLE_IOCTL(TIOCGWINSZ)
  642. COMPATIBLE_IOCTL(TIOCMGET)
  643. COMPATIBLE_IOCTL(TIOCMBIC)
  644. COMPATIBLE_IOCTL(TIOCMBIS)
  645. COMPATIBLE_IOCTL(TIOCMSET)
  646. COMPATIBLE_IOCTL(TIOCNOTTY)
  647. COMPATIBLE_IOCTL(TIOCSTI)
  648. COMPATIBLE_IOCTL(TIOCOUTQ)
  649. COMPATIBLE_IOCTL(TIOCSPGRP)
  650. COMPATIBLE_IOCTL(TIOCGPGRP)
  651. COMPATIBLE_IOCTL(TIOCSERGETLSR)
  652. #ifdef TIOCSRS485
  653. COMPATIBLE_IOCTL(TIOCSRS485)
  654. #endif
  655. #ifdef TIOCGRS485
  656. COMPATIBLE_IOCTL(TIOCGRS485)
  657. #endif
  658. #ifdef TCGETS2
  659. COMPATIBLE_IOCTL(TCGETS2)
  660. COMPATIBLE_IOCTL(TCSETS2)
  661. COMPATIBLE_IOCTL(TCSETSW2)
  662. COMPATIBLE_IOCTL(TCSETSF2)
  663. #endif
  664. /* Little f */
  665. COMPATIBLE_IOCTL(FIOCLEX)
  666. COMPATIBLE_IOCTL(FIONCLEX)
  667. COMPATIBLE_IOCTL(FIOASYNC)
  668. COMPATIBLE_IOCTL(FIONBIO)
  669. COMPATIBLE_IOCTL(FIONREAD) /* This is also TIOCINQ */
  670. COMPATIBLE_IOCTL(FS_IOC_FIEMAP)
  671. /* 0x00 */
  672. COMPATIBLE_IOCTL(FIBMAP)
  673. COMPATIBLE_IOCTL(FIGETBSZ)
  674. /* 'X' - originally XFS but some now in the VFS */
  675. COMPATIBLE_IOCTL(FIFREEZE)
  676. COMPATIBLE_IOCTL(FITHAW)
  677. COMPATIBLE_IOCTL(FITRIM)
  678. COMPATIBLE_IOCTL(KDGETKEYCODE)
  679. COMPATIBLE_IOCTL(KDSETKEYCODE)
  680. COMPATIBLE_IOCTL(KDGKBTYPE)
  681. COMPATIBLE_IOCTL(KDGETMODE)
  682. COMPATIBLE_IOCTL(KDGKBMODE)
  683. COMPATIBLE_IOCTL(KDGKBMETA)
  684. COMPATIBLE_IOCTL(KDGKBENT)
  685. COMPATIBLE_IOCTL(KDSKBENT)
  686. COMPATIBLE_IOCTL(KDGKBSENT)
  687. COMPATIBLE_IOCTL(KDSKBSENT)
  688. COMPATIBLE_IOCTL(KDGKBDIACR)
  689. COMPATIBLE_IOCTL(KDSKBDIACR)
  690. COMPATIBLE_IOCTL(KDGKBDIACRUC)
  691. COMPATIBLE_IOCTL(KDSKBDIACRUC)
  692. COMPATIBLE_IOCTL(KDKBDREP)
  693. COMPATIBLE_IOCTL(KDGKBLED)
  694. COMPATIBLE_IOCTL(KDGETLED)
  695. #ifdef CONFIG_BLOCK
  696. /* Big S */
  697. COMPATIBLE_IOCTL(SCSI_IOCTL_GET_IDLUN)
  698. COMPATIBLE_IOCTL(SCSI_IOCTL_DOORLOCK)
  699. COMPATIBLE_IOCTL(SCSI_IOCTL_DOORUNLOCK)
  700. COMPATIBLE_IOCTL(SCSI_IOCTL_TEST_UNIT_READY)
  701. COMPATIBLE_IOCTL(SCSI_IOCTL_GET_BUS_NUMBER)
  702. COMPATIBLE_IOCTL(SCSI_IOCTL_SEND_COMMAND)
  703. COMPATIBLE_IOCTL(SCSI_IOCTL_PROBE_HOST)
  704. COMPATIBLE_IOCTL(SCSI_IOCTL_GET_PCI)
  705. #endif
  706. /* Big V (don't complain on serial console) */
  707. IGNORE_IOCTL(VT_OPENQRY)
  708. IGNORE_IOCTL(VT_GETMODE)
  709. /* Little p (/dev/rtc, /dev/envctrl, etc.) */
  710. COMPATIBLE_IOCTL(RTC_AIE_ON)
  711. COMPATIBLE_IOCTL(RTC_AIE_OFF)
  712. COMPATIBLE_IOCTL(RTC_UIE_ON)
  713. COMPATIBLE_IOCTL(RTC_UIE_OFF)
  714. COMPATIBLE_IOCTL(RTC_PIE_ON)
  715. COMPATIBLE_IOCTL(RTC_PIE_OFF)
  716. COMPATIBLE_IOCTL(RTC_WIE_ON)
  717. COMPATIBLE_IOCTL(RTC_WIE_OFF)
  718. COMPATIBLE_IOCTL(RTC_ALM_SET)
  719. COMPATIBLE_IOCTL(RTC_ALM_READ)
  720. COMPATIBLE_IOCTL(RTC_RD_TIME)
  721. COMPATIBLE_IOCTL(RTC_SET_TIME)
  722. COMPATIBLE_IOCTL(RTC_WKALM_SET)
  723. COMPATIBLE_IOCTL(RTC_WKALM_RD)
  724. /*
  725. * These two are only for the sbus rtc driver, but
  726. * hwclock tries them on every rtc device first when
  727. * running on sparc. On other architectures the entries
  728. * are useless but harmless.
  729. */
  730. COMPATIBLE_IOCTL(_IOR('p', 20, int[7])) /* RTCGET */
  731. COMPATIBLE_IOCTL(_IOW('p', 21, int[7])) /* RTCSET */
  732. /* Little m */
  733. COMPATIBLE_IOCTL(MTIOCTOP)
  734. /* Socket level stuff */
  735. COMPATIBLE_IOCTL(FIOQSIZE)
  736. #ifdef CONFIG_BLOCK
  737. /* md calls this on random blockdevs */
  738. IGNORE_IOCTL(RAID_VERSION)
  739. /* qemu/qemu-img might call these two on plain files for probing */
  740. IGNORE_IOCTL(CDROM_DRIVE_STATUS)
  741. IGNORE_IOCTL(FDGETPRM32)
  742. /* SG stuff */
  743. COMPATIBLE_IOCTL(SG_SET_TIMEOUT)
  744. COMPATIBLE_IOCTL(SG_GET_TIMEOUT)
  745. COMPATIBLE_IOCTL(SG_EMULATED_HOST)
  746. COMPATIBLE_IOCTL(SG_GET_TRANSFORM)
  747. COMPATIBLE_IOCTL(SG_SET_RESERVED_SIZE)
  748. COMPATIBLE_IOCTL(SG_GET_RESERVED_SIZE)
  749. COMPATIBLE_IOCTL(SG_GET_SCSI_ID)
  750. COMPATIBLE_IOCTL(SG_SET_FORCE_LOW_DMA)
  751. COMPATIBLE_IOCTL(SG_GET_LOW_DMA)
  752. COMPATIBLE_IOCTL(SG_SET_FORCE_PACK_ID)
  753. COMPATIBLE_IOCTL(SG_GET_PACK_ID)
  754. COMPATIBLE_IOCTL(SG_GET_NUM_WAITING)
  755. COMPATIBLE_IOCTL(SG_SET_DEBUG)
  756. COMPATIBLE_IOCTL(SG_GET_SG_TABLESIZE)
  757. COMPATIBLE_IOCTL(SG_GET_COMMAND_Q)
  758. COMPATIBLE_IOCTL(SG_SET_COMMAND_Q)
  759. COMPATIBLE_IOCTL(SG_GET_VERSION_NUM)
  760. COMPATIBLE_IOCTL(SG_NEXT_CMD_LEN)
  761. COMPATIBLE_IOCTL(SG_SCSI_RESET)
  762. COMPATIBLE_IOCTL(SG_GET_REQUEST_TABLE)
  763. COMPATIBLE_IOCTL(SG_SET_KEEP_ORPHAN)
  764. COMPATIBLE_IOCTL(SG_GET_KEEP_ORPHAN)
  765. #endif
  766. /* PPP stuff */
  767. COMPATIBLE_IOCTL(PPPIOCGFLAGS)
  768. COMPATIBLE_IOCTL(PPPIOCSFLAGS)
  769. COMPATIBLE_IOCTL(PPPIOCGASYNCMAP)
  770. COMPATIBLE_IOCTL(PPPIOCSASYNCMAP)
  771. COMPATIBLE_IOCTL(PPPIOCGUNIT)
  772. COMPATIBLE_IOCTL(PPPIOCGRASYNCMAP)
  773. COMPATIBLE_IOCTL(PPPIOCSRASYNCMAP)
  774. COMPATIBLE_IOCTL(PPPIOCGMRU)
  775. COMPATIBLE_IOCTL(PPPIOCSMRU)
  776. COMPATIBLE_IOCTL(PPPIOCSMAXCID)
  777. COMPATIBLE_IOCTL(PPPIOCGXASYNCMAP)
  778. COMPATIBLE_IOCTL(PPPIOCSXASYNCMAP)
  779. COMPATIBLE_IOCTL(PPPIOCXFERUNIT)
  780. /* PPPIOCSCOMPRESS is translated */
  781. COMPATIBLE_IOCTL(PPPIOCGNPMODE)
  782. COMPATIBLE_IOCTL(PPPIOCSNPMODE)
  783. COMPATIBLE_IOCTL(PPPIOCGDEBUG)
  784. COMPATIBLE_IOCTL(PPPIOCSDEBUG)
  785. /* PPPIOCSPASS is translated */
  786. /* PPPIOCSACTIVE is translated */
  787. /* PPPIOCGIDLE is translated */
  788. COMPATIBLE_IOCTL(PPPIOCNEWUNIT)
  789. COMPATIBLE_IOCTL(PPPIOCATTACH)
  790. COMPATIBLE_IOCTL(PPPIOCDETACH)
  791. COMPATIBLE_IOCTL(PPPIOCSMRRU)
  792. COMPATIBLE_IOCTL(PPPIOCCONNECT)
  793. COMPATIBLE_IOCTL(PPPIOCDISCONN)
  794. COMPATIBLE_IOCTL(PPPIOCATTCHAN)
  795. COMPATIBLE_IOCTL(PPPIOCGCHAN)
  796. COMPATIBLE_IOCTL(PPPIOCGL2TPSTATS)
  797. /* Big A */
  798. /* sparc only */
  799. /* Big Q for sound/OSS */
  800. COMPATIBLE_IOCTL(SNDCTL_SEQ_RESET)
  801. COMPATIBLE_IOCTL(SNDCTL_SEQ_SYNC)
  802. COMPATIBLE_IOCTL(SNDCTL_SYNTH_INFO)
  803. COMPATIBLE_IOCTL(SNDCTL_SEQ_CTRLRATE)
  804. COMPATIBLE_IOCTL(SNDCTL_SEQ_GETOUTCOUNT)
  805. COMPATIBLE_IOCTL(SNDCTL_SEQ_GETINCOUNT)
  806. COMPATIBLE_IOCTL(SNDCTL_SEQ_PERCMODE)
  807. COMPATIBLE_IOCTL(SNDCTL_FM_LOAD_INSTR)
  808. COMPATIBLE_IOCTL(SNDCTL_SEQ_TESTMIDI)
  809. COMPATIBLE_IOCTL(SNDCTL_SEQ_RESETSAMPLES)
  810. COMPATIBLE_IOCTL(SNDCTL_SEQ_NRSYNTHS)
  811. COMPATIBLE_IOCTL(SNDCTL_SEQ_NRMIDIS)
  812. COMPATIBLE_IOCTL(SNDCTL_MIDI_INFO)
  813. COMPATIBLE_IOCTL(SNDCTL_SEQ_THRESHOLD)
  814. COMPATIBLE_IOCTL(SNDCTL_SYNTH_MEMAVL)
  815. COMPATIBLE_IOCTL(SNDCTL_FM_4OP_ENABLE)
  816. COMPATIBLE_IOCTL(SNDCTL_SEQ_PANIC)
  817. COMPATIBLE_IOCTL(SNDCTL_SEQ_OUTOFBAND)
  818. COMPATIBLE_IOCTL(SNDCTL_SEQ_GETTIME)
  819. COMPATIBLE_IOCTL(SNDCTL_SYNTH_ID)
  820. COMPATIBLE_IOCTL(SNDCTL_SYNTH_CONTROL)
  821. COMPATIBLE_IOCTL(SNDCTL_SYNTH_REMOVESAMPLE)
  822. /* Big T for sound/OSS */
  823. COMPATIBLE_IOCTL(SNDCTL_TMR_TIMEBASE)
  824. COMPATIBLE_IOCTL(SNDCTL_TMR_START)
  825. COMPATIBLE_IOCTL(SNDCTL_TMR_STOP)
  826. COMPATIBLE_IOCTL(SNDCTL_TMR_CONTINUE)
  827. COMPATIBLE_IOCTL(SNDCTL_TMR_TEMPO)
  828. COMPATIBLE_IOCTL(SNDCTL_TMR_SOURCE)
  829. COMPATIBLE_IOCTL(SNDCTL_TMR_METRONOME)
  830. COMPATIBLE_IOCTL(SNDCTL_TMR_SELECT)
  831. /* Little m for sound/OSS */
  832. COMPATIBLE_IOCTL(SNDCTL_MIDI_PRETIME)
  833. COMPATIBLE_IOCTL(SNDCTL_MIDI_MPUMODE)
  834. COMPATIBLE_IOCTL(SNDCTL_MIDI_MPUCMD)
  835. /* Big P for sound/OSS */
  836. COMPATIBLE_IOCTL(SNDCTL_DSP_RESET)
  837. COMPATIBLE_IOCTL(SNDCTL_DSP_SYNC)
  838. COMPATIBLE_IOCTL(SNDCTL_DSP_SPEED)
  839. COMPATIBLE_IOCTL(SNDCTL_DSP_STEREO)
  840. COMPATIBLE_IOCTL(SNDCTL_DSP_GETBLKSIZE)
  841. COMPATIBLE_IOCTL(SNDCTL_DSP_CHANNELS)
  842. COMPATIBLE_IOCTL(SOUND_PCM_WRITE_FILTER)
  843. COMPATIBLE_IOCTL(SNDCTL_DSP_POST)
  844. COMPATIBLE_IOCTL(SNDCTL_DSP_SUBDIVIDE)
  845. COMPATIBLE_IOCTL(SNDCTL_DSP_SETFRAGMENT)
  846. COMPATIBLE_IOCTL(SNDCTL_DSP_GETFMTS)
  847. COMPATIBLE_IOCTL(SNDCTL_DSP_SETFMT)
  848. COMPATIBLE_IOCTL(SNDCTL_DSP_GETOSPACE)
  849. COMPATIBLE_IOCTL(SNDCTL_DSP_GETISPACE)
  850. COMPATIBLE_IOCTL(SNDCTL_DSP_NONBLOCK)
  851. COMPATIBLE_IOCTL(SNDCTL_DSP_GETCAPS)
  852. COMPATIBLE_IOCTL(SNDCTL_DSP_GETTRIGGER)
  853. COMPATIBLE_IOCTL(SNDCTL_DSP_SETTRIGGER)
  854. COMPATIBLE_IOCTL(SNDCTL_DSP_GETIPTR)
  855. COMPATIBLE_IOCTL(SNDCTL_DSP_GETOPTR)
  856. /* SNDCTL_DSP_MAPINBUF, XXX needs translation */
  857. /* SNDCTL_DSP_MAPOUTBUF, XXX needs translation */
  858. COMPATIBLE_IOCTL(SNDCTL_DSP_SETSYNCRO)
  859. COMPATIBLE_IOCTL(SNDCTL_DSP_SETDUPLEX)
  860. COMPATIBLE_IOCTL(SNDCTL_DSP_GETODELAY)
  861. COMPATIBLE_IOCTL(SNDCTL_DSP_PROFILE)
  862. COMPATIBLE_IOCTL(SOUND_PCM_READ_RATE)
  863. COMPATIBLE_IOCTL(SOUND_PCM_READ_CHANNELS)
  864. COMPATIBLE_IOCTL(SOUND_PCM_READ_BITS)
  865. COMPATIBLE_IOCTL(SOUND_PCM_READ_FILTER)
  866. /* Big C for sound/OSS */
  867. COMPATIBLE_IOCTL(SNDCTL_COPR_RESET)
  868. COMPATIBLE_IOCTL(SNDCTL_COPR_LOAD)
  869. COMPATIBLE_IOCTL(SNDCTL_COPR_RDATA)
  870. COMPATIBLE_IOCTL(SNDCTL_COPR_RCODE)
  871. COMPATIBLE_IOCTL(SNDCTL_COPR_WDATA)
  872. COMPATIBLE_IOCTL(SNDCTL_COPR_WCODE)
  873. COMPATIBLE_IOCTL(SNDCTL_COPR_RUN)
  874. COMPATIBLE_IOCTL(SNDCTL_COPR_HALT)
  875. COMPATIBLE_IOCTL(SNDCTL_COPR_SENDMSG)
  876. COMPATIBLE_IOCTL(SNDCTL_COPR_RCVMSG)
  877. /* Big M for sound/OSS */
  878. COMPATIBLE_IOCTL(SOUND_MIXER_READ_VOLUME)
  879. COMPATIBLE_IOCTL(SOUND_MIXER_READ_BASS)
  880. COMPATIBLE_IOCTL(SOUND_MIXER_READ_TREBLE)
  881. COMPATIBLE_IOCTL(SOUND_MIXER_READ_SYNTH)
  882. COMPATIBLE_IOCTL(SOUND_MIXER_READ_PCM)
  883. COMPATIBLE_IOCTL(SOUND_MIXER_READ_SPEAKER)
  884. COMPATIBLE_IOCTL(SOUND_MIXER_READ_LINE)
  885. COMPATIBLE_IOCTL(SOUND_MIXER_READ_MIC)
  886. COMPATIBLE_IOCTL(SOUND_MIXER_READ_CD)
  887. COMPATIBLE_IOCTL(SOUND_MIXER_READ_IMIX)
  888. COMPATIBLE_IOCTL(SOUND_MIXER_READ_ALTPCM)
  889. COMPATIBLE_IOCTL(SOUND_MIXER_READ_RECLEV)
  890. COMPATIBLE_IOCTL(SOUND_MIXER_READ_IGAIN)
  891. COMPATIBLE_IOCTL(SOUND_MIXER_READ_OGAIN)
  892. COMPATIBLE_IOCTL(SOUND_MIXER_READ_LINE1)
  893. COMPATIBLE_IOCTL(SOUND_MIXER_READ_LINE2)
  894. COMPATIBLE_IOCTL(SOUND_MIXER_READ_LINE3)
  895. COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_DIGITAL1))
  896. COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_DIGITAL2))
  897. COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_DIGITAL3))
  898. COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_PHONEIN))
  899. COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_PHONEOUT))
  900. COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_VIDEO))
  901. COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_RADIO))
  902. COMPATIBLE_IOCTL(MIXER_READ(SOUND_MIXER_MONITOR))
  903. COMPATIBLE_IOCTL(SOUND_MIXER_READ_MUTE)
  904. /* SOUND_MIXER_READ_ENHANCE, same value as READ_MUTE */
  905. /* SOUND_MIXER_READ_LOUD, same value as READ_MUTE */
  906. COMPATIBLE_IOCTL(SOUND_MIXER_READ_RECSRC)
  907. COMPATIBLE_IOCTL(SOUND_MIXER_READ_DEVMASK)
  908. COMPATIBLE_IOCTL(SOUND_MIXER_READ_RECMASK)
  909. COMPATIBLE_IOCTL(SOUND_MIXER_READ_STEREODEVS)
  910. COMPATIBLE_IOCTL(SOUND_MIXER_READ_CAPS)
  911. COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_VOLUME)
  912. COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_BASS)
  913. COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_TREBLE)
  914. COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_SYNTH)
  915. COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_PCM)
  916. COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_SPEAKER)
  917. COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_LINE)
  918. COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_MIC)
  919. COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_CD)
  920. COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_IMIX)
  921. COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_ALTPCM)
  922. COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_RECLEV)
  923. COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_IGAIN)
  924. COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_OGAIN)
  925. COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_LINE1)
  926. COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_LINE2)
  927. COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_LINE3)
  928. COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_DIGITAL1))
  929. COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_DIGITAL2))
  930. COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_DIGITAL3))
  931. COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_PHONEIN))
  932. COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_PHONEOUT))
  933. COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_VIDEO))
  934. COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_RADIO))
  935. COMPATIBLE_IOCTL(MIXER_WRITE(SOUND_MIXER_MONITOR))
  936. COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_MUTE)
  937. /* SOUND_MIXER_WRITE_ENHANCE, same value as WRITE_MUTE */
  938. /* SOUND_MIXER_WRITE_LOUD, same value as WRITE_MUTE */
  939. COMPATIBLE_IOCTL(SOUND_MIXER_WRITE_RECSRC)
  940. COMPATIBLE_IOCTL(SOUND_MIXER_INFO)
  941. COMPATIBLE_IOCTL(SOUND_OLD_MIXER_INFO)
  942. COMPATIBLE_IOCTL(SOUND_MIXER_ACCESS)
  943. COMPATIBLE_IOCTL(SOUND_MIXER_AGC)
  944. COMPATIBLE_IOCTL(SOUND_MIXER_3DSE)
  945. COMPATIBLE_IOCTL(SOUND_MIXER_PRIVATE1)
  946. COMPATIBLE_IOCTL(SOUND_MIXER_PRIVATE2)
  947. COMPATIBLE_IOCTL(SOUND_MIXER_PRIVATE3)
  948. COMPATIBLE_IOCTL(SOUND_MIXER_PRIVATE4)
  949. COMPATIBLE_IOCTL(SOUND_MIXER_PRIVATE5)
  950. COMPATIBLE_IOCTL(SOUND_MIXER_GETLEVELS)
  951. COMPATIBLE_IOCTL(SOUND_MIXER_SETLEVELS)
  952. COMPATIBLE_IOCTL(OSS_GETVERSION)
  953. /* Raw devices */
  954. COMPATIBLE_IOCTL(RAW_SETBIND)
  955. COMPATIBLE_IOCTL(RAW_GETBIND)
  956. /* Watchdog */
  957. COMPATIBLE_IOCTL(WDIOC_GETSUPPORT)
  958. COMPATIBLE_IOCTL(WDIOC_GETSTATUS)
  959. COMPATIBLE_IOCTL(WDIOC_GETBOOTSTATUS)
  960. COMPATIBLE_IOCTL(WDIOC_GETTEMP)
  961. COMPATIBLE_IOCTL(WDIOC_SETOPTIONS)
  962. COMPATIBLE_IOCTL(WDIOC_KEEPALIVE)
  963. COMPATIBLE_IOCTL(WDIOC_SETTIMEOUT)
  964. COMPATIBLE_IOCTL(WDIOC_GETTIMEOUT)
  965. COMPATIBLE_IOCTL(WDIOC_SETPRETIMEOUT)
  966. COMPATIBLE_IOCTL(WDIOC_GETPRETIMEOUT)
  967. /* Big R */
  968. COMPATIBLE_IOCTL(RNDGETENTCNT)
  969. COMPATIBLE_IOCTL(RNDADDTOENTCNT)
  970. COMPATIBLE_IOCTL(RNDGETPOOL)
  971. COMPATIBLE_IOCTL(RNDADDENTROPY)
  972. COMPATIBLE_IOCTL(RNDZAPENTCNT)
  973. COMPATIBLE_IOCTL(RNDCLEARPOOL)
  974. /* Bluetooth */
  975. COMPATIBLE_IOCTL(HCIDEVUP)
  976. COMPATIBLE_IOCTL(HCIDEVDOWN)
  977. COMPATIBLE_IOCTL(HCIDEVRESET)
  978. COMPATIBLE_IOCTL(HCIDEVRESTAT)
  979. COMPATIBLE_IOCTL(HCIGETDEVLIST)
  980. COMPATIBLE_IOCTL(HCIGETDEVINFO)
  981. COMPATIBLE_IOCTL(HCIGETCONNLIST)
  982. COMPATIBLE_IOCTL(HCIGETCONNINFO)
  983. COMPATIBLE_IOCTL(HCIGETAUTHINFO)
  984. COMPATIBLE_IOCTL(HCISETRAW)
  985. COMPATIBLE_IOCTL(HCISETSCAN)
  986. COMPATIBLE_IOCTL(HCISETAUTH)
  987. COMPATIBLE_IOCTL(HCISETENCRYPT)
  988. COMPATIBLE_IOCTL(HCISETPTYPE)
  989. COMPATIBLE_IOCTL(HCISETLINKPOL)
  990. COMPATIBLE_IOCTL(HCISETLINKMODE)
  991. COMPATIBLE_IOCTL(HCISETACLMTU)
  992. COMPATIBLE_IOCTL(HCISETSCOMTU)
  993. COMPATIBLE_IOCTL(HCIBLOCKADDR)
  994. COMPATIBLE_IOCTL(HCIUNBLOCKADDR)
  995. COMPATIBLE_IOCTL(HCIINQUIRY)
  996. COMPATIBLE_IOCTL(HCIUARTSETPROTO)
  997. COMPATIBLE_IOCTL(HCIUARTGETPROTO)
  998. COMPATIBLE_IOCTL(HCIUARTGETDEVICE)
  999. COMPATIBLE_IOCTL(HCIUARTSETFLAGS)
  1000. COMPATIBLE_IOCTL(HCIUARTGETFLAGS)
  1001. COMPATIBLE_IOCTL(RFCOMMCREATEDEV)
  1002. COMPATIBLE_IOCTL(RFCOMMRELEASEDEV)
  1003. COMPATIBLE_IOCTL(RFCOMMGETDEVLIST)
  1004. COMPATIBLE_IOCTL(RFCOMMGETDEVINFO)
  1005. COMPATIBLE_IOCTL(RFCOMMSTEALDLC)
  1006. COMPATIBLE_IOCTL(BNEPCONNADD)
  1007. COMPATIBLE_IOCTL(BNEPCONNDEL)
  1008. COMPATIBLE_IOCTL(BNEPGETCONNLIST)
  1009. COMPATIBLE_IOCTL(BNEPGETCONNINFO)
  1010. COMPATIBLE_IOCTL(BNEPGETSUPPFEAT)
  1011. COMPATIBLE_IOCTL(CMTPCONNADD)
  1012. COMPATIBLE_IOCTL(CMTPCONNDEL)
  1013. COMPATIBLE_IOCTL(CMTPGETCONNLIST)
  1014. COMPATIBLE_IOCTL(CMTPGETCONNINFO)
  1015. COMPATIBLE_IOCTL(HIDPCONNADD)
  1016. COMPATIBLE_IOCTL(HIDPCONNDEL)
  1017. COMPATIBLE_IOCTL(HIDPGETCONNLIST)
  1018. COMPATIBLE_IOCTL(HIDPGETCONNINFO)
  1019. /* CAPI */
  1020. COMPATIBLE_IOCTL(CAPI_REGISTER)
  1021. COMPATIBLE_IOCTL(CAPI_GET_MANUFACTURER)
  1022. COMPATIBLE_IOCTL(CAPI_GET_VERSION)
  1023. COMPATIBLE_IOCTL(CAPI_GET_SERIAL)
  1024. COMPATIBLE_IOCTL(CAPI_GET_PROFILE)
  1025. COMPATIBLE_IOCTL(CAPI_MANUFACTURER_CMD)
  1026. COMPATIBLE_IOCTL(CAPI_GET_ERRCODE)
  1027. COMPATIBLE_IOCTL(CAPI_INSTALLED)
  1028. COMPATIBLE_IOCTL(CAPI_GET_FLAGS)
  1029. COMPATIBLE_IOCTL(CAPI_SET_FLAGS)
  1030. COMPATIBLE_IOCTL(CAPI_CLR_FLAGS)
  1031. COMPATIBLE_IOCTL(CAPI_NCCI_OPENCOUNT)
  1032. COMPATIBLE_IOCTL(CAPI_NCCI_GETUNIT)
  1033. /* Siemens Gigaset */
  1034. COMPATIBLE_IOCTL(GIGASET_REDIR)
  1035. COMPATIBLE_IOCTL(GIGASET_CONFIG)
  1036. COMPATIBLE_IOCTL(GIGASET_BRKCHARS)
  1037. COMPATIBLE_IOCTL(GIGASET_VERSION)
  1038. /* Misc. */
  1039. COMPATIBLE_IOCTL(0x41545900) /* ATYIO_CLKR */
  1040. COMPATIBLE_IOCTL(0x41545901) /* ATYIO_CLKW */
  1041. COMPATIBLE_IOCTL(PCIIOC_CONTROLLER)
  1042. COMPATIBLE_IOCTL(PCIIOC_MMAP_IS_IO)
  1043. COMPATIBLE_IOCTL(PCIIOC_MMAP_IS_MEM)
  1044. COMPATIBLE_IOCTL(PCIIOC_WRITE_COMBINE)
  1045. /* hiddev */
  1046. COMPATIBLE_IOCTL(HIDIOCGVERSION)
  1047. COMPATIBLE_IOCTL(HIDIOCAPPLICATION)
  1048. COMPATIBLE_IOCTL(HIDIOCGDEVINFO)
  1049. COMPATIBLE_IOCTL(HIDIOCGSTRING)
  1050. COMPATIBLE_IOCTL(HIDIOCINITREPORT)
  1051. COMPATIBLE_IOCTL(HIDIOCGREPORT)
  1052. COMPATIBLE_IOCTL(HIDIOCSREPORT)
  1053. COMPATIBLE_IOCTL(HIDIOCGREPORTINFO)
  1054. COMPATIBLE_IOCTL(HIDIOCGFIELDINFO)
  1055. COMPATIBLE_IOCTL(HIDIOCGUSAGE)
  1056. COMPATIBLE_IOCTL(HIDIOCSUSAGE)
  1057. COMPATIBLE_IOCTL(HIDIOCGUCODE)
  1058. COMPATIBLE_IOCTL(HIDIOCGFLAG)
  1059. COMPATIBLE_IOCTL(HIDIOCSFLAG)
  1060. COMPATIBLE_IOCTL(HIDIOCGCOLLECTIONINDEX)
  1061. COMPATIBLE_IOCTL(HIDIOCGCOLLECTIONINFO)
  1062. /* dvb */
  1063. COMPATIBLE_IOCTL(AUDIO_STOP)
  1064. COMPATIBLE_IOCTL(AUDIO_PLAY)
  1065. COMPATIBLE_IOCTL(AUDIO_PAUSE)
  1066. COMPATIBLE_IOCTL(AUDIO_CONTINUE)
  1067. COMPATIBLE_IOCTL(AUDIO_SELECT_SOURCE)
  1068. COMPATIBLE_IOCTL(AUDIO_SET_MUTE)
  1069. COMPATIBLE_IOCTL(AUDIO_SET_AV_SYNC)
  1070. COMPATIBLE_IOCTL(AUDIO_SET_BYPASS_MODE)
  1071. COMPATIBLE_IOCTL(AUDIO_CHANNEL_SELECT)
  1072. COMPATIBLE_IOCTL(AUDIO_GET_STATUS)
  1073. COMPATIBLE_IOCTL(AUDIO_GET_CAPABILITIES)
  1074. COMPATIBLE_IOCTL(AUDIO_CLEAR_BUFFER)
  1075. COMPATIBLE_IOCTL(AUDIO_SET_ID)
  1076. COMPATIBLE_IOCTL(AUDIO_SET_MIXER)
  1077. COMPATIBLE_IOCTL(AUDIO_SET_STREAMTYPE)
  1078. COMPATIBLE_IOCTL(DMX_START)
  1079. COMPATIBLE_IOCTL(DMX_STOP)
  1080. COMPATIBLE_IOCTL(DMX_SET_FILTER)
  1081. COMPATIBLE_IOCTL(DMX_SET_PES_FILTER)
  1082. COMPATIBLE_IOCTL(DMX_SET_BUFFER_SIZE)
  1083. COMPATIBLE_IOCTL(DMX_GET_PES_PIDS)
  1084. COMPATIBLE_IOCTL(DMX_GET_STC)
  1085. COMPATIBLE_IOCTL(DMX_REQBUFS)
  1086. COMPATIBLE_IOCTL(DMX_QUERYBUF)
  1087. COMPATIBLE_IOCTL(DMX_EXPBUF)
  1088. COMPATIBLE_IOCTL(DMX_QBUF)
  1089. COMPATIBLE_IOCTL(DMX_DQBUF)
  1090. COMPATIBLE_IOCTL(VIDEO_STOP)
  1091. COMPATIBLE_IOCTL(VIDEO_PLAY)
  1092. COMPATIBLE_IOCTL(VIDEO_FREEZE)
  1093. COMPATIBLE_IOCTL(VIDEO_CONTINUE)
  1094. COMPATIBLE_IOCTL(VIDEO_SELECT_SOURCE)
  1095. COMPATIBLE_IOCTL(VIDEO_SET_BLANK)
  1096. COMPATIBLE_IOCTL(VIDEO_GET_STATUS)
  1097. COMPATIBLE_IOCTL(VIDEO_SET_DISPLAY_FORMAT)
  1098. COMPATIBLE_IOCTL(VIDEO_FAST_FORWARD)
  1099. COMPATIBLE_IOCTL(VIDEO_SLOWMOTION)
  1100. COMPATIBLE_IOCTL(VIDEO_GET_CAPABILITIES)
  1101. COMPATIBLE_IOCTL(VIDEO_CLEAR_BUFFER)
  1102. COMPATIBLE_IOCTL(VIDEO_SET_STREAMTYPE)
  1103. COMPATIBLE_IOCTL(VIDEO_SET_FORMAT)
  1104. COMPATIBLE_IOCTL(VIDEO_GET_SIZE)
  1105. /* cec */
  1106. COMPATIBLE_IOCTL(CEC_ADAP_G_CAPS)
  1107. COMPATIBLE_IOCTL(CEC_ADAP_G_LOG_ADDRS)
  1108. COMPATIBLE_IOCTL(CEC_ADAP_S_LOG_ADDRS)
  1109. COMPATIBLE_IOCTL(CEC_ADAP_G_PHYS_ADDR)
  1110. COMPATIBLE_IOCTL(CEC_ADAP_S_PHYS_ADDR)
  1111. COMPATIBLE_IOCTL(CEC_G_MODE)
  1112. COMPATIBLE_IOCTL(CEC_S_MODE)
  1113. COMPATIBLE_IOCTL(CEC_TRANSMIT)
  1114. COMPATIBLE_IOCTL(CEC_RECEIVE)
  1115. COMPATIBLE_IOCTL(CEC_DQEVENT)
  1116. /* joystick */
  1117. COMPATIBLE_IOCTL(JSIOCGVERSION)
  1118. COMPATIBLE_IOCTL(JSIOCGAXES)
  1119. COMPATIBLE_IOCTL(JSIOCGBUTTONS)
  1120. COMPATIBLE_IOCTL(JSIOCGNAME(0))
  1121. #ifdef TIOCGLTC
  1122. COMPATIBLE_IOCTL(TIOCGLTC)
  1123. COMPATIBLE_IOCTL(TIOCSLTC)
  1124. #endif
  1125. #ifdef TIOCSTART
  1126. /*
  1127. * For these two we have definitions in ioctls.h and/or termios.h on
  1128. * some architectures but no actual implemention. Some applications
  1129. * like bash call them if they are defined in the headers, so we provide
  1130. * entries here to avoid syslog message spew.
  1131. */
  1132. COMPATIBLE_IOCTL(TIOCSTART)
  1133. COMPATIBLE_IOCTL(TIOCSTOP)
  1134. #endif
  1135. /* fat 'r' ioctls. These are handled by fat with ->compat_ioctl,
  1136. but we don't want warnings on other file systems. So declare
  1137. them as compatible here. */
  1138. #define VFAT_IOCTL_READDIR_BOTH32 _IOR('r', 1, struct compat_dirent[2])
  1139. #define VFAT_IOCTL_READDIR_SHORT32 _IOR('r', 2, struct compat_dirent[2])
  1140. IGNORE_IOCTL(VFAT_IOCTL_READDIR_BOTH32)
  1141. IGNORE_IOCTL(VFAT_IOCTL_READDIR_SHORT32)
  1142. #ifdef CONFIG_SPARC
  1143. /* Sparc framebuffers, handled in sbusfb_compat_ioctl() */
  1144. IGNORE_IOCTL(FBIOGTYPE)
  1145. IGNORE_IOCTL(FBIOSATTR)
  1146. IGNORE_IOCTL(FBIOGATTR)
  1147. IGNORE_IOCTL(FBIOSVIDEO)
  1148. IGNORE_IOCTL(FBIOGVIDEO)
  1149. IGNORE_IOCTL(FBIOSCURPOS)
  1150. IGNORE_IOCTL(FBIOGCURPOS)
  1151. IGNORE_IOCTL(FBIOGCURMAX)
  1152. IGNORE_IOCTL(FBIOPUTCMAP32)
  1153. IGNORE_IOCTL(FBIOGETCMAP32)
  1154. IGNORE_IOCTL(FBIOSCURSOR32)
  1155. IGNORE_IOCTL(FBIOGCURSOR32)
  1156. #endif
  1157. };
  1158. /*
  1159. * Convert common ioctl arguments based on their command number
  1160. *
  1161. * Please do not add any code in here. Instead, implement
  1162. * a compat_ioctl operation in the place that handleѕ the
  1163. * ioctl for the native case.
  1164. */
  1165. static long do_ioctl_trans(unsigned int cmd,
  1166. unsigned long arg, struct file *file)
  1167. {
  1168. void __user *argp = compat_ptr(arg);
  1169. switch (cmd) {
  1170. case PPPIOCGIDLE32:
  1171. return ppp_gidle(file, cmd, argp);
  1172. case PPPIOCSCOMPRESS32:
  1173. return ppp_scompress(file, cmd, argp);
  1174. case PPPIOCSPASS32:
  1175. case PPPIOCSACTIVE32:
  1176. return ppp_sock_fprog_ioctl_trans(file, cmd, argp);
  1177. #ifdef CONFIG_BLOCK
  1178. case SG_IO:
  1179. return sg_ioctl_trans(file, cmd, argp);
  1180. case SG_GET_REQUEST_TABLE:
  1181. return sg_grt_trans(file, cmd, argp);
  1182. case MTIOCGET32:
  1183. case MTIOCPOS32:
  1184. return mt_ioctl_trans(file, cmd, argp);
  1185. #endif
  1186. /* Serial */
  1187. case TIOCGSERIAL:
  1188. case TIOCSSERIAL:
  1189. return serial_struct_ioctl(file, cmd, argp);
  1190. /* Not implemented in the native kernel */
  1191. case RTC_IRQP_READ32:
  1192. case RTC_IRQP_SET32:
  1193. case RTC_EPOCH_READ32:
  1194. case RTC_EPOCH_SET32:
  1195. return rtc_ioctl(file, cmd, argp);
  1196. /* dvb */
  1197. case VIDEO_GET_EVENT32:
  1198. return do_video_get_event(file, cmd, argp);
  1199. case VIDEO_STILLPICTURE32:
  1200. return do_video_stillpicture(file, cmd, argp);
  1201. }
  1202. /*
  1203. * These take an integer instead of a pointer as 'arg',
  1204. * so we must not do a compat_ptr() translation.
  1205. */
  1206. switch (cmd) {
  1207. /* Big T */
  1208. case TCSBRKP:
  1209. case TIOCMIWAIT:
  1210. case TIOCSCTTY:
  1211. /* RAID */
  1212. case HOT_REMOVE_DISK:
  1213. case HOT_ADD_DISK:
  1214. case SET_DISK_FAULTY:
  1215. case SET_BITMAP_FILE:
  1216. /* Big K */
  1217. case KDSIGACCEPT:
  1218. case KIOCSOUND:
  1219. case KDMKTONE:
  1220. case KDSETMODE:
  1221. case KDSKBMODE:
  1222. case KDSKBMETA:
  1223. case KDSKBLED:
  1224. case KDSETLED:
  1225. return vfs_ioctl(file, cmd, arg);
  1226. }
  1227. return -ENOIOCTLCMD;
  1228. }
  1229. static int compat_ioctl_check_table(unsigned int xcmd)
  1230. {
  1231. int i;
  1232. const int max = ARRAY_SIZE(ioctl_pointer) - 1;
  1233. BUILD_BUG_ON(max >= (1 << 16));
  1234. /* guess initial offset into table, assuming a
  1235. normalized distribution */
  1236. i = ((xcmd >> 16) * max) >> 16;
  1237. /* do linear search up first, until greater or equal */
  1238. while (ioctl_pointer[i] < xcmd && i < max)
  1239. i++;
  1240. /* then do linear search down */
  1241. while (ioctl_pointer[i] > xcmd && i > 0)
  1242. i--;
  1243. return ioctl_pointer[i] == xcmd;
  1244. }
  1245. COMPAT_SYSCALL_DEFINE3(ioctl, unsigned int, fd, unsigned int, cmd,
  1246. compat_ulong_t, arg32)
  1247. {
  1248. unsigned long arg = arg32;
  1249. struct fd f = fdget(fd);
  1250. int error = -EBADF;
  1251. if (!f.file)
  1252. goto out;
  1253. /* RED-PEN how should LSM module know it's handling 32bit? */
  1254. error = security_file_ioctl(f.file, cmd, arg);
  1255. if (error)
  1256. goto out_fput;
  1257. /*
  1258. * To allow the compat_ioctl handlers to be self contained
  1259. * we need to check the common ioctls here first.
  1260. * Just handle them with the standard handlers below.
  1261. */
  1262. switch (cmd) {
  1263. case FIOCLEX:
  1264. case FIONCLEX:
  1265. case FIONBIO:
  1266. case FIOASYNC:
  1267. case FIOQSIZE:
  1268. break;
  1269. #if defined(CONFIG_IA64) || defined(CONFIG_X86_64)
  1270. case FS_IOC_RESVSP_32:
  1271. case FS_IOC_RESVSP64_32:
  1272. error = compat_ioctl_preallocate(f.file, compat_ptr(arg));
  1273. goto out_fput;
  1274. #else
  1275. case FS_IOC_RESVSP:
  1276. case FS_IOC_RESVSP64:
  1277. error = ioctl_preallocate(f.file, compat_ptr(arg));
  1278. goto out_fput;
  1279. #endif
  1280. case FICLONE:
  1281. goto do_ioctl;
  1282. case FICLONERANGE:
  1283. case FIDEDUPERANGE:
  1284. case FS_IOC_FIEMAP:
  1285. goto found_handler;
  1286. case FIBMAP:
  1287. case FIGETBSZ:
  1288. case FIONREAD:
  1289. if (S_ISREG(file_inode(f.file)->i_mode))
  1290. break;
  1291. /*FALL THROUGH*/
  1292. default:
  1293. if (f.file->f_op->compat_ioctl) {
  1294. error = f.file->f_op->compat_ioctl(f.file, cmd, arg);
  1295. if (error != -ENOIOCTLCMD)
  1296. goto out_fput;
  1297. }
  1298. if (!f.file->f_op->unlocked_ioctl)
  1299. goto do_ioctl;
  1300. break;
  1301. }
  1302. if (compat_ioctl_check_table(XFORM(cmd)))
  1303. goto found_handler;
  1304. error = do_ioctl_trans(cmd, arg, f.file);
  1305. if (error == -ENOIOCTLCMD)
  1306. error = -ENOTTY;
  1307. goto out_fput;
  1308. found_handler:
  1309. arg = (unsigned long)compat_ptr(arg);
  1310. do_ioctl:
  1311. error = do_vfs_ioctl(f.file, fd, cmd, arg);
  1312. out_fput:
  1313. fdput(f);
  1314. out:
  1315. return error;
  1316. }
  1317. static int __init init_sys32_ioctl_cmp(const void *p, const void *q)
  1318. {
  1319. 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;
  1327. }
  1328. static int __init init_sys32_ioctl(void)
  1329. {
  1330. sort(ioctl_pointer, ARRAY_SIZE(ioctl_pointer), sizeof(*ioctl_pointer),
  1331. init_sys32_ioctl_cmp, NULL);
  1332. return 0;
  1333. }
  1334. __initcall(init_sys32_ioctl);