OSDN Git Service

LDP: Update original to LDP v3.68
[linuxjm/LDP_man-pages.git] / original / man2 / ioctl_list.2
1 .\" Ioctl List 1.3.27 is copyright 1995 by Michael Elizabeth Chastain.
2 .\" Michael Elizabeth Chastain
3 .\" <mec@duracef.shout.net>
4 .\"
5 .\" %%%LICENSE_START(GPLv2_MISC)
6 .\" It is licensed under the Gnu Public License, Version 2.
7 .\" %%%LICENSE_END
8 .\"
9 .\" Ioctl List 1.3.27
10 .\" Sun 17 Sep 1995
11 .\"
12 .\" // Copyright
13 .\"
14 .\"
15 .\"
16 .\" // Change Log
17 .\"
18 .\" 1.3.27      421 ioctls.
19 .\"     Type information for non-pointer args.
20 .\"     SIOCDEVPRIVATE, SIOCPROTOPRIVATE ioctls.
21 .\"     Descriptions of extended arguments.
22 .\"
23 .\" 1.2.9       365 ioctls.
24 .\"     First public version.
25 .\"
26 .\"
27 .\" 2007-12-29 Alain Portal <aportal@univ-montp2.fr> and Michael Kerrisk
28 .\"     <mtk.manpages@gmail.com>:
29 .\"          Various formatting improvements
30 .TH IOCTL_LIST 2 2013-09-17 "Linux" "Linux Programmer's Manual"
31 .SH NAME
32 ioctl_list \- list of ioctl calls in Linux/i386 kernel
33 .SH DESCRIPTION
34 This is Ioctl List 1.3.27, a list of ioctl calls in Linux/i386 kernel
35 1.3.27.
36 It contains 421 ioctls from
37 .IR </usr/include/{asm,linux}/*.h> .
38 For each ioctl, its numerical value, its name, and its argument
39 type are given.
40 .PP
41 An argument type of
42 .I "const struct foo\ *"
43 means the argument is input to the kernel.
44 .I "struct foo\ *"
45 means the kernel outputs the argument.
46 If the kernel uses the argument for both input and output, this is
47 marked with \fI//\ I-O\fP.
48 .PP
49 Some ioctls take more arguments or return more values than a single
50 structure.
51 These are marked \fI//\ MORE\fP and documented further in a
52 separate section.
53 .PP
54 This list is very incomplete.
55 .SS ioctl structure
56 .\" added two sections - aeb
57 Ioctl command values are 32-bit constants.
58 In principle these constants are completely arbitrary, but people have
59 tried to build some structure into them.
60 .LP
61 The old Linux situation was that of mostly 16-bit constants, where the
62 last byte is a serial number, and the preceding byte(s) give a type
63 indicating the driver.
64 Sometimes the major number was used: 0x03
65 for the
66 .B HDIO_*
67 ioctls, 0x06 for the
68 .B LP*
69 ioctls.
70 And sometimes
71 one or more ASCII letters were used.
72 For example,
73 .B TCGETS
74 has value
75 0x00005401, with 0x54 = \(aqT\(aq indicating the terminal driver, and
76 .B CYGETTIMEOUT
77 has value 0x00435906, with 0x43 0x59 = \(aqC\(aq \(aqY\(aq
78 indicating the cyclades driver.
79 .LP
80 Later (0.98p5) some more information was built into the number.
81 One has 2 direction bits
82 (00: none, 01: write, 10: read, 11: read/write)
83 followed by 14 size bits (giving the size of the argument),
84 followed by an 8-bit type (collecting the ioctls in groups
85 for a common purpose or a common driver), and an 8-bit
86 serial number.
87 .LP
88 The macros describing this structure live in
89 .I <asm/ioctl.h>
90 and are
91 .B _IO(type,nr)
92 and
93 .BR "{_IOR,_IOW,_IOWR}(type,nr,size)" .
94 They use
95 .I sizeof(size)
96 so that size is a
97 misnomer here: this third argument is a data type.
98 .LP
99 Note that the size bits are very unreliable: in lots of cases
100 they are wrong, either because of buggy macros using
101 .IR sizeof(sizeof(struct)) ,
102 or because of legacy values.
103 .LP
104 Thus, it seems that the new structure only gave disadvantages:
105 it does not help in checking, but it causes varying values
106 for the various architectures.
107 .SH RETURN VALUE
108 Decent ioctls return 0 on success and \-1 on error, while
109 any output value is stored via the argument.
110 However,
111 quite a few ioctls in fact return an output value.
112 This is not yet indicated below.
113
114 // Main table.
115
116 // <include/asm-i386/socket.h>
117 .TS
118 l l l.
119 0x00008901      FIOSETOWN       const int *
120 0x00008902      SIOCSPGRP       const int *
121 0x00008903      FIOGETOWN       int *
122 0x00008904      SIOCGPGRP       int *
123 0x00008905      SIOCATMAR       int *
124 0x00008906      SIOCGSTAMP      timeval *
125 .TE
126
127 // <include/asm-i386/termios.h>
128 .TS
129 l l l l.
130 0x00005401      TCGETS  struct termios *
131 0x00005402      TCSETS  const struct termios *
132 0x00005403      TCSETSW const struct termios *
133 0x00005404      TCSETSF const struct termios *
134 0x00005405      TCGETA  struct termio *
135 0x00005406      TCSETA  const struct termio *
136 0x00005407      TCSETAW const struct termio *
137 0x00005408      TCSETAF const struct termio *
138 0x00005409      TCSBRK  int
139 0x0000540A      TCXONC  int
140 0x0000540B      TCFLSH  int
141 0x0000540C      TIOCEXCL        void
142 0x0000540D      TIOCNXCL        void
143 0x0000540E      TIOCSCTTY       int
144 0x0000540F      TIOCGPGRP       pid_t *
145 0x00005410      TIOCSPGRP       const pid_t *
146 0x00005411      TIOCOUTQ        int *
147 0x00005412      TIOCSTI const char *
148 0x00005413      TIOCGWINSZ      struct winsize *
149 0x00005414      TIOCSWINSZ      const struct winsize *
150 0x00005415      TIOCMGET        int *
151 0x00005416      TIOCMBIS        const int *
152 0x00005417      TIOCMBIC        const int *
153 0x00005418      TIOCMSET        const int *
154 0x00005419      TIOCGSOFTCAR    int *
155 0x0000541A      TIOCSSOFTCAR    const int *
156 0x0000541B      FIONREAD        int *
157 0x0000541B      TIOCINQ int *
158 0x0000541C      TIOCLINUX       const char *    // MORE
159 0x0000541D      TIOCCONS        void
160 0x0000541E      TIOCGSERIAL     struct serial_struct *
161 0x0000541F      TIOCSSERIAL     const struct serial_struct *
162 0x00005420      TIOCPKT const int *
163 0x00005421      FIONBIO const int *
164 0x00005422      TIOCNOTTY       void
165 0x00005423      TIOCSETD        const int *
166 0x00005424      TIOCGETD        int *
167 0x00005425      TCSBRKP int
168 0x00005426      TIOCTTYGSTRUCT  struct tty_struct *
169 0x00005450      FIONCLEX        void
170 0x00005451      FIOCLEX void
171 0x00005452      FIOASYNC        const int *
172 0x00005453      TIOCSERCONFIG   void
173 0x00005454      TIOCSERGWILD    int *
174 0x00005455      TIOCSERSWILD    const int *
175 0x00005456      TIOCGLCKTRMIOS  struct termios *
176 0x00005457      TIOCSLCKTRMIOS  const struct termios *
177 0x00005458      TIOCSERGSTRUCT  struct async_struct *
178 0x00005459      TIOCSERGETLSR   int *
179 .TE
180 .\" Some tables are split into two or more to avoid the warning:
181 .\" "table wider than line width".  Some lines are to long to fit
182 .\" on one line on an 80 columns console
183 .TS
184 l l l.
185 0x0000545A      TIOCSERGETMULTI struct serial_multiport_struct *
186 0x0000545B      TIOCSERSETMULTI const struct serial_multiport_struct *
187 .TE
188
189 // <include/linux/ax25.h>
190 .TS
191 l l l l.
192 0x000089E0      SIOCAX25GETUID  const struct sockaddr_ax25 *
193 0x000089E1      SIOCAX25ADDUID  const struct sockaddr_ax25 *
194 0x000089E2      SIOCAX25DELUID  const struct sockaddr_ax25 *
195 0x000089E3      SIOCAX25NOUID   const int *
196 0x000089E4      SIOCAX25DIGCTL  const int *
197 0x000089E5      SIOCAX25GETPARMS        struct ax25_parms_struct *      // I-O
198 .TE
199 .TS
200 l l l.
201 0x000089E6      SIOCAX25SETPARMS        const struct ax25_parms_struct *
202 .TE
203
204 // <include/linux/cdk.h>
205 .TS
206 l l l.
207 0x00007314      STL_BINTR       void
208 0x00007315      STL_BSTART      void
209 0x00007316      STL_BSTOP       void
210 0x00007317      STL_BRESET      void
211 .TE
212
213 // <include/linux/cdrom.h>
214 .TS
215 l l l.
216 0x00005301      CDROMPAUSE      void
217 0x00005302      CDROMRESUME     void
218 0x00005303      CDROMPLAYMSF    const struct cdrom_msf *
219 0x00005304      CDROMPLAYTRKIND const struct cdrom_ti *
220 0x00005305      CDROMREADTOCHDR struct cdrom_tochdr *
221 .TE
222 .TS
223 l l l l.
224 0x00005306      CDROMREADTOCENTRY       struct cdrom_tocentry * // I-O
225 .TE
226 .TS
227 l l l l.
228 0x00005307      CDROMSTOP       void
229 0x00005308      CDROMSTART      void
230 0x00005309      CDROMEJECT      void
231 0x0000530A      CDROMVOLCTRL    const struct cdrom_volctrl *
232 0x0000530B      CDROMSUBCHNL    struct cdrom_subchnl *  // I-O
233 0x0000530C      CDROMREADMODE2  const struct cdrom_msf *        // MORE
234 0x0000530D      CDROMREADMODE1  const struct cdrom_msf *        // MORE
235 0x0000530E      CDROMREADAUDIO  const struct cdrom_read_audio * // MORE
236 0x0000530F      CDROMEJECT_SW   int
237 .TE
238 .TS
239 l l l l.
240 0x00005310      CDROMMULTISESSION       struct cdrom_multisession *     // I-O
241 .TE
242 .TS
243 l l l l.
244 0x00005311      CDROM_GET_UPC   struct { char [8]; } *
245 0x00005312      CDROMRESET      void
246 0x00005313      CDROMVOLREAD    struct cdrom_volctrl *
247 0x00005314      CDROMREADRAW    const struct cdrom_msf *        // MORE
248 0x00005315      CDROMREADCOOKED const struct cdrom_msf *        // MORE
249 0x00005316      CDROMSEEK       const struct cdrom_msf *
250 .TE
251
252 // <include/linux/cm206.h>
253 .TS
254 l l l.
255 0x00002000      CM206CTL_GET_STAT       int
256 0x00002001      CM206CTL_GET_LAST_STAT  int
257 .TE
258
259 // <include/linux/cyclades.h>
260 .TS
261 l l l.
262 0x00435901      CYGETMON        struct cyclades_monitor *
263 0x00435902      CYGETTHRESH     int *
264 0x00435903      CYSETTHRESH     int
265 0x00435904      CYGETDEFTHRESH  int *
266 0x00435905      CYSETDEFTHRESH  int
267 0x00435906      CYGETTIMEOUT    int *
268 0x00435907      CYSETTIMEOUT    int
269 0x00435908      CYGETDEFTIMEOUT int *
270 0x00435909      CYSETDEFTIMEOUT int
271 .TE
272
273 // <include/linux/ext2_fs.h>
274 .TS
275 l l l.
276 0x80046601      EXT2_IOC_GETFLAGS       int *
277 0x40046602      EXT2_IOC_SETFLAGS       const int *
278 0x80047601      EXT2_IOC_GETVERSION     int *
279 0x40047602      EXT2_IOC_SETVERSION     const int *
280 .TE
281
282 // <include/linux/fd.h>
283 .TS
284 l l l.
285 0x00000000      FDCLRPRM        void
286 0x00000001      FDSETPRM        const struct floppy_struct *
287 0x00000002      FDDEFPRM        const struct floppy_struct *
288 0x00000003      FDGETPRM        struct floppy_struct *
289 0x00000004      FDMSGON void
290 0x00000005      FDMSGOFF        void
291 0x00000006      FDFMTBEG        void
292 0x00000007      FDFMTTRK        const struct format_descr *
293 0x00000008      FDFMTEND        void
294 0x0000000A      FDSETEMSGTRESH  int
295 0x0000000B      FDFLUSH void
296 0x0000000C      FDSETMAXERRS    const struct floppy_max_errors *
297 0x0000000E      FDGETMAXERRS    struct floppy_max_errors *
298 0x00000010      FDGETDRVTYP     struct { char [16]; } *
299 0x00000014      FDSETDRVPRM     const struct floppy_drive_params *
300 0x00000015      FDGETDRVPRM     struct floppy_drive_params *
301 0x00000016      FDGETDRVSTAT    struct floppy_drive_struct *
302 0x00000017      FDPOLLDRVSTAT   struct floppy_drive_struct *
303 0x00000018      FDRESET int
304 0x00000019      FDGETFDCSTAT    struct floppy_fdc_state *
305 0x0000001B      FDWERRORCLR     void
306 0x0000001C      FDWERRORGET     struct floppy_write_errors *
307 .TE
308 .TS
309 l l l l.
310 0x0000001E      FDRAWCMD        struct floppy_raw_cmd * // MORE // I-O
311 0x00000028      FDTWADDLE       void
312 .TE
313
314 // <include/linux/fs.h>
315 .TS
316 l l l l.
317 0x0000125D      BLKROSET        const int *
318 0x0000125E      BLKROGET        int *
319 0x0000125F      BLKRRPART       void
320 0x00001260      BLKGETSIZE      unsigned long *
321 0x00001261      BLKFLSBUF       void
322 0x00001262      BLKRASET        int
323 0x00001263      BLKRAGET        int *
324 0x00000001      FIBMAP  int *   // I-O
325 0x00000002      FIGETBSZ        int *
326 .TE
327
328 // <include/linux/hdreg.h>
329 .TS
330 l l l l.
331 0x00000301      HDIO_GETGEO     struct hd_geometry *
332 0x00000302      HDIO_GET_UNMASKINTR     int *
333 0x00000304      HDIO_GET_MULTCOUNT      int *
334 0x00000307      HDIO_GET_IDENTITY       struct hd_driveid *
335 0x00000308      HDIO_GET_KEEPSETTINGS   int *
336 0x00000309      HDIO_GET_CHIPSET        int *
337 0x0000030A      HDIO_GET_NOWERR int *
338 0x0000030B      HDIO_GET_DMA    int *
339 0x0000031F      HDIO_DRIVE_CMD  int *   // I-O
340 0x00000321      HDIO_SET_MULTCOUNT      int
341 0x00000322      HDIO_SET_UNMASKINTR     int
342 0x00000323      HDIO_SET_KEEPSETTINGS   int
343 0x00000324      HDIO_SET_CHIPSET        int
344 0x00000325      HDIO_SET_NOWERR int
345 0x00000326      HDIO_SET_DMA    int
346 .TE
347
348 // <include/linux/if_eql.h>
349 .TS
350 l l l l.
351 0x000089F0      EQL_ENSLAVE     struct ifreq *  // MORE // I-O
352 0x000089F1      EQL_EMANCIPATE  struct ifreq *  // MORE // I-O
353 0x000089F2      EQL_GETSLAVECFG struct ifreq *  // MORE // I-O
354 0x000089F3      EQL_SETSLAVECFG struct ifreq *  // MORE // I-O
355 0x000089F4      EQL_GETMASTRCFG struct ifreq *  // MORE // I-O
356 0x000089F5      EQL_SETMASTRCFG struct ifreq *  // MORE // I-O
357 .TE
358
359 // <include/linux/if_plip.h>
360 .TS
361 l l l l.
362 0x000089F0      SIOCDEVPLIP     struct ifreq *  // I-O
363 .TE
364
365 // <include/linux/if_ppp.h>
366 .TS
367 l l l.
368 0x00005490      PPPIOCGFLAGS    int *
369 0x00005491      PPPIOCSFLAGS    const int *
370 0x00005492      PPPIOCGASYNCMAP int *
371 0x00005493      PPPIOCSASYNCMAP const int *
372 0x00005494      PPPIOCGUNIT     int *
373 0x00005495      PPPIOCSINPSIG   const int *
374 0x00005497      PPPIOCSDEBUG    const int *
375 0x00005498      PPPIOCGDEBUG    int *
376 0x00005499      PPPIOCGSTAT     struct ppp_stats *
377 0x0000549A      PPPIOCGTIME     struct ppp_ddinfo *
378 0x0000549B      PPPIOCGXASYNCMAP        struct { int [8]; } *
379 0x0000549C      PPPIOCSXASYNCMAP        const struct { int [8]; } *
380 0x0000549D      PPPIOCSMRU      const int *
381 0x0000549E      PPPIOCRASYNCMAP const int *
382 0x0000549F      PPPIOCSMAXCID   const int *
383 .TE
384
385 // <include/linux/ipx.h>
386 .TS
387 l l l.
388 0x000089E0      SIOCAIPXITFCRT  const char *
389 0x000089E1      SIOCAIPXPRISLT  const char *
390 0x000089E2      SIOCIPXCFGDATA  struct ipx_config_data *
391 .TE
392
393 // <include/linux/kd.h>
394 .TS
395 l l l.
396 0x00004B60      GIO_FONT        struct { char [8192]; } *
397 0x00004B61      PIO_FONT        const struct { char [8192]; } *
398 .TE
399 .TS
400 l2 l2 l2 l.
401 0x00004B6B      GIO_FONTX       struct console_font_desc *      // MORE // I-O
402 0x00004B6C      PIO_FONTX       const struct console_font_desc *        //MORE
403 .TE
404 .TS
405 l l l.
406 0x00004B70      GIO_CMAP        struct { char [48]; } *
407 0x00004B71      PIO_CMAP        const struct { char [48]; }
408 .TE
409 .TS
410 l l l l.
411 0x00004B2F      KIOCSOUND       int
412 0x00004B30      KDMKTONE        int
413 0x00004B31      KDGETLED        char *
414 0x00004B32      KDSETLED        int
415 0x00004B33      KDGKBTYPE       char *
416 0x00004B34      KDADDIO int     // MORE
417 0x00004B35      KDDELIO int     // MORE
418 0x00004B36      KDENABIO        void    // MORE
419 0x00004B37      KDDISABIO       void    // MORE
420 0x00004B3A      KDSETMODE       int
421 0x00004B3B      KDGETMODE       int *
422 0x00004B3C      KDMAPDISP       void    // MORE
423 0x00004B3D      KDUNMAPDISP     void    // MORE
424 0x00004B40      GIO_SCRNMAP     struct { char [E_TABSZ]; } *
425 .TE
426 .TS
427 l l l.
428 0x00004B41      PIO_SCRNMAP     const struct { char [E_TABSZ]; } *
429 0x00004B69      GIO_UNISCRNMAP  struct { short [E_TABSZ]; } *
430 0x00004B6A      PIO_UNISCRNMAP  const struct { short [E_TABSZ]; } *
431 .TE
432 .TS
433 l l l l.
434 0x00004B66      GIO_UNIMAP      struct unimapdesc *     // MORE // I-O
435 0x00004B67      PIO_UNIMAP      const struct unimapdesc *       // MORE
436 0x00004B68      PIO_UNIMAPCLR   const struct unimapinit *
437 0x00004B44      KDGKBMODE       int *
438 0x00004B45      KDSKBMODE       int
439 0x00004B62      KDGKBMETA       int *
440 0x00004B63      KDSKBMETA       int
441 0x00004B64      KDGKBLED        int *
442 0x00004B65      KDSKBLED        int
443 0x00004B46      KDGKBENT        struct kbentry *        // I-O
444 0x00004B47      KDSKBENT        const struct kbentry *
445 0x00004B48      KDGKBSENT       struct kbsentry *       // I-O
446 0x00004B49      KDSKBSENT       const struct kbsentry *
447 0x00004B4A      KDGKBDIACR      struct kbdiacrs *
448 0x00004B4B      KDSKBDIACR      const struct kbdiacrs *
449 0x00004B4C      KDGETKEYCODE    struct kbkeycode *      // I-O
450 0x00004B4D      KDSETKEYCODE    const struct kbkeycode *
451 0x00004B4E      KDSIGACCEPT     int
452 .TE
453
454 // <include/linux/lp.h>
455 .TS
456 l l l.
457 0x00000601      LPCHAR  int
458 0x00000602      LPTIME  int
459 0x00000604      LPABORT int
460 0x00000605      LPSETIRQ        int
461 0x00000606      LPGETIRQ        int *
462 0x00000608      LPWAIT  int
463 0x00000609      LPCAREFUL       int
464 0x0000060A      LPABORTOPEN     int
465 0x0000060B      LPGETSTATUS     int *
466 0x0000060C      LPRESET void
467 0x0000060D      LPGETSTATS      struct lp_stats *
468 .TE
469
470 // <include/linux/mroute.h>
471 .TS
472 l l l l.
473 0x000089E0      SIOCGETVIFCNT   struct sioc_vif_req *   // I-O
474 0x000089E1      SIOCGETSGCNT    struct sioc_sg_req *    // I-O
475 .TE
476
477 // <include/linux/msdos_fs.h>
478 .TS
479 l l l l.
480 0x82307201      VFAT_IOCTL_READDIR_BOTH struct dirent [2]
481 0x82307202      VFAT_IOCTL_READDIR_SHORT        struct dirent [2]
482 0x80047210      FAT_IOCTL_GET_ATTRIBUTES        __u32 *
483 0x40047211      FAT_IOCTL_SET_ATTRIBUTES        const __u32 *
484 .TE
485
486 // <include/linux/mtio.h>
487 .TS
488 l l l.
489 0x40086D01      MTIOCTOP        const struct mtop *
490 0x801C6D02      MTIOCGET        struct mtget *
491 0x80046D03      MTIOCPOS        struct mtpos *
492 0x80206D04      MTIOCGETCONFIG  struct mtconfiginfo *
493 0x40206D05      MTIOCSETCONFIG  const struct mtconfiginfo *
494 .TE
495
496 // <include/linux/netrom.h>
497 .TS
498 l l l l.
499 0x000089E0      SIOCNRGETPARMS  struct nr_parms_struct *        // I-O
500 0x000089E1      SIOCNRSETPARMS  const struct nr_parms_struct *
501 0x000089E2      SIOCNRDECOBS    void
502 0x000089E3      SIOCNRRTCTL     const int *
503 .TE
504
505 // <include/linux/sbpcd.h>
506 .TS
507 l l l.
508 0x00009000      DDIOCSDBG       const int *
509 0x00005382      CDROMAUDIOBUFSIZ        int
510 .TE
511
512 // <include/linux/scc.h>
513 .TS
514 l l l l.
515 0x00005470      TIOCSCCINI      void
516 0x00005471      TIOCCHANINI     const struct scc_modem *
517 0x00005472      TIOCGKISS       struct ioctl_command *  // I-O
518 0x00005473      TIOCSKISS       const struct ioctl_command *
519 0x00005474      TIOCSCCSTAT     struct scc_stat *
520 .TE
521
522 // <include/linux/scsi.h>
523 .TS
524 l l l.
525 0x00005382      SCSI_IOCTL_GET_IDLUN    struct { int [2]; } *
526 0x00005383      SCSI_IOCTL_TAGGED_ENABLE        void
527 0x00005384      SCSI_IOCTL_TAGGED_DISABLE       void
528 .TE
529 .TS
530 l l l l.
531 0x00005385      SCSI_IOCTL_PROBE_HOST   const int *     // MORE
532 .TE
533
534 // <include/linux/smb_fs.h>
535 .TS
536 l l l.
537 0x80027501      SMB_IOC_GETMOUNTUID     uid_t *
538 .TE
539
540 // <include/linux/sockios.h>
541 .TS
542 l l l l.
543 0x0000890B      SIOCADDRT       const struct rtentry *  // MORE
544 0x0000890C      SIOCDELRT       const struct rtentry *  // MORE
545 0x00008910      SIOCGIFNAME     char []
546 0x00008911      SIOCSIFLINK     void
547 0x00008912      SIOCGIFCONF     struct ifconf * // MORE // I-O
548 0x00008913      SIOCGIFFLAGS    struct ifreq *  // I-O
549 0x00008914      SIOCSIFFLAGS    const struct ifreq *
550 0x00008915      SIOCGIFADDR     struct ifreq *  // I-O
551 0x00008916      SIOCSIFADDR     const struct ifreq *
552 0x00008917      SIOCGIFDSTADDR  struct ifreq *  // I-O
553 0x00008918      SIOCSIFDSTADDR  const struct ifreq *
554 0x00008919      SIOCGIFBRDADDR  struct ifreq *  // I-O
555 0x0000891A      SIOCSIFBRDADDR  const struct ifreq *
556 0x0000891B      SIOCGIFNETMASK  struct ifreq *  // I-O
557 0x0000891C      SIOCSIFNETMASK  const struct ifreq *
558 0x0000891D      SIOCGIFMETRIC   struct ifreq *  // I-O
559 0x0000891E      SIOCSIFMETRIC   const struct ifreq *
560 0x0000891F      SIOCGIFMEM      struct ifreq *  // I-O
561 0x00008920      SIOCSIFMEM      const struct ifreq *
562 0x00008921      SIOCGIFMTU      struct ifreq *  // I-O
563 0x00008922      SIOCSIFMTU      const struct ifreq *
564 .TE
565 .TS
566 l l l l.
567 0x00008923      OLD_SIOCGIFHWADDR       struct ifreq *  // I-O
568 0x00008924      SIOCSIFHWADDR   const struct ifreq *    // MORE
569 0x00008925      SIOCGIFENCAP    int *
570 0x00008926      SIOCSIFENCAP    const int *
571 0x00008927      SIOCGIFHWADDR   struct ifreq *  // I-O
572 0x00008929      SIOCGIFSLAVE    void
573 0x00008930      SIOCSIFSLAVE    void
574 0x00008931      SIOCADDMULTI    const struct ifreq *
575 0x00008932      SIOCDELMULTI    const struct ifreq *
576 0x00008940      SIOCADDRTOLD    void
577 0x00008941      SIOCDELRTOLD    void
578 0x00008950      SIOCDARP        const struct arpreq *
579 0x00008951      SIOCGARP        struct arpreq * // I-O
580 0x00008952      SIOCSARP        const struct arpreq *
581 0x00008960      SIOCDRARP       const struct arpreq *
582 0x00008961      SIOCGRARP       struct arpreq * // I-O
583 0x00008962      SIOCSRARP       const struct arpreq *
584 0x00008970      SIOCGIFMAP      struct ifreq *  // I-O
585 0x00008971      SIOCSIFMAP      const struct ifreq *
586 .TE
587
588 // <include/linux/soundcard.h>
589 .TS
590 l l l.
591 0x00005100      SNDCTL_SEQ_RESET        void
592 0x00005101      SNDCTL_SEQ_SYNC void
593 .TE
594 .TS
595 l l l l.
596 0xC08C5102      SNDCTL_SYNTH_INFO       struct synth_info *     // I-O
597 0xC0045103      SNDCTL_SEQ_CTRLRATE     int *   // I-O
598 0x80045104      SNDCTL_SEQ_GETOUTCOUNT  int *
599 0x80045105      SNDCTL_SEQ_GETINCOUNT   int *
600 0x40045106      SNDCTL_SEQ_PERCMODE     void
601 .TE
602 .TS
603 l l l.
604 0x40285107      SNDCTL_FM_LOAD_INSTR    const struct sbi_instrument *
605 .TE
606 .TS
607 l l l l.
608 0x40045108      SNDCTL_SEQ_TESTMIDI     const int *
609 0x40045109      SNDCTL_SEQ_RESETSAMPLES const int *
610 0x8004510A      SNDCTL_SEQ_NRSYNTHS     int *
611 0x8004510B      SNDCTL_SEQ_NRMIDIS      int *
612 0xC074510C      SNDCTL_MIDI_INFO        struct midi_info *      // I-O
613 0x4004510D      SNDCTL_SEQ_THRESHOLD    const int *
614 0xC004510E      SNDCTL_SYNTH_MEMAVL     int *   // I-O
615 0x4004510F      SNDCTL_FM_4OP_ENABLE    const int *
616 0xCFB85110      SNDCTL_PMGR_ACCESS      struct patmgr_info *    // I-O
617 0x00005111      SNDCTL_SEQ_PANIC        void
618 .TE
619 .TS
620 l l l.
621 0x40085112      SNDCTL_SEQ_OUTOFBAND    const struct seq_event_rec *
622 .TE
623 .TS
624 l l l l.
625 0xC0045401      SNDCTL_TMR_TIMEBASE     int *   // I-O
626 0x00005402      SNDCTL_TMR_START        void
627 0x00005403      SNDCTL_TMR_STOP void
628 0x00005404      SNDCTL_TMR_CONTINUE     void
629 0xC0045405      SNDCTL_TMR_TEMPO        int *   // I-O
630 0xC0045406      SNDCTL_TMR_SOURCE       int *   // I-O
631 0x40045407      SNDCTL_TMR_METRONOME    const int *
632 0x40045408      SNDCTL_TMR_SELECT       int *   // I-O
633 0xCFB85001      SNDCTL_PMGR_IFACE       struct patmgr_info *    // I-O
634 0xC0046D00      SNDCTL_MIDI_PRETIME     int *   // I-O
635 0xC0046D01      SNDCTL_MIDI_MPUMODE     const int *
636 .TE
637 .TS
638 l l l l.
639 0xC0216D02      SNDCTL_MIDI_MPUCMD      struct mpu_command_rec *        // I-O
640 .TE
641 .TS
642 l l l l.
643 0x00005000      SNDCTL_DSP_RESET        void
644 0x00005001      SNDCTL_DSP_SYNC void
645 0xC0045002      SNDCTL_DSP_SPEED        int *   // I-O
646 0xC0045003      SNDCTL_DSP_STEREO       int *   // I-O
647 0xC0045004      SNDCTL_DSP_GETBLKSIZE   int *   // I-O
648 0xC0045006      SOUND_PCM_WRITE_CHANNELS        int *   // I-O
649 0xC0045007      SOUND_PCM_WRITE_FILTER  int *   // I-O
650 0x00005008      SNDCTL_DSP_POST void
651 0xC0045009      SNDCTL_DSP_SUBDIVIDE    int *   // I-O
652 0xC004500A      SNDCTL_DSP_SETFRAGMENT  int *   // I-O
653 0x8004500B      SNDCTL_DSP_GETFMTS      int *
654 0xC0045005      SNDCTL_DSP_SETFMT       int *   // I-O
655 .TE
656 .TS
657 l l l.
658 0x800C500C      SNDCTL_DSP_GETOSPACE    struct audio_buf_info *
659 0x800C500D      SNDCTL_DSP_GETISPACE    struct audio_buf_info *
660 0x0000500E      SNDCTL_DSP_NONBLOCK     void
661 0x80045002      SOUND_PCM_READ_RATE     int *
662 0x80045006      SOUND_PCM_READ_CHANNELS int *
663 0x80045005      SOUND_PCM_READ_BITS     int *
664 0x80045007      SOUND_PCM_READ_FILTER   int *
665 0x00004300      SNDCTL_COPR_RESET       void
666 0xCFB04301      SNDCTL_COPR_LOAD        const struct copr_buffer *
667 .TE
668 .TS
669 l l l l.
670 0xC0144302      SNDCTL_COPR_RDATA       struct copr_debug_buf * // I-O
671 0xC0144303      SNDCTL_COPR_RCODE       struct copr_debug_buf * // I-O
672 .TE
673 .TS
674 l l l.
675 0x40144304      SNDCTL_COPR_WDATA       const struct copr_debug_buf *
676 0x40144305      SNDCTL_COPR_WCODE       const struct copr_debug_buf *
677 .TE
678 .TS
679 l l l l.
680 0xC0144306      SNDCTL_COPR_RUN struct copr_debug_buf * // I-O
681 0xC0144307      SNDCTL_COPR_HALT        struct copr_debug_buf * // I-O
682 .TE
683 .TS
684 l l l.
685 0x4FA44308      SNDCTL_COPR_SENDMSG     const struct copr_msg *
686 0x8FA44309      SNDCTL_COPR_RCVMSG      struct copr_msg *
687 0x80044D00      SOUND_MIXER_READ_VOLUME int *
688 0x80044D01      SOUND_MIXER_READ_BASS   int *
689 0x80044D02      SOUND_MIXER_READ_TREBLE int *
690 0x80044D03      SOUND_MIXER_READ_SYNTH  int *
691 0x80044D04      SOUND_MIXER_READ_PCM    int *
692 0x80044D05      SOUND_MIXER_READ_SPEAKER        int *
693 0x80044D06      SOUND_MIXER_READ_LINE   int *
694 0x80044D07      SOUND_MIXER_READ_MIC    int *
695 0x80044D08      SOUND_MIXER_READ_CD     int *
696 0x80044D09      SOUND_MIXER_READ_IMIX   int *
697 0x80044D0A      SOUND_MIXER_READ_ALTPCM int *
698 0x80044D0B      SOUND_MIXER_READ_RECLEV int *
699 0x80044D0C      SOUND_MIXER_READ_IGAIN  int *
700 0x80044D0D      SOUND_MIXER_READ_OGAIN  int *
701 0x80044D0E      SOUND_MIXER_READ_LINE1  int *
702 0x80044D0F      SOUND_MIXER_READ_LINE2  int *
703 0x80044D10      SOUND_MIXER_READ_LINE3  int *
704 0x80044D1C      SOUND_MIXER_READ_MUTE   int *
705 0x80044D1D      SOUND_MIXER_READ_ENHANCE        int *
706 0x80044D1E      SOUND_MIXER_READ_LOUD   int *
707 0x80044DFF      SOUND_MIXER_READ_RECSRC int *
708 0x80044DFE      SOUND_MIXER_READ_DEVMASK        int *
709 0x80044DFD      SOUND_MIXER_READ_RECMASK        int *
710 0x80044DFB      SOUND_MIXER_READ_STEREODEVS     int *
711 0x80044DFC      SOUND_MIXER_READ_CAPS   int *
712 .TE
713 .TS
714 l l l l.
715 0xC0044D00      SOUND_MIXER_WRITE_VOLUME        int *   // I-O
716 0xC0044D01      SOUND_MIXER_WRITE_BASS  int *   // I-O
717 0xC0044D02      SOUND_MIXER_WRITE_TREBLE        int *   // I-O
718 0xC0044D03      SOUND_MIXER_WRITE_SYNTH int *   // I-O
719 0xC0044D04      SOUND_MIXER_WRITE_PCM   int *   // I-O
720 0xC0044D05      SOUND_MIXER_WRITE_SPEAKER       int *   // I-O
721 0xC0044D06      SOUND_MIXER_WRITE_LINE  int *   // I-O
722 0xC0044D07      SOUND_MIXER_WRITE_MIC   int *   // I-O
723 0xC0044D08      SOUND_MIXER_WRITE_CD    int *   // I-O
724 0xC0044D09      SOUND_MIXER_WRITE_IMIX  int *   // I-O
725 0xC0044D0A      SOUND_MIXER_WRITE_ALTPCM        int *   // I-O
726 0xC0044D0B      SOUND_MIXER_WRITE_RECLEV        int *   // I-O
727 0xC0044D0C      SOUND_MIXER_WRITE_IGAIN int *   // I-O
728 0xC0044D0D      SOUND_MIXER_WRITE_OGAIN int *   // I-O
729 0xC0044D0E      SOUND_MIXER_WRITE_LINE1 int *   // I-O
730 0xC0044D0F      SOUND_MIXER_WRITE_LINE2 int *   // I-O
731 0xC0044D10      SOUND_MIXER_WRITE_LINE3 int *   // I-O
732 0xC0044D1C      SOUND_MIXER_WRITE_MUTE  int *   // I-O
733 0xC0044D1D      SOUND_MIXER_WRITE_ENHANCE       int *   // I-O
734 0xC0044D1E      SOUND_MIXER_WRITE_LOUD  int *   // I-O
735 0xC0044DFF      SOUND_MIXER_WRITE_RECSRC        int *   // I-O
736 .TE
737
738 // <include/linux/umsdos_fs.h>
739 .TS
740 l l l l.
741 0x000004D2      UMSDOS_READDIR_DOS      struct umsdos_ioctl *   // I-O
742 0x000004D3      UMSDOS_UNLINK_DOS       const struct umsdos_ioctl *
743 0x000004D4      UMSDOS_RMDIR_DOS        const struct umsdos_ioctl *
744 0x000004D5      UMSDOS_STAT_DOS struct umsdos_ioctl *   // I-O
745 0x000004D6      UMSDOS_CREAT_EMD        const struct umsdos_ioctl *
746 0x000004D7      UMSDOS_UNLINK_EMD       const struct umsdos_ioctl *
747 0x000004D8      UMSDOS_READDIR_EMD      struct umsdos_ioctl *   // I-O
748 0x000004D9      UMSDOS_GETVERSION       struct umsdos_ioctl *
749 0x000004DA      UMSDOS_INIT_EMD void
750 0x000004DB      UMSDOS_DOS_SETUP        const struct umsdos_ioctl *
751 0x000004DC      UMSDOS_RENAME_DOS       const struct umsdos_ioctl *
752 .TE
753
754 // <include/linux/vt.h>
755 .TS
756 l l l.
757 0x00005600      VT_OPENQRY      int *
758 0x00005601      VT_GETMODE      struct vt_mode *
759 0x00005602      VT_SETMODE      const struct vt_mode *
760 0x00005603      VT_GETSTATE     struct vt_stat *
761 0x00005604      VT_SENDSIG      void
762 0x00005605      VT_RELDISP      int
763 0x00005606      VT_ACTIVATE     int
764 0x00005607      VT_WAITACTIVE   int
765 0x00005608      VT_DISALLOCATE  int
766 0x00005609      VT_RESIZE       const struct vt_sizes *
767 0x0000560A      VT_RESIZEX      const struct vt_consize *
768 .TE
769
770 // More arguments.
771 Some ioctl's take a pointer to a structure which contains additional
772 pointers.
773 These are documented here in alphabetical order.
774
775 .B CDROMREADAUDIO
776 takes an input pointer
777 .IR "const struct cdrom_read_audio\ *" .
778 The
779 .I buf
780 field points to an output buffer of length
781 .IR "nframes\ * CD_FRAMESIZE_RAW" .
782
783 .BR CDROMREADCOOKED ,
784 .BR CDROMREADMODE1 ,
785 .BR CDROMREADMODE2 ,
786 and
787 .B CDROMREADRAW
788 take an input pointer
789 .IR "const struct cdrom_msf\ *" .
790 They use the same pointer as an output pointer to
791 .IR "char []" .
792 The length varies by request.
793 For
794 .BR CDROMREADMODE1 ,
795 most drivers use CD_FRAMESIZE, but the Optics Storage
796 driver uses OPT_BLOCKSIZE instead (both have the numerical value
797 2048).
798 .nf
799
800     CDROMREADCOOKED    char [CD_FRAMESIZE]
801     CDROMREADMODE1     char [CD_FRAMESIZE or OPT_BLOCKSIZE]
802     CDROMREADMODE2     char [CD_FRAMESIZE_RAW0]
803     CDROMREADRAW       char [CD_FRAMESIZE_RAW]
804
805 .fi
806 .BR EQL_ENSLAVE ,
807 .BR EQL_EMANCIPATE ,
808 .BR EQL_GETSLAVECFG ,
809 .BR EQL_SETSLAVECFG ,
810 .BR EQL_GETMASTERCFG ,
811 and
812 .B EQL_SETMASTERCFG
813 take a
814 .IR "struct ifreq\ *" .
815 The
816 .I ifr_data
817 field is a pointer to another structure as follows:
818 .nf
819
820     EQL_ENSLAVE         const struct slaving_request *
821     EQL_EMANCIPATE      const struct slaving_request *
822     EQL_GETSLAVECFG     struct slave_config *           // I-O
823     EQL_SETSLAVECFG     const struct slave_config *
824     EQL_GETMASTERCFG    struct master_config *
825     EQL_SETMASTERCFG    const struct master_config *
826
827 .fi
828 .B FDRAWCMD
829 takes a
830 .IR "struct floppy raw_cmd\ *" .
831 If
832 .I flags & FD_RAW_WRITE
833 is nonzero, then
834 .I data
835 points to an input buffer of length
836 .IR length .
837 If
838 .I flags & FD_RAW_READ
839 is nonzero, then
840 .I data
841 points to an output buffer of length
842 .IR length .
843
844 .B GIO_FONTX
845 and
846 .B PIO_FONTX
847 take a
848 .I struct console_font_desc\ *
849 or a
850 .IR "const struct console_font_desc\ *" ,
851 respectively.
852 .I chardata
853 points to a buffer of
854 .IR "char [charcount]" .
855 This is an output buffer for
856 .B GIO_FONTX
857 and an input buffer for
858 .BR PIO_FONTX .
859
860 .B GIO_UNIMAP
861 and
862 .B PIO_UNIMAP
863 take a
864 .I "struct unimapdesc\ *"
865 or a
866 .IR "const struct unimapdesc\ *" ,
867 respectively.
868 .I entries
869 points to a buffer of
870 .IR "struct unipair [entry_ct]" .
871 This is an output buffer for
872 .B GIO_UNIMAP
873 and an input buffer for
874 .BR PIO_UNIMAP .
875
876 KDADDIO, KDDELIO, KDDISABIO, and KDENABIO enable or disable access to
877 I/O ports.
878 They are essentially alternate interfaces to 'ioperm'.
879
880 .B KDMAPDISP
881 and
882 .B KDUNMAPDISP
883 enable or disable memory mappings or I/O port access.
884 They are not implemented in the kernel.
885
886 .B SCSI_IOCTL_PROBE_HOST
887 takes an input pointer
888 .IR "const int\ *" ,
889 which is a length.
890 It uses the same pointer as an output pointer to a
891 .I char []
892 buffer of this length.
893
894 .B SIOCADDRT
895 and
896 .B SIOCDELRT
897 take an input pointer whose type depends on
898 the protocol:
899 .nf
900
901     Most protocols      const struct rtentry *
902     AX.25               const struct ax25_route *
903     NET/ROM             const struct nr_route_struct *
904
905 .fi
906 .B SIOCGIFCONF
907 takes a
908 .IR "struct ifconf\ *" .
909 The
910 .I ifc_buf
911 field points to a buffer of length
912 .I ifc_len
913 bytes, into which the kernel writes a list of type
914 .IR "struct ifreq []" .
915
916 .B SIOCSIFHWADDR
917 takes an input pointer whose type depends on the protocol:
918 .nf
919
920     Most protocols      const struct ifreq *
921     AX.25               const char [AX25_ADDR_LEN]
922
923 .fi
924 .B TIOCLINUX
925 takes a
926 .IR "const char\ *" .
927 It uses this to distinguish several
928 independent subcases.
929 In the table below,
930 .I N + foo
931 means
932 .I foo
933 after an N-byte pad.
934 .I struct selection
935 is implicitly defined in
936 .IR drivers/char/selection.c
937 .nf
938
939     TIOCLINUX-2         1 + const struct selection *
940     TIOCLINUX-3         void
941     TIOCLINUX-4         void
942     TIOCLINUX-5         4 + const struct { long [8]; } *
943     TIOCLINUX-6         char *
944     TIOCLINUX-7         char *
945     TIOCLINUX-10        1 + const char *
946
947 .fi
948 // Duplicate ioctls
949
950 This list does not include ioctls in the range
951 .B SIOCDEVPRIVATE
952 and
953 .BR SIOCPROTOPRIVATE .
954 .TS
955 l l l.
956 0x00000001      FDSETPRM        FIBMAP
957 0x00000002      FDDEFPRM        FIGETBSZ
958 0x00005382      CDROMAUDIOBUFSIZ        SCSI_IOCTL_GET_IDLUN
959 0x00005402      SNDCTL_TMR_START        TCSETS
960 0x00005403      SNDCTL_TMR_STOP TCSETSW
961 0x00005404      SNDCTL_TMR_CONTINUE     TCSETSF
962 .TE
963 .SH SEE ALSO
964 .BR ioctl (2)
965 .SH COLOPHON
966 This page is part of release 3.68 of the Linux
967 .I man-pages
968 project.
969 A description of the project,
970 information about reporting bugs,
971 and the latest version of this page,
972 can be found at
973 \%http://www.kernel.org/doc/man\-pages/.