2010-07-07 05:30:32 +04:00
|
|
|
/* $NetBSD: linux32_sysctl.c,v 1.13 2010/07/07 01:30:36 chs Exp $ */
|
2006-02-09 22:18:56 +03:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 2006 Emmanuel Dreyfus, all rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by Emmanuel Dreyfus
|
|
|
|
* 4. The name of the author may not be used to endorse or promote
|
|
|
|
* products derived from this software without specific prior written
|
|
|
|
* permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE THE AUTHOR 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 AUTHOR 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.
|
|
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
2010-07-07 05:30:32 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: linux32_sysctl.c,v 1.13 2010/07/07 01:30:36 chs Exp $");
|
2006-02-09 22:18:56 +03:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#include <sys/syscallargs.h>
|
2006-09-24 02:11:59 +04:00
|
|
|
#include <sys/ktrace.h>
|
2006-02-09 22:18:56 +03:00
|
|
|
|
|
|
|
#include <compat/netbsd32/netbsd32.h>
|
|
|
|
|
|
|
|
#include <compat/linux/common/linux_types.h>
|
|
|
|
#include <compat/linux/common/linux_signal.h>
|
2006-09-05 21:12:19 +04:00
|
|
|
#include <compat/linux/common/linux_sysctl.h>
|
2008-11-19 21:35:57 +03:00
|
|
|
#include <compat/linux/common/linux_ipc.h>
|
|
|
|
#include <compat/linux/common/linux_sem.h>
|
2006-02-09 22:18:56 +03:00
|
|
|
#include <compat/linux/linux_syscallargs.h>
|
|
|
|
|
|
|
|
#include <compat/linux32/common/linux32_types.h>
|
|
|
|
#include <compat/linux32/common/linux32_signal.h>
|
|
|
|
#include <compat/linux32/common/linux32_sysctl.h>
|
|
|
|
#include <compat/linux32/linux32_syscallargs.h>
|
|
|
|
|
|
|
|
char linux32_sysname[128] = "Linux";
|
2010-07-07 05:30:32 +04:00
|
|
|
char linux32_release[128] = "2.6.18";
|
|
|
|
char linux32_version[128] = "#0 Wed Mar 3 03:03:03 PST 2010";
|
2006-02-09 22:18:56 +03:00
|
|
|
|
2008-11-19 21:35:57 +03:00
|
|
|
struct sysctlnode linux32_sysctl_root = {
|
|
|
|
.sysctl_flags = SYSCTL_VERSION|
|
|
|
|
CTLFLAG_ROOT|CTLTYPE_NODE|CTLFLAG_READWRITE,
|
|
|
|
.sysctl_num = 0,
|
|
|
|
.sysctl_name = "(linux32_root)",
|
|
|
|
sysc_init_field(_sysctl_size, sizeof(struct sysctlnode)),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct sysctllog *linux32_clog1;
|
|
|
|
static struct sysctllog *linux32_clog2;
|
2006-02-09 22:18:56 +03:00
|
|
|
|
2008-11-19 21:35:57 +03:00
|
|
|
void
|
|
|
|
linux32_sysctl_fini(void)
|
2006-02-09 22:18:56 +03:00
|
|
|
{
|
|
|
|
|
2008-11-19 21:35:57 +03:00
|
|
|
sysctl_teardown(&linux32_clog2);
|
|
|
|
sysctl_teardown(&linux32_clog1);
|
|
|
|
sysctl_free(&linux32_sysctl_root);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
linux32_sysctl_init(void)
|
|
|
|
{
|
|
|
|
const struct sysctlnode *node = &linux32_sysctl_root;
|
|
|
|
|
|
|
|
sysctl_createv(&linux32_clog1, 0, NULL, NULL,
|
2006-02-09 22:18:56 +03:00
|
|
|
CTLFLAG_PERMANENT,
|
|
|
|
CTLTYPE_NODE, "emul", NULL,
|
|
|
|
NULL, 0, NULL, 0,
|
|
|
|
CTL_EMUL, CTL_EOL);
|
2008-11-19 21:35:57 +03:00
|
|
|
sysctl_createv(&linux32_clog1, 0, NULL, NULL,
|
2006-02-09 22:18:56 +03:00
|
|
|
CTLFLAG_PERMANENT,
|
|
|
|
CTLTYPE_NODE, "linux32",
|
|
|
|
SYSCTL_DESCR("Linux 32 bit emulation settings"),
|
|
|
|
NULL, 0, NULL, 0,
|
|
|
|
CTL_EMUL, EMUL_LINUX32, CTL_EOL);
|
2008-11-19 21:35:57 +03:00
|
|
|
sysctl_createv(&linux32_clog1, 0, NULL, NULL,
|
2006-02-09 22:18:56 +03:00
|
|
|
CTLFLAG_PERMANENT,
|
|
|
|
CTLTYPE_NODE, "kern",
|
|
|
|
SYSCTL_DESCR("Linux 32 bit kernel emulation settings"),
|
|
|
|
NULL, 0, NULL, 0,
|
|
|
|
CTL_EMUL, EMUL_LINUX32, EMUL_LINUX32_KERN, CTL_EOL);
|
|
|
|
|
2008-11-19 21:35:57 +03:00
|
|
|
sysctl_createv(&linux32_clog1, 0, NULL, NULL,
|
2006-02-09 22:18:56 +03:00
|
|
|
CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
|
|
|
|
CTLTYPE_STRING, "ostype",
|
|
|
|
SYSCTL_DESCR("Linux 32 bit operating system type"),
|
|
|
|
NULL, 0, linux32_sysname, sizeof(linux32_sysname),
|
|
|
|
CTL_EMUL, EMUL_LINUX32, EMUL_LINUX32_KERN,
|
|
|
|
EMUL_LINUX32_KERN_OSTYPE, CTL_EOL);
|
2008-11-19 21:35:57 +03:00
|
|
|
sysctl_createv(&linux32_clog1, 0, NULL, NULL,
|
2006-02-09 22:18:56 +03:00
|
|
|
CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
|
|
|
|
CTLTYPE_STRING, "osrelease",
|
|
|
|
SYSCTL_DESCR("Linux 32 bit operating system release"),
|
|
|
|
NULL, 0, linux32_release, sizeof(linux32_release),
|
|
|
|
CTL_EMUL, EMUL_LINUX32, EMUL_LINUX32_KERN,
|
|
|
|
EMUL_LINUX32_KERN_OSRELEASE, CTL_EOL);
|
2008-11-19 21:35:57 +03:00
|
|
|
sysctl_createv(&linux32_clog1, 0, NULL, NULL,
|
2006-02-09 22:18:56 +03:00
|
|
|
CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
|
|
|
|
CTLTYPE_STRING, "osversion",
|
|
|
|
SYSCTL_DESCR("Linux 32 bit operating system revision"),
|
|
|
|
NULL, 0, linux32_version, sizeof(linux32_version),
|
|
|
|
CTL_EMUL, EMUL_LINUX32, EMUL_LINUX32_KERN,
|
|
|
|
EMUL_LINUX32_KERN_VERSION, CTL_EOL);
|
2006-09-05 21:12:19 +04:00
|
|
|
|
2008-11-19 21:35:57 +03:00
|
|
|
sysctl_createv(&linux32_clog2, 0, &node, &node,
|
2006-09-05 21:12:19 +04:00
|
|
|
CTLFLAG_PERMANENT,
|
|
|
|
CTLTYPE_NODE, "kern", NULL,
|
|
|
|
NULL, 0, NULL, 0,
|
|
|
|
LINUX_CTL_KERN, CTL_EOL);
|
|
|
|
|
2008-11-19 21:35:57 +03:00
|
|
|
sysctl_createv(&linux32_clog2, 0, &node, NULL,
|
2006-09-05 21:12:19 +04:00
|
|
|
CTLFLAG_PERMANENT,
|
|
|
|
CTLTYPE_STRING, "ostype", NULL,
|
|
|
|
NULL, 0, linux32_sysname, sizeof(linux32_sysname),
|
|
|
|
LINUX_KERN_OSTYPE, CTL_EOL);
|
2008-11-19 21:35:57 +03:00
|
|
|
sysctl_createv(&linux32_clog2, 0, &node, NULL,
|
2006-09-05 21:12:19 +04:00
|
|
|
CTLFLAG_PERMANENT,
|
|
|
|
CTLTYPE_STRING, "osrelease", NULL,
|
|
|
|
NULL, 0, linux32_release, sizeof(linux32_release),
|
|
|
|
LINUX_KERN_OSRELEASE, CTL_EOL);
|
2008-11-19 21:35:57 +03:00
|
|
|
sysctl_createv(&linux32_clog2, 0, &node, NULL,
|
2006-09-05 21:12:19 +04:00
|
|
|
CTLFLAG_PERMANENT,
|
|
|
|
CTLTYPE_STRING, "version", NULL,
|
|
|
|
NULL, 0, linux32_version, sizeof(linux32_version),
|
|
|
|
LINUX_KERN_VERSION, CTL_EOL);
|
|
|
|
|
|
|
|
linux32_sysctl_root.sysctl_flags &= ~CTLFLAG_READWRITE;
|
|
|
|
}
|
2006-02-09 22:18:56 +03:00
|
|
|
|
|
|
|
int
|
2007-12-21 02:02:38 +03:00
|
|
|
linux32_sys___sysctl(struct lwp *l, const struct linux32_sys___sysctl_args *uap, register_t *retval)
|
2006-02-09 22:18:56 +03:00
|
|
|
{
|
2007-12-21 02:02:38 +03:00
|
|
|
/* {
|
2006-02-09 22:18:56 +03:00
|
|
|
syscallarg(linux32___sysctlp_t) lsp;
|
2007-12-21 02:02:38 +03:00
|
|
|
} */
|
2006-02-09 22:18:56 +03:00
|
|
|
struct linux32_sysctl ls32;
|
2006-09-05 21:12:19 +04:00
|
|
|
int name[CTL_MAXNAME];
|
|
|
|
size_t savelen;
|
|
|
|
netbsd32_size_t oldlen32;
|
|
|
|
size_t oldlen;
|
2006-02-09 22:18:56 +03:00
|
|
|
int error;
|
|
|
|
|
2006-09-05 21:12:19 +04:00
|
|
|
/*
|
|
|
|
* Read sysctl arguments
|
|
|
|
*/
|
2007-03-19 00:38:32 +03:00
|
|
|
if ((error = copyin(SCARG_P32(uap, lsp), &ls32, sizeof(ls32))) != 0)
|
2006-02-09 22:18:56 +03:00
|
|
|
return error;
|
|
|
|
|
2006-09-05 21:12:19 +04:00
|
|
|
/*
|
|
|
|
* Read oldlen
|
|
|
|
*/
|
|
|
|
if (NETBSD32PTR64(ls32.oldlenp) != NULL) {
|
|
|
|
if ((error = copyin(NETBSD32PTR64(ls32.oldlenp),
|
|
|
|
&oldlen32, sizeof(oldlen32))) != 0)
|
|
|
|
return error;
|
|
|
|
} else {
|
|
|
|
oldlen32 = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
savelen = (size_t)oldlen32;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sanity check nlen
|
|
|
|
*/
|
|
|
|
if ((ls32.nlen > CTL_MAXNAME) || (ls32.nlen < 1))
|
2009-01-05 12:33:19 +03:00
|
|
|
return ENOTDIR;
|
2006-09-05 21:12:19 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Read the sysctl name
|
|
|
|
*/
|
|
|
|
if ((error = copyin(NETBSD32PTR64(ls32.name), &name,
|
|
|
|
ls32.nlen * sizeof(int))) != 0)
|
|
|
|
return error;
|
2006-02-09 22:18:56 +03:00
|
|
|
|
2007-08-15 16:07:23 +04:00
|
|
|
ktrmib(name, ls32.nlen);
|
2006-09-05 21:12:19 +04:00
|
|
|
/*
|
|
|
|
* First try linux32 tree, then linux tree
|
|
|
|
*/
|
|
|
|
oldlen = (size_t)oldlen32;
|
2008-01-07 19:12:52 +03:00
|
|
|
sysctl_lock(NETBSD32PTR64(ls32.newval) != NULL);
|
2006-09-05 21:12:19 +04:00
|
|
|
error = sysctl_dispatch(name, ls32.nlen,
|
|
|
|
NETBSD32PTR64(ls32.oldval), &oldlen,
|
|
|
|
NETBSD32PTR64(ls32.newval), ls32.newlen,
|
|
|
|
name, l, &linux32_sysctl_root);
|
|
|
|
oldlen32 = (netbsd32_size_t)oldlen;
|
2008-01-07 19:12:52 +03:00
|
|
|
sysctl_unlock();
|
2006-02-09 22:18:56 +03:00
|
|
|
|
2006-09-05 21:12:19 +04:00
|
|
|
/*
|
|
|
|
* Check for oldlen overflow (not likely, but who knows...)
|
|
|
|
*/
|
|
|
|
if (oldlen != oldlen32) {
|
|
|
|
#ifdef DEBUG_LINUX
|
|
|
|
printf("%s: oldlen32 = %d, oldlen = %ld\n",
|
|
|
|
__func__, oldlen32, oldlen);
|
|
|
|
#endif
|
|
|
|
return EINVAL;
|
|
|
|
}
|
2006-02-09 22:18:56 +03:00
|
|
|
|
2006-09-05 21:12:19 +04:00
|
|
|
/*
|
|
|
|
* set caller's oldlen, even if we got an error
|
|
|
|
*/
|
|
|
|
if (NETBSD32PTR64(ls32.oldlenp)) {
|
|
|
|
int nerror;
|
2006-02-09 22:18:56 +03:00
|
|
|
|
2006-09-05 21:12:19 +04:00
|
|
|
nerror = copyout(&oldlen32,
|
|
|
|
NETBSD32PTR64(ls32.oldlenp), sizeof(oldlen32));
|
2006-02-09 22:18:56 +03:00
|
|
|
|
2006-09-05 21:12:19 +04:00
|
|
|
if (error == 0)
|
|
|
|
error = nerror;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* oldlen was too short
|
|
|
|
*/
|
|
|
|
if ((error == 0) &&
|
|
|
|
(NETBSD32PTR64(ls32.oldval) != NULL) &&
|
|
|
|
(savelen < oldlen32))
|
|
|
|
error = ENOMEM;
|
2006-02-09 22:18:56 +03:00
|
|
|
|
2006-09-05 21:12:19 +04:00
|
|
|
return error;
|
2006-02-09 22:18:56 +03:00
|
|
|
}
|