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