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