Initial import from FreeBSD RELENG_4:
[dragonfly.git] / lib / libcr / gen / sysctl.3
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: src/lib/libc/gen/sysctl.3,v 1.33.2.13 2002/04/07 04:57:14 dd Exp $
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
55 The
56 .Fn sysctl
57 function retrieves system information and allows processes with
58 appropriate privileges to set system information.
59 The information available from
60 .Fn sysctl
61 consists of integers, strings, and tables.
62 Information may be retrieved and set from the command interface
63 using the
64 .Xr sysctl 8
65 utility.
66 .Pp
67 Unless explicitly noted below,
68 .Fn sysctl
69 returns a consistent snapshot of the data requested.
70 Consistency is obtained by locking the destination
71 buffer into memory so that the data may be copied out without blocking.
72 Calls to
73 .Fn sysctl
74 are serialized to avoid deadlock.
75 .Pp
76 The state is described using a ``Management Information Base'' (MIB)
77 style name, listed in
78 .Fa name ,
79 which is a
80 .Fa namelen
81 length array of integers.
82 .Pp
83 The
84 .Fn sysctlbyname
85 function accepts an ASCII representation of the name and internally
86 looks up the integer name vector.  Apart from that, it behaves the same
87 as the standard
88 .Fn sysctl
89 function.
90 .Pp
91 The information is copied into the buffer specified by
92 .Fa oldp .
93 The size of the buffer is given by the location specified by
94 .Fa oldlenp
95 before the call,
96 and that location gives the amount of data copied after a successful call
97 and after a call that returns with the error code
98 .Er ENOMEM .
99 If the amount of data available is greater
100 than the size of the buffer supplied,
101 the call supplies as much data as fits in the buffer provided
102 and returns with the error code
103 .Er ENOMEM .
104 If the old value is not desired,
105 .Fa oldp
106 and
107 .Fa oldlenp
108 should be set to NULL.
109 .Pp
110 The size of the available data can be determined by calling
111 .Fn sysctl
112 with a NULL parameter for
113 .Fa oldp .
114 The size of the available data will be returned in the location pointed to by
115 .Fa oldlenp .
116 For some operations, the amount of space may change often.
117 For these operations,
118 the system attempts to round up so that the returned size is
119 large enough for a call to return the data shortly thereafter.
120 .Pp
121 To set a new value,
122 .Fa newp
123 is set to point to a buffer of length
124 .Fa newlen
125 from which the requested value is to be taken.
126 If a new value is not to be set,
127 .Fa newp
128 should be set to NULL and
129 .Fa newlen
130 set to 0.
131 .Pp
132 The
133 .Fn sysctlnametomib
134 function accepts an ASCII representation of the name,
135 looks up the integer name vector,
136 and returns the numeric representation in the mib array pointed to by
137 .Fa mibp .
138 The number of elements in the mib array is given by the location specified by
139 .Fa sizep
140 before the call,
141 and that location gives the number of entries copied after a successful call.
142 The resulting
143 .Fa mib
144 and
145 .Fa size
146 may be used in subsequent
147 .Fn sysctl
148 calls to get the data associated with the requested ASCII name.
149 This interface is intended for use by applications that want to
150 repeatedly request the same variable (the
151 .Fn sysctl
152 function runs in about a third the time as the same request made via the
153 .Fn sysctlbyname
154 function).
155 The
156 .Fn sysctlnametomib
157 function is also useful for fetching mib prefixes and then adding
158 a final component.
159 For example, to fetch process information
160 for processes with pid's less than 100:
161 .Pp
162 .Bd -literal -offset indent -compact
163 int i, mib[4];
164 size_t len;
165 struct kinfo_proc kp;
166
167 /* Fill out the first three components of the mib */
168 len = 4;
169 sysctlnametomib("kern.proc.pid", mib, &len);
170
171 /* Fetch and print entries for pid's < 100 */
172 for (i = 0; i < 100; i++) {
173         mib[3] = i;
174         len = sizeof(kp);
175         if (sysctl(mib, 4, &kp, &len, NULL, 0) == -1)
176                 perror("sysctl");
177         else if (len > 0)
178                 printkproc(&kp);
179 }
180 .Ed
181 .Pp
182 The top level names are defined with a CTL_ prefix in
183 .Aq Pa sys/sysctl.h ,
184 and are as follows.
185 The next and subsequent levels down are found in the include files
186 listed here, and described in separate sections below.
187 .Pp
188 .Bl -column CTLXMACHDEPXXX "Next level namesXXXXXX" -offset indent
189 .It Sy "Name    Next level names        Description"
190 .It "CTL\_DEBUG sys/sysctl.h    Debugging"
191 .It "CTL\_VFS   sys/mount.h     Filesystem"
192 .It "CTL\_HW    sys/sysctl.h    Generic CPU, I/O"
193 .It "CTL\_KERN  sys/sysctl.h    High kernel limits"
194 .It "CTL\_MACHDEP       sys/sysctl.h    Machine dependent"
195 .It "CTL\_NET   sys/socket.h    Networking"
196 .It "CTL\_USER  sys/sysctl.h    User-level"
197 .It "CTL\_VM    vm/vm_param.h   Virtual memory"
198 .El
199 .Pp
200 For example, the following retrieves the maximum number of processes allowed
201 in the system:
202 .Pp
203 .Bd -literal -offset indent -compact
204 int mib[2], maxproc;
205 size_t len;
206
207 mib[0] = CTL_KERN;
208 mib[1] = KERN_MAXPROC;
209 len = sizeof(maxproc);
210 sysctl(mib, 2, &maxproc, &len, NULL, 0);
211 .Ed
212 .Pp
213 To retrieve the standard search path for the system utilities:
214 .Pp
215 .Bd -literal -offset indent -compact
216 int mib[2];
217 size_t len;
218 char *p;
219
220 mib[0] = CTL_USER;
221 mib[1] = USER_CS_PATH;
222 sysctl(mib, 2, NULL, &len, NULL, 0);
223 p = malloc(len);
224 sysctl(mib, 2, p, &len, NULL, 0);
225 .Ed
226 .Ss CTL_DEBUG
227 The debugging variables vary from system to system.
228 A debugging variable may be added or deleted without need to recompile
229 .Fn sysctl
230 to know about it.
231 Each time it runs,
232 .Fn sysctl
233 gets the list of debugging variables from the kernel and
234 displays their current values.
235 The system defines twenty
236 .Ns ( Va struct ctldebug )
237 variables named
238 .Nm debug0
239 through
240 .Nm debug19 .
241 They are declared as separate variables so that they can be
242 individually initialized at the location of their associated variable.
243 The loader prevents multiple use of the same variable by issuing errors
244 if a variable is initialized in more than one place.
245 For example, to export the variable
246 .Nm dospecialcheck
247 as a debugging variable, the following declaration would be used:
248 .Bd -literal -offset indent -compact
249 int dospecialcheck = 1;
250 struct ctldebug debug5 = { "dospecialcheck", &dospecialcheck };
251 .Ed
252 .Ss CTL_VFS
253 A distinguished second level name, VFS_GENERIC,
254 is used to get general information about all filesystems.
255 One of its third level identifiers is VFS_MAXTYPENUM
256 that gives the highest valid filesystem type number.
257 Its other third level identifier is VFS_CONF that
258 returns configuration information about the filesystem
259 type given as a fourth level identifier (see
260 .Xr getvfsbyname 3
261 as an example of its use).
262 The remaining second level identifiers are the
263 filesystem type number returned by a
264 .Xr statfs 2
265 call or from VFS_CONF.
266 The third level identifiers available for each filesystem
267 are given in the header file that defines the mount
268 argument structure for that filesystem.
269 .Ss CTL_HW
270 The string and integer information available for the CTL_HW level
271 is detailed below.
272 The changeable column shows whether a process with appropriate
273 privilege 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\_FLOATINGPOINT  integer no"
284 .It "HW\_MACHINE\_ARCH  string  no"
285 .\".It "HW\_DISKNAMES   integer no"
286 .\".It "HW\_DISKSTATS   integer no"
287 .El
288 .Pp
289 .Bl -tag -width 6n
290 .It Li HW_MACHINE
291 The machine class.
292 .It Li HW_MODEL
293 The machine model
294 .It Li HW_NCPU
295 The number of cpus.
296 .It Li HW_BYTEORDER
297 The byteorder (4,321, or 1,234).
298 .It Li HW_PHYSMEM
299 The bytes of physical memory.
300 .It Li HW_USERMEM
301 The bytes of non-kernel memory.
302 .It Li HW_PAGESIZE
303 The software page size.
304 .It Li HW_FLOATINGPOINT
305 Nonzero if the floating point support is in hardware.
306 .It Li HW_MACHINE_ARCH
307 The machine dependent architecture type.
308 .\".It Fa HW_DISKNAMES
309 .\".It Fa HW_DISKSTATS
310 .El
311 .Ss CTL_KERN
312 The string and integer information available for the CTL_KERN level
313 is detailed below.
314 The changeable column shows whether a process with appropriate
315 privilege may change the value.
316 The types of data currently available are process information,
317 system vnodes, the open file entries, routing table entries,
318 virtual memory statistics, load average history, and clock rate
319 information.
320 .Bl -column "KERNXMAXFILESPERPROCXXX" "struct clockrateXXX" -offset indent
321 .It Sy "Second level name       Type    Changeable"
322 .It "KERN\_ARGMAX       integer no"
323 .It "KERN\_BOOTFILE     string  yes"
324 .It "KERN\_BOOTTIME     struct timeval  no"
325 .It "KERN\_CLOCKRATE    struct clockinfo        no"
326 .It "KERN\_FILE struct file     no"
327 .It "KERN\_HOSTID       integer yes"
328 .It "KERN\_HOSTNAME     string  yes"
329 .It "KERN\_JOB\_CONTROL integer no"
330 .It "KERN\_MAXFILES     integer yes"
331 .It "KERN\_MAXFILESPERPROC      integer yes"
332 .It "KERN\_MAXPROC      integer no"
333 .It "KERN\_MAXPROCPERUID        integer yes"
334 .It "KERN\_MAXVNODES    integer yes"
335 .It "KERN\_NGROUPS      integer no"
336 .It "KERN\_NISDOMAINNAME        string  yes"
337 .It "KERN\_OSRELDATE    integer no"
338 .It "KERN\_OSRELEASE    string  no"
339 .It "KERN\_OSREV        integer no"
340 .It "KERN\_OSTYPE       string  no"
341 .It "KERN\_POSIX1       integer no"
342 .It "KERN\_PROC struct proc     no"
343 .It "KERN\_PROF node    not applicable"
344 .It "KERN\_QUANTUM      integer yes"
345 .It "KERN\_SAVED\_IDS   integer no"
346 .It "KERN\_SECURELVL    integer raise only"
347 .It "KERN\_UPDATEINTERVAL       integer no"
348 .It "KERN\_VERSION      string  no"
349 .It "KERN\_VNODE        struct vnode    no"
350 .El
351 .Pp
352 .Bl -tag -width 6n
353 .It Li KERN_ARGMAX
354 The maximum bytes of argument to
355 .Xr execve 2 .
356 .It Li KERN_BOOTFILE
357 The full pathname of the file from which the kernel was loaded.
358 .It Li KERN_BOOTTIME
359 A
360 .Va struct timeval
361 structure is returned.
362 This structure contains the time that the system was booted.
363 .It Li KERN_CLOCKRATE
364 A
365 .Va struct clockinfo
366 structure is returned.
367 This structure contains the clock, statistics clock and profiling clock
368 frequencies, the number of micro-seconds per hz tick and the skew rate.
369 .It Li KERN_FILE
370 Return the entire file table.
371 The returned data consists of a single
372 .Va struct filehead
373 followed by an array of
374 .Va struct file ,
375 whose size depends on the current number of such objects in the system.
376 .It Li KERN_HOSTID
377 Get or set the host id.
378 .It Li KERN_HOSTNAME
379 Get or set the hostname.
380 .It Li KERN_JOB_CONTROL
381 Return 1 if job control is available on this system, otherwise 0.
382 .It Li KERN_MAXFILES
383 The maximum number of files that may be open in the system.
384 .It Li KERN_MAXFILESPERPROC
385 The maximum number of files that may be open for a single process.
386 This limit only applies to processes with an effective uid of nonzero
387 at the time of the open request.
388 Files that have already been opened are not affected if the limit
389 or the effective uid is changed.
390 .It Li KERN_MAXPROC
391 The maximum number of concurrent processes the system will allow.
392 .It Li KERN_MAXPROCPERUID
393 The maximum number of concurrent processes the system will allow
394 for a single effective uid.
395 This limit only applies to processes with an effective uid of nonzero
396 at the time of a fork request.
397 Processes that have already been started are not affected if the limit
398 is changed.
399 .It Li KERN_MAXVNODES
400 The maximum number of vnodes available on the system.
401 .It Li KERN_NGROUPS
402 The maximum number of supplemental groups.
403 .It Li KERN_NISDOMAINNAME
404 The name of the current YP/NIS domain.
405 .It Li KERN_OSRELDATE
406 The system release date in YYYYMM format
407 (January 1996 is encoded as 199601).
408 .It Li KERN_OSRELEASE
409 The system release string.
410 .It Li KERN_OSREV
411 The system revision string.
412 .It Li KERN_OSTYPE
413 The system type string.
414 .It Li KERN_POSIX1
415 The version of
416 .St -p1003.1
417 with which the system
418 attempts to comply.
419 .It Li KERN_PROC
420 Return the entire process table, or a subset of it.
421 An array of
422 .Va struct kinfo_proc
423 structures is returned,
424 whose size depends on the current number of such objects in the system.
425 The third and fourth level names are as follows:
426 .Bl -column "Third level nameXXXXXX" "Fourth level is:XXXXXX" -offset indent
427 .It "Third level name   Fourth level is:"
428 .It "KERN\_PROC\_ALL    None"
429 .It "KERN\_PROC\_PID    A process ID"
430 .It "KERN\_PROC\_PGRP   A process group"
431 .It "KERN\_PROC\_TTY    A tty device"
432 .It "KERN\_PROC\_UID    A user ID"
433 .It "KERN\_PROC\_RUID   A real user ID"
434 .El
435 .It Li KERN_PROF
436 Return profiling information about the kernel.
437 If the kernel is not compiled for profiling,
438 attempts to retrieve any of the KERN_PROF values will
439 fail with
440 .Er ENOENT .
441 The third level names for the string and integer profiling information
442 is detailed below.
443 The changeable column shows whether a process with appropriate
444 privilege may change the value.
445 .Bl -column "GPROFXGMONPARAMXXX" "struct gmonparamXXX" -offset indent
446 .It Sy "Third level name        Type    Changeable"
447 .It "GPROF\_STATE       integer yes"
448 .It "GPROF\_COUNT       u_short[\|]     yes"
449 .It "GPROF\_FROMS       u_short[\|]     yes"
450 .It "GPROF\_TOS struct tostruct yes"
451 .It "GPROF\_GMONPARAM   struct gmonparam        no"
452 .El
453 .Pp
454 The variables are as follows:
455 .Bl -tag -width 6n
456 .It Li GPROF_STATE
457 Returns GMON_PROF_ON or GMON_PROF_OFF to show that profiling
458 is running or stopped.
459 .It Li GPROF_COUNT
460 Array of statistical program counter counts.
461 .It Li GPROF_FROMS
462 Array indexed by program counter of call-from points.
463 .It Li GPROF_TOS
464 Array of
465 .Va struct tostruct
466 describing destination of calls and their counts.
467 .It Li GPROF_GMONPARAM
468 Structure giving the sizes of the above arrays.
469 .El
470 .It Li KERN_QUANTUM
471 The maximum period of time, in microseconds, for which a process is allowed
472 to run without being preempted if other processes are in the run queue.
473 .It Li KERN_SAVED_IDS
474 Returns 1 if saved set-group and saved set-user ID is available.
475 .It Li KERN_SECURELVL
476 The system security level.
477 This level may be raised by processes with appropriate privilege.
478 It may not be lowered.
479 .It Li KERN_VERSION
480 The system version string.
481 .It Li KERN_VNODE
482 Return the entire vnode table.
483 Note, the vnode table is not necessarily a consistent snapshot of
484 the system.
485 The returned data consists of an array whose size depends on the
486 current number of such objects in the system.
487 Each element of the array contains the kernel address of a vnode
488 .Va struct vnode *
489 followed by the vnode itself
490 .Va struct vnode .
491 .El
492 .Ss CTL_MACHDEP
493 The set of variables defined is architecture dependent.
494 The following variables are defined for the i386 architecture.
495 .Bl -column "CONSOLE_DEVICEXXX" "struct bootinfoXXX" -offset indent
496 .It Sy "Second level name       Type    Changeable"
497 .It Li "CPU_CONSDEV     dev_t   no"
498 .It Li "CPU_ADJKERNTZ   int     yes"
499 .It Li "CPU_DISRTCSET   int     yes"
500 .It Li "CPU_BOOTINFO    struct bootinfo no"
501 .It Li "CPU_WALLCLOCK   int     yes"
502 .El
503 .Ss CTL_NET
504 The string and integer information available for the CTL_NET level
505 is detailed below.
506 The changeable column shows whether a process with appropriate
507 privilege may change the value.
508 .Bl -column "Second level nameXXXXXX" "routing messagesXXX" -offset indent
509 .It Sy "Second level name       Type    Changeable"
510 .It "PF\_ROUTE  routing messages        no"
511 .It "PF\_INET   IPv4 values     yes"
512 .It "PF\_INET6  IPv6 values     yes"
513 .El
514 .Pp
515 .Bl -tag -width 6n
516 .It Li PF_ROUTE
517 Return the entire routing table or a subset of it.
518 The data is returned as a sequence of routing messages (see
519 .Xr route 4
520 for the header file, format and meaning).
521 The length of each message is contained in the message header.
522 .Pp
523 The third level name is a protocol number, which is currently always 0.
524 The fourth level name is an address family, which may be set to 0 to
525 select all address families.
526 The fifth and sixth level names are as follows:
527 .Bl -column "Fifth level nameXXXXXX" "Sixth level is:XXX" -offset indent
528 .It Sy "Fifth level name        Sixth level is:"
529 .It "NET\_RT\_FLAGS     rtflags"
530 .It "NET\_RT\_DUMP      None"
531 .It "NET\_RT\_IFLIST    None"
532 .El
533 .It Li PF_INET
534 Get or set various global information about the IPv4
535 (Internet Protocol version 4).
536 The third level name is the protocol.
537 The fourth level name is the variable name.
538 The currently defined protocols and names are:
539 .Bl -column ProtocolXX VariableXX TypeXX ChangeableXX
540 .It Sy "Protocol        Variable        Type    Changeable"
541 .It "icmp       bmcastecho      integer yes"
542 .It "icmp       maskrepl        integer yes"
543 .It "ip forwarding      integer yes"
544 .It "ip redirect        integer yes"
545 .It "ip ttl     integer yes"
546 .It "udp        checksum        integer yes"
547 .El
548 .Pp
549 The variables are as follows:
550 .Bl -tag -width 6n
551 .It Li icmp.bmcastecho
552 Returns 1 if an ICMP echo request to a broadcast or multicast address is
553 to be answered.
554 .It Li icmp.maskrepl
555 Returns 1 if ICMP network mask requests are to be answered.
556 .It Li ip.forwarding
557 Returns 1 when IP forwarding is enabled for the host,
558 meaning that the host is acting as a router.
559 .It Li ip.redirect
560 Returns 1 when ICMP redirects may be sent by the host.
561 This option is ignored unless the host is routing IP packets,
562 and should normally be enabled on all systems.
563 .It Li ip.ttl
564 The maximum time-to-live (hop count) value for an IP packet sourced by
565 the system.
566 This value applies to normal transport protocols, not to ICMP.
567 .It Li udp.checksum
568 Returns 1 when UDP checksums are being computed and checked.
569 Disabling UDP checksums is strongly discouraged.
570 .Pp
571 For variables net.inet.*.ipsec, please refer to
572 .Xr ipsec 4 .
573 .El
574 .It Li PF_INET6
575 Get or set various global information about the IPv6
576 (Internet Protocol version 6).
577 The third level name is the protocol.
578 The fourth level name is the variable name.
579 .Pp
580 For variables net.inet6.* please refer to
581 .Xr inet6 4 .
582 For variables net.inet6.*.ipsec6, please refer to
583 .Xr ipsec 4 .
584 .El
585 .Ss CTL_USER
586 The string and integer information available for the CTL_USER level
587 is detailed below.
588 The changeable column shows whether a process with appropriate
589 privilege may change the value.
590 .Bl -column "USER_COLL_WEIGHTS_MAXXXX" "integerXXX" -offset indent
591 .It Sy "Second level name       Type    Changeable"
592 .It "USER\_BC\_BASE\_MAX        integer no"
593 .It "USER\_BC\_DIM\_MAX integer no"
594 .It "USER\_BC\_SCALE\_MAX       integer no"
595 .It "USER\_BC\_STRING\_MAX      integer no"
596 .It "USER\_COLL\_WEIGHTS\_MAX   integer no"
597 .It "USER\_CS\_PATH     string  no"
598 .It "USER\_EXPR\_NEST\_MAX      integer no"
599 .It "USER\_LINE\_MAX    integer no"
600 .It "USER\_POSIX2\_CHAR\_TERM   integer no"
601 .It "USER\_POSIX2\_C\_BIND      integer no"
602 .It "USER\_POSIX2\_C\_DEV       integer no"
603 .It "USER\_POSIX2\_FORT\_DEV    integer no"
604 .It "USER\_POSIX2\_FORT\_RUN    integer no"
605 .It "USER\_POSIX2\_LOCALEDEF    integer no"
606 .It "USER\_POSIX2\_SW\_DEV      integer no"
607 .It "USER\_POSIX2\_UPE  integer no"
608 .It "USER\_POSIX2\_VERSION      integer no"
609 .It "USER\_RE\_DUP\_MAX integer no"
610 .It "USER\_STREAM\_MAX  integer no"
611 .It "USER\_TZNAME\_MAX  integer no"
612 .El
613 .Bl -tag -width 6n
614 .Pp
615 .It Li USER_BC_BASE_MAX
616 The maximum ibase/obase values in the
617 .Xr bc 1
618 utility.
619 .It Li USER_BC_DIM_MAX
620 The maximum array size in the
621 .Xr bc 1
622 utility.
623 .It Li USER_BC_SCALE_MAX
624 The maximum scale value in the
625 .Xr bc 1
626 utility.
627 .It Li USER_BC_STRING_MAX
628 The maximum string length in the
629 .Xr bc 1
630 utility.
631 .It Li USER_COLL_WEIGHTS_MAX
632 The maximum number of weights that can be assigned to any entry of
633 the LC_COLLATE order keyword in the locale definition file.
634 .It Li USER_CS_PATH
635 Return a value for the
636 .Ev PATH
637 environment variable that finds all the standard utilities.
638 .It Li USER_EXPR_NEST_MAX
639 The maximum number of expressions that can be nested within
640 parenthesis by the
641 .Xr expr 1
642 utility.
643 .It Li USER_LINE_MAX
644 The maximum length in bytes of a text-processing utility's input
645 line.
646 .It Li USER_POSIX2_CHAR_TERM
647 Return 1 if the system supports at least one terminal type capable of
648 all operations described in
649 .St -p1003.2 ,
650 otherwise 0.
651 .It Li USER_POSIX2_C_BIND
652 Return 1 if the system's C-language development facilities support the
653 C-Language Bindings Option, otherwise 0.
654 .It Li USER_POSIX2_C_DEV
655 Return 1 if the system supports the C-Language Development Utilities Option,
656 otherwise 0.
657 .It Li USER_POSIX2_FORT_DEV
658 Return 1 if the system supports the FORTRAN Development Utilities Option,
659 otherwise 0.
660 .It Li USER_POSIX2_FORT_RUN
661 Return 1 if the system supports the FORTRAN Runtime Utilities Option,
662 otherwise 0.
663 .It Li USER_POSIX2_LOCALEDEF
664 Return 1 if the system supports the creation of locales, otherwise 0.
665 .It Li USER_POSIX2_SW_DEV
666 Return 1 if the system supports the Software Development Utilities Option,
667 otherwise 0.
668 .It Li USER_POSIX2_UPE
669 Return 1 if the system supports the User Portability Utilities Option,
670 otherwise 0.
671 .It Li USER_POSIX2_VERSION
672 The version of
673 .St -p1003.2
674 with which the system attempts to comply.
675 .It Li USER_RE_DUP_MAX
676 The maximum number of repeated occurrences of a regular expression
677 permitted when using interval notation.
678 .It Li USER_STREAM_MAX
679 The minimum maximum number of streams that a process may have open
680 at any one time.
681 .It Li USER_TZNAME_MAX
682 The minimum maximum number of types supported for the name of a
683 timezone.
684 .El
685 .Ss CTL_VM
686 The string and integer information available for the CTL_VM level
687 is detailed below.
688 The changeable column shows whether a process with appropriate
689 privilege may change the value.
690 .Bl -column "Second level nameXXXXXX" "struct loadavgXXX" -offset indent
691 .It Sy "Second level name       Type    Changeable"
692 .It "VM\_LOADAVG        struct loadavg  no"
693 .It "VM\_METER  struct vmtotal  no"
694 .It "VM\_PAGEOUT\_ALGORITHM     integer yes"
695 .It "VM\_SWAPPING\_ENABLED      integer maybe"
696 .It "VM\_V\_CACHE\_MAX  integer yes"
697 .It "VM\_V\_CACHE\_MIN  integer yes"
698 .It "VM\_V\_FREE\_MIN   integer yes"
699 .It "VM\_V\_FREE\_RESERVED      integer yes"
700 .It "VM\_V\_FREE\_TARGET        integer yes"
701 .It "VM\_V\_INACTIVE\_TARGET    integer yes"
702 .It "VM\_V\_PAGEOUT\_FREE\_MIN  integer yes"
703 .El
704 .Pp
705 .Bl -tag -width 6n
706 .It Li VM_LOADAVG
707 Return the load average history.
708 The returned data consists of a
709 .Va struct loadavg .
710 .It Li VM_METER
711 Return the system wide virtual memory statistics.
712 The returned data consists of a
713 .Va struct vmtotal .
714 .It Li VM_PAGEOUT_ALGORITHM
715 0 if the statistics-based page management algorithm is in use
716 or 1 if the near-LRU algorithm is in use.
717 .It Li VM_SWAPPING_ENABLED
718 1 if process swapping is enabled or 0 if disabled.  This variable is
719 permanently set to 0 if the kernel was built with swapping disabled.
720 .It Li VM_V_CACHE_MAX
721 Maximum desired size of the cache queue.
722 .It Li VM_V_CACHE_MIN
723 Minimum desired size of the cache queue.  If the cache queue size
724 falls very far below this value, the pageout daemon is awakened.
725 .It Li VM_V_FREE_MIN
726 Minimum amount of memory (cache memory plus free memory)
727 required to be available before a process waiting on memory will be
728 awakened.
729 .It Li VM_V_FREE_RESERVED
730 Processes will awaken the pageout daemon and wait for memory if the
731 number of free and cached pages drops below this value.
732 .It Li VM_V_FREE_TARGET
733 The total amount of free memory (including cache memory) that the
734 pageout daemon tries to maintain.
735 .It Li VM_V_INACTIVE_TARGET
736 The desired number of inactive pages that the pageout daemon should
737 achieve when it runs.  Inactive pages can be quickly inserted into
738 process address space when needed.
739 .It Li VM_V_PAGEOUT_FREE_MIN
740 If the amount of free and cache memory falls below this value, the
741 pageout daemon will enter "memory conserving mode" to avoid deadlock.
742 .El
743 .Sh RETURN VALUES
744 .Rv -std
745 .Sh ERRORS
746 The following errors may be reported:
747 .Bl -tag -width Er
748 .It Bq Er EFAULT
749 The buffer
750 .Fa name ,
751 .Fa oldp ,
752 .Fa newp ,
753 or length pointer
754 .Fa oldlenp
755 contains an invalid address.
756 .It Bq Er EINVAL
757 The
758 .Fa name
759 array is less than two or greater than CTL_MAXNAME.
760 .It Bq Er EINVAL
761 A non-null
762 .Fa newp
763 is given and its specified length in
764 .Fa newlen
765 is too large or too small.
766 .It Bq Er ENOMEM
767 The length pointed to by
768 .Fa oldlenp
769 is too short to hold the requested value.
770 .It Bq Er ENOTDIR
771 The
772 .Fa name
773 array specifies an intermediate rather than terminal name.
774 .It Bq Er EISDIR
775 The
776 .Fa name
777 array specifies a terminal name, but the actual name is not terminal.
778 .It Bq Er ENOENT
779 The
780 .Fa name
781 array specifies a value that is unknown.
782 .It Bq Er EPERM
783 An attempt is made to set a read-only value.
784 .It Bq Er EPERM
785 A process without appropriate privilege attempts to set a value.
786 .El
787 .Sh FILES
788 .Bl -tag -width <netinet/icmpXvar.h> -compact
789 .It Aq Pa sys/sysctl.h
790 definitions for top level identifiers, second level kernel and hardware
791 identifiers, and user level identifiers
792 .It Aq Pa sys/socket.h
793 definitions for second level network identifiers
794 .It Aq Pa sys/gmon.h
795 definitions for third level profiling identifiers
796 .It Aq Pa vm/vm_param.h
797 definitions for second level virtual memory identifiers
798 .It Aq Pa netinet/in.h
799 definitions for third level IPv4/IPv6 identifiers and
800 fourth level IPv4/v6 identifiers
801 .It Aq Pa netinet/icmp_var.h
802 definitions for fourth level ICMP identifiers
803 .It Aq Pa netinet/icmp6.h
804 definitions for fourth level ICMPv6 identifiers
805 .It Aq Pa netinet/udp_var.h
806 definitions for fourth level UDP identifiers
807 .El
808 .Sh SEE ALSO
809 .Xr sysconf 3 ,
810 .Xr sysctl 8
811 .Sh HISTORY
812 The
813 .Fn sysctl
814 function first appeared in
815 .Bx 4.4 .