compat_ioctl.c 49 KB

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