xref: /freebsd/lib/libc/gen/sysctl.3 (revision 1e413cf93298b5b97441a21d9a50fdcd0ee9945e)
1.\" Copyright (c) 1993
2.\"	The Regents of the University of California.  All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\"    notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\"    notice, this list of conditions and the following disclaimer in the
11.\"    documentation and/or other materials provided with the distribution.
12.\" 4. Neither the name of the University nor the names of its contributors
13.\"    may be used to endorse or promote products derived from this software
14.\"    without specific prior written permission.
15.\"
16.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26.\" SUCH DAMAGE.
27.\"
28.\"	@(#)sysctl.3	8.4 (Berkeley) 5/9/95
29.\" $FreeBSD$
30.\"
31.Dd October 16, 2007
32.Dt SYSCTL 3
33.Os
34.Sh NAME
35.Nm sysctl ,
36.Nm sysctlbyname ,
37.Nm sysctlnametomib
38.Nd get or set system information
39.Sh LIBRARY
40.Lb libc
41.Sh SYNOPSIS
42.In sys/types.h
43.In sys/sysctl.h
44.Ft int
45.Fn sysctl "int *name" "u_int namelen" "void *oldp" "size_t *oldlenp" "void *newp" "size_t newlen"
46.Ft int
47.Fn sysctlbyname "const char *name" "void *oldp" "size_t *oldlenp" "void *newp" "size_t newlen"
48.Ft int
49.Fn sysctlnametomib "const char *name" "int *mibp" "size_t *sizep"
50.Sh DESCRIPTION
51The
52.Fn sysctl
53function retrieves system information and allows processes with
54appropriate privileges to set system information.
55The information available from
56.Fn sysctl
57consists of integers, strings, and tables.
58Information may be retrieved and set from the command interface
59using the
60.Xr sysctl 8
61utility.
62.Pp
63Unless explicitly noted below,
64.Fn sysctl
65returns a consistent snapshot of the data requested.
66Consistency is obtained by locking the destination
67buffer into memory so that the data may be copied out without blocking.
68Calls to
69.Fn sysctl
70are serialized to avoid deadlock.
71.Pp
72The state is described using a ``Management Information Base'' (MIB)
73style name, listed in
74.Fa name ,
75which is a
76.Fa namelen
77length array of integers.
78.Pp
79The
80.Fn sysctlbyname
81function accepts an ASCII representation of the name and internally
82looks up the integer name vector.
83Apart from that, it behaves the same
84as the standard
85.Fn sysctl
86function.
87.Pp
88The information is copied into the buffer specified by
89.Fa oldp .
90The size of the buffer is given by the location specified by
91.Fa oldlenp
92before the call,
93and that location gives the amount of data copied after a successful call
94and after a call that returns with the error code
95.Er ENOMEM .
96If the amount of data available is greater
97than the size of the buffer supplied,
98the call supplies as much data as fits in the buffer provided
99and returns with the error code
100.Er ENOMEM .
101If the old value is not desired,
102.Fa oldp
103and
104.Fa oldlenp
105should be set to NULL.
106.Pp
107The size of the available data can be determined by calling
108.Fn sysctl
109with the
110.Dv NULL
111argument for
112.Fa oldp .
113The size of the available data will be returned in the location pointed to by
114.Fa oldlenp .
115For some operations, the amount of space may change often.
116For these operations,
117the system attempts to round up so that the returned size is
118large enough for a call to return the data shortly thereafter.
119.Pp
120To set a new value,
121.Fa newp
122is set to point to a buffer of length
123.Fa newlen
124from which the requested value is to be taken.
125If a new value is not to be set,
126.Fa newp
127should be set to NULL and
128.Fa newlen
129set to 0.
130.Pp
131The
132.Fn sysctlnametomib
133function accepts an ASCII representation of the name,
134looks up the integer name vector,
135and returns the numeric representation in the mib array pointed to by
136.Fa mibp .
137The number of elements in the mib array is given by the location specified by
138.Fa sizep
139before the call,
140and that location gives the number of entries copied after a successful call.
141The resulting
142.Fa mib
143and
144.Fa size
145may be used in subsequent
146.Fn sysctl
147calls to get the data associated with the requested ASCII name.
148This interface is intended for use by applications that want to
149repeatedly request the same variable (the
150.Fn sysctl
151function runs in about a third the time as the same request made via the
152.Fn sysctlbyname
153function).
154The
155.Fn sysctlnametomib
156function is also useful for fetching mib prefixes and then adding
157a final component.
158For example, to fetch process information
159for processes with pid's less than 100:
160.Pp
161.Bd -literal -offset indent -compact
162int i, mib[4];
163size_t len;
164struct kinfo_proc kp;
165
166/* Fill out the first three components of the mib */
167len = 4;
168sysctlnametomib("kern.proc.pid", mib, &len);
169
170/* Fetch and print entries for pid's < 100 */
171for (i = 0; i < 100; i++) {
172	mib[3] = i;
173	len = sizeof(kp);
174	if (sysctl(mib, 4, &kp, &len, NULL, 0) == -1)
175		perror("sysctl");
176	else if (len > 0)
177		printkproc(&kp);
178}
179.Ed
180.Pp
181The top level names are defined with a CTL_ prefix in
182.In sys/sysctl.h ,
183and are as follows.
184The next and subsequent levels down are found in the include files
185listed here, and described in separate sections below.
186.Pp
187.Bl -column CTLXMACHDEPXXX "Next level namesXXXXXX" -offset indent
188.It Sy "Name	Next level names	Description"
189.It "CTL_DEBUG	sys/sysctl.h	Debugging"
190.It "CTL_VFS	sys/mount.h	File system"
191.It "CTL_HW	sys/sysctl.h	Generic CPU, I/O"
192.It "CTL_KERN	sys/sysctl.h	High kernel limits"
193.It "CTL_MACHDEP	sys/sysctl.h	Machine dependent"
194.It "CTL_NET	sys/socket.h	Networking"
195.It "CTL_USER	sys/sysctl.h	User-level"
196.It "CTL_VM	vm/vm_param.h	Virtual memory"
197.El
198.Pp
199For example, the following retrieves the maximum number of processes allowed
200in the system:
201.Pp
202.Bd -literal -offset indent -compact
203int mib[2], maxproc;
204size_t len;
205
206mib[0] = CTL_KERN;
207mib[1] = KERN_MAXPROC;
208len = sizeof(maxproc);
209sysctl(mib, 2, &maxproc, &len, NULL, 0);
210.Ed
211.Pp
212To retrieve the standard search path for the system utilities:
213.Pp
214.Bd -literal -offset indent -compact
215int mib[2];
216size_t len;
217char *p;
218
219mib[0] = CTL_USER;
220mib[1] = USER_CS_PATH;
221sysctl(mib, 2, NULL, &len, NULL, 0);
222p = malloc(len);
223sysctl(mib, 2, p, &len, NULL, 0);
224.Ed
225.Ss CTL_DEBUG
226The debugging variables vary from system to system.
227A debugging variable may be added or deleted without need to recompile
228.Fn sysctl
229to know about it.
230Each time it runs,
231.Fn sysctl
232gets the list of debugging variables from the kernel and
233displays their current values.
234The system defines twenty
235.Pq Vt "struct ctldebug"
236variables named
237.Va debug0
238through
239.Va debug19 .
240They are declared as separate variables so that they can be
241individually initialized at the location of their associated variable.
242The loader prevents multiple use of the same variable by issuing errors
243if a variable is initialized in more than one place.
244For example, to export the variable
245.Va dospecialcheck
246as a debugging variable, the following declaration would be used:
247.Pp
248.Bd -literal -offset indent -compact
249int dospecialcheck = 1;
250struct ctldebug debug5 = { "dospecialcheck", &dospecialcheck };
251.Ed
252.Ss CTL_VFS
253A distinguished second level name, VFS_GENERIC,
254is used to get general information about all file systems.
255One of its third level identifiers is VFS_MAXTYPENUM
256that gives the highest valid file system type number.
257Its other third level identifier is VFS_CONF that
258returns configuration information about the file system
259type given as a fourth level identifier (see
260.Xr getvfsbyname 3
261as an example of its use).
262The remaining second level identifiers are the
263file system type number returned by a
264.Xr statfs 2
265call or from VFS_CONF.
266The third level identifiers available for each file system
267are given in the header file that defines the mount
268argument structure for that file system.
269.Ss CTL_HW
270The string and integer information available for the CTL_HW level
271is detailed below.
272The changeable column shows whether a process with appropriate
273privilege may change the value.
274.Bl -column "Second level nameXXXXXX" integerXXX -offset indent
275.It Sy "Second level name	Type	Changeable"
276.It "HW_MACHINE	string	no"
277.It "HW_MODEL	string	no"
278.It "HW_NCPU	integer	no"
279.It "HW_BYTEORDER	integer	no"
280.It "HW_PHYSMEM	integer	no"
281.It "HW_USERMEM	integer	no"
282.It "HW_PAGESIZE	integer	no"
283.\".It "HW_DISKNAMES	integer	no"
284.\".It "HW_DISKSTATS	integer	no"
285.It "HW_FLOATINGPT	integer	no"
286.It "HW_MACHINE_ARCH	string	no"
287.It "HW_REALMEM	integer	no"
288.El
289.Pp
290.Bl -tag -width 6n
291.It Li HW_MACHINE
292The machine class.
293.It Li HW_MODEL
294The machine model
295.It Li HW_NCPU
296The number of cpus.
297.It Li HW_BYTEORDER
298The byteorder (4,321, or 1,234).
299.It Li HW_PHYSMEM
300The bytes of physical memory.
301.It Li HW_USERMEM
302The bytes of non-kernel memory.
303.It Li HW_PAGESIZE
304The software page size.
305.\".It Fa HW_DISKNAMES
306.\".It Fa HW_DISKSTATS
307.It Li HW_FLOATINGPT
308Nonzero if the floating point support is in hardware.
309.It Li HW_MACHINE_ARCH
310The machine dependent architecture type.
311.It Li HW_REALMEM
312The bytes of real memory.
313.El
314.Ss CTL_KERN
315The string and integer information available for the CTL_KERN level
316is detailed below.
317The changeable column shows whether a process with appropriate
318privilege may change the value.
319The types of data currently available are process information,
320system vnodes, the open file entries, routing table entries,
321virtual memory statistics, load average history, and clock rate
322information.
323.Bl -column "KERNXMAXFILESPERPROCXXX" "struct clockrateXXX" -offset indent
324.It Sy "Second level name	Type	Changeable"
325.It "KERN_ARGMAX	integer	no"
326.It "KERN_BOOTFILE	string	yes"
327.It "KERN_BOOTTIME	struct timeval	no"
328.It "KERN_CLOCKRATE	struct clockinfo	no"
329.It "KERN_FILE	struct file	no"
330.It "KERN_HOSTID	integer	yes"
331.It "KERN_HOSTUUID	string	yes"
332.It "KERN_HOSTNAME	string	yes"
333.It "KERN_JOB_CONTROL	integer	no"
334.It "KERN_MAXFILES	integer	yes"
335.It "KERN_MAXFILESPERPROC	integer	yes"
336.It "KERN_MAXPROC	integer	no"
337.It "KERN_MAXPROCPERUID	integer	yes"
338.It "KERN_MAXVNODES	integer	yes"
339.It "KERN_NGROUPS	integer	no"
340.It "KERN_NISDOMAINNAME	string	yes"
341.It "KERN_OSRELDATE	integer	no"
342.It "KERN_OSRELEASE	string	no"
343.It "KERN_OSREV	integer	no"
344.It "KERN_OSTYPE	string	no"
345.It "KERN_POSIX1	integer	no"
346.It "KERN_PROC	struct proc	no"
347.It "KERN_PROF	node	not applicable"
348.It "KERN_QUANTUM	integer	yes"
349.It "KERN_SAVED_IDS	integer	no"
350.It "KERN_SECURELVL	integer	raise only"
351.It "KERN_UPDATEINTERVAL	integer	no"
352.It "KERN_VERSION	string	no"
353.It "KERN_VNODE	struct vnode	no"
354.El
355.Pp
356.Bl -tag -width 6n
357.It Li KERN_ARGMAX
358The maximum bytes of argument to
359.Xr execve 2 .
360.It Li KERN_BOOTFILE
361The full pathname of the file from which the kernel was loaded.
362.It Li KERN_BOOTTIME
363A
364.Va struct timeval
365structure is returned.
366This structure contains the time that the system was booted.
367.It Li KERN_CLOCKRATE
368A
369.Va struct clockinfo
370structure is returned.
371This structure contains the clock, statistics clock and profiling clock
372frequencies, the number of micro-seconds per hz tick and the skew rate.
373.It Li KERN_FILE
374Return the entire file table.
375The returned data consists of a single
376.Va struct filehead
377followed by an array of
378.Va struct file ,
379whose size depends on the current number of such objects in the system.
380.It Li KERN_HOSTID
381Get or set the host ID.
382.It Li KERN_HOSTUUID
383Get or set the host's universally unique identifier (UUID).
384.It Li KERN_HOSTNAME
385Get or set the hostname.
386.It Li KERN_JOB_CONTROL
387Return 1 if job control is available on this system, otherwise 0.
388.It Li KERN_MAXFILES
389The maximum number of files that may be open in the system.
390.It Li KERN_MAXFILESPERPROC
391The maximum number of files that may be open for a single process.
392This limit only applies to processes with an effective uid of nonzero
393at the time of the open request.
394Files that have already been opened are not affected if the limit
395or the effective uid is changed.
396.It Li KERN_MAXPROC
397The maximum number of concurrent processes the system will allow.
398.It Li KERN_MAXPROCPERUID
399The maximum number of concurrent processes the system will allow
400for a single effective uid.
401This limit only applies to processes with an effective uid of nonzero
402at the time of a fork request.
403Processes that have already been started are not affected if the limit
404is changed.
405.It Li KERN_MAXVNODES
406The maximum number of vnodes available on the system.
407.It Li KERN_NGROUPS
408The maximum number of supplemental groups.
409.It Li KERN_NISDOMAINNAME
410The name of the current YP/NIS domain.
411.It Li KERN_OSRELDATE
412The kernel release version in the format
413.Ar M Ns Ar mm Ns Ar R Ns Ar xx ,
414where
415.Ar M
416is the major version,
417.Ar mm
418is the two digit minor version,
419.Ar R
420is 0 if release branch, otherwise 1,
421and
422.Ar xx
423is updated when the available APIs change.
424.Pp
425The userland release version is available from
426.In osreldate.h ;
427parse this file if you need to get the release version of
428the currently installed userland.
429.It Li KERN_OSRELEASE
430The system release string.
431.It Li KERN_OSREV
432The system revision string.
433.It Li KERN_OSTYPE
434The system type string.
435.It Li KERN_POSIX1
436The version of
437.St -p1003.1
438with which the system
439attempts to comply.
440.It Li KERN_PROC
441Return selected information about specific running processes.
442.Pp
443For the following names, an array of pairs of
444.Va struct proc
445followed by corresponding
446.Va struct eproc
447structures is returned,
448whose size depends on the current number of such objects in the system.
449.Bl -column "Third level nameXXXXXX" "Fourth level is:XXXXXX" -offset indent
450.It "Third level name	Fourth level is:"
451.It "KERN_PROC_ALL	None"
452.It "KERN_PROC_PID	A process ID"
453.It "KERN_PROC_PGRP	A process group"
454.It "KERN_PROC_TTY	A tty device"
455.It "KERN_PROC_UID	A user ID"
456.It "KERN_PROC_RUID	A real user ID"
457.El
458.Pp
459If the third level name is
460.Dv KERN_PROC_ARGS
461then the command line argument
462array is returned in a flattened form, i.e., zero-terminated arguments
463follow each other.
464The total size of array is returned.
465It is also possible for a process to set its own process title this way.
466If the third level name is
467.Dv KERN_PROC_PATHNAME ,
468the path of the
469process' text file is stored.
470For
471.Dv KERN_PROC_PATHNAME ,
472a process ID of
473.Li \-1
474implies the current process.
475.Bl -column "Third level nameXXXXXX" "Fourth level is:XXXXXX" -offset indent
476.It Sy "Third level name	Fourth level is:"
477.It Dv KERN_PROC_ARGS Ta "A process ID"
478.It Dv KERN_PROC_PATHNAME Ta "A process ID"
479.El
480.It Li KERN_PROF
481Return profiling information about the kernel.
482If the kernel is not compiled for profiling,
483attempts to retrieve any of the KERN_PROF values will
484fail with
485.Er ENOENT .
486The third level names for the string and integer profiling information
487is detailed below.
488The changeable column shows whether a process with appropriate
489privilege may change the value.
490.Bl -column "GPROFXGMONPARAMXXX" "struct gmonparamXXX" -offset indent
491.It Sy "Third level name	Type	Changeable"
492.It "GPROF_STATE	integer	yes"
493.It "GPROF_COUNT	u_short[\|]	yes"
494.It "GPROF_FROMS	u_short[\|]	yes"
495.It "GPROF_TOS	struct tostruct	yes"
496.It "GPROF_GMONPARAM	struct gmonparam	no"
497.El
498.Pp
499The variables are as follows:
500.Bl -tag -width 6n
501.It Li GPROF_STATE
502Returns GMON_PROF_ON or GMON_PROF_OFF to show that profiling
503is running or stopped.
504.It Li GPROF_COUNT
505Array of statistical program counter counts.
506.It Li GPROF_FROMS
507Array indexed by program counter of call-from points.
508.It Li GPROF_TOS
509Array of
510.Va struct tostruct
511describing destination of calls and their counts.
512.It Li GPROF_GMONPARAM
513Structure giving the sizes of the above arrays.
514.El
515.It Li KERN_QUANTUM
516The maximum period of time, in microseconds, for which a process is allowed
517to run without being preempted if other processes are in the run queue.
518.It Li KERN_SAVED_IDS
519Returns 1 if saved set-group and saved set-user ID is available.
520.It Li KERN_SECURELVL
521The system security level.
522This level may be raised by processes with appropriate privilege.
523It may not be lowered.
524.It Li KERN_VERSION
525The system version string.
526.It Li KERN_VNODE
527Return the entire vnode table.
528Note, the vnode table is not necessarily a consistent snapshot of
529the system.
530The returned data consists of an array whose size depends on the
531current number of such objects in the system.
532Each element of the array contains the kernel address of a vnode
533.Va struct vnode *
534followed by the vnode itself
535.Va struct vnode .
536.El
537.Ss CTL_MACHDEP
538The set of variables defined is architecture dependent.
539The following variables are defined for the i386 architecture.
540.Bl -column "CONSOLE_DEVICEXXX" "struct bootinfoXXX" -offset indent
541.It Sy "Second level name	Type	Changeable"
542.It Li "CPU_CONSDEV	dev_t	no"
543.It Li "CPU_ADJKERNTZ	int	yes"
544.It Li "CPU_DISRTCSET	int	yes"
545.It Li "CPU_BOOTINFO	struct bootinfo	no"
546.It Li "CPU_WALLCLOCK	int	yes"
547.El
548.Ss CTL_NET
549The string and integer information available for the CTL_NET level
550is detailed below.
551The changeable column shows whether a process with appropriate
552privilege may change the value.
553.Bl -column "Second level nameXXXXXX" "routing messagesXXX" -offset indent
554.It Sy "Second level name	Type	Changeable"
555.It "PF_ROUTE	routing messages	no"
556.It "PF_INET	IPv4 values	yes"
557.It "PF_INET6	IPv6 values	yes"
558.El
559.Pp
560.Bl -tag -width 6n
561.It Li PF_ROUTE
562Return the entire routing table or a subset of it.
563The data is returned as a sequence of routing messages (see
564.Xr route 4
565for the header file, format and meaning).
566The length of each message is contained in the message header.
567.Pp
568The third level name is a protocol number, which is currently always 0.
569The fourth level name is an address family, which may be set to 0 to
570select all address families.
571The fifth and sixth level names are as follows:
572.Bl -column "Fifth level nameXXXXXX" "Sixth level is:XXX" -offset indent
573.It Sy "Fifth level name	Sixth level is:"
574.It "NET_RT_FLAGS	rtflags"
575.It "NET_RT_DUMP	None"
576.It "NET_RT_IFLIST	0 or if_index"
577.It "NET_RT_IFMALIST	0 or if_index"
578.El
579.Pp
580The
581.Dv NET_RT_IFMALIST
582name returns information about multicast group memberships on all interfaces
583if 0 is specified, or for the interface specified by
584.Va if_index .
585.It Li PF_INET
586Get or set various global information about the IPv4
587(Internet Protocol version 4).
588The third level name is the protocol.
589The fourth level name is the variable name.
590The currently defined protocols and names are:
591.Bl -column ProtocolXX VariableXX TypeXX ChangeableXX
592.It Sy "Protocol	Variable	Type	Changeable"
593.It "icmp	bmcastecho	integer	yes"
594.It "icmp	maskrepl	integer	yes"
595.It "ip	forwarding	integer	yes"
596.It "ip	redirect	integer	yes"
597.It "ip	ttl	integer	yes"
598.It "udp	checksum	integer	yes"
599.El
600.Pp
601The variables are as follows:
602.Bl -tag -width 6n
603.It Li icmp.bmcastecho
604Returns 1 if an ICMP echo request to a broadcast or multicast address is
605to be answered.
606.It Li icmp.maskrepl
607Returns 1 if ICMP network mask requests are to be answered.
608.It Li ip.forwarding
609Returns 1 when IP forwarding is enabled for the host,
610meaning that the host is acting as a router.
611.It Li ip.redirect
612Returns 1 when ICMP redirects may be sent by the host.
613This option is ignored unless the host is routing IP packets,
614and should normally be enabled on all systems.
615.It Li ip.ttl
616The maximum time-to-live (hop count) value for an IP packet sourced by
617the system.
618This value applies to normal transport protocols, not to ICMP.
619.It Li udp.checksum
620Returns 1 when UDP checksums are being computed and checked.
621Disabling UDP checksums is strongly discouraged.
622.Pp
623For variables net.inet.*.ipsec, please refer to
624.Xr ipsec 4 .
625.El
626.It Li PF_INET6
627Get or set various global information about the IPv6
628(Internet Protocol version 6).
629The third level name is the protocol.
630The fourth level name is the variable name.
631.Pp
632For variables net.inet6.* please refer to
633.Xr inet6 4 .
634For variables net.inet6.*.ipsec6, please refer to
635.Xr ipsec 4 .
636.El
637.Ss CTL_USER
638The string and integer information available for the CTL_USER level
639is detailed below.
640The changeable column shows whether a process with appropriate
641privilege may change the value.
642.Bl -column "USER_COLL_WEIGHTS_MAXXXX" "integerXXX" -offset indent
643.It Sy "Second level name	Type	Changeable"
644.It "USER_BC_BASE_MAX	integer	no"
645.It "USER_BC_DIM_MAX	integer	no"
646.It "USER_BC_SCALE_MAX	integer	no"
647.It "USER_BC_STRING_MAX	integer	no"
648.It "USER_COLL_WEIGHTS_MAX	integer	no"
649.It "USER_CS_PATH	string	no"
650.It "USER_EXPR_NEST_MAX	integer	no"
651.It "USER_LINE_MAX	integer	no"
652.It "USER_POSIX2_CHAR_TERM	integer	no"
653.It "USER_POSIX2_C_BIND	integer	no"
654.It "USER_POSIX2_C_DEV	integer	no"
655.It "USER_POSIX2_FORT_DEV	integer	no"
656.It "USER_POSIX2_FORT_RUN	integer	no"
657.It "USER_POSIX2_LOCALEDEF	integer	no"
658.It "USER_POSIX2_SW_DEV	integer	no"
659.It "USER_POSIX2_UPE	integer	no"
660.It "USER_POSIX2_VERSION	integer	no"
661.It "USER_RE_DUP_MAX	integer	no"
662.It "USER_STREAM_MAX	integer	no"
663.It "USER_TZNAME_MAX	integer	no"
664.El
665.Bl -tag -width 6n
666.Pp
667.It Li USER_BC_BASE_MAX
668The maximum ibase/obase values in the
669.Xr bc 1
670utility.
671.It Li USER_BC_DIM_MAX
672The maximum array size in the
673.Xr bc 1
674utility.
675.It Li USER_BC_SCALE_MAX
676The maximum scale value in the
677.Xr bc 1
678utility.
679.It Li USER_BC_STRING_MAX
680The maximum string length in the
681.Xr bc 1
682utility.
683.It Li USER_COLL_WEIGHTS_MAX
684The maximum number of weights that can be assigned to any entry of
685the LC_COLLATE order keyword in the locale definition file.
686.It Li USER_CS_PATH
687Return a value for the
688.Ev PATH
689environment variable that finds all the standard utilities.
690.It Li USER_EXPR_NEST_MAX
691The maximum number of expressions that can be nested within
692parenthesis by the
693.Xr expr 1
694utility.
695.It Li USER_LINE_MAX
696The maximum length in bytes of a text-processing utility's input
697line.
698.It Li USER_POSIX2_CHAR_TERM
699Return 1 if the system supports at least one terminal type capable of
700all operations described in
701.St -p1003.2 ,
702otherwise 0.
703.It Li USER_POSIX2_C_BIND
704Return 1 if the system's C-language development facilities support the
705C-Language Bindings Option, otherwise 0.
706.It Li USER_POSIX2_C_DEV
707Return 1 if the system supports the C-Language Development Utilities Option,
708otherwise 0.
709.It Li USER_POSIX2_FORT_DEV
710Return 1 if the system supports the FORTRAN Development Utilities Option,
711otherwise 0.
712.It Li USER_POSIX2_FORT_RUN
713Return 1 if the system supports the FORTRAN Runtime Utilities Option,
714otherwise 0.
715.It Li USER_POSIX2_LOCALEDEF
716Return 1 if the system supports the creation of locales, otherwise 0.
717.It Li USER_POSIX2_SW_DEV
718Return 1 if the system supports the Software Development Utilities Option,
719otherwise 0.
720.It Li USER_POSIX2_UPE
721Return 1 if the system supports the User Portability Utilities Option,
722otherwise 0.
723.It Li USER_POSIX2_VERSION
724The version of
725.St -p1003.2
726with which the system attempts to comply.
727.It Li USER_RE_DUP_MAX
728The maximum number of repeated occurrences of a regular expression
729permitted when using interval notation.
730.It Li USER_STREAM_MAX
731The minimum maximum number of streams that a process may have open
732at any one time.
733.It Li USER_TZNAME_MAX
734The minimum maximum number of types supported for the name of a
735timezone.
736.El
737.Ss CTL_VM
738The string and integer information available for the CTL_VM level
739is detailed below.
740The changeable column shows whether a process with appropriate
741privilege may change the value.
742.Bl -column "Second level nameXXXXXX" "struct loadavgXXX" -offset indent
743.It Sy "Second level name	Type	Changeable"
744.It "VM_LOADAVG	struct loadavg	no"
745.It "VM_TOTAL	struct vmtotal	no"
746.It "VM_PAGEOUT_ALGORITHM	integer	yes"
747.It "VM_SWAPPING_ENABLED	integer	maybe"
748.It "VM_V_CACHE_MAX	integer	yes"
749.It "VM_V_CACHE_MIN	integer	yes"
750.It "VM_V_FREE_MIN	integer	yes"
751.It "VM_V_FREE_RESERVED	integer	yes"
752.It "VM_V_FREE_TARGET	integer	yes"
753.It "VM_V_INACTIVE_TARGET	integer	yes"
754.It "VM_V_PAGEOUT_FREE_MIN	integer	yes"
755.El
756.Pp
757.Bl -tag -width 6n
758.It Li VM_LOADAVG
759Return the load average history.
760The returned data consists of a
761.Va struct loadavg .
762.It Li VM_TOTAL
763Return the system wide virtual memory statistics.
764The returned data consists of a
765.Va struct vmtotal .
766.It Li VM_PAGEOUT_ALGORITHM
7670 if the statistics-based page management algorithm is in use
768or 1 if the near-LRU algorithm is in use.
769.It Li VM_SWAPPING_ENABLED
7701 if process swapping is enabled or 0 if disabled.
771This variable is
772permanently set to 0 if the kernel was built with swapping disabled.
773.It Li VM_V_CACHE_MAX
774Maximum desired size of the cache queue.
775.It Li VM_V_CACHE_MIN
776Minimum desired size of the cache queue.
777If the cache queue size
778falls very far below this value, the pageout daemon is awakened.
779.It Li VM_V_FREE_MIN
780Minimum amount of memory (cache memory plus free memory)
781required to be available before a process waiting on memory will be
782awakened.
783.It Li VM_V_FREE_RESERVED
784Processes will awaken the pageout daemon and wait for memory if the
785number of free and cached pages drops below this value.
786.It Li VM_V_FREE_TARGET
787The total amount of free memory (including cache memory) that the
788pageout daemon tries to maintain.
789.It Li VM_V_INACTIVE_TARGET
790The desired number of inactive pages that the pageout daemon should
791achieve when it runs.
792Inactive pages can be quickly inserted into
793process address space when needed.
794.It Li VM_V_PAGEOUT_FREE_MIN
795If the amount of free and cache memory falls below this value, the
796pageout daemon will enter "memory conserving mode" to avoid deadlock.
797.El
798.Sh RETURN VALUES
799.Rv -std
800.Sh FILES
801.Bl -tag -width <netinet/icmpXvar.h> -compact
802.It In sys/sysctl.h
803definitions for top level identifiers, second level kernel and hardware
804identifiers, and user level identifiers
805.It In sys/socket.h
806definitions for second level network identifiers
807.It In sys/gmon.h
808definitions for third level profiling identifiers
809.It In vm/vm_param.h
810definitions for second level virtual memory identifiers
811.It In netinet/in.h
812definitions for third level IPv4/IPv6 identifiers and
813fourth level IPv4/v6 identifiers
814.It In netinet/icmp_var.h
815definitions for fourth level ICMP identifiers
816.It In netinet/icmp6.h
817definitions for fourth level ICMPv6 identifiers
818.It In netinet/udp_var.h
819definitions for fourth level UDP identifiers
820.El
821.Sh ERRORS
822The following errors may be reported:
823.Bl -tag -width Er
824.It Bq Er EFAULT
825The buffer
826.Fa name ,
827.Fa oldp ,
828.Fa newp ,
829or length pointer
830.Fa oldlenp
831contains an invalid address.
832.It Bq Er EINVAL
833The
834.Fa name
835array is less than two or greater than CTL_MAXNAME.
836.It Bq Er EINVAL
837A non-null
838.Fa newp
839is given and its specified length in
840.Fa newlen
841is too large or too small.
842.It Bq Er ENOMEM
843The length pointed to by
844.Fa oldlenp
845is too short to hold the requested value.
846.It Bq Er ENOMEM
847The smaller of either the length pointed to by
848.Fa oldlenp
849or the estimated size of the returned data exceeds the
850system limit on locked memory.
851.It Bq Er ENOMEM
852Locking the buffer
853.Fa oldp ,
854or a portion of the buffer if the estimated size of the data
855to be returned is smaller,
856would cause the process to exceed its per-process locked memory limit.
857.It Bq Er ENOTDIR
858The
859.Fa name
860array specifies an intermediate rather than terminal name.
861.It Bq Er EISDIR
862The
863.Fa name
864array specifies a terminal name, but the actual name is not terminal.
865.It Bq Er ENOENT
866The
867.Fa name
868array specifies a value that is unknown.
869.It Bq Er EPERM
870An attempt is made to set a read-only value.
871.It Bq Er EPERM
872A process without appropriate privilege attempts to set a value.
873.El
874.Sh SEE ALSO
875.Xr sysconf 3 ,
876.Xr sysctl 8
877.Sh HISTORY
878The
879.Fn sysctl
880function first appeared in
881.Bx 4.4 .
882