kern_ipc_10.c revision 1.12.2.4 1 1.12.2.4 nathanw /* $NetBSD: kern_ipc_10.c,v 1.12.2.4 2002/05/29 21:32:13 nathanw Exp $ */
2 1.1 christos
3 1.1 christos /*
4 1.7 mycroft * Copyright (c) 1994 Adam Glass and Charles M. Hannum. All rights reserved.
5 1.1 christos *
6 1.1 christos * Redistribution and use in source and binary forms, with or without
7 1.1 christos * modification, are permitted provided that the following conditions
8 1.1 christos * are met:
9 1.1 christos * 1. Redistributions of source code must retain the above copyright
10 1.1 christos * notice, this list of conditions and the following disclaimer.
11 1.1 christos * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 christos * notice, this list of conditions and the following disclaimer in the
13 1.1 christos * documentation and/or other materials provided with the distribution.
14 1.1 christos * 3. All advertising materials mentioning features or use of this software
15 1.1 christos * must display the following acknowledgement:
16 1.7 mycroft * This product includes software developed by Adam Glass and Charles M.
17 1.1 christos * Hannum.
18 1.1 christos * 4. The names of the authors may not be used to endorse or promote products
19 1.1 christos * derived from this software without specific prior written permission.
20 1.1 christos *
21 1.1 christos * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
22 1.1 christos * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 1.1 christos * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 1.1 christos * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25 1.1 christos * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 1.1 christos * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 1.1 christos * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 1.1 christos * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 1.1 christos * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 1.1 christos * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 1.1 christos */
32 1.12.2.2 nathanw
33 1.12.2.2 nathanw #include <sys/cdefs.h>
34 1.12.2.4 nathanw __KERNEL_RCSID(0, "$NetBSD: kern_ipc_10.c,v 1.12.2.4 2002/05/29 21:32:13 nathanw Exp $");
35 1.8 tron
36 1.8 tron #include "opt_sysv.h"
37 1.1 christos
38 1.1 christos #include <sys/param.h>
39 1.1 christos #include <sys/systm.h>
40 1.1 christos #include <sys/kernel.h>
41 1.12.2.1 nathanw #include <sys/lwp.h>
42 1.1 christos #include <sys/proc.h>
43 1.1 christos #include <sys/sem.h>
44 1.1 christos #include <sys/malloc.h>
45 1.1 christos
46 1.1 christos #include <sys/mount.h>
47 1.12.2.4 nathanw #include <sys/sa.h>
48 1.1 christos #include <sys/syscallargs.h>
49 1.1 christos
50 1.6 scottb #include <compat/common/compat_util.h>
51 1.1 christos
52 1.2 mycroft #ifdef SYSVSEM
53 1.1 christos int
54 1.12.2.1 nathanw compat_10_sys_semsys(l, v, retval)
55 1.12.2.1 nathanw struct lwp *l;
56 1.3 thorpej void *v;
57 1.3 thorpej register_t *retval;
58 1.3 thorpej {
59 1.4 mycroft struct compat_10_sys_semsys_args /* {
60 1.1 christos syscallarg(int) which;
61 1.1 christos syscallarg(int) a2;
62 1.1 christos syscallarg(int) a3;
63 1.1 christos syscallarg(int) a4;
64 1.1 christos syscallarg(int) a5;
65 1.3 thorpej } */ *uap = v;
66 1.9 thorpej struct compat_14_sys___semctl_args /* {
67 1.1 christos syscallarg(int) semid;
68 1.1 christos syscallarg(int) semnum;
69 1.1 christos syscallarg(int) cmd;
70 1.9 thorpej syscallarg(union __semun *) arg;
71 1.1 christos } */ __semctl_args;
72 1.4 mycroft struct sys_semget_args /* {
73 1.1 christos syscallarg(key_t) key;
74 1.1 christos syscallarg(int) nsems;
75 1.1 christos syscallarg(int) semflg;
76 1.1 christos } */ semget_args;
77 1.4 mycroft struct sys_semop_args /* {
78 1.1 christos syscallarg(int) semid;
79 1.1 christos syscallarg(struct sembuf *) sops;
80 1.1 christos syscallarg(u_int) nsops;
81 1.1 christos } */ semop_args;
82 1.4 mycroft struct sys_semconfig_args /* {
83 1.1 christos syscallarg(int) flag;
84 1.1 christos } */ semconfig_args;
85 1.12.2.1 nathanw struct proc *p = l->l_proc;
86 1.12.2.3 nathanw caddr_t sg = stackgap_init(p, 0);
87 1.1 christos
88 1.1 christos switch (SCARG(uap, which)) {
89 1.1 christos case 0: /* __semctl() */
90 1.1 christos SCARG(&__semctl_args, semid) = SCARG(uap, a2);
91 1.1 christos SCARG(&__semctl_args, semnum) = SCARG(uap, a3);
92 1.1 christos SCARG(&__semctl_args, cmd) = SCARG(uap, a4);
93 1.12.2.3 nathanw SCARG(&__semctl_args, arg) = stackgap_alloc(p, &sg,
94 1.6 scottb sizeof(union semun *));
95 1.6 scottb copyout(&SCARG(uap, a5), SCARG(&__semctl_args, arg),
96 1.9 thorpej sizeof(union __semun));
97 1.12.2.1 nathanw return (compat_14_sys___semctl(l, &__semctl_args, retval));
98 1.1 christos
99 1.1 christos case 1: /* semget() */
100 1.1 christos SCARG(&semget_args, key) = SCARG(uap, a2);
101 1.1 christos SCARG(&semget_args, nsems) = SCARG(uap, a3);
102 1.1 christos SCARG(&semget_args, semflg) = SCARG(uap, a4);
103 1.12.2.1 nathanw return (sys_semget(l, &semget_args, retval));
104 1.1 christos
105 1.1 christos case 2: /* semop() */
106 1.1 christos SCARG(&semop_args, semid) = SCARG(uap, a2);
107 1.12 mrg SCARG(&semop_args, sops) =
108 1.12 mrg (struct sembuf *)(u_long)SCARG(uap, a3);
109 1.1 christos SCARG(&semop_args, nsops) = SCARG(uap, a4);
110 1.12.2.1 nathanw return (sys_semop(l, &semop_args, retval));
111 1.1 christos
112 1.1 christos case 3: /* semconfig() */
113 1.1 christos SCARG(&semconfig_args, flag) = SCARG(uap, a2);
114 1.12.2.1 nathanw return (sys_semconfig(l, &semconfig_args, retval));
115 1.1 christos
116 1.1 christos default:
117 1.1 christos return (EINVAL);
118 1.1 christos }
119 1.1 christos }
120 1.2 mycroft #endif
121 1.1 christos
122 1.2 mycroft #ifdef SYSVSHM
123 1.1 christos int
124 1.12.2.1 nathanw compat_10_sys_shmsys(l, v, retval)
125 1.12.2.1 nathanw struct lwp *l;
126 1.3 thorpej void *v;
127 1.3 thorpej register_t *retval;
128 1.3 thorpej {
129 1.4 mycroft struct compat_10_sys_shmsys_args /* {
130 1.1 christos syscallarg(int) which;
131 1.1 christos syscallarg(int) a2;
132 1.1 christos syscallarg(int) a3;
133 1.1 christos syscallarg(int) a4;
134 1.3 thorpej } */ *uap = v;
135 1.4 mycroft struct sys_shmat_args /* {
136 1.1 christos syscallarg(int) shmid;
137 1.1 christos syscallarg(void *) shmaddr;
138 1.1 christos syscallarg(int) shmflg;
139 1.1 christos } */ shmat_args;
140 1.9 thorpej struct compat_14_sys_shmctl_args /* {
141 1.1 christos syscallarg(int) shmid;
142 1.1 christos syscallarg(int) cmd;
143 1.9 thorpej syscallarg(struct shmid14_ds *) buf;
144 1.1 christos } */ shmctl_args;
145 1.4 mycroft struct sys_shmdt_args /* {
146 1.1 christos syscallarg(void *) shmaddr;
147 1.1 christos } */ shmdt_args;
148 1.4 mycroft struct sys_shmget_args /* {
149 1.1 christos syscallarg(key_t) key;
150 1.1 christos syscallarg(int) size;
151 1.1 christos syscallarg(int) shmflg;
152 1.1 christos } */ shmget_args;
153 1.1 christos
154 1.1 christos switch (SCARG(uap, which)) {
155 1.1 christos case 0: /* shmat() */
156 1.1 christos SCARG(&shmat_args, shmid) = SCARG(uap, a2);
157 1.12 mrg SCARG(&shmat_args, shmaddr) =
158 1.12 mrg (void *)(u_long)SCARG(uap, a3);
159 1.1 christos SCARG(&shmat_args, shmflg) = SCARG(uap, a4);
160 1.12.2.1 nathanw return (sys_shmat(l, &shmat_args, retval));
161 1.1 christos
162 1.1 christos case 1: /* shmctl() */
163 1.1 christos SCARG(&shmctl_args, shmid) = SCARG(uap, a2);
164 1.1 christos SCARG(&shmctl_args, cmd) = SCARG(uap, a3);
165 1.12 mrg SCARG(&shmctl_args, buf) =
166 1.12 mrg (struct shmid_ds14 *)(u_long)SCARG(uap, a4);
167 1.12.2.1 nathanw return (compat_14_sys_shmctl(l, &shmctl_args, retval));
168 1.1 christos
169 1.1 christos case 2: /* shmdt() */
170 1.12 mrg SCARG(&shmdt_args, shmaddr) =
171 1.12 mrg (void *)(u_long)SCARG(uap, a2);
172 1.12.2.1 nathanw return (sys_shmdt(l, &shmdt_args, retval));
173 1.1 christos
174 1.1 christos case 3: /* shmget() */
175 1.1 christos SCARG(&shmget_args, key) = SCARG(uap, a2);
176 1.1 christos SCARG(&shmget_args, size) = SCARG(uap, a3);
177 1.1 christos SCARG(&shmget_args, shmflg) = SCARG(uap, a4);
178 1.12.2.1 nathanw return (sys_shmget(l, &shmget_args, retval));
179 1.1 christos
180 1.1 christos default:
181 1.1 christos return (EINVAL);
182 1.1 christos }
183 1.1 christos }
184 1.2 mycroft #endif
185 1.1 christos
186 1.2 mycroft #ifdef SYSVMSG
187 1.1 christos int
188 1.12.2.1 nathanw compat_10_sys_msgsys(l, v, retval)
189 1.12.2.1 nathanw struct lwp *l;
190 1.3 thorpej void *v;
191 1.3 thorpej register_t *retval;
192 1.3 thorpej {
193 1.4 mycroft struct compat_10_sys_msgsys_args /* {
194 1.1 christos syscallarg(int) which;
195 1.1 christos syscallarg(int) a2;
196 1.1 christos syscallarg(int) a3;
197 1.1 christos syscallarg(int) a4;
198 1.1 christos syscallarg(int) a5;
199 1.1 christos syscallarg(int) a6;
200 1.3 thorpej } */ *uap = v;
201 1.9 thorpej struct compat_14_sys_msgctl_args /* {
202 1.1 christos syscallarg(int) msqid;
203 1.1 christos syscallarg(int) cmd;
204 1.9 thorpej syscallarg(struct msqid14_ds *) buf;
205 1.1 christos } */ msgctl_args;
206 1.4 mycroft struct sys_msgget_args /* {
207 1.1 christos syscallarg(key_t) key;
208 1.1 christos syscallarg(int) msgflg;
209 1.1 christos } */ msgget_args;
210 1.4 mycroft struct sys_msgsnd_args /* {
211 1.1 christos syscallarg(int) msqid;
212 1.1 christos syscallarg(void *) msgp;
213 1.1 christos syscallarg(size_t) msgsz;
214 1.1 christos syscallarg(int) msgflg;
215 1.1 christos } */ msgsnd_args;
216 1.4 mycroft struct sys_msgrcv_args /* {
217 1.1 christos syscallarg(int) msqid;
218 1.1 christos syscallarg(void *) msgp;
219 1.1 christos syscallarg(size_t) msgsz;
220 1.1 christos syscallarg(long) msgtyp;
221 1.1 christos syscallarg(int) msgflg;
222 1.1 christos } */ msgrcv_args;
223 1.1 christos
224 1.1 christos switch (SCARG(uap, which)) {
225 1.1 christos case 0: /* msgctl()*/
226 1.1 christos SCARG(&msgctl_args, msqid) = SCARG(uap, a2);
227 1.1 christos SCARG(&msgctl_args, cmd) = SCARG(uap, a3);
228 1.1 christos SCARG(&msgctl_args, buf) =
229 1.12 mrg (struct msqid_ds14 *)(u_long)SCARG(uap, a4);
230 1.12.2.1 nathanw return (compat_14_sys_msgctl(l, &msgctl_args, retval));
231 1.1 christos
232 1.1 christos case 1: /* msgget() */
233 1.1 christos SCARG(&msgget_args, key) = SCARG(uap, a2);
234 1.1 christos SCARG(&msgget_args, msgflg) = SCARG(uap, a3);
235 1.12.2.1 nathanw return (sys_msgget(l, &msgget_args, retval));
236 1.1 christos
237 1.1 christos case 2: /* msgsnd() */
238 1.1 christos SCARG(&msgsnd_args, msqid) = SCARG(uap, a2);
239 1.12 mrg SCARG(&msgsnd_args, msgp) =
240 1.12 mrg (void *)(u_long)SCARG(uap, a3);
241 1.1 christos SCARG(&msgsnd_args, msgsz) = SCARG(uap, a4);
242 1.1 christos SCARG(&msgsnd_args, msgflg) = SCARG(uap, a5);
243 1.12.2.1 nathanw return (sys_msgsnd(l, &msgsnd_args, retval));
244 1.1 christos
245 1.1 christos case 3: /* msgrcv() */
246 1.1 christos SCARG(&msgrcv_args, msqid) = SCARG(uap, a2);
247 1.12 mrg SCARG(&msgrcv_args, msgp) =
248 1.12 mrg (void *)(u_long)SCARG(uap, a3);
249 1.1 christos SCARG(&msgrcv_args, msgsz) = SCARG(uap, a4);
250 1.1 christos SCARG(&msgrcv_args, msgtyp) = SCARG(uap, a5);
251 1.1 christos SCARG(&msgrcv_args, msgflg) = SCARG(uap, a6);
252 1.12.2.1 nathanw return (sys_msgrcv(l, &msgrcv_args, retval));
253 1.1 christos
254 1.1 christos default:
255 1.1 christos return (EINVAL);
256 1.1 christos }
257 1.1 christos }
258 1.2 mycroft #endif
259