compat_ioctl.c 45 KB

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