2009-04-16 18:55:44 +04:00
|
|
|
/* $NetBSD: sysv_ipc.c,v 1.23 2009/04/16 14:55:44 rmind Exp $ */
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1998-08-15 09:19:50 +04:00
|
|
|
/*-
|
2007-02-10 00:55:00 +03:00
|
|
|
* Copyright (c) 1998, 2007 The NetBSD Foundation, Inc.
|
1998-08-15 09:19:50 +04:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Charles M. Hannum.
|
1993-11-14 16:21:59 +03: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-27 23:15:36 +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.
|
1993-11-14 16:21:59 +03:00
|
|
|
*
|
1998-08-15 09:19:50 +04:00
|
|
|
* 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.
|
1993-11-14 16:21:59 +03:00
|
|
|
*/
|
|
|
|
|
2001-11-12 18:25:01 +03:00
|
|
|
#include <sys/cdefs.h>
|
2009-04-16 18:55:44 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: sysv_ipc.c,v 1.23 2009/04/16 14:55:44 rmind Exp $");
|
2006-11-26 00:40:04 +03:00
|
|
|
|
|
|
|
#include "opt_sysv.h"
|
2009-01-19 22:39:41 +03:00
|
|
|
#include "opt_compat_netbsd.h"
|
1993-12-18 07:21:37 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/ipc.h>
|
2006-11-26 00:40:04 +03:00
|
|
|
#ifdef SYSVMSG
|
|
|
|
#include <sys/msg.h>
|
|
|
|
#endif
|
|
|
|
#ifdef SYSVSEM
|
|
|
|
#include <sys/sem.h>
|
|
|
|
#endif
|
|
|
|
#ifdef SYSVSHM
|
|
|
|
#include <sys/shm.h>
|
|
|
|
#endif
|
1994-05-25 06:14:24 +04:00
|
|
|
#include <sys/systm.h>
|
2009-04-16 18:55:44 +04:00
|
|
|
#include <sys/kmem.h>
|
1995-06-03 09:53:28 +04:00
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/vnode.h>
|
1997-05-08 21:16:15 +04:00
|
|
|
#include <sys/stat.h>
|
2006-11-26 00:40:04 +03:00
|
|
|
#include <sys/sysctl.h>
|
2006-05-15 01:15:11 +04:00
|
|
|
#include <sys/kauth.h>
|
1993-11-14 16:21:59 +03:00
|
|
|
|
2009-01-19 22:39:41 +03:00
|
|
|
#ifdef COMPAT_50
|
|
|
|
#include <compat/sys/ipc.h>
|
|
|
|
#endif
|
|
|
|
|
1993-11-14 16:21:59 +03:00
|
|
|
/*
|
1994-05-25 06:14:24 +04:00
|
|
|
* Check for ipc permission
|
1993-11-14 16:21:59 +03:00
|
|
|
*/
|
|
|
|
|
1994-05-25 06:14:24 +04:00
|
|
|
int
|
2006-05-15 01:15:11 +04:00
|
|
|
ipcperm(kauth_cred_t cred, struct ipc_perm *perm, int mode)
|
1993-11-14 16:21:59 +03:00
|
|
|
{
|
1997-05-08 21:16:15 +04:00
|
|
|
mode_t mask;
|
2006-05-15 01:15:11 +04:00
|
|
|
int ismember = 0;
|
1997-05-08 21:16:15 +04:00
|
|
|
|
2007-01-04 19:55:29 +03:00
|
|
|
if (kauth_authorize_generic(cred, KAUTH_GENERIC_ISSUSER, NULL) == 0)
|
1997-05-08 21:16:15 +04:00
|
|
|
return (0);
|
1993-11-14 16:21:59 +03:00
|
|
|
|
1995-06-02 23:04:22 +04:00
|
|
|
if (mode == IPC_M) {
|
2006-05-15 01:15:11 +04:00
|
|
|
if (kauth_cred_geteuid(cred) == perm->uid ||
|
|
|
|
kauth_cred_geteuid(cred) == perm->cuid)
|
1995-06-02 23:04:22 +04:00
|
|
|
return (0);
|
|
|
|
return (EPERM);
|
1993-11-14 16:21:59 +03:00
|
|
|
}
|
1994-05-25 06:14:24 +04:00
|
|
|
|
1997-05-08 21:16:15 +04:00
|
|
|
mask = 0;
|
|
|
|
|
2006-05-15 01:15:11 +04:00
|
|
|
if (kauth_cred_geteuid(cred) == perm->uid ||
|
|
|
|
kauth_cred_geteuid(cred) == perm->cuid) {
|
1997-05-08 21:16:15 +04:00
|
|
|
if (mode & IPC_R)
|
|
|
|
mask |= S_IRUSR;
|
|
|
|
if (mode & IPC_W)
|
|
|
|
mask |= S_IWUSR;
|
|
|
|
return ((perm->mode & mask) == mask ? 0 : EACCES);
|
|
|
|
}
|
|
|
|
|
2006-05-15 01:15:11 +04:00
|
|
|
if (kauth_cred_getegid(cred) == perm->gid ||
|
|
|
|
(kauth_cred_ismember_gid(cred, perm->gid, &ismember) == 0 && ismember) ||
|
|
|
|
kauth_cred_getegid(cred) == perm->cgid ||
|
|
|
|
(kauth_cred_ismember_gid(cred, perm->cgid, &ismember) == 0 && ismember)) {
|
1997-05-08 21:16:15 +04:00
|
|
|
if (mode & IPC_R)
|
|
|
|
mask |= S_IRGRP;
|
|
|
|
if (mode & IPC_W)
|
|
|
|
mask |= S_IWGRP;
|
|
|
|
return ((perm->mode & mask) == mask ? 0 : EACCES);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mode & IPC_R)
|
|
|
|
mask |= S_IROTH;
|
|
|
|
if (mode & IPC_W)
|
|
|
|
mask |= S_IWOTH;
|
|
|
|
return ((perm->mode & mask) == mask ? 0 : EACCES);
|
1993-11-14 16:21:59 +03:00
|
|
|
}
|
2006-11-26 00:40:04 +03:00
|
|
|
|
|
|
|
static int
|
|
|
|
sysctl_kern_sysvipc(SYSCTLFN_ARGS)
|
|
|
|
{
|
|
|
|
void *where = oldp;
|
2009-04-16 18:55:44 +04:00
|
|
|
size_t sz, *sizep = oldlenp;
|
2006-11-26 00:40:04 +03:00
|
|
|
#ifdef SYSVMSG
|
|
|
|
struct msg_sysctl_info *msgsi = NULL;
|
|
|
|
#endif
|
|
|
|
#ifdef SYSVSEM
|
|
|
|
struct sem_sysctl_info *semsi = NULL;
|
|
|
|
#endif
|
|
|
|
#ifdef SYSVSHM
|
|
|
|
struct shm_sysctl_info *shmsi = NULL;
|
|
|
|
#endif
|
|
|
|
size_t infosize, dssize, tsize, buflen;
|
|
|
|
void *bf = NULL;
|
|
|
|
char *start;
|
|
|
|
int32_t nds;
|
|
|
|
int i, error, ret;
|
|
|
|
|
2009-01-19 22:39:41 +03:00
|
|
|
#ifdef COMPAT_50
|
|
|
|
switch ((error = sysctl_kern_sysvipc50(SYSCTLFN_CALL(rnode)))) {
|
|
|
|
case 0:
|
|
|
|
return 0;
|
|
|
|
case EPASSTHROUGH:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
#endif
|
2006-11-26 00:40:04 +03:00
|
|
|
if (namelen != 1)
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
start = where;
|
|
|
|
buflen = *sizep;
|
|
|
|
|
|
|
|
switch (*name) {
|
|
|
|
case KERN_SYSVIPC_MSG_INFO:
|
|
|
|
#ifdef SYSVMSG
|
|
|
|
infosize = sizeof(msgsi->msginfo);
|
|
|
|
nds = msginfo.msgmni;
|
|
|
|
dssize = sizeof(msgsi->msgids[0]);
|
|
|
|
break;
|
|
|
|
#else
|
|
|
|
return EINVAL;
|
|
|
|
#endif
|
|
|
|
case KERN_SYSVIPC_SEM_INFO:
|
|
|
|
#ifdef SYSVSEM
|
|
|
|
infosize = sizeof(semsi->seminfo);
|
|
|
|
nds = seminfo.semmni;
|
|
|
|
dssize = sizeof(semsi->semids[0]);
|
|
|
|
break;
|
|
|
|
#else
|
|
|
|
return EINVAL;
|
|
|
|
#endif
|
|
|
|
case KERN_SYSVIPC_SHM_INFO:
|
|
|
|
#ifdef SYSVSHM
|
|
|
|
infosize = sizeof(shmsi->shminfo);
|
|
|
|
nds = shminfo.shmmni;
|
|
|
|
dssize = sizeof(shmsi->shmids[0]);
|
|
|
|
break;
|
|
|
|
#else
|
|
|
|
return EINVAL;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Round infosize to 64 bit boundary if requesting more than just
|
|
|
|
* the info structure or getting the total data size.
|
|
|
|
*/
|
|
|
|
if (where == NULL || *sizep > infosize)
|
|
|
|
infosize = roundup(infosize, sizeof(quad_t));
|
|
|
|
tsize = infosize + nds * dssize;
|
|
|
|
|
|
|
|
/* Return just the total size required. */
|
|
|
|
if (where == NULL) {
|
|
|
|
*sizep = tsize;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Not enough room for even the info struct. */
|
|
|
|
if (buflen < infosize) {
|
|
|
|
*sizep = 0;
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
2009-04-16 18:55:44 +04:00
|
|
|
sz = min(tsize, buflen);
|
|
|
|
bf = kmem_zalloc(sz, KM_SLEEP);
|
2006-11-26 00:40:04 +03:00
|
|
|
|
|
|
|
switch (*name) {
|
|
|
|
#ifdef SYSVMSG
|
|
|
|
case KERN_SYSVIPC_MSG_INFO:
|
|
|
|
msgsi = (struct msg_sysctl_info *)bf;
|
|
|
|
msgsi->msginfo = msginfo;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifdef SYSVSEM
|
|
|
|
case KERN_SYSVIPC_SEM_INFO:
|
|
|
|
semsi = (struct sem_sysctl_info *)bf;
|
|
|
|
semsi->seminfo = seminfo;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifdef SYSVSHM
|
|
|
|
case KERN_SYSVIPC_SHM_INFO:
|
|
|
|
shmsi = (struct shm_sysctl_info *)bf;
|
|
|
|
shmsi->shminfo = shminfo;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
buflen -= infosize;
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
if (buflen > 0) {
|
|
|
|
/* Fill in the IPC data structures. */
|
|
|
|
for (i = 0; i < nds; i++) {
|
|
|
|
if (buflen < dssize) {
|
|
|
|
ret = ENOMEM;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
switch (*name) {
|
|
|
|
#ifdef SYSVMSG
|
|
|
|
case KERN_SYSVIPC_MSG_INFO:
|
2007-02-10 00:55:00 +03:00
|
|
|
mutex_enter(&msgmutex);
|
2009-01-19 22:39:41 +03:00
|
|
|
SYSCTL_FILL_MSG(msqs[i].msq_u, msgsi->msgids[i]);
|
2007-02-10 00:55:00 +03:00
|
|
|
mutex_exit(&msgmutex);
|
2006-11-26 00:40:04 +03:00
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifdef SYSVSEM
|
|
|
|
case KERN_SYSVIPC_SEM_INFO:
|
2009-01-19 22:39:41 +03:00
|
|
|
SYSCTL_FILL_SEM(sema[i], semsi->semids[i]);
|
2006-11-26 00:40:04 +03:00
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifdef SYSVSHM
|
|
|
|
case KERN_SYSVIPC_SHM_INFO:
|
2009-01-19 22:39:41 +03:00
|
|
|
SYSCTL_FILL_SHM(shmsegs[i], shmsi->shmids[i]);
|
2006-11-26 00:40:04 +03:00
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
buflen -= dssize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*sizep -= buflen;
|
|
|
|
error = copyout(bf, start, *sizep);
|
|
|
|
/* If copyout succeeded, use return code set earlier. */
|
|
|
|
if (error == 0)
|
|
|
|
error = ret;
|
|
|
|
if (bf)
|
2009-04-16 18:55:44 +04:00
|
|
|
kmem_free(bf, sz);
|
2006-11-26 00:40:04 +03:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
SYSCTL_SETUP(sysctl_ipc_setup, "sysctl kern.ipc subtree setup")
|
|
|
|
{
|
|
|
|
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,
|
|
|
|
CTLFLAG_PERMANENT,
|
|
|
|
CTLTYPE_STRUCT, "sysvipc_info",
|
|
|
|
SYSCTL_DESCR("System V style IPC information"),
|
|
|
|
sysctl_kern_sysvipc, 0, NULL, 0,
|
|
|
|
CTL_KERN, KERN_SYSVIPC, KERN_SYSVIPC_INFO, CTL_EOL);
|
|
|
|
}
|