linux_ipc.c revision 1.31.4.2 1 1.31.4.2 yamt /* $NetBSD: linux_ipc.c,v 1.31.4.2 2006/12/30 20:47:38 yamt Exp $ */
2 1.14 erh
3 1.14 erh /*-
4 1.16 fvdl * Copyright (c) 1995, 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.16 fvdl * by Frank van der Linden and 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.1 fvdl */
38 1.24 lukem
39 1.24 lukem #include <sys/cdefs.h>
40 1.31.4.2 yamt __KERNEL_RCSID(0, "$NetBSD: linux_ipc.c,v 1.31.4.2 2006/12/30 20:47:38 yamt Exp $");
41 1.19 erh
42 1.23 mrg #if defined(_KERNEL_OPT)
43 1.19 erh #include "opt_sysv.h"
44 1.22 jdolecek #endif
45 1.1 fvdl
46 1.1 fvdl #include <sys/param.h>
47 1.1 fvdl #include <sys/shm.h>
48 1.6 fvdl #include <sys/sem.h>
49 1.1 fvdl #include <sys/msg.h>
50 1.1 fvdl #include <sys/proc.h>
51 1.1 fvdl #include <sys/systm.h>
52 1.1 fvdl
53 1.1 fvdl #include <sys/mount.h>
54 1.28 thorpej #include <sys/sa.h>
55 1.1 fvdl #include <sys/syscallargs.h>
56 1.1 fvdl
57 1.15 christos #include <compat/linux/common/linux_types.h>
58 1.15 christos #include <compat/linux/common/linux_signal.h>
59 1.15 christos #include <compat/linux/common/linux_util.h>
60 1.15 christos #include <compat/linux/common/linux_ipc.h>
61 1.15 christos #include <compat/linux/common/linux_msg.h>
62 1.15 christos #include <compat/linux/common/linux_shm.h>
63 1.15 christos #include <compat/linux/common/linux_sem.h>
64 1.31.4.1 yamt
65 1.31.4.1 yamt #include <compat/linux/linux_syscallargs.h>
66 1.31.4.1 yamt #include <compat/linux/linux_syscall.h>
67 1.31.4.1 yamt
68 1.15 christos #include <compat/linux/common/linux_ipccall.h>
69 1.1 fvdl
70 1.1 fvdl /*
71 1.14 erh * Note: Not all linux architechtures have explicit versions
72 1.14 erh * of the SYSV* syscalls. On the ones that don't
73 1.14 erh * we pretend that they are defined anyway. *_args and
74 1.14 erh * prototypes are defined in individual headers;
75 1.14 erh * syscalls.master lists those syscalls as NOARGS.
76 1.1 fvdl *
77 1.14 erh * The functions in multiarch are the ones that just need
78 1.14 erh * the arguments shuffled around and then use the
79 1.14 erh * normal NetBSD syscall.
80 1.14 erh *
81 1.14 erh * Function in multiarch:
82 1.14 erh * linux_sys_ipc : linux_ipccall.c
83 1.14 erh * liunx_semop : linux_ipccall.c
84 1.14 erh * linux_semget : linux_ipccall.c
85 1.14 erh * linux_msgsnd : linux_ipccall.c
86 1.14 erh * linux_msgrcv : linux_ipccall.c
87 1.14 erh * linux_msgget : linux_ipccall.c
88 1.14 erh * linux_shmdt : linux_ipccall.c
89 1.14 erh * linux_shmget : linux_ipccall.c
90 1.1 fvdl */
91 1.1 fvdl
92 1.11 fvdl #if defined (SYSVSEM) || defined(SYSVSHM) || defined(SYSVMSG)
93 1.1 fvdl /*
94 1.1 fvdl * Convert between Linux and NetBSD ipc_perm structures. Only the
95 1.1 fvdl * order of the fields is different.
96 1.1 fvdl */
97 1.14 erh void
98 1.1 fvdl linux_to_bsd_ipc_perm(lpp, bpp)
99 1.1 fvdl struct linux_ipc_perm *lpp;
100 1.1 fvdl struct ipc_perm *bpp;
101 1.1 fvdl {
102 1.8 mycroft
103 1.21 thorpej bpp->_key = lpp->l_key;
104 1.1 fvdl bpp->uid = lpp->l_uid;
105 1.1 fvdl bpp->gid = lpp->l_gid;
106 1.1 fvdl bpp->cuid = lpp->l_cuid;
107 1.1 fvdl bpp->cgid = lpp->l_cgid;
108 1.1 fvdl bpp->mode = lpp->l_mode;
109 1.21 thorpej bpp->_seq = lpp->l_seq;
110 1.1 fvdl }
111 1.1 fvdl
112 1.14 erh void
113 1.31.4.1 yamt linux_to_bsd_ipc64_perm(lpp, bpp)
114 1.31.4.1 yamt struct linux_ipc64_perm *lpp;
115 1.31.4.1 yamt struct ipc_perm *bpp;
116 1.31.4.1 yamt {
117 1.31.4.1 yamt bpp->_key = lpp->l_key;
118 1.31.4.1 yamt bpp->uid = lpp->l_uid;
119 1.31.4.1 yamt bpp->gid = lpp->l_gid;
120 1.31.4.1 yamt bpp->cuid = lpp->l_cuid;
121 1.31.4.1 yamt bpp->cgid = lpp->l_cgid;
122 1.31.4.1 yamt bpp->mode = lpp->l_mode;
123 1.31.4.1 yamt bpp->_seq = lpp->l_seq;
124 1.31.4.1 yamt }
125 1.31.4.1 yamt
126 1.31.4.1 yamt void
127 1.1 fvdl bsd_to_linux_ipc_perm(bpp, lpp)
128 1.1 fvdl struct ipc_perm *bpp;
129 1.1 fvdl struct linux_ipc_perm *lpp;
130 1.1 fvdl {
131 1.8 mycroft
132 1.21 thorpej lpp->l_key = bpp->_key;
133 1.1 fvdl lpp->l_uid = bpp->uid;
134 1.1 fvdl lpp->l_gid = bpp->gid;
135 1.1 fvdl lpp->l_cuid = bpp->cuid;
136 1.1 fvdl lpp->l_cgid = bpp->cgid;
137 1.1 fvdl lpp->l_mode = bpp->mode;
138 1.21 thorpej lpp->l_seq = bpp->_seq;
139 1.1 fvdl }
140 1.31.4.1 yamt
141 1.31.4.1 yamt void
142 1.31.4.1 yamt bsd_to_linux_ipc64_perm(bpp, lpp)
143 1.31.4.1 yamt struct ipc_perm *bpp;
144 1.31.4.1 yamt struct linux_ipc64_perm *lpp;
145 1.31.4.1 yamt {
146 1.31.4.1 yamt lpp->l_key = bpp->_key;
147 1.31.4.1 yamt lpp->l_uid = bpp->uid;
148 1.31.4.1 yamt lpp->l_gid = bpp->gid;
149 1.31.4.1 yamt lpp->l_cuid = bpp->cuid;
150 1.31.4.1 yamt lpp->l_cgid = bpp->cgid;
151 1.31.4.1 yamt lpp->l_mode = bpp->mode;
152 1.31.4.1 yamt lpp->l_seq = bpp->_seq;
153 1.31.4.1 yamt }
154 1.31.4.1 yamt
155 1.11 fvdl #endif
156 1.1 fvdl
157 1.1 fvdl #ifdef SYSVSEM
158 1.1 fvdl /*
159 1.6 fvdl * Semaphore operations. Most constants and structures are the same on
160 1.6 fvdl * both systems. Only semctl() needs some extra work.
161 1.1 fvdl */
162 1.6 fvdl
163 1.6 fvdl /*
164 1.6 fvdl * Convert between Linux and NetBSD semid_ds structures.
165 1.6 fvdl */
166 1.14 erh void
167 1.6 fvdl bsd_to_linux_semid_ds(bs, ls)
168 1.6 fvdl struct semid_ds *bs;
169 1.6 fvdl struct linux_semid_ds *ls;
170 1.6 fvdl {
171 1.8 mycroft
172 1.6 fvdl bsd_to_linux_ipc_perm(&bs->sem_perm, &ls->l_sem_perm);
173 1.6 fvdl ls->l_sem_otime = bs->sem_otime;
174 1.6 fvdl ls->l_sem_ctime = bs->sem_ctime;
175 1.6 fvdl ls->l_sem_nsems = bs->sem_nsems;
176 1.21 thorpej ls->l_sem_base = bs->_sem_base;
177 1.6 fvdl }
178 1.6 fvdl
179 1.14 erh void
180 1.6 fvdl linux_to_bsd_semid_ds(ls, bs)
181 1.6 fvdl struct linux_semid_ds *ls;
182 1.6 fvdl struct semid_ds *bs;
183 1.6 fvdl {
184 1.8 mycroft
185 1.6 fvdl linux_to_bsd_ipc_perm(&ls->l_sem_perm, &bs->sem_perm);
186 1.6 fvdl bs->sem_otime = ls->l_sem_otime;
187 1.6 fvdl bs->sem_ctime = ls->l_sem_ctime;
188 1.6 fvdl bs->sem_nsems = ls->l_sem_nsems;
189 1.21 thorpej bs->_sem_base = ls->l_sem_base;
190 1.6 fvdl }
191 1.6 fvdl
192 1.6 fvdl /*
193 1.21 thorpej * Most of this can be handled by directly passing the arguments on; we
194 1.21 thorpej * just need to frob the `cmd' and convert the semid_ds and semun.
195 1.6 fvdl */
196 1.1 fvdl int
197 1.28 thorpej linux_sys_semctl(l, v, retval)
198 1.28 thorpej struct lwp *l;
199 1.14 erh void *v;
200 1.1 fvdl register_t *retval;
201 1.1 fvdl {
202 1.14 erh struct linux_sys_semctl_args /* {
203 1.14 erh syscallarg(int) semid;
204 1.14 erh syscallarg(int) semnum;
205 1.14 erh syscallarg(int) cmd;
206 1.14 erh syscallarg(union linux_semun) arg;
207 1.14 erh } */ *uap = v;
208 1.21 thorpej struct semid_ds sembuf;
209 1.21 thorpej struct linux_semid_ds lsembuf;
210 1.21 thorpej union __semun semun;
211 1.21 thorpej int cmd, error;
212 1.21 thorpej void *pass_arg = NULL;
213 1.21 thorpej
214 1.21 thorpej cmd = SCARG(uap, cmd);
215 1.21 thorpej
216 1.21 thorpej switch (cmd) {
217 1.21 thorpej case LINUX_IPC_SET:
218 1.21 thorpej pass_arg = &sembuf;
219 1.21 thorpej cmd = IPC_SET;
220 1.21 thorpej break;
221 1.6 fvdl
222 1.13 mycroft case LINUX_IPC_STAT:
223 1.21 thorpej pass_arg = &sembuf;
224 1.21 thorpej cmd = IPC_STAT;
225 1.14 erh break;
226 1.21 thorpej
227 1.13 mycroft case LINUX_IPC_RMID:
228 1.21 thorpej cmd = IPC_RMID;
229 1.13 mycroft break;
230 1.21 thorpej
231 1.6 fvdl case LINUX_GETVAL:
232 1.21 thorpej cmd = GETVAL;
233 1.6 fvdl break;
234 1.21 thorpej
235 1.6 fvdl case LINUX_GETPID:
236 1.21 thorpej cmd = GETPID;
237 1.6 fvdl break;
238 1.21 thorpej
239 1.6 fvdl case LINUX_GETNCNT:
240 1.21 thorpej cmd = GETNCNT;
241 1.6 fvdl break;
242 1.21 thorpej
243 1.6 fvdl case LINUX_GETZCNT:
244 1.21 thorpej cmd = GETZCNT;
245 1.6 fvdl break;
246 1.21 thorpej
247 1.21 thorpej case LINUX_GETALL:
248 1.21 thorpej pass_arg = &semun;
249 1.21 thorpej semun.array = SCARG(uap, arg).l_array;
250 1.21 thorpej cmd = GETALL;
251 1.21 thorpej break;
252 1.21 thorpej
253 1.6 fvdl case LINUX_SETVAL:
254 1.21 thorpej pass_arg = &semun;
255 1.21 thorpej semun.val = SCARG(uap, arg).l_val;
256 1.21 thorpej cmd = SETVAL;
257 1.20 tron break;
258 1.21 thorpej
259 1.20 tron case LINUX_SETALL:
260 1.21 thorpej pass_arg = &semun;
261 1.21 thorpej semun.array = SCARG(uap, arg).l_array;
262 1.21 thorpej cmd = SETALL;
263 1.6 fvdl break;
264 1.21 thorpej
265 1.6 fvdl default:
266 1.21 thorpej return (EINVAL);
267 1.21 thorpej }
268 1.21 thorpej
269 1.21 thorpej if (cmd == IPC_SET) {
270 1.21 thorpej error = copyin(SCARG(uap, arg).l_buf, &lsembuf,
271 1.21 thorpej sizeof(lsembuf));
272 1.21 thorpej if (error)
273 1.21 thorpej return (error);
274 1.21 thorpej linux_to_bsd_semid_ds(&lsembuf, &sembuf);
275 1.21 thorpej }
276 1.21 thorpej
277 1.31.4.2 yamt error = semctl1(l, SCARG(uap, semid), SCARG(uap, semnum), cmd,
278 1.21 thorpej pass_arg, retval);
279 1.21 thorpej
280 1.21 thorpej if (error == 0 && cmd == IPC_STAT) {
281 1.21 thorpej bsd_to_linux_semid_ds(&sembuf, &lsembuf);
282 1.21 thorpej error = copyout(&lsembuf, SCARG(uap, arg).l_buf,
283 1.21 thorpej sizeof(lsembuf));
284 1.6 fvdl }
285 1.21 thorpej
286 1.21 thorpej return (error);
287 1.1 fvdl }
288 1.1 fvdl #endif /* SYSVSEM */
289 1.1 fvdl
290 1.1 fvdl #ifdef SYSVMSG
291 1.6 fvdl
292 1.14 erh void
293 1.6 fvdl linux_to_bsd_msqid_ds(lmp, bmp)
294 1.6 fvdl struct linux_msqid_ds *lmp;
295 1.6 fvdl struct msqid_ds *bmp;
296 1.6 fvdl {
297 1.8 mycroft
298 1.6 fvdl linux_to_bsd_ipc_perm(&lmp->l_msg_perm, &bmp->msg_perm);
299 1.21 thorpej bmp->_msg_first = lmp->l_msg_first;
300 1.21 thorpej bmp->_msg_last = lmp->l_msg_last;
301 1.21 thorpej bmp->_msg_cbytes = lmp->l_msg_cbytes;
302 1.6 fvdl bmp->msg_qnum = lmp->l_msg_qnum;
303 1.6 fvdl bmp->msg_qbytes = lmp->l_msg_qbytes;
304 1.6 fvdl bmp->msg_lspid = lmp->l_msg_lspid;
305 1.6 fvdl bmp->msg_lrpid = lmp->l_msg_lrpid;
306 1.6 fvdl bmp->msg_stime = lmp->l_msg_stime;
307 1.6 fvdl bmp->msg_rtime = lmp->l_msg_rtime;
308 1.6 fvdl bmp->msg_ctime = lmp->l_msg_ctime;
309 1.6 fvdl }
310 1.6 fvdl
311 1.14 erh void
312 1.6 fvdl bsd_to_linux_msqid_ds(bmp, lmp)
313 1.6 fvdl struct msqid_ds *bmp;
314 1.6 fvdl struct linux_msqid_ds *lmp;
315 1.6 fvdl {
316 1.8 mycroft
317 1.6 fvdl bsd_to_linux_ipc_perm(&bmp->msg_perm, &lmp->l_msg_perm);
318 1.21 thorpej lmp->l_msg_first = bmp->_msg_first;
319 1.21 thorpej lmp->l_msg_last = bmp->_msg_last;
320 1.21 thorpej lmp->l_msg_cbytes = bmp->_msg_cbytes;
321 1.6 fvdl lmp->l_msg_qnum = bmp->msg_qnum;
322 1.6 fvdl lmp->l_msg_qbytes = bmp->msg_qbytes;
323 1.6 fvdl lmp->l_msg_lspid = bmp->msg_lspid;
324 1.6 fvdl lmp->l_msg_lrpid = bmp->msg_lrpid;
325 1.6 fvdl lmp->l_msg_stime = bmp->msg_stime;
326 1.6 fvdl lmp->l_msg_rtime = bmp->msg_rtime;
327 1.6 fvdl lmp->l_msg_ctime = bmp->msg_ctime;
328 1.6 fvdl }
329 1.6 fvdl
330 1.14 erh int
331 1.28 thorpej linux_sys_msgctl(l, v, retval)
332 1.28 thorpej struct lwp *l;
333 1.14 erh void *v;
334 1.1 fvdl register_t *retval;
335 1.1 fvdl {
336 1.14 erh struct linux_sys_msgctl_args /* {
337 1.14 erh syscallarg(int) msqid;
338 1.14 erh syscallarg(int) cmd;
339 1.14 erh syscallarg(struct linux_msqid_ds *) buf;
340 1.14 erh } */ *uap = v;
341 1.28 thorpej struct proc *p = l->l_proc;
342 1.13 mycroft caddr_t sg;
343 1.21 thorpej struct sys___msgctl13_args nua;
344 1.13 mycroft struct msqid_ds *bmp, bm;
345 1.6 fvdl struct linux_msqid_ds lm;
346 1.6 fvdl int error;
347 1.6 fvdl
348 1.14 erh SCARG(&nua, msqid) = SCARG(uap, msqid);
349 1.14 erh switch (SCARG(uap, cmd)) {
350 1.13 mycroft case LINUX_IPC_STAT:
351 1.26 christos sg = stackgap_init(p, 0);
352 1.26 christos bmp = stackgap_alloc(p, &sg, sizeof (struct msqid_ds));
353 1.13 mycroft SCARG(&nua, cmd) = IPC_STAT;
354 1.13 mycroft SCARG(&nua, buf) = bmp;
355 1.28 thorpej if ((error = sys___msgctl13(l, &nua, retval)))
356 1.13 mycroft return error;
357 1.13 mycroft if ((error = copyin(bmp, &bm, sizeof bm)))
358 1.13 mycroft return error;
359 1.13 mycroft bsd_to_linux_msqid_ds(&bm, &lm);
360 1.14 erh return copyout(&lm, SCARG(uap, buf), sizeof lm);
361 1.6 fvdl case LINUX_IPC_SET:
362 1.14 erh if ((error = copyin(SCARG(uap, buf), &lm, sizeof lm)))
363 1.6 fvdl return error;
364 1.6 fvdl linux_to_bsd_msqid_ds(&lm, &bm);
365 1.26 christos sg = stackgap_init(p, 0);
366 1.26 christos bmp = stackgap_alloc(p, &sg, sizeof bm);
367 1.13 mycroft if ((error = copyout(&bm, bmp, sizeof bm)))
368 1.6 fvdl return error;
369 1.13 mycroft SCARG(&nua, cmd) = IPC_SET;
370 1.13 mycroft SCARG(&nua, buf) = bmp;
371 1.14 erh break;
372 1.13 mycroft case LINUX_IPC_RMID:
373 1.13 mycroft SCARG(&nua, cmd) = IPC_RMID;
374 1.13 mycroft SCARG(&nua, buf) = NULL;
375 1.13 mycroft break;
376 1.13 mycroft default:
377 1.13 mycroft return EINVAL;
378 1.6 fvdl }
379 1.28 thorpej return sys___msgctl13(l, &nua, retval);
380 1.1 fvdl }
381 1.1 fvdl #endif /* SYSVMSG */
382 1.1 fvdl
383 1.1 fvdl #ifdef SYSVSHM
384 1.1 fvdl /*
385 1.30 jdolecek * shmget(2). Just make sure the Linux-compatible shmat() semantics
386 1.30 jdolecek * is enabled for the segment, so that shmat() succeeds even when
387 1.30 jdolecek * the segment would be removed.
388 1.30 jdolecek */
389 1.30 jdolecek int
390 1.30 jdolecek linux_sys_shmget(l, v, retval)
391 1.30 jdolecek struct lwp *l;
392 1.30 jdolecek void *v;
393 1.30 jdolecek register_t *retval;
394 1.30 jdolecek {
395 1.30 jdolecek struct sys_shmget_args /* {
396 1.30 jdolecek syscallarg(key_t) key;
397 1.30 jdolecek syscallarg(size_t) size;
398 1.30 jdolecek syscallarg(int) shmflg;
399 1.30 jdolecek } */ *uap = v;
400 1.30 jdolecek
401 1.30 jdolecek SCARG(uap, shmflg) |= _SHM_RMLINGER;
402 1.30 jdolecek return sys_shmget(l, uap, retval);
403 1.30 jdolecek }
404 1.30 jdolecek
405 1.30 jdolecek /*
406 1.1 fvdl * shmat(2). Very straightforward, except that Linux passes a pointer
407 1.1 fvdl * in which the return value is to be passed. This is subsequently
408 1.1 fvdl * handled by libc, apparently.
409 1.1 fvdl */
410 1.31.4.2 yamt #ifndef __amd64__
411 1.14 erh int
412 1.28 thorpej linux_sys_shmat(l, v, retval)
413 1.28 thorpej struct lwp *l;
414 1.14 erh void *v;
415 1.1 fvdl register_t *retval;
416 1.1 fvdl {
417 1.14 erh struct linux_sys_shmat_args /* {
418 1.14 erh syscallarg(int) shmid;
419 1.14 erh syscallarg(void *) shmaddr;
420 1.14 erh syscallarg(int) shmflg;
421 1.14 erh syscallarg(u_long *) raddr;
422 1.14 erh } */ *uap = v;
423 1.1 fvdl int error;
424 1.1 fvdl
425 1.29 jdolecek if ((error = sys_shmat(l, uap, retval)))
426 1.1 fvdl return error;
427 1.1 fvdl
428 1.31.4.2 yamt #ifndef __amd64__
429 1.29 jdolecek if ((error = copyout(&retval[0], (caddr_t) SCARG(uap, raddr),
430 1.1 fvdl sizeof retval[0])))
431 1.1 fvdl return error;
432 1.31 perry
433 1.1 fvdl retval[0] = 0;
434 1.31.4.2 yamt #endif
435 1.1 fvdl return 0;
436 1.1 fvdl }
437 1.31.4.2 yamt #endif /* __amd64__ */
438 1.1 fvdl
439 1.1 fvdl /*
440 1.1 fvdl * Convert between Linux and NetBSD shmid_ds structures.
441 1.1 fvdl * The order of the fields is once again the difference, and
442 1.1 fvdl * we also need a place to store the internal data pointer
443 1.1 fvdl * in, which is unfortunately stored in this structure.
444 1.1 fvdl *
445 1.1 fvdl * We abuse a Linux internal field for that.
446 1.1 fvdl */
447 1.14 erh void
448 1.1 fvdl linux_to_bsd_shmid_ds(lsp, bsp)
449 1.1 fvdl struct linux_shmid_ds *lsp;
450 1.1 fvdl struct shmid_ds *bsp;
451 1.1 fvdl {
452 1.8 mycroft
453 1.1 fvdl linux_to_bsd_ipc_perm(&lsp->l_shm_perm, &bsp->shm_perm);
454 1.1 fvdl bsp->shm_segsz = lsp->l_shm_segsz;
455 1.1 fvdl bsp->shm_lpid = lsp->l_shm_lpid;
456 1.1 fvdl bsp->shm_cpid = lsp->l_shm_cpid;
457 1.1 fvdl bsp->shm_nattch = lsp->l_shm_nattch;
458 1.1 fvdl bsp->shm_atime = lsp->l_shm_atime;
459 1.1 fvdl bsp->shm_dtime = lsp->l_shm_dtime;
460 1.1 fvdl bsp->shm_ctime = lsp->l_shm_ctime;
461 1.21 thorpej bsp->_shm_internal = lsp->l_private2; /* XXX Oh well. */
462 1.1 fvdl }
463 1.1 fvdl
464 1.14 erh void
465 1.31.4.1 yamt linux_to_bsd_shmid64_ds(lsp, bsp)
466 1.31.4.1 yamt struct linux_shmid64_ds *lsp;
467 1.31.4.1 yamt struct shmid_ds *bsp;
468 1.31.4.1 yamt {
469 1.31.4.1 yamt
470 1.31.4.1 yamt linux_to_bsd_ipc64_perm(&lsp->l_shm_perm, &bsp->shm_perm);
471 1.31.4.1 yamt bsp->shm_segsz = lsp->l_shm_segsz;
472 1.31.4.1 yamt bsp->shm_lpid = lsp->l_shm_lpid;
473 1.31.4.1 yamt bsp->shm_cpid = lsp->l_shm_cpid;
474 1.31.4.1 yamt bsp->shm_nattch = lsp->l_shm_nattch;
475 1.31.4.1 yamt bsp->shm_atime = lsp->l_shm_atime;
476 1.31.4.1 yamt bsp->shm_dtime = lsp->l_shm_dtime;
477 1.31.4.1 yamt bsp->shm_ctime = lsp->l_shm_ctime;
478 1.31.4.1 yamt bsp->_shm_internal = (void*)lsp->l___unused5; /* XXX Oh well. */
479 1.31.4.1 yamt }
480 1.31.4.1 yamt
481 1.31.4.1 yamt void
482 1.1 fvdl bsd_to_linux_shmid_ds(bsp, lsp)
483 1.1 fvdl struct shmid_ds *bsp;
484 1.1 fvdl struct linux_shmid_ds *lsp;
485 1.1 fvdl {
486 1.8 mycroft
487 1.1 fvdl bsd_to_linux_ipc_perm(&bsp->shm_perm, &lsp->l_shm_perm);
488 1.1 fvdl lsp->l_shm_segsz = bsp->shm_segsz;
489 1.1 fvdl lsp->l_shm_lpid = bsp->shm_lpid;
490 1.1 fvdl lsp->l_shm_cpid = bsp->shm_cpid;
491 1.1 fvdl lsp->l_shm_nattch = bsp->shm_nattch;
492 1.1 fvdl lsp->l_shm_atime = bsp->shm_atime;
493 1.1 fvdl lsp->l_shm_dtime = bsp->shm_dtime;
494 1.1 fvdl lsp->l_shm_ctime = bsp->shm_ctime;
495 1.21 thorpej lsp->l_private2 = bsp->_shm_internal; /* XXX */
496 1.1 fvdl }
497 1.1 fvdl
498 1.31.4.1 yamt void
499 1.31.4.1 yamt bsd_to_linux_shmid64_ds(bsp, lsp)
500 1.31.4.1 yamt struct shmid_ds *bsp;
501 1.31.4.1 yamt struct linux_shmid64_ds *lsp;
502 1.31.4.1 yamt {
503 1.31.4.1 yamt bsd_to_linux_ipc64_perm(&bsp->shm_perm, &lsp->l_shm_perm);
504 1.31.4.1 yamt lsp->l_shm_segsz = bsp->shm_segsz;
505 1.31.4.1 yamt lsp->l_shm_lpid = bsp->shm_lpid;
506 1.31.4.1 yamt lsp->l_shm_cpid = bsp->shm_cpid;
507 1.31.4.1 yamt lsp->l_shm_nattch = bsp->shm_nattch;
508 1.31.4.1 yamt lsp->l_shm_atime = bsp->shm_atime;
509 1.31.4.1 yamt lsp->l_shm_dtime = bsp->shm_dtime;
510 1.31.4.1 yamt lsp->l_shm_ctime = bsp->shm_ctime;
511 1.31.4.1 yamt lsp->l___unused5 = (u_long)bsp->_shm_internal; /* XXX */
512 1.31.4.1 yamt }
513 1.31.4.1 yamt
514 1.1 fvdl /*
515 1.31.4.1 yamt * shmctl.SHM_LOCK and SHM_UNLOCK are passed on, but currently not implemented
516 1.1 fvdl * by NetBSD itself.
517 1.1 fvdl *
518 1.1 fvdl * The usual structure conversion and massaging is done.
519 1.1 fvdl */
520 1.14 erh int
521 1.28 thorpej linux_sys_shmctl(l, v, retval)
522 1.28 thorpej struct lwp *l;
523 1.14 erh void *v;
524 1.1 fvdl register_t *retval;
525 1.1 fvdl {
526 1.14 erh struct linux_sys_shmctl_args /* {
527 1.14 erh syscallarg(int) shmid;
528 1.14 erh syscallarg(int) cmd;
529 1.14 erh syscallarg(struct linux_shmid_ds *) buf;
530 1.14 erh } */ *uap = v;
531 1.28 thorpej struct proc *p = l->l_proc;
532 1.1 fvdl caddr_t sg;
533 1.21 thorpej struct sys___shmctl13_args nua;
534 1.1 fvdl struct shmid_ds *bsp, bs;
535 1.13 mycroft struct linux_shmid_ds ls;
536 1.31.4.1 yamt struct linux_shmid64_ds ls64;
537 1.31.4.1 yamt struct linux_shminfo64 lsi64;
538 1.31.4.1 yamt struct linux_shm_info lsi;
539 1.31.4.1 yamt int error, i, cmd;
540 1.1 fvdl
541 1.14 erh SCARG(&nua, shmid) = SCARG(uap, shmid);
542 1.31.4.1 yamt cmd = SCARG(uap, cmd);
543 1.31.4.1 yamt switch (cmd) {
544 1.1 fvdl case LINUX_IPC_STAT:
545 1.31.4.1 yamt case LINUX_SHM_STAT:
546 1.26 christos sg = stackgap_init(p, 0);
547 1.26 christos bsp = stackgap_alloc(p, &sg, sizeof(struct shmid_ds));
548 1.13 mycroft SCARG(&nua, cmd) = IPC_STAT;
549 1.13 mycroft SCARG(&nua, buf) = bsp;
550 1.28 thorpej if ((error = sys___shmctl13(l, &nua, retval)))
551 1.1 fvdl return error;
552 1.14 erh if ((error = copyin(SCARG(&nua, buf), &bs, sizeof bs)))
553 1.1 fvdl return error;
554 1.13 mycroft bsd_to_linux_shmid_ds(&bs, &ls);
555 1.31.4.1 yamt if (cmd == LINUX_SHM_STAT)
556 1.31.4.1 yamt retval[0] = IXSEQ_TO_IPCID(bs.shm_perm._key,
557 1.31.4.1 yamt bs.shm_perm);
558 1.14 erh return copyout(&ls, SCARG(uap, buf), sizeof ls);
559 1.31.4.1 yamt
560 1.31.4.1 yamt case LINUX_IPC_STAT|LINUX_IPC_64:
561 1.31.4.1 yamt case LINUX_SHM_STAT|LINUX_IPC_64:
562 1.31.4.1 yamt sg = stackgap_init(p,0);
563 1.31.4.1 yamt bsp = stackgap_alloc(p, &sg, sizeof(struct linux_shmid64_ds));
564 1.31.4.1 yamt SCARG(&nua, cmd) = IPC_STAT;
565 1.31.4.1 yamt SCARG(&nua, buf) = bsp;
566 1.31.4.1 yamt if ((error = sys___shmctl13(l, &nua, retval)))
567 1.31.4.1 yamt return error;
568 1.31.4.1 yamt if ((error = copyin(SCARG(&nua, buf), &bs, sizeof bs)))
569 1.31.4.1 yamt return error;
570 1.31.4.1 yamt bsd_to_linux_shmid64_ds(&bs, &ls64);
571 1.31.4.1 yamt if (cmd == (LINUX_SHM_STAT|LINUX_IPC_64)) {
572 1.31.4.1 yamt retval[0] = IXSEQ_TO_IPCID(bs.shm_perm._key,
573 1.31.4.1 yamt bs.shm_perm);
574 1.31.4.1 yamt }
575 1.31.4.1 yamt return copyout(&ls64, SCARG(uap, buf), sizeof ls64);
576 1.31.4.1 yamt
577 1.1 fvdl case LINUX_IPC_SET:
578 1.14 erh if ((error = copyin(SCARG(uap, buf), &ls, sizeof ls)))
579 1.1 fvdl return error;
580 1.13 mycroft linux_to_bsd_shmid_ds(&ls, &bs);
581 1.26 christos sg = stackgap_init(p, 0);
582 1.26 christos bsp = stackgap_alloc(p, &sg, sizeof bs);
583 1.13 mycroft if ((error = copyout(&bs, bsp, sizeof bs)))
584 1.1 fvdl return error;
585 1.13 mycroft SCARG(&nua, cmd) = IPC_SET;
586 1.13 mycroft SCARG(&nua, buf) = bsp;
587 1.14 erh break;
588 1.31.4.1 yamt
589 1.1 fvdl case LINUX_IPC_RMID:
590 1.13 mycroft SCARG(&nua, cmd) = IPC_RMID;
591 1.13 mycroft SCARG(&nua, buf) = NULL;
592 1.13 mycroft break;
593 1.31.4.1 yamt
594 1.1 fvdl case LINUX_SHM_LOCK:
595 1.13 mycroft SCARG(&nua, cmd) = SHM_LOCK;
596 1.13 mycroft SCARG(&nua, buf) = NULL;
597 1.13 mycroft break;
598 1.31.4.1 yamt
599 1.1 fvdl case LINUX_SHM_UNLOCK:
600 1.13 mycroft SCARG(&nua, cmd) = SHM_UNLOCK;
601 1.13 mycroft SCARG(&nua, buf) = NULL;
602 1.13 mycroft break;
603 1.31.4.1 yamt
604 1.1 fvdl case LINUX_IPC_INFO:
605 1.31.4.1 yamt memset(&lsi64, 0, sizeof lsi64);
606 1.31.4.1 yamt lsi64.l_shmmax = shminfo.shmmax;
607 1.31.4.1 yamt lsi64.l_shmmin = shminfo.shmmin;
608 1.31.4.1 yamt lsi64.l_shmmni = shminfo.shmmni;
609 1.31.4.1 yamt lsi64.l_shmseg = shminfo.shmseg;
610 1.31.4.1 yamt lsi64.l_shmall = shminfo.shmall;
611 1.31.4.1 yamt return copyout(&lsi64, SCARG(uap, buf), sizeof lsi64);
612 1.31.4.1 yamt
613 1.1 fvdl case LINUX_SHM_INFO:
614 1.31.4.1 yamt (void)memset(&lsi, 0, sizeof lsi);
615 1.31.4.1 yamt lsi.l_used_ids = shm_nused;
616 1.31.4.1 yamt for (i = 0; i < shminfo.shmmni; i++)
617 1.31.4.1 yamt if (shmsegs[i].shm_perm.mode & SHMSEG_ALLOCATED)
618 1.31.4.1 yamt lsi.l_shm_tot += shmsegs[i].shm_segsz;
619 1.31.4.1 yamt lsi.l_shm_rss = 0;
620 1.31.4.1 yamt lsi.l_shm_swp = 0;
621 1.31.4.1 yamt lsi.l_swap_attempts = 0;
622 1.31.4.1 yamt lsi.l_swap_successes = 0;
623 1.31.4.1 yamt return copyout(&lsi, SCARG(uap, buf), sizeof lsi);
624 1.31.4.1 yamt
625 1.1 fvdl default:
626 1.31.4.1 yamt #ifdef DEBUG
627 1.31.4.1 yamt printf("linux_sys_shmctl cmd %d\n", SCARG(uap, cmd));
628 1.31.4.1 yamt #endif
629 1.1 fvdl return EINVAL;
630 1.1 fvdl }
631 1.28 thorpej return sys___shmctl13(l, &nua, retval);
632 1.1 fvdl }
633 1.1 fvdl #endif /* SYSVSHM */
634