compat_ioctl.c 46 KB

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