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