/* * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * The contents of this file constitute Original Code as defined in and * are subject to the Apple Public Source License Version 1.1 (the * "License"). You may not use this file except in compliance with the * License. Please obtain a copy of the License at * http://www.apple.com/publicsource and read it before using this file. * * This Original Code and all software distributed under the License are * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the * License for the specific language governing rights and limitations * under the License. * * @APPLE_LICENSE_HEADER_END@ */ /* * Implementation of SVID semaphores * * Author: Daniel Boulet * * This software is provided ``AS IS'' without any warranties of any kind. */ /* * John Bellardo modified the implementation for Darwin. 12/2000 */ #define SEM_DEBUG #include #include #include #include #include #include /*#include */ /*#include */ #define SUBSYSTEM_LOCK_AQUIRE(p) { while (semlock_holder != NULL) (void) tsleep((caddr_t)&semlock_holder, (PZERO - 4), "sysvsem", 0); semlock_holder = p; } #define SUBSYSTEM_LOCK_RELEASE { semlock_holder = NULL; wakeup((caddr_t)&semlock_holder); } #define UNLOCK_AND_RETURN(ret) { SUBSYSTEM_LOCK_RELEASE; return(ret); } #define SUBSYSTEM_INIT { if ( NULL == sem ) seminit(); } #if 0 static void seminit __P((void *)); SYSINIT(sysv_sem, SI_SUB_SYSV_SEM, SI_ORDER_FIRST, seminit, NULL) #endif 0 struct seminfo seminfo = { SEMMAP, /* # of entries in semaphore map */ SEMMNI, /* # of semaphore identifiers */ 0, /* # of semaphores in system. set in seminit */ SEMMNU, /* # of undo structures in system */ SEMMSL, /* max # of semaphores per id */ SEMOPM, /* max # of operations per semop call */ SEMUME, /* max # of undo entries per process */ SEMUSZ, /* size in bytes of undo structure */ SEMVMX, /* semaphore maximum value */ SEMAEM /* adjust on exit max value */ }; struct semctl_args; int semctl __P((struct proc *p, struct semctl_args *uap, int *)); struct semget_args; int semget __P((struct proc *p, struct semget_args *uap, int *)); struct semop_args; int semop __P((struct proc *p, struct semop_args *uap, int *)); struct semconfig_args; int semconfig __P((struct proc *p, struct semconfig_args *uap, int *)); static struct sem_undo *semu_alloc __P((struct proc *p)); static int semundo_adjust __P((struct proc *p, struct sem_undo **supptr, int semid, int semnum, int adjval)); static void semundo_clear __P((int semid, int semnum)); typedef int sy_call_t __P((struct proc *, void *, int *)); /* XXX casting to (sy_call_t *) is bogus, as usual. */ static sy_call_t *semcalls[] = { (sy_call_t *)semctl, (sy_call_t *)semget, (sy_call_t *)semop, (sy_call_t *)semconfig }; static int semtot = 0; static struct semid_ds sema_pool[SEMMNI]; /* semaphore id pool */ struct semid_ds *sema = sema_pool; /* semaphore id pool */ struct sem *sem= NULL; /* semaphore pool */ static struct sem_undo *semu_list; /* list of active undo structures */ /* int *semu; /* undo structure pool */ struct sem_undo semu_pool[SEMMNU]; struct sem_undo *semu = semu_pool; static struct proc *semlock_holder = NULL; /* Assumes we already hold the subsystem lock */ void seminit() { register int i; #ifdef SEM_DEBUG printf("seminit: initializing the sysv semaphore subsystem with\n"); printf("\t%d semaphores\n", SEMMNS); #endif MALLOC(sem, struct sem*, sizeof(struct sem)*SEMMNS, M_SYSVSEM, M_WAITOK); if (NULL == sem) /* Opps, our malloc failed. All other code should */ { #ifdef SEM_DEBUG printf("MALLOC failed, subsystem left with 0 semaphores\n"); #endif return; /* work fine if we don't update seminfo. */ } seminfo.semmns = SEMMNS; #ifdef SEM_DEBUG printf("seminit: allocation successful\n"); #endif /* These panics are valid until we dynamically allocate sema & semu */ if (sema == NULL) panic("sema is NULL"); if (semu == NULL) panic("semu is NULL"); /* Initialize our structures. Note sem[] is zeroed as needed * as semaphores are allocated. */ for (i = 0; i < seminfo.semmni; i++) { sema[i].sem_base = 0; sema[i].sem_perm.mode = 0; } for (i = 0; i < seminfo.semmnu; i++) { register struct sem_undo *suptr = SEMU(i); suptr->un_proc = NULL; } semu_list = NULL; } /* * Entry point for all SEM calls * * In Darwin this is no longer the entry point. It will be removed after * the code has been tested better. */ struct semsys_args { u_int which; int a2; int a3; int a4; int a5; }; int semsys(p, uap, retval) struct proc *p; /* XXX actually varargs. */ struct semsys_args *uap; register_t *retval; { while (semlock_holder != NULL && semlock_holder != p) (void) tsleep((caddr_t)&semlock_holder, (PZERO - 4), "semsys", 0); if (uap->which >= sizeof(semcalls)/sizeof(semcalls[0])) return (EINVAL); return ((*semcalls[uap->which])(p, &uap->a2, retval)); } /* * Lock or unlock the entire semaphore facility. * * This will probably eventually evolve into a general purpose semaphore * facility status enquiry mechanism (I don't like the "read /dev/kmem" * approach currently taken by ipcs and the amount of info that we want * to be able to extract for ipcs is probably beyond what the capability * of the getkerninfo facility. * * At the time that the current version of semconfig was written, ipcs is * the only user of the semconfig facility. It uses it to ensure that the * semaphore facility data structures remain static while it fishes around * in /dev/kmem. */ #ifndef _SYS_SYSPROTO_H_ struct semconfig_args { semconfig_ctl_t flag; }; #endif int semconfig(p, uap, retval) struct proc *p; struct semconfig_args *uap; register_t *retval; { int eval = 0; switch (uap->flag) { case SEM_CONFIG_FREEZE: SUBSYSTEM_LOCK_AQUIRE(p); break; case SEM_CONFIG_THAW: SUBSYSTEM_LOCK_RELEASE; break; default: printf("semconfig: unknown flag parameter value (%d) - ignored\n", uap->flag); eval = EINVAL; break; } *retval = 0; return(eval); } /* * Allocate a new sem_undo structure for a process * (returns ptr to structure or NULL if no more room) * * Assumes we already hold the subsystem lock. */ static struct sem_undo * semu_alloc(p) struct proc *p; { register int i; register struct sem_undo *suptr; register struct sem_undo **supptr; int attempt; /* * Try twice to allocate something. * (we'll purge any empty structures after the first pass so * two passes are always enough) */ for (attempt = 0; attempt < 2; attempt++) { /* * Look for a free structure. * Fill it in and return it if we find one. */ for (i = 0; i < seminfo.semmnu; i++) { suptr = SEMU(i); if (suptr->un_proc == NULL) { suptr->un_next = semu_list; semu_list = suptr; suptr->un_cnt = 0; suptr->un_proc = p; return(suptr); } } /* * We didn't find a free one, if this is the first attempt * then try to free some structures. */ if (attempt == 0) { /* All the structures are in use - try to free some */ int did_something = 0; supptr = &semu_list; while ((suptr = *supptr) != NULL) { if (suptr->un_cnt == 0) { suptr->un_proc = NULL; *supptr = suptr->un_next; did_something = 1; } else supptr = &(suptr->un_next); } /* If we didn't free anything then just give-up */ if (!did_something) return(NULL); } else { /* * The second pass failed even though we freed * something after the first pass! * This is IMPOSSIBLE! */ panic("semu_alloc - second attempt failed"); } } return (NULL); } /* * Adjust a particular entry for a particular proc * * Assumes we already hold the subsystem lock. */ static int semundo_adjust(p, supptr, semid, semnum, adjval) register struct proc *p; struct sem_undo **supptr; int semid, semnum; int adjval; { register struct sem_undo *suptr; register struct undo *sunptr; int i; /* Look for and remember the sem_undo if the caller doesn't provide it */ suptr = *supptr; if (suptr == NULL) { for (suptr = semu_list; suptr != NULL; suptr = suptr->un_next) { if (suptr->un_proc == p) { *supptr = suptr; break; } } if (suptr == NULL) { if (adjval == 0) return(0); suptr = semu_alloc(p); if (suptr == NULL) return(ENOSPC); *supptr = suptr; } } /* * Look for the requested entry and adjust it (delete if adjval becomes * 0). */ sunptr = &suptr->un_ent[0]; for (i = 0; i < suptr->un_cnt; i++, sunptr++) { if (sunptr->un_id != semid || sunptr->un_num != semnum) continue; if (adjval == 0) sunptr->un_adjval = 0; else sunptr->un_adjval += adjval; if (sunptr->un_adjval == 0) { suptr->un_cnt--; if (i < suptr->un_cnt) suptr->un_ent[i] = suptr->un_ent[suptr->un_cnt]; } return(0); } /* Didn't find the right entry - create it */ if (adjval == 0) return(0); if (suptr->un_cnt != seminfo.semume) { sunptr = &suptr->un_ent[suptr->un_cnt]; suptr->un_cnt++; sunptr->un_adjval = adjval; sunptr->un_id = semid; sunptr->un_num = semnum; } else return(EINVAL); return(0); } /* Assumes we already hold the subsystem lock. */ static void semundo_clear(semid, semnum) int semid, semnum; { register struct sem_undo *suptr; for (suptr = semu_list; suptr != NULL; suptr = suptr->un_next) { register struct undo *sunptr = &suptr->un_ent[0]; register int i = 0; while (i < suptr->un_cnt) { if (sunptr->un_id == semid) { if (semnum == -1 || sunptr->un_num == semnum) { suptr->un_cnt--; if (i < suptr->un_cnt) { suptr->un_ent[i] = suptr->un_ent[suptr->un_cnt]; continue; } } if (semnum != -1) break; } i++, sunptr++; } } } /* * Note that the user-mode half of this passes a union, not a pointer */ #ifndef _SYS_SYSPROTO_H_ struct semctl_args { int semid; int semnum; int cmd; union semun arg; }; #endif int semctl(p, uap, retval) struct proc *p; register struct semctl_args *uap; register_t *retval; { int semid = uap->semid; int semnum = uap->semnum; int cmd = uap->cmd; union semun arg = uap->arg; union semun real_arg; struct ucred *cred = p->p_ucred; int i, rval, eval; struct semid_ds sbuf; register struct semid_ds *semaptr; SUBSYSTEM_LOCK_AQUIRE(p); SUBSYSTEM_INIT; #ifdef SEM_DEBUG printf("call to semctl(%d, %d, %d, 0x%x)\n", semid, semnum, cmd, arg); #endif semid = IPCID_TO_IX(semid); if (semid < 0 || semid >= seminfo.semmsl) { #ifdef SEM_DEBUG printf("Invalid semid\n"); #endif UNLOCK_AND_RETURN(EINVAL); } semaptr = &sema[semid]; if ((semaptr->sem_perm.mode & SEM_ALLOC) == 0 || semaptr->sem_perm.seq != IPCID_TO_SEQ(uap->semid)) UNLOCK_AND_RETURN(EINVAL); eval = 0; rval = 0; switch (cmd) { case IPC_RMID: if ((eval = ipcperm(cred, &semaptr->sem_perm, IPC_M))) UNLOCK_AND_RETURN(eval); semaptr->sem_perm.cuid = cred->cr_uid; semaptr->sem_perm.uid = cred->cr_uid; semtot -= semaptr->sem_nsems; for (i = semaptr->sem_base - sem; i < semtot; i++) sem[i] = sem[i + semaptr->sem_nsems]; for (i = 0; i < seminfo.semmni; i++) { if ((sema[i].sem_perm.mode & SEM_ALLOC) && sema[i].sem_base > semaptr->sem_base) sema[i].sem_base -= semaptr->sem_nsems; } semaptr->sem_perm.mode = 0; semundo_clear(semid, -1); wakeup((caddr_t)semaptr); break; case IPC_SET: if ((eval = ipcperm(cred, &semaptr->sem_perm, IPC_M))) UNLOCK_AND_RETURN(eval); /*if ((eval = copyin(arg, &real_arg, sizeof(real_arg))) != 0) UNLOCK_AND_RETURN(eval);*/ if ((eval = copyin(arg.buf, (caddr_t)&sbuf, sizeof(sbuf))) != 0) UNLOCK_AND_RETURN(eval); semaptr->sem_perm.uid = sbuf.sem_perm.uid; semaptr->sem_perm.gid = sbuf.sem_perm.gid; semaptr->sem_perm.mode = (semaptr->sem_perm.mode & ~0777) | (sbuf.sem_perm.mode & 0777); semaptr->sem_ctime = time_second; break; case IPC_STAT: if ((eval = ipcperm(cred, &semaptr->sem_perm, IPC_R))) UNLOCK_AND_RETURN(eval); /*if ((eval = copyin(arg, &real_arg, sizeof(real_arg))) != 0) UNLOCK_AND_RETURN(eval);*/ eval = copyout((caddr_t)semaptr, arg.buf, sizeof(struct semid_ds)); break; case GETNCNT: if ((eval = ipcperm(cred, &semaptr->sem_perm, IPC_R))) UNLOCK_AND_RETURN(eval); if (semnum < 0 || semnum >= semaptr->sem_nsems) UNLOCK_AND_RETURN(EINVAL); rval = semaptr->sem_base[semnum].semncnt; break; case GETPID: if ((eval = ipcperm(cred, &semaptr->sem_perm, IPC_R))) UNLOCK_AND_RETURN(eval); if (semnum < 0 || semnum >= semaptr->sem_nsems) UNLOCK_AND_RETURN(EINVAL); rval = semaptr->sem_base[semnum].sempid; break; case GETVAL: if ((eval = ipcperm(cred, &semaptr->sem_perm, IPC_R))) UNLOCK_AND_RETURN(eval); if (semnum < 0 || semnum >= semaptr->sem_nsems) UNLOCK_AND_RETURN(EINVAL); rval = semaptr->sem_base[semnum].semval; break; case GETALL: if ((eval = ipcperm(cred, &semaptr->sem_perm, IPC_R))) UNLOCK_AND_RETURN(eval); /*if ((eval = copyin(arg, &real_arg, sizeof(real_arg))) != 0) UNLOCK_AND_RETURN(eval);*/ for (i = 0; i < semaptr->sem_nsems; i++) { eval = copyout((caddr_t)&semaptr->sem_base[i].semval, &arg.array[i], sizeof(arg.array[0])); if (eval != 0) break; } break; case GETZCNT: if ((eval = ipcperm(cred, &semaptr->sem_perm, IPC_R))) UNLOCK_AND_RETURN(eval); if (semnum < 0 || semnum >= semaptr->sem_nsems) UNLOCK_AND_RETURN(EINVAL); rval = semaptr->sem_base[semnum].semzcnt; break; case SETVAL: if ((eval = ipcperm(cred, &semaptr->sem_perm, IPC_W))) { #ifdef SEM_DEBUG printf("Invalid credentials for write\n"); #endif UNLOCK_AND_RETURN(eval); } if (semnum < 0 || semnum >= semaptr->sem_nsems) { #ifdef SEM_DEBUG printf("Invalid number out of range for set\n"); #endif UNLOCK_AND_RETURN(EINVAL); } /*if ((eval = copyin(arg, &real_arg, sizeof(real_arg))) != 0) { #ifdef SEM_DEBUG printf("Error during value copyin\n"); #endif UNLOCK_AND_RETURN(eval); }*/ printf("Using arg.val = %d\n", arg.val); semaptr->sem_base[semnum].semval = arg.val; semundo_clear(semid, semnum); wakeup((caddr_t)semaptr); break; case SETALL: if ((eval = ipcperm(cred, &semaptr->sem_perm, IPC_W))) UNLOCK_AND_RETURN(eval); /*if ((eval = copyin(arg, &real_arg, sizeof(real_arg))) != 0) UNLOCK_AND_RETURN(eval);*/ for (i = 0; i < semaptr->sem_nsems; i++) { eval = copyin(&arg.array[i], (caddr_t)&semaptr->sem_base[i].semval, sizeof(arg.array[0])); if (eval != 0) break; } semundo_clear(semid, -1); wakeup((caddr_t)semaptr); break; default: UNLOCK_AND_RETURN(EINVAL); } if (eval == 0) *retval = rval; UNLOCK_AND_RETURN(eval); } #ifndef _SYS_SYSPROTO_H_ struct semget_args { key_t key; int nsems; int semflg; }; #endif int semget(p, uap, retval) struct proc *p; register struct semget_args *uap; register_t *retval; { int semid, eval; int key = uap->key; int nsems = uap->nsems; int semflg = uap->semflg; struct ucred *cred = p->p_ucred; SUBSYSTEM_LOCK_AQUIRE(p); #ifdef SEM_DEBUG printf("semget(0x%x, %d, 0%o)\n", key, nsems, semflg); #endif SUBSYSTEM_INIT; if (key != IPC_PRIVATE) { for (semid = 0; semid < seminfo.semmni; semid++) { if ((sema[semid].sem_perm.mode & SEM_ALLOC) && sema[semid].sem_perm.key == key) break; } if (semid < seminfo.semmni) { #ifdef SEM_DEBUG printf("found public key\n"); #endif if ((eval = ipcperm(cred, &sema[semid].sem_perm, semflg & 0700))) UNLOCK_AND_RETURN(eval); if (nsems > 0 && sema[semid].sem_nsems < nsems) { #ifdef SEM_DEBUG printf("too small\n"); #endif UNLOCK_AND_RETURN(EINVAL); } if ((semflg & IPC_CREAT) && (semflg & IPC_EXCL)) { #ifdef SEM_DEBUG printf("not exclusive\n"); #endif UNLOCK_AND_RETURN(EEXIST); } goto found; } } #ifdef SEM_DEBUG printf("need to allocate the semid_ds\n"); #endif if (key == IPC_PRIVATE || (semflg & IPC_CREAT)) { if (nsems <= 0 || nsems > seminfo.semmsl) { #ifdef SEM_DEBUG printf("nsems out of range (0<%d<=%d)\n", nsems, seminfo.semmsl); #endif UNLOCK_AND_RETURN(EINVAL); } if (nsems > seminfo.semmns - semtot) { #ifdef SEM_DEBUG printf("not enough semaphores left (need %d, got %d)\n", nsems, seminfo.semmns - semtot); #endif UNLOCK_AND_RETURN(ENOSPC); } for (semid = 0; semid < seminfo.semmni; semid++) { if ((sema[semid].sem_perm.mode & SEM_ALLOC) == 0) break; } if (semid == seminfo.semmni) { #ifdef SEM_DEBUG printf("no more semid_ds's available\n"); #endif UNLOCK_AND_RETURN(ENOSPC); } #ifdef SEM_DEBUG printf("semid %d is available\n", semid); #endif sema[semid].sem_perm.key = key; sema[semid].sem_perm.cuid = cred->cr_uid; sema[semid].sem_perm.uid = cred->cr_uid; sema[semid].sem_perm.cgid = cred->cr_gid; sema[semid].sem_perm.gid = cred->cr_gid; sema[semid].sem_perm.mode = (semflg & 0777) | SEM_ALLOC; sema[semid].sem_perm.seq = (sema[semid].sem_perm.seq + 1) & 0x7fff; sema[semid].sem_nsems = nsems; sema[semid].sem_otime = 0; sema[semid].sem_ctime = time_second; sema[semid].sem_base = &sem[semtot]; semtot += nsems; bzero(sema[semid].sem_base, sizeof(sema[semid].sem_base[0])*nsems); #ifdef SEM_DEBUG printf("sembase = 0x%x, next = 0x%x\n", sema[semid].sem_base, &sem[semtot]); #endif } else { #ifdef SEM_DEBUG printf("didn't find it and wasn't asked to create it\n"); #endif UNLOCK_AND_RETURN(ENOENT); } found: *retval = IXSEQ_TO_IPCID(semid, sema[semid].sem_perm); #ifdef SEM_DEBUG printf("semget is done, returning %d\n", *retval); #endif SUBSYSTEM_LOCK_RELEASE; return(0); } #ifndef _SYS_SYSPROTO_H_ struct semop_args { int semid; struct sembuf *sops; int nsops; }; #endif int semop(p, uap, retval) struct proc *p; register struct semop_args *uap; register_t *retval; { int semid = uap->semid; int nsops = uap->nsops; struct sembuf sops[MAX_SOPS]; register struct semid_ds *semaptr; register struct sembuf *sopptr; register struct sem *semptr; struct sem_undo *suptr = NULL; struct ucred *cred = p->p_ucred; int i, j, eval; int do_wakeup, do_undos; SUBSYSTEM_LOCK_AQUIRE(p); #ifdef SEM_DEBUG printf("call to semop(%d, 0x%x, %d)\n", semid, sops, nsops); #endif SUBSYSTEM_INIT; semid = IPCID_TO_IX(semid); /* Convert back to zero origin */ if (semid < 0 || semid >= seminfo.semmsl) UNLOCK_AND_RETURN(EINVAL); semaptr = &sema[semid]; if ((semaptr->sem_perm.mode & SEM_ALLOC) == 0) UNLOCK_AND_RETURN(EINVAL); if (semaptr->sem_perm.seq != IPCID_TO_SEQ(uap->semid)) UNLOCK_AND_RETURN(EINVAL); if ((eval = ipcperm(cred, &semaptr->sem_perm, IPC_W))) { #ifdef SEM_DEBUG printf("eval = %d from ipaccess\n", eval); #endif UNLOCK_AND_RETURN(eval); } if (nsops > MAX_SOPS) { #ifdef SEM_DEBUG printf("too many sops (max=%d, nsops=%d)\n", MAX_SOPS, nsops); #endif UNLOCK_AND_RETURN(E2BIG); } if ((eval = copyin(uap->sops, &sops, nsops * sizeof(sops[0]))) != 0) { #ifdef SEM_DEBUG printf("eval = %d from copyin(%08x, %08x, %d)\n", eval, uap->sops, &sops, nsops * sizeof(sops[0])); #endif UNLOCK_AND_RETURN(eval); } /* * Loop trying to satisfy the vector of requests. * If we reach a point where we must wait, any requests already * performed are rolled back and we go to sleep until some other * process wakes us up. At this point, we start all over again. * * This ensures that from the perspective of other tasks, a set * of requests is atomic (never partially satisfied). */ do_undos = 0; for (;;) { do_wakeup = 0; for (i = 0; i < nsops; i++) { sopptr = &sops[i]; if (sopptr->sem_num >= semaptr->sem_nsems) UNLOCK_AND_RETURN(EFBIG); semptr = &semaptr->sem_base[sopptr->sem_num]; #ifdef SEM_DEBUG printf("semop: semaptr=%x, sem_base=%x, semptr=%x, sem[%d]=%d : op=%d, flag=%s\n", semaptr, semaptr->sem_base, semptr, sopptr->sem_num, semptr->semval, sopptr->sem_op, (sopptr->sem_flg & IPC_NOWAIT) ? "nowait" : "wait"); #endif if (sopptr->sem_op < 0) { if (semptr->semval + sopptr->sem_op < 0) { #ifdef SEM_DEBUG printf("semop: can't do it now\n"); #endif break; } else { semptr->semval += sopptr->sem_op; if (semptr->semval == 0 && semptr->semzcnt > 0) do_wakeup = 1; } if (sopptr->sem_flg & SEM_UNDO) do_undos = 1; } else if (sopptr->sem_op == 0) { if (semptr->semval > 0) { #ifdef SEM_DEBUG printf("semop: not zero now\n"); #endif break; } } else { if (semptr->semncnt > 0) do_wakeup = 1; semptr->semval += sopptr->sem_op; if (sopptr->sem_flg & SEM_UNDO) do_undos = 1; } } /* * Did we get through the entire vector? */ if (i >= nsops) goto done; /* * No ... rollback anything that we've already done */ #ifdef SEM_DEBUG printf("semop: rollback 0 through %d\n", i-1); #endif for (j = 0; j < i; j++) semaptr->sem_base[sops[j].sem_num].semval -= sops[j].sem_op; /* * If the request that we couldn't satisfy has the * NOWAIT flag set then return with EAGAIN. */ if (sopptr->sem_flg & IPC_NOWAIT) UNLOCK_AND_RETURN(EAGAIN); if (sopptr->sem_op == 0) semptr->semzcnt++; else semptr->semncnt++; #ifdef SEM_DEBUG printf("semop: good night!\n"); #endif /* Release our lock on the semaphore subsystem so * another thread can get at the semaphore we are * waiting for. We will get the lock back after we * wake up. */ SUBSYSTEM_LOCK_RELEASE; eval = tsleep((caddr_t)semaptr, (PZERO - 4) | PCATCH, "semwait", 0); #ifdef SEM_DEBUG printf("semop: good morning (eval=%d)!\n", eval); #endif /* There is no need to get the lock if we are just * going to return without performing other semaphore * operations. */ if (eval != 0) return(EINTR); SUBSYSTEM_LOCK_AQUIRE(p); /* Get it back */ suptr = NULL; /* sem_undo may have been reallocated */ #ifdef SEM_DEBUG printf("semop: good morning!\n"); #endif /* * Make sure that the semaphore still exists */ if ((semaptr->sem_perm.mode & SEM_ALLOC) == 0 || semaptr->sem_perm.seq != IPCID_TO_SEQ(uap->semid)) { /* The man page says to return EIDRM. */ /* Unfortunately, BSD doesn't define that code! */ #ifdef EIDRM UNLOCK_AND_RETURN(EIDRM); #else UNLOCK_AND_RETURN(EINVAL); #endif } /* * The semaphore is still alive. Readjust the count of * waiting processes. */ if (sopptr->sem_op == 0) semptr->semzcnt--; else semptr->semncnt--; } done: /* * Process any SEM_UNDO requests. */ if (do_undos) { for (i = 0; i < nsops; i++) { /* * We only need to deal with SEM_UNDO's for non-zero * op's. */ int adjval; if ((sops[i].sem_flg & SEM_UNDO) == 0) continue; adjval = sops[i].sem_op; if (adjval == 0) continue; eval = semundo_adjust(p, &suptr, semid, sops[i].sem_num, -adjval); if (eval == 0) continue; /* * Oh-Oh! We ran out of either sem_undo's or undo's. * Rollback the adjustments to this point and then * rollback the semaphore ups and down so we can return * with an error with all structures restored. We * rollback the undo's in the exact reverse order that * we applied them. This guarantees that we won't run * out of space as we roll things back out. */ for (j = i - 1; j >= 0; j--) { if ((sops[j].sem_flg & SEM_UNDO) == 0) continue; adjval = sops[j].sem_op; if (adjval == 0) continue; if (semundo_adjust(p, &suptr, semid, sops[j].sem_num, adjval) != 0) panic("semop - can't undo undos"); } for (j = 0; j < nsops; j++) semaptr->sem_base[sops[j].sem_num].semval -= sops[j].sem_op; #ifdef SEM_DEBUG printf("eval = %d from semundo_adjust\n", eval); #endif UNLOCK_AND_RETURN(eval); } /* loop through the sops */ } /* if (do_undos) */ /* We're definitely done - set the sempid's */ for (i = 0; i < nsops; i++) { sopptr = &sops[i]; semptr = &semaptr->sem_base[sopptr->sem_num]; semptr->sempid = p->p_pid; } /* Do a wakeup if any semaphore was up'd. * we will release our lock on the semaphore subsystem before * we wakeup other processes to prevent a little thrashing. * Note that this is fine because we are done using the * semaphore structures at this point in time. We only use * a local variable pointer value, and the retval * parameter. * Note 2: Future use of sem_wakeup may reqiure the lock. */ SUBSYSTEM_LOCK_RELEASE; if (do_wakeup) { #ifdef SEM_DEBUG printf("semop: doing wakeup\n"); #ifdef SEM_WAKEUP sem_wakeup((caddr_t)semaptr); #else wakeup((caddr_t)semaptr); #endif printf("semop: back from wakeup\n"); #else wakeup((caddr_t)semaptr); #endif } #ifdef SEM_DEBUG printf("semop: done\n"); #endif *retval = 0; return(0); } /* * Go through the undo structures for this process and apply the adjustments to * semaphores. */ void semexit(p) struct proc *p; { register struct sem_undo *suptr; register struct sem_undo **supptr; int did_something; /* If we have not allocated our semaphores yet there can't be * anything to undo, but we need the lock to prevent * dynamic memory race conditions. */ SUBSYSTEM_LOCK_AQUIRE(p); if (!sem) { SUBSYSTEM_LOCK_RELEASE; return; } did_something = 0; /* * Go through the chain of undo vectors looking for one * associated with this process. */ for (supptr = &semu_list; (suptr = *supptr) != NULL; supptr = &suptr->un_next) { if (suptr->un_proc == p) break; } if (suptr == NULL) goto unlock; #ifdef SEM_DEBUG printf("proc @%08x has undo structure with %d entries\n", p, suptr->un_cnt); #endif /* * If there are any active undo elements then process them. */ if (suptr->un_cnt > 0) { int ix; for (ix = 0; ix < suptr->un_cnt; ix++) { int semid = suptr->un_ent[ix].un_id; int semnum = suptr->un_ent[ix].un_num; int adjval = suptr->un_ent[ix].un_adjval; struct semid_ds *semaptr; semaptr = &sema[semid]; if ((semaptr->sem_perm.mode & SEM_ALLOC) == 0) panic("semexit - semid not allocated"); if (semnum >= semaptr->sem_nsems) panic("semexit - semnum out of range"); #ifdef SEM_DEBUG printf("semexit: %08x id=%d num=%d(adj=%d) ; sem=%d\n", suptr->un_proc, suptr->un_ent[ix].un_id, suptr->un_ent[ix].un_num, suptr->un_ent[ix].un_adjval, semaptr->sem_base[semnum].semval); #endif if (adjval < 0) { if (semaptr->sem_base[semnum].semval < -adjval) semaptr->sem_base[semnum].semval = 0; else semaptr->sem_base[semnum].semval += adjval; } else semaptr->sem_base[semnum].semval += adjval; /* Maybe we should build a list of semaptr's to wake * up, finish all access to data structures, release the * subsystem lock, and wake all the processes. Something * to think about. It wouldn't buy us anything unless * wakeup had the potential to block, or the syscall * funnel state was changed to allow multiple threads * in the BSD code at once. */ #ifdef SEM_WAKEUP sem_wakeup((caddr_t)semaptr); #else wakeup((caddr_t)semaptr); #endif #ifdef SEM_DEBUG printf("semexit: back from wakeup\n"); #endif } } /* * Deallocate the undo vector. */ #ifdef SEM_DEBUG printf("removing vector\n"); #endif suptr->un_proc = NULL; *supptr = suptr->un_next; unlock: /* * XXX Should we also deallocate the IPC_PRIVATE semaphores * that belong to this process? Not doing so causes a * memory leak because the semaphores are a global resource. * I guess an arguement against would claim there are some * unknow race conditions if a new process gets created with * the same proc_id, or mabye a different process will reuse * a sem[] entry and confuse our tsleep() calls. It is * worth looking into. */ SUBSYSTEM_LOCK_RELEASE; }