blob: 9286babce5b6fdadee547eb75fccb1de7763c0a6 [file] [log] [blame]
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001/*
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>
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00005 * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00006 * 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
35struct 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
Wichert Akkermana9667852001-03-17 17:26:34 +000046#ifdef LINUX
47#include <asm/ioctl.h>
48#endif
49
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000050int nioctlents0 = sizeof ioctlent0 / sizeof ioctlent0[0];
51
52#if SUPPORTED_PERSONALITIES >= 2
53struct ioctlent ioctlent1[] = {
54#include "ioctlent1.h"
55};
56
57int nioctlents1 = sizeof ioctlent1 / sizeof ioctlent1[0];
58#endif /* SUPPORTED_PERSONALITIES >= 2 */
59
60#if SUPPORTED_PERSONALITIES >= 3
61struct ioctlent ioctlent2[] = {
62#include "ioctlent2.h"
63};
64
65int nioctlents1 = sizeof ioctlent2 / sizeof ioctlent2[0];
66#endif /* SUPPORTED_PERSONALITIES >= 3 */
67
68struct ioctlent *ioctlent;
69int nioctlents;
70
71static int
72compare(a, b)
73const void *a;
74const 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
81char *
82ioctl_lookup(code)
83long code;
84{
85 struct ioctlent *iop, ioent;
86
87 ioent.code = code;
Wichert Akkermana9667852001-03-17 17:26:34 +000088#ifdef LINUX
89 ioent.code &= (_IOC_NRMASK|_IOC_TYPEMASK);
90#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000091 iop = (struct ioctlent *) bsearch((char *) &ioent, (char *) ioctlent,
92 nioctlents, sizeof(struct ioctlent), compare);
93 return iop ? iop->symbol : NULL;
94}
95
96int
97ioctl_decode(tcp, code, arg)
98struct tcb *tcp;
99long 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 */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000115 case 'r': case 's': case 'i':
116#ifndef FREEBSD
117 case 'p':
118#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000119#endif /* !LINUX */
120 return sock_ioctl(tcp, code, arg);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000121#ifdef USE_PROCFS
Wichert Akkermanea78f0f1999-11-29 15:34:02 +0000122#ifndef HAVE_MP_PROCFS
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000123#ifndef FREEBSD
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000124 case 'q':
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000125#else
126 case 'p':
127#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000128 return proc_ioctl(tcp, code, arg);
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000129#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000130#endif /* USE_PROCFS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000131#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