compat_ioctl.c 45 KB

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