xref: /freebsd/sys/kern/kern_mib.c (revision bfdcb3bcba3a0364301c4c3dc7820ef1f689e8ea)
145ec3b38SPoul-Henning Kamp /*-
245ec3b38SPoul-Henning Kamp  * Copyright (c) 1982, 1986, 1989, 1993
345ec3b38SPoul-Henning Kamp  *	The Regents of the University of California.  All rights reserved.
445ec3b38SPoul-Henning Kamp  *
545ec3b38SPoul-Henning Kamp  * This code is derived from software contributed to Berkeley by
645ec3b38SPoul-Henning Kamp  * Mike Karels at Berkeley Software Design, Inc.
745ec3b38SPoul-Henning Kamp  *
845ec3b38SPoul-Henning Kamp  * Quite extensively rewritten by Poul-Henning Kamp of the FreeBSD
945ec3b38SPoul-Henning Kamp  * project, to make these variables more userfriendly.
1045ec3b38SPoul-Henning Kamp  *
1145ec3b38SPoul-Henning Kamp  * Redistribution and use in source and binary forms, with or without
1245ec3b38SPoul-Henning Kamp  * modification, are permitted provided that the following conditions
1345ec3b38SPoul-Henning Kamp  * are met:
1445ec3b38SPoul-Henning Kamp  * 1. Redistributions of source code must retain the above copyright
1545ec3b38SPoul-Henning Kamp  *    notice, this list of conditions and the following disclaimer.
1645ec3b38SPoul-Henning Kamp  * 2. Redistributions in binary form must reproduce the above copyright
1745ec3b38SPoul-Henning Kamp  *    notice, this list of conditions and the following disclaimer in the
1845ec3b38SPoul-Henning Kamp  *    documentation and/or other materials provided with the distribution.
1945ec3b38SPoul-Henning Kamp  * 4. Neither the name of the University nor the names of its contributors
2045ec3b38SPoul-Henning Kamp  *    may be used to endorse or promote products derived from this software
2145ec3b38SPoul-Henning Kamp  *    without specific prior written permission.
2245ec3b38SPoul-Henning Kamp  *
2345ec3b38SPoul-Henning Kamp  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2445ec3b38SPoul-Henning Kamp  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2545ec3b38SPoul-Henning Kamp  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2645ec3b38SPoul-Henning Kamp  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2745ec3b38SPoul-Henning Kamp  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2845ec3b38SPoul-Henning Kamp  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2945ec3b38SPoul-Henning Kamp  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3045ec3b38SPoul-Henning Kamp  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3145ec3b38SPoul-Henning Kamp  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3245ec3b38SPoul-Henning Kamp  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3345ec3b38SPoul-Henning Kamp  * SUCH DAMAGE.
3445ec3b38SPoul-Henning Kamp  *
3545ec3b38SPoul-Henning Kamp  *	@(#)kern_sysctl.c	8.4 (Berkeley) 4/14/94
3645ec3b38SPoul-Henning Kamp  */
3745ec3b38SPoul-Henning Kamp 
38677b542eSDavid E. O'Brien #include <sys/cdefs.h>
39677b542eSDavid E. O'Brien __FBSDID("$FreeBSD$");
40677b542eSDavid E. O'Brien 
412c179010SJohn Baldwin #include "opt_compat.h"
42eacb362fSRobert Watson #include "opt_posix.h"
435f9974aeSWojciech A. Koszek #include "opt_config.h"
44c175d222SRobert Watson 
4545ec3b38SPoul-Henning Kamp #include <sys/param.h>
4645ec3b38SPoul-Henning Kamp #include <sys/kernel.h>
47744b947eSWojciech A. Koszek #include <sys/sbuf.h>
4845ec3b38SPoul-Henning Kamp #include <sys/systm.h>
4945ec3b38SPoul-Henning Kamp #include <sys/sysctl.h>
5045ec3b38SPoul-Henning Kamp #include <sys/proc.h>
5101137630SRobert Watson #include <sys/lock.h>
5201137630SRobert Watson #include <sys/mutex.h>
5375c13541SPoul-Henning Kamp #include <sys/jail.h>
546caa8a15SJohn Baldwin #include <sys/smp.h>
550304c731SJamie Gritton #include <sys/sx.h>
56eeea998cSMike Barcroft #include <sys/unistd.h>
57662f9a69SKATO Takenori 
5845ec3b38SPoul-Henning Kamp SYSCTL_NODE(, 0,	  sysctl, CTLFLAG_RW, 0,
5945ec3b38SPoul-Henning Kamp 	"Sysctl internal magic");
60ff66f6a4SRobert Watson SYSCTL_NODE(, CTL_KERN,	  kern,   CTLFLAG_RW|CTLFLAG_CAPRD, 0,
6145ec3b38SPoul-Henning Kamp 	"High kernel, proc, limits &c");
6245ec3b38SPoul-Henning Kamp SYSCTL_NODE(, CTL_VM,	  vm,     CTLFLAG_RW, 0,
6345ec3b38SPoul-Henning Kamp 	"Virtual memory");
644a8b9660SBruce Evans SYSCTL_NODE(, CTL_VFS,	  vfs,     CTLFLAG_RW, 0,
6545ec3b38SPoul-Henning Kamp 	"File system");
6645ec3b38SPoul-Henning Kamp SYSCTL_NODE(, CTL_NET,	  net,    CTLFLAG_RW, 0,
6745ec3b38SPoul-Henning Kamp 	"Network, (see socket.h)");
6845ec3b38SPoul-Henning Kamp SYSCTL_NODE(, CTL_DEBUG,  debug,  CTLFLAG_RW, 0,
6945ec3b38SPoul-Henning Kamp 	"Debugging");
706f13bfc2SPoul-Henning Kamp SYSCTL_NODE(_debug, OID_AUTO,  sizeof,  CTLFLAG_RW, 0,
716f13bfc2SPoul-Henning Kamp 	"Sizeof various things");
7245ec3b38SPoul-Henning Kamp SYSCTL_NODE(, CTL_HW,	  hw,     CTLFLAG_RW, 0,
7345ec3b38SPoul-Henning Kamp 	"hardware");
7445ec3b38SPoul-Henning Kamp SYSCTL_NODE(, CTL_MACHDEP, machdep, CTLFLAG_RW, 0,
7545ec3b38SPoul-Henning Kamp 	"machine dependent");
7645ec3b38SPoul-Henning Kamp SYSCTL_NODE(, CTL_USER,	  user,   CTLFLAG_RW, 0,
7745ec3b38SPoul-Henning Kamp 	"user-level");
788a6472b7SPeter Dufault SYSCTL_NODE(, CTL_P1003_1B,  p1003_1b,   CTLFLAG_RW, 0,
798a6472b7SPeter Dufault 	"p1003_1b, (see p1003_1b.h)");
80644d85f4SPeter Dufault 
81c6dfea0eSMarcel Moolenaar SYSCTL_NODE(, OID_AUTO,  compat, CTLFLAG_RW, 0,
82c6dfea0eSMarcel Moolenaar 	"Compatibility code");
83d0615c64SAndrew R. Reiter SYSCTL_NODE(, OID_AUTO, security, CTLFLAG_RW, 0,
84d0615c64SAndrew R. Reiter      	"Security");
85eacb362fSRobert Watson #ifdef REGRESSION
86eacb362fSRobert Watson SYSCTL_NODE(, OID_AUTO, regression, CTLFLAG_RW, 0,
87eacb362fSRobert Watson      "Regression test MIB");
88eacb362fSRobert Watson #endif
89c6dfea0eSMarcel Moolenaar 
90f3b86a5fSEd Schouten SYSCTL_STRING(_kern, OID_AUTO, ident, CTLFLAG_RD|CTLFLAG_MPSAFE,
91c02d7621SJuli Mallett     kern_ident, 0, "Kernel identifier");
92da1186f2SJuli Mallett 
93ff66f6a4SRobert Watson SYSCTL_STRING(_kern, KERN_OSRELEASE, osrelease, CTLFLAG_RD|CTLFLAG_MPSAFE|
94ff66f6a4SRobert Watson     CTLFLAG_CAPRD, osrelease, 0, "Operating system release");
9545ec3b38SPoul-Henning Kamp 
96ff66f6a4SRobert Watson SYSCTL_INT(_kern, KERN_OSREV, osrevision, CTLFLAG_RD|CTLFLAG_CAPRD,
973d177f46SBill Fumerola     0, BSD, "Operating system revision");
9845ec3b38SPoul-Henning Kamp 
99f3b86a5fSEd Schouten SYSCTL_STRING(_kern, KERN_VERSION, version, CTLFLAG_RD|CTLFLAG_MPSAFE,
1003d177f46SBill Fumerola     version, 0, "Kernel version");
10145ec3b38SPoul-Henning Kamp 
102*bfdcb3bcSAndriy Gapon SYSCTL_STRING(_kern, KERN_VERSION, compiler_version, CTLFLAG_RD|CTLFLAG_MPSAFE,
103*bfdcb3bcSAndriy Gapon     compiler_version, 0, "Version of compiler used to compile kernel");
104*bfdcb3bcSAndriy Gapon 
105ff66f6a4SRobert Watson SYSCTL_STRING(_kern, KERN_OSTYPE, ostype, CTLFLAG_RD|CTLFLAG_MPSAFE|
106ff66f6a4SRobert Watson     CTLFLAG_CAPRD, ostype, 0, "Operating system type");
10745ec3b38SPoul-Henning Kamp 
108effb9ebdSEivind Eklund /*
109effb9ebdSEivind Eklund  * NOTICE: The *userland* release date is available in
110effb9ebdSEivind Eklund  * /usr/include/osreldate.h
111effb9ebdSEivind Eklund  */
112ff66f6a4SRobert Watson SYSCTL_INT(_kern, KERN_OSRELDATE, osreldate, CTLFLAG_RD|CTLFLAG_CAPRD,
113effb9ebdSEivind Eklund     &osreldate, 0, "Kernel release date");
11445ec3b38SPoul-Henning Kamp 
115184dcdc7SMike Silbersack SYSCTL_INT(_kern, KERN_MAXPROC, maxproc, CTLFLAG_RDTUN,
1163d177f46SBill Fumerola     &maxproc, 0, "Maximum number of processes");
11745ec3b38SPoul-Henning Kamp 
1183d177f46SBill Fumerola SYSCTL_INT(_kern, KERN_MAXPROCPERUID, maxprocperuid, CTLFLAG_RW,
1193d177f46SBill Fumerola     &maxprocperuid, 0, "Maximum processes allowed per userid");
12045ec3b38SPoul-Henning Kamp 
121184dcdc7SMike Silbersack SYSCTL_INT(_kern, OID_AUTO, maxusers, CTLFLAG_RDTUN,
122ee342e1bSPeter Wemm     &maxusers, 0, "Hint for kernel tuning");
123ee342e1bSPeter Wemm 
124ff66f6a4SRobert Watson SYSCTL_INT(_kern, KERN_ARGMAX, argmax, CTLFLAG_RD|CTLFLAG_CAPRD,
1253d177f46SBill Fumerola     0, ARG_MAX, "Maximum bytes of argument to execve(2)");
12645ec3b38SPoul-Henning Kamp 
127ff66f6a4SRobert Watson SYSCTL_INT(_kern, KERN_POSIX1, posix1version, CTLFLAG_RD|CTLFLAG_CAPRD,
128eeea998cSMike Barcroft     0, _POSIX_VERSION, "Version of POSIX attempting to comply to");
12945ec3b38SPoul-Henning Kamp 
130ff66f6a4SRobert Watson SYSCTL_INT(_kern, KERN_NGROUPS, ngroups, CTLFLAG_RDTUN|CTLFLAG_CAPRD,
131412f9500SBrooks Davis     &ngroups_max, 0,
1325feedc25SBrooks Davis     "Maximum number of supplemental groups a user can belong to");
13345ec3b38SPoul-Henning Kamp 
134ff66f6a4SRobert Watson SYSCTL_INT(_kern, KERN_JOB_CONTROL, job_control, CTLFLAG_RD|CTLFLAG_CAPRD,
1353d177f46SBill Fumerola     0, 1, "Whether job control is available");
13645ec3b38SPoul-Henning Kamp 
13745ec3b38SPoul-Henning Kamp #ifdef _POSIX_SAVED_IDS
138ff66f6a4SRobert Watson SYSCTL_INT(_kern, KERN_SAVED_IDS, saved_ids, CTLFLAG_RD|CTLFLAG_CAPRD,
1393d177f46SBill Fumerola     0, 1, "Whether saved set-group/user ID is available");
14045ec3b38SPoul-Henning Kamp #else
141ff66f6a4SRobert Watson SYSCTL_INT(_kern, KERN_SAVED_IDS, saved_ids, CTLFLAG_RD|CTLFLAG_CAPRD,
1423d177f46SBill Fumerola     0, 0, "Whether saved set-group/user ID is available");
14345ec3b38SPoul-Henning Kamp #endif
14445ec3b38SPoul-Henning Kamp 
14545ec3b38SPoul-Henning Kamp char kernelname[MAXPATHLEN] = "/kernel";	/* XXX bloat */
14645ec3b38SPoul-Henning Kamp 
147d3bfafb4SAlfred Perlstein SYSCTL_STRING(_kern, KERN_BOOTFILE, bootfile, CTLFLAG_RW,
1483d177f46SBill Fumerola     kernelname, sizeof kernelname, "Name of kernel file booted");
14945ec3b38SPoul-Henning Kamp 
150ff66f6a4SRobert Watson SYSCTL_INT(_hw, HW_NCPU, ncpu, CTLFLAG_RD|CTLFLAG_CAPRD,
1513d177f46SBill Fumerola     &mp_ncpus, 0, "Number of active CPUs");
15245ec3b38SPoul-Henning Kamp 
153ff66f6a4SRobert Watson SYSCTL_INT(_hw, HW_BYTEORDER, byteorder, CTLFLAG_RD|CTLFLAG_CAPRD,
1543d177f46SBill Fumerola     0, BYTE_ORDER, "System byte order");
15545ec3b38SPoul-Henning Kamp 
156ff66f6a4SRobert Watson SYSCTL_INT(_hw, HW_PAGESIZE, pagesize, CTLFLAG_RD|CTLFLAG_CAPRD,
1573d177f46SBill Fumerola     0, PAGE_SIZE, "System memory page size");
15845ec3b38SPoul-Henning Kamp 
1590fca57b8SThomas Moestl static int
160ee9f4661SAlexander Kabaev sysctl_kern_arnd(SYSCTL_HANDLER_ARGS)
161ee9f4661SAlexander Kabaev {
162370f990dSAntoine Brodin 	char buf[256];
163370f990dSAntoine Brodin 	size_t len;
164ee9f4661SAlexander Kabaev 
165370f990dSAntoine Brodin 	len = req->oldlen;
166370f990dSAntoine Brodin 	if (len > sizeof(buf))
167370f990dSAntoine Brodin 		len = sizeof(buf);
168370f990dSAntoine Brodin 	arc4rand(buf, len, 0);
169370f990dSAntoine Brodin 	return (SYSCTL_OUT(req, buf, len));
170ee9f4661SAlexander Kabaev }
171ee9f4661SAlexander Kabaev 
172f3b86a5fSEd Schouten SYSCTL_PROC(_kern, KERN_ARND, arandom,
173ff66f6a4SRobert Watson     CTLTYPE_OPAQUE | CTLFLAG_RD | CTLFLAG_MPSAFE | CTLFLAG_CAPRD, NULL, 0,
174f3b86a5fSEd Schouten     sysctl_kern_arnd, "", "arc4rand");
175ee9f4661SAlexander Kabaev 
176ee9f4661SAlexander Kabaev static int
1770fca57b8SThomas Moestl sysctl_hw_physmem(SYSCTL_HANDLER_ARGS)
1780fca57b8SThomas Moestl {
1790fca57b8SThomas Moestl 	u_long val;
1800fca57b8SThomas Moestl 
1810fca57b8SThomas Moestl 	val = ctob(physmem);
1820fca57b8SThomas Moestl 	return (sysctl_handle_long(oidp, &val, 0, req));
1830fca57b8SThomas Moestl }
1840fca57b8SThomas Moestl 
1850fca57b8SThomas Moestl SYSCTL_PROC(_hw, HW_PHYSMEM, physmem, CTLTYPE_ULONG | CTLFLAG_RD,
1860fca57b8SThomas Moestl 	0, 0, sysctl_hw_physmem, "LU", "");
1870fca57b8SThomas Moestl 
1880fca57b8SThomas Moestl static int
189a0915044SWes Peters sysctl_hw_realmem(SYSCTL_HANDLER_ARGS)
190a0915044SWes Peters {
191a0915044SWes Peters 	u_long val;
192a0915044SWes Peters 	val = ctob(realmem);
193a0915044SWes Peters 	return (sysctl_handle_long(oidp, &val, 0, req));
194a0915044SWes Peters }
195a0915044SWes Peters SYSCTL_PROC(_hw, HW_REALMEM, realmem, CTLTYPE_ULONG | CTLFLAG_RD,
196a0915044SWes Peters 	0, 0, sysctl_hw_realmem, "LU", "");
197a0915044SWes Peters static int
1980fca57b8SThomas Moestl sysctl_hw_usermem(SYSCTL_HANDLER_ARGS)
1990fca57b8SThomas Moestl {
2000fca57b8SThomas Moestl 	u_long val;
2010fca57b8SThomas Moestl 
2022feb50bfSAttilio Rao 	val = ctob(physmem - cnt.v_wire_count);
2030fca57b8SThomas Moestl 	return (sysctl_handle_long(oidp, &val, 0, req));
2040fca57b8SThomas Moestl }
2050fca57b8SThomas Moestl 
2060fca57b8SThomas Moestl SYSCTL_PROC(_hw, HW_USERMEM, usermem, CTLTYPE_ULONG | CTLFLAG_RD,
2070fca57b8SThomas Moestl 	0, 0, sysctl_hw_usermem, "LU", "");
2080fca57b8SThomas Moestl 
209fbbb13f9SMatthew D Fleming SYSCTL_LONG(_hw, OID_AUTO, availpages, CTLFLAG_RD, &physmem, 0, "");
2100fca57b8SThomas Moestl 
211fe105d45SAlan Cox u_long pagesizes[MAXPAGESIZES] = { PAGE_SIZE };
212fe105d45SAlan Cox 
213fe105d45SAlan Cox static int
214fe105d45SAlan Cox sysctl_hw_pagesizes(SYSCTL_HANDLER_ARGS)
215fe105d45SAlan Cox {
216fe105d45SAlan Cox 	int error;
217fe105d45SAlan Cox #ifdef SCTL_MASK32
218fe105d45SAlan Cox 	int i;
219fe105d45SAlan Cox 	uint32_t pagesizes32[MAXPAGESIZES];
220fe105d45SAlan Cox 
221fe105d45SAlan Cox 	if (req->flags & SCTL_MASK32) {
222fe105d45SAlan Cox 		/*
223fe105d45SAlan Cox 		 * Recreate the "pagesizes" array with 32-bit elements.  Truncate
224fe105d45SAlan Cox 		 * any page size greater than UINT32_MAX to zero.
225fe105d45SAlan Cox 		 */
226fe105d45SAlan Cox 		for (i = 0; i < MAXPAGESIZES; i++)
227fe105d45SAlan Cox 			pagesizes32[i] = (uint32_t)pagesizes[i];
228fe105d45SAlan Cox 
229fe105d45SAlan Cox 		error = SYSCTL_OUT(req, pagesizes32, sizeof(pagesizes32));
230fe105d45SAlan Cox 	} else
231fe105d45SAlan Cox #endif
232fe105d45SAlan Cox 		error = SYSCTL_OUT(req, pagesizes, sizeof(pagesizes));
233fe105d45SAlan Cox 	return (error);
234fe105d45SAlan Cox }
235fe105d45SAlan Cox SYSCTL_PROC(_hw, OID_AUTO, pagesizes, CTLTYPE_ULONG | CTLFLAG_RD,
236fe105d45SAlan Cox     NULL, 0, sysctl_hw_pagesizes, "LU", "Supported page sizes");
237fe105d45SAlan Cox 
23887d45a03SKonstantin Belousov #ifdef SCTL_MASK32
23987d45a03SKonstantin Belousov int adaptive_machine_arch = 1;
24087d45a03SKonstantin Belousov SYSCTL_INT(_debug, OID_AUTO, adaptive_machine_arch, CTLFLAG_RW,
24187d45a03SKonstantin Belousov     &adaptive_machine_arch, 1,
24287d45a03SKonstantin Belousov     "Adapt reported machine architecture to the ABI of the binary");
24387d45a03SKonstantin Belousov #endif
24487d45a03SKonstantin Belousov 
24587d45a03SKonstantin Belousov static int
24687d45a03SKonstantin Belousov sysctl_hw_machine_arch(SYSCTL_HANDLER_ARGS)
24787d45a03SKonstantin Belousov {
24887d45a03SKonstantin Belousov 	int error;
24987d45a03SKonstantin Belousov 	static const char machine_arch[] = MACHINE_ARCH;
25087d45a03SKonstantin Belousov #ifdef SCTL_MASK32
25187d45a03SKonstantin Belousov 	static const char machine_arch32[] = MACHINE_ARCH32;
25287d45a03SKonstantin Belousov 
25387d45a03SKonstantin Belousov 	if ((req->flags & SCTL_MASK32) != 0 && adaptive_machine_arch)
25487d45a03SKonstantin Belousov 		error = SYSCTL_OUT(req, machine_arch32, sizeof(machine_arch32));
25587d45a03SKonstantin Belousov 	else
25687d45a03SKonstantin Belousov #endif
25787d45a03SKonstantin Belousov 		error = SYSCTL_OUT(req, machine_arch, sizeof(machine_arch));
25887d45a03SKonstantin Belousov 	return (error);
25987d45a03SKonstantin Belousov 
26087d45a03SKonstantin Belousov }
26187d45a03SKonstantin Belousov SYSCTL_PROC(_hw, HW_MACHINE_ARCH, machine_arch, CTLTYPE_STRING | CTLFLAG_RD,
26287d45a03SKonstantin Belousov     NULL, 0, sysctl_hw_machine_arch, "A", "System architecture");
263664f8517SKATO Takenori 
26475c13541SPoul-Henning Kamp static int
26582d9ae4eSPoul-Henning Kamp sysctl_hostname(SYSCTL_HANDLER_ARGS)
26675c13541SPoul-Henning Kamp {
26776ca6f88SJamie Gritton 	struct prison *pr, *cpr;
26876ca6f88SJamie Gritton 	size_t pr_offset;
26976ca6f88SJamie Gritton 	char tmpname[MAXHOSTNAMELEN];
27076ca6f88SJamie Gritton 	int descend, error, len;
27176ca6f88SJamie Gritton 
27276ca6f88SJamie Gritton 	/*
27376ca6f88SJamie Gritton 	 * This function can set: hostname domainname hostuuid.
27476ca6f88SJamie Gritton 	 * Keep that in mind when comments say "hostname".
27576ca6f88SJamie Gritton 	 */
27676ca6f88SJamie Gritton 	pr_offset = (size_t)arg1;
27776ca6f88SJamie Gritton 	len = arg2;
27876ca6f88SJamie Gritton 	KASSERT(len <= sizeof(tmpname),
27976ca6f88SJamie Gritton 	    ("length %d too long for %s", len, __func__));
28075c13541SPoul-Henning Kamp 
281a854ed98SJohn Baldwin 	pr = req->td->td_ucred->cr_prison;
2820304c731SJamie Gritton 	if (!(pr->pr_allow & PR_ALLOW_SET_HOSTNAME) && req->newptr)
2836c144e75SRobert Watson 		return (EPERM);
28401137630SRobert Watson 	/*
28576ca6f88SJamie Gritton 	 * Make a local copy of hostname to get/set so we don't have to hold
28676ca6f88SJamie Gritton 	 * the jail mutex during the sysctl copyin/copyout activities.
28701137630SRobert Watson 	 */
28801137630SRobert Watson 	mtx_lock(&pr->pr_mtx);
28976ca6f88SJamie Gritton 	bcopy((char *)pr + pr_offset, tmpname, len);
29001137630SRobert Watson 	mtx_unlock(&pr->pr_mtx);
29101137630SRobert Watson 
29276ca6f88SJamie Gritton 	error = sysctl_handle_string(oidp, tmpname, len, req);
29301137630SRobert Watson 
29401137630SRobert Watson 	if (req->newptr != NULL && error == 0) {
29501137630SRobert Watson 		/*
29676ca6f88SJamie Gritton 		 * Copy the locally set hostname to all jails that share
29776ca6f88SJamie Gritton 		 * this host info.
29801137630SRobert Watson 		 */
29976ca6f88SJamie Gritton 		sx_slock(&allprison_lock);
30076ca6f88SJamie Gritton 		while (!(pr->pr_flags & PR_HOST))
30176ca6f88SJamie Gritton 			pr = pr->pr_parent;
30201137630SRobert Watson 		mtx_lock(&pr->pr_mtx);
30376ca6f88SJamie Gritton 		bcopy(tmpname, (char *)pr + pr_offset, len);
30476ca6f88SJamie Gritton 		FOREACH_PRISON_DESCENDANT_LOCKED(pr, cpr, descend)
30576ca6f88SJamie Gritton 			if (cpr->pr_flags & PR_HOST)
30676ca6f88SJamie Gritton 				descend = 0;
30776ca6f88SJamie Gritton 			else
30876ca6f88SJamie Gritton 				bcopy(tmpname, (char *)cpr + pr_offset, len);
30901137630SRobert Watson 		mtx_unlock(&pr->pr_mtx);
31076ca6f88SJamie Gritton 		sx_sunlock(&allprison_lock);
3114f7d1876SRobert Watson 	}
31275c13541SPoul-Henning Kamp 	return (error);
31375c13541SPoul-Henning Kamp }
31475c13541SPoul-Henning Kamp 
31575c13541SPoul-Henning Kamp SYSCTL_PROC(_kern, KERN_HOSTNAME, hostname,
316f3b86a5fSEd Schouten     CTLTYPE_STRING | CTLFLAG_RW | CTLFLAG_PRISON | CTLFLAG_MPSAFE,
317c1f19219SJamie Gritton     (void *)(offsetof(struct prison, pr_hostname)), MAXHOSTNAMELEN,
31876ca6f88SJamie Gritton     sysctl_hostname, "A", "Hostname");
31976ca6f88SJamie Gritton SYSCTL_PROC(_kern, KERN_NISDOMAINNAME, domainname,
32076ca6f88SJamie Gritton     CTLTYPE_STRING | CTLFLAG_RW | CTLFLAG_PRISON | CTLFLAG_MPSAFE,
321c1f19219SJamie Gritton     (void *)(offsetof(struct prison, pr_domainname)), MAXHOSTNAMELEN,
32276ca6f88SJamie Gritton     sysctl_hostname, "A", "Name of the current YP/NIS domain");
32376ca6f88SJamie Gritton SYSCTL_PROC(_kern, KERN_HOSTUUID, hostuuid,
32476ca6f88SJamie Gritton     CTLTYPE_STRING | CTLFLAG_RW | CTLFLAG_PRISON | CTLFLAG_MPSAFE,
325c1f19219SJamie Gritton     (void *)(offsetof(struct prison, pr_hostuuid)), HOSTUUIDLEN,
32676ca6f88SJamie Gritton     sysctl_hostname, "A", "Host UUID");
32745ec3b38SPoul-Henning Kamp 
328eacb362fSRobert Watson static int	regression_securelevel_nonmonotonic = 0;
329c175d222SRobert Watson 
3301e4b531bSRobert Watson #ifdef REGRESSION
331c175d222SRobert Watson SYSCTL_INT(_regression, OID_AUTO, securelevel_nonmonotonic, CTLFLAG_RW,
332c175d222SRobert Watson     &regression_securelevel_nonmonotonic, 0, "securelevel may be lowered");
333eacb362fSRobert Watson #endif
334c175d222SRobert Watson 
33545ec3b38SPoul-Henning Kamp static int
33682d9ae4eSPoul-Henning Kamp sysctl_kern_securelvl(SYSCTL_HANDLER_ARGS)
33745ec3b38SPoul-Henning Kamp {
3380304c731SJamie Gritton 	struct prison *pr, *cpr;
3390304c731SJamie Gritton 	int descend, error, level;
34045ec3b38SPoul-Henning Kamp 
341a854ed98SJohn Baldwin 	pr = req->td->td_ucred->cr_prison;
342d3c9fa04SRobert Watson 
3438a528812SRobert Watson 	/*
3440304c731SJamie Gritton 	 * Reading the securelevel is easy, since the current jail's level
3450304c731SJamie Gritton 	 * is known to be at least as secure as any higher levels.  Perform
3460304c731SJamie Gritton 	 * a lockless read since the securelevel is an integer.
3478a528812SRobert Watson 	 */
3480304c731SJamie Gritton 	level = pr->pr_securelevel;
34945ec3b38SPoul-Henning Kamp 	error = sysctl_handle_int(oidp, &level, 0, req);
35045ec3b38SPoul-Henning Kamp 	if (error || !req->newptr)
35145ec3b38SPoul-Henning Kamp 		return (error);
3520304c731SJamie Gritton 	/* Permit update only if the new securelevel exceeds the old. */
3530304c731SJamie Gritton 	sx_slock(&allprison_lock);
35401137630SRobert Watson 	mtx_lock(&pr->pr_mtx);
3551e4b531bSRobert Watson 	if (!regression_securelevel_nonmonotonic &&
3560304c731SJamie Gritton 	    level < pr->pr_securelevel) {
35701137630SRobert Watson 		mtx_unlock(&pr->pr_mtx);
3580304c731SJamie Gritton 		sx_sunlock(&allprison_lock);
3598a528812SRobert Watson 		return (EPERM);
36001137630SRobert Watson 	}
361d3c9fa04SRobert Watson 	pr->pr_securelevel = level;
3620304c731SJamie Gritton 	/*
3630304c731SJamie Gritton 	 * Set all child jails to be at least this level, but do not lower
3640304c731SJamie Gritton 	 * them (even if regression_securelevel_nonmonotonic).
3650304c731SJamie Gritton 	 */
3660304c731SJamie Gritton 	FOREACH_PRISON_DESCENDANT_LOCKED(pr, cpr, descend) {
3670304c731SJamie Gritton 		if (cpr->pr_securelevel < level)
3680304c731SJamie Gritton 			cpr->pr_securelevel = level;
3690304c731SJamie Gritton 	}
37001137630SRobert Watson 	mtx_unlock(&pr->pr_mtx);
3710304c731SJamie Gritton 	sx_sunlock(&allprison_lock);
37245ec3b38SPoul-Henning Kamp 	return (error);
37345ec3b38SPoul-Henning Kamp }
37445ec3b38SPoul-Henning Kamp 
3758a528812SRobert Watson SYSCTL_PROC(_kern, KERN_SECURELVL, securelevel,
3768a528812SRobert Watson     CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_PRISON, 0, 0, sysctl_kern_securelvl,
3778a528812SRobert Watson     "I", "Current secure level");
378e812e491SRobert Watson 
3795f9974aeSWojciech A. Koszek #ifdef INCLUDE_CONFIG_FILE
380744b947eSWojciech A. Koszek /* Actual kernel configuration options. */
381744b947eSWojciech A. Koszek extern char kernconfstring[];
382744b947eSWojciech A. Koszek 
383d06cadaeSAlfred Perlstein SYSCTL_STRING(_kern, OID_AUTO, conftxt, CTLFLAG_RD, kernconfstring, 0,
384d06cadaeSAlfred Perlstein     "Kernel configuration file");
3853627f737SWarner Losh #endif
386744b947eSWojciech A. Koszek 
3874f7d1876SRobert Watson static int
38876ca6f88SJamie Gritton sysctl_hostid(SYSCTL_HANDLER_ARGS)
3894f7d1876SRobert Watson {
39076ca6f88SJamie Gritton 	struct prison *pr, *cpr;
39176ca6f88SJamie Gritton 	u_long tmpid;
39276ca6f88SJamie Gritton 	int descend, error;
3934f7d1876SRobert Watson 
39476ca6f88SJamie Gritton 	/*
39576ca6f88SJamie Gritton 	 * Like sysctl_hostname, except it operates on a u_long
39676ca6f88SJamie Gritton 	 * instead of a string, and is used only for hostid.
39776ca6f88SJamie Gritton 	 */
39876ca6f88SJamie Gritton 	pr = req->td->td_ucred->cr_prison;
39976ca6f88SJamie Gritton 	if (!(pr->pr_allow & PR_ALLOW_SET_HOSTNAME) && req->newptr)
40076ca6f88SJamie Gritton 		return (EPERM);
40176ca6f88SJamie Gritton 	tmpid = pr->pr_hostid;
40276ca6f88SJamie Gritton 	error = sysctl_handle_long(oidp, &tmpid, 0, req);
40376ca6f88SJamie Gritton 
4044f7d1876SRobert Watson 	if (req->newptr != NULL && error == 0) {
40576ca6f88SJamie Gritton 		sx_slock(&allprison_lock);
40676ca6f88SJamie Gritton 		while (!(pr->pr_flags & PR_HOST))
40776ca6f88SJamie Gritton 			pr = pr->pr_parent;
40876ca6f88SJamie Gritton 		mtx_lock(&pr->pr_mtx);
40976ca6f88SJamie Gritton 		pr->pr_hostid = tmpid;
41076ca6f88SJamie Gritton 		FOREACH_PRISON_DESCENDANT_LOCKED(pr, cpr, descend)
41176ca6f88SJamie Gritton 			if (cpr->pr_flags & PR_HOST)
41276ca6f88SJamie Gritton 				descend = 0;
41376ca6f88SJamie Gritton 			else
41476ca6f88SJamie Gritton 				cpr->pr_hostid = tmpid;
41576ca6f88SJamie Gritton 		mtx_unlock(&pr->pr_mtx);
41676ca6f88SJamie Gritton 		sx_sunlock(&allprison_lock);
4174f7d1876SRobert Watson 	}
4184f7d1876SRobert Watson 	return (error);
4194f7d1876SRobert Watson }
4204f7d1876SRobert Watson 
42176ca6f88SJamie Gritton SYSCTL_PROC(_kern, KERN_HOSTID, hostid,
42276ca6f88SJamie Gritton     CTLTYPE_ULONG | CTLFLAG_RW | CTLFLAG_PRISON | CTLFLAG_MPSAFE,
42376ca6f88SJamie Gritton     NULL, 0, sysctl_hostid, "LU", "Host ID");
42445ec3b38SPoul-Henning Kamp 
4250deabe7eSJohn Baldwin SYSCTL_NODE(_kern, OID_AUTO, features, CTLFLAG_RD, 0, "Kernel Features");
4260deabe7eSJohn Baldwin 
4272c179010SJohn Baldwin #ifdef COMPAT_FREEBSD4
4282c179010SJohn Baldwin FEATURE(compat_freebsd4, "Compatible with FreeBSD 4");
4292c179010SJohn Baldwin #endif
4302c179010SJohn Baldwin 
4312c179010SJohn Baldwin #ifdef COMPAT_FREEBSD5
4322c179010SJohn Baldwin FEATURE(compat_freebsd5, "Compatible with FreeBSD 5");
4332c179010SJohn Baldwin #endif
4342c179010SJohn Baldwin 
4352c179010SJohn Baldwin #ifdef COMPAT_FREEBSD6
4362c179010SJohn Baldwin FEATURE(compat_freebsd6, "Compatible with FreeBSD 6");
4372c179010SJohn Baldwin #endif
4382c179010SJohn Baldwin 
4392c179010SJohn Baldwin #ifdef COMPAT_FREEBSD7
4402c179010SJohn Baldwin FEATURE(compat_freebsd7, "Compatible with FreeBSD 7");
4412c179010SJohn Baldwin #endif
4422c179010SJohn Baldwin 
44345ec3b38SPoul-Henning Kamp /*
44445ec3b38SPoul-Henning Kamp  * This is really cheating.  These actually live in the libc, something
44545ec3b38SPoul-Henning Kamp  * which I'm not quite sure is a good idea anyway, but in order for
44645ec3b38SPoul-Henning Kamp  * getnext and friends to actually work, we define dummies here.
447ff66f6a4SRobert Watson  *
448ff66f6a4SRobert Watson  * XXXRW: These probably should be CTLFLAG_CAPRD.
44945ec3b38SPoul-Henning Kamp  */
4503d177f46SBill Fumerola SYSCTL_STRING(_user, USER_CS_PATH, cs_path, CTLFLAG_RD,
4513d177f46SBill Fumerola     "", 0, "PATH that finds all the standard utilities");
4523d177f46SBill Fumerola SYSCTL_INT(_user, USER_BC_BASE_MAX, bc_base_max, CTLFLAG_RD,
4533d177f46SBill Fumerola     0, 0, "Max ibase/obase values in bc(1)");
4543d177f46SBill Fumerola SYSCTL_INT(_user, USER_BC_DIM_MAX, bc_dim_max, CTLFLAG_RD,
4553d177f46SBill Fumerola     0, 0, "Max array size in bc(1)");
4563d177f46SBill Fumerola SYSCTL_INT(_user, USER_BC_SCALE_MAX, bc_scale_max, CTLFLAG_RD,
4573d177f46SBill Fumerola     0, 0, "Max scale value in bc(1)");
4583d177f46SBill Fumerola SYSCTL_INT(_user, USER_BC_STRING_MAX, bc_string_max, CTLFLAG_RD,
4593d177f46SBill Fumerola     0, 0, "Max string length in bc(1)");
4603d177f46SBill Fumerola SYSCTL_INT(_user, USER_COLL_WEIGHTS_MAX, coll_weights_max, CTLFLAG_RD,
4613d177f46SBill Fumerola     0, 0, "Maximum number of weights assigned to an LC_COLLATE locale entry");
4627c1aacb5SBruce Evans SYSCTL_INT(_user, USER_EXPR_NEST_MAX, expr_nest_max, CTLFLAG_RD, 0, 0, "");
4633d177f46SBill Fumerola SYSCTL_INT(_user, USER_LINE_MAX, line_max, CTLFLAG_RD,
4643d177f46SBill Fumerola     0, 0, "Max length (bytes) of a text-processing utility's input line");
4653d177f46SBill Fumerola SYSCTL_INT(_user, USER_RE_DUP_MAX, re_dup_max, CTLFLAG_RD,
4663d177f46SBill Fumerola     0, 0, "Maximum number of repeats of a regexp permitted");
4673d177f46SBill Fumerola SYSCTL_INT(_user, USER_POSIX2_VERSION, posix2_version, CTLFLAG_RD,
4683d177f46SBill Fumerola     0, 0,
4693d177f46SBill Fumerola     "The version of POSIX 1003.2 with which the system attempts to comply");
4703d177f46SBill Fumerola SYSCTL_INT(_user, USER_POSIX2_C_BIND, posix2_c_bind, CTLFLAG_RD,
4713d177f46SBill Fumerola     0, 0, "Whether C development supports the C bindings option");
4723d177f46SBill Fumerola SYSCTL_INT(_user, USER_POSIX2_C_DEV, posix2_c_dev, CTLFLAG_RD,
4733d177f46SBill Fumerola     0, 0, "Whether system supports the C development utilities option");
4743d177f46SBill Fumerola SYSCTL_INT(_user, USER_POSIX2_CHAR_TERM, posix2_char_term, CTLFLAG_RD,
4753d177f46SBill Fumerola     0, 0, "");
4763d177f46SBill Fumerola SYSCTL_INT(_user, USER_POSIX2_FORT_DEV, posix2_fort_dev, CTLFLAG_RD,
4773d177f46SBill Fumerola     0, 0, "Whether system supports FORTRAN development utilities");
4783d177f46SBill Fumerola SYSCTL_INT(_user, USER_POSIX2_FORT_RUN, posix2_fort_run, CTLFLAG_RD,
4793d177f46SBill Fumerola     0, 0, "Whether system supports FORTRAN runtime utilities");
4803d177f46SBill Fumerola SYSCTL_INT(_user, USER_POSIX2_LOCALEDEF, posix2_localedef, CTLFLAG_RD,
4813d177f46SBill Fumerola     0, 0, "Whether system supports creation of locales");
4823d177f46SBill Fumerola SYSCTL_INT(_user, USER_POSIX2_SW_DEV, posix2_sw_dev, CTLFLAG_RD,
4833d177f46SBill Fumerola     0, 0, "Whether system supports software development utilities");
4843d177f46SBill Fumerola SYSCTL_INT(_user, USER_POSIX2_UPE, posix2_upe, CTLFLAG_RD,
4853d177f46SBill Fumerola     0, 0, "Whether system supports the user portability utilities");
4863d177f46SBill Fumerola SYSCTL_INT(_user, USER_STREAM_MAX, stream_max, CTLFLAG_RD,
4873d177f46SBill Fumerola     0, 0, "Min Maximum number of streams a process may have open at one time");
4883d177f46SBill Fumerola SYSCTL_INT(_user, USER_TZNAME_MAX, tzname_max, CTLFLAG_RD,
4893d177f46SBill Fumerola     0, 0, "Min Maximum number of types supported for timezone names");
4906f13bfc2SPoul-Henning Kamp 
4916f13bfc2SPoul-Henning Kamp #include <sys/vnode.h>
4926f13bfc2SPoul-Henning Kamp SYSCTL_INT(_debug_sizeof, OID_AUTO, vnode, CTLFLAG_RD,
4936f13bfc2SPoul-Henning Kamp     0, sizeof(struct vnode), "sizeof(struct vnode)");
4946f13bfc2SPoul-Henning Kamp 
4956f13bfc2SPoul-Henning Kamp SYSCTL_INT(_debug_sizeof, OID_AUTO, proc, CTLFLAG_RD,
4966f13bfc2SPoul-Henning Kamp     0, sizeof(struct proc), "sizeof(struct proc)");
497d7bf417dSPoul-Henning Kamp 
49802c6fc21SKonstantin Belousov static int
49902c6fc21SKonstantin Belousov sysctl_kern_pid_max(SYSCTL_HANDLER_ARGS)
50002c6fc21SKonstantin Belousov {
50102c6fc21SKonstantin Belousov 	int error, pm;
50202c6fc21SKonstantin Belousov 
50302c6fc21SKonstantin Belousov 	pm = pid_max;
50402c6fc21SKonstantin Belousov 	error = sysctl_handle_int(oidp, &pm, 0, req);
50502c6fc21SKonstantin Belousov 	if (error || !req->newptr)
50602c6fc21SKonstantin Belousov 		return (error);
50702c6fc21SKonstantin Belousov 	sx_xlock(&proctree_lock);
50802c6fc21SKonstantin Belousov 	sx_xlock(&allproc_lock);
5093fa615bcSKonstantin Belousov 
5103fa615bcSKonstantin Belousov 	/*
5113fa615bcSKonstantin Belousov 	 * Only permit the values less then PID_MAX.
5123fa615bcSKonstantin Belousov 	 * As a safety measure, do not allow to limit the pid_max too much.
5133fa615bcSKonstantin Belousov 	 */
5143fa615bcSKonstantin Belousov 	if (pm < 300 || pm > PID_MAX)
51502c6fc21SKonstantin Belousov 		error = EINVAL;
51602c6fc21SKonstantin Belousov 	else
51702c6fc21SKonstantin Belousov 		pid_max = pm;
51802c6fc21SKonstantin Belousov 	sx_xunlock(&allproc_lock);
51902c6fc21SKonstantin Belousov 	sx_xunlock(&proctree_lock);
52002c6fc21SKonstantin Belousov 	return (error);
52102c6fc21SKonstantin Belousov }
52202c6fc21SKonstantin Belousov SYSCTL_PROC(_kern, OID_AUTO, pid_max, CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_TUN |
52302c6fc21SKonstantin Belousov     CTLFLAG_MPSAFE, 0, 0, sysctl_kern_pid_max, "I",
52402c6fc21SKonstantin Belousov     "Maximum allowed pid");
52502c6fc21SKonstantin Belousov 
5269626b608SPoul-Henning Kamp #include <sys/bio.h>
5278c125869SPoul-Henning Kamp #include <sys/buf.h>
5288c125869SPoul-Henning Kamp SYSCTL_INT(_debug_sizeof, OID_AUTO, bio, CTLFLAG_RD,
5298c125869SPoul-Henning Kamp     0, sizeof(struct bio), "sizeof(struct bio)");
5308c125869SPoul-Henning Kamp SYSCTL_INT(_debug_sizeof, OID_AUTO, buf, CTLFLAG_RD,
5318c125869SPoul-Henning Kamp     0, sizeof(struct buf), "sizeof(struct buf)");
532d5a08a60SJake Burkholder 
533d5a08a60SJake Burkholder #include <sys/user.h>
534d5a08a60SJake Burkholder SYSCTL_INT(_debug_sizeof, OID_AUTO, kinfo_proc, CTLFLAG_RD,
535d5a08a60SJake Burkholder     0, sizeof(struct kinfo_proc), "sizeof(struct kinfo_proc)");
536a360a43dSJake Burkholder 
537e548a1d4SJake Burkholder /* XXX compatibility, remove for 6.0 */
538e548a1d4SJake Burkholder #include <sys/imgact.h>
539e548a1d4SJake Burkholder #include <sys/imgact_elf.h>
540e548a1d4SJake Burkholder SYSCTL_INT(_kern, OID_AUTO, fallback_elf_brand, CTLFLAG_RW,
541e548a1d4SJake Burkholder     &__elfN(fallback_brand), sizeof(__elfN(fallback_brand)),
542e548a1d4SJake Burkholder     "compatibility for kern.fallback_elf_brand");
543