2008-10-27 18:40:56 +03:00
|
|
|
/* $NetBSD: sysv_shm.c,v 1.113 2008/10/27 15:40:56 erh Exp $ */
|
1999-08-25 09:05:48 +04:00
|
|
|
|
|
|
|
/*-
|
2007-02-15 18:40:50 +03:00
|
|
|
* Copyright (c) 1999, 2007 The NetBSD Foundation, Inc.
|
1999-08-25 09:05:48 +04:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
|
2008-01-02 14:48:20 +03:00
|
|
|
* NASA Ames Research Center, and by Mindaugas Rasiukevicius.
|
1999-08-25 09:05:48 +04:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1994-05-25 06:14:24 +04:00
|
|
|
/*
|
1998-08-15 07:02:31 +04:00
|
|
|
* Copyright (c) 1994 Adam Glass and Charles M. Hannum. All rights reserved.
|
1994-05-25 06:14:24 +04:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
1994-05-25 14:15:23 +04:00
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
1998-08-15 07:02:31 +04:00
|
|
|
* This product includes software developed by Adam Glass and Charles M.
|
1994-05-25 14:15:23 +04:00
|
|
|
* Hannum.
|
|
|
|
* 4. The names of the authors may not be used to endorse or promote products
|
1994-05-25 06:14:24 +04:00
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
1994-05-25 14:15:23 +04:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1994-05-25 06:14:24 +04:00
|
|
|
*/
|
|
|
|
|
2001-11-12 18:25:01 +03:00
|
|
|
#include <sys/cdefs.h>
|
2008-10-27 18:40:56 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: sysv_shm.c,v 1.113 2008/10/27 15:40:56 erh Exp $");
|
2001-11-12 18:25:01 +03:00
|
|
|
|
1998-10-22 02:24:28 +04:00
|
|
|
#define SYSVSHM
|
1998-02-10 17:08:44 +03:00
|
|
|
|
1994-05-25 06:14:24 +04:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/kernel.h>
|
2008-01-02 14:48:20 +03:00
|
|
|
#include <sys/kmem.h>
|
1994-05-25 06:14:24 +04:00
|
|
|
#include <sys/shm.h>
|
2007-02-15 18:40:50 +03:00
|
|
|
#include <sys/mutex.h>
|
1994-05-25 06:14:24 +04:00
|
|
|
#include <sys/mman.h>
|
1994-05-25 11:36:53 +04:00
|
|
|
#include <sys/stat.h>
|
2000-06-02 19:53:03 +04:00
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#include <sys/mount.h> /* XXX for <sys/syscallargs.h> */
|
|
|
|
#include <sys/syscallargs.h>
|
2003-09-09 19:02:45 +04:00
|
|
|
#include <sys/queue.h>
|
|
|
|
#include <sys/pool.h>
|
2006-05-15 01:15:11 +04:00
|
|
|
#include <sys/kauth.h>
|
2000-06-02 19:53:03 +04:00
|
|
|
|
2000-11-15 01:16:38 +03:00
|
|
|
#include <uvm/uvm_extern.h>
|
2004-02-06 16:46:27 +03:00
|
|
|
#include <uvm/uvm_object.h>
|
2000-11-15 01:16:38 +03:00
|
|
|
|
2005-11-10 21:45:20 +03:00
|
|
|
int shm_nused;
|
2000-04-15 20:49:35 +04:00
|
|
|
struct shmid_ds *shmsegs;
|
1994-05-25 06:14:24 +04:00
|
|
|
|
2003-09-09 19:02:45 +04:00
|
|
|
struct shmmap_entry {
|
|
|
|
SLIST_ENTRY(shmmap_entry) next;
|
1998-08-13 06:10:37 +04:00
|
|
|
vaddr_t va;
|
1994-05-25 06:14:24 +04:00
|
|
|
int shmid;
|
|
|
|
};
|
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
static kmutex_t shm_lock;
|
|
|
|
static kcondvar_t * shm_cv;
|
|
|
|
static struct pool shmmap_entry_pool;
|
2008-04-13 00:49:22 +04:00
|
|
|
static int shm_last_free, shm_use_phys;
|
|
|
|
static size_t shm_committed;
|
2005-11-10 21:45:20 +03:00
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
static kcondvar_t shm_realloc_cv;
|
|
|
|
static bool shm_realloc_state;
|
|
|
|
static u_int shm_realloc_disable;
|
2003-09-09 19:02:45 +04:00
|
|
|
|
|
|
|
struct shmmap_state {
|
|
|
|
unsigned int nitems;
|
|
|
|
unsigned int nrefs;
|
|
|
|
SLIST_HEAD(, shmmap_entry) entries;
|
|
|
|
};
|
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
#ifdef SHMDEBUG
|
|
|
|
#define SHMPRINTF(a) printf a
|
|
|
|
#else
|
|
|
|
#define SHMPRINTF(a)
|
|
|
|
#endif
|
1994-05-25 06:14:24 +04:00
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
static int shmrealloc(int);
|
1994-05-25 06:14:24 +04:00
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
/*
|
|
|
|
* Find the shared memory segment by the identifier.
|
|
|
|
* => must be called with shm_lock held;
|
|
|
|
*/
|
2005-12-07 09:14:13 +03:00
|
|
|
static struct shmid_ds *
|
|
|
|
shm_find_segment_by_shmid(int shmid)
|
1994-05-25 06:14:24 +04:00
|
|
|
{
|
|
|
|
int segnum;
|
|
|
|
struct shmid_ds *shmseg;
|
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
KASSERT(mutex_owned(&shm_lock));
|
|
|
|
|
1994-05-25 06:14:24 +04:00
|
|
|
segnum = IPCID_TO_IX(shmid);
|
1994-05-25 11:36:53 +04:00
|
|
|
if (segnum < 0 || segnum >= shminfo.shmmni)
|
1994-05-25 06:14:24 +04:00
|
|
|
return NULL;
|
|
|
|
shmseg = &shmsegs[segnum];
|
2002-04-03 15:53:01 +04:00
|
|
|
if ((shmseg->shm_perm.mode & SHMSEG_ALLOCATED) == 0)
|
|
|
|
return NULL;
|
2008-01-02 14:48:20 +03:00
|
|
|
if ((shmseg->shm_perm.mode &
|
|
|
|
(SHMSEG_REMOVED|SHMSEG_RMLINGER)) == SHMSEG_REMOVED)
|
2002-04-03 15:53:01 +04:00
|
|
|
return NULL;
|
|
|
|
if (shmseg->shm_perm._seq != IPCID_TO_SEQ(shmid))
|
1994-05-25 06:14:24 +04:00
|
|
|
return NULL;
|
2008-01-02 14:48:20 +03:00
|
|
|
|
1994-05-25 06:14:24 +04:00
|
|
|
return shmseg;
|
|
|
|
}
|
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
/*
|
|
|
|
* Free memory segment.
|
|
|
|
* => must be called with shm_lock held;
|
|
|
|
*/
|
1994-05-25 11:36:53 +04:00
|
|
|
static void
|
2008-01-02 14:48:20 +03:00
|
|
|
shm_free_segment(int segnum)
|
1994-05-25 11:36:53 +04:00
|
|
|
{
|
2008-01-02 14:48:20 +03:00
|
|
|
struct shmid_ds *shmseg;
|
|
|
|
size_t size;
|
|
|
|
bool wanted;
|
1994-05-25 11:36:53 +04:00
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
KASSERT(mutex_owned(&shm_lock));
|
|
|
|
|
|
|
|
shmseg = &shmsegs[segnum];
|
|
|
|
SHMPRINTF(("shm freeing key 0x%lx seq 0x%x\n",
|
|
|
|
shmseg->shm_perm._key, shmseg->shm_perm._seq));
|
|
|
|
|
|
|
|
size = (shmseg->shm_segsz + PGOFSET) & ~PGOFSET;
|
|
|
|
wanted = (shmseg->shm_perm.mode & SHMSEG_WANTED);
|
2005-11-10 21:45:20 +03:00
|
|
|
|
1999-08-25 09:05:48 +04:00
|
|
|
shmseg->_shm_internal = NULL;
|
1994-05-25 12:59:48 +04:00
|
|
|
shm_committed -= btoc(size);
|
1994-09-01 01:47:36 +04:00
|
|
|
shm_nused--;
|
2008-01-02 14:48:20 +03:00
|
|
|
shmseg->shm_perm.mode = SHMSEG_FREE;
|
|
|
|
shm_last_free = segnum;
|
|
|
|
if (wanted == true)
|
|
|
|
cv_broadcast(&shm_cv[segnum]);
|
1994-05-25 11:36:53 +04:00
|
|
|
}
|
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
/*
|
|
|
|
* Delete entry from the shm map.
|
|
|
|
* => must be called with shm_lock held;
|
|
|
|
*/
|
|
|
|
static struct uvm_object *
|
|
|
|
shm_delete_mapping(struct shmmap_state *shmmap_s,
|
2005-12-07 09:14:13 +03:00
|
|
|
struct shmmap_entry *shmmap_se)
|
1994-05-25 06:14:24 +04:00
|
|
|
{
|
2008-01-02 14:48:20 +03:00
|
|
|
struct uvm_object *uobj = NULL;
|
1994-05-25 11:36:53 +04:00
|
|
|
struct shmid_ds *shmseg;
|
2001-03-15 09:10:32 +03:00
|
|
|
int segnum;
|
2008-01-02 14:48:20 +03:00
|
|
|
|
|
|
|
KASSERT(mutex_owned(&shm_lock));
|
2004-03-23 16:22:32 +03:00
|
|
|
|
2003-09-09 19:02:45 +04:00
|
|
|
segnum = IPCID_TO_IX(shmmap_se->shmid);
|
1994-05-25 11:36:53 +04:00
|
|
|
shmseg = &shmsegs[segnum];
|
2003-09-09 19:02:45 +04:00
|
|
|
SLIST_REMOVE(&shmmap_s->entries, shmmap_se, shmmap_entry, next);
|
|
|
|
shmmap_s->nitems--;
|
2006-06-08 02:33:33 +04:00
|
|
|
shmseg->shm_dtime = time_second;
|
1994-05-25 11:36:53 +04:00
|
|
|
if ((--shmseg->shm_nattch <= 0) &&
|
1994-05-25 06:14:24 +04:00
|
|
|
(shmseg->shm_perm.mode & SHMSEG_REMOVED)) {
|
2008-01-02 14:48:20 +03:00
|
|
|
uobj = shmseg->_shm_internal;
|
|
|
|
shm_free_segment(segnum);
|
1994-05-25 06:14:24 +04:00
|
|
|
}
|
2008-01-02 14:48:20 +03:00
|
|
|
|
|
|
|
return uobj;
|
1994-05-25 06:14:24 +04:00
|
|
|
}
|
|
|
|
|
2003-09-09 19:02:45 +04:00
|
|
|
/*
|
2008-01-02 14:48:20 +03:00
|
|
|
* Get a non-shared shm map for that vmspace. Note, that memory
|
|
|
|
* allocation might be performed with lock held.
|
2003-09-09 19:02:45 +04:00
|
|
|
*/
|
|
|
|
static struct shmmap_state *
|
|
|
|
shmmap_getprivate(struct proc *p)
|
|
|
|
{
|
|
|
|
struct shmmap_state *oshmmap_s, *shmmap_s;
|
|
|
|
struct shmmap_entry *oshmmap_se, *shmmap_se;
|
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
KASSERT(mutex_owned(&shm_lock));
|
|
|
|
|
|
|
|
/* 1. A shm map with refcnt = 1, used by ourselves, thus return */
|
2003-09-09 19:02:45 +04:00
|
|
|
oshmmap_s = (struct shmmap_state *)p->p_vmspace->vm_shm;
|
|
|
|
if (oshmmap_s && oshmmap_s->nrefs == 1)
|
2008-01-02 14:48:20 +03:00
|
|
|
return oshmmap_s;
|
2003-09-09 19:02:45 +04:00
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
/* 2. No shm map preset - create a fresh one */
|
|
|
|
shmmap_s = kmem_zalloc(sizeof(struct shmmap_state), KM_SLEEP);
|
2003-09-09 19:02:45 +04:00
|
|
|
shmmap_s->nrefs = 1;
|
|
|
|
SLIST_INIT(&shmmap_s->entries);
|
2007-03-04 08:59:00 +03:00
|
|
|
p->p_vmspace->vm_shm = (void *)shmmap_s;
|
2003-09-09 19:02:45 +04:00
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
if (oshmmap_s == NULL)
|
|
|
|
return shmmap_s;
|
2003-09-09 19:02:45 +04:00
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
SHMPRINTF(("shmmap_getprivate: vm %p split (%d entries), was used by %d\n",
|
|
|
|
p->p_vmspace, oshmmap_s->nitems, oshmmap_s->nrefs));
|
|
|
|
|
|
|
|
/* 3. A shared shm map, copy to a fresh one and adjust refcounts */
|
2003-09-09 19:02:45 +04:00
|
|
|
SLIST_FOREACH(oshmmap_se, &oshmmap_s->entries, next) {
|
|
|
|
shmmap_se = pool_get(&shmmap_entry_pool, PR_WAITOK);
|
|
|
|
shmmap_se->va = oshmmap_se->va;
|
|
|
|
shmmap_se->shmid = oshmmap_se->shmid;
|
|
|
|
SLIST_INSERT_HEAD(&shmmap_s->entries, shmmap_se, next);
|
|
|
|
}
|
|
|
|
shmmap_s->nitems = oshmmap_s->nitems;
|
|
|
|
oshmmap_s->nrefs--;
|
2008-01-02 14:48:20 +03:00
|
|
|
|
|
|
|
return shmmap_s;
|
2003-09-09 19:02:45 +04:00
|
|
|
}
|
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
/*
|
|
|
|
* Lock/unlock the memory.
|
|
|
|
* => must be called with shm_lock held;
|
|
|
|
* => called from one place, thus, inline;
|
|
|
|
*/
|
|
|
|
static inline int
|
|
|
|
shm_memlock(struct lwp *l, struct shmid_ds *shmseg, int shmid, int cmd)
|
2003-09-10 21:01:04 +04:00
|
|
|
{
|
2008-01-02 14:48:20 +03:00
|
|
|
struct proc *p = l->l_proc;
|
2003-09-10 21:01:04 +04:00
|
|
|
struct shmmap_entry *shmmap_se;
|
2008-01-02 14:48:20 +03:00
|
|
|
struct shmmap_state *shmmap_s;
|
|
|
|
size_t size;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
KASSERT(mutex_owned(&shm_lock));
|
|
|
|
shmmap_s = shmmap_getprivate(p);
|
|
|
|
|
|
|
|
/* Find our shared memory address by shmid */
|
|
|
|
SLIST_FOREACH(shmmap_se, &shmmap_s->entries, next) {
|
|
|
|
if (shmmap_se->shmid != shmid)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
size = (shmseg->shm_segsz + PGOFSET) & ~PGOFSET;
|
|
|
|
|
|
|
|
if (cmd == SHM_LOCK &&
|
|
|
|
(shmseg->shm_perm.mode & SHMSEG_WIRED) == 0) {
|
|
|
|
/* Wire the object and map, then tag it */
|
2008-05-30 01:38:18 +04:00
|
|
|
error = uobj_wirepages(shmseg->_shm_internal, 0, size);
|
2008-01-02 14:48:20 +03:00
|
|
|
if (error)
|
|
|
|
return EIO;
|
|
|
|
error = uvm_map_pageable(&p->p_vmspace->vm_map,
|
|
|
|
shmmap_se->va, shmmap_se->va + size, false, 0);
|
|
|
|
if (error) {
|
2008-05-30 01:38:18 +04:00
|
|
|
uobj_unwirepages(shmseg->_shm_internal, 0, size);
|
2008-01-02 14:48:20 +03:00
|
|
|
if (error == EFAULT)
|
|
|
|
error = ENOMEM;
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
shmseg->shm_perm.mode |= SHMSEG_WIRED;
|
2003-09-10 21:01:04 +04:00
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
} else if (cmd == SHM_UNLOCK &&
|
|
|
|
(shmseg->shm_perm.mode & SHMSEG_WIRED) != 0) {
|
|
|
|
/* Unwire the object and map, then untag it */
|
2008-05-30 01:38:18 +04:00
|
|
|
uobj_unwirepages(shmseg->_shm_internal, 0, size);
|
2008-01-02 14:48:20 +03:00
|
|
|
error = uvm_map_pageable(&p->p_vmspace->vm_map,
|
|
|
|
shmmap_se->va, shmmap_se->va + size, true, 0);
|
|
|
|
if (error)
|
|
|
|
return EIO;
|
|
|
|
shmseg->shm_perm.mode &= ~SHMSEG_WIRED;
|
|
|
|
}
|
2003-09-10 21:01:04 +04:00
|
|
|
}
|
2008-01-02 14:48:20 +03:00
|
|
|
|
2003-09-10 21:01:04 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
/*
|
|
|
|
* Unmap shared memory.
|
|
|
|
*/
|
1994-05-25 11:36:53 +04:00
|
|
|
int
|
2007-12-21 02:02:38 +03:00
|
|
|
sys_shmdt(struct lwp *l, const struct sys_shmdt_args *uap, register_t *retval)
|
1994-05-25 06:14:24 +04:00
|
|
|
{
|
2007-12-21 02:02:38 +03:00
|
|
|
/* {
|
1998-05-07 22:00:49 +04:00
|
|
|
syscallarg(const void *) shmaddr;
|
2007-12-21 02:02:38 +03:00
|
|
|
} */
|
2003-01-18 13:06:22 +03:00
|
|
|
struct proc *p = l->l_proc;
|
2008-01-02 14:48:20 +03:00
|
|
|
struct shmmap_state *shmmap_s1, *shmmap_s;
|
2003-09-09 19:02:45 +04:00
|
|
|
struct shmmap_entry *shmmap_se;
|
2008-01-02 14:48:20 +03:00
|
|
|
struct uvm_object *uobj;
|
|
|
|
struct shmid_ds *shmseg;
|
|
|
|
size_t size;
|
|
|
|
|
|
|
|
mutex_enter(&shm_lock);
|
|
|
|
/* In case of reallocation, we will wait for completion */
|
|
|
|
while (__predict_false(shm_realloc_state))
|
|
|
|
cv_wait(&shm_realloc_cv, &shm_lock);
|
1994-05-25 06:14:24 +04:00
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
shmmap_s1 = (struct shmmap_state *)p->p_vmspace->vm_shm;
|
|
|
|
if (shmmap_s1 == NULL) {
|
|
|
|
mutex_exit(&shm_lock);
|
1996-09-02 02:53:06 +04:00
|
|
|
return EINVAL;
|
2008-01-02 14:48:20 +03:00
|
|
|
}
|
1996-09-02 02:53:06 +04:00
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
/* Find the map entry */
|
|
|
|
SLIST_FOREACH(shmmap_se, &shmmap_s1->entries, next)
|
|
|
|
if (shmmap_se->va == (vaddr_t)SCARG(uap, shmaddr))
|
|
|
|
break;
|
|
|
|
if (shmmap_se == NULL) {
|
|
|
|
mutex_exit(&shm_lock);
|
2003-09-10 21:01:04 +04:00
|
|
|
return EINVAL;
|
2008-01-02 14:48:20 +03:00
|
|
|
}
|
2003-09-10 21:01:04 +04:00
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
shmmap_s = shmmap_getprivate(p);
|
|
|
|
if (shmmap_s != shmmap_s1) {
|
|
|
|
/* Map has been copied, lookup entry in new map */
|
|
|
|
SLIST_FOREACH(shmmap_se, &shmmap_s->entries, next)
|
|
|
|
if (shmmap_se->va == (vaddr_t)SCARG(uap, shmaddr))
|
|
|
|
break;
|
|
|
|
if (shmmap_se == NULL) {
|
|
|
|
mutex_exit(&shm_lock);
|
|
|
|
return EINVAL;
|
|
|
|
}
|
2003-09-10 21:01:04 +04:00
|
|
|
}
|
2008-01-02 14:48:20 +03:00
|
|
|
|
|
|
|
SHMPRINTF(("shmdt: vm %p: remove %d @%lx\n",
|
|
|
|
p->p_vmspace, shmmap_se->shmid, shmmap_se->va));
|
|
|
|
|
|
|
|
/* Delete the entry from shm map */
|
|
|
|
uobj = shm_delete_mapping(shmmap_s, shmmap_se);
|
|
|
|
shmseg = &shmsegs[IPCID_TO_IX(shmmap_se->shmid)];
|
|
|
|
size = (shmseg->shm_segsz + PGOFSET) & ~PGOFSET;
|
|
|
|
mutex_exit(&shm_lock);
|
|
|
|
|
|
|
|
uvm_deallocate(&p->p_vmspace->vm_map, shmmap_se->va, size);
|
|
|
|
if (uobj != NULL)
|
|
|
|
uao_detach(uobj);
|
|
|
|
pool_put(&shmmap_entry_pool, shmmap_se);
|
|
|
|
|
2003-09-10 21:01:04 +04:00
|
|
|
return 0;
|
1994-05-25 06:14:24 +04:00
|
|
|
}
|
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
/*
|
|
|
|
* Map shared memory.
|
|
|
|
*/
|
1994-05-25 11:36:53 +04:00
|
|
|
int
|
2007-12-21 02:02:38 +03:00
|
|
|
sys_shmat(struct lwp *l, const struct sys_shmat_args *uap, register_t *retval)
|
1995-09-20 01:40:36 +04:00
|
|
|
{
|
2007-12-21 02:02:38 +03:00
|
|
|
/* {
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(int) shmid;
|
1998-05-07 22:00:49 +04:00
|
|
|
syscallarg(const void *) shmaddr;
|
1996-02-04 05:15:01 +03:00
|
|
|
syscallarg(int) shmflg;
|
2007-12-21 02:02:38 +03:00
|
|
|
} */
|
2007-02-07 21:45:36 +03:00
|
|
|
int error, flags = 0;
|
2004-09-28 21:26:25 +04:00
|
|
|
struct proc *p = l->l_proc;
|
2006-07-24 02:06:03 +04:00
|
|
|
kauth_cred_t cred = l->l_cred;
|
1994-05-25 06:14:24 +04:00
|
|
|
struct shmid_ds *shmseg;
|
2003-09-09 19:02:45 +04:00
|
|
|
struct shmmap_state *shmmap_s;
|
2008-01-02 14:48:20 +03:00
|
|
|
struct shmmap_entry *shmmap_se;
|
2004-02-06 01:28:33 +03:00
|
|
|
struct uvm_object *uobj;
|
2008-01-02 14:48:20 +03:00
|
|
|
struct vmspace *vm;
|
1998-08-13 06:10:37 +04:00
|
|
|
vaddr_t attach_va;
|
1994-05-25 06:14:24 +04:00
|
|
|
vm_prot_t prot;
|
1998-08-13 06:10:37 +04:00
|
|
|
vsize_t size;
|
2008-01-02 14:48:20 +03:00
|
|
|
|
|
|
|
/* Allocate a new map entry and set it */
|
|
|
|
shmmap_se = pool_get(&shmmap_entry_pool, PR_WAITOK);
|
|
|
|
|
|
|
|
mutex_enter(&shm_lock);
|
|
|
|
/* In case of reallocation, we will wait for completion */
|
|
|
|
while (__predict_false(shm_realloc_state))
|
|
|
|
cv_wait(&shm_realloc_cv, &shm_lock);
|
1994-05-25 06:14:24 +04:00
|
|
|
|
2004-09-28 21:26:25 +04:00
|
|
|
shmseg = shm_find_segment_by_shmid(SCARG(uap, shmid));
|
2008-01-02 14:48:20 +03:00
|
|
|
if (shmseg == NULL) {
|
|
|
|
error = EINVAL;
|
|
|
|
goto err;
|
|
|
|
}
|
1996-02-04 05:15:01 +03:00
|
|
|
error = ipcperm(cred, &shmseg->shm_perm,
|
2008-01-02 14:48:20 +03:00
|
|
|
(SCARG(uap, shmflg) & SHM_RDONLY) ? IPC_R : IPC_R|IPC_W);
|
1996-02-04 05:15:01 +03:00
|
|
|
if (error)
|
2008-01-02 14:48:20 +03:00
|
|
|
goto err;
|
2003-09-09 19:02:45 +04:00
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
vm = p->p_vmspace;
|
|
|
|
shmmap_s = (struct shmmap_state *)vm->vm_shm;
|
|
|
|
if (shmmap_s && shmmap_s->nitems >= shminfo.shmseg) {
|
|
|
|
error = EMFILE;
|
|
|
|
goto err;
|
|
|
|
}
|
2003-09-09 19:02:45 +04:00
|
|
|
|
1999-12-04 00:43:19 +03:00
|
|
|
size = (shmseg->shm_segsz + PGOFSET) & ~PGOFSET;
|
1994-05-25 11:36:53 +04:00
|
|
|
prot = VM_PROT_READ;
|
2004-09-28 21:26:25 +04:00
|
|
|
if ((SCARG(uap, shmflg) & SHM_RDONLY) == 0)
|
1994-05-25 11:36:53 +04:00
|
|
|
prot |= VM_PROT_WRITE;
|
2004-09-28 21:26:25 +04:00
|
|
|
if (SCARG(uap, shmaddr)) {
|
2007-02-07 21:45:36 +03:00
|
|
|
flags |= UVM_FLAG_FIXED;
|
2004-09-28 21:26:25 +04:00
|
|
|
if (SCARG(uap, shmflg) & SHM_RND)
|
1994-10-20 07:22:35 +03:00
|
|
|
attach_va =
|
2004-09-28 21:26:25 +04:00
|
|
|
(vaddr_t)SCARG(uap, shmaddr) & ~(SHMLBA-1);
|
|
|
|
else if (((vaddr_t)SCARG(uap, shmaddr) & (SHMLBA-1)) == 0)
|
|
|
|
attach_va = (vaddr_t)SCARG(uap, shmaddr);
|
2008-01-02 14:48:20 +03:00
|
|
|
else {
|
|
|
|
error = EINVAL;
|
|
|
|
goto err;
|
|
|
|
}
|
1994-05-25 11:36:53 +04:00
|
|
|
} else {
|
2008-05-11 22:48:00 +04:00
|
|
|
/* This is just a hint to uvm_map() about where to put it. */
|
2005-03-26 08:12:34 +03:00
|
|
|
attach_va = p->p_emul->e_vm_default_addr(p,
|
2008-01-02 14:48:20 +03:00
|
|
|
(vaddr_t)vm->vm_daddr, size);
|
1994-05-25 06:14:24 +04:00
|
|
|
}
|
2008-01-02 14:48:20 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Create a map entry, add it to the list and increase the counters.
|
|
|
|
* The lock will be dropped before the mapping, disable reallocation.
|
|
|
|
*/
|
|
|
|
shmmap_s = shmmap_getprivate(p);
|
|
|
|
SLIST_INSERT_HEAD(&shmmap_s->entries, shmmap_se, next);
|
|
|
|
shmmap_s->nitems++;
|
|
|
|
shmseg->shm_lpid = p->p_pid;
|
|
|
|
shmseg->shm_nattch++;
|
|
|
|
shm_realloc_disable++;
|
|
|
|
mutex_exit(&shm_lock);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add a reference to the memory object, map it to the
|
|
|
|
* address space, and lock the memory, if needed.
|
|
|
|
*/
|
2004-10-16 17:34:07 +04:00
|
|
|
uobj = shmseg->_shm_internal;
|
2008-01-02 14:48:20 +03:00
|
|
|
uao_reference(uobj);
|
|
|
|
error = uvm_map(&vm->vm_map, &attach_va, size, uobj, 0, 0,
|
2007-02-07 21:45:36 +03:00
|
|
|
UVM_MAPFLAG(prot, prot, UVM_INH_SHARE, UVM_ADV_RANDOM, flags));
|
2006-11-26 00:40:04 +03:00
|
|
|
if (error)
|
2008-01-02 14:48:20 +03:00
|
|
|
goto err_detach;
|
2006-11-26 00:40:04 +03:00
|
|
|
if (shm_use_phys || (shmseg->shm_perm.mode & SHMSEG_WIRED)) {
|
2008-01-02 14:48:20 +03:00
|
|
|
error = uvm_map_pageable(&vm->vm_map, attach_va,
|
2007-02-22 09:34:42 +03:00
|
|
|
attach_va + size, false, 0);
|
2006-11-26 00:40:04 +03:00
|
|
|
if (error) {
|
|
|
|
if (error == EFAULT)
|
|
|
|
error = ENOMEM;
|
2008-01-02 14:48:20 +03:00
|
|
|
uvm_deallocate(&vm->vm_map, attach_va, size);
|
|
|
|
goto err_detach;
|
2006-11-26 00:40:04 +03:00
|
|
|
}
|
1998-02-05 10:59:28 +03:00
|
|
|
}
|
2006-11-26 00:40:04 +03:00
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
/* Set the new address, and update the time */
|
|
|
|
mutex_enter(&shm_lock);
|
2003-09-09 19:02:45 +04:00
|
|
|
shmmap_se->va = attach_va;
|
2004-09-28 21:26:25 +04:00
|
|
|
shmmap_se->shmid = SCARG(uap, shmid);
|
2006-06-08 02:33:33 +04:00
|
|
|
shmseg->shm_atime = time_second;
|
2008-01-02 14:48:20 +03:00
|
|
|
shm_realloc_disable--;
|
2004-09-28 21:26:25 +04:00
|
|
|
retval[0] = attach_va;
|
2008-01-02 14:48:20 +03:00
|
|
|
SHMPRINTF(("shmat: vm %p: add %d @%lx\n",
|
|
|
|
p->p_vmspace, shmmap_se->shmid, attach_va));
|
|
|
|
err:
|
|
|
|
cv_broadcast(&shm_realloc_cv);
|
|
|
|
mutex_exit(&shm_lock);
|
|
|
|
if (error && shmmap_se)
|
|
|
|
pool_put(&shmmap_entry_pool, shmmap_se);
|
|
|
|
return error;
|
|
|
|
|
|
|
|
err_detach:
|
|
|
|
uao_detach(uobj);
|
|
|
|
mutex_enter(&shm_lock);
|
|
|
|
uobj = shm_delete_mapping(shmmap_s, shmmap_se);
|
|
|
|
shm_realloc_disable--;
|
|
|
|
cv_broadcast(&shm_realloc_cv);
|
|
|
|
mutex_exit(&shm_lock);
|
|
|
|
if (uobj != NULL)
|
|
|
|
uao_detach(uobj);
|
|
|
|
pool_put(&shmmap_entry_pool, shmmap_se);
|
2006-11-26 00:40:04 +03:00
|
|
|
return error;
|
1994-05-25 06:14:24 +04:00
|
|
|
}
|
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
/*
|
|
|
|
* Shared memory control operations.
|
|
|
|
*/
|
1994-05-25 11:36:53 +04:00
|
|
|
int
|
2007-12-21 02:02:38 +03:00
|
|
|
sys___shmctl13(struct lwp *l, const struct sys___shmctl13_args *uap, register_t *retval)
|
1995-09-20 01:40:36 +04:00
|
|
|
{
|
2007-12-21 02:02:38 +03:00
|
|
|
/* {
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(int) shmid;
|
|
|
|
syscallarg(int) cmd;
|
|
|
|
syscallarg(struct shmid_ds *) buf;
|
2007-12-21 02:02:38 +03:00
|
|
|
} */
|
1999-08-25 09:05:48 +04:00
|
|
|
struct shmid_ds shmbuf;
|
|
|
|
int cmd, error;
|
|
|
|
|
|
|
|
cmd = SCARG(uap, cmd);
|
|
|
|
if (cmd == IPC_SET) {
|
|
|
|
error = copyin(SCARG(uap, buf), &shmbuf, sizeof(shmbuf));
|
|
|
|
if (error)
|
2008-01-02 14:48:20 +03:00
|
|
|
return error;
|
1999-08-25 09:05:48 +04:00
|
|
|
}
|
|
|
|
|
2006-07-24 02:06:03 +04:00
|
|
|
error = shmctl1(l, SCARG(uap, shmid), cmd,
|
1999-08-25 09:05:48 +04:00
|
|
|
(cmd == IPC_SET || cmd == IPC_STAT) ? &shmbuf : NULL);
|
|
|
|
|
|
|
|
if (error == 0 && cmd == IPC_STAT)
|
|
|
|
error = copyout(&shmbuf, SCARG(uap, buf), sizeof(shmbuf));
|
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
return error;
|
1999-08-25 09:05:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2006-07-24 02:06:03 +04:00
|
|
|
shmctl1(struct lwp *l, int shmid, int cmd, struct shmid_ds *shmbuf)
|
1999-08-25 09:05:48 +04:00
|
|
|
{
|
2008-01-02 14:48:20 +03:00
|
|
|
struct uvm_object *uobj = NULL;
|
2006-07-24 02:06:03 +04:00
|
|
|
kauth_cred_t cred = l->l_cred;
|
1994-05-25 06:14:24 +04:00
|
|
|
struct shmid_ds *shmseg;
|
1999-08-25 09:05:48 +04:00
|
|
|
int error = 0;
|
2008-01-02 14:48:20 +03:00
|
|
|
|
|
|
|
mutex_enter(&shm_lock);
|
|
|
|
/* In case of reallocation, we will wait for completion */
|
|
|
|
while (__predict_false(shm_realloc_state))
|
|
|
|
cv_wait(&shm_realloc_cv, &shm_lock);
|
1994-05-25 06:14:24 +04:00
|
|
|
|
2004-09-28 21:26:25 +04:00
|
|
|
shmseg = shm_find_segment_by_shmid(shmid);
|
2008-01-02 14:48:20 +03:00
|
|
|
if (shmseg == NULL) {
|
|
|
|
mutex_exit(&shm_lock);
|
1994-05-25 06:14:24 +04:00
|
|
|
return EINVAL;
|
2008-01-02 14:48:20 +03:00
|
|
|
}
|
2006-11-26 00:40:04 +03:00
|
|
|
|
1999-08-25 09:05:48 +04:00
|
|
|
switch (cmd) {
|
1994-05-25 06:14:24 +04:00
|
|
|
case IPC_STAT:
|
1996-02-04 05:15:01 +03:00
|
|
|
if ((error = ipcperm(cred, &shmseg->shm_perm, IPC_R)) != 0)
|
2008-01-02 14:48:20 +03:00
|
|
|
break;
|
1999-08-25 09:05:48 +04:00
|
|
|
memcpy(shmbuf, shmseg, sizeof(struct shmid_ds));
|
1994-05-25 06:14:24 +04:00
|
|
|
break;
|
|
|
|
case IPC_SET:
|
1996-02-04 05:15:01 +03:00
|
|
|
if ((error = ipcperm(cred, &shmseg->shm_perm, IPC_M)) != 0)
|
2008-01-02 14:48:20 +03:00
|
|
|
break;
|
1999-08-25 09:05:48 +04:00
|
|
|
shmseg->shm_perm.uid = shmbuf->shm_perm.uid;
|
|
|
|
shmseg->shm_perm.gid = shmbuf->shm_perm.gid;
|
1994-05-25 11:36:53 +04:00
|
|
|
shmseg->shm_perm.mode =
|
|
|
|
(shmseg->shm_perm.mode & ~ACCESSPERMS) |
|
1999-08-25 09:05:48 +04:00
|
|
|
(shmbuf->shm_perm.mode & ACCESSPERMS);
|
2006-06-08 02:33:33 +04:00
|
|
|
shmseg->shm_ctime = time_second;
|
1994-05-25 06:14:24 +04:00
|
|
|
break;
|
|
|
|
case IPC_RMID:
|
1996-02-04 05:15:01 +03:00
|
|
|
if ((error = ipcperm(cred, &shmseg->shm_perm, IPC_M)) != 0)
|
2008-01-02 14:48:20 +03:00
|
|
|
break;
|
1999-08-25 09:05:48 +04:00
|
|
|
shmseg->shm_perm._key = IPC_PRIVATE;
|
1994-05-25 11:36:53 +04:00
|
|
|
shmseg->shm_perm.mode |= SHMSEG_REMOVED;
|
|
|
|
if (shmseg->shm_nattch <= 0) {
|
2008-01-02 14:48:20 +03:00
|
|
|
uobj = shmseg->_shm_internal;
|
|
|
|
shm_free_segment(IPCID_TO_IX(shmid));
|
1994-05-25 06:14:24 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SHM_LOCK:
|
|
|
|
case SHM_UNLOCK:
|
2006-11-26 00:40:04 +03:00
|
|
|
if ((error = kauth_authorize_generic(cred,
|
|
|
|
KAUTH_GENERIC_ISSUSER, NULL)) != 0)
|
2008-01-02 14:48:20 +03:00
|
|
|
break;
|
|
|
|
error = shm_memlock(l, shmseg, shmid, cmd);
|
2006-11-26 00:40:04 +03:00
|
|
|
break;
|
1994-05-25 06:14:24 +04:00
|
|
|
default:
|
2008-01-02 14:48:20 +03:00
|
|
|
error = EINVAL;
|
1994-05-25 06:14:24 +04:00
|
|
|
}
|
2008-01-02 14:48:20 +03:00
|
|
|
|
|
|
|
mutex_exit(&shm_lock);
|
|
|
|
if (uobj != NULL)
|
|
|
|
uao_detach(uobj);
|
|
|
|
return error;
|
1994-05-25 06:14:24 +04:00
|
|
|
}
|
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
/*
|
|
|
|
* Try to take an already existing segment.
|
|
|
|
* => must be called with shm_lock held;
|
|
|
|
* => called from one place, thus, inline;
|
|
|
|
*/
|
|
|
|
static inline int
|
2007-12-21 02:02:38 +03:00
|
|
|
shmget_existing(struct lwp *l, const struct sys_shmget_args *uap, int mode,
|
2008-01-02 14:48:20 +03:00
|
|
|
register_t *retval)
|
1994-05-25 06:14:24 +04:00
|
|
|
{
|
|
|
|
struct shmid_ds *shmseg;
|
2006-07-24 02:06:03 +04:00
|
|
|
kauth_cred_t cred = l->l_cred;
|
2008-01-02 14:48:20 +03:00
|
|
|
int segnum, error;
|
|
|
|
again:
|
|
|
|
KASSERT(mutex_owned(&shm_lock));
|
|
|
|
|
|
|
|
/* Find segment by key */
|
|
|
|
for (segnum = 0; segnum < shminfo.shmmni; segnum++)
|
|
|
|
if ((shmsegs[segnum].shm_perm.mode & SHMSEG_ALLOCATED) &&
|
|
|
|
shmsegs[segnum].shm_perm._key == SCARG(uap, key))
|
|
|
|
break;
|
|
|
|
if (segnum == shminfo.shmmni) {
|
|
|
|
/* Not found */
|
|
|
|
return -1;
|
|
|
|
}
|
1994-05-25 06:14:24 +04:00
|
|
|
|
|
|
|
shmseg = &shmsegs[segnum];
|
1994-05-25 13:55:32 +04:00
|
|
|
if (shmseg->shm_perm.mode & SHMSEG_REMOVED) {
|
|
|
|
/*
|
|
|
|
* This segment is in the process of being allocated. Wait
|
|
|
|
* until it's done, and look the key up again (in case the
|
|
|
|
* allocation failed or it was freed).
|
|
|
|
*/
|
|
|
|
shmseg->shm_perm.mode |= SHMSEG_WANTED;
|
2008-01-02 14:48:20 +03:00
|
|
|
error = cv_wait_sig(&shm_cv[segnum], &shm_lock);
|
1996-02-04 05:15:01 +03:00
|
|
|
if (error)
|
1994-05-25 13:55:32 +04:00
|
|
|
return error;
|
2008-01-02 14:48:20 +03:00
|
|
|
goto again;
|
1994-05-25 13:55:32 +04:00
|
|
|
}
|
2008-01-02 14:48:20 +03:00
|
|
|
|
2008-10-27 18:40:56 +03:00
|
|
|
/*
|
|
|
|
* First check the flags, to generate a useful error when a
|
|
|
|
* segment already exists.
|
|
|
|
*/
|
|
|
|
if ((SCARG(uap, shmflg) & (IPC_CREAT | IPC_EXCL)) ==
|
|
|
|
(IPC_CREAT | IPC_EXCL))
|
|
|
|
return EEXIST;
|
|
|
|
|
|
|
|
/* Check the permission and segment size. */
|
2008-01-02 14:48:20 +03:00
|
|
|
error = ipcperm(cred, &shmseg->shm_perm, mode);
|
|
|
|
if (error)
|
1994-05-25 06:14:24 +04:00
|
|
|
return error;
|
1994-10-20 07:22:35 +03:00
|
|
|
if (SCARG(uap, size) && SCARG(uap, size) > shmseg->shm_segsz)
|
1994-05-25 06:14:24 +04:00
|
|
|
return EINVAL;
|
2008-01-02 14:48:20 +03:00
|
|
|
|
1994-05-25 06:14:24 +04:00
|
|
|
*retval = IXSEQ_TO_IPCID(segnum, shmseg->shm_perm);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
int
|
|
|
|
sys_shmget(struct lwp *l, const struct sys_shmget_args *uap, register_t *retval)
|
1994-05-25 12:59:48 +04:00
|
|
|
{
|
2008-01-02 14:48:20 +03:00
|
|
|
/* {
|
|
|
|
syscallarg(key_t) key;
|
2008-01-27 21:37:50 +03:00
|
|
|
syscallarg(size_t) size;
|
2008-01-02 14:48:20 +03:00
|
|
|
syscallarg(int) shmflg;
|
|
|
|
} */
|
1994-05-25 12:59:48 +04:00
|
|
|
struct shmid_ds *shmseg;
|
2008-01-02 14:48:20 +03:00
|
|
|
kauth_cred_t cred = l->l_cred;
|
|
|
|
key_t key = SCARG(uap, key);
|
2008-01-27 21:37:50 +03:00
|
|
|
size_t size;
|
|
|
|
int error, mode, segnum;
|
2008-01-02 14:48:20 +03:00
|
|
|
bool lockmem;
|
|
|
|
|
|
|
|
mode = SCARG(uap, shmflg) & ACCESSPERMS;
|
|
|
|
if (SCARG(uap, shmflg) & _SHM_RMLINGER)
|
|
|
|
mode |= SHMSEG_RMLINGER;
|
2004-03-23 16:22:32 +03:00
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
SHMPRINTF(("shmget: key 0x%lx size 0x%x shmflg 0x%x mode 0x%x\n",
|
|
|
|
SCARG(uap, key), SCARG(uap, size), SCARG(uap, shmflg), mode));
|
|
|
|
|
|
|
|
mutex_enter(&shm_lock);
|
|
|
|
/* In case of reallocation, we will wait for completion */
|
|
|
|
while (__predict_false(shm_realloc_state))
|
|
|
|
cv_wait(&shm_realloc_cv, &shm_lock);
|
|
|
|
|
|
|
|
if (key != IPC_PRIVATE) {
|
|
|
|
error = shmget_existing(l, uap, mode, retval);
|
|
|
|
if (error != -1) {
|
|
|
|
mutex_exit(&shm_lock);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
if ((SCARG(uap, shmflg) & IPC_CREAT) == 0) {
|
|
|
|
mutex_exit(&shm_lock);
|
|
|
|
return ENOENT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
error = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check the for the limits.
|
|
|
|
*/
|
|
|
|
size = SCARG(uap, size);
|
|
|
|
if (size < shminfo.shmmin || size > shminfo.shmmax) {
|
|
|
|
mutex_exit(&shm_lock);
|
1994-05-25 12:59:48 +04:00
|
|
|
return EINVAL;
|
2008-01-02 14:48:20 +03:00
|
|
|
}
|
|
|
|
if (shm_nused >= shminfo.shmmni) {
|
|
|
|
mutex_exit(&shm_lock);
|
1994-05-25 12:59:48 +04:00
|
|
|
return ENOSPC;
|
2008-01-02 14:48:20 +03:00
|
|
|
}
|
|
|
|
size = (size + PGOFSET) & ~PGOFSET;
|
|
|
|
if (shm_committed + btoc(size) > shminfo.shmall) {
|
|
|
|
mutex_exit(&shm_lock);
|
1994-05-25 12:59:48 +04:00
|
|
|
return ENOMEM;
|
2008-01-02 14:48:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Find the first available segment */
|
1994-05-25 12:59:48 +04:00
|
|
|
if (shm_last_free < 0) {
|
2008-01-02 14:48:20 +03:00
|
|
|
for (segnum = 0; segnum < shminfo.shmmni; segnum++)
|
|
|
|
if (shmsegs[segnum].shm_perm.mode & SHMSEG_FREE)
|
1994-05-25 12:59:48 +04:00
|
|
|
break;
|
2008-01-02 14:48:20 +03:00
|
|
|
KASSERT(segnum < shminfo.shmmni);
|
|
|
|
} else {
|
1994-05-25 12:59:48 +04:00
|
|
|
segnum = shm_last_free;
|
|
|
|
shm_last_free = -1;
|
|
|
|
}
|
2008-01-02 14:48:20 +03:00
|
|
|
|
1994-05-25 12:59:48 +04:00
|
|
|
/*
|
2008-01-02 14:48:20 +03:00
|
|
|
* Initialize the segment.
|
|
|
|
* We will drop the lock while allocating the memory, thus mark the
|
|
|
|
* segment present, but removed, that no other thread could take it.
|
|
|
|
* Also, disable reallocation, while lock is dropped.
|
1994-05-25 12:59:48 +04:00
|
|
|
*/
|
2008-01-02 14:48:20 +03:00
|
|
|
shmseg = &shmsegs[segnum];
|
1994-05-25 12:59:48 +04:00
|
|
|
shmseg->shm_perm.mode = SHMSEG_ALLOCATED | SHMSEG_REMOVED;
|
2008-01-02 14:48:20 +03:00
|
|
|
shm_committed += btoc(size);
|
|
|
|
shm_nused++;
|
|
|
|
lockmem = shm_use_phys;
|
|
|
|
shm_realloc_disable++;
|
|
|
|
mutex_exit(&shm_lock);
|
1998-02-05 10:59:28 +03:00
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
/* Allocate the memory object and lock it if needed */
|
2004-10-16 17:34:07 +04:00
|
|
|
shmseg->_shm_internal = uao_create(size, 0);
|
2008-01-02 14:48:20 +03:00
|
|
|
if (lockmem) {
|
|
|
|
/* Wire the pages and tag it */
|
2008-05-30 01:38:18 +04:00
|
|
|
error = uobj_wirepages(shmseg->_shm_internal, 0, size);
|
2008-01-02 14:48:20 +03:00
|
|
|
if (error) {
|
2008-05-11 22:48:00 +04:00
|
|
|
uao_detach(shmseg->_shm_internal);
|
2008-01-02 14:48:20 +03:00
|
|
|
mutex_enter(&shm_lock);
|
|
|
|
shm_free_segment(segnum);
|
|
|
|
shm_realloc_disable--;
|
|
|
|
mutex_exit(&shm_lock);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Please note, while segment is marked, there are no need to hold the
|
|
|
|
* lock, while setting it (except shm_perm.mode).
|
|
|
|
*/
|
|
|
|
shmseg->shm_perm._key = SCARG(uap, key);
|
|
|
|
shmseg->shm_perm._seq = (shmseg->shm_perm._seq + 1) & 0x7fff;
|
|
|
|
*retval = IXSEQ_TO_IPCID(segnum, shmseg->shm_perm);
|
1998-02-05 10:59:28 +03:00
|
|
|
|
2006-05-15 01:15:11 +04:00
|
|
|
shmseg->shm_perm.cuid = shmseg->shm_perm.uid = kauth_cred_geteuid(cred);
|
|
|
|
shmseg->shm_perm.cgid = shmseg->shm_perm.gid = kauth_cred_getegid(cred);
|
1994-10-20 07:22:35 +03:00
|
|
|
shmseg->shm_segsz = SCARG(uap, size);
|
2006-07-24 02:06:03 +04:00
|
|
|
shmseg->shm_cpid = l->l_proc->p_pid;
|
1994-05-25 12:59:48 +04:00
|
|
|
shmseg->shm_lpid = shmseg->shm_nattch = 0;
|
|
|
|
shmseg->shm_atime = shmseg->shm_dtime = 0;
|
2006-06-08 02:33:33 +04:00
|
|
|
shmseg->shm_ctime = time_second;
|
1997-10-09 12:35:13 +04:00
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
/*
|
|
|
|
* Segment is initialized.
|
|
|
|
* Enter the lock, mark as allocated, and notify waiters (if any).
|
|
|
|
* Also, unmark the state of reallocation.
|
|
|
|
*/
|
|
|
|
mutex_enter(&shm_lock);
|
|
|
|
shmseg->shm_perm.mode = (shmseg->shm_perm.mode & SHMSEG_WANTED) |
|
|
|
|
(mode & (ACCESSPERMS | SHMSEG_RMLINGER)) |
|
|
|
|
SHMSEG_ALLOCATED | (lockmem ? SHMSEG_WIRED : 0);
|
1994-05-25 13:55:32 +04:00
|
|
|
if (shmseg->shm_perm.mode & SHMSEG_WANTED) {
|
|
|
|
shmseg->shm_perm.mode &= ~SHMSEG_WANTED;
|
2008-01-02 14:48:20 +03:00
|
|
|
cv_broadcast(&shm_cv[segnum]);
|
2006-11-26 00:40:04 +03:00
|
|
|
}
|
2008-01-02 14:48:20 +03:00
|
|
|
shm_realloc_disable--;
|
|
|
|
cv_broadcast(&shm_realloc_cv);
|
|
|
|
mutex_exit(&shm_lock);
|
2006-11-26 00:40:04 +03:00
|
|
|
|
1997-10-09 12:35:13 +04:00
|
|
|
return error;
|
1994-05-25 12:59:48 +04:00
|
|
|
}
|
|
|
|
|
1994-05-25 11:36:53 +04:00
|
|
|
void
|
2005-12-07 09:14:13 +03:00
|
|
|
shmfork(struct vmspace *vm1, struct vmspace *vm2)
|
1994-05-25 06:14:24 +04:00
|
|
|
{
|
|
|
|
struct shmmap_state *shmmap_s;
|
2003-09-09 19:02:45 +04:00
|
|
|
struct shmmap_entry *shmmap_se;
|
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
SHMPRINTF(("shmfork %p->%p\n", vm1, vm2));
|
|
|
|
mutex_enter(&shm_lock);
|
2003-09-09 19:02:45 +04:00
|
|
|
vm2->vm_shm = vm1->vm_shm;
|
2008-01-02 14:48:20 +03:00
|
|
|
if (vm1->vm_shm) {
|
|
|
|
shmmap_s = (struct shmmap_state *)vm1->vm_shm;
|
|
|
|
SLIST_FOREACH(shmmap_se, &shmmap_s->entries, next)
|
|
|
|
shmsegs[IPCID_TO_IX(shmmap_se->shmid)].shm_nattch++;
|
|
|
|
shmmap_s->nrefs++;
|
|
|
|
}
|
|
|
|
mutex_exit(&shm_lock);
|
1994-05-25 06:14:24 +04:00
|
|
|
}
|
|
|
|
|
1994-05-25 11:36:53 +04:00
|
|
|
void
|
2005-12-07 09:14:13 +03:00
|
|
|
shmexit(struct vmspace *vm)
|
1994-05-25 06:14:24 +04:00
|
|
|
{
|
|
|
|
struct shmmap_state *shmmap_s;
|
2003-09-09 19:02:45 +04:00
|
|
|
struct shmmap_entry *shmmap_se;
|
2008-01-02 14:48:20 +03:00
|
|
|
struct uvm_object **uobj;
|
|
|
|
size_t *size;
|
|
|
|
u_int i, n;
|
1994-05-25 06:14:24 +04:00
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
SLIST_HEAD(, shmmap_entry) tmp_entries;
|
|
|
|
|
|
|
|
mutex_enter(&shm_lock);
|
1998-01-03 05:50:32 +03:00
|
|
|
shmmap_s = (struct shmmap_state *)vm->vm_shm;
|
2008-01-02 14:48:20 +03:00
|
|
|
if (shmmap_s == NULL) {
|
|
|
|
mutex_exit(&shm_lock);
|
1996-09-02 02:53:06 +04:00
|
|
|
return;
|
2008-01-02 14:48:20 +03:00
|
|
|
}
|
2003-09-09 19:02:45 +04:00
|
|
|
|
1998-01-03 05:50:32 +03:00
|
|
|
vm->vm_shm = NULL;
|
2003-09-09 19:02:45 +04:00
|
|
|
|
|
|
|
if (--shmmap_s->nrefs > 0) {
|
2008-01-02 14:48:20 +03:00
|
|
|
SHMPRINTF(("shmexit: vm %p drop ref (%d entries), refs = %d\n",
|
|
|
|
vm, shmmap_s->nitems, shmmap_s->nrefs));
|
2003-09-09 19:02:45 +04:00
|
|
|
SLIST_FOREACH(shmmap_se, &shmmap_s->entries, next)
|
|
|
|
shmsegs[IPCID_TO_IX(shmmap_se->shmid)].shm_nattch--;
|
2008-01-02 14:48:20 +03:00
|
|
|
mutex_exit(&shm_lock);
|
2003-09-09 19:02:45 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
KASSERT(shmmap_s->nrefs == 0);
|
|
|
|
n = shmmap_s->nitems;
|
|
|
|
SHMPRINTF(("shmexit: vm %p cleanup (%d entries)\n", vm, n));
|
|
|
|
mutex_exit(&shm_lock);
|
|
|
|
if (n == 0) {
|
|
|
|
kmem_free(shmmap_s, sizeof(struct shmmap_state));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate the arrays */
|
|
|
|
SLIST_INIT(&tmp_entries);
|
|
|
|
uobj = kmem_zalloc(n * sizeof(void *), KM_SLEEP);
|
|
|
|
size = kmem_zalloc(n * sizeof(size_t), KM_SLEEP);
|
|
|
|
|
|
|
|
/* Delete the entry from shm map */
|
|
|
|
i = 0;
|
|
|
|
mutex_enter(&shm_lock);
|
2003-09-09 19:02:45 +04:00
|
|
|
while (!SLIST_EMPTY(&shmmap_s->entries)) {
|
2008-01-02 14:48:20 +03:00
|
|
|
struct shmid_ds *shmseg;
|
|
|
|
|
2003-09-09 19:02:45 +04:00
|
|
|
shmmap_se = SLIST_FIRST(&shmmap_s->entries);
|
2008-01-02 14:48:20 +03:00
|
|
|
shmseg = &shmsegs[IPCID_TO_IX(shmmap_se->shmid)];
|
|
|
|
size[i] = (shmseg->shm_segsz + PGOFSET) & ~PGOFSET;
|
|
|
|
uobj[i] = shm_delete_mapping(shmmap_s, shmmap_se);
|
|
|
|
SLIST_INSERT_HEAD(&tmp_entries, shmmap_se, next);
|
|
|
|
i++;
|
2003-09-09 19:02:45 +04:00
|
|
|
}
|
2008-01-02 14:48:20 +03:00
|
|
|
mutex_exit(&shm_lock);
|
|
|
|
|
|
|
|
/* Unmap all segments, free the entries */
|
|
|
|
i = 0;
|
|
|
|
while (!SLIST_EMPTY(&tmp_entries)) {
|
|
|
|
KASSERT(i < n);
|
|
|
|
shmmap_se = SLIST_FIRST(&tmp_entries);
|
|
|
|
SLIST_REMOVE(&tmp_entries, shmmap_se, shmmap_entry, next);
|
|
|
|
uvm_deallocate(&vm->vm_map, shmmap_se->va, size[i]);
|
|
|
|
if (uobj[i] != NULL)
|
|
|
|
uao_detach(uobj[i]);
|
|
|
|
pool_put(&shmmap_entry_pool, shmmap_se);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
kmem_free(uobj, n * sizeof(void *));
|
|
|
|
kmem_free(size, n * sizeof(size_t));
|
|
|
|
kmem_free(shmmap_s, sizeof(struct shmmap_state));
|
1994-05-25 06:14:24 +04:00
|
|
|
}
|
|
|
|
|
2006-11-26 00:40:04 +03:00
|
|
|
static int
|
|
|
|
shmrealloc(int newshmni)
|
|
|
|
{
|
|
|
|
vaddr_t v;
|
2008-01-02 14:48:20 +03:00
|
|
|
struct shmid_ds *oldshmsegs, *newshmsegs;
|
2008-05-31 17:11:14 +04:00
|
|
|
kcondvar_t *newshm_cv, *oldshm_cv;
|
2008-01-27 21:37:50 +03:00
|
|
|
size_t sz;
|
2008-05-31 17:11:14 +04:00
|
|
|
int i, lsegid, oldshmni;
|
2006-11-26 00:40:04 +03:00
|
|
|
|
|
|
|
if (newshmni < 1)
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
/* Allocate new memory area */
|
2008-01-02 14:48:20 +03:00
|
|
|
sz = ALIGN(newshmni * sizeof(struct shmid_ds)) +
|
2008-01-27 21:37:50 +03:00
|
|
|
ALIGN(newshmni * sizeof(kcondvar_t));
|
2008-01-02 14:48:20 +03:00
|
|
|
v = uvm_km_alloc(kernel_map, round_page(sz), 0,
|
|
|
|
UVM_KMF_WIRED|UVM_KMF_ZERO);
|
2006-11-26 00:40:04 +03:00
|
|
|
if (v == 0)
|
|
|
|
return ENOMEM;
|
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
mutex_enter(&shm_lock);
|
|
|
|
while (shm_realloc_state || shm_realloc_disable)
|
|
|
|
cv_wait(&shm_realloc_cv, &shm_lock);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the number of last segment. Fail we are trying to
|
|
|
|
* reallocate less memory than we use.
|
2008-01-27 21:37:50 +03:00
|
|
|
*/
|
2008-01-02 14:48:20 +03:00
|
|
|
lsegid = 0;
|
|
|
|
for (i = 0; i < shminfo.shmmni; i++)
|
|
|
|
if ((shmsegs[i].shm_perm.mode & SHMSEG_FREE) == 0)
|
|
|
|
lsegid = i;
|
|
|
|
if (lsegid >= newshmni) {
|
|
|
|
mutex_exit(&shm_lock);
|
|
|
|
uvm_km_free(kernel_map, v, sz, UVM_KMF_WIRED);
|
|
|
|
return EBUSY;
|
|
|
|
}
|
|
|
|
shm_realloc_state = true;
|
|
|
|
|
2006-11-26 00:40:04 +03:00
|
|
|
newshmsegs = (void *)v;
|
2008-09-19 15:21:33 +04:00
|
|
|
newshm_cv = (void *)((uintptr_t)newshmsegs +
|
|
|
|
ALIGN(newshmni * sizeof(struct shmid_ds)));
|
2006-11-26 00:40:04 +03:00
|
|
|
|
|
|
|
/* Copy all memory to the new area */
|
|
|
|
for (i = 0; i < shm_nused; i++)
|
|
|
|
(void)memcpy(&newshmsegs[i], &shmsegs[i],
|
|
|
|
sizeof(newshmsegs[0]));
|
|
|
|
|
|
|
|
/* Mark as free all new segments, if there is any */
|
|
|
|
for (; i < newshmni; i++) {
|
2008-01-02 14:48:20 +03:00
|
|
|
cv_init(&newshm_cv[i], "shmwait");
|
2006-11-26 00:40:04 +03:00
|
|
|
newshmsegs[i].shm_perm.mode = SHMSEG_FREE;
|
|
|
|
newshmsegs[i].shm_perm._seq = 0;
|
|
|
|
}
|
|
|
|
|
2008-01-02 14:48:20 +03:00
|
|
|
oldshmsegs = shmsegs;
|
2008-05-31 17:11:14 +04:00
|
|
|
oldshmni = shminfo.shmmni;
|
2008-01-02 14:48:20 +03:00
|
|
|
shminfo.shmmni = newshmni;
|
2006-11-26 00:40:04 +03:00
|
|
|
shmsegs = newshmsegs;
|
2008-01-02 14:48:20 +03:00
|
|
|
shm_cv = newshm_cv;
|
|
|
|
|
|
|
|
/* Reallocation completed - notify all waiters, if any */
|
|
|
|
shm_realloc_state = false;
|
|
|
|
cv_broadcast(&shm_realloc_cv);
|
|
|
|
mutex_exit(&shm_lock);
|
2006-11-26 00:40:04 +03:00
|
|
|
|
2008-05-31 17:11:14 +04:00
|
|
|
/* Release now unused resources. */
|
2008-09-19 15:21:33 +04:00
|
|
|
oldshm_cv = (void *)((uintptr_t)oldshmsegs +
|
|
|
|
ALIGN(oldshmni * sizeof(struct shmid_ds)));
|
2008-05-31 17:11:14 +04:00
|
|
|
for (i = 0; i < oldshmni; i++)
|
|
|
|
cv_destroy(&oldshm_cv[i]);
|
|
|
|
|
|
|
|
sz = ALIGN(oldshmni * sizeof(struct shmid_ds)) +
|
|
|
|
ALIGN(oldshmni * sizeof(kcondvar_t));
|
2008-01-02 14:48:20 +03:00
|
|
|
uvm_km_free(kernel_map, (vaddr_t)oldshmsegs, sz, UVM_KMF_WIRED);
|
2008-05-31 17:11:14 +04:00
|
|
|
|
2006-11-26 00:40:04 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1994-05-25 11:36:53 +04:00
|
|
|
void
|
2005-12-07 09:14:13 +03:00
|
|
|
shminit(void)
|
1994-05-25 06:14:24 +04:00
|
|
|
{
|
2003-10-26 13:32:24 +03:00
|
|
|
vaddr_t v;
|
2008-01-27 21:37:50 +03:00
|
|
|
size_t sz;
|
|
|
|
int i;
|
2003-10-26 13:32:24 +03:00
|
|
|
|
2007-02-15 18:40:50 +03:00
|
|
|
mutex_init(&shm_lock, MUTEX_DEFAULT, IPL_NONE);
|
2008-01-02 14:48:20 +03:00
|
|
|
pool_init(&shmmap_entry_pool, sizeof(struct shmmap_entry), 0, 0, 0,
|
|
|
|
"shmmp", &pool_allocator_nointr, IPL_NONE);
|
|
|
|
cv_init(&shm_realloc_cv, "shmrealc");
|
|
|
|
|
|
|
|
/* Allocate the wired memory for our structures */
|
|
|
|
sz = ALIGN(shminfo.shmmni * sizeof(struct shmid_ds)) +
|
|
|
|
ALIGN(shminfo.shmmni * sizeof(kcondvar_t));
|
|
|
|
v = uvm_km_alloc(kernel_map, round_page(sz), 0,
|
|
|
|
UVM_KMF_WIRED|UVM_KMF_ZERO);
|
2005-04-01 15:59:21 +04:00
|
|
|
if (v == 0)
|
2003-10-26 13:32:24 +03:00
|
|
|
panic("sysv_shm: cannot allocate memory");
|
|
|
|
shmsegs = (void *)v;
|
2008-09-19 15:21:33 +04:00
|
|
|
shm_cv = (void *)((uintptr_t)shmsegs +
|
|
|
|
ALIGN(shminfo.shmmni * sizeof(struct shmid_ds)));
|
1994-05-25 06:14:24 +04:00
|
|
|
|
2000-11-15 01:16:38 +03:00
|
|
|
shminfo.shmmax *= PAGE_SIZE;
|
1994-08-23 03:37:03 +04:00
|
|
|
|
1994-05-25 06:14:24 +04:00
|
|
|
for (i = 0; i < shminfo.shmmni; i++) {
|
2008-01-02 14:48:20 +03:00
|
|
|
cv_init(&shm_cv[i], "shmwait");
|
1994-05-25 06:14:24 +04:00
|
|
|
shmsegs[i].shm_perm.mode = SHMSEG_FREE;
|
1999-08-25 09:05:48 +04:00
|
|
|
shmsegs[i].shm_perm._seq = 0;
|
1994-05-25 06:14:24 +04:00
|
|
|
}
|
|
|
|
shm_last_free = 0;
|
|
|
|
shm_nused = 0;
|
|
|
|
shm_committed = 0;
|
2008-01-02 14:48:20 +03:00
|
|
|
shm_realloc_disable = 0;
|
|
|
|
shm_realloc_state = false;
|
1994-05-25 06:14:24 +04:00
|
|
|
}
|
2006-11-26 00:40:04 +03:00
|
|
|
|
|
|
|
static int
|
|
|
|
sysctl_ipc_shmmni(SYSCTLFN_ARGS)
|
|
|
|
{
|
|
|
|
int newsize, error;
|
|
|
|
struct sysctlnode node;
|
|
|
|
node = *rnode;
|
|
|
|
node.sysctl_data = &newsize;
|
|
|
|
|
|
|
|
newsize = shminfo.shmmni;
|
|
|
|
error = sysctl_lookup(SYSCTLFN_CALL(&node));
|
|
|
|
if (error || newp == NULL)
|
|
|
|
return error;
|
|
|
|
|
2008-01-07 19:12:52 +03:00
|
|
|
sysctl_unlock();
|
|
|
|
error = shmrealloc(newsize);
|
|
|
|
sysctl_relock();
|
|
|
|
return error;
|
2006-11-26 00:40:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
sysctl_ipc_shmmaxpgs(SYSCTLFN_ARGS)
|
|
|
|
{
|
2008-10-07 13:35:03 +04:00
|
|
|
uint32_t newsize;
|
|
|
|
int error;
|
2006-11-26 00:40:04 +03:00
|
|
|
struct sysctlnode node;
|
|
|
|
node = *rnode;
|
|
|
|
node.sysctl_data = &newsize;
|
2008-01-02 14:48:20 +03:00
|
|
|
|
2006-11-26 00:40:04 +03:00
|
|
|
newsize = shminfo.shmall;
|
|
|
|
error = sysctl_lookup(SYSCTLFN_CALL(&node));
|
|
|
|
if (error || newp == NULL)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
if (newsize < 1)
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
shminfo.shmall = newsize;
|
2008-10-07 13:35:03 +04:00
|
|
|
shminfo.shmmax = (uint64_t)shminfo.shmall * PAGE_SIZE;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
sysctl_ipc_shmmax(SYSCTLFN_ARGS)
|
|
|
|
{
|
|
|
|
uint64_t newsize;
|
|
|
|
int error;
|
|
|
|
struct sysctlnode node;
|
|
|
|
node = *rnode;
|
|
|
|
node.sysctl_data = &newsize;
|
|
|
|
|
|
|
|
newsize = shminfo.shmmax;
|
|
|
|
error = sysctl_lookup(SYSCTLFN_CALL(&node));
|
|
|
|
if (error || newp == NULL)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
if (newsize < PAGE_SIZE)
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
shminfo.shmmax = round_page(newsize);
|
|
|
|
shminfo.shmall = shminfo.shmmax >> PAGE_SHIFT;
|
2006-11-26 00:40:04 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
SYSCTL_SETUP(sysctl_ipc_shm_setup, "sysctl kern.ipc subtree setup")
|
|
|
|
{
|
2008-01-02 14:48:20 +03:00
|
|
|
|
2006-11-26 00:40:04 +03:00
|
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT,
|
|
|
|
CTLTYPE_NODE, "kern", NULL,
|
|
|
|
NULL, 0, NULL, 0,
|
|
|
|
CTL_KERN, CTL_EOL);
|
|
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT,
|
|
|
|
CTLTYPE_NODE, "ipc",
|
|
|
|
SYSCTL_DESCR("SysV IPC options"),
|
|
|
|
NULL, 0, NULL, 0,
|
|
|
|
CTL_KERN, KERN_SYSVIPC, CTL_EOL);
|
|
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
2008-10-07 13:35:03 +04:00
|
|
|
CTLFLAG_PERMANENT | CTLFLAG_READWRITE,
|
|
|
|
CTLTYPE_QUAD, "shmmax",
|
2006-11-26 00:40:04 +03:00
|
|
|
SYSCTL_DESCR("Max shared memory segment size in bytes"),
|
2008-10-07 13:35:03 +04:00
|
|
|
sysctl_ipc_shmmax, 0, &shminfo.shmmax, 0,
|
2006-11-26 00:40:04 +03:00
|
|
|
CTL_KERN, KERN_SYSVIPC, KERN_SYSVIPC_SHMMAX, CTL_EOL);
|
|
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT | CTLFLAG_READWRITE,
|
|
|
|
CTLTYPE_INT, "shmmni",
|
|
|
|
SYSCTL_DESCR("Max number of shared memory identifiers"),
|
|
|
|
sysctl_ipc_shmmni, 0, &shminfo.shmmni, 0,
|
|
|
|
CTL_KERN, KERN_SYSVIPC, KERN_SYSVIPC_SHMMNI, CTL_EOL);
|
|
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT | CTLFLAG_READWRITE,
|
|
|
|
CTLTYPE_INT, "shmseg",
|
|
|
|
SYSCTL_DESCR("Max shared memory segments per process"),
|
|
|
|
NULL, 0, &shminfo.shmseg, 0,
|
|
|
|
CTL_KERN, KERN_SYSVIPC, KERN_SYSVIPC_SHMSEG, CTL_EOL);
|
|
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT | CTLFLAG_READWRITE,
|
|
|
|
CTLTYPE_INT, "shmmaxpgs",
|
|
|
|
SYSCTL_DESCR("Max amount of shared memory in pages"),
|
|
|
|
sysctl_ipc_shmmaxpgs, 0, &shminfo.shmall, 0,
|
|
|
|
CTL_KERN, KERN_SYSVIPC, KERN_SYSVIPC_SHMMAXPGS, CTL_EOL);
|
|
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT | CTLFLAG_READWRITE,
|
|
|
|
CTLTYPE_INT, "shm_use_phys",
|
|
|
|
SYSCTL_DESCR("Enable/disable locking of shared memory in "
|
|
|
|
"physical memory"), NULL, 0, &shm_use_phys, 0,
|
|
|
|
CTL_KERN, KERN_SYSVIPC, KERN_SYSVIPC_SHMUSEPHYS, CTL_EOL);
|
|
|
|
}
|