Home | History | Annotate | Line # | Download | only in kern
sysv_sem.c revision 1.91.2.1
      1  1.91.2.1     skrll /*	$NetBSD: sysv_sem.c,v 1.91.2.1 2015/06/06 14:40:22 skrll Exp $	*/
      2      1.33   thorpej 
      3      1.33   thorpej /*-
      4      1.70        ad  * Copyright (c) 1999, 2007 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.70        ad  * NASA Ames Research Center, and by Andrew Doran.
     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  *
     20      1.33   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21      1.33   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22      1.33   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23      1.33   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24      1.33   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25      1.33   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26      1.33   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27      1.33   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28      1.33   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29      1.33   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30      1.33   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     31      1.33   thorpej  */
     32       1.9       cgd 
     33       1.1       cgd /*
     34       1.1       cgd  * Implementation of SVID semaphores
     35       1.1       cgd  *
     36      1.33   thorpej  * Author: Daniel Boulet
     37       1.1       cgd  *
     38       1.1       cgd  * This software is provided ``AS IS'' without any warranties of any kind.
     39       1.1       cgd  */
     40      1.42     lukem 
     41      1.42     lukem #include <sys/cdefs.h>
     42  1.91.2.1     skrll __KERNEL_RCSID(0, "$NetBSD: sysv_sem.c,v 1.91.2.1 2015/06/06 14:40:22 skrll Exp $");
     43      1.31      tron 
     44  1.91.2.1     skrll #ifdef _KERNEL_OPT
     45  1.91.2.1     skrll #include "opt_sysv.h"
     46  1.91.2.1     skrll #endif
     47       1.1       cgd 
     48       1.3   mycroft #include <sys/param.h>
     49       1.3   mycroft #include <sys/kernel.h>
     50       1.3   mycroft #include <sys/sem.h>
     51      1.38    simonb #include <sys/sysctl.h>
     52      1.70        ad #include <sys/kmem.h>
     53      1.38    simonb #include <sys/mount.h>		/* XXX for <sys/syscallargs.h> */
     54      1.10       cgd #include <sys/syscallargs.h>
     55      1.61      elad #include <sys/kauth.h>
     56      1.25  christos 
     57      1.74     rmind /*
     58      1.74     rmind  * Memory areas:
     59      1.74     rmind  *  1st: Pool of semaphore identifiers
     60      1.74     rmind  *  2nd: Semaphores
     61      1.74     rmind  *  3rd: Conditional variables
     62      1.74     rmind  *  4th: Undo structures
     63      1.74     rmind  */
     64      1.87     rmind struct semid_ds *	sema			__read_mostly;
     65      1.87     rmind static struct __sem *	sem			__read_mostly;
     66      1.87     rmind static kcondvar_t *	semcv			__read_mostly;
     67      1.87     rmind static int *		semu			__read_mostly;
     68      1.87     rmind 
     69      1.87     rmind static kmutex_t		semlock			__cacheline_aligned;
     70      1.87     rmind static bool		sem_realloc_state	__read_mostly;
     71      1.87     rmind static kcondvar_t	sem_realloc_cv;
     72      1.87     rmind 
     73      1.87     rmind /*
     74      1.87     rmind  * List of active undo structures, total number of semaphores,
     75      1.87     rmind  * and total number of semop waiters.
     76      1.87     rmind  */
     77      1.87     rmind static struct sem_undo *semu_list		__read_mostly;
     78      1.87     rmind static u_int		semtot			__cacheline_aligned;
     79      1.87     rmind static u_int		sem_waiters		__cacheline_aligned;
     80      1.74     rmind 
     81      1.74     rmind /* Macro to find a particular sem_undo vector */
     82      1.74     rmind #define SEMU(s, ix)	((struct sem_undo *)(((long)s) + ix * seminfo.semusz))
     83       1.1       cgd 
     84      1.27  christos #ifdef SEM_DEBUG
     85      1.28  christos #define SEM_PRINTF(a) printf a
     86      1.27  christos #else
     87      1.27  christos #define SEM_PRINTF(a)
     88      1.27  christos #endif
     89      1.27  christos 
     90  1.91.2.1     skrll void *hook;	/* cookie from exithook_establish() */
     91  1.91.2.1     skrll 
     92  1.91.2.1     skrll extern int kern_has_sysvsem;
     93  1.91.2.1     skrll 
     94      1.53  junyoung struct sem_undo *semu_alloc(struct proc *);
     95      1.53  junyoung int semundo_adjust(struct proc *, struct sem_undo **, int, int, int);
     96      1.53  junyoung void semundo_clear(int, int);
     97      1.25  christos 
     98      1.25  christos void
     99      1.59   thorpej seminit(void)
    100       1.1       cgd {
    101      1.48  jdolecek 	int i, sz;
    102      1.48  jdolecek 	vaddr_t v;
    103       1.1       cgd 
    104      1.70        ad 	mutex_init(&semlock, MUTEX_DEFAULT, IPL_NONE);
    105      1.74     rmind 	cv_init(&sem_realloc_cv, "semrealc");
    106      1.74     rmind 	sem_realloc_state = false;
    107      1.87     rmind 	semtot = 0;
    108      1.87     rmind 	sem_waiters = 0;
    109      1.70        ad 
    110      1.74     rmind 	/* Allocate the wired memory for our structures */
    111      1.74     rmind 	sz = ALIGN(seminfo.semmni * sizeof(struct semid_ds)) +
    112      1.74     rmind 	    ALIGN(seminfo.semmns * sizeof(struct __sem)) +
    113      1.74     rmind 	    ALIGN(seminfo.semmni * sizeof(kcondvar_t)) +
    114      1.74     rmind 	    ALIGN(seminfo.semmnu * seminfo.semusz);
    115      1.88  uebayasi 	sz = round_page(sz);
    116      1.88  uebayasi 	v = uvm_km_alloc(kernel_map, sz, 0, UVM_KMF_WIRED|UVM_KMF_ZERO);
    117      1.56      yamt 	if (v == 0)
    118      1.48  jdolecek 		panic("sysv_sem: cannot allocate memory");
    119      1.48  jdolecek 	sema = (void *)v;
    120      1.84     rmind 	sem = (void *)((uintptr_t)sema +
    121      1.84     rmind 	    ALIGN(seminfo.semmni * sizeof(struct semid_ds)));
    122      1.84     rmind 	semcv = (void *)((uintptr_t)sem +
    123      1.84     rmind 	    ALIGN(seminfo.semmns * sizeof(struct __sem)));
    124      1.84     rmind 	semu = (void *)((uintptr_t)semcv +
    125      1.84     rmind 	    ALIGN(seminfo.semmni * sizeof(kcondvar_t)));
    126       1.5   mycroft 
    127       1.5   mycroft 	for (i = 0; i < seminfo.semmni; i++) {
    128      1.33   thorpej 		sema[i]._sem_base = 0;
    129       1.5   mycroft 		sema[i].sem_perm.mode = 0;
    130      1.70        ad 		cv_init(&semcv[i], "semwait");
    131       1.5   mycroft 	}
    132       1.5   mycroft 	for (i = 0; i < seminfo.semmnu; i++) {
    133      1.74     rmind 		struct sem_undo *suptr = SEMU(semu, i);
    134       1.5   mycroft 		suptr->un_proc = NULL;
    135       1.5   mycroft 	}
    136       1.5   mycroft 	semu_list = NULL;
    137  1.91.2.1     skrll 	hook = exithook_establish(semexit, NULL);
    138  1.91.2.1     skrll 
    139  1.91.2.1     skrll 	kern_has_sysvsem = 1;
    140  1.91.2.1     skrll 
    141  1.91.2.1     skrll 	kern_has_sysvsem = 1;
    142      1.89      elad 
    143      1.89      elad 	sysvipcinit();
    144       1.1       cgd }
    145       1.1       cgd 
    146  1.91.2.1     skrll int
    147  1.91.2.1     skrll semfini(void)
    148  1.91.2.1     skrll {
    149  1.91.2.1     skrll 	int i, sz;
    150  1.91.2.1     skrll 	vaddr_t v = (vaddr_t)sema;
    151  1.91.2.1     skrll 
    152  1.91.2.1     skrll 	/* Don't allow module unload if we're busy */
    153  1.91.2.1     skrll 	mutex_enter(&semlock);
    154  1.91.2.1     skrll 	if (semtot) {
    155  1.91.2.1     skrll 		mutex_exit(&semlock);
    156  1.91.2.1     skrll 		return 1;
    157  1.91.2.1     skrll 	}
    158  1.91.2.1     skrll 
    159  1.91.2.1     skrll 	/* Remove the exit hook */
    160  1.91.2.1     skrll 	exithook_disestablish(hook);
    161  1.91.2.1     skrll 
    162  1.91.2.1     skrll 	/* Destroy all our condvars */
    163  1.91.2.1     skrll 	for (i = 0; i < seminfo.semmni; i++) {
    164  1.91.2.1     skrll 		cv_destroy(&semcv[i]);
    165  1.91.2.1     skrll 	}
    166  1.91.2.1     skrll 
    167  1.91.2.1     skrll 	/* Free the wired memory that we allocated */
    168  1.91.2.1     skrll 	sz = ALIGN(seminfo.semmni * sizeof(struct semid_ds)) +
    169  1.91.2.1     skrll 	    ALIGN(seminfo.semmns * sizeof(struct __sem)) +
    170  1.91.2.1     skrll 	    ALIGN(seminfo.semmni * sizeof(kcondvar_t)) +
    171  1.91.2.1     skrll 	    ALIGN(seminfo.semmnu * seminfo.semusz);
    172  1.91.2.1     skrll 	sz = round_page(sz);
    173  1.91.2.1     skrll 	uvm_km_free(kernel_map, v, sz, UVM_KMF_WIRED);
    174  1.91.2.1     skrll 
    175  1.91.2.1     skrll 	/* Destroy the last cv and mutex */
    176  1.91.2.1     skrll 	cv_destroy(&sem_realloc_cv);
    177  1.91.2.1     skrll 	mutex_exit(&semlock);
    178  1.91.2.1     skrll 	mutex_destroy(&semlock);
    179  1.91.2.1     skrll 
    180  1.91.2.1     skrll 	kern_has_sysvsem = 0;
    181  1.91.2.1     skrll 
    182  1.91.2.1     skrll 	return 0;
    183  1.91.2.1     skrll }
    184  1.91.2.1     skrll 
    185      1.74     rmind static int
    186      1.74     rmind semrealloc(int newsemmni, int newsemmns, int newsemmnu)
    187      1.74     rmind {
    188      1.74     rmind 	struct semid_ds *new_sema, *old_sema;
    189      1.74     rmind 	struct __sem *new_sem;
    190      1.74     rmind 	struct sem_undo *new_semu_list, *suptr, *nsuptr;
    191      1.74     rmind 	int *new_semu;
    192      1.74     rmind 	kcondvar_t *new_semcv;
    193      1.74     rmind 	vaddr_t v;
    194      1.74     rmind 	int i, j, lsemid, nmnus, sz;
    195      1.74     rmind 
    196      1.74     rmind 	if (newsemmni < 1 || newsemmns < 1 || newsemmnu < 1)
    197      1.74     rmind 		return EINVAL;
    198      1.74     rmind 
    199      1.74     rmind 	/* Allocate the wired memory for our structures */
    200      1.74     rmind 	sz = ALIGN(newsemmni * sizeof(struct semid_ds)) +
    201      1.74     rmind 	    ALIGN(newsemmns * sizeof(struct __sem)) +
    202      1.74     rmind 	    ALIGN(newsemmni * sizeof(kcondvar_t)) +
    203      1.74     rmind 	    ALIGN(newsemmnu * seminfo.semusz);
    204      1.88  uebayasi 	sz = round_page(sz);
    205      1.88  uebayasi 	v = uvm_km_alloc(kernel_map, sz, 0, UVM_KMF_WIRED|UVM_KMF_ZERO);
    206      1.74     rmind 	if (v == 0)
    207      1.74     rmind 		return ENOMEM;
    208      1.74     rmind 
    209      1.74     rmind 	mutex_enter(&semlock);
    210      1.74     rmind 	if (sem_realloc_state) {
    211      1.74     rmind 		mutex_exit(&semlock);
    212      1.74     rmind 		uvm_km_free(kernel_map, v, sz, UVM_KMF_WIRED);
    213      1.74     rmind 		return EBUSY;
    214      1.74     rmind 	}
    215      1.74     rmind 	sem_realloc_state = true;
    216      1.74     rmind 	if (sem_waiters) {
    217      1.74     rmind 		/*
    218      1.74     rmind 		 * Mark reallocation state, wake-up all waiters,
    219      1.74     rmind 		 * and wait while they will all exit.
    220      1.74     rmind 		 */
    221      1.74     rmind 		for (i = 0; i < seminfo.semmni; i++)
    222      1.74     rmind 			cv_broadcast(&semcv[i]);
    223      1.74     rmind 		while (sem_waiters)
    224      1.74     rmind 			cv_wait(&sem_realloc_cv, &semlock);
    225      1.74     rmind 	}
    226      1.74     rmind 	old_sema = sema;
    227      1.74     rmind 
    228      1.74     rmind 	/* Get the number of last slot */
    229      1.74     rmind 	lsemid = 0;
    230      1.74     rmind 	for (i = 0; i < seminfo.semmni; i++)
    231      1.74     rmind 		if (sema[i].sem_perm.mode & SEM_ALLOC)
    232      1.74     rmind 			lsemid = i;
    233      1.74     rmind 
    234      1.74     rmind 	/* Get the number of currently used undo structures */
    235      1.74     rmind 	nmnus = 0;
    236      1.74     rmind 	for (i = 0; i < seminfo.semmnu; i++) {
    237      1.74     rmind 		suptr = SEMU(semu, i);
    238      1.74     rmind 		if (suptr->un_proc == NULL)
    239      1.74     rmind 			continue;
    240      1.74     rmind 		nmnus++;
    241      1.74     rmind 	}
    242      1.74     rmind 
    243      1.74     rmind 	/* We cannot reallocate less memory than we use */
    244      1.74     rmind 	if (lsemid >= newsemmni || semtot > newsemmns || nmnus > newsemmnu) {
    245      1.74     rmind 		mutex_exit(&semlock);
    246      1.74     rmind 		uvm_km_free(kernel_map, v, sz, UVM_KMF_WIRED);
    247      1.74     rmind 		return EBUSY;
    248      1.74     rmind 	}
    249      1.74     rmind 
    250      1.74     rmind 	new_sema = (void *)v;
    251      1.84     rmind 	new_sem = (void *)((uintptr_t)new_sema +
    252      1.84     rmind 	    ALIGN(newsemmni * sizeof(struct semid_ds)));
    253      1.84     rmind 	new_semcv = (void *)((uintptr_t)new_sem +
    254      1.84     rmind 	    ALIGN(newsemmns * sizeof(struct __sem)));
    255      1.84     rmind 	new_semu = (void *)((uintptr_t)new_semcv +
    256      1.84     rmind 	    ALIGN(newsemmni * sizeof(kcondvar_t)));
    257      1.74     rmind 
    258      1.74     rmind 	/* Initialize all semaphore identifiers and condvars */
    259      1.74     rmind 	for (i = 0; i < newsemmni; i++) {
    260      1.74     rmind 		new_sema[i]._sem_base = 0;
    261      1.74     rmind 		new_sema[i].sem_perm.mode = 0;
    262      1.74     rmind 		cv_init(&new_semcv[i], "semwait");
    263      1.74     rmind 	}
    264      1.74     rmind 	for (i = 0; i < newsemmnu; i++) {
    265      1.74     rmind 		nsuptr = SEMU(new_semu, i);
    266      1.74     rmind 		nsuptr->un_proc = NULL;
    267      1.74     rmind 	}
    268      1.74     rmind 
    269      1.74     rmind 	/*
    270      1.74     rmind 	 * Copy all identifiers, semaphores and list of the
    271      1.74     rmind 	 * undo structures to the new memory allocation.
    272      1.74     rmind 	 */
    273      1.74     rmind 	j = 0;
    274      1.74     rmind 	for (i = 0; i <= lsemid; i++) {
    275      1.74     rmind 		if ((sema[i].sem_perm.mode & SEM_ALLOC) == 0)
    276      1.74     rmind 			continue;
    277      1.74     rmind 		memcpy(&new_sema[i], &sema[i], sizeof(struct semid_ds));
    278      1.74     rmind 		new_sema[i]._sem_base = &new_sem[j];
    279      1.74     rmind 		memcpy(new_sema[i]._sem_base, sema[i]._sem_base,
    280      1.74     rmind 		    (sizeof(struct __sem) * sema[i].sem_nsems));
    281      1.74     rmind 		j += sema[i].sem_nsems;
    282      1.74     rmind 	}
    283      1.74     rmind 	KASSERT(j == semtot);
    284      1.74     rmind 
    285      1.74     rmind 	j = 0;
    286      1.74     rmind 	new_semu_list = NULL;
    287      1.74     rmind 	for (suptr = semu_list; suptr != NULL; suptr = suptr->un_next) {
    288      1.74     rmind 		KASSERT(j < newsemmnu);
    289      1.74     rmind 		nsuptr = SEMU(new_semu, j);
    290      1.74     rmind 		memcpy(nsuptr, suptr, SEMUSZ);
    291      1.74     rmind 		nsuptr->un_next = new_semu_list;
    292      1.74     rmind 		new_semu_list = nsuptr;
    293      1.74     rmind 		j++;
    294      1.74     rmind 	}
    295      1.74     rmind 
    296      1.74     rmind 	for (i = 0; i < seminfo.semmni; i++) {
    297      1.74     rmind 		KASSERT(cv_has_waiters(&semcv[i]) == false);
    298      1.74     rmind 		cv_destroy(&semcv[i]);
    299      1.74     rmind 	}
    300      1.74     rmind 
    301      1.74     rmind 	sz = ALIGN(seminfo.semmni * sizeof(struct semid_ds)) +
    302      1.74     rmind 	    ALIGN(seminfo.semmns * sizeof(struct __sem)) +
    303      1.74     rmind 	    ALIGN(seminfo.semmni * sizeof(kcondvar_t)) +
    304      1.74     rmind 	    ALIGN(seminfo.semmnu * seminfo.semusz);
    305      1.88  uebayasi 	sz = round_page(sz);
    306      1.74     rmind 
    307      1.74     rmind 	/* Set the pointers and update the new values */
    308      1.74     rmind 	sema = new_sema;
    309      1.74     rmind 	sem = new_sem;
    310      1.74     rmind 	semcv = new_semcv;
    311      1.74     rmind 	semu = new_semu;
    312      1.74     rmind 	semu_list = new_semu_list;
    313      1.74     rmind 
    314      1.74     rmind 	seminfo.semmni = newsemmni;
    315      1.74     rmind 	seminfo.semmns = newsemmns;
    316      1.74     rmind 	seminfo.semmnu = newsemmnu;
    317      1.74     rmind 
    318      1.74     rmind 	/* Reallocation completed - notify all waiters, if any */
    319      1.74     rmind 	sem_realloc_state = false;
    320      1.74     rmind 	cv_broadcast(&sem_realloc_cv);
    321      1.74     rmind 	mutex_exit(&semlock);
    322      1.74     rmind 
    323      1.74     rmind 	uvm_km_free(kernel_map, (vaddr_t)old_sema, sz, UVM_KMF_WIRED);
    324      1.74     rmind 	return 0;
    325      1.74     rmind }
    326      1.74     rmind 
    327       1.1       cgd /*
    328      1.37  sommerfe  * Placebo.
    329       1.1       cgd  */
    330       1.1       cgd 
    331       1.1       cgd int
    332      1.78       dsl sys_semconfig(struct lwp *l, const struct sys_semconfig_args *uap, register_t *retval)
    333      1.23   thorpej {
    334      1.51     enami 
    335       1.5   mycroft 	*retval = 0;
    336      1.37  sommerfe 	return 0;
    337       1.1       cgd }
    338       1.1       cgd 
    339       1.1       cgd /*
    340      1.86     rmind  * Allocate a new sem_undo structure for a process.
    341      1.86     rmind  * => Returns NULL on failure.
    342       1.1       cgd  */
    343       1.1       cgd struct sem_undo *
    344      1.59   thorpej semu_alloc(struct proc *p)
    345       1.1       cgd {
    346      1.86     rmind 	struct sem_undo *suptr, **supptr;
    347      1.86     rmind 	bool attempted = false;
    348      1.35  augustss 	int i;
    349       1.1       cgd 
    350      1.70        ad 	KASSERT(mutex_owned(&semlock));
    351      1.86     rmind again:
    352      1.86     rmind 	/* Look for a free structure. */
    353      1.86     rmind 	for (i = 0; i < seminfo.semmnu; i++) {
    354      1.86     rmind 		suptr = SEMU(semu, i);
    355      1.86     rmind 		if (suptr->un_proc == NULL) {
    356      1.86     rmind 			/* Found.  Fill it in and return. */
    357      1.86     rmind 			suptr->un_next = semu_list;
    358      1.86     rmind 			semu_list = suptr;
    359      1.86     rmind 			suptr->un_cnt = 0;
    360      1.86     rmind 			suptr->un_proc = p;
    361      1.86     rmind 			return suptr;
    362      1.86     rmind 		}
    363      1.86     rmind 	}
    364      1.70        ad 
    365      1.86     rmind 	/* Not found.  Attempt to free some structures. */
    366      1.86     rmind 	if (!attempted) {
    367      1.86     rmind 		bool freed = false;
    368      1.86     rmind 
    369      1.86     rmind 		attempted = true;
    370      1.86     rmind 		supptr = &semu_list;
    371      1.86     rmind 		while ((suptr = *supptr) != NULL) {
    372      1.86     rmind 			if (suptr->un_cnt == 0)  {
    373      1.86     rmind 				suptr->un_proc = NULL;
    374      1.86     rmind 				*supptr = suptr->un_next;
    375      1.86     rmind 				freed = true;
    376      1.86     rmind 			} else {
    377      1.86     rmind 				supptr = &suptr->un_next;
    378       1.5   mycroft 			}
    379       1.5   mycroft 		}
    380      1.86     rmind 		if (freed) {
    381      1.86     rmind 			goto again;
    382       1.5   mycroft 		}
    383       1.1       cgd 	}
    384      1.25  christos 	return NULL;
    385       1.1       cgd }
    386       1.1       cgd 
    387       1.1       cgd /*
    388       1.1       cgd  * Adjust a particular entry for a particular proc
    389       1.1       cgd  */
    390       1.1       cgd 
    391       1.1       cgd int
    392      1.59   thorpej semundo_adjust(struct proc *p, struct sem_undo **supptr, int semid, int semnum,
    393      1.59   thorpej     int adjval)
    394       1.1       cgd {
    395      1.35  augustss 	struct sem_undo *suptr;
    396      1.91      matt 	struct sem_undo_entry *sunptr;
    397       1.5   mycroft 	int i;
    398       1.1       cgd 
    399      1.70        ad 	KASSERT(mutex_owned(&semlock));
    400      1.70        ad 
    401      1.51     enami 	/*
    402      1.51     enami 	 * Look for and remember the sem_undo if the caller doesn't
    403      1.51     enami 	 * provide it
    404      1.51     enami 	 */
    405       1.1       cgd 
    406       1.5   mycroft 	suptr = *supptr;
    407       1.4   mycroft 	if (suptr == NULL) {
    408      1.52     enami 		for (suptr = semu_list; suptr != NULL; suptr = suptr->un_next)
    409      1.52     enami 			if (suptr->un_proc == p)
    410       1.5   mycroft 				break;
    411      1.52     enami 
    412       1.5   mycroft 		if (suptr == NULL) {
    413       1.5   mycroft 			suptr = semu_alloc(p);
    414       1.5   mycroft 			if (suptr == NULL)
    415      1.51     enami 				return (ENOSPC);
    416       1.5   mycroft 		}
    417      1.52     enami 		*supptr = suptr;
    418       1.1       cgd 	}
    419       1.1       cgd 
    420       1.6   mycroft 	/*
    421      1.51     enami 	 * Look for the requested entry and adjust it (delete if
    422      1.51     enami 	 * adjval becomes 0).
    423       1.6   mycroft 	 */
    424       1.6   mycroft 	sunptr = &suptr->un_ent[0];
    425       1.5   mycroft 	for (i = 0; i < suptr->un_cnt; i++, sunptr++) {
    426       1.6   mycroft 		if (sunptr->un_id != semid || sunptr->un_num != semnum)
    427       1.6   mycroft 			continue;
    428      1.52     enami 		sunptr->un_adjval += adjval;
    429       1.6   mycroft 		if (sunptr->un_adjval == 0) {
    430       1.6   mycroft 			suptr->un_cnt--;
    431       1.6   mycroft 			if (i < suptr->un_cnt)
    432       1.6   mycroft 				suptr->un_ent[i] =
    433       1.6   mycroft 				    suptr->un_ent[suptr->un_cnt];
    434       1.5   mycroft 		}
    435      1.51     enami 		return (0);
    436       1.1       cgd 	}
    437       1.1       cgd 
    438       1.5   mycroft 	/* Didn't find the right entry - create it */
    439      1.11   mycroft 	if (suptr->un_cnt == SEMUME)
    440      1.51     enami 		return (EINVAL);
    441      1.11   mycroft 
    442      1.11   mycroft 	sunptr = &suptr->un_ent[suptr->un_cnt];
    443      1.11   mycroft 	suptr->un_cnt++;
    444      1.11   mycroft 	sunptr->un_adjval = adjval;
    445      1.11   mycroft 	sunptr->un_id = semid;
    446      1.11   mycroft 	sunptr->un_num = semnum;
    447      1.51     enami 	return (0);
    448       1.1       cgd }
    449       1.1       cgd 
    450       1.1       cgd void
    451      1.59   thorpej semundo_clear(int semid, int semnum)
    452       1.1       cgd {
    453      1.35  augustss 	struct sem_undo *suptr;
    454      1.91      matt 	struct sem_undo_entry *sunptr, *sunend;
    455       1.1       cgd 
    456      1.70        ad 	KASSERT(mutex_owned(&semlock));
    457      1.70        ad 
    458      1.52     enami 	for (suptr = semu_list; suptr != NULL; suptr = suptr->un_next)
    459      1.52     enami 		for (sunptr = &suptr->un_ent[0],
    460      1.52     enami 		    sunend = sunptr + suptr->un_cnt; sunptr < sunend;) {
    461       1.6   mycroft 			if (sunptr->un_id == semid) {
    462       1.6   mycroft 				if (semnum == -1 || sunptr->un_num == semnum) {
    463       1.6   mycroft 					suptr->un_cnt--;
    464      1.52     enami 					sunend--;
    465      1.52     enami 					if (sunptr != sunend)
    466      1.52     enami 						*sunptr = *sunend;
    467      1.52     enami 					if (semnum != -1)
    468      1.52     enami 						break;
    469      1.52     enami 					else
    470      1.52     enami 						continue;
    471       1.6   mycroft 				}
    472       1.6   mycroft 			}
    473      1.52     enami 			sunptr++;
    474       1.6   mycroft 		}
    475       1.1       cgd }
    476       1.1       cgd 
    477       1.1       cgd int
    478      1.85  christos sys_____semctl50(struct lwp *l, const struct sys_____semctl50_args *uap,
    479      1.85  christos     register_t *retval)
    480      1.23   thorpej {
    481      1.78       dsl 	/* {
    482      1.10       cgd 		syscallarg(int) semid;
    483      1.10       cgd 		syscallarg(int) semnum;
    484      1.10       cgd 		syscallarg(int) cmd;
    485      1.34  christos 		syscallarg(union __semun *) arg;
    486      1.78       dsl 	} */
    487      1.33   thorpej 	struct semid_ds sembuf;
    488      1.33   thorpej 	int cmd, error;
    489      1.34  christos 	void *pass_arg;
    490      1.34  christos 	union __semun karg;
    491      1.33   thorpej 
    492      1.33   thorpej 	cmd = SCARG(uap, cmd);
    493      1.33   thorpej 
    494      1.69       dsl 	pass_arg = get_semctl_arg(cmd, &sembuf, &karg);
    495      1.33   thorpej 
    496      1.34  christos 	if (pass_arg) {
    497      1.34  christos 		error = copyin(SCARG(uap, arg), &karg, sizeof(karg));
    498      1.33   thorpej 		if (error)
    499      1.34  christos 			return error;
    500      1.34  christos 		if (cmd == IPC_SET) {
    501      1.34  christos 			error = copyin(karg.buf, &sembuf, sizeof(sembuf));
    502      1.34  christos 			if (error)
    503      1.34  christos 				return (error);
    504      1.34  christos 		}
    505      1.33   thorpej 	}
    506      1.33   thorpej 
    507      1.63        ad 	error = semctl1(l, SCARG(uap, semid), SCARG(uap, semnum), cmd,
    508      1.33   thorpej 	    pass_arg, retval);
    509      1.33   thorpej 
    510      1.33   thorpej 	if (error == 0 && cmd == IPC_STAT)
    511      1.34  christos 		error = copyout(&sembuf, karg.buf, sizeof(sembuf));
    512      1.33   thorpej 
    513      1.33   thorpej 	return (error);
    514      1.33   thorpej }
    515      1.33   thorpej 
    516      1.33   thorpej int
    517      1.63        ad semctl1(struct lwp *l, int semid, int semnum, int cmd, void *v,
    518      1.59   thorpej     register_t *retval)
    519      1.33   thorpej {
    520      1.63        ad 	kauth_cred_t cred = l->l_cred;
    521      1.33   thorpej 	union __semun *arg = v;
    522      1.33   thorpej 	struct semid_ds *sembuf = v, *semaptr;
    523      1.33   thorpej 	int i, error, ix;
    524       1.1       cgd 
    525      1.27  christos 	SEM_PRINTF(("call to semctl(%d, %d, %d, %p)\n",
    526      1.33   thorpej 	    semid, semnum, cmd, v));
    527       1.1       cgd 
    528      1.70        ad 	mutex_enter(&semlock);
    529      1.70        ad 
    530      1.33   thorpej 	ix = IPCID_TO_IX(semid);
    531      1.70        ad 	if (ix < 0 || ix >= seminfo.semmni) {
    532      1.70        ad 		mutex_exit(&semlock);
    533      1.33   thorpej 		return (EINVAL);
    534      1.70        ad 	}
    535       1.6   mycroft 
    536      1.33   thorpej 	semaptr = &sema[ix];
    537       1.6   mycroft 	if ((semaptr->sem_perm.mode & SEM_ALLOC) == 0 ||
    538      1.70        ad 	    semaptr->sem_perm._seq != IPCID_TO_SEQ(semid)) {
    539      1.70        ad 		mutex_exit(&semlock);
    540      1.33   thorpej 		return (EINVAL);
    541      1.70        ad 	}
    542       1.1       cgd 
    543       1.6   mycroft 	switch (cmd) {
    544       1.6   mycroft 	case IPC_RMID:
    545      1.33   thorpej 		if ((error = ipcperm(cred, &semaptr->sem_perm, IPC_M)) != 0)
    546      1.70        ad 			break;
    547      1.61      elad 		semaptr->sem_perm.cuid = kauth_cred_geteuid(cred);
    548      1.61      elad 		semaptr->sem_perm.uid = kauth_cred_geteuid(cred);
    549       1.6   mycroft 		semtot -= semaptr->sem_nsems;
    550      1.33   thorpej 		for (i = semaptr->_sem_base - sem; i < semtot; i++)
    551       1.6   mycroft 			sem[i] = sem[i + semaptr->sem_nsems];
    552       1.6   mycroft 		for (i = 0; i < seminfo.semmni; i++) {
    553       1.6   mycroft 			if ((sema[i].sem_perm.mode & SEM_ALLOC) &&
    554      1.33   thorpej 			    sema[i]._sem_base > semaptr->_sem_base)
    555      1.33   thorpej 				sema[i]._sem_base -= semaptr->sem_nsems;
    556       1.6   mycroft 		}
    557       1.6   mycroft 		semaptr->sem_perm.mode = 0;
    558      1.33   thorpej 		semundo_clear(ix, -1);
    559      1.70        ad 		cv_broadcast(&semcv[ix]);
    560       1.6   mycroft 		break;
    561       1.1       cgd 
    562       1.6   mycroft 	case IPC_SET:
    563      1.33   thorpej 		if ((error = ipcperm(cred, &semaptr->sem_perm, IPC_M)))
    564      1.70        ad 			break;
    565      1.64  christos 		KASSERT(sembuf != NULL);
    566      1.33   thorpej 		semaptr->sem_perm.uid = sembuf->sem_perm.uid;
    567      1.33   thorpej 		semaptr->sem_perm.gid = sembuf->sem_perm.gid;
    568       1.6   mycroft 		semaptr->sem_perm.mode = (semaptr->sem_perm.mode & ~0777) |
    569      1.33   thorpej 		    (sembuf->sem_perm.mode & 0777);
    570      1.62    kardel 		semaptr->sem_ctime = time_second;
    571       1.6   mycroft 		break;
    572       1.1       cgd 
    573       1.6   mycroft 	case IPC_STAT:
    574      1.33   thorpej 		if ((error = ipcperm(cred, &semaptr->sem_perm, IPC_R)))
    575      1.70        ad 			break;
    576      1.64  christos 		KASSERT(sembuf != NULL);
    577      1.33   thorpej 		memcpy(sembuf, semaptr, sizeof(struct semid_ds));
    578      1.80     njoly 		sembuf->sem_perm.mode &= 0777;
    579       1.6   mycroft 		break;
    580       1.1       cgd 
    581       1.6   mycroft 	case GETNCNT:
    582      1.33   thorpej 		if ((error = ipcperm(cred, &semaptr->sem_perm, IPC_R)))
    583      1.70        ad 			break;
    584      1.70        ad 		if (semnum < 0 || semnum >= semaptr->sem_nsems) {
    585      1.70        ad 			error = EINVAL;
    586      1.70        ad 			break;
    587      1.70        ad 		}
    588      1.33   thorpej 		*retval = semaptr->_sem_base[semnum].semncnt;
    589       1.6   mycroft 		break;
    590       1.1       cgd 
    591       1.6   mycroft 	case GETPID:
    592      1.33   thorpej 		if ((error = ipcperm(cred, &semaptr->sem_perm, IPC_R)))
    593      1.70        ad 			break;
    594      1.70        ad 		if (semnum < 0 || semnum >= semaptr->sem_nsems) {
    595      1.70        ad 			error = EINVAL;
    596      1.70        ad 			break;
    597      1.70        ad 		}
    598      1.33   thorpej 		*retval = semaptr->_sem_base[semnum].sempid;
    599       1.6   mycroft 		break;
    600       1.1       cgd 
    601       1.6   mycroft 	case GETVAL:
    602      1.33   thorpej 		if ((error = ipcperm(cred, &semaptr->sem_perm, IPC_R)))
    603      1.70        ad 			break;
    604      1.70        ad 		if (semnum < 0 || semnum >= semaptr->sem_nsems) {
    605      1.70        ad 			error = EINVAL;
    606      1.70        ad 			break;
    607      1.70        ad 		}
    608      1.33   thorpej 		*retval = semaptr->_sem_base[semnum].semval;
    609       1.6   mycroft 		break;
    610       1.1       cgd 
    611       1.6   mycroft 	case GETALL:
    612      1.33   thorpej 		if ((error = ipcperm(cred, &semaptr->sem_perm, IPC_R)))
    613      1.70        ad 			break;
    614      1.60  christos 		KASSERT(arg != NULL);
    615       1.6   mycroft 		for (i = 0; i < semaptr->sem_nsems; i++) {
    616      1.33   thorpej 			error = copyout(&semaptr->_sem_base[i].semval,
    617      1.33   thorpej 			    &arg->array[i], sizeof(arg->array[i]));
    618      1.33   thorpej 			if (error != 0)
    619       1.6   mycroft 				break;
    620       1.6   mycroft 		}
    621       1.6   mycroft 		break;
    622       1.1       cgd 
    623       1.6   mycroft 	case GETZCNT:
    624      1.33   thorpej 		if ((error = ipcperm(cred, &semaptr->sem_perm, IPC_R)))
    625      1.70        ad 			break;
    626      1.70        ad 		if (semnum < 0 || semnum >= semaptr->sem_nsems) {
    627      1.70        ad 			error = EINVAL;
    628      1.70        ad 			break;
    629      1.70        ad 		}
    630      1.33   thorpej 		*retval = semaptr->_sem_base[semnum].semzcnt;
    631       1.6   mycroft 		break;
    632       1.1       cgd 
    633       1.6   mycroft 	case SETVAL:
    634      1.33   thorpej 		if ((error = ipcperm(cred, &semaptr->sem_perm, IPC_W)))
    635      1.70        ad 			break;
    636      1.70        ad 		if (semnum < 0 || semnum >= semaptr->sem_nsems) {
    637      1.70        ad 			error = EINVAL;
    638      1.70        ad 			break;
    639      1.70        ad 		}
    640      1.60  christos 		KASSERT(arg != NULL);
    641      1.83     njoly 		if ((unsigned int)arg->val > seminfo.semvmx) {
    642      1.83     njoly 			error = ERANGE;
    643      1.83     njoly 			break;
    644      1.83     njoly 		}
    645      1.33   thorpej 		semaptr->_sem_base[semnum].semval = arg->val;
    646      1.33   thorpej 		semundo_clear(ix, semnum);
    647      1.70        ad 		cv_broadcast(&semcv[ix]);
    648       1.6   mycroft 		break;
    649       1.1       cgd 
    650       1.6   mycroft 	case SETALL:
    651      1.33   thorpej 		if ((error = ipcperm(cred, &semaptr->sem_perm, IPC_W)))
    652      1.70        ad 			break;
    653      1.60  christos 		KASSERT(arg != NULL);
    654       1.6   mycroft 		for (i = 0; i < semaptr->sem_nsems; i++) {
    655      1.83     njoly 			unsigned short semval;
    656      1.83     njoly 			error = copyin(&arg->array[i], &semval,
    657      1.33   thorpej 			    sizeof(arg->array[i]));
    658      1.33   thorpej 			if (error != 0)
    659       1.6   mycroft 				break;
    660      1.83     njoly 			if ((unsigned int)semval > seminfo.semvmx) {
    661      1.83     njoly 				error = ERANGE;
    662      1.83     njoly 				break;
    663      1.83     njoly 			}
    664      1.83     njoly 			semaptr->_sem_base[i].semval = semval;
    665       1.6   mycroft 		}
    666      1.33   thorpej 		semundo_clear(ix, -1);
    667      1.70        ad 		cv_broadcast(&semcv[ix]);
    668       1.6   mycroft 		break;
    669       1.1       cgd 
    670       1.6   mycroft 	default:
    671      1.70        ad 		error = EINVAL;
    672      1.70        ad 		break;
    673       1.6   mycroft 	}
    674       1.4   mycroft 
    675      1.70        ad 	mutex_exit(&semlock);
    676      1.33   thorpej 	return (error);
    677       1.1       cgd }
    678       1.1       cgd 
    679       1.1       cgd int
    680      1.78       dsl sys_semget(struct lwp *l, const struct sys_semget_args *uap, register_t *retval)
    681      1.23   thorpej {
    682      1.78       dsl 	/* {
    683      1.10       cgd 		syscallarg(key_t) key;
    684      1.10       cgd 		syscallarg(int) nsems;
    685      1.10       cgd 		syscallarg(int) semflg;
    686      1.78       dsl 	} */
    687      1.70        ad 	int semid, error = 0;
    688      1.10       cgd 	int key = SCARG(uap, key);
    689      1.10       cgd 	int nsems = SCARG(uap, nsems);
    690      1.10       cgd 	int semflg = SCARG(uap, semflg);
    691      1.63        ad 	kauth_cred_t cred = l->l_cred;
    692       1.1       cgd 
    693      1.27  christos 	SEM_PRINTF(("semget(0x%x, %d, 0%o)\n", key, nsems, semflg));
    694       1.1       cgd 
    695      1.70        ad 	mutex_enter(&semlock);
    696      1.70        ad 
    697       1.6   mycroft 	if (key != IPC_PRIVATE) {
    698       1.6   mycroft 		for (semid = 0; semid < seminfo.semmni; semid++) {
    699       1.6   mycroft 			if ((sema[semid].sem_perm.mode & SEM_ALLOC) &&
    700      1.33   thorpej 			    sema[semid].sem_perm._key == key)
    701       1.6   mycroft 				break;
    702       1.6   mycroft 		}
    703       1.6   mycroft 		if (semid < seminfo.semmni) {
    704      1.27  christos 			SEM_PRINTF(("found public key\n"));
    705      1.70        ad 			if ((error = ipcperm(cred, &sema[semid].sem_perm,
    706       1.7   hpeyerl 			    semflg & 0700)))
    707      1.70        ad 			    	goto out;
    708       1.6   mycroft 			if (nsems > 0 && sema[semid].sem_nsems < nsems) {
    709      1.27  christos 				SEM_PRINTF(("too small\n"));
    710      1.70        ad 				error = EINVAL;
    711      1.70        ad 				goto out;
    712       1.6   mycroft 			}
    713       1.6   mycroft 			if ((semflg & IPC_CREAT) && (semflg & IPC_EXCL)) {
    714      1.27  christos 				SEM_PRINTF(("not exclusive\n"));
    715      1.70        ad 				error = EEXIST;
    716      1.70        ad 				goto out;
    717       1.6   mycroft 			}
    718       1.6   mycroft 			goto found;
    719       1.6   mycroft 		}
    720       1.6   mycroft 	}
    721       1.6   mycroft 
    722      1.27  christos 	SEM_PRINTF(("need to allocate the semid_ds\n"));
    723       1.6   mycroft 	if (key == IPC_PRIVATE || (semflg & IPC_CREAT)) {
    724       1.6   mycroft 		if (nsems <= 0 || nsems > seminfo.semmsl) {
    725      1.27  christos 			SEM_PRINTF(("nsems out of range (0<%d<=%d)\n", nsems,
    726      1.27  christos 			    seminfo.semmsl));
    727      1.70        ad 			error = EINVAL;
    728      1.70        ad 			goto out;
    729       1.6   mycroft 		}
    730       1.6   mycroft 		if (nsems > seminfo.semmns - semtot) {
    731      1.51     enami 			SEM_PRINTF(("not enough semaphores left "
    732      1.51     enami 			    "(need %d, got %d)\n",
    733      1.27  christos 			    nsems, seminfo.semmns - semtot));
    734      1.70        ad 			error = ENOSPC;
    735      1.70        ad 			goto out;
    736       1.6   mycroft 		}
    737       1.6   mycroft 		for (semid = 0; semid < seminfo.semmni; semid++) {
    738       1.6   mycroft 			if ((sema[semid].sem_perm.mode & SEM_ALLOC) == 0)
    739       1.6   mycroft 				break;
    740       1.6   mycroft 		}
    741       1.6   mycroft 		if (semid == seminfo.semmni) {
    742      1.27  christos 			SEM_PRINTF(("no more semid_ds's available\n"));
    743      1.70        ad 			error = ENOSPC;
    744      1.70        ad 			goto out;
    745       1.6   mycroft 		}
    746      1.27  christos 		SEM_PRINTF(("semid %d is available\n", semid));
    747      1.33   thorpej 		sema[semid].sem_perm._key = key;
    748      1.61      elad 		sema[semid].sem_perm.cuid = kauth_cred_geteuid(cred);
    749      1.61      elad 		sema[semid].sem_perm.uid = kauth_cred_geteuid(cred);
    750      1.61      elad 		sema[semid].sem_perm.cgid = kauth_cred_getegid(cred);
    751      1.61      elad 		sema[semid].sem_perm.gid = kauth_cred_getegid(cred);
    752       1.6   mycroft 		sema[semid].sem_perm.mode = (semflg & 0777) | SEM_ALLOC;
    753      1.33   thorpej 		sema[semid].sem_perm._seq =
    754      1.33   thorpej 		    (sema[semid].sem_perm._seq + 1) & 0x7fff;
    755       1.6   mycroft 		sema[semid].sem_nsems = nsems;
    756       1.6   mycroft 		sema[semid].sem_otime = 0;
    757      1.62    kardel 		sema[semid].sem_ctime = time_second;
    758      1.33   thorpej 		sema[semid]._sem_base = &sem[semtot];
    759       1.6   mycroft 		semtot += nsems;
    760      1.33   thorpej 		memset(sema[semid]._sem_base, 0,
    761      1.51     enami 		    sizeof(sema[semid]._sem_base[0]) * nsems);
    762      1.33   thorpej 		SEM_PRINTF(("sembase = %p, next = %p\n", sema[semid]._sem_base,
    763      1.27  christos 		    &sem[semtot]));
    764       1.1       cgd 	} else {
    765      1.27  christos 		SEM_PRINTF(("didn't find it and wasn't asked to create it\n"));
    766      1.70        ad 		error = ENOENT;
    767      1.70        ad 		goto out;
    768       1.1       cgd 	}
    769       1.1       cgd 
    770      1.70        ad  found:
    771       1.6   mycroft 	*retval = IXSEQ_TO_IPCID(semid, sema[semid].sem_perm);
    772      1.70        ad  out:
    773      1.70        ad 	mutex_exit(&semlock);
    774      1.70        ad 	return (error);
    775       1.1       cgd }
    776       1.1       cgd 
    777      1.57       chs #define SMALL_SOPS 8
    778      1.57       chs 
    779       1.1       cgd int
    780      1.78       dsl sys_semop(struct lwp *l, const struct sys_semop_args *uap, register_t *retval)
    781      1.23   thorpej {
    782      1.78       dsl 	/* {
    783      1.10       cgd 		syscallarg(int) semid;
    784      1.10       cgd 		syscallarg(struct sembuf *) sops;
    785      1.29    kleink 		syscallarg(size_t) nsops;
    786      1.78       dsl 	} */
    787      1.45   thorpej 	struct proc *p = l->l_proc;
    788      1.52     enami 	int semid = SCARG(uap, semid), seq;
    789      1.41  jdolecek 	size_t nsops = SCARG(uap, nsops);
    790      1.57       chs 	struct sembuf small_sops[SMALL_SOPS];
    791      1.57       chs 	struct sembuf *sops;
    792      1.35  augustss 	struct semid_ds *semaptr;
    793      1.35  augustss 	struct sembuf *sopptr = NULL;
    794      1.35  augustss 	struct __sem *semptr = NULL;
    795       1.6   mycroft 	struct sem_undo *suptr = NULL;
    796      1.63        ad 	kauth_cred_t cred = l->l_cred;
    797      1.70        ad 	int i, error;
    798      1.25  christos 	int do_wakeup, do_undos;
    799       1.1       cgd 
    800      1.58  christos 	SEM_PRINTF(("call to semop(%d, %p, %zd)\n", semid, SCARG(uap,sops), nsops));
    801      1.81        ad 
    802      1.81        ad 	if (__predict_false((p->p_flag & PK_SYSVSEM) == 0)) {
    803      1.81        ad 		mutex_enter(p->p_lock);
    804      1.81        ad 		p->p_flag |= PK_SYSVSEM;
    805      1.81        ad 		mutex_exit(p->p_lock);
    806      1.81        ad 	}
    807      1.81        ad 
    808      1.76     rmind restart:
    809      1.70        ad 	if (nsops <= SMALL_SOPS) {
    810      1.70        ad 		sops = small_sops;
    811      1.71        ad 	} else if (nsops <= seminfo.semopm) {
    812      1.70        ad 		sops = kmem_alloc(nsops * sizeof(*sops), KM_SLEEP);
    813      1.71        ad 	} else {
    814      1.70        ad 		SEM_PRINTF(("too many sops (max=%d, nsops=%zd)\n",
    815      1.70        ad 		    seminfo.semopm, nsops));
    816      1.70        ad 		return (E2BIG);
    817      1.70        ad 	}
    818      1.70        ad 
    819      1.77        ad 	error = copyin(SCARG(uap, sops), sops, nsops * sizeof(sops[0]));
    820      1.77        ad 	if (error) {
    821      1.77        ad 		SEM_PRINTF(("error = %d from copyin(%p, %p, %zd)\n", error,
    822      1.77        ad 		    SCARG(uap, sops), &sops, nsops * sizeof(sops[0])));
    823      1.79        ad 		if (sops != small_sops)
    824      1.77        ad 			kmem_free(sops, nsops * sizeof(*sops));
    825      1.77        ad 		return error;
    826      1.77        ad 	}
    827      1.77        ad 
    828      1.70        ad 	mutex_enter(&semlock);
    829      1.76     rmind 	/* In case of reallocation, we will wait for completion */
    830      1.76     rmind 	while (__predict_false(sem_realloc_state))
    831      1.76     rmind 		cv_wait(&sem_realloc_cv, &semlock);
    832      1.70        ad 
    833       1.6   mycroft 	semid = IPCID_TO_IX(semid);	/* Convert back to zero origin */
    834      1.70        ad 	if (semid < 0 || semid >= seminfo.semmni) {
    835      1.70        ad 		error = EINVAL;
    836      1.70        ad 		goto out;
    837      1.70        ad 	}
    838       1.6   mycroft 
    839       1.6   mycroft 	semaptr = &sema[semid];
    840      1.52     enami 	seq = IPCID_TO_SEQ(SCARG(uap, semid));
    841      1.11   mycroft 	if ((semaptr->sem_perm.mode & SEM_ALLOC) == 0 ||
    842      1.70        ad 	    semaptr->sem_perm._seq != seq) {
    843      1.70        ad 		error = EINVAL;
    844      1.70        ad 		goto out;
    845       1.6   mycroft 	}
    846       1.1       cgd 
    847      1.70        ad 	if ((error = ipcperm(cred, &semaptr->sem_perm, IPC_W))) {
    848      1.70        ad 		SEM_PRINTF(("error = %d from ipaccess\n", error));
    849      1.70        ad 		goto out;
    850       1.6   mycroft 	}
    851       1.1       cgd 
    852      1.52     enami 	for (i = 0; i < nsops; i++)
    853      1.57       chs 		if (sops[i].sem_num >= semaptr->sem_nsems) {
    854      1.70        ad 			error = EFBIG;
    855      1.57       chs 			goto out;
    856      1.57       chs 		}
    857      1.52     enami 
    858      1.51     enami 	/*
    859       1.6   mycroft 	 * Loop trying to satisfy the vector of requests.
    860       1.6   mycroft 	 * If we reach a point where we must wait, any requests already
    861       1.6   mycroft 	 * performed are rolled back and we go to sleep until some other
    862       1.6   mycroft 	 * process wakes us up.  At this point, we start all over again.
    863       1.6   mycroft 	 *
    864       1.6   mycroft 	 * This ensures that from the perspective of other tasks, a set
    865       1.6   mycroft 	 * of requests is atomic (never partially satisfied).
    866       1.6   mycroft 	 */
    867       1.6   mycroft 	do_undos = 0;
    868       1.1       cgd 
    869       1.6   mycroft 	for (;;) {
    870       1.6   mycroft 		do_wakeup = 0;
    871       1.1       cgd 
    872       1.6   mycroft 		for (i = 0; i < nsops; i++) {
    873       1.6   mycroft 			sopptr = &sops[i];
    874      1.33   thorpej 			semptr = &semaptr->_sem_base[sopptr->sem_num];
    875       1.1       cgd 
    876      1.51     enami 			SEM_PRINTF(("semop:  semaptr=%p, sem_base=%p, "
    877      1.51     enami 			    "semptr=%p, sem[%d]=%d : op=%d, flag=%s\n",
    878      1.33   thorpej 			    semaptr, semaptr->_sem_base, semptr,
    879       1.6   mycroft 			    sopptr->sem_num, semptr->semval, sopptr->sem_op,
    880      1.51     enami 			    (sopptr->sem_flg & IPC_NOWAIT) ?
    881      1.51     enami 			    "nowait" : "wait"));
    882       1.1       cgd 
    883       1.6   mycroft 			if (sopptr->sem_op < 0) {
    884      1.25  christos 				if ((int)(semptr->semval +
    885      1.51     enami 				    sopptr->sem_op) < 0) {
    886      1.51     enami 					SEM_PRINTF(("semop:  "
    887      1.51     enami 					    "can't do it now\n"));
    888       1.6   mycroft 					break;
    889       1.6   mycroft 				} else {
    890       1.6   mycroft 					semptr->semval += sopptr->sem_op;
    891       1.6   mycroft 					if (semptr->semval == 0 &&
    892       1.6   mycroft 					    semptr->semzcnt > 0)
    893       1.6   mycroft 						do_wakeup = 1;
    894       1.6   mycroft 				}
    895       1.6   mycroft 				if (sopptr->sem_flg & SEM_UNDO)
    896       1.6   mycroft 					do_undos = 1;
    897       1.6   mycroft 			} else if (sopptr->sem_op == 0) {
    898       1.6   mycroft 				if (semptr->semval > 0) {
    899      1.27  christos 					SEM_PRINTF(("semop:  not zero now\n"));
    900       1.6   mycroft 					break;
    901       1.6   mycroft 				}
    902       1.6   mycroft 			} else {
    903       1.6   mycroft 				if (semptr->semncnt > 0)
    904       1.6   mycroft 					do_wakeup = 1;
    905       1.6   mycroft 				semptr->semval += sopptr->sem_op;
    906       1.6   mycroft 				if (sopptr->sem_flg & SEM_UNDO)
    907       1.6   mycroft 					do_undos = 1;
    908       1.6   mycroft 			}
    909       1.6   mycroft 		}
    910       1.1       cgd 
    911       1.6   mycroft 		/*
    912       1.6   mycroft 		 * Did we get through the entire vector?
    913       1.6   mycroft 		 */
    914       1.6   mycroft 		if (i >= nsops)
    915       1.6   mycroft 			goto done;
    916       1.1       cgd 
    917       1.6   mycroft 		/*
    918       1.6   mycroft 		 * No ... rollback anything that we've already done
    919       1.6   mycroft 		 */
    920      1.51     enami 		SEM_PRINTF(("semop:  rollback 0 through %d\n", i - 1));
    921      1.52     enami 		while (i-- > 0)
    922      1.52     enami 			semaptr->_sem_base[sops[i].sem_num].semval -=
    923      1.52     enami 			    sops[i].sem_op;
    924       1.1       cgd 
    925       1.6   mycroft 		/*
    926       1.6   mycroft 		 * If the request that we couldn't satisfy has the
    927       1.6   mycroft 		 * NOWAIT flag set then return with EAGAIN.
    928       1.6   mycroft 		 */
    929      1.57       chs 		if (sopptr->sem_flg & IPC_NOWAIT) {
    930      1.70        ad 			error = EAGAIN;
    931      1.57       chs 			goto out;
    932      1.57       chs 		}
    933       1.1       cgd 
    934       1.6   mycroft 		if (sopptr->sem_op == 0)
    935       1.6   mycroft 			semptr->semzcnt++;
    936       1.6   mycroft 		else
    937       1.6   mycroft 			semptr->semncnt++;
    938       1.1       cgd 
    939      1.74     rmind 		sem_waiters++;
    940      1.27  christos 		SEM_PRINTF(("semop:  good night!\n"));
    941      1.70        ad 		error = cv_wait_sig(&semcv[semid], &semlock);
    942      1.70        ad 		SEM_PRINTF(("semop:  good morning (error=%d)!\n", error));
    943      1.74     rmind 		sem_waiters--;
    944      1.74     rmind 
    945      1.76     rmind 		/* Notify reallocator, if it is waiting */
    946      1.76     rmind 		cv_broadcast(&sem_realloc_cv);
    947       1.1       cgd 
    948       1.6   mycroft 		/*
    949       1.6   mycroft 		 * Make sure that the semaphore still exists
    950       1.6   mycroft 		 */
    951       1.6   mycroft 		if ((semaptr->sem_perm.mode & SEM_ALLOC) == 0 ||
    952      1.52     enami 		    semaptr->sem_perm._seq != seq) {
    953      1.70        ad 			error = EIDRM;
    954      1.57       chs 			goto out;
    955       1.6   mycroft 		}
    956       1.1       cgd 
    957       1.6   mycroft 		/*
    958       1.6   mycroft 		 * The semaphore is still alive.  Readjust the count of
    959       1.6   mycroft 		 * waiting processes.
    960       1.6   mycroft 		 */
    961      1.51     enami 		semptr = &semaptr->_sem_base[sopptr->sem_num];
    962       1.6   mycroft 		if (sopptr->sem_op == 0)
    963       1.6   mycroft 			semptr->semzcnt--;
    964       1.6   mycroft 		else
    965       1.6   mycroft 			semptr->semncnt--;
    966      1.74     rmind 
    967      1.76     rmind 		/* In case of such state, restart the call */
    968      1.76     rmind 		if (sem_realloc_state) {
    969      1.76     rmind 			mutex_exit(&semlock);
    970      1.76     rmind 			goto restart;
    971      1.76     rmind 		}
    972      1.76     rmind 
    973      1.74     rmind 		/* Is it really morning, or was our sleep interrupted? */
    974      1.76     rmind 		if (error != 0) {
    975      1.70        ad 			error = EINTR;
    976      1.57       chs 			goto out;
    977      1.57       chs 		}
    978      1.50  christos 		SEM_PRINTF(("semop:  good morning!\n"));
    979       1.6   mycroft 	}
    980       1.1       cgd 
    981       1.6   mycroft done:
    982       1.6   mycroft 	/*
    983       1.6   mycroft 	 * Process any SEM_UNDO requests.
    984       1.6   mycroft 	 */
    985       1.6   mycroft 	if (do_undos) {
    986       1.5   mycroft 		for (i = 0; i < nsops; i++) {
    987       1.6   mycroft 			/*
    988       1.6   mycroft 			 * We only need to deal with SEM_UNDO's for non-zero
    989       1.6   mycroft 			 * op's.
    990       1.6   mycroft 			 */
    991       1.6   mycroft 			int adjval;
    992       1.1       cgd 
    993       1.6   mycroft 			if ((sops[i].sem_flg & SEM_UNDO) == 0)
    994       1.6   mycroft 				continue;
    995       1.6   mycroft 			adjval = sops[i].sem_op;
    996       1.6   mycroft 			if (adjval == 0)
    997       1.6   mycroft 				continue;
    998      1.70        ad 			error = semundo_adjust(p, &suptr, semid,
    999       1.6   mycroft 			    sops[i].sem_num, -adjval);
   1000      1.70        ad 			if (error == 0)
   1001       1.6   mycroft 				continue;
   1002       1.1       cgd 
   1003       1.6   mycroft 			/*
   1004       1.6   mycroft 			 * Oh-Oh!  We ran out of either sem_undo's or undo's.
   1005       1.6   mycroft 			 * Rollback the adjustments to this point and then
   1006       1.6   mycroft 			 * rollback the semaphore ups and down so we can return
   1007       1.6   mycroft 			 * with an error with all structures restored.  We
   1008       1.6   mycroft 			 * rollback the undo's in the exact reverse order that
   1009       1.6   mycroft 			 * we applied them.  This guarantees that we won't run
   1010       1.6   mycroft 			 * out of space as we roll things back out.
   1011       1.6   mycroft 			 */
   1012      1.52     enami 			while (i-- > 0) {
   1013      1.52     enami 				if ((sops[i].sem_flg & SEM_UNDO) == 0)
   1014       1.6   mycroft 					continue;
   1015      1.52     enami 				adjval = sops[i].sem_op;
   1016       1.6   mycroft 				if (adjval == 0)
   1017       1.6   mycroft 					continue;
   1018       1.6   mycroft 				if (semundo_adjust(p, &suptr, semid,
   1019      1.52     enami 				    sops[i].sem_num, adjval) != 0)
   1020       1.1       cgd 					panic("semop - can't undo undos");
   1021       1.6   mycroft 			}
   1022       1.1       cgd 
   1023      1.54     enami 			for (i = 0; i < nsops; i++)
   1024      1.54     enami 				semaptr->_sem_base[sops[i].sem_num].semval -=
   1025      1.54     enami 				    sops[i].sem_op;
   1026       1.1       cgd 
   1027      1.70        ad 			SEM_PRINTF(("error = %d from semundo_adjust\n", error));
   1028      1.57       chs 			goto out;
   1029       1.1       cgd 		} /* loop through the sops */
   1030       1.6   mycroft 	} /* if (do_undos) */
   1031       1.1       cgd 
   1032       1.6   mycroft 	/* We're definitely done - set the sempid's */
   1033       1.6   mycroft 	for (i = 0; i < nsops; i++) {
   1034       1.1       cgd 		sopptr = &sops[i];
   1035      1.33   thorpej 		semptr = &semaptr->_sem_base[sopptr->sem_num];
   1036       1.1       cgd 		semptr->sempid = p->p_pid;
   1037       1.6   mycroft 	}
   1038       1.1       cgd 
   1039      1.55    briggs 	/* Update sem_otime */
   1040      1.62    kardel 	semaptr->sem_otime = time_second;
   1041      1.55    briggs 
   1042       1.6   mycroft 	/* Do a wakeup if any semaphore was up'd. */
   1043       1.6   mycroft 	if (do_wakeup) {
   1044      1.27  christos 		SEM_PRINTF(("semop:  doing wakeup\n"));
   1045      1.70        ad 		cv_broadcast(&semcv[semid]);
   1046      1.27  christos 		SEM_PRINTF(("semop:  back from wakeup\n"));
   1047       1.6   mycroft 	}
   1048      1.27  christos 	SEM_PRINTF(("semop:  done\n"));
   1049       1.6   mycroft 	*retval = 0;
   1050      1.57       chs 
   1051      1.70        ad  out:
   1052      1.70        ad 	mutex_exit(&semlock);
   1053      1.79        ad 	if (sops != small_sops)
   1054      1.70        ad 		kmem_free(sops, nsops * sizeof(*sops));
   1055      1.70        ad 	return error;
   1056       1.1       cgd }
   1057       1.1       cgd 
   1058       1.1       cgd /*
   1059      1.51     enami  * Go through the undo structures for this process and apply the
   1060      1.51     enami  * adjustments to semaphores.
   1061       1.1       cgd  */
   1062      1.44  christos /*ARGSUSED*/
   1063      1.25  christos void
   1064      1.66      yamt semexit(struct proc *p, void *v)
   1065       1.1       cgd {
   1066      1.35  augustss 	struct sem_undo *suptr;
   1067      1.35  augustss 	struct sem_undo **supptr;
   1068       1.1       cgd 
   1069      1.81        ad 	if ((p->p_flag & PK_SYSVSEM) == 0)
   1070      1.81        ad 		return;
   1071      1.81        ad 
   1072      1.70        ad 	mutex_enter(&semlock);
   1073      1.70        ad 
   1074       1.6   mycroft 	/*
   1075      1.51     enami 	 * Go through the chain of undo vectors looking for one
   1076      1.51     enami 	 * associated with this process.
   1077      1.17   mycroft 	 */
   1078      1.17   mycroft 
   1079      1.17   mycroft 	for (supptr = &semu_list; (suptr = *supptr) != NULL;
   1080      1.17   mycroft 	    supptr = &suptr->un_next) {
   1081      1.17   mycroft 		if (suptr->un_proc == p)
   1082      1.17   mycroft 			break;
   1083      1.17   mycroft 	}
   1084      1.17   mycroft 
   1085      1.17   mycroft 	/*
   1086      1.37  sommerfe 	 * If there is no undo vector, skip to the end.
   1087      1.14   mycroft 	 */
   1088      1.14   mycroft 
   1089      1.70        ad 	if (suptr == NULL) {
   1090      1.70        ad 		mutex_exit(&semlock);
   1091      1.37  sommerfe 		return;
   1092      1.70        ad 	}
   1093      1.51     enami 
   1094      1.14   mycroft 	/*
   1095      1.37  sommerfe 	 * We now have an undo vector for this process.
   1096      1.15   mycroft 	 */
   1097       1.1       cgd 
   1098      1.27  christos 	SEM_PRINTF(("proc @%p has undo structure with %d entries\n", p,
   1099      1.27  christos 	    suptr->un_cnt));
   1100       1.1       cgd 
   1101       1.5   mycroft 	/*
   1102       1.5   mycroft 	 * If there are any active undo elements then process them.
   1103       1.5   mycroft 	 */
   1104       1.5   mycroft 	if (suptr->un_cnt > 0) {
   1105       1.6   mycroft 		int ix;
   1106       1.1       cgd 
   1107       1.6   mycroft 		for (ix = 0; ix < suptr->un_cnt; ix++) {
   1108       1.6   mycroft 			int semid = suptr->un_ent[ix].un_id;
   1109       1.6   mycroft 			int semnum = suptr->un_ent[ix].un_num;
   1110       1.6   mycroft 			int adjval = suptr->un_ent[ix].un_adjval;
   1111       1.6   mycroft 			struct semid_ds *semaptr;
   1112       1.6   mycroft 
   1113       1.6   mycroft 			semaptr = &sema[semid];
   1114       1.6   mycroft 			if ((semaptr->sem_perm.mode & SEM_ALLOC) == 0)
   1115       1.6   mycroft 				panic("semexit - semid not allocated");
   1116       1.6   mycroft 			if (semnum >= semaptr->sem_nsems)
   1117       1.6   mycroft 				panic("semexit - semnum out of range");
   1118       1.6   mycroft 
   1119      1.51     enami 			SEM_PRINTF(("semexit:  %p id=%d num=%d(adj=%d) ; "
   1120      1.51     enami 			    "sem=%d\n",
   1121       1.6   mycroft 			    suptr->un_proc, suptr->un_ent[ix].un_id,
   1122       1.6   mycroft 			    suptr->un_ent[ix].un_num,
   1123       1.6   mycroft 			    suptr->un_ent[ix].un_adjval,
   1124      1.33   thorpej 			    semaptr->_sem_base[semnum].semval));
   1125       1.6   mycroft 
   1126      1.14   mycroft 			if (adjval < 0 &&
   1127      1.33   thorpej 			    semaptr->_sem_base[semnum].semval < -adjval)
   1128      1.33   thorpej 				semaptr->_sem_base[semnum].semval = 0;
   1129      1.14   mycroft 			else
   1130      1.33   thorpej 				semaptr->_sem_base[semnum].semval += adjval;
   1131       1.1       cgd 
   1132      1.70        ad 			cv_broadcast(&semcv[semid]);
   1133      1.27  christos 			SEM_PRINTF(("semexit:  back from wakeup\n"));
   1134       1.6   mycroft 		}
   1135       1.5   mycroft 	}
   1136       1.1       cgd 
   1137       1.5   mycroft 	/*
   1138       1.5   mycroft 	 * Deallocate the undo vector.
   1139       1.5   mycroft 	 */
   1140      1.27  christos 	SEM_PRINTF(("removing vector\n"));
   1141       1.5   mycroft 	suptr->un_proc = NULL;
   1142       1.5   mycroft 	*supptr = suptr->un_next;
   1143      1.70        ad 	mutex_exit(&semlock);
   1144       1.1       cgd }
   1145      1.74     rmind 
   1146      1.74     rmind /*
   1147      1.74     rmind  * Sysctl initialization and nodes.
   1148      1.74     rmind  */
   1149      1.74     rmind 
   1150      1.74     rmind static int
   1151      1.74     rmind sysctl_ipc_semmni(SYSCTLFN_ARGS)
   1152      1.74     rmind {
   1153      1.74     rmind 	int newsize, error;
   1154      1.74     rmind 	struct sysctlnode node;
   1155      1.74     rmind 	node = *rnode;
   1156      1.74     rmind 	node.sysctl_data = &newsize;
   1157      1.74     rmind 
   1158      1.74     rmind 	newsize = seminfo.semmni;
   1159      1.74     rmind 	error = sysctl_lookup(SYSCTLFN_CALL(&node));
   1160      1.74     rmind 	if (error || newp == NULL)
   1161      1.74     rmind 		return error;
   1162      1.74     rmind 
   1163      1.74     rmind 	return semrealloc(newsize, seminfo.semmns, seminfo.semmnu);
   1164      1.74     rmind }
   1165      1.74     rmind 
   1166      1.74     rmind static int
   1167      1.74     rmind sysctl_ipc_semmns(SYSCTLFN_ARGS)
   1168      1.74     rmind {
   1169      1.74     rmind 	int newsize, error;
   1170      1.74     rmind 	struct sysctlnode node;
   1171      1.74     rmind 	node = *rnode;
   1172      1.74     rmind 	node.sysctl_data = &newsize;
   1173      1.74     rmind 
   1174      1.74     rmind 	newsize = seminfo.semmns;
   1175      1.74     rmind 	error = sysctl_lookup(SYSCTLFN_CALL(&node));
   1176      1.74     rmind 	if (error || newp == NULL)
   1177      1.74     rmind 		return error;
   1178      1.74     rmind 
   1179      1.74     rmind 	return semrealloc(seminfo.semmni, newsize, seminfo.semmnu);
   1180      1.74     rmind }
   1181      1.74     rmind 
   1182      1.74     rmind static int
   1183      1.74     rmind sysctl_ipc_semmnu(SYSCTLFN_ARGS)
   1184      1.74     rmind {
   1185      1.74     rmind 	int newsize, error;
   1186      1.74     rmind 	struct sysctlnode node;
   1187      1.74     rmind 	node = *rnode;
   1188      1.74     rmind 	node.sysctl_data = &newsize;
   1189      1.74     rmind 
   1190      1.74     rmind 	newsize = seminfo.semmnu;
   1191      1.74     rmind 	error = sysctl_lookup(SYSCTLFN_CALL(&node));
   1192      1.74     rmind 	if (error || newp == NULL)
   1193      1.74     rmind 		return error;
   1194      1.74     rmind 
   1195      1.74     rmind 	return semrealloc(seminfo.semmni, seminfo.semmns, newsize);
   1196      1.74     rmind }
   1197      1.74     rmind 
   1198      1.74     rmind SYSCTL_SETUP(sysctl_ipc_sem_setup, "sysctl kern.ipc subtree setup")
   1199      1.74     rmind {
   1200      1.74     rmind 	const struct sysctlnode *node = NULL;
   1201      1.74     rmind 
   1202      1.74     rmind 	sysctl_createv(clog, 0, NULL, &node,
   1203      1.74     rmind 		CTLFLAG_PERMANENT,
   1204      1.74     rmind 		CTLTYPE_NODE, "ipc",
   1205      1.74     rmind 		SYSCTL_DESCR("SysV IPC options"),
   1206      1.74     rmind 		NULL, 0, NULL, 0,
   1207      1.74     rmind 		CTL_KERN, KERN_SYSVIPC, CTL_EOL);
   1208      1.74     rmind 
   1209      1.74     rmind 	if (node == NULL)
   1210      1.74     rmind 		return;
   1211      1.74     rmind 
   1212      1.74     rmind 	sysctl_createv(clog, 0, &node, NULL,
   1213      1.74     rmind 		CTLFLAG_PERMANENT | CTLFLAG_READWRITE,
   1214      1.74     rmind 		CTLTYPE_INT, "semmni",
   1215      1.74     rmind 		SYSCTL_DESCR("Max number of number of semaphore identifiers"),
   1216      1.74     rmind 		sysctl_ipc_semmni, 0, &seminfo.semmni, 0,
   1217      1.74     rmind 		CTL_CREATE, CTL_EOL);
   1218      1.74     rmind 	sysctl_createv(clog, 0, &node, NULL,
   1219      1.74     rmind 		CTLFLAG_PERMANENT | CTLFLAG_READWRITE,
   1220      1.74     rmind 		CTLTYPE_INT, "semmns",
   1221      1.74     rmind 		SYSCTL_DESCR("Max number of number of semaphores in system"),
   1222      1.74     rmind 		sysctl_ipc_semmns, 0, &seminfo.semmns, 0,
   1223      1.74     rmind 		CTL_CREATE, CTL_EOL);
   1224      1.74     rmind 	sysctl_createv(clog, 0, &node, NULL,
   1225      1.74     rmind 		CTLFLAG_PERMANENT | CTLFLAG_READWRITE,
   1226      1.74     rmind 		CTLTYPE_INT, "semmnu",
   1227      1.74     rmind 		SYSCTL_DESCR("Max number of undo structures in system"),
   1228      1.74     rmind 		sysctl_ipc_semmnu, 0, &seminfo.semmnu, 0,
   1229      1.74     rmind 		CTL_CREATE, CTL_EOL);
   1230      1.74     rmind }
   1231