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 * 3. All advertising materials mentioning features or use of this software 2045ec3b38SPoul-Henning Kamp * must display the following acknowledgement: 2145ec3b38SPoul-Henning Kamp * This product includes software developed by the University of 2245ec3b38SPoul-Henning Kamp * California, Berkeley and its contributors. 2345ec3b38SPoul-Henning Kamp * 4. Neither the name of the University nor the names of its contributors 2445ec3b38SPoul-Henning Kamp * may be used to endorse or promote products derived from this software 2545ec3b38SPoul-Henning Kamp * without specific prior written permission. 2645ec3b38SPoul-Henning Kamp * 2745ec3b38SPoul-Henning Kamp * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 2845ec3b38SPoul-Henning Kamp * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 2945ec3b38SPoul-Henning Kamp * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 3045ec3b38SPoul-Henning Kamp * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 3145ec3b38SPoul-Henning Kamp * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 3245ec3b38SPoul-Henning Kamp * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 3345ec3b38SPoul-Henning Kamp * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 3445ec3b38SPoul-Henning Kamp * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 3545ec3b38SPoul-Henning Kamp * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 3645ec3b38SPoul-Henning Kamp * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 3745ec3b38SPoul-Henning Kamp * SUCH DAMAGE. 3845ec3b38SPoul-Henning Kamp * 3945ec3b38SPoul-Henning Kamp * @(#)kern_sysctl.c 8.4 (Berkeley) 4/14/94 40c3aac50fSPeter Wemm * $FreeBSD$ 4145ec3b38SPoul-Henning Kamp */ 4245ec3b38SPoul-Henning Kamp 43eacb362fSRobert Watson #include "opt_posix.h" 44c175d222SRobert Watson 4545ec3b38SPoul-Henning Kamp #include <sys/param.h> 4645ec3b38SPoul-Henning Kamp #include <sys/kernel.h> 4745ec3b38SPoul-Henning Kamp #include <sys/systm.h> 4845ec3b38SPoul-Henning Kamp #include <sys/sysctl.h> 4945ec3b38SPoul-Henning Kamp #include <sys/proc.h> 5001137630SRobert Watson #include <sys/lock.h> 5101137630SRobert Watson #include <sys/mutex.h> 5275c13541SPoul-Henning Kamp #include <sys/jail.h> 536caa8a15SJohn Baldwin #include <sys/smp.h> 54662f9a69SKATO Takenori 5545ec3b38SPoul-Henning Kamp SYSCTL_NODE(, 0, sysctl, CTLFLAG_RW, 0, 5645ec3b38SPoul-Henning Kamp "Sysctl internal magic"); 5745ec3b38SPoul-Henning Kamp SYSCTL_NODE(, CTL_KERN, kern, CTLFLAG_RW, 0, 5845ec3b38SPoul-Henning Kamp "High kernel, proc, limits &c"); 5945ec3b38SPoul-Henning Kamp SYSCTL_NODE(, CTL_VM, vm, CTLFLAG_RW, 0, 6045ec3b38SPoul-Henning Kamp "Virtual memory"); 614a8b9660SBruce Evans SYSCTL_NODE(, CTL_VFS, vfs, CTLFLAG_RW, 0, 6245ec3b38SPoul-Henning Kamp "File system"); 6345ec3b38SPoul-Henning Kamp SYSCTL_NODE(, CTL_NET, net, CTLFLAG_RW, 0, 6445ec3b38SPoul-Henning Kamp "Network, (see socket.h)"); 6545ec3b38SPoul-Henning Kamp SYSCTL_NODE(, CTL_DEBUG, debug, CTLFLAG_RW, 0, 6645ec3b38SPoul-Henning Kamp "Debugging"); 676f13bfc2SPoul-Henning Kamp SYSCTL_NODE(_debug, OID_AUTO, sizeof, CTLFLAG_RW, 0, 686f13bfc2SPoul-Henning Kamp "Sizeof various things"); 6945ec3b38SPoul-Henning Kamp SYSCTL_NODE(, CTL_HW, hw, CTLFLAG_RW, 0, 7045ec3b38SPoul-Henning Kamp "hardware"); 7145ec3b38SPoul-Henning Kamp SYSCTL_NODE(, CTL_MACHDEP, machdep, CTLFLAG_RW, 0, 7245ec3b38SPoul-Henning Kamp "machine dependent"); 7345ec3b38SPoul-Henning Kamp SYSCTL_NODE(, CTL_USER, user, CTLFLAG_RW, 0, 7445ec3b38SPoul-Henning Kamp "user-level"); 758a6472b7SPeter Dufault SYSCTL_NODE(, CTL_P1003_1B, p1003_1b, CTLFLAG_RW, 0, 768a6472b7SPeter Dufault "p1003_1b, (see p1003_1b.h)"); 77644d85f4SPeter Dufault 78c6dfea0eSMarcel Moolenaar SYSCTL_NODE(, OID_AUTO, compat, CTLFLAG_RW, 0, 79c6dfea0eSMarcel Moolenaar "Compatibility code"); 80d0615c64SAndrew R. Reiter SYSCTL_NODE(, OID_AUTO, security, CTLFLAG_RW, 0, 81d0615c64SAndrew R. Reiter "Security"); 82eacb362fSRobert Watson #ifdef REGRESSION 83eacb362fSRobert Watson SYSCTL_NODE(, OID_AUTO, regression, CTLFLAG_RW, 0, 84eacb362fSRobert Watson "Regression test MIB"); 85eacb362fSRobert Watson #endif 86c6dfea0eSMarcel Moolenaar 873d177f46SBill Fumerola SYSCTL_STRING(_kern, KERN_OSRELEASE, osrelease, CTLFLAG_RD, 88af1408e3SLuigi Rizzo osrelease, 0, "Operating system release"); 8945ec3b38SPoul-Henning Kamp 903d177f46SBill Fumerola SYSCTL_INT(_kern, KERN_OSREV, osrevision, CTLFLAG_RD, 913d177f46SBill Fumerola 0, BSD, "Operating system revision"); 9245ec3b38SPoul-Henning Kamp 933d177f46SBill Fumerola SYSCTL_STRING(_kern, KERN_VERSION, version, CTLFLAG_RD, 943d177f46SBill Fumerola version, 0, "Kernel version"); 9545ec3b38SPoul-Henning Kamp 963d177f46SBill Fumerola SYSCTL_STRING(_kern, KERN_OSTYPE, ostype, CTLFLAG_RD, 973d177f46SBill Fumerola ostype, 0, "Operating system type"); 9845ec3b38SPoul-Henning Kamp 9945ec3b38SPoul-Henning Kamp extern int osreldate; 1003d177f46SBill Fumerola SYSCTL_INT(_kern, KERN_OSRELDATE, osreldate, CTLFLAG_RD, 1013d177f46SBill Fumerola &osreldate, 0, "Operating system release date"); 10245ec3b38SPoul-Henning Kamp 1033d177f46SBill Fumerola SYSCTL_INT(_kern, KERN_MAXPROC, maxproc, CTLFLAG_RD, 1043d177f46SBill Fumerola &maxproc, 0, "Maximum number of processes"); 10545ec3b38SPoul-Henning Kamp 1063d177f46SBill Fumerola SYSCTL_INT(_kern, KERN_MAXPROCPERUID, maxprocperuid, CTLFLAG_RW, 1073d177f46SBill Fumerola &maxprocperuid, 0, "Maximum processes allowed per userid"); 10845ec3b38SPoul-Henning Kamp 10924a590a0SPeter Wemm SYSCTL_INT(_kern, OID_AUTO, maxusers, CTLFLAG_RD, 110ee342e1bSPeter Wemm &maxusers, 0, "Hint for kernel tuning"); 111ee342e1bSPeter Wemm 1123d177f46SBill Fumerola SYSCTL_INT(_kern, KERN_ARGMAX, argmax, CTLFLAG_RD, 1133d177f46SBill Fumerola 0, ARG_MAX, "Maximum bytes of argument to execve(2)"); 11445ec3b38SPoul-Henning Kamp 1153d177f46SBill Fumerola SYSCTL_INT(_kern, KERN_POSIX1, posix1version, CTLFLAG_RD, 1163d177f46SBill Fumerola 0, _KPOSIX_VERSION, "Version of POSIX attempting to comply to"); 11745ec3b38SPoul-Henning Kamp 1183d177f46SBill Fumerola SYSCTL_INT(_kern, KERN_NGROUPS, ngroups, CTLFLAG_RD, 1193d177f46SBill Fumerola 0, NGROUPS_MAX, "Maximum number of groups a user can belong to"); 12045ec3b38SPoul-Henning Kamp 1213d177f46SBill Fumerola SYSCTL_INT(_kern, KERN_JOB_CONTROL, job_control, CTLFLAG_RD, 1223d177f46SBill Fumerola 0, 1, "Whether job control is available"); 12345ec3b38SPoul-Henning Kamp 12445ec3b38SPoul-Henning Kamp #ifdef _POSIX_SAVED_IDS 1253d177f46SBill Fumerola SYSCTL_INT(_kern, KERN_SAVED_IDS, saved_ids, CTLFLAG_RD, 1263d177f46SBill Fumerola 0, 1, "Whether saved set-group/user ID is available"); 12745ec3b38SPoul-Henning Kamp #else 1283d177f46SBill Fumerola SYSCTL_INT(_kern, KERN_SAVED_IDS, saved_ids, CTLFLAG_RD, 1293d177f46SBill Fumerola 0, 0, "Whether saved set-group/user ID is available"); 13045ec3b38SPoul-Henning Kamp #endif 13145ec3b38SPoul-Henning Kamp 13245ec3b38SPoul-Henning Kamp char kernelname[MAXPATHLEN] = "/kernel"; /* XXX bloat */ 13345ec3b38SPoul-Henning Kamp 1343d177f46SBill Fumerola SYSCTL_STRING(_kern, KERN_BOOTFILE, bootfile, CTLFLAG_RW, 1353d177f46SBill Fumerola kernelname, sizeof kernelname, "Name of kernel file booted"); 13645ec3b38SPoul-Henning Kamp 137b3b84d9bSGary Palmer #ifdef SMP 1383d177f46SBill Fumerola SYSCTL_INT(_hw, HW_NCPU, ncpu, CTLFLAG_RD, 1393d177f46SBill Fumerola &mp_ncpus, 0, "Number of active CPUs"); 140b3b84d9bSGary Palmer #else 1413d177f46SBill Fumerola SYSCTL_INT(_hw, HW_NCPU, ncpu, CTLFLAG_RD, 1423d177f46SBill Fumerola 0, 1, "Number of active CPUs"); 143b3b84d9bSGary Palmer #endif 14445ec3b38SPoul-Henning Kamp 1453d177f46SBill Fumerola SYSCTL_INT(_hw, HW_BYTEORDER, byteorder, CTLFLAG_RD, 1463d177f46SBill Fumerola 0, BYTE_ORDER, "System byte order"); 14745ec3b38SPoul-Henning Kamp 1483d177f46SBill Fumerola SYSCTL_INT(_hw, HW_PAGESIZE, pagesize, CTLFLAG_RD, 1493d177f46SBill Fumerola 0, PAGE_SIZE, "System memory page size"); 15045ec3b38SPoul-Henning Kamp 151664f8517SKATO Takenori static char machine_arch[] = MACHINE_ARCH; 152664f8517SKATO Takenori SYSCTL_STRING(_hw, HW_MACHINE_ARCH, machine_arch, CTLFLAG_RD, 1533d177f46SBill Fumerola machine_arch, 0, "System architecture"); 154664f8517SKATO Takenori 15545ec3b38SPoul-Henning Kamp char hostname[MAXHOSTNAMELEN]; 15645ec3b38SPoul-Henning Kamp 15775c13541SPoul-Henning Kamp static int 15882d9ae4eSPoul-Henning Kamp sysctl_hostname(SYSCTL_HANDLER_ARGS) 15975c13541SPoul-Henning Kamp { 1601e4b531bSRobert Watson struct prison *pr; 16101137630SRobert Watson char tmphostname[MAXHOSTNAMELEN]; 16275c13541SPoul-Henning Kamp int error; 16375c13541SPoul-Henning Kamp 1641e4b531bSRobert Watson pr = req->td->td_proc->p_ucred->cr_prison; 1651e4b531bSRobert Watson if (pr != NULL) { 16683f1e257SRobert Watson if (!jail_set_hostname_allowed && req->newptr) 1676c144e75SRobert Watson return (EPERM); 16801137630SRobert Watson /* 16901137630SRobert Watson * Process is in jail, so make a local copy of jail 17001137630SRobert Watson * hostname to get/set so we don't have to hold the jail 17101137630SRobert Watson * mutex during the sysctl copyin/copyout activities. 17201137630SRobert Watson */ 17301137630SRobert Watson mtx_lock(&pr->pr_mtx); 17401137630SRobert Watson bcopy(pr->pr_host, tmphostname, MAXHOSTNAMELEN); 17501137630SRobert Watson mtx_unlock(&pr->pr_mtx); 17601137630SRobert Watson 17701137630SRobert Watson error = sysctl_handle_string(oidp, tmphostname, 1781e4b531bSRobert Watson sizeof pr->pr_host, req); 17901137630SRobert Watson 18001137630SRobert Watson if (req->newptr != NULL && error == 0) { 18101137630SRobert Watson /* 18201137630SRobert Watson * Copy the locally set hostname to the jail, if 18301137630SRobert Watson * appropriate. 18401137630SRobert Watson */ 18501137630SRobert Watson mtx_lock(&pr->pr_mtx); 18601137630SRobert Watson bcopy(tmphostname, pr->pr_host, MAXHOSTNAMELEN); 18701137630SRobert Watson mtx_unlock(&pr->pr_mtx); 18801137630SRobert Watson } 1896c144e75SRobert Watson } else 19075c13541SPoul-Henning Kamp error = sysctl_handle_string(oidp, 19175c13541SPoul-Henning Kamp hostname, sizeof hostname, req); 19275c13541SPoul-Henning Kamp return (error); 19375c13541SPoul-Henning Kamp } 19475c13541SPoul-Henning Kamp 19575c13541SPoul-Henning Kamp SYSCTL_PROC(_kern, KERN_HOSTNAME, hostname, 19675c13541SPoul-Henning Kamp CTLTYPE_STRING|CTLFLAG_RW|CTLFLAG_PRISON, 1973d177f46SBill Fumerola 0, 0, sysctl_hostname, "A", "Hostname"); 19845ec3b38SPoul-Henning Kamp 199eacb362fSRobert Watson static int regression_securelevel_nonmonotonic = 0; 200c175d222SRobert Watson 2011e4b531bSRobert Watson #ifdef REGRESSION 202c175d222SRobert Watson SYSCTL_INT(_regression, OID_AUTO, securelevel_nonmonotonic, CTLFLAG_RW, 203c175d222SRobert Watson ®ression_securelevel_nonmonotonic, 0, "securelevel may be lowered"); 204eacb362fSRobert Watson #endif 205c175d222SRobert Watson 20645ec3b38SPoul-Henning Kamp int securelevel = -1; 20745ec3b38SPoul-Henning Kamp 20845ec3b38SPoul-Henning Kamp static int 20982d9ae4eSPoul-Henning Kamp sysctl_kern_securelvl(SYSCTL_HANDLER_ARGS) 21045ec3b38SPoul-Henning Kamp { 211d3c9fa04SRobert Watson struct prison *pr; 21245ec3b38SPoul-Henning Kamp int error, level; 21345ec3b38SPoul-Henning Kamp 214ce178806SRobert Watson pr = req->td->td_proc->p_ucred->cr_prison; 215d3c9fa04SRobert Watson 2168a528812SRobert Watson /* 2179afc1eeeSRobert Watson * If the process is in jail, return the maximum of the global and 2189afc1eeeSRobert Watson * local levels; otherwise, return the global level. 2198a528812SRobert Watson */ 22001137630SRobert Watson if (pr != NULL) { 22101137630SRobert Watson mtx_lock(&pr->pr_mtx); 222d3c9fa04SRobert Watson level = imax(securelevel, pr->pr_securelevel); 22301137630SRobert Watson mtx_unlock(&pr->pr_mtx); 22401137630SRobert Watson } else 22545ec3b38SPoul-Henning Kamp level = securelevel; 22645ec3b38SPoul-Henning Kamp error = sysctl_handle_int(oidp, &level, 0, req); 22745ec3b38SPoul-Henning Kamp if (error || !req->newptr) 22845ec3b38SPoul-Henning Kamp return (error); 2298a528812SRobert Watson /* 2308a528812SRobert Watson * Permit update only if the new securelevel exceeds the 2318a528812SRobert Watson * global level, and local level if any. 2328a528812SRobert Watson */ 233d3c9fa04SRobert Watson if (pr != NULL) { 23401137630SRobert Watson mtx_lock(&pr->pr_mtx); 2351e4b531bSRobert Watson if (!regression_securelevel_nonmonotonic && 23601137630SRobert Watson (level < imax(securelevel, pr->pr_securelevel))) { 23701137630SRobert Watson mtx_unlock(&pr->pr_mtx); 2388a528812SRobert Watson return (EPERM); 23901137630SRobert Watson } 240d3c9fa04SRobert Watson pr->pr_securelevel = level; 24101137630SRobert Watson mtx_unlock(&pr->pr_mtx); 2428a528812SRobert Watson } else { 2431e4b531bSRobert Watson if (!regression_securelevel_nonmonotonic && 2441e4b531bSRobert Watson (level < securelevel)) 24545ec3b38SPoul-Henning Kamp return (EPERM); 24645ec3b38SPoul-Henning Kamp securelevel = level; 2478a528812SRobert Watson } 24845ec3b38SPoul-Henning Kamp return (error); 24945ec3b38SPoul-Henning Kamp } 25045ec3b38SPoul-Henning Kamp 2518a528812SRobert Watson SYSCTL_PROC(_kern, KERN_SECURELVL, securelevel, 2528a528812SRobert Watson CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_PRISON, 0, 0, sysctl_kern_securelvl, 2538a528812SRobert Watson "I", "Current secure level"); 254e812e491SRobert Watson 25545ec3b38SPoul-Henning Kamp char domainname[MAXHOSTNAMELEN]; 256949f380fSGarrett Wollman SYSCTL_STRING(_kern, KERN_NISDOMAINNAME, domainname, CTLFLAG_RW, 2573d177f46SBill Fumerola &domainname, sizeof(domainname), "Name of the current YP/NIS domain"); 25845ec3b38SPoul-Henning Kamp 259eacb362fSRobert Watson u_long hostid; 260f83ae79fSJim Pirzyk SYSCTL_ULONG(_kern, KERN_HOSTID, hostid, CTLFLAG_RW, &hostid, 0, "Host ID"); 26145ec3b38SPoul-Henning Kamp 26245ec3b38SPoul-Henning Kamp /* 26345ec3b38SPoul-Henning Kamp * This is really cheating. These actually live in the libc, something 26445ec3b38SPoul-Henning Kamp * which I'm not quite sure is a good idea anyway, but in order for 26545ec3b38SPoul-Henning Kamp * getnext and friends to actually work, we define dummies here. 26645ec3b38SPoul-Henning Kamp */ 2673d177f46SBill Fumerola SYSCTL_STRING(_user, USER_CS_PATH, cs_path, CTLFLAG_RD, 2683d177f46SBill Fumerola "", 0, "PATH that finds all the standard utilities"); 2693d177f46SBill Fumerola SYSCTL_INT(_user, USER_BC_BASE_MAX, bc_base_max, CTLFLAG_RD, 2703d177f46SBill Fumerola 0, 0, "Max ibase/obase values in bc(1)"); 2713d177f46SBill Fumerola SYSCTL_INT(_user, USER_BC_DIM_MAX, bc_dim_max, CTLFLAG_RD, 2723d177f46SBill Fumerola 0, 0, "Max array size in bc(1)"); 2733d177f46SBill Fumerola SYSCTL_INT(_user, USER_BC_SCALE_MAX, bc_scale_max, CTLFLAG_RD, 2743d177f46SBill Fumerola 0, 0, "Max scale value in bc(1)"); 2753d177f46SBill Fumerola SYSCTL_INT(_user, USER_BC_STRING_MAX, bc_string_max, CTLFLAG_RD, 2763d177f46SBill Fumerola 0, 0, "Max string length in bc(1)"); 2773d177f46SBill Fumerola SYSCTL_INT(_user, USER_COLL_WEIGHTS_MAX, coll_weights_max, CTLFLAG_RD, 2783d177f46SBill Fumerola 0, 0, "Maximum number of weights assigned to an LC_COLLATE locale entry"); 2797c1aacb5SBruce Evans SYSCTL_INT(_user, USER_EXPR_NEST_MAX, expr_nest_max, CTLFLAG_RD, 0, 0, ""); 2803d177f46SBill Fumerola SYSCTL_INT(_user, USER_LINE_MAX, line_max, CTLFLAG_RD, 2813d177f46SBill Fumerola 0, 0, "Max length (bytes) of a text-processing utility's input line"); 2823d177f46SBill Fumerola SYSCTL_INT(_user, USER_RE_DUP_MAX, re_dup_max, CTLFLAG_RD, 2833d177f46SBill Fumerola 0, 0, "Maximum number of repeats of a regexp permitted"); 2843d177f46SBill Fumerola SYSCTL_INT(_user, USER_POSIX2_VERSION, posix2_version, CTLFLAG_RD, 2853d177f46SBill Fumerola 0, 0, 2863d177f46SBill Fumerola "The version of POSIX 1003.2 with which the system attempts to comply"); 2873d177f46SBill Fumerola SYSCTL_INT(_user, USER_POSIX2_C_BIND, posix2_c_bind, CTLFLAG_RD, 2883d177f46SBill Fumerola 0, 0, "Whether C development supports the C bindings option"); 2893d177f46SBill Fumerola SYSCTL_INT(_user, USER_POSIX2_C_DEV, posix2_c_dev, CTLFLAG_RD, 2903d177f46SBill Fumerola 0, 0, "Whether system supports the C development utilities option"); 2913d177f46SBill Fumerola SYSCTL_INT(_user, USER_POSIX2_CHAR_TERM, posix2_char_term, CTLFLAG_RD, 2923d177f46SBill Fumerola 0, 0, ""); 2933d177f46SBill Fumerola SYSCTL_INT(_user, USER_POSIX2_FORT_DEV, posix2_fort_dev, CTLFLAG_RD, 2943d177f46SBill Fumerola 0, 0, "Whether system supports FORTRAN development utilities"); 2953d177f46SBill Fumerola SYSCTL_INT(_user, USER_POSIX2_FORT_RUN, posix2_fort_run, CTLFLAG_RD, 2963d177f46SBill Fumerola 0, 0, "Whether system supports FORTRAN runtime utilities"); 2973d177f46SBill Fumerola SYSCTL_INT(_user, USER_POSIX2_LOCALEDEF, posix2_localedef, CTLFLAG_RD, 2983d177f46SBill Fumerola 0, 0, "Whether system supports creation of locales"); 2993d177f46SBill Fumerola SYSCTL_INT(_user, USER_POSIX2_SW_DEV, posix2_sw_dev, CTLFLAG_RD, 3003d177f46SBill Fumerola 0, 0, "Whether system supports software development utilities"); 3013d177f46SBill Fumerola SYSCTL_INT(_user, USER_POSIX2_UPE, posix2_upe, CTLFLAG_RD, 3023d177f46SBill Fumerola 0, 0, "Whether system supports the user portability utilities"); 3033d177f46SBill Fumerola SYSCTL_INT(_user, USER_STREAM_MAX, stream_max, CTLFLAG_RD, 3043d177f46SBill Fumerola 0, 0, "Min Maximum number of streams a process may have open at one time"); 3053d177f46SBill Fumerola SYSCTL_INT(_user, USER_TZNAME_MAX, tzname_max, CTLFLAG_RD, 3063d177f46SBill Fumerola 0, 0, "Min Maximum number of types supported for timezone names"); 3076f13bfc2SPoul-Henning Kamp 3086f13bfc2SPoul-Henning Kamp #include <sys/vnode.h> 3096f13bfc2SPoul-Henning Kamp SYSCTL_INT(_debug_sizeof, OID_AUTO, vnode, CTLFLAG_RD, 3106f13bfc2SPoul-Henning Kamp 0, sizeof(struct vnode), "sizeof(struct vnode)"); 3116f13bfc2SPoul-Henning Kamp 3126f13bfc2SPoul-Henning Kamp SYSCTL_INT(_debug_sizeof, OID_AUTO, proc, CTLFLAG_RD, 3136f13bfc2SPoul-Henning Kamp 0, sizeof(struct proc), "sizeof(struct proc)"); 314d7bf417dSPoul-Henning Kamp 3150ef1c826SPoul-Henning Kamp #include <sys/conf.h> 316d7bf417dSPoul-Henning Kamp SYSCTL_INT(_debug_sizeof, OID_AUTO, specinfo, CTLFLAG_RD, 317d7bf417dSPoul-Henning Kamp 0, sizeof(struct specinfo), "sizeof(struct specinfo)"); 3188c125869SPoul-Henning Kamp 3199626b608SPoul-Henning Kamp #include <sys/bio.h> 3208c125869SPoul-Henning Kamp #include <sys/buf.h> 3218c125869SPoul-Henning Kamp SYSCTL_INT(_debug_sizeof, OID_AUTO, bio, CTLFLAG_RD, 3228c125869SPoul-Henning Kamp 0, sizeof(struct bio), "sizeof(struct bio)"); 3238c125869SPoul-Henning Kamp SYSCTL_INT(_debug_sizeof, OID_AUTO, buf, CTLFLAG_RD, 3248c125869SPoul-Henning Kamp 0, sizeof(struct buf), "sizeof(struct buf)"); 325d5a08a60SJake Burkholder 326d5a08a60SJake Burkholder #include <sys/user.h> 327d5a08a60SJake Burkholder SYSCTL_INT(_debug_sizeof, OID_AUTO, kinfo_proc, CTLFLAG_RD, 328d5a08a60SJake Burkholder 0, sizeof(struct kinfo_proc), "sizeof(struct kinfo_proc)"); 329