Home | History | Annotate | Line # | Download | only in netbsd32
netbsd32_sysctl.c revision 1.35
      1 /*	$NetBSD: netbsd32_sysctl.c,v 1.35 2014/06/13 10:42:26 joerg Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 2003 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Andrew Brown.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. The name of the author may not be used to endorse or promote products
     19  *    derived from this software without specific prior written permission.
     20  *
     21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     26  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     27  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     28  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     29  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     31  * SUCH DAMAGE.
     32  */
     33 
     34 #include <sys/cdefs.h>
     35 __KERNEL_RCSID(0, "$NetBSD: netbsd32_sysctl.c,v 1.35 2014/06/13 10:42:26 joerg Exp $");
     36 
     37 #if defined(_KERNEL_OPT)
     38 #include "opt_ddb.h"
     39 #endif
     40 
     41 #include <sys/param.h>
     42 #include <sys/systm.h>
     43 #include <sys/kernel.h>
     44 #include <sys/mount.h>
     45 #include <sys/stat.h>
     46 #include <sys/time.h>
     47 #include <sys/vnode.h>
     48 #include <sys/syscallargs.h>
     49 #include <sys/proc.h>
     50 #include <sys/sysctl.h>
     51 #include <sys/dirent.h>
     52 #include <sys/ktrace.h>
     53 
     54 #include <uvm/uvm_extern.h>
     55 
     56 #include <compat/netbsd32/netbsd32.h>
     57 #include <compat/netbsd32/netbsd32_syscall.h>
     58 #include <compat/netbsd32/netbsd32_syscallargs.h>
     59 #include <compat/netbsd32/netbsd32_conv.h>
     60 #include <compat/netbsd32/netbsd32_sysctl.h>
     61 
     62 #if defined(DDB)
     63 #include <ddb/ddbvar.h>
     64 #endif
     65 
     66 struct sysctlnode netbsd32_sysctl_root = {
     67 	.sysctl_flags = SYSCTL_VERSION|CTLFLAG_ROOT|CTLTYPE_NODE,
     68 	.sysctl_num = 0,
     69 	.sysctl_name = "(netbsd32_root)",
     70 	.sysctl_size = sizeof(struct sysctlnode),
     71 };
     72 
     73 static struct sysctllog *netbsd32_clog;
     74 
     75 /*
     76  * sysctl helper routine for netbsd32's kern.boottime node
     77  */
     78 static int
     79 netbsd32_sysctl_kern_boottime(SYSCTLFN_ARGS)
     80 {
     81 	struct sysctlnode node;
     82 	struct netbsd32_timespec bt32;
     83 
     84 	netbsd32_from_timespec(&boottime, &bt32);
     85 
     86 	node = *rnode;
     87 	node.sysctl_data = &bt32;
     88 	return (sysctl_lookup(SYSCTLFN_CALL(&node)));
     89 }
     90 
     91 /*
     92  * sysctl helper routine for netbsd32's vm.loadavg node
     93  */
     94 static int
     95 netbsd32_sysctl_vm_loadavg(SYSCTLFN_ARGS)
     96 {
     97 	struct sysctlnode node;
     98 	struct netbsd32_loadavg av32;
     99 
    100 	netbsd32_from_loadavg(&av32, &averunnable);
    101 
    102 	node = *rnode;
    103 	node.sysctl_data = &av32;
    104 	return (sysctl_lookup(SYSCTLFN_CALL(&node)));
    105 }
    106 
    107 void
    108 netbsd32_sysctl_init(void)
    109 {
    110 	const struct sysctlnode *_root = &netbsd32_sysctl_root;
    111 	extern const char machine_arch32[];
    112 	extern const char machine32[];
    113 
    114 	sysctl_createv(&netbsd32_clog, 0, &_root, NULL,
    115 		       CTLFLAG_PERMANENT,
    116 		       CTLTYPE_NODE, "kern", NULL,
    117 		       NULL, 0, NULL, 0,
    118 		       CTL_KERN, CTL_EOL);
    119 	sysctl_createv(&netbsd32_clog, 0, &_root, NULL,
    120 		       CTLFLAG_PERMANENT,
    121 		       CTLTYPE_STRUCT, "boottime", NULL,
    122 		       netbsd32_sysctl_kern_boottime, 0, NULL,
    123 		       sizeof(struct netbsd32_timeval),
    124 		       CTL_KERN, KERN_BOOTTIME, CTL_EOL);
    125 
    126 	sysctl_createv(&netbsd32_clog, 0, &_root, NULL,
    127 		       CTLFLAG_PERMANENT,
    128 		       CTLTYPE_NODE, "vm", NULL,
    129 		       NULL, 0, NULL, 0,
    130 		       CTL_VM, CTL_EOL);
    131 	sysctl_createv(&netbsd32_clog, 0, &_root, NULL,
    132 		       CTLFLAG_PERMANENT,
    133 		       CTLTYPE_STRUCT, "loadavg", NULL,
    134 		       netbsd32_sysctl_vm_loadavg, 0, NULL,
    135 		       sizeof(struct netbsd32_loadavg),
    136 		       CTL_VM, VM_LOADAVG, CTL_EOL);
    137 
    138 	sysctl_createv(&netbsd32_clog, 0, &_root, NULL,
    139 		       CTLFLAG_PERMANENT,
    140 		       CTLTYPE_NODE, "hw", NULL,
    141 		       NULL, 0, NULL, 0,
    142 		       CTL_HW, CTL_EOL);
    143 	sysctl_createv(&netbsd32_clog, 0, &_root, NULL,
    144 		       CTLFLAG_PERMANENT|CTLFLAG_IMMEDIATE,
    145 		       CTLTYPE_INT, "alignbytes", NULL,
    146 		       NULL, ALIGNBYTES32, NULL, 0,
    147 		       CTL_HW, HW_ALIGNBYTES, CTL_EOL);
    148 	sysctl_createv(&netbsd32_clog, 0, &_root, NULL,
    149 		       CTLFLAG_PERMANENT,
    150 		       CTLTYPE_STRING, "machine", NULL,
    151 		       NULL, 0, __UNCONST(&machine32), 0,
    152 		       CTL_HW, HW_MACHINE, CTL_EOL);
    153 	sysctl_createv(&netbsd32_clog, 0, &_root, NULL,
    154 		       CTLFLAG_PERMANENT,
    155 		       CTLTYPE_STRING, "machine_arch", NULL,
    156 		       NULL, 0, __UNCONST(&machine_arch32), 0,
    157 		       CTL_HW, HW_MACHINE_ARCH, CTL_EOL);
    158 }
    159 
    160 void
    161 netbsd32_sysctl_fini(void)
    162 {
    163 
    164 	sysctl_teardown(&netbsd32_clog);
    165 	sysctl_free(&netbsd32_sysctl_root);
    166 }
    167 
    168 int
    169 netbsd32___sysctl(struct lwp *l, const struct netbsd32___sysctl_args *uap, register_t *retval)
    170 {
    171 	/* {
    172 		syscallarg(netbsd32_intp) name;
    173 		syscallarg(u_int) namelen;
    174 		syscallarg(netbsd32_voidp) old;
    175 		syscallarg(netbsd32_size_tp) oldlenp;
    176 		syscallarg(netbsd32_voidp) new;
    177 		syscallarg(netbsd32_size_t) newlen;
    178 	} */
    179 	const struct sysctlnode *pnode;
    180 	netbsd32_size_t netbsd32_oldlen;
    181 	size_t oldlen, *oldlenp, savelen;
    182 	int name[CTL_MAXNAME], error, nerror, *namep;
    183 	void *newp, *oldp;
    184 
    185 	/*
    186 	 * get and convert 32 bit size_t to native size_t
    187 	 */
    188 	namep = SCARG_P32(uap, name);
    189 	oldp = SCARG_P32(uap, oldv);
    190 	newp = SCARG_P32(uap, newv);
    191 	oldlenp = SCARG_P32(uap, oldlenp);
    192 	oldlen = 0;
    193 	if (oldlenp != NULL) {
    194 		error = copyin(oldlenp, &netbsd32_oldlen,
    195 			       sizeof(netbsd32_oldlen));
    196 		if (error)
    197 			return (error);
    198 		oldlen = netbsd32_oldlen;
    199 	}
    200 	savelen = oldlen;
    201 
    202 	/*
    203 	 * retrieve name and see if we need to dispatch this query to
    204 	 * the shadow tree.  if we find it in the shadow tree,
    205 	 * dispatch to there, otherwise NULL means use the built-in
    206 	 * default main tree.
    207 	 */
    208 	if (SCARG(uap, namelen) > CTL_MAXNAME || SCARG(uap, namelen) < 1)
    209 		return (EINVAL);
    210 	error = copyin(namep, &name[0], SCARG(uap, namelen) * sizeof(int));
    211         if (error)
    212                 return (error);
    213 
    214 	ktrmib(name, SCARG(uap, namelen));
    215 
    216 	sysctl_lock(newp != NULL);
    217 	pnode = &netbsd32_sysctl_root;
    218 	error = sysctl_locate(l, &name[0], SCARG(uap, namelen), &pnode, NULL);
    219 	pnode = (error == 0) ? &netbsd32_sysctl_root : NULL;
    220 	error = sysctl_dispatch(&name[0], SCARG(uap, namelen),
    221 				oldp, &oldlen,
    222 				newp, SCARG(uap, newlen),
    223 				&name[0], l, pnode);
    224 	sysctl_unlock();
    225 
    226 	/*
    227 	 * reset caller's oldlen, even if we got an error
    228 	 */
    229 	if (oldlenp) {
    230 		netbsd32_oldlen = oldlen;
    231                 nerror = copyout(&netbsd32_oldlen, oldlenp,
    232 				 sizeof(netbsd32_oldlen));
    233                 if (error == 0)
    234                         error = nerror;
    235 	}
    236 
    237 	/*
    238 	 * if the only problem is that we weren't given enough space,
    239 	 * that's an ENOMEM error
    240 	 */
    241 	if (error == 0 && oldp != NULL && savelen < oldlen)
    242 		error = ENOMEM;
    243 
    244 	return (error);
    245 }
    246