Home | History | Annotate | Line # | Download | only in kern
sysv_shm.c revision 1.86.10.1
      1  1.86.10.1      elad /*	$NetBSD: sysv_shm.c,v 1.86.10.1 2006/03/08 00:53:41 elad Exp $	*/
      2       1.52   thorpej 
      3       1.52   thorpej /*-
      4       1.52   thorpej  * Copyright (c) 1999 The NetBSD Foundation, Inc.
      5       1.52   thorpej  * All rights reserved.
      6       1.52   thorpej  *
      7       1.52   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8       1.52   thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9       1.52   thorpej  * NASA Ames Research Center.
     10       1.52   thorpej  *
     11       1.52   thorpej  * Redistribution and use in source and binary forms, with or without
     12       1.52   thorpej  * modification, are permitted provided that the following conditions
     13       1.52   thorpej  * are met:
     14       1.52   thorpej  * 1. Redistributions of source code must retain the above copyright
     15       1.52   thorpej  *    notice, this list of conditions and the following disclaimer.
     16       1.52   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17       1.52   thorpej  *    notice, this list of conditions and the following disclaimer in the
     18       1.52   thorpej  *    documentation and/or other materials provided with the distribution.
     19       1.52   thorpej  * 3. All advertising materials mentioning features or use of this software
     20       1.52   thorpej  *    must display the following acknowledgement:
     21       1.52   thorpej  *	This product includes software developed by the NetBSD
     22       1.52   thorpej  *	Foundation, Inc. and its contributors.
     23       1.52   thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24       1.52   thorpej  *    contributors may be used to endorse or promote products derived
     25       1.52   thorpej  *    from this software without specific prior written permission.
     26       1.52   thorpej  *
     27       1.52   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28       1.52   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29       1.52   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30       1.52   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31       1.52   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32       1.52   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33       1.52   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34       1.52   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35       1.52   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36       1.52   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37       1.52   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     38       1.52   thorpej  */
     39       1.22       cgd 
     40       1.11   hpeyerl /*
     41       1.48   mycroft  * Copyright (c) 1994 Adam Glass and Charles M. Hannum.  All rights reserved.
     42       1.11   hpeyerl  *
     43       1.11   hpeyerl  * Redistribution and use in source and binary forms, with or without
     44       1.11   hpeyerl  * modification, are permitted provided that the following conditions
     45       1.11   hpeyerl  * are met:
     46       1.11   hpeyerl  * 1. Redistributions of source code must retain the above copyright
     47       1.11   hpeyerl  *    notice, this list of conditions and the following disclaimer.
     48       1.17   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     49       1.17   mycroft  *    notice, this list of conditions and the following disclaimer in the
     50       1.17   mycroft  *    documentation and/or other materials provided with the distribution.
     51       1.17   mycroft  * 3. All advertising materials mentioning features or use of this software
     52       1.17   mycroft  *    must display the following acknowledgement:
     53       1.48   mycroft  *	This product includes software developed by Adam Glass and Charles M.
     54       1.17   mycroft  *	Hannum.
     55       1.17   mycroft  * 4. The names of the authors may not be used to endorse or promote products
     56       1.11   hpeyerl  *    derived from this software without specific prior written permission.
     57       1.11   hpeyerl  *
     58       1.17   mycroft  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
     59       1.17   mycroft  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     60       1.17   mycroft  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     61       1.17   mycroft  * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
     62       1.17   mycroft  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     63       1.17   mycroft  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     64       1.17   mycroft  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     65       1.17   mycroft  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     66       1.17   mycroft  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     67       1.17   mycroft  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     68       1.11   hpeyerl  */
     69       1.62     lukem 
     70       1.62     lukem #include <sys/cdefs.h>
     71  1.86.10.1      elad __KERNEL_RCSID(0, "$NetBSD: sysv_shm.c,v 1.86.10.1 2006/03/08 00:53:41 elad Exp $");
     72       1.43       mrg 
     73       1.50      tron #define SYSVSHM
     74       1.11   hpeyerl 
     75       1.11   hpeyerl #include <sys/param.h>
     76       1.11   hpeyerl #include <sys/kernel.h>
     77       1.11   hpeyerl #include <sys/shm.h>
     78       1.11   hpeyerl #include <sys/malloc.h>
     79       1.11   hpeyerl #include <sys/mman.h>
     80       1.12   mycroft #include <sys/stat.h>
     81       1.56    simonb #include <sys/sysctl.h>
     82       1.56    simonb #include <sys/mount.h>		/* XXX for <sys/syscallargs.h> */
     83       1.65   thorpej #include <sys/sa.h>
     84       1.56    simonb #include <sys/syscallargs.h>
     85       1.69  drochner #include <sys/queue.h>
     86       1.69  drochner #include <sys/pool.h>
     87       1.35  christos 
     88       1.60   thorpej #include <uvm/uvm_extern.h>
     89       1.75  christos #include <uvm/uvm_object.h>
     90       1.60   thorpej 
     91       1.71  jdolecek static MALLOC_DEFINE(M_SHM, "shm", "SVID compatible shared memory segments");
     92       1.35  christos 
     93       1.11   hpeyerl /*
     94       1.11   hpeyerl  * Provides the following externally accessible functions:
     95       1.11   hpeyerl  *
     96       1.41   thorpej  * shminit(void);		                 initialization
     97       1.41   thorpej  * shmexit(struct vmspace *)                     cleanup
     98       1.41   thorpej  * shmfork(struct vmspace *, struct vmspace *)   fork handling
     99       1.11   hpeyerl  *
    100       1.11   hpeyerl  * Structures:
    101       1.11   hpeyerl  * shmsegs (an array of 'struct shmid_ds')
    102       1.11   hpeyerl  * per proc array of 'struct shmmap_state'
    103       1.11   hpeyerl  */
    104       1.12   mycroft 
    105       1.85  christos int shm_nused;
    106       1.55    simonb struct	shmid_ds *shmsegs;
    107       1.11   hpeyerl 
    108       1.69  drochner struct shmmap_entry {
    109       1.69  drochner 	SLIST_ENTRY(shmmap_entry) next;
    110       1.47       eeh 	vaddr_t va;
    111       1.11   hpeyerl 	int shmid;
    112       1.11   hpeyerl };
    113       1.11   hpeyerl 
    114       1.85  christos static int	shm_last_free, shm_committed;
    115       1.85  christos 
    116       1.77    simonb static POOL_INIT(shmmap_entry_pool, sizeof(struct shmmap_entry), 0, 0, 0,
    117       1.82  jdolecek     "shmmp", &pool_allocator_nointr);
    118       1.69  drochner 
    119       1.69  drochner struct shmmap_state {
    120       1.69  drochner 	unsigned int nitems;
    121       1.69  drochner 	unsigned int nrefs;
    122       1.69  drochner 	SLIST_HEAD(, shmmap_entry) entries;
    123       1.69  drochner };
    124       1.69  drochner 
    125       1.76  junyoung static int shm_find_segment_by_key(key_t);
    126       1.76  junyoung static void shm_deallocate_segment(struct shmid_ds *);
    127       1.76  junyoung static void shm_delete_mapping(struct vmspace *, struct shmmap_state *,
    128       1.76  junyoung 			       struct shmmap_entry *);
    129       1.76  junyoung static int shmget_existing(struct proc *, struct sys_shmget_args *,
    130       1.76  junyoung 			   int, int, register_t *);
    131       1.76  junyoung static int shmget_allocate_segment(struct proc *, struct sys_shmget_args *,
    132       1.76  junyoung 				   int, register_t *);
    133       1.76  junyoung static struct shmmap_state *shmmap_getprivate(struct proc *);
    134       1.76  junyoung static struct shmmap_entry *shm_find_mapping(struct shmmap_state *, vaddr_t);
    135       1.11   hpeyerl 
    136       1.12   mycroft static int
    137       1.86   thorpej shm_find_segment_by_key(key_t key)
    138       1.11   hpeyerl {
    139       1.11   hpeyerl 	int i;
    140       1.11   hpeyerl 
    141       1.12   mycroft 	for (i = 0; i < shminfo.shmmni; i++)
    142       1.12   mycroft 		if ((shmsegs[i].shm_perm.mode & SHMSEG_ALLOCATED) &&
    143       1.52   thorpej 		    shmsegs[i].shm_perm._key == key)
    144       1.12   mycroft 			return i;
    145       1.11   hpeyerl 	return -1;
    146       1.11   hpeyerl }
    147       1.11   hpeyerl 
    148       1.86   thorpej static struct shmid_ds *
    149       1.86   thorpej shm_find_segment_by_shmid(int shmid)
    150       1.11   hpeyerl {
    151       1.11   hpeyerl 	int segnum;
    152       1.11   hpeyerl 	struct shmid_ds *shmseg;
    153       1.11   hpeyerl 
    154       1.11   hpeyerl 	segnum = IPCID_TO_IX(shmid);
    155       1.12   mycroft 	if (segnum < 0 || segnum >= shminfo.shmmni)
    156       1.11   hpeyerl 		return NULL;
    157       1.11   hpeyerl 	shmseg = &shmsegs[segnum];
    158       1.64      fvdl 	if ((shmseg->shm_perm.mode & SHMSEG_ALLOCATED) == 0)
    159       1.64      fvdl 		return NULL;
    160       1.79  jdolecek 	if ((shmseg->shm_perm.mode & (SHMSEG_REMOVED|SHMSEG_RMLINGER)) == SHMSEG_REMOVED)
    161       1.64      fvdl 		return NULL;
    162       1.64      fvdl 	if (shmseg->shm_perm._seq != IPCID_TO_SEQ(shmid))
    163       1.11   hpeyerl 		return NULL;
    164       1.11   hpeyerl 	return shmseg;
    165       1.11   hpeyerl }
    166       1.11   hpeyerl 
    167       1.12   mycroft static void
    168       1.86   thorpej shm_deallocate_segment(struct shmid_ds *shmseg)
    169       1.12   mycroft {
    170       1.80  jdolecek 	struct uvm_object *uobj = shmseg->_shm_internal;
    171       1.74  christos 	size_t size = (shmseg->shm_segsz + PGOFSET) & ~PGOFSET;
    172       1.12   mycroft 
    173       1.85  christos #ifdef SHMDEBUG
    174       1.85  christos 	printf("shm freeing key 0x%lx seq 0x%x\n",
    175       1.85  christos 	       shmseg->shm_perm._key, shmseg->shm_perm._seq);
    176       1.85  christos #endif
    177       1.85  christos 
    178       1.74  christos 	(*uobj->pgops->pgo_detach)(uobj);
    179       1.52   thorpej 	shmseg->_shm_internal = NULL;
    180       1.14   mycroft 	shm_committed -= btoc(size);
    181       1.12   mycroft 	shmseg->shm_perm.mode = SHMSEG_FREE;
    182       1.25   mycroft 	shm_nused--;
    183       1.12   mycroft }
    184       1.12   mycroft 
    185       1.61       chs static void
    186       1.86   thorpej shm_delete_mapping(struct vmspace *vm, struct shmmap_state *shmmap_s,
    187       1.86   thorpej     struct shmmap_entry *shmmap_se)
    188       1.11   hpeyerl {
    189       1.12   mycroft 	struct shmid_ds *shmseg;
    190       1.61       chs 	int segnum;
    191       1.14   mycroft 	size_t size;
    192       1.76  junyoung 
    193       1.69  drochner 	segnum = IPCID_TO_IX(shmmap_se->shmid);
    194       1.72  jdolecek #ifdef DEBUG
    195       1.72  jdolecek 	if (segnum < 0 || segnum >= shminfo.shmmni)
    196       1.73    simonb 		panic("shm_delete_mapping: vmspace %p state %p entry %p - "
    197       1.73    simonb 		    "entry segment ID bad (%d)",
    198       1.73    simonb 		    vm, shmmap_s, shmmap_se, segnum);
    199       1.72  jdolecek #endif
    200       1.12   mycroft 	shmseg = &shmsegs[segnum];
    201       1.53     ragge 	size = (shmseg->shm_segsz + PGOFSET) & ~PGOFSET;
    202       1.69  drochner 	uvm_deallocate(&vm->vm_map, shmmap_se->va, size);
    203       1.69  drochner 	SLIST_REMOVE(&shmmap_s->entries, shmmap_se, shmmap_entry, next);
    204       1.69  drochner 	shmmap_s->nitems--;
    205       1.69  drochner 	pool_put(&shmmap_entry_pool, shmmap_se);
    206       1.11   hpeyerl 	shmseg->shm_dtime = time.tv_sec;
    207       1.12   mycroft 	if ((--shmseg->shm_nattch <= 0) &&
    208       1.11   hpeyerl 	    (shmseg->shm_perm.mode & SHMSEG_REMOVED)) {
    209       1.12   mycroft 		shm_deallocate_segment(shmseg);
    210       1.12   mycroft 		shm_last_free = segnum;
    211       1.11   hpeyerl 	}
    212       1.11   hpeyerl }
    213       1.11   hpeyerl 
    214       1.69  drochner /*
    215       1.69  drochner  * Get a non-shared shm map for that vmspace.
    216       1.69  drochner  * 3 cases:
    217       1.69  drochner  *   - no shm map present: create a fresh one
    218       1.69  drochner  *   - a shm map with refcount=1, just used by ourselves: fine
    219       1.69  drochner  *   - a shared shm map: copy to a fresh one and adjust refcounts
    220       1.69  drochner  */
    221       1.69  drochner static struct shmmap_state *
    222       1.69  drochner shmmap_getprivate(struct proc *p)
    223       1.69  drochner {
    224       1.69  drochner 	struct shmmap_state *oshmmap_s, *shmmap_s;
    225       1.69  drochner 	struct shmmap_entry *oshmmap_se, *shmmap_se;
    226       1.69  drochner 
    227       1.69  drochner 	oshmmap_s = (struct shmmap_state *)p->p_vmspace->vm_shm;
    228       1.69  drochner 	if (oshmmap_s && oshmmap_s->nrefs == 1)
    229       1.69  drochner 		return (oshmmap_s);
    230       1.69  drochner 
    231       1.69  drochner 	shmmap_s = malloc(sizeof(struct shmmap_state), M_SHM, M_WAITOK);
    232       1.69  drochner 	memset(shmmap_s, 0, sizeof(struct shmmap_state));
    233       1.69  drochner 	shmmap_s->nrefs = 1;
    234       1.69  drochner 	SLIST_INIT(&shmmap_s->entries);
    235       1.69  drochner 	p->p_vmspace->vm_shm = (caddr_t)shmmap_s;
    236       1.69  drochner 
    237       1.69  drochner 	if (!oshmmap_s)
    238       1.69  drochner 		return (shmmap_s);
    239       1.69  drochner 
    240       1.69  drochner #ifdef SHMDEBUG
    241       1.70  drochner 	printf("shmmap_getprivate: vm %p split (%d entries), was used by %d\n",
    242       1.69  drochner 	       p->p_vmspace, oshmmap_s->nitems, oshmmap_s->nrefs);
    243       1.69  drochner #endif
    244       1.69  drochner 	SLIST_FOREACH(oshmmap_se, &oshmmap_s->entries, next) {
    245       1.69  drochner 		shmmap_se = pool_get(&shmmap_entry_pool, PR_WAITOK);
    246       1.69  drochner 		shmmap_se->va = oshmmap_se->va;
    247       1.69  drochner 		shmmap_se->shmid = oshmmap_se->shmid;
    248       1.69  drochner 		SLIST_INSERT_HEAD(&shmmap_s->entries, shmmap_se, next);
    249       1.69  drochner 	}
    250       1.69  drochner 	shmmap_s->nitems = oshmmap_s->nitems;
    251       1.69  drochner 	oshmmap_s->nrefs--;
    252       1.69  drochner 	return (shmmap_s);
    253       1.69  drochner }
    254       1.69  drochner 
    255       1.70  drochner static struct shmmap_entry *
    256       1.86   thorpej shm_find_mapping(struct shmmap_state *map, vaddr_t va)
    257       1.70  drochner {
    258       1.70  drochner 	struct shmmap_entry *shmmap_se;
    259       1.70  drochner 
    260       1.70  drochner 	SLIST_FOREACH(shmmap_se, &map->entries, next) {
    261       1.70  drochner 		if (shmmap_se->va == va)
    262       1.70  drochner 			return shmmap_se;
    263       1.70  drochner 	}
    264       1.70  drochner 	return 0;
    265       1.70  drochner }
    266       1.70  drochner 
    267       1.12   mycroft int
    268       1.86   thorpej sys_shmdt(struct lwp *l, void *v, register_t *retval)
    269       1.32   thorpej {
    270       1.33   mycroft 	struct sys_shmdt_args /* {
    271       1.44    kleink 		syscallarg(const void *) shmaddr;
    272       1.32   thorpej 	} */ *uap = v;
    273       1.65   thorpej 	struct proc *p = l->l_proc;
    274       1.70  drochner 	struct shmmap_state *shmmap_s, *shmmap_s1;
    275       1.69  drochner 	struct shmmap_entry *shmmap_se;
    276       1.11   hpeyerl 
    277       1.12   mycroft 	shmmap_s = (struct shmmap_state *)p->p_vmspace->vm_shm;
    278       1.38  christos 	if (shmmap_s == NULL)
    279       1.38  christos 		return EINVAL;
    280       1.38  christos 
    281       1.70  drochner 	shmmap_se = shm_find_mapping(shmmap_s, (vaddr_t)SCARG(uap, shmaddr));
    282       1.70  drochner 	if (!shmmap_se)
    283       1.70  drochner 		return EINVAL;
    284       1.70  drochner 
    285       1.70  drochner 	shmmap_s1 = shmmap_getprivate(p);
    286       1.70  drochner 	if (shmmap_s1 != shmmap_s) {
    287       1.70  drochner 		/* map has been copied, lookup entry in new map */
    288       1.70  drochner 		shmmap_se = shm_find_mapping(shmmap_s1,
    289       1.70  drochner 					     (vaddr_t)SCARG(uap, shmaddr));
    290       1.70  drochner 		KASSERT(shmmap_se != NULL);
    291       1.70  drochner 	}
    292       1.69  drochner #ifdef SHMDEBUG
    293       1.70  drochner 	printf("shmdt: vm %p: remove %d @%lx\n",
    294       1.70  drochner 	       p->p_vmspace, shmmap_se->shmid, shmmap_se->va);
    295       1.69  drochner #endif
    296       1.70  drochner 	shm_delete_mapping(p->p_vmspace, shmmap_s1, shmmap_se);
    297       1.70  drochner 	return 0;
    298       1.11   hpeyerl }
    299       1.11   hpeyerl 
    300       1.12   mycroft int
    301       1.86   thorpej sys_shmat(struct lwp *l, void *v, register_t *retval)
    302       1.32   thorpej {
    303       1.33   mycroft 	struct sys_shmat_args /* {
    304       1.26       cgd 		syscallarg(int) shmid;
    305       1.44    kleink 		syscallarg(const void *) shmaddr;
    306       1.35  christos 		syscallarg(int) shmflg;
    307       1.32   thorpej 	} */ *uap = v;
    308       1.78  jdolecek 	int error, flags;
    309       1.65   thorpej 	struct proc *p = l->l_proc;
    310  1.86.10.1      elad 	kauth_cred_t cred = p->p_cred;
    311       1.11   hpeyerl 	struct shmid_ds *shmseg;
    312       1.69  drochner 	struct shmmap_state *shmmap_s;
    313       1.74  christos 	struct uvm_object *uobj;
    314       1.47       eeh 	vaddr_t attach_va;
    315       1.11   hpeyerl 	vm_prot_t prot;
    316       1.47       eeh 	vsize_t size;
    317       1.69  drochner 	struct shmmap_entry *shmmap_se;
    318       1.11   hpeyerl 
    319       1.78  jdolecek 	shmseg = shm_find_segment_by_shmid(SCARG(uap, shmid));
    320       1.11   hpeyerl 	if (shmseg == NULL)
    321       1.11   hpeyerl 		return EINVAL;
    322       1.35  christos 	error = ipcperm(cred, &shmseg->shm_perm,
    323       1.78  jdolecek 		    (SCARG(uap, shmflg) & SHM_RDONLY) ? IPC_R : IPC_R|IPC_W);
    324       1.35  christos 	if (error)
    325       1.12   mycroft 		return error;
    326       1.69  drochner 
    327       1.69  drochner 	shmmap_s = (struct shmmap_state *)p->p_vmspace->vm_shm;
    328       1.69  drochner 	if (shmmap_s && shmmap_s->nitems >= shminfo.shmseg)
    329       1.12   mycroft 		return EMFILE;
    330       1.69  drochner 
    331       1.53     ragge 	size = (shmseg->shm_segsz + PGOFSET) & ~PGOFSET;
    332       1.12   mycroft 	prot = VM_PROT_READ;
    333       1.78  jdolecek 	if ((SCARG(uap, shmflg) & SHM_RDONLY) == 0)
    334       1.12   mycroft 		prot |= VM_PROT_WRITE;
    335       1.12   mycroft 	flags = MAP_ANON | MAP_SHARED;
    336       1.78  jdolecek 	if (SCARG(uap, shmaddr)) {
    337       1.12   mycroft 		flags |= MAP_FIXED;
    338       1.78  jdolecek 		if (SCARG(uap, shmflg) & SHM_RND)
    339       1.26       cgd 			attach_va =
    340       1.78  jdolecek 			    (vaddr_t)SCARG(uap, shmaddr) & ~(SHMLBA-1);
    341       1.78  jdolecek 		else if (((vaddr_t)SCARG(uap, shmaddr) & (SHMLBA-1)) == 0)
    342       1.78  jdolecek 			attach_va = (vaddr_t)SCARG(uap, shmaddr);
    343       1.11   hpeyerl 		else
    344       1.14   mycroft 			return EINVAL;
    345       1.12   mycroft 	} else {
    346       1.66    atatat 		/* This is just a hint to uvm_mmap() about where to put it. */
    347       1.83      fvdl 		attach_va = p->p_emul->e_vm_default_addr(p,
    348       1.83      fvdl 		    (vaddr_t)p->p_vmspace->vm_daddr, size);
    349       1.11   hpeyerl 	}
    350       1.80  jdolecek 	uobj = shmseg->_shm_internal;
    351       1.74  christos 	(*uobj->pgops->pgo_reference)(uobj);
    352       1.61       chs 	error = uvm_map(&p->p_vmspace->vm_map, &attach_va, size,
    353       1.74  christos 	    uobj, 0, 0,
    354       1.61       chs 	    UVM_MAPFLAG(prot, prot, UVM_INH_SHARE, UVM_ADV_RANDOM, 0));
    355       1.61       chs 	if (error) {
    356       1.74  christos 		(*uobj->pgops->pgo_detach)(uobj);
    357       1.61       chs 		return error;
    358       1.42       mrg 	}
    359       1.69  drochner 	shmmap_se = pool_get(&shmmap_entry_pool, PR_WAITOK);
    360       1.69  drochner 	shmmap_se->va = attach_va;
    361       1.78  jdolecek 	shmmap_se->shmid = SCARG(uap, shmid);
    362       1.69  drochner 	shmmap_s = shmmap_getprivate(p);
    363       1.69  drochner #ifdef SHMDEBUG
    364       1.85  christos 	printf("shmat: vm %p: add %d @%lx\n", p->p_vmspace, shmmap_se->shmid, attach_va);
    365       1.69  drochner #endif
    366       1.69  drochner 	SLIST_INSERT_HEAD(&shmmap_s->entries, shmmap_se, next);
    367       1.69  drochner 	shmmap_s->nitems++;
    368       1.11   hpeyerl 	shmseg->shm_lpid = p->p_pid;
    369       1.11   hpeyerl 	shmseg->shm_atime = time.tv_sec;
    370       1.11   hpeyerl 	shmseg->shm_nattch++;
    371       1.78  jdolecek 
    372       1.78  jdolecek 	retval[0] = attach_va;
    373       1.11   hpeyerl 	return 0;
    374       1.11   hpeyerl }
    375       1.11   hpeyerl 
    376       1.12   mycroft int
    377       1.86   thorpej sys___shmctl13(struct lwp *l, void *v, register_t *retval)
    378       1.32   thorpej {
    379       1.52   thorpej 	struct sys___shmctl13_args /* {
    380       1.26       cgd 		syscallarg(int) shmid;
    381       1.26       cgd 		syscallarg(int) cmd;
    382       1.26       cgd 		syscallarg(struct shmid_ds *) buf;
    383       1.76  junyoung 	} */ *uap = v;
    384       1.65   thorpej 	struct proc *p = l->l_proc;
    385       1.52   thorpej 	struct shmid_ds shmbuf;
    386       1.52   thorpej 	int cmd, error;
    387       1.52   thorpej 
    388       1.52   thorpej 	cmd = SCARG(uap, cmd);
    389       1.52   thorpej 
    390       1.52   thorpej 	if (cmd == IPC_SET) {
    391       1.52   thorpej 		error = copyin(SCARG(uap, buf), &shmbuf, sizeof(shmbuf));
    392       1.52   thorpej 		if (error)
    393       1.52   thorpej 			return (error);
    394       1.52   thorpej 	}
    395       1.52   thorpej 
    396       1.52   thorpej 	error = shmctl1(p, SCARG(uap, shmid), cmd,
    397       1.52   thorpej 	    (cmd == IPC_SET || cmd == IPC_STAT) ? &shmbuf : NULL);
    398       1.52   thorpej 
    399       1.52   thorpej 	if (error == 0 && cmd == IPC_STAT)
    400       1.52   thorpej 		error = copyout(&shmbuf, SCARG(uap, buf), sizeof(shmbuf));
    401       1.52   thorpej 
    402       1.52   thorpej 	return (error);
    403       1.52   thorpej }
    404       1.52   thorpej 
    405       1.52   thorpej int
    406       1.86   thorpej shmctl1(struct proc *p, int shmid, int cmd, struct shmid_ds *shmbuf)
    407       1.52   thorpej {
    408  1.86.10.1      elad 	kauth_cred_t cred = p->p_cred;
    409       1.11   hpeyerl 	struct shmid_ds *shmseg;
    410       1.52   thorpej 	int error = 0;
    411       1.11   hpeyerl 
    412       1.78  jdolecek 	shmseg = shm_find_segment_by_shmid(shmid);
    413       1.11   hpeyerl 	if (shmseg == NULL)
    414       1.11   hpeyerl 		return EINVAL;
    415       1.52   thorpej 	switch (cmd) {
    416       1.11   hpeyerl 	case IPC_STAT:
    417       1.35  christos 		if ((error = ipcperm(cred, &shmseg->shm_perm, IPC_R)) != 0)
    418       1.11   hpeyerl 			return error;
    419       1.52   thorpej 		memcpy(shmbuf, shmseg, sizeof(struct shmid_ds));
    420       1.11   hpeyerl 		break;
    421       1.11   hpeyerl 	case IPC_SET:
    422       1.35  christos 		if ((error = ipcperm(cred, &shmseg->shm_perm, IPC_M)) != 0)
    423       1.13   mycroft 			return error;
    424       1.52   thorpej 		shmseg->shm_perm.uid = shmbuf->shm_perm.uid;
    425       1.52   thorpej 		shmseg->shm_perm.gid = shmbuf->shm_perm.gid;
    426       1.12   mycroft 		shmseg->shm_perm.mode =
    427       1.12   mycroft 		    (shmseg->shm_perm.mode & ~ACCESSPERMS) |
    428       1.52   thorpej 		    (shmbuf->shm_perm.mode & ACCESSPERMS);
    429       1.12   mycroft 		shmseg->shm_ctime = time.tv_sec;
    430       1.11   hpeyerl 		break;
    431       1.11   hpeyerl 	case IPC_RMID:
    432       1.35  christos 		if ((error = ipcperm(cred, &shmseg->shm_perm, IPC_M)) != 0)
    433       1.13   mycroft 			return error;
    434       1.52   thorpej 		shmseg->shm_perm._key = IPC_PRIVATE;
    435       1.12   mycroft 		shmseg->shm_perm.mode |= SHMSEG_REMOVED;
    436       1.12   mycroft 		if (shmseg->shm_nattch <= 0) {
    437       1.12   mycroft 			shm_deallocate_segment(shmseg);
    438       1.52   thorpej 			shm_last_free = IPCID_TO_IX(shmid);
    439       1.11   hpeyerl 		}
    440       1.11   hpeyerl 		break;
    441       1.11   hpeyerl 	case SHM_LOCK:
    442       1.11   hpeyerl 	case SHM_UNLOCK:
    443       1.11   hpeyerl 	default:
    444       1.11   hpeyerl 		return EINVAL;
    445       1.11   hpeyerl 	}
    446       1.11   hpeyerl 	return 0;
    447       1.11   hpeyerl }
    448       1.11   hpeyerl 
    449       1.12   mycroft static int
    450       1.86   thorpej shmget_existing(struct proc *p, struct sys_shmget_args *uap, int mode,
    451       1.86   thorpej     int segnum, register_t *retval)
    452       1.11   hpeyerl {
    453       1.12   mycroft 	struct shmid_ds *shmseg;
    454  1.86.10.1      elad 	kauth_cred_t cred = p->p_cred;
    455       1.11   hpeyerl 	int error;
    456       1.11   hpeyerl 
    457       1.11   hpeyerl 	shmseg = &shmsegs[segnum];
    458       1.16   mycroft 	if (shmseg->shm_perm.mode & SHMSEG_REMOVED) {
    459       1.16   mycroft 		/*
    460       1.16   mycroft 		 * This segment is in the process of being allocated.  Wait
    461       1.16   mycroft 		 * until it's done, and look the key up again (in case the
    462       1.16   mycroft 		 * allocation failed or it was freed).
    463       1.16   mycroft 		 */
    464       1.16   mycroft 		shmseg->shm_perm.mode |= SHMSEG_WANTED;
    465       1.35  christos 		error = tsleep((caddr_t)shmseg, PLOCK | PCATCH, "shmget", 0);
    466       1.35  christos 		if (error)
    467       1.16   mycroft 			return error;
    468       1.16   mycroft 		return EAGAIN;
    469       1.16   mycroft 	}
    470       1.35  christos 	if ((error = ipcperm(cred, &shmseg->shm_perm, mode)) != 0)
    471       1.11   hpeyerl 		return error;
    472       1.26       cgd 	if (SCARG(uap, size) && SCARG(uap, size) > shmseg->shm_segsz)
    473       1.11   hpeyerl 		return EINVAL;
    474       1.37  christos 	if ((SCARG(uap, shmflg) & (IPC_CREAT | IPC_EXCL)) ==
    475       1.26       cgd 	    (IPC_CREAT | IPC_EXCL))
    476       1.12   mycroft 		return EEXIST;
    477       1.11   hpeyerl 	*retval = IXSEQ_TO_IPCID(segnum, shmseg->shm_perm);
    478       1.11   hpeyerl 	return 0;
    479       1.11   hpeyerl }
    480       1.11   hpeyerl 
    481       1.14   mycroft static int
    482       1.86   thorpej shmget_allocate_segment(struct proc *p, struct sys_shmget_args *uap, int mode,
    483       1.86   thorpej     register_t *retval)
    484       1.14   mycroft {
    485       1.39  drochner 	int i, segnum, shmid, size;
    486  1.86.10.1      elad 	kauth_cred_t cred = p->p_cred;
    487       1.14   mycroft 	struct shmid_ds *shmseg;
    488       1.40  drochner 	int error = 0;
    489       1.76  junyoung 
    490       1.26       cgd 	if (SCARG(uap, size) < shminfo.shmmin ||
    491       1.26       cgd 	    SCARG(uap, size) > shminfo.shmmax)
    492       1.14   mycroft 		return EINVAL;
    493       1.14   mycroft 	if (shm_nused >= shminfo.shmmni) /* any shmids left? */
    494       1.14   mycroft 		return ENOSPC;
    495       1.53     ragge 	size = (SCARG(uap, size) + PGOFSET) & ~PGOFSET;
    496       1.14   mycroft 	if (shm_committed + btoc(size) > shminfo.shmall)
    497       1.14   mycroft 		return ENOMEM;
    498       1.14   mycroft 	if (shm_last_free < 0) {
    499       1.14   mycroft 		for (i = 0; i < shminfo.shmmni; i++)
    500       1.14   mycroft 			if (shmsegs[i].shm_perm.mode & SHMSEG_FREE)
    501       1.14   mycroft 				break;
    502       1.14   mycroft 		if (i == shminfo.shmmni)
    503       1.14   mycroft 			panic("shmseg free count inconsistent");
    504       1.14   mycroft 		segnum = i;
    505       1.14   mycroft 	} else  {
    506       1.14   mycroft 		segnum = shm_last_free;
    507       1.14   mycroft 		shm_last_free = -1;
    508       1.14   mycroft 	}
    509       1.14   mycroft 	shmseg = &shmsegs[segnum];
    510       1.14   mycroft 	/*
    511       1.14   mycroft 	 * In case we sleep in malloc(), mark the segment present but deleted
    512       1.14   mycroft 	 * so that noone else tries to create the same key.
    513       1.14   mycroft 	 */
    514       1.14   mycroft 	shmseg->shm_perm.mode = SHMSEG_ALLOCATED | SHMSEG_REMOVED;
    515       1.52   thorpej 	shmseg->shm_perm._key = SCARG(uap, key);
    516       1.52   thorpej 	shmseg->shm_perm._seq = (shmseg->shm_perm._seq + 1) & 0x7fff;
    517       1.14   mycroft 	shmid = IXSEQ_TO_IPCID(segnum, shmseg->shm_perm);
    518       1.42       mrg 
    519       1.80  jdolecek 	shmseg->_shm_internal = uao_create(size, 0);
    520       1.42       mrg 
    521  1.86.10.1      elad 	shmseg->shm_perm.cuid = shmseg->shm_perm.uid = kauth_cred_geteuid(cred);
    522  1.86.10.1      elad 	shmseg->shm_perm.cgid = shmseg->shm_perm.gid = kauth_cred_getegid(cred);
    523       1.16   mycroft 	shmseg->shm_perm.mode = (shmseg->shm_perm.mode & SHMSEG_WANTED) |
    524       1.79  jdolecek 	    (mode & (ACCESSPERMS|SHMSEG_RMLINGER)) | SHMSEG_ALLOCATED;
    525       1.26       cgd 	shmseg->shm_segsz = SCARG(uap, size);
    526       1.14   mycroft 	shmseg->shm_cpid = p->p_pid;
    527       1.14   mycroft 	shmseg->shm_lpid = shmseg->shm_nattch = 0;
    528       1.14   mycroft 	shmseg->shm_atime = shmseg->shm_dtime = 0;
    529       1.14   mycroft 	shmseg->shm_ctime = time.tv_sec;
    530       1.14   mycroft 	shm_committed += btoc(size);
    531       1.14   mycroft 	shm_nused++;
    532       1.40  drochner 
    533       1.51       mrg 	*retval = shmid;
    534       1.16   mycroft 	if (shmseg->shm_perm.mode & SHMSEG_WANTED) {
    535       1.16   mycroft 		/*
    536       1.16   mycroft 		 * Somebody else wanted this key while we were asleep.  Wake
    537       1.16   mycroft 		 * them up now.
    538       1.16   mycroft 		 */
    539       1.16   mycroft 		shmseg->shm_perm.mode &= ~SHMSEG_WANTED;
    540       1.16   mycroft 		wakeup((caddr_t)shmseg);
    541       1.16   mycroft 	}
    542       1.40  drochner 	return error;
    543       1.14   mycroft }
    544       1.14   mycroft 
    545       1.12   mycroft int
    546       1.86   thorpej sys_shmget(struct lwp *l, void *v, register_t *retval)
    547       1.32   thorpej {
    548       1.33   mycroft 	struct sys_shmget_args /* {
    549       1.26       cgd 		syscallarg(key_t) key;
    550       1.26       cgd 		syscallarg(int) size;
    551       1.35  christos 		syscallarg(int) shmflg;
    552       1.32   thorpej 	} */ *uap = v;
    553       1.65   thorpej 	struct proc *p = l->l_proc;
    554       1.11   hpeyerl 	int segnum, mode, error;
    555       1.11   hpeyerl 
    556       1.26       cgd 	mode = SCARG(uap, shmflg) & ACCESSPERMS;
    557       1.79  jdolecek 	if (SCARG(uap, shmflg) & _SHM_RMLINGER)
    558       1.79  jdolecek 		mode |= SHMSEG_RMLINGER;
    559       1.79  jdolecek 
    560       1.85  christos #ifdef SHMDEBUG
    561       1.85  christos 	printf("shmget: key 0x%lx size 0x%x shmflg 0x%x mode 0x%x\n",
    562       1.85  christos         	SCARG(uap, key), SCARG(uap, size), SCARG(uap, shmflg), mode);
    563       1.85  christos #endif
    564       1.85  christos 
    565       1.26       cgd 	if (SCARG(uap, key) != IPC_PRIVATE) {
    566       1.85  christos again:
    567       1.26       cgd 		segnum = shm_find_segment_by_key(SCARG(uap, key));
    568       1.16   mycroft 		if (segnum >= 0) {
    569       1.16   mycroft 			error = shmget_existing(p, uap, mode, segnum, retval);
    570       1.16   mycroft 			if (error == EAGAIN)
    571       1.16   mycroft 				goto again;
    572       1.16   mycroft 			return error;
    573       1.16   mycroft 		}
    574       1.76  junyoung 		if ((SCARG(uap, shmflg) & IPC_CREAT) == 0)
    575       1.14   mycroft 			return ENOENT;
    576       1.11   hpeyerl 	}
    577       1.14   mycroft 	return shmget_allocate_segment(p, uap, mode, retval);
    578       1.11   hpeyerl }
    579       1.11   hpeyerl 
    580       1.12   mycroft void
    581       1.86   thorpej shmfork(struct vmspace *vm1, struct vmspace *vm2)
    582       1.11   hpeyerl {
    583       1.11   hpeyerl 	struct shmmap_state *shmmap_s;
    584       1.69  drochner 	struct shmmap_entry *shmmap_se;
    585       1.69  drochner 
    586       1.69  drochner 	vm2->vm_shm = vm1->vm_shm;
    587       1.11   hpeyerl 
    588       1.69  drochner 	if (vm1->vm_shm == NULL)
    589       1.38  christos 		return;
    590       1.41   thorpej 
    591       1.69  drochner #ifdef SHMDEBUG
    592       1.69  drochner 	printf("shmfork %p->%p\n", vm1, vm2);
    593       1.69  drochner #endif
    594       1.69  drochner 
    595       1.69  drochner 	shmmap_s = (struct shmmap_state *)vm1->vm_shm;
    596       1.69  drochner 
    597       1.69  drochner 	SLIST_FOREACH(shmmap_se, &shmmap_s->entries, next)
    598       1.69  drochner 		shmsegs[IPCID_TO_IX(shmmap_se->shmid)].shm_nattch++;
    599       1.69  drochner 	shmmap_s->nrefs++;
    600       1.11   hpeyerl }
    601       1.11   hpeyerl 
    602       1.12   mycroft void
    603       1.86   thorpej shmexit(struct vmspace *vm)
    604       1.11   hpeyerl {
    605       1.12   mycroft 	struct shmmap_state *shmmap_s;
    606       1.69  drochner 	struct shmmap_entry *shmmap_se;
    607       1.11   hpeyerl 
    608       1.41   thorpej 	shmmap_s = (struct shmmap_state *)vm->vm_shm;
    609       1.38  christos 	if (shmmap_s == NULL)
    610       1.38  christos 		return;
    611       1.69  drochner 
    612       1.41   thorpej 	vm->vm_shm = NULL;
    613       1.69  drochner 
    614       1.69  drochner 	if (--shmmap_s->nrefs > 0) {
    615       1.69  drochner #ifdef SHMDEBUG
    616       1.70  drochner 		printf("shmexit: vm %p drop ref (%d entries), now used by %d\n",
    617       1.69  drochner 		       vm, shmmap_s->nitems, shmmap_s->nrefs);
    618       1.69  drochner #endif
    619       1.69  drochner 		SLIST_FOREACH(shmmap_se, &shmmap_s->entries, next)
    620       1.69  drochner 			shmsegs[IPCID_TO_IX(shmmap_se->shmid)].shm_nattch--;
    621       1.69  drochner 		return;
    622       1.69  drochner 	}
    623       1.69  drochner 
    624       1.69  drochner #ifdef SHMDEBUG
    625       1.69  drochner 	printf("shmexit: vm %p cleanup (%d entries)\n", vm, shmmap_s->nitems);
    626       1.69  drochner #endif
    627       1.69  drochner 	while (!SLIST_EMPTY(&shmmap_s->entries)) {
    628       1.69  drochner 		shmmap_se = SLIST_FIRST(&shmmap_s->entries);
    629       1.69  drochner 		shm_delete_mapping(vm, shmmap_s, shmmap_se);
    630       1.69  drochner 	}
    631       1.69  drochner 	KASSERT(shmmap_s->nitems == 0);
    632       1.69  drochner 	free(shmmap_s, M_SHM);
    633       1.11   hpeyerl }
    634       1.11   hpeyerl 
    635       1.12   mycroft void
    636       1.86   thorpej shminit(void)
    637       1.11   hpeyerl {
    638       1.71  jdolecek 	int i, sz;
    639       1.71  jdolecek 	vaddr_t v;
    640       1.71  jdolecek 
    641       1.71  jdolecek 	/* Allocate pageable memory for our structures */
    642       1.71  jdolecek 	sz = shminfo.shmmni * sizeof(struct shmid_ds);
    643       1.84      yamt 	v = uvm_km_alloc(kernel_map, round_page(sz), 0, UVM_KMF_WIRED);
    644       1.84      yamt 	if (v == 0)
    645       1.71  jdolecek 		panic("sysv_shm: cannot allocate memory");
    646       1.71  jdolecek 	shmsegs = (void *)v;
    647       1.24   deraadt 
    648       1.60   thorpej 	shminfo.shmmax *= PAGE_SIZE;
    649       1.11   hpeyerl 
    650       1.11   hpeyerl 	for (i = 0; i < shminfo.shmmni; i++) {
    651       1.11   hpeyerl 		shmsegs[i].shm_perm.mode = SHMSEG_FREE;
    652       1.52   thorpej 		shmsegs[i].shm_perm._seq = 0;
    653       1.11   hpeyerl 	}
    654       1.11   hpeyerl 	shm_last_free = 0;
    655       1.11   hpeyerl 	shm_nused = 0;
    656       1.11   hpeyerl 	shm_committed = 0;
    657       1.11   hpeyerl }
    658