]> granicus.if.org Git - strace/blob - ioctl.c
Copyright update
[strace] / ioctl.c
1 /*
2  * Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl>
3  * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl>
4  * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com>
5  * Copyright (c) 1996-2001 Wichert Akkerman <wichert@cistron.nl>
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. The name of the author may not be used to endorse or promote products
17  *    derived from this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  *
30  *      $Id$
31  */
32
33 #include "defs.h"
34
35 struct ioctlent ioctlent0[] = {
36 /*
37  * `ioctlent.h' may be generated from `ioctlent.raw' by the auxiliary
38  * program `ioctlsort', such that the list is sorted by the `code' field.
39  * This has the side-effect of resolving the _IO.. macros into
40  * plain integers, eliminating the need to include here everything
41  * in "/usr/include" .
42  */
43 #include "ioctlent.h"
44 };
45
46 #ifdef LINUX
47 #include <asm/ioctl.h>
48 #endif
49
50 int nioctlents0 = sizeof ioctlent0 / sizeof ioctlent0[0];
51
52 #if SUPPORTED_PERSONALITIES >= 2
53 struct ioctlent ioctlent1[] = {
54 #include "ioctlent1.h"
55 };
56
57 int nioctlents1 = sizeof ioctlent1 / sizeof ioctlent1[0];
58 #endif /* SUPPORTED_PERSONALITIES >= 2 */
59
60 #if SUPPORTED_PERSONALITIES >= 3
61 struct ioctlent ioctlent2[] = {
62 #include "ioctlent2.h"
63 };
64
65 int nioctlents1 = sizeof ioctlent2 / sizeof ioctlent2[0];
66 #endif /* SUPPORTED_PERSONALITIES >= 3 */
67
68 struct ioctlent *ioctlent;
69 int nioctlents;
70
71 static int
72 compare(a, b)
73 const void *a;
74 const void *b;
75 {
76         unsigned long code1 = ((struct ioctlent *) a)->code;
77         unsigned long code2 = ((struct ioctlent *) b)->code;
78         return (code1 > code2) ? 1 : (code1 < code2) ? -1 : 0;
79 }
80
81 char *
82 ioctl_lookup(code)
83 long code;
84 {
85         struct ioctlent *iop, ioent;
86
87         ioent.code = code;
88 #ifdef LINUX
89         ioent.code &= (_IOC_NRMASK<<_IOC_NRSHIFT) | (_IOC_TYPEMASK<<_IOC_TYPESHIFT);
90 #endif
91         iop = (struct ioctlent *) bsearch((char *) &ioent, (char *) ioctlent,
92                         nioctlents, sizeof(struct ioctlent), compare);
93         return iop ? iop->symbol : NULL;
94 }
95
96 int
97 ioctl_decode(tcp, code, arg)
98 struct tcb *tcp;
99 long code, arg;
100 {
101         switch ((code >> 8) & 0xff) {
102 #ifdef LINUX
103 #ifdef ALPHA
104         case 'f': case 't': case 'T':
105 #else /* !ALPHA */
106         case 0x54:
107 #endif /* !ALPHA */
108 #else /* !LINUX */
109         case 'f': case 't': case 'T':
110 #endif /* !LINUX */
111                 return term_ioctl(tcp, code, arg);
112 #ifdef LINUX
113         case 0x89:
114 #else /* !LINUX */
115         case 'r': case 's': case 'i':
116 #ifndef FREEBSD         
117         case 'p':
118 #endif          
119 #endif /* !LINUX */
120                 return sock_ioctl(tcp, code, arg);
121 #ifdef USE_PROCFS
122 #ifndef HAVE_MP_PROCFS
123 #ifndef FREEBSD
124         case 'q':
125 #else
126         case 'p':
127 #endif          
128                 return proc_ioctl(tcp, code, arg);
129 #endif
130 #endif /* USE_PROCFS */
131 #ifdef HAVE_SYS_STREAM_H
132         case 'S':
133                 return stream_ioctl(tcp, code, arg);
134 #endif /* HAVE_SYS_STREAM_H */
135         default:
136                 break;
137         }
138         return 0;
139 }
140
141 /*
142  * Registry of ioctl characters, culled from
143  *      @(#)ioccom.h 1.7 89/06/16 SMI; from UCB ioctl.h 7.1 6/4/86
144  *
145  * char file where defined              notes
146  * ---- ------------------              -----
147  *   F  sun/fbio.h
148  *   G  sun/gpio.h
149  *   H  vaxif/if_hy.h
150  *   M  sundev/mcpcmd.h                 *overlap*
151  *   M  sys/modem.h                     *overlap*
152  *   S  sys/stropts.h
153  *   T  sys/termio.h                    -no overlap-
154  *   T  sys/termios.h                   -no overlap-
155  *   V  sundev/mdreg.h
156  *   a  vaxuba/adreg.h
157  *   d  sun/dkio.h                      -no overlap with sys/des.h-
158  *   d  sys/des.h                       (possible overlap)
159  *   d  vax/dkio.h                      (possible overlap)
160  *   d  vaxuba/rxreg.h                  (possible overlap)
161  *   f  sys/filio.h
162  *   g  sunwindow/win_ioctl.h           -no overlap-
163  *   g  sunwindowdev/winioctl.c         !no manifest constant! -no overlap-
164  *   h  sundev/hrc_common.h
165  *   i  sys/sockio.h                    *overlap*
166  *   i  vaxuba/ikreg.h                  *overlap*
167  *   k  sundev/kbio.h
168  *   m  sundev/msio.h                   (possible overlap)
169  *   m  sundev/msreg.h                  (possible overlap)
170  *   m  sys/mtio.h                      (possible overlap)
171  *   n  sun/ndio.h
172  *   p  net/nit_buf.h                   (possible overlap)
173  *   p  net/nit_if.h                    (possible overlap)
174  *   p  net/nit_pf.h                    (possible overlap)
175  *   p  sundev/fpareg.h                 (possible overlap)
176  *   p  sys/sockio.h                    (possible overlap)
177  *   p  vaxuba/psreg.h                  (possible overlap)
178  *   q  sun/sqz.h
179  *   r  sys/sockio.h
180  *   s  sys/sockio.h
181  *   t  sys/ttold.h                     (possible overlap)
182  *   t  sys/ttycom.h                    (possible overlap)
183  *   v  sundev/vuid_event.h             *overlap*
184  *   v  sys/vcmd.h                      *overlap*
185  *
186  * End of Registry
187  */
188