sysv_sem.c revision 1.38 1 1.38 simonb /* $NetBSD: sysv_sem.c,v 1.38 2000/06/02 15:53:05 simonb Exp $ */
2 1.33 thorpej
3 1.33 thorpej /*-
4 1.33 thorpej * Copyright (c) 1999 The NetBSD Foundation, Inc.
5 1.33 thorpej * All rights reserved.
6 1.33 thorpej *
7 1.33 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.33 thorpej * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 1.33 thorpej * NASA Ames Research Center.
10 1.33 thorpej *
11 1.33 thorpej * Redistribution and use in source and binary forms, with or without
12 1.33 thorpej * modification, are permitted provided that the following conditions
13 1.33 thorpej * are met:
14 1.33 thorpej * 1. Redistributions of source code must retain the above copyright
15 1.33 thorpej * notice, this list of conditions and the following disclaimer.
16 1.33 thorpej * 2. Redistributions in binary form must reproduce the above copyright
17 1.33 thorpej * notice, this list of conditions and the following disclaimer in the
18 1.33 thorpej * documentation and/or other materials provided with the distribution.
19 1.33 thorpej * 3. All advertising materials mentioning features or use of this software
20 1.33 thorpej * must display the following acknowledgement:
21 1.33 thorpej * This product includes software developed by the NetBSD
22 1.33 thorpej * Foundation, Inc. and its contributors.
23 1.33 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
24 1.33 thorpej * contributors may be used to endorse or promote products derived
25 1.33 thorpej * from this software without specific prior written permission.
26 1.33 thorpej *
27 1.33 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 1.33 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 1.33 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 1.33 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 1.33 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 1.33 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 1.33 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 1.33 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 1.33 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 1.33 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 1.33 thorpej * POSSIBILITY OF SUCH DAMAGE.
38 1.33 thorpej */
39 1.9 cgd
40 1.1 cgd /*
41 1.1 cgd * Implementation of SVID semaphores
42 1.1 cgd *
43 1.33 thorpej * Author: Daniel Boulet
44 1.1 cgd *
45 1.1 cgd * This software is provided ``AS IS'' without any warranties of any kind.
46 1.1 cgd */
47 1.31 tron
48 1.32 tron #define SYSVSEM
49 1.1 cgd
50 1.3 mycroft #include <sys/param.h>
51 1.3 mycroft #include <sys/kernel.h>
52 1.3 mycroft #include <sys/sem.h>
53 1.38 simonb #include <vm/vm.h> /* XXX for <sys/sysctl.h> */
54 1.38 simonb #include <sys/sysctl.h>
55 1.38 simonb #include <sys/mount.h> /* XXX for <sys/syscallargs.h> */
56 1.10 cgd #include <sys/syscallargs.h>
57 1.25 christos
58 1.1 cgd int semtot = 0;
59 1.38 simonb struct semid_ds *sema; /* semaphore id pool */
60 1.38 simonb struct __sem *sem; /* semaphore pool */
61 1.38 simonb struct sem_undo *semu_list; /* list of active undo structures */
62 1.38 simonb int *semu; /* undo structure pool */
63 1.1 cgd
64 1.27 christos #ifdef SEM_DEBUG
65 1.28 christos #define SEM_PRINTF(a) printf a
66 1.27 christos #else
67 1.27 christos #define SEM_PRINTF(a)
68 1.27 christos #endif
69 1.27 christos
70 1.25 christos struct sem_undo *semu_alloc __P((struct proc *));
71 1.25 christos int semundo_adjust __P((struct proc *, struct sem_undo **, int, int, int));
72 1.25 christos void semundo_clear __P((int, int));
73 1.25 christos
74 1.37 sommerfe /*
75 1.37 sommerfe * XXXSMP Once we go MP, there needs to be a lock for the semaphore system.
76 1.37 sommerfe * Until then, we're saved by being a non-preemptive kernel.
77 1.37 sommerfe */
78 1.37 sommerfe
79 1.25 christos void
80 1.1 cgd seminit()
81 1.1 cgd {
82 1.35 augustss int i;
83 1.1 cgd
84 1.5 mycroft if (sema == NULL)
85 1.5 mycroft panic("sema is NULL");
86 1.5 mycroft if (semu == NULL)
87 1.5 mycroft panic("semu is NULL");
88 1.5 mycroft
89 1.5 mycroft for (i = 0; i < seminfo.semmni; i++) {
90 1.33 thorpej sema[i]._sem_base = 0;
91 1.5 mycroft sema[i].sem_perm.mode = 0;
92 1.5 mycroft }
93 1.5 mycroft for (i = 0; i < seminfo.semmnu; i++) {
94 1.35 augustss struct sem_undo *suptr = SEMU(i);
95 1.5 mycroft suptr->un_proc = NULL;
96 1.5 mycroft }
97 1.5 mycroft semu_list = NULL;
98 1.1 cgd }
99 1.1 cgd
100 1.1 cgd /*
101 1.37 sommerfe * Placebo.
102 1.1 cgd */
103 1.1 cgd
104 1.1 cgd int
105 1.24 mycroft sys_semconfig(p, v, retval)
106 1.1 cgd struct proc *p;
107 1.23 thorpej void *v;
108 1.23 thorpej register_t *retval;
109 1.23 thorpej {
110 1.5 mycroft *retval = 0;
111 1.37 sommerfe return 0;
112 1.1 cgd }
113 1.1 cgd
114 1.1 cgd /*
115 1.1 cgd * Allocate a new sem_undo structure for a process
116 1.1 cgd * (returns ptr to structure or NULL if no more room)
117 1.1 cgd */
118 1.1 cgd
119 1.1 cgd struct sem_undo *
120 1.5 mycroft semu_alloc(p)
121 1.5 mycroft struct proc *p;
122 1.1 cgd {
123 1.35 augustss int i;
124 1.35 augustss struct sem_undo *suptr;
125 1.35 augustss struct sem_undo **supptr;
126 1.5 mycroft int attempt;
127 1.1 cgd
128 1.1 cgd /*
129 1.5 mycroft * Try twice to allocate something.
130 1.5 mycroft * (we'll purge any empty structures after the first pass so
131 1.5 mycroft * two passes are always enough)
132 1.1 cgd */
133 1.1 cgd
134 1.5 mycroft for (attempt = 0; attempt < 2; attempt++) {
135 1.5 mycroft /*
136 1.5 mycroft * Look for a free structure.
137 1.5 mycroft * Fill it in and return it if we find one.
138 1.5 mycroft */
139 1.5 mycroft
140 1.5 mycroft for (i = 0; i < seminfo.semmnu; i++) {
141 1.5 mycroft suptr = SEMU(i);
142 1.5 mycroft if (suptr->un_proc == NULL) {
143 1.5 mycroft suptr->un_next = semu_list;
144 1.5 mycroft semu_list = suptr;
145 1.5 mycroft suptr->un_cnt = 0;
146 1.5 mycroft suptr->un_proc = p;
147 1.5 mycroft return(suptr);
148 1.5 mycroft }
149 1.5 mycroft }
150 1.1 cgd
151 1.5 mycroft /*
152 1.5 mycroft * We didn't find a free one, if this is the first attempt
153 1.5 mycroft * then try to free some structures.
154 1.5 mycroft */
155 1.5 mycroft
156 1.5 mycroft if (attempt == 0) {
157 1.5 mycroft /* All the structures are in use - try to free some */
158 1.5 mycroft int did_something = 0;
159 1.5 mycroft
160 1.5 mycroft supptr = &semu_list;
161 1.5 mycroft while ((suptr = *supptr) != NULL) {
162 1.5 mycroft if (suptr->un_cnt == 0) {
163 1.5 mycroft suptr->un_proc = NULL;
164 1.5 mycroft *supptr = suptr->un_next;
165 1.5 mycroft did_something = 1;
166 1.5 mycroft } else
167 1.5 mycroft supptr = &(suptr->un_next);
168 1.5 mycroft }
169 1.5 mycroft
170 1.5 mycroft /* If we didn't free anything then just give-up */
171 1.5 mycroft if (!did_something)
172 1.5 mycroft return(NULL);
173 1.5 mycroft } else {
174 1.5 mycroft /*
175 1.5 mycroft * The second pass failed even though we freed
176 1.5 mycroft * something after the first pass!
177 1.5 mycroft * This is IMPOSSIBLE!
178 1.5 mycroft */
179 1.5 mycroft panic("semu_alloc - second attempt failed");
180 1.5 mycroft }
181 1.1 cgd }
182 1.25 christos return NULL;
183 1.1 cgd }
184 1.1 cgd
185 1.1 cgd /*
186 1.1 cgd * Adjust a particular entry for a particular proc
187 1.1 cgd */
188 1.1 cgd
189 1.1 cgd int
190 1.5 mycroft semundo_adjust(p, supptr, semid, semnum, adjval)
191 1.35 augustss struct proc *p;
192 1.5 mycroft struct sem_undo **supptr;
193 1.5 mycroft int semid, semnum;
194 1.5 mycroft int adjval;
195 1.1 cgd {
196 1.35 augustss struct sem_undo *suptr;
197 1.35 augustss struct undo *sunptr;
198 1.5 mycroft int i;
199 1.1 cgd
200 1.5 mycroft /* Look for and remember the sem_undo if the caller doesn't provide
201 1.5 mycroft it */
202 1.1 cgd
203 1.5 mycroft suptr = *supptr;
204 1.4 mycroft if (suptr == NULL) {
205 1.11 mycroft for (suptr = semu_list; suptr != NULL; suptr = suptr->un_next) {
206 1.5 mycroft if (suptr->un_proc == p) {
207 1.5 mycroft *supptr = suptr;
208 1.5 mycroft break;
209 1.5 mycroft }
210 1.5 mycroft }
211 1.5 mycroft if (suptr == NULL) {
212 1.5 mycroft if (adjval == 0)
213 1.5 mycroft return(0);
214 1.5 mycroft suptr = semu_alloc(p);
215 1.5 mycroft if (suptr == NULL)
216 1.5 mycroft return(ENOSPC);
217 1.5 mycroft *supptr = suptr;
218 1.5 mycroft }
219 1.1 cgd }
220 1.1 cgd
221 1.6 mycroft /*
222 1.6 mycroft * Look for the requested entry and adjust it (delete if adjval becomes
223 1.6 mycroft * 0).
224 1.6 mycroft */
225 1.6 mycroft sunptr = &suptr->un_ent[0];
226 1.5 mycroft for (i = 0; i < suptr->un_cnt; i++, sunptr++) {
227 1.6 mycroft if (sunptr->un_id != semid || sunptr->un_num != semnum)
228 1.6 mycroft continue;
229 1.6 mycroft if (adjval == 0)
230 1.6 mycroft sunptr->un_adjval = 0;
231 1.6 mycroft else
232 1.6 mycroft sunptr->un_adjval += adjval;
233 1.6 mycroft if (sunptr->un_adjval == 0) {
234 1.6 mycroft suptr->un_cnt--;
235 1.6 mycroft if (i < suptr->un_cnt)
236 1.6 mycroft suptr->un_ent[i] =
237 1.6 mycroft suptr->un_ent[suptr->un_cnt];
238 1.5 mycroft }
239 1.6 mycroft return(0);
240 1.1 cgd }
241 1.1 cgd
242 1.5 mycroft /* Didn't find the right entry - create it */
243 1.5 mycroft if (adjval == 0)
244 1.5 mycroft return(0);
245 1.11 mycroft if (suptr->un_cnt == SEMUME)
246 1.5 mycroft return(EINVAL);
247 1.11 mycroft
248 1.11 mycroft sunptr = &suptr->un_ent[suptr->un_cnt];
249 1.11 mycroft suptr->un_cnt++;
250 1.11 mycroft sunptr->un_adjval = adjval;
251 1.11 mycroft sunptr->un_id = semid;
252 1.11 mycroft sunptr->un_num = semnum;
253 1.1 cgd return(0);
254 1.1 cgd }
255 1.1 cgd
256 1.1 cgd void
257 1.5 mycroft semundo_clear(semid, semnum)
258 1.5 mycroft int semid, semnum;
259 1.1 cgd {
260 1.35 augustss struct sem_undo *suptr;
261 1.1 cgd
262 1.6 mycroft for (suptr = semu_list; suptr != NULL; suptr = suptr->un_next) {
263 1.35 augustss struct undo *sunptr;
264 1.35 augustss int i;
265 1.6 mycroft
266 1.19 mycroft sunptr = &suptr->un_ent[0];
267 1.19 mycroft for (i = 0; i < suptr->un_cnt; i++, sunptr++) {
268 1.6 mycroft if (sunptr->un_id == semid) {
269 1.6 mycroft if (semnum == -1 || sunptr->un_num == semnum) {
270 1.6 mycroft suptr->un_cnt--;
271 1.6 mycroft if (i < suptr->un_cnt) {
272 1.6 mycroft suptr->un_ent[i] =
273 1.6 mycroft suptr->un_ent[suptr->un_cnt];
274 1.19 mycroft i--, sunptr--;
275 1.6 mycroft }
276 1.6 mycroft }
277 1.6 mycroft if (semnum != -1)
278 1.6 mycroft break;
279 1.6 mycroft }
280 1.6 mycroft }
281 1.1 cgd }
282 1.1 cgd }
283 1.1 cgd
284 1.1 cgd int
285 1.34 christos sys_____semctl13(p, v, retval)
286 1.1 cgd struct proc *p;
287 1.33 thorpej void *v;
288 1.23 thorpej register_t *retval;
289 1.23 thorpej {
290 1.34 christos struct sys_____semctl13_args /* {
291 1.10 cgd syscallarg(int) semid;
292 1.10 cgd syscallarg(int) semnum;
293 1.10 cgd syscallarg(int) cmd;
294 1.34 christos syscallarg(union __semun *) arg;
295 1.23 thorpej } */ *uap = v;
296 1.33 thorpej struct semid_ds sembuf;
297 1.33 thorpej int cmd, error;
298 1.34 christos void *pass_arg;
299 1.34 christos union __semun karg;
300 1.33 thorpej
301 1.33 thorpej cmd = SCARG(uap, cmd);
302 1.33 thorpej
303 1.33 thorpej switch (cmd) {
304 1.33 thorpej case IPC_SET:
305 1.33 thorpej case IPC_STAT:
306 1.33 thorpej pass_arg = &sembuf;
307 1.33 thorpej break;
308 1.33 thorpej
309 1.33 thorpej case GETALL:
310 1.33 thorpej case SETVAL:
311 1.33 thorpej case SETALL:
312 1.34 christos pass_arg = &karg;
313 1.34 christos break;
314 1.34 christos default:
315 1.34 christos pass_arg = NULL;
316 1.33 thorpej break;
317 1.33 thorpej }
318 1.33 thorpej
319 1.34 christos if (pass_arg) {
320 1.34 christos error = copyin(SCARG(uap, arg), &karg, sizeof(karg));
321 1.33 thorpej if (error)
322 1.34 christos return error;
323 1.34 christos if (cmd == IPC_SET) {
324 1.34 christos error = copyin(karg.buf, &sembuf, sizeof(sembuf));
325 1.34 christos if (error)
326 1.34 christos return (error);
327 1.34 christos }
328 1.33 thorpej }
329 1.33 thorpej
330 1.33 thorpej error = semctl1(p, SCARG(uap, semid), SCARG(uap, semnum), cmd,
331 1.33 thorpej pass_arg, retval);
332 1.33 thorpej
333 1.33 thorpej if (error == 0 && cmd == IPC_STAT)
334 1.34 christos error = copyout(&sembuf, karg.buf, sizeof(sembuf));
335 1.33 thorpej
336 1.33 thorpej return (error);
337 1.33 thorpej }
338 1.33 thorpej
339 1.33 thorpej int
340 1.33 thorpej semctl1(p, semid, semnum, cmd, v, retval)
341 1.33 thorpej struct proc *p;
342 1.33 thorpej int semid, semnum, cmd;
343 1.33 thorpej void *v;
344 1.33 thorpej register_t *retval;
345 1.33 thorpej {
346 1.6 mycroft struct ucred *cred = p->p_ucred;
347 1.33 thorpej union __semun *arg = v;
348 1.33 thorpej struct semid_ds *sembuf = v, *semaptr;
349 1.33 thorpej int i, error, ix;
350 1.1 cgd
351 1.27 christos SEM_PRINTF(("call to semctl(%d, %d, %d, %p)\n",
352 1.33 thorpej semid, semnum, cmd, v));
353 1.1 cgd
354 1.33 thorpej ix = IPCID_TO_IX(semid);
355 1.33 thorpej if (ix < 0 || ix >= seminfo.semmsl)
356 1.33 thorpej return (EINVAL);
357 1.6 mycroft
358 1.33 thorpej semaptr = &sema[ix];
359 1.6 mycroft if ((semaptr->sem_perm.mode & SEM_ALLOC) == 0 ||
360 1.33 thorpej semaptr->sem_perm._seq != IPCID_TO_SEQ(semid))
361 1.33 thorpej return (EINVAL);
362 1.1 cgd
363 1.6 mycroft switch (cmd) {
364 1.6 mycroft case IPC_RMID:
365 1.33 thorpej if ((error = ipcperm(cred, &semaptr->sem_perm, IPC_M)) != 0)
366 1.33 thorpej return (error);
367 1.6 mycroft semaptr->sem_perm.cuid = cred->cr_uid;
368 1.6 mycroft semaptr->sem_perm.uid = cred->cr_uid;
369 1.6 mycroft semtot -= semaptr->sem_nsems;
370 1.33 thorpej for (i = semaptr->_sem_base - sem; i < semtot; i++)
371 1.6 mycroft sem[i] = sem[i + semaptr->sem_nsems];
372 1.6 mycroft for (i = 0; i < seminfo.semmni; i++) {
373 1.6 mycroft if ((sema[i].sem_perm.mode & SEM_ALLOC) &&
374 1.33 thorpej sema[i]._sem_base > semaptr->_sem_base)
375 1.33 thorpej sema[i]._sem_base -= semaptr->sem_nsems;
376 1.6 mycroft }
377 1.6 mycroft semaptr->sem_perm.mode = 0;
378 1.33 thorpej semundo_clear(ix, -1);
379 1.33 thorpej wakeup(semaptr);
380 1.6 mycroft break;
381 1.1 cgd
382 1.6 mycroft case IPC_SET:
383 1.33 thorpej if ((error = ipcperm(cred, &semaptr->sem_perm, IPC_M)))
384 1.33 thorpej return (error);
385 1.33 thorpej semaptr->sem_perm.uid = sembuf->sem_perm.uid;
386 1.33 thorpej semaptr->sem_perm.gid = sembuf->sem_perm.gid;
387 1.6 mycroft semaptr->sem_perm.mode = (semaptr->sem_perm.mode & ~0777) |
388 1.33 thorpej (sembuf->sem_perm.mode & 0777);
389 1.6 mycroft semaptr->sem_ctime = time.tv_sec;
390 1.6 mycroft break;
391 1.1 cgd
392 1.6 mycroft case IPC_STAT:
393 1.33 thorpej if ((error = ipcperm(cred, &semaptr->sem_perm, IPC_R)))
394 1.33 thorpej return (error);
395 1.33 thorpej memcpy(sembuf, semaptr, sizeof(struct semid_ds));
396 1.6 mycroft break;
397 1.1 cgd
398 1.6 mycroft case GETNCNT:
399 1.33 thorpej if ((error = ipcperm(cred, &semaptr->sem_perm, IPC_R)))
400 1.33 thorpej return (error);
401 1.6 mycroft if (semnum < 0 || semnum >= semaptr->sem_nsems)
402 1.33 thorpej return (EINVAL);
403 1.33 thorpej *retval = semaptr->_sem_base[semnum].semncnt;
404 1.6 mycroft break;
405 1.1 cgd
406 1.6 mycroft case GETPID:
407 1.33 thorpej if ((error = ipcperm(cred, &semaptr->sem_perm, IPC_R)))
408 1.33 thorpej return (error);
409 1.6 mycroft if (semnum < 0 || semnum >= semaptr->sem_nsems)
410 1.33 thorpej return (EINVAL);
411 1.33 thorpej *retval = semaptr->_sem_base[semnum].sempid;
412 1.6 mycroft break;
413 1.1 cgd
414 1.6 mycroft case GETVAL:
415 1.33 thorpej if ((error = ipcperm(cred, &semaptr->sem_perm, IPC_R)))
416 1.33 thorpej return (error);
417 1.6 mycroft if (semnum < 0 || semnum >= semaptr->sem_nsems)
418 1.33 thorpej return (EINVAL);
419 1.33 thorpej *retval = semaptr->_sem_base[semnum].semval;
420 1.6 mycroft break;
421 1.1 cgd
422 1.6 mycroft case GETALL:
423 1.33 thorpej if ((error = ipcperm(cred, &semaptr->sem_perm, IPC_R)))
424 1.33 thorpej return (error);
425 1.6 mycroft for (i = 0; i < semaptr->sem_nsems; i++) {
426 1.33 thorpej error = copyout(&semaptr->_sem_base[i].semval,
427 1.33 thorpej &arg->array[i], sizeof(arg->array[i]));
428 1.33 thorpej if (error != 0)
429 1.6 mycroft break;
430 1.6 mycroft }
431 1.6 mycroft break;
432 1.1 cgd
433 1.6 mycroft case GETZCNT:
434 1.33 thorpej if ((error = ipcperm(cred, &semaptr->sem_perm, IPC_R)))
435 1.33 thorpej return (error);
436 1.6 mycroft if (semnum < 0 || semnum >= semaptr->sem_nsems)
437 1.33 thorpej return (EINVAL);
438 1.33 thorpej *retval = semaptr->_sem_base[semnum].semzcnt;
439 1.6 mycroft break;
440 1.1 cgd
441 1.6 mycroft case SETVAL:
442 1.33 thorpej if ((error = ipcperm(cred, &semaptr->sem_perm, IPC_W)))
443 1.33 thorpej return (error);
444 1.6 mycroft if (semnum < 0 || semnum >= semaptr->sem_nsems)
445 1.33 thorpej return (EINVAL);
446 1.33 thorpej semaptr->_sem_base[semnum].semval = arg->val;
447 1.33 thorpej semundo_clear(ix, semnum);
448 1.33 thorpej wakeup(semaptr);
449 1.6 mycroft break;
450 1.1 cgd
451 1.6 mycroft case SETALL:
452 1.33 thorpej if ((error = ipcperm(cred, &semaptr->sem_perm, IPC_W)))
453 1.33 thorpej return (error);
454 1.6 mycroft for (i = 0; i < semaptr->sem_nsems; i++) {
455 1.33 thorpej error = copyin(&arg->array[i],
456 1.33 thorpej &semaptr->_sem_base[i].semval,
457 1.33 thorpej sizeof(arg->array[i]));
458 1.33 thorpej if (error != 0)
459 1.6 mycroft break;
460 1.6 mycroft }
461 1.33 thorpej semundo_clear(ix, -1);
462 1.33 thorpej wakeup(semaptr);
463 1.6 mycroft break;
464 1.1 cgd
465 1.6 mycroft default:
466 1.33 thorpej return (EINVAL);
467 1.6 mycroft }
468 1.4 mycroft
469 1.33 thorpej return (error);
470 1.1 cgd }
471 1.1 cgd
472 1.1 cgd int
473 1.24 mycroft sys_semget(p, v, retval)
474 1.1 cgd struct proc *p;
475 1.23 thorpej void *v;
476 1.23 thorpej register_t *retval;
477 1.23 thorpej {
478 1.35 augustss struct sys_semget_args /* {
479 1.10 cgd syscallarg(key_t) key;
480 1.10 cgd syscallarg(int) nsems;
481 1.10 cgd syscallarg(int) semflg;
482 1.23 thorpej } */ *uap = v;
483 1.6 mycroft int semid, eval;
484 1.10 cgd int key = SCARG(uap, key);
485 1.10 cgd int nsems = SCARG(uap, nsems);
486 1.10 cgd int semflg = SCARG(uap, semflg);
487 1.6 mycroft struct ucred *cred = p->p_ucred;
488 1.1 cgd
489 1.27 christos SEM_PRINTF(("semget(0x%x, %d, 0%o)\n", key, nsems, semflg));
490 1.1 cgd
491 1.6 mycroft if (key != IPC_PRIVATE) {
492 1.6 mycroft for (semid = 0; semid < seminfo.semmni; semid++) {
493 1.6 mycroft if ((sema[semid].sem_perm.mode & SEM_ALLOC) &&
494 1.33 thorpej sema[semid].sem_perm._key == key)
495 1.6 mycroft break;
496 1.6 mycroft }
497 1.6 mycroft if (semid < seminfo.semmni) {
498 1.27 christos SEM_PRINTF(("found public key\n"));
499 1.7 hpeyerl if ((eval = ipcperm(cred, &sema[semid].sem_perm,
500 1.7 hpeyerl semflg & 0700)))
501 1.6 mycroft return(eval);
502 1.6 mycroft if (nsems > 0 && sema[semid].sem_nsems < nsems) {
503 1.27 christos SEM_PRINTF(("too small\n"));
504 1.6 mycroft return(EINVAL);
505 1.6 mycroft }
506 1.6 mycroft if ((semflg & IPC_CREAT) && (semflg & IPC_EXCL)) {
507 1.27 christos SEM_PRINTF(("not exclusive\n"));
508 1.6 mycroft return(EEXIST);
509 1.6 mycroft }
510 1.6 mycroft goto found;
511 1.6 mycroft }
512 1.6 mycroft }
513 1.6 mycroft
514 1.27 christos SEM_PRINTF(("need to allocate the semid_ds\n"));
515 1.6 mycroft if (key == IPC_PRIVATE || (semflg & IPC_CREAT)) {
516 1.6 mycroft if (nsems <= 0 || nsems > seminfo.semmsl) {
517 1.27 christos SEM_PRINTF(("nsems out of range (0<%d<=%d)\n", nsems,
518 1.27 christos seminfo.semmsl));
519 1.6 mycroft return(EINVAL);
520 1.6 mycroft }
521 1.6 mycroft if (nsems > seminfo.semmns - semtot) {
522 1.27 christos SEM_PRINTF(("not enough semaphores left (need %d, got %d)\n",
523 1.27 christos nsems, seminfo.semmns - semtot));
524 1.6 mycroft return(ENOSPC);
525 1.6 mycroft }
526 1.6 mycroft for (semid = 0; semid < seminfo.semmni; semid++) {
527 1.6 mycroft if ((sema[semid].sem_perm.mode & SEM_ALLOC) == 0)
528 1.6 mycroft break;
529 1.6 mycroft }
530 1.6 mycroft if (semid == seminfo.semmni) {
531 1.27 christos SEM_PRINTF(("no more semid_ds's available\n"));
532 1.6 mycroft return(ENOSPC);
533 1.6 mycroft }
534 1.27 christos SEM_PRINTF(("semid %d is available\n", semid));
535 1.33 thorpej sema[semid].sem_perm._key = key;
536 1.6 mycroft sema[semid].sem_perm.cuid = cred->cr_uid;
537 1.6 mycroft sema[semid].sem_perm.uid = cred->cr_uid;
538 1.6 mycroft sema[semid].sem_perm.cgid = cred->cr_gid;
539 1.6 mycroft sema[semid].sem_perm.gid = cred->cr_gid;
540 1.6 mycroft sema[semid].sem_perm.mode = (semflg & 0777) | SEM_ALLOC;
541 1.33 thorpej sema[semid].sem_perm._seq =
542 1.33 thorpej (sema[semid].sem_perm._seq + 1) & 0x7fff;
543 1.6 mycroft sema[semid].sem_nsems = nsems;
544 1.6 mycroft sema[semid].sem_otime = 0;
545 1.6 mycroft sema[semid].sem_ctime = time.tv_sec;
546 1.33 thorpej sema[semid]._sem_base = &sem[semtot];
547 1.6 mycroft semtot += nsems;
548 1.33 thorpej memset(sema[semid]._sem_base, 0,
549 1.33 thorpej sizeof(sema[semid]._sem_base[0])*nsems);
550 1.33 thorpej SEM_PRINTF(("sembase = %p, next = %p\n", sema[semid]._sem_base,
551 1.27 christos &sem[semtot]));
552 1.1 cgd } else {
553 1.27 christos SEM_PRINTF(("didn't find it and wasn't asked to create it\n"));
554 1.6 mycroft return(ENOENT);
555 1.1 cgd }
556 1.1 cgd
557 1.6 mycroft found:
558 1.6 mycroft *retval = IXSEQ_TO_IPCID(semid, sema[semid].sem_perm);
559 1.6 mycroft return(0);
560 1.1 cgd }
561 1.1 cgd
562 1.1 cgd int
563 1.24 mycroft sys_semop(p, v, retval)
564 1.1 cgd struct proc *p;
565 1.23 thorpej void *v;
566 1.23 thorpej register_t *retval;
567 1.23 thorpej {
568 1.35 augustss struct sys_semop_args /* {
569 1.10 cgd syscallarg(int) semid;
570 1.10 cgd syscallarg(struct sembuf *) sops;
571 1.29 kleink syscallarg(size_t) nsops;
572 1.23 thorpej } */ *uap = v;
573 1.10 cgd int semid = SCARG(uap, semid);
574 1.10 cgd int nsops = SCARG(uap, nsops);
575 1.6 mycroft struct sembuf sops[MAX_SOPS];
576 1.35 augustss struct semid_ds *semaptr;
577 1.35 augustss struct sembuf *sopptr = NULL;
578 1.35 augustss struct __sem *semptr = NULL;
579 1.6 mycroft struct sem_undo *suptr = NULL;
580 1.6 mycroft struct ucred *cred = p->p_ucred;
581 1.6 mycroft int i, j, eval;
582 1.25 christos int do_wakeup, do_undos;
583 1.1 cgd
584 1.27 christos SEM_PRINTF(("call to semop(%d, %p, %d)\n", semid, sops, nsops));
585 1.1 cgd
586 1.6 mycroft semid = IPCID_TO_IX(semid); /* Convert back to zero origin */
587 1.6 mycroft
588 1.6 mycroft if (semid < 0 || semid >= seminfo.semmsl)
589 1.6 mycroft return(EINVAL);
590 1.6 mycroft
591 1.6 mycroft semaptr = &sema[semid];
592 1.11 mycroft if ((semaptr->sem_perm.mode & SEM_ALLOC) == 0 ||
593 1.33 thorpej semaptr->sem_perm._seq != IPCID_TO_SEQ(SCARG(uap, semid)))
594 1.6 mycroft return(EINVAL);
595 1.6 mycroft
596 1.7 hpeyerl if ((eval = ipcperm(cred, &semaptr->sem_perm, IPC_W))) {
597 1.27 christos SEM_PRINTF(("eval = %d from ipaccess\n", eval));
598 1.6 mycroft return(eval);
599 1.6 mycroft }
600 1.1 cgd
601 1.6 mycroft if (nsops > MAX_SOPS) {
602 1.27 christos SEM_PRINTF(("too many sops (max=%d, nsops=%d)\n", MAX_SOPS, nsops));
603 1.6 mycroft return(E2BIG);
604 1.6 mycroft }
605 1.1 cgd
606 1.10 cgd if ((eval = copyin(SCARG(uap, sops), sops, nsops * sizeof(sops[0])))
607 1.10 cgd != 0) {
608 1.27 christos SEM_PRINTF(("eval = %d from copyin(%p, %p, %d)\n", eval,
609 1.27 christos SCARG(uap, sops), &sops, nsops * sizeof(sops[0])));
610 1.6 mycroft return(eval);
611 1.6 mycroft }
612 1.1 cgd
613 1.6 mycroft /*
614 1.6 mycroft * Loop trying to satisfy the vector of requests.
615 1.6 mycroft * If we reach a point where we must wait, any requests already
616 1.6 mycroft * performed are rolled back and we go to sleep until some other
617 1.6 mycroft * process wakes us up. At this point, we start all over again.
618 1.6 mycroft *
619 1.6 mycroft * This ensures that from the perspective of other tasks, a set
620 1.6 mycroft * of requests is atomic (never partially satisfied).
621 1.6 mycroft */
622 1.6 mycroft do_undos = 0;
623 1.1 cgd
624 1.6 mycroft for (;;) {
625 1.6 mycroft do_wakeup = 0;
626 1.1 cgd
627 1.6 mycroft for (i = 0; i < nsops; i++) {
628 1.6 mycroft sopptr = &sops[i];
629 1.1 cgd
630 1.6 mycroft if (sopptr->sem_num >= semaptr->sem_nsems)
631 1.6 mycroft return(EFBIG);
632 1.1 cgd
633 1.33 thorpej semptr = &semaptr->_sem_base[sopptr->sem_num];
634 1.1 cgd
635 1.27 christos SEM_PRINTF(("semop: semaptr=%x, sem_base=%x, semptr=%x, sem[%d]=%d : op=%d, flag=%s\n",
636 1.33 thorpej semaptr, semaptr->_sem_base, semptr,
637 1.6 mycroft sopptr->sem_num, semptr->semval, sopptr->sem_op,
638 1.27 christos (sopptr->sem_flg & IPC_NOWAIT) ? "nowait" : "wait"));
639 1.1 cgd
640 1.6 mycroft if (sopptr->sem_op < 0) {
641 1.25 christos if ((int)(semptr->semval +
642 1.25 christos sopptr->sem_op) < 0) {
643 1.27 christos SEM_PRINTF(("semop: can't do it now\n"));
644 1.6 mycroft break;
645 1.6 mycroft } else {
646 1.6 mycroft semptr->semval += sopptr->sem_op;
647 1.6 mycroft if (semptr->semval == 0 &&
648 1.6 mycroft semptr->semzcnt > 0)
649 1.6 mycroft do_wakeup = 1;
650 1.6 mycroft }
651 1.6 mycroft if (sopptr->sem_flg & SEM_UNDO)
652 1.6 mycroft do_undos = 1;
653 1.6 mycroft } else if (sopptr->sem_op == 0) {
654 1.6 mycroft if (semptr->semval > 0) {
655 1.27 christos SEM_PRINTF(("semop: not zero now\n"));
656 1.6 mycroft break;
657 1.6 mycroft }
658 1.6 mycroft } else {
659 1.6 mycroft if (semptr->semncnt > 0)
660 1.6 mycroft do_wakeup = 1;
661 1.6 mycroft semptr->semval += sopptr->sem_op;
662 1.6 mycroft if (sopptr->sem_flg & SEM_UNDO)
663 1.6 mycroft do_undos = 1;
664 1.6 mycroft }
665 1.6 mycroft }
666 1.1 cgd
667 1.6 mycroft /*
668 1.6 mycroft * Did we get through the entire vector?
669 1.6 mycroft */
670 1.6 mycroft if (i >= nsops)
671 1.6 mycroft goto done;
672 1.1 cgd
673 1.6 mycroft /*
674 1.6 mycroft * No ... rollback anything that we've already done
675 1.6 mycroft */
676 1.27 christos SEM_PRINTF(("semop: rollback 0 through %d\n", i-1));
677 1.6 mycroft for (j = 0; j < i; j++)
678 1.33 thorpej semaptr->_sem_base[sops[j].sem_num].semval -=
679 1.6 mycroft sops[j].sem_op;
680 1.1 cgd
681 1.6 mycroft /*
682 1.6 mycroft * If the request that we couldn't satisfy has the
683 1.6 mycroft * NOWAIT flag set then return with EAGAIN.
684 1.6 mycroft */
685 1.6 mycroft if (sopptr->sem_flg & IPC_NOWAIT)
686 1.6 mycroft return(EAGAIN);
687 1.1 cgd
688 1.6 mycroft if (sopptr->sem_op == 0)
689 1.6 mycroft semptr->semzcnt++;
690 1.6 mycroft else
691 1.6 mycroft semptr->semncnt++;
692 1.1 cgd
693 1.27 christos SEM_PRINTF(("semop: good night!\n"));
694 1.6 mycroft eval = tsleep((caddr_t)semaptr, (PZERO - 4) | PCATCH,
695 1.6 mycroft "semwait", 0);
696 1.27 christos SEM_PRINTF(("semop: good morning (eval=%d)!\n", eval));
697 1.1 cgd
698 1.6 mycroft suptr = NULL; /* sem_undo may have been reallocated */
699 1.1 cgd
700 1.6 mycroft if (eval != 0)
701 1.6 mycroft return(EINTR);
702 1.27 christos SEM_PRINTF(("semop: good morning!\n"));
703 1.1 cgd
704 1.6 mycroft /*
705 1.6 mycroft * Make sure that the semaphore still exists
706 1.6 mycroft */
707 1.6 mycroft if ((semaptr->sem_perm.mode & SEM_ALLOC) == 0 ||
708 1.33 thorpej semaptr->sem_perm._seq != IPCID_TO_SEQ(SCARG(uap, semid))) {
709 1.6 mycroft /* The man page says to return EIDRM. */
710 1.6 mycroft /* Unfortunately, BSD doesn't define that code! */
711 1.1 cgd #ifdef EIDRM
712 1.6 mycroft return(EIDRM);
713 1.1 cgd #else
714 1.6 mycroft return(EINVAL);
715 1.1 cgd #endif
716 1.6 mycroft }
717 1.1 cgd
718 1.6 mycroft /*
719 1.6 mycroft * The semaphore is still alive. Readjust the count of
720 1.6 mycroft * waiting processes.
721 1.6 mycroft */
722 1.6 mycroft if (sopptr->sem_op == 0)
723 1.6 mycroft semptr->semzcnt--;
724 1.6 mycroft else
725 1.6 mycroft semptr->semncnt--;
726 1.6 mycroft }
727 1.1 cgd
728 1.6 mycroft done:
729 1.6 mycroft /*
730 1.6 mycroft * Process any SEM_UNDO requests.
731 1.6 mycroft */
732 1.6 mycroft if (do_undos) {
733 1.5 mycroft for (i = 0; i < nsops; i++) {
734 1.6 mycroft /*
735 1.6 mycroft * We only need to deal with SEM_UNDO's for non-zero
736 1.6 mycroft * op's.
737 1.6 mycroft */
738 1.6 mycroft int adjval;
739 1.1 cgd
740 1.6 mycroft if ((sops[i].sem_flg & SEM_UNDO) == 0)
741 1.6 mycroft continue;
742 1.6 mycroft adjval = sops[i].sem_op;
743 1.6 mycroft if (adjval == 0)
744 1.6 mycroft continue;
745 1.6 mycroft eval = semundo_adjust(p, &suptr, semid,
746 1.6 mycroft sops[i].sem_num, -adjval);
747 1.6 mycroft if (eval == 0)
748 1.6 mycroft continue;
749 1.1 cgd
750 1.6 mycroft /*
751 1.6 mycroft * Oh-Oh! We ran out of either sem_undo's or undo's.
752 1.6 mycroft * Rollback the adjustments to this point and then
753 1.6 mycroft * rollback the semaphore ups and down so we can return
754 1.6 mycroft * with an error with all structures restored. We
755 1.6 mycroft * rollback the undo's in the exact reverse order that
756 1.6 mycroft * we applied them. This guarantees that we won't run
757 1.6 mycroft * out of space as we roll things back out.
758 1.6 mycroft */
759 1.6 mycroft for (j = i - 1; j >= 0; j--) {
760 1.6 mycroft if ((sops[j].sem_flg & SEM_UNDO) == 0)
761 1.6 mycroft continue;
762 1.6 mycroft adjval = sops[j].sem_op;
763 1.6 mycroft if (adjval == 0)
764 1.6 mycroft continue;
765 1.6 mycroft if (semundo_adjust(p, &suptr, semid,
766 1.6 mycroft sops[j].sem_num, adjval) != 0)
767 1.1 cgd panic("semop - can't undo undos");
768 1.6 mycroft }
769 1.1 cgd
770 1.6 mycroft for (j = 0; j < nsops; j++)
771 1.33 thorpej semaptr->_sem_base[sops[j].sem_num].semval -=
772 1.6 mycroft sops[j].sem_op;
773 1.1 cgd
774 1.27 christos SEM_PRINTF(("eval = %d from semundo_adjust\n", eval));
775 1.6 mycroft return(eval);
776 1.1 cgd } /* loop through the sops */
777 1.6 mycroft } /* if (do_undos) */
778 1.1 cgd
779 1.6 mycroft /* We're definitely done - set the sempid's */
780 1.6 mycroft for (i = 0; i < nsops; i++) {
781 1.1 cgd sopptr = &sops[i];
782 1.33 thorpej semptr = &semaptr->_sem_base[sopptr->sem_num];
783 1.1 cgd semptr->sempid = p->p_pid;
784 1.6 mycroft }
785 1.1 cgd
786 1.6 mycroft /* Do a wakeup if any semaphore was up'd. */
787 1.6 mycroft if (do_wakeup) {
788 1.27 christos SEM_PRINTF(("semop: doing wakeup\n"));
789 1.1 cgd #ifdef SEM_WAKEUP
790 1.4 mycroft sem_wakeup((caddr_t)semaptr);
791 1.1 cgd #else
792 1.4 mycroft wakeup((caddr_t)semaptr);
793 1.1 cgd #endif
794 1.27 christos SEM_PRINTF(("semop: back from wakeup\n"));
795 1.6 mycroft }
796 1.27 christos SEM_PRINTF(("semop: done\n"));
797 1.6 mycroft *retval = 0;
798 1.6 mycroft return(0);
799 1.1 cgd }
800 1.1 cgd
801 1.1 cgd /*
802 1.6 mycroft * Go through the undo structures for this process and apply the adjustments to
803 1.6 mycroft * semaphores.
804 1.1 cgd */
805 1.25 christos void
806 1.1 cgd semexit(p)
807 1.6 mycroft struct proc *p;
808 1.1 cgd {
809 1.35 augustss struct sem_undo *suptr;
810 1.35 augustss struct sem_undo **supptr;
811 1.1 cgd
812 1.6 mycroft /*
813 1.17 mycroft * Go through the chain of undo vectors looking for one associated with
814 1.17 mycroft * this process.
815 1.17 mycroft */
816 1.17 mycroft
817 1.17 mycroft for (supptr = &semu_list; (suptr = *supptr) != NULL;
818 1.17 mycroft supptr = &suptr->un_next) {
819 1.17 mycroft if (suptr->un_proc == p)
820 1.17 mycroft break;
821 1.17 mycroft }
822 1.17 mycroft
823 1.17 mycroft /*
824 1.37 sommerfe * If there is no undo vector, skip to the end.
825 1.14 mycroft */
826 1.14 mycroft
827 1.37 sommerfe if (suptr == NULL)
828 1.37 sommerfe return;
829 1.37 sommerfe
830 1.14 mycroft /*
831 1.37 sommerfe * We now have an undo vector for this process.
832 1.15 mycroft */
833 1.1 cgd
834 1.27 christos SEM_PRINTF(("proc @%p has undo structure with %d entries\n", p,
835 1.27 christos suptr->un_cnt));
836 1.1 cgd
837 1.5 mycroft /*
838 1.5 mycroft * If there are any active undo elements then process them.
839 1.5 mycroft */
840 1.5 mycroft if (suptr->un_cnt > 0) {
841 1.6 mycroft int ix;
842 1.1 cgd
843 1.6 mycroft for (ix = 0; ix < suptr->un_cnt; ix++) {
844 1.6 mycroft int semid = suptr->un_ent[ix].un_id;
845 1.6 mycroft int semnum = suptr->un_ent[ix].un_num;
846 1.6 mycroft int adjval = suptr->un_ent[ix].un_adjval;
847 1.6 mycroft struct semid_ds *semaptr;
848 1.6 mycroft
849 1.6 mycroft semaptr = &sema[semid];
850 1.6 mycroft if ((semaptr->sem_perm.mode & SEM_ALLOC) == 0)
851 1.6 mycroft panic("semexit - semid not allocated");
852 1.6 mycroft if (semnum >= semaptr->sem_nsems)
853 1.6 mycroft panic("semexit - semnum out of range");
854 1.6 mycroft
855 1.27 christos SEM_PRINTF(("semexit: %p id=%d num=%d(adj=%d) ; sem=%d\n",
856 1.6 mycroft suptr->un_proc, suptr->un_ent[ix].un_id,
857 1.6 mycroft suptr->un_ent[ix].un_num,
858 1.6 mycroft suptr->un_ent[ix].un_adjval,
859 1.33 thorpej semaptr->_sem_base[semnum].semval));
860 1.6 mycroft
861 1.14 mycroft if (adjval < 0 &&
862 1.33 thorpej semaptr->_sem_base[semnum].semval < -adjval)
863 1.33 thorpej semaptr->_sem_base[semnum].semval = 0;
864 1.14 mycroft else
865 1.33 thorpej semaptr->_sem_base[semnum].semval += adjval;
866 1.1 cgd
867 1.1 cgd #ifdef SEM_WAKEUP
868 1.6 mycroft sem_wakeup((caddr_t)semaptr);
869 1.1 cgd #else
870 1.6 mycroft wakeup((caddr_t)semaptr);
871 1.1 cgd #endif
872 1.27 christos SEM_PRINTF(("semexit: back from wakeup\n"));
873 1.6 mycroft }
874 1.5 mycroft }
875 1.1 cgd
876 1.5 mycroft /*
877 1.5 mycroft * Deallocate the undo vector.
878 1.5 mycroft */
879 1.27 christos SEM_PRINTF(("removing vector\n"));
880 1.5 mycroft suptr->un_proc = NULL;
881 1.5 mycroft *supptr = suptr->un_next;
882 1.1 cgd }
883