linux_ipc.c revision 1.14 1 1.14 erh /* $NetBSD: linux_ipc.c,v 1.14 1998/10/01 03:27:38 erh Exp $ */
2 1.14 erh
3 1.14 erh /*-
4 1.14 erh * Copyright (c) 1998 The NetBSD Foundation, Inc.
5 1.14 erh * All rights reserved.
6 1.14 erh *
7 1.14 erh * This code is derived from software contributed to The NetBSD Foundation
8 1.14 erh * by Eric Haszlakiewicz.
9 1.14 erh *
10 1.14 erh * Redistribution and use in source and binary forms, with or without
11 1.14 erh * modification, are permitted provided that the following conditions
12 1.14 erh * are met:
13 1.14 erh * 1. Redistributions of source code must retain the above copyright
14 1.14 erh * notice, this list of conditions and the following disclaimer.
15 1.14 erh * 2. Redistributions in binary form must reproduce the above copyright
16 1.14 erh * notice, this list of conditions and the following disclaimer in the
17 1.14 erh * documentation and/or other materials provided with the distribution.
18 1.14 erh * 3. All advertising materials mentioning features or use of this software
19 1.14 erh * must display the following acknowledgement:
20 1.14 erh * This product includes software developed by the NetBSD
21 1.14 erh * Foundation, Inc. and its contributors.
22 1.14 erh * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.14 erh * contributors may be used to endorse or promote products derived
24 1.14 erh * from this software without specific prior written permission.
25 1.14 erh *
26 1.14 erh * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.14 erh * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.14 erh * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.14 erh * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.14 erh * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.14 erh * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.14 erh * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.14 erh * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.14 erh * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.14 erh * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.14 erh * POSSIBILITY OF SUCH DAMAGE.
37 1.14 erh */
38 1.1 fvdl
39 1.1 fvdl /*
40 1.1 fvdl * Copyright (c) 1995 Frank van der Linden
41 1.1 fvdl * All rights reserved.
42 1.1 fvdl *
43 1.1 fvdl * Redistribution and use in source and binary forms, with or without
44 1.1 fvdl * modification, are permitted provided that the following conditions
45 1.1 fvdl * are met:
46 1.1 fvdl * 1. Redistributions of source code must retain the above copyright
47 1.1 fvdl * notice, this list of conditions and the following disclaimer.
48 1.1 fvdl * 2. Redistributions in binary form must reproduce the above copyright
49 1.1 fvdl * notice, this list of conditions and the following disclaimer in the
50 1.1 fvdl * documentation and/or other materials provided with the distribution.
51 1.1 fvdl * 3. All advertising materials mentioning features or use of this software
52 1.1 fvdl * must display the following acknowledgement:
53 1.1 fvdl * This product includes software developed for the NetBSD Project
54 1.1 fvdl * by Frank van der Linden
55 1.1 fvdl * 4. The name of the author may not be used to endorse or promote products
56 1.1 fvdl * derived from this software without specific prior written permission
57 1.1 fvdl *
58 1.1 fvdl * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
59 1.1 fvdl * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
60 1.1 fvdl * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
61 1.1 fvdl * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
62 1.1 fvdl * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
63 1.1 fvdl * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
64 1.1 fvdl * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
65 1.1 fvdl * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
66 1.1 fvdl * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
67 1.1 fvdl * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
68 1.1 fvdl */
69 1.1 fvdl
70 1.1 fvdl #include <sys/types.h>
71 1.1 fvdl #include <sys/param.h>
72 1.1 fvdl #include <sys/shm.h>
73 1.6 fvdl #include <sys/sem.h>
74 1.1 fvdl #include <sys/msg.h>
75 1.1 fvdl #include <sys/proc.h>
76 1.1 fvdl #include <sys/systm.h>
77 1.1 fvdl
78 1.1 fvdl #include <sys/mount.h>
79 1.1 fvdl #include <sys/syscallargs.h>
80 1.1 fvdl
81 1.1 fvdl #include <compat/linux/linux_types.h>
82 1.5 mycroft #include <compat/linux/linux_signal.h>
83 1.1 fvdl #include <compat/linux/linux_syscallargs.h>
84 1.14 erh #include <compat/linux/linux_syscall.h>
85 1.1 fvdl #include <compat/linux/linux_util.h>
86 1.1 fvdl #include <compat/linux/linux_ipc.h>
87 1.1 fvdl #include <compat/linux/linux_msg.h>
88 1.1 fvdl #include <compat/linux/linux_shm.h>
89 1.6 fvdl #include <compat/linux/linux_sem.h>
90 1.1 fvdl #include <compat/linux/linux_ipccall.h>
91 1.1 fvdl
92 1.1 fvdl /*
93 1.14 erh * Note: Not all linux architechtures have explicit versions
94 1.14 erh * of the SYSV* syscalls. On the ones that don't
95 1.14 erh * we pretend that they are defined anyway. *_args and
96 1.14 erh * prototypes are defined in individual headers;
97 1.14 erh * syscalls.master lists those syscalls as NOARGS.
98 1.1 fvdl *
99 1.14 erh * The functions in multiarch are the ones that just need
100 1.14 erh * the arguments shuffled around and then use the
101 1.14 erh * normal NetBSD syscall.
102 1.14 erh *
103 1.14 erh * Function in multiarch:
104 1.14 erh * linux_sys_ipc : linux_ipccall.c
105 1.14 erh * liunx_semop : linux_ipccall.c
106 1.14 erh * linux_semget : linux_ipccall.c
107 1.14 erh * linux_msgsnd : linux_ipccall.c
108 1.14 erh * linux_msgrcv : linux_ipccall.c
109 1.14 erh * linux_msgget : linux_ipccall.c
110 1.14 erh * linux_shmdt : linux_ipccall.c
111 1.14 erh * linux_shmget : linux_ipccall.c
112 1.1 fvdl */
113 1.1 fvdl
114 1.11 fvdl #if defined (SYSVSEM) || defined(SYSVSHM) || defined(SYSVMSG)
115 1.1 fvdl /*
116 1.1 fvdl * Convert between Linux and NetBSD ipc_perm structures. Only the
117 1.1 fvdl * order of the fields is different.
118 1.1 fvdl */
119 1.14 erh void
120 1.1 fvdl linux_to_bsd_ipc_perm(lpp, bpp)
121 1.1 fvdl struct linux_ipc_perm *lpp;
122 1.1 fvdl struct ipc_perm *bpp;
123 1.1 fvdl {
124 1.8 mycroft
125 1.1 fvdl bpp->key = lpp->l_key;
126 1.1 fvdl bpp->uid = lpp->l_uid;
127 1.1 fvdl bpp->gid = lpp->l_gid;
128 1.1 fvdl bpp->cuid = lpp->l_cuid;
129 1.1 fvdl bpp->cgid = lpp->l_cgid;
130 1.1 fvdl bpp->mode = lpp->l_mode;
131 1.1 fvdl bpp->seq = lpp->l_seq;
132 1.1 fvdl }
133 1.1 fvdl
134 1.14 erh void
135 1.1 fvdl bsd_to_linux_ipc_perm(bpp, lpp)
136 1.1 fvdl struct ipc_perm *bpp;
137 1.1 fvdl struct linux_ipc_perm *lpp;
138 1.1 fvdl {
139 1.8 mycroft
140 1.1 fvdl lpp->l_key = bpp->key;
141 1.1 fvdl lpp->l_uid = bpp->uid;
142 1.1 fvdl lpp->l_gid = bpp->gid;
143 1.1 fvdl lpp->l_cuid = bpp->cuid;
144 1.1 fvdl lpp->l_cgid = bpp->cgid;
145 1.1 fvdl lpp->l_mode = bpp->mode;
146 1.1 fvdl lpp->l_seq = bpp->seq;
147 1.1 fvdl }
148 1.11 fvdl #endif
149 1.1 fvdl
150 1.1 fvdl #ifdef SYSVSEM
151 1.1 fvdl /*
152 1.6 fvdl * Semaphore operations. Most constants and structures are the same on
153 1.6 fvdl * both systems. Only semctl() needs some extra work.
154 1.1 fvdl */
155 1.6 fvdl
156 1.6 fvdl /*
157 1.6 fvdl * Convert between Linux and NetBSD semid_ds structures.
158 1.6 fvdl */
159 1.14 erh void
160 1.6 fvdl bsd_to_linux_semid_ds(bs, ls)
161 1.6 fvdl struct semid_ds *bs;
162 1.6 fvdl struct linux_semid_ds *ls;
163 1.6 fvdl {
164 1.8 mycroft
165 1.6 fvdl bsd_to_linux_ipc_perm(&bs->sem_perm, &ls->l_sem_perm);
166 1.6 fvdl ls->l_sem_otime = bs->sem_otime;
167 1.6 fvdl ls->l_sem_ctime = bs->sem_ctime;
168 1.6 fvdl ls->l_sem_nsems = bs->sem_nsems;
169 1.8 mycroft ls->l_sem_base = bs->sem_base;
170 1.6 fvdl }
171 1.6 fvdl
172 1.14 erh void
173 1.6 fvdl linux_to_bsd_semid_ds(ls, bs)
174 1.6 fvdl struct linux_semid_ds *ls;
175 1.6 fvdl struct semid_ds *bs;
176 1.6 fvdl {
177 1.8 mycroft
178 1.6 fvdl linux_to_bsd_ipc_perm(&ls->l_sem_perm, &bs->sem_perm);
179 1.6 fvdl bs->sem_otime = ls->l_sem_otime;
180 1.6 fvdl bs->sem_ctime = ls->l_sem_ctime;
181 1.6 fvdl bs->sem_nsems = ls->l_sem_nsems;
182 1.8 mycroft bs->sem_base = ls->l_sem_base;
183 1.6 fvdl }
184 1.6 fvdl
185 1.6 fvdl /*
186 1.6 fvdl * Most of this can be handled by directly passing the arguments on,
187 1.14 erh * but IPC_* require a lot of copy{in,out} because of the extra indirection
188 1.14 erh * (we need to pass a pointer to a union cointaining a pointer to a semid_ds
189 1.14 erh * structure. Linux actually handles this better than we do.)
190 1.6 fvdl */
191 1.1 fvdl int
192 1.14 erh linux_sys_semctl(p, v, retval)
193 1.1 fvdl struct proc *p;
194 1.14 erh void *v;
195 1.1 fvdl register_t *retval;
196 1.1 fvdl {
197 1.14 erh struct linux_sys_semctl_args /* {
198 1.14 erh syscallarg(int) semid;
199 1.14 erh syscallarg(int) semnum;
200 1.14 erh syscallarg(int) cmd;
201 1.14 erh syscallarg(union linux_semun) arg;
202 1.14 erh } */ *uap = v;
203 1.13 mycroft caddr_t sg;
204 1.13 mycroft struct sys___semctl_args nua;
205 1.13 mycroft struct semid_ds *bmp, bm;
206 1.6 fvdl struct linux_semid_ds lm;
207 1.13 mycroft union semun *bup;
208 1.13 mycroft int error;
209 1.6 fvdl
210 1.14 erh SCARG(&nua, semid) = SCARG(uap, semid);
211 1.14 erh SCARG(&nua, semnum) = SCARG(uap, semnum);
212 1.14 erh switch (SCARG(uap, cmd)) {
213 1.13 mycroft case LINUX_IPC_STAT:
214 1.13 mycroft sg = stackgap_init(p->p_emul);
215 1.13 mycroft bup = stackgap_alloc(&sg, sizeof (union semun));
216 1.13 mycroft bmp = stackgap_alloc(&sg, sizeof (struct semid_ds));
217 1.13 mycroft if ((error = copyout(&bmp, bup, sizeof bmp)))
218 1.13 mycroft return error;
219 1.13 mycroft SCARG(&nua, cmd) = IPC_STAT;
220 1.13 mycroft SCARG(&nua, arg) = bup;
221 1.13 mycroft if ((error = sys___semctl(p, &nua, retval)))
222 1.13 mycroft return error;
223 1.13 mycroft if ((error = copyin(bmp, &bm, sizeof bm)))
224 1.13 mycroft return error;
225 1.13 mycroft bsd_to_linux_semid_ds(&bm, &lm);
226 1.14 erh return copyout(&lm, SCARG(uap, arg).l_buf, sizeof lm);
227 1.13 mycroft case LINUX_IPC_SET:
228 1.14 erh if ((error = copyin(SCARG(uap, arg).l_buf, &lm, sizeof lm)))
229 1.13 mycroft return error;
230 1.13 mycroft linux_to_bsd_semid_ds(&lm, &bm);
231 1.13 mycroft sg = stackgap_init(p->p_emul);
232 1.13 mycroft bup = stackgap_alloc(&sg, sizeof (union semun));
233 1.13 mycroft bmp = stackgap_alloc(&sg, sizeof (struct semid_ds));
234 1.13 mycroft if ((error = copyout(&bm, bmp, sizeof bm)))
235 1.13 mycroft return error;
236 1.13 mycroft if ((error = copyout(&bmp, bup, sizeof bmp)))
237 1.13 mycroft return error;
238 1.13 mycroft SCARG(&nua, cmd) = IPC_SET;
239 1.13 mycroft SCARG(&nua, arg) = bup;
240 1.14 erh break;
241 1.13 mycroft case LINUX_IPC_RMID:
242 1.13 mycroft SCARG(&nua, cmd) = IPC_RMID;
243 1.13 mycroft break;
244 1.6 fvdl case LINUX_GETVAL:
245 1.13 mycroft SCARG(&nua, cmd) = GETVAL;
246 1.6 fvdl break;
247 1.6 fvdl case LINUX_GETPID:
248 1.13 mycroft SCARG(&nua, cmd) = GETPID;
249 1.6 fvdl break;
250 1.6 fvdl case LINUX_GETNCNT:
251 1.13 mycroft SCARG(&nua, cmd) = GETNCNT;
252 1.6 fvdl break;
253 1.6 fvdl case LINUX_GETZCNT:
254 1.13 mycroft SCARG(&nua, cmd) = GETZCNT;
255 1.6 fvdl break;
256 1.6 fvdl case LINUX_SETVAL:
257 1.13 mycroft SCARG(&nua, cmd) = SETVAL;
258 1.6 fvdl break;
259 1.6 fvdl default:
260 1.6 fvdl return EINVAL;
261 1.6 fvdl }
262 1.13 mycroft return sys___semctl(p, &nua, retval);
263 1.1 fvdl }
264 1.1 fvdl #endif /* SYSVSEM */
265 1.1 fvdl
266 1.1 fvdl #ifdef SYSVMSG
267 1.6 fvdl
268 1.14 erh void
269 1.6 fvdl linux_to_bsd_msqid_ds(lmp, bmp)
270 1.6 fvdl struct linux_msqid_ds *lmp;
271 1.6 fvdl struct msqid_ds *bmp;
272 1.6 fvdl {
273 1.8 mycroft
274 1.6 fvdl linux_to_bsd_ipc_perm(&lmp->l_msg_perm, &bmp->msg_perm);
275 1.6 fvdl bmp->msg_first = lmp->l_msg_first;
276 1.6 fvdl bmp->msg_last = lmp->l_msg_last;
277 1.6 fvdl bmp->msg_cbytes = lmp->l_msg_cbytes;
278 1.6 fvdl bmp->msg_qnum = lmp->l_msg_qnum;
279 1.6 fvdl bmp->msg_qbytes = lmp->l_msg_qbytes;
280 1.6 fvdl bmp->msg_lspid = lmp->l_msg_lspid;
281 1.6 fvdl bmp->msg_lrpid = lmp->l_msg_lrpid;
282 1.6 fvdl bmp->msg_stime = lmp->l_msg_stime;
283 1.6 fvdl bmp->msg_rtime = lmp->l_msg_rtime;
284 1.6 fvdl bmp->msg_ctime = lmp->l_msg_ctime;
285 1.6 fvdl }
286 1.6 fvdl
287 1.14 erh void
288 1.6 fvdl bsd_to_linux_msqid_ds(bmp, lmp)
289 1.6 fvdl struct msqid_ds *bmp;
290 1.6 fvdl struct linux_msqid_ds *lmp;
291 1.6 fvdl {
292 1.8 mycroft
293 1.6 fvdl bsd_to_linux_ipc_perm(&bmp->msg_perm, &lmp->l_msg_perm);
294 1.6 fvdl lmp->l_msg_first = bmp->msg_first;
295 1.6 fvdl lmp->l_msg_last = bmp->msg_last;
296 1.6 fvdl lmp->l_msg_cbytes = bmp->msg_cbytes;
297 1.6 fvdl lmp->l_msg_qnum = bmp->msg_qnum;
298 1.6 fvdl lmp->l_msg_qbytes = bmp->msg_qbytes;
299 1.6 fvdl lmp->l_msg_lspid = bmp->msg_lspid;
300 1.6 fvdl lmp->l_msg_lrpid = bmp->msg_lrpid;
301 1.6 fvdl lmp->l_msg_stime = bmp->msg_stime;
302 1.6 fvdl lmp->l_msg_rtime = bmp->msg_rtime;
303 1.6 fvdl lmp->l_msg_ctime = bmp->msg_ctime;
304 1.6 fvdl }
305 1.6 fvdl
306 1.14 erh int
307 1.14 erh linux_sys_msgctl(p, v, retval)
308 1.1 fvdl struct proc *p;
309 1.14 erh void *v;
310 1.1 fvdl register_t *retval;
311 1.1 fvdl {
312 1.14 erh struct linux_sys_msgctl_args /* {
313 1.14 erh syscallarg(int) msqid;
314 1.14 erh syscallarg(int) cmd;
315 1.14 erh syscallarg(struct linux_msqid_ds *) buf;
316 1.14 erh } */ *uap = v;
317 1.13 mycroft caddr_t sg;
318 1.13 mycroft struct sys_msgctl_args nua;
319 1.13 mycroft struct msqid_ds *bmp, bm;
320 1.6 fvdl struct linux_msqid_ds lm;
321 1.6 fvdl int error;
322 1.6 fvdl
323 1.14 erh SCARG(&nua, msqid) = SCARG(uap, msqid);
324 1.14 erh switch (SCARG(uap, cmd)) {
325 1.13 mycroft case LINUX_IPC_STAT:
326 1.13 mycroft sg = stackgap_init(p->p_emul);
327 1.13 mycroft bmp = stackgap_alloc(&sg, sizeof (struct msqid_ds));
328 1.13 mycroft SCARG(&nua, cmd) = IPC_STAT;
329 1.13 mycroft SCARG(&nua, buf) = bmp;
330 1.13 mycroft if ((error = sys_msgctl(p, &nua, retval)))
331 1.13 mycroft return error;
332 1.13 mycroft if ((error = copyin(bmp, &bm, sizeof bm)))
333 1.13 mycroft return error;
334 1.13 mycroft bsd_to_linux_msqid_ds(&bm, &lm);
335 1.14 erh return copyout(&lm, SCARG(uap, buf), sizeof lm);
336 1.6 fvdl case LINUX_IPC_SET:
337 1.14 erh if ((error = copyin(SCARG(uap, buf), &lm, sizeof lm)))
338 1.6 fvdl return error;
339 1.6 fvdl linux_to_bsd_msqid_ds(&lm, &bm);
340 1.6 fvdl sg = stackgap_init(p->p_emul);
341 1.13 mycroft bmp = stackgap_alloc(&sg, sizeof bm);
342 1.13 mycroft if ((error = copyout(&bm, bmp, sizeof bm)))
343 1.6 fvdl return error;
344 1.13 mycroft SCARG(&nua, cmd) = IPC_SET;
345 1.13 mycroft SCARG(&nua, buf) = bmp;
346 1.14 erh break;
347 1.13 mycroft case LINUX_IPC_RMID:
348 1.13 mycroft SCARG(&nua, cmd) = IPC_RMID;
349 1.13 mycroft SCARG(&nua, buf) = NULL;
350 1.13 mycroft break;
351 1.13 mycroft default:
352 1.13 mycroft return EINVAL;
353 1.6 fvdl }
354 1.13 mycroft return sys_msgctl(p, &nua, retval);
355 1.1 fvdl }
356 1.1 fvdl #endif /* SYSVMSG */
357 1.1 fvdl
358 1.1 fvdl #ifdef SYSVSHM
359 1.1 fvdl /*
360 1.1 fvdl * shmat(2). Very straightforward, except that Linux passes a pointer
361 1.1 fvdl * in which the return value is to be passed. This is subsequently
362 1.1 fvdl * handled by libc, apparently.
363 1.1 fvdl */
364 1.14 erh int
365 1.14 erh linux_sys_shmat(p, v, retval)
366 1.1 fvdl struct proc *p;
367 1.14 erh void *v;
368 1.1 fvdl register_t *retval;
369 1.1 fvdl {
370 1.14 erh struct linux_sys_shmat_args /* {
371 1.14 erh syscallarg(int) shmid;
372 1.14 erh syscallarg(void *) shmaddr;
373 1.14 erh syscallarg(int) shmflg;
374 1.14 erh syscallarg(u_long *) raddr;
375 1.14 erh } */ *uap = v;
376 1.1 fvdl int error;
377 1.1 fvdl
378 1.14 erh if ((error = sys_shmat(p, uap, retval)))
379 1.1 fvdl return error;
380 1.1 fvdl
381 1.14 erh if ((error = copyout(&retval[0], (caddr_t) SCARG(uap, raddr),
382 1.1 fvdl sizeof retval[0])))
383 1.1 fvdl return error;
384 1.14 erh
385 1.1 fvdl retval[0] = 0;
386 1.1 fvdl return 0;
387 1.1 fvdl }
388 1.1 fvdl
389 1.1 fvdl /*
390 1.1 fvdl * Convert between Linux and NetBSD shmid_ds structures.
391 1.1 fvdl * The order of the fields is once again the difference, and
392 1.1 fvdl * we also need a place to store the internal data pointer
393 1.1 fvdl * in, which is unfortunately stored in this structure.
394 1.1 fvdl *
395 1.1 fvdl * We abuse a Linux internal field for that.
396 1.1 fvdl */
397 1.14 erh void
398 1.1 fvdl linux_to_bsd_shmid_ds(lsp, bsp)
399 1.1 fvdl struct linux_shmid_ds *lsp;
400 1.1 fvdl struct shmid_ds *bsp;
401 1.1 fvdl {
402 1.8 mycroft
403 1.1 fvdl linux_to_bsd_ipc_perm(&lsp->l_shm_perm, &bsp->shm_perm);
404 1.1 fvdl bsp->shm_segsz = lsp->l_shm_segsz;
405 1.1 fvdl bsp->shm_lpid = lsp->l_shm_lpid;
406 1.1 fvdl bsp->shm_cpid = lsp->l_shm_cpid;
407 1.1 fvdl bsp->shm_nattch = lsp->l_shm_nattch;
408 1.1 fvdl bsp->shm_atime = lsp->l_shm_atime;
409 1.1 fvdl bsp->shm_dtime = lsp->l_shm_dtime;
410 1.1 fvdl bsp->shm_ctime = lsp->l_shm_ctime;
411 1.1 fvdl bsp->shm_internal = lsp->l_private2; /* XXX Oh well. */
412 1.1 fvdl }
413 1.1 fvdl
414 1.14 erh void
415 1.1 fvdl bsd_to_linux_shmid_ds(bsp, lsp)
416 1.1 fvdl struct shmid_ds *bsp;
417 1.1 fvdl struct linux_shmid_ds *lsp;
418 1.1 fvdl {
419 1.8 mycroft
420 1.1 fvdl bsd_to_linux_ipc_perm(&bsp->shm_perm, &lsp->l_shm_perm);
421 1.1 fvdl lsp->l_shm_segsz = bsp->shm_segsz;
422 1.1 fvdl lsp->l_shm_lpid = bsp->shm_lpid;
423 1.1 fvdl lsp->l_shm_cpid = bsp->shm_cpid;
424 1.1 fvdl lsp->l_shm_nattch = bsp->shm_nattch;
425 1.1 fvdl lsp->l_shm_atime = bsp->shm_atime;
426 1.1 fvdl lsp->l_shm_dtime = bsp->shm_dtime;
427 1.1 fvdl lsp->l_shm_ctime = bsp->shm_ctime;
428 1.1 fvdl lsp->l_private2 = bsp->shm_internal; /* XXX */
429 1.1 fvdl }
430 1.1 fvdl
431 1.1 fvdl /*
432 1.1 fvdl * shmctl. Not implemented (for now): IPC_INFO, SHM_INFO, SHM_STAT
433 1.1 fvdl * SHM_LOCK and SHM_UNLOCK are passed on, but currently not implemented
434 1.1 fvdl * by NetBSD itself.
435 1.1 fvdl *
436 1.1 fvdl * The usual structure conversion and massaging is done.
437 1.1 fvdl */
438 1.14 erh int
439 1.14 erh linux_sys_shmctl(p, v, retval)
440 1.1 fvdl struct proc *p;
441 1.14 erh void *v;
442 1.1 fvdl register_t *retval;
443 1.1 fvdl {
444 1.14 erh struct linux_sys_shmctl_args /* {
445 1.14 erh syscallarg(int) shmid;
446 1.14 erh syscallarg(int) cmd;
447 1.14 erh syscallarg(struct linux_shmid_ds *) buf;
448 1.14 erh } */ *uap = v;
449 1.1 fvdl caddr_t sg;
450 1.13 mycroft struct sys_shmctl_args nua;
451 1.1 fvdl struct shmid_ds *bsp, bs;
452 1.13 mycroft struct linux_shmid_ds ls;
453 1.13 mycroft int error;
454 1.1 fvdl
455 1.14 erh SCARG(&nua, shmid) = SCARG(uap, shmid);
456 1.14 erh switch (SCARG(uap, cmd)) {
457 1.1 fvdl case LINUX_IPC_STAT:
458 1.4 christos sg = stackgap_init(p->p_emul);
459 1.14 erh bsp = stackgap_alloc(&sg, sizeof(struct shmid_ds));
460 1.13 mycroft SCARG(&nua, cmd) = IPC_STAT;
461 1.13 mycroft SCARG(&nua, buf) = bsp;
462 1.13 mycroft if ((error = sys_shmctl(p, &nua, retval)))
463 1.1 fvdl return error;
464 1.14 erh if ((error = copyin(SCARG(&nua, buf), &bs, sizeof bs)))
465 1.1 fvdl return error;
466 1.13 mycroft bsd_to_linux_shmid_ds(&bs, &ls);
467 1.14 erh return copyout(&ls, SCARG(uap, buf), sizeof ls);
468 1.1 fvdl case LINUX_IPC_SET:
469 1.14 erh if ((error = copyin(SCARG(uap, buf), &ls, sizeof ls)))
470 1.1 fvdl return error;
471 1.13 mycroft linux_to_bsd_shmid_ds(&ls, &bs);
472 1.4 christos sg = stackgap_init(p->p_emul);
473 1.13 mycroft bsp = stackgap_alloc(&sg, sizeof bs);
474 1.13 mycroft if ((error = copyout(&bs, bsp, sizeof bs)))
475 1.1 fvdl return error;
476 1.13 mycroft SCARG(&nua, cmd) = IPC_SET;
477 1.13 mycroft SCARG(&nua, buf) = bsp;
478 1.14 erh break;
479 1.1 fvdl case LINUX_IPC_RMID:
480 1.13 mycroft SCARG(&nua, cmd) = IPC_RMID;
481 1.13 mycroft SCARG(&nua, buf) = NULL;
482 1.13 mycroft break;
483 1.1 fvdl case LINUX_SHM_LOCK:
484 1.13 mycroft SCARG(&nua, cmd) = SHM_LOCK;
485 1.13 mycroft SCARG(&nua, buf) = NULL;
486 1.13 mycroft break;
487 1.1 fvdl case LINUX_SHM_UNLOCK:
488 1.13 mycroft SCARG(&nua, cmd) = SHM_UNLOCK;
489 1.13 mycroft SCARG(&nua, buf) = NULL;
490 1.13 mycroft break;
491 1.1 fvdl case LINUX_IPC_INFO:
492 1.1 fvdl case LINUX_SHM_STAT:
493 1.1 fvdl case LINUX_SHM_INFO:
494 1.1 fvdl default:
495 1.1 fvdl return EINVAL;
496 1.1 fvdl }
497 1.13 mycroft return sys_shmctl(p, &nua, retval);
498 1.1 fvdl }
499 1.1 fvdl #endif /* SYSVSHM */
500