1.\" $NetBSD: sysctl.7,v 1.94 2015/09/29 07:59:15 wiz Exp $ 2.\" 3.\" Copyright (c) 1993 4.\" The Regents of the University of California. All rights reserved. 5.\" 6.\" Redistribution and use in source and binary forms, with or without 7.\" modification, are permitted provided that the following conditions 8.\" are met: 9.\" 1. Redistributions of source code must retain the above copyright 10.\" notice, this list of conditions and the following disclaimer. 11.\" 2. Redistributions in binary form must reproduce the above copyright 12.\" notice, this list of conditions and the following disclaimer in the 13.\" documentation and/or other materials provided with the distribution. 14.\" 3. Neither the name of the University nor the names of its contributors 15.\" may be used to endorse or promote products derived from this software 16.\" without specific prior written permission. 17.\" 18.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 19.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 22.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 23.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 24.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 25.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 26.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 27.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 28.\" SUCH DAMAGE. 29.\" 30.\" @(#)sysctl.3 8.4 (Berkeley) 5/9/95 31.\" 32.Dd September 24, 2015 33.Dt SYSCTL 7 34.Os 35.Sh NAME 36.Nm sysctl 37.Nd system information variables 38.Sh DESCRIPTION 39The 40.Xr sysctl 3 41library function and the 42.Xr sysctl 8 43utility are used to get and set values of system variables, maintained 44by the kernel. 45The variables are organized in a tree and identified by a sequence of 46numbers, conventionally separated by dots with the topmost identifier 47at the left side. 48The numbers have corresponding text names. 49The 50.Xr sysctlnametomib 3 51function or the 52.Fl M 53argument to the 54.Xr sysctl 8 55utility can be used to convert the text representation to the 56numeric one. 57.Pp 58The individual sysctl variables are described below, both the textual 59and numeric form where applicable. 60The textual names can be used as argument to the 61.Xr sysctl 8 62utility and in the file 63.Pa /etc/sysctl.conf . 64The numeric names are usually defined as preprocessor constants and 65are intended for use by programs. 66Every such constant expands to one integer, which identifies the 67sysctl variable relative to the upper level of the tree. 68See the 69.Xr sysctl 3 70manual page for programming examples. 71.Ss Top level names 72The top level names are defined with a 73.Va CTL_ 74prefix in 75.In sys/sysctl.h , 76and are as follows. 77The next and subsequent levels down are found in the include files 78listed here, and described in separate sections below. 79.Bl -column "security" ".Dv CTL_SECURITY" ".In uvm/uvm_param.h" "High kernel limits" 80.It Sy Name Ta Sy Constant Ta Sy Next level names Ta Sy Description 81.It kern Ta Dv CTL_KERN Ta In sys/sysctl.h Ta High kernel limits 82.It vm Ta Dv CTL_VM Ta In uvm/uvm_param.h Ta Virtual memory 83.It vfs Ta Dv CTL_VFS Ta In sys/mount.h Ta Filesystem 84.It net Ta Dv CTL_NET Ta In sys/socket.h Ta Networking 85.It debug Ta Dv CTL_DEBUG Ta In sys/sysctl.h Ta Debugging 86.It hw Ta Dv CTL_HW Ta In sys/sysctl.h Ta Generic CPU, I/O 87.It machdep Ta Dv CTL_MACHDEP Ta In sys/sysctl.h Ta Machine dependent 88.It user Ta Dv CTL_USER Ta In sys/sysctl.h Ta User-level 89.It ddb Ta Dv CTL_DDB Ta In sys/sysctl.h Ta In-kernel debugger 90.It proc Ta Dv CTL_PROC Ta In sys/sysctl.h Ta Per-process 91.It vendor Ta Dv CTL_VENDOR Ta ? Ta Vendor specific 92.It emul Ta Dv CTL_EMUL Ta In sys/sysctl.h Ta Emulation settings 93.It security Ta Dv CTL_SECURITY Ta In sys/sysctl.h Ta Security settings 94.El 95.Ss The debug.* subtree 96The debugging variables vary from system to system. 97A debugging variable may be added or deleted without need to recompile 98.Nm 99to know about it. 100Each time it runs, 101.Nm 102gets the list of debugging variables from the kernel and 103displays their current values. 104The system defines twenty 105.Vt ( struct ctldebug ) 106variables named 107.Dv debug0 108through 109.Dv debug19 . 110They are declared as separate variables so that they can be 111individually initialized at the location of their associated variable. 112The loader prevents multiple use of the same variable by issuing errors 113if a variable is initialized in more than one place. 114For example, to export the variable 115.Va dospecialcheck 116as a debugging variable, the following declaration would be used: 117.Pp 118.Bd -literal -offset indent -compact 119int dospecialcheck = 1; 120struct ctldebug debug5 = { "dospecialcheck", \*[Am]dospecialcheck }; 121.Ed 122.Pp 123Note that the dynamic implementation of 124.Nm 125currently in use largely makes this particular 126.Nm 127interface obsolete. 128See 129.Xr sysctl 8 130.\" and 131.\" .Xr sysctl 9 132for more information. 133.Ss The vfs.* subtree 134A distinguished second level name, 135.Li vfs.generic ( Dv VFS_GENERIC ) , 136is used to get general information about all file systems. 137It has the following third level identifiers: 138.Bl -tag -width "123456" 139.It Li vfs.generic.maxtypenum ( Dv VFS_MAXTYPENUM ) 140The highest valid file system type number. 141.It Li vfs.generic.conf ( Dv VFS_CONF ) 142Returns configuration information about the file system type given as a fourth 143level identifier. 144.It Li vfs.generic.usermount ( Dv VFS_USERMOUNT ) 145Determines if non superuser mounts are allowed, defaults to 146.Dv 0 . 147.It Li vfs.generic.magiclinks ( Dv VFS_MAGICLINKS ) 148Controls if expansion of variables is going to be performed on pathnames 149or not. 150Defaults to no variable expansion, 151.Dv 0 . 152Variables are of the form 153.Li @name 154and the variables supported are described in 155.Xr symlink 7 156under 157.Dq "MAGIC SYMLINKS" . 158.El 159.Pp 160A second level name for controlling the 161.Xr wapbl 4 162(Write Ahead Physical Block Logging file system journalling) 163capabilities with the following third level identifiers: 164.Bl -tag -width "123456" 165.It Li vfs.wapbl.flush_disk_cache 166Controls whether to attempt to flush the disk cache on each commit. 167It defaults to 1 and it should always be on to ensure integrity 168of file system metadata in the event of a power loss. 169For slow disks, turning it off can improve performance. 170.It Li vfs.wapbl.verbose_commit 171For each transaction log commit, print the number of bytes written 172and the time it took to commit as seconds.nanoseconds. 173.El 174.Pp 175The remaining second level identifiers are the file system names, identified 176by the type number returned by a 177.Xr statvfs 2 178call or from 179.Li vfs.generic.conf . 180.Pp 181The third level identifiers available for each file system 182are given in the header file that defines the mount 183argument structure for that file system. 184.Ss The hw.* subtree 185The string and integer information available for the 186.Li hw 187level is detailed below. 188The changeable column shows whether a process with appropriate 189privilege may change the value. 190.Bl -column "hw.machine_arch" "integer" "Changeable" -offset indent 191.It Sy Second level name Sy Type Sy Changeable 192.It hw.alignbytes integer no 193.It hw.byteorder integer no 194.It hw.cnmagic string yes 195.It hw.disknames string no 196.It hw.diskstats struct no 197.It hw.machine string no 198.It hw.machine_arch string no 199.It hw.model string no 200.It hw.ncpu integer no 201.It hw.ncpuonline integer no 202.It hw.pagesize integer no 203.It hw.physmem integer no 204.It hw.physmem64 quad no 205.It hw.usermem integer no 206.It hw.usermem64 quad no 207.El 208.Bl -tag -width "123456" 209.It Li hw.alignbytes ( Dv HW_ALIGNBYTES ) 210Alignment constraint for all possible data types. 211This shows the value 212.Dv ALIGNBYTES 213in 214.In machine/param.h , 215at the kernel compilation time. 216.It Li hw.byteorder ( Dv HW_BYTEORDER ) 217The byteorder (4321, or 1234). 218.It Li hw.cnmagic ( Dv HW_CNMAGIC ) 219The console magic key sequence. 220.It Li hw.disknames ( Dv HW_DISKNAMES ) 221The list of (space separated) disk device names on the system. 222.It Li hw.iostatnames ( Dv HW_IOSTATNAMES ) 223A space separated list of devices that will have I/O statistics 224collected on them. 225.It Li hw.iostats ( Dv HW_IOSTATS ) 226Return statistical information on the NFS mounts, disk and tape 227devices on the system. 228An array of 229.Vt struct io_sysctl 230structures is returned, 231whose size depends on the current number of such objects in the system. 232The third level name is the size of the 233.Vt struct io_sysctl . 234The type of object can be determined by examining the 235.Va type 236element of 237.Vt struct io_sysctl . 238Which can be 239.Dv IOSTAT_DISK 240(disk drive), 241.Dv IOSTAT_TAPE 242(tape drive), or 243.Dv IOSTAT_NFS 244(NFS mount). 245.It Li hw.machine ( Dv HW_MACHINE ) 246The machine class. 247.It Li hw.machine_arch ( Dv HW_MACHINE_ARCH ) 248The machine CPU class. 249.It Li hw.model ( Dv HW_MODEL ) 250The machine model. 251.It Li hw.ncpu ( Dv HW_NCPU ) 252The number of CPUs configured. 253.It Li hw.ncpuonline ( Dv HW_NCPUONLINE ) 254The number of CPUs online. 255.It Li hw.pagesize ( Dv HW_PAGESIZE ) 256The software page size. 257.It Li hw.physmem ( Dv HW_PHYSMEM ) 258The bytes of physical memory as a 32-bit integer. 259.It Li hw.physmem64 ( Dv HW_PHYSMEM64 ) 260The bytes of physical memory as a 64-bit integer. 261.It Li hw.usermem ( Dv HW_USERMEM ) 262The bytes of non-kernel memory as a 32-bit integer. 263.It Li hw.usermem64 ( Dv HW_USERMEM64 ) 264The bytes of non-kernel memory as a 64-bit integer. 265.El 266.Ss The kern.* subtree 267This subtree includes data generally related to the kernel. 268The string and integer information available for the 269.Li kern 270level is detailed below. 271The changeable column shows whether a process with appropriate 272privilege may change the value. 273.Bl -column "kern.posix_reader_writer_locks" \ 274"struct kinfo_drivers" "not applicable" 275.It Sy Second level name Sy Type Sy Changeable 276.It kern.aio_listio_max integer yes 277.It kern.aio_max integer yes 278.It kern.arandom integer no 279.It kern.argmax integer no 280.It kern.boothowto integer no 281.It kern.boottime struct timeval no 282.It kern.buildinfo string no 283.\".It kern.bufq node not applicable 284.It kern.ccpu integer no 285.It kern.clockrate struct clockinfo no 286.It kern.consdev integer no 287.It kern.coredump node not applicable 288.It kern.cp_id struct no 289.It kern.cp_time uint64_t[\|] no 290.It kern.cryptodevallowsoft integer yes 291.It kern.defcorename string yes 292.It kern.detachall integer yes 293.It kern.domainname string yes 294.It kern.drivers struct kinfo_drivers no 295.It kern.dump_on_panic integer yes 296.It kern.file struct file no 297.It kern.forkfsleep integer yes 298.It kern.fscale integer no 299.It kern.fsync integer no 300.It kern.hardclock_ticks integer no 301.It kern.hostid integer yes 302.It kern.hostname string yes 303.It kern.iov_max integer no 304.It kern.ipc node not applicable 305.It kern.job_control integer no 306.It kern.labeloffset integer no 307.It kern.labelsector integer no 308.It kern.login_name_max integer no 309.It kern.logsigexit integer yes 310.It kern.mapped_files integer no 311.It kern.maxfiles integer yes 312.It kern.maxlwp integer yes 313.It kern.maxpartitions integer no 314.It kern.maxphys integer no 315.It kern.maxproc integer yes 316.It kern.maxptys integer yes 317.It kern.maxvnodes integer yes 318.It kern.mbuf node not applicable 319.It kern.memlock integer no 320.It kern.memlock_range integer no 321.It kern.memory_protection integer no 322.It kern.module node not applicable 323.It kern.monotonic_clock integer no 324.It kern.mqueue node not applicable 325.It kern.msgbuf integer no 326.It kern.msgbufsize integer no 327.It kern.ngroups integer no 328.\".It kern.no_sa_support integer yes 329.It kern.ntptime struct ntptimeval no 330.It kern.osrelease string no 331.It kern.osrevision integer no 332.It kern.ostype string no 333.\".It kern.panic_now integer yes 334.It kern.pipe node not applicable 335.It kern.pool struct pool_sysctl no 336.\" .It kern.posix node not applicable 337.It kern.posix1version integer no 338.It kern.posix_aio integer no 339.It kern.posix_barriers integer no 340.It kern.posix_reader_writer_locks integer no 341.\".It kern.posix_sched integer yes 342.It kern.posix_semaphores integer no 343.It kern.posix_spin_locks integer no 344.It kern.posix_threads integer no 345.It kern.posix_timers integer no 346.It kern.proc struct kinfo_proc no 347.It kern.proc2 struct kinfo_proc2 no 348.It kern.proc_args string no 349.It kern.profiling node not applicable 350.\".It kern.pset node not applicable 351.It kern.rawpartition integer no 352.It kern.root_device string no 353.It kern.root_partition integer no 354.It kern.rtc_offset integer yes 355.It kern.saved_ids integer no 356.It kern.sbmax integer yes 357.\".It kern.sched node not applicable 358.It kern.securelevel integer raise only 359.It kern.somaxkva integer yes 360.It kern.synchronized_io integer no 361.It kern.timecounter node not applicable 362.It kern.timex struct no 363.It kern.tkstat node not applicable 364.It kern.tty node not applicable 365.It kern.urandom integer no 366.It kern.usercrypto integer yes 367.It kern.userasymcrypto integer yes 368.It kern.veriexec node not applicable 369.It kern.version string no 370.It kern.vnode struct vnode no 371.El 372.Bl -tag -width "123456" 373.It Li kern.aio_listio_max 374The maximum number of asynchronous 375.Tn I/O 376operations in a single list I/O call. 377Like with all variables related to 378.Xr aio 3 , 379the variable may be created and removed dynamically 380upon loading or unloading the corresponding kernel module. 381.It Li kern.aio_max 382The maximum number of asynchronous I/O operations. 383.It Li kern.arandom 384This variable picks a random number each time it is queried. 385The used random number generator 386.Pf ( Tn RNG ) 387is based on 388.Xr arc4random 3 . 389.It Li kern.argmax ( Dv KERN_ARGMAX ) 390The maximum bytes of argument to 391.Xr execve 2 . 392.It Li kern.boothowto 393Flags passed from the boot loader; see 394.Xr reboot 2 395for the meanings of the flags. 396.It Li kern.boottime ( Dv KERN_BOOTTIME ) 397A 398.Vt struct timeval 399structure is returned. 400This structure contains the time that the system was booted. 401.It Li kern.buildinfo 402When the kernel is built, the build environment may optionally provide 403arbitrary information to be stored in this variable. 404.\" .It Li kern.bufq 405.\" XXX: Undocumented. 406.It Li kern.ccpu ( Dv KERN_CCPU ) 407The scheduler exponential decay value. 408.It Li kern.clockrate ( Dv KERN_CLOCKRATE ) 409A 410.Vt struct clockinfo 411structure is returned. 412This structure contains the clock, statistics clock and profiling clock 413frequencies, the number of micro-seconds per hz tick, and the clock 414skew rate. 415Refer to 416.Xr hz 9 417for additional details. 418.It Li kern.consdev ( Dv KERN_CONSDEV ) 419Console device. 420.It Li kern.coredump 421Settings related to set-id processes coredumps. 422By default, set-id processes do not dump core in situations where 423other processes would. 424The settings in this node allows an administrator to change this 425behavior. 426.Pp 427The third level name is 428.Dv kern.coredump.setid 429and fourth level variables are described below. 430.Bl -column "kern.coredump.setid.group" "integer" "Changeable" -offset indent 431.It Sy Fourth level name Sy Type Sy Changeable 432.It kern.coredump.setid.dump integer yes 433.It kern.coredump.setid.group integer yes 434.It kern.coredump.setid.mode integer yes 435.It kern.coredump.setid.owner integer yes 436.It kern.coredump.setid.path string yes 437.El 438.Bl -tag -width "123456" 439.It Li kern.coredump.setid.dump 440If non-zero, set-id processes will dump core. 441.It Li kern.coredump.setid.group 442The group-id for the set-id processes' coredump. 443.It Li kern.coredump.setid.mode 444The mode for the set-id processes' coredump. 445See 446.Xr chmod 1 . 447.It Li kern.coredump.setid.owner 448The user-id that will be used as the owner of the set-id processes' 449coredump. 450.It Li kern.coredump.setid.path 451The path to which set-id processes' coredumps will be saved to. 452Same syntax as kern.defcorename. 453.El 454.It Li kern.cp_id ( Dv KERN_CP_ID ) 455Mapping of CPU number to CPU id. 456.It Li kern.cp_time ( Dv KERN_CP_TIME ) 457Returns an array of 458.Dv CPUSTATES 459.Vt uint64_t Ns s. 460This array contains the 461number of clock ticks spent in different CPU states. 462On multi-processor systems, the sum across all CPUs is returned unless 463appropriate space is given for one data set for each CPU. 464Data for a specific CPU can also be obtained by adding the number of the 465CPU at the end of the MIB, enlarging it by one. 466.It Li kern.cryptodevallowsoft 467This variable controls userland access to hardware versus software transforms 468in the 469.Xr crypto 4 470system. 471The available values are as follows: 472.Bl -tag -width XX0 -offset indent 473.It Dv \*[Lt] 0 474Always force userlevel requests to use software transforms. 475.It Dv = 0 476If present, use hardware and grant userlevel requests for 477non-accelerated transforms (handling the latter in software). 478.It Dv \*[Gt] 0 479Allow user requests only for transforms which are hardware-accelerated. 480.El 481.It Li kern.defcorename ( Dv KERN_DEFCORENAME ) 482Default template for the name of core dump files (see also 483.Li proc.pid.corename 484in the per-process variables 485.Li proc.* , 486and 487.Xr core 5 488for format of this template). 489The default value is 490.Pa %n.core 491and can be changed with the kernel configuration option 492.Cd options DEFCORENAME 493(see 494.Xr options 4 495). 496.It Li kern.detachall 497Detach all devices at shutdown. 498.It Li kern.domainname ( Dv KERN_DOMAINNAME ) 499Get or set the YP domain name. 500.It Li kern.drivers ( Dv KERN_DRIVERS ) 501Return an array of 502.Vt struct kinfo_drivers 503that contains the name and major device numbers of all the device drivers 504in the current kernel. 505The 506.Va d_name 507field is always a NUL terminated string. 508The 509.Va d_bmajor 510field will be set to \-1 if the driver doesn't have a block device. 511.It Li kern.dump_on_panic ( Dv KERN_DUMP_ON_PANIC ) 512Perform a crash dump on system 513.Xr panic 9 . 514.It Li kern.file ( Dv KERN_FILE ) 515Return the entire file table. 516The returned data consists of a single 517.Vt struct filelist 518followed by an array of 519.Vt struct file , 520whose size depends on the current number of such objects in the system. 521.It Li kern.forkfsleep ( Dv KERN_FORKFSLEEP ) 522If 523.Xr fork 2 524system call fails due to limit on number of processes (either 525the global maxproc limit or user's one), wait for this many 526milliseconds before returning 527.Er EAGAIN 528error to process. 529Useful to keep heavily forking runaway processes in bay. 530Default zero (no sleep). 531Maximum is 20 seconds. 532.It Li kern.fscale ( Dv KERN_FSCALE ) 533The kernel fixed-point scale factor. 534.It Li kern.fsync ( Dv KERN_FSYNC ) 535Return 1 if the 536.St -p1003.1b-93 537File Synchronization Option is available 538on this system, 539otherwise\ 0. 540.It Li kern.hardclock_ticks ( Dv KERN_HARDCLOCK_TICKS ) 541Returns the number of 542.Xr hardclock 9 543ticks. 544.It Li kern.hostid ( Dv KERN_HOSTID ) 545Get or set the host identifier. 546This is aimed to replace the legacy 547.Xr gethostid 3 548and 549.Xr sethostid 3 550system calls. 551.It Li kern.hostname ( Dv KERN_HOSTNAME ) 552Get or set the 553.Xr hostname 1 . 554.It Li kern.iov_max ( Dv KERN_IOV_MAX ) 555Return the maximum number of 556.Vt iovec 557structures that a process has available for use with 558.Xr preadv 2 , 559.Xr pwritev 2 , 560.Xr readv 2 , 561.Xr recvmsg 2 , 562.Xr sendmsg 2 563and 564.Xr writev 2 . 565.It Li kern.ipc ( Dv KERN_SYSVIPC ) 566Return information about the SysV IPC parameters. 567The third level names for the ipc variables are detailed below. 568.Bl -column "kern.ipc.shm_use_phys" "integer" "Changeable" -offset indent 569.It Sy Third level name Sy Type Sy Changeable 570.It kern.ipc.sysvmsg integer no 571.It kern.ipc.sysvsem integer no 572.It kern.ipc.sysvshm integer no 573.It kern.ipc.sysvipc_info struct no 574.It kern.ipc.shmmax integer yes 575.It kern.ipc.shmmni integer yes 576.It kern.ipc.shmseg integer yes 577.It kern.ipc.shmmaxpgs integer yes 578.It kern.ipc.shm_use_phys integer yes 579.It kern.ipc.msgmni integer yes 580.It kern.ipc.msgseg integer yes 581.It kern.ipc.semmni integer yes 582.It kern.ipc.semmns integer yes 583.It kern.ipc.semmnu integer yes 584.El 585.Bl -tag -width "123456" 586.It Li kern.ipc.sysvmsg ( Dv KERN_SYSVIPC_MSG ) 587Returns 1 if System V style message queue functionality is available 588on this system, 589otherwise\ 0. 590.It Li kern.ipc.sysvsem ( Dv KERN_SYSVIPC_SEM ) 591Returns 1 if System V style semaphore functionality is available 592on this system, 593otherwise\ 0. 594.It Li kern.ipc.sysvshm ( Dv KERN_SYSVIPC_SHM ) 595Returns 1 if System V style share memory functionality is available 596on this system, 597otherwise\ 0. 598.It Li kern.ipc.sysvipc_info ( Dv KERN_SYSVIPC_INFO ) 599Return System V style IPC configuration and run-time information. 600The fourth level name selects the System V style IPC facility. 601.Bl -column "KERN_SYSVIPC_MSG_INFO" "struct shm_sysctl_info" -offset indent 602.It Sy Fourth level name Sy Type 603.It KERN_SYSVIPC_MSG_INFO struct msg_sysctl_info 604.It KERN_SYSVIPC_SEM_INFO struct sem_sysctl_info 605.It KERN_SYSVIPC_SHM_INFO struct shm_sysctl_info 606.El 607.Bl -tag -width "123456" 608.It Li KERN_SYSVIPC_MSG_INFO 609Return information on the System V style message facility. 610The 611.Sy msg_sysctl_info 612structure is defined in 613.In sys/msg.h . 614.It Li KERN_SYSVIPC_SEM_INFO 615Return information on the System V style semaphore facility. 616The 617.Sy sem_sysctl_info 618structure is defined in 619.In sys/sem.h . 620.It Li KERN_SYSVIPC_SHM_INFO 621Return information on the System V style shared memory facility. 622The 623.Sy shm_sysctl_info 624structure is defined in 625.In sys/shm.h . 626.El 627.It Li kern.ipc.shmmax ( Dv KERN_SYSVIPC_SHMMAX ) 628Max shared memory segment size in bytes. 629.It Li kern.ipc.shmmni ( Dv KERN_SYSVIPC_SHMMNI ) 630Max number of shared memory identifiers. 631.It Li kern.ipc.shmseg ( Dv KERN_SYSVIPC_SHMSEG ) 632Max shared memory segments per process. 633.It Li kern.ipc.shmmaxpgs ( Dv KERN_SYSVIPC_SHMMAXPGS ) 634Max amount of shared memory in pages. 635.It Li kern.ipc.shm_use_phys ( Dv KERN_SYSVIPC_SHMUSEPHYS ) 636Locking of shared memory in physical memory. 637If 0, memory can be swapped 638out, otherwise it will be locked in physical memory. 639.It Li kern.ipc.msgmni 640Max number of message queue identifiers. 641.It Li kern.ipc.msgseg 642Max number of number of message segments. 643.It Li kern.ipc.semmni 644Max number of number of semaphore identifiers. 645.It Li kern.ipc.semmns 646Max number of number of semaphores in system. 647.It Li kern.ipc.semmnu 648Max number of undo structures in system. 649.El 650.It Li kern.job_control ( Dv KERN_JOB_CONTROL ) 651Return 1 if job control is available on this system, otherwise\ 0. 652.It Li kern.labeloffset ( Dv KERN_LABELOFFSET ) 653The offset within the sector specified by 654.Dv KERN_LABELSECTOR 655of the 656.Xr disklabel 5 . 657.It Li kern.labelsector ( Dv KERN_LABELSECTOR ) 658The sector number containing the 659.Xr disklabel 5 . 660.It Li kern.login_name_max ( Dv KERN_LOGIN_NAME_MAX ) 661The size of the storage required for a login name, in bytes, 662including the terminating NUL. 663.It Li kern.logsigexit ( Dv KERN_LOGSIGEXIT ) 664If this flag is non-zero, the kernel will 665.Xr log 9 666all process exits due to signals which create a 667.Xr core 5 668file, and whether the coredump was created. 669.It Li kern.mapped_files ( Dv KERN_MAPPED_FILES ) 670Returns 1 if the 671.St -p1003.1b-93 672Memory Mapped Files Option is available on this system, 673otherwise\ 0. 674.It Li kern.maxfiles ( Dv KERN_MAXFILES ) 675The maximum number of open files that may be open in the system. 676.It Li kern.maxpartitions ( Dv KERN_MAXPARTITIONS ) 677The maximum number of partitions allowed per disk. 678.It Li kern.maxlwp 679The maximum number of Lightweight Processes (threads) the system allows 680per uid. 681.It Li kern.maxphys ( Dv KERN_MAXPHYS ) 682Maximum raw I/O transfer size. 683.It Li kern.maxproc ( Dv KERN_MAXPROC ) 684The maximum number of simultaneous processes the system will allow. 685.It Li kern.maxptys ( Dv KERN_MAXPTYS ) 686The maximum number of pseudo terminals. 687This value can be both raised and lowered, though it cannot 688be set lower than number of currently used ptys. 689See also 690.Xr pty 4 . 691.It Li kern.maxvnodes ( Dv KERN_MAXVNODES ) 692The maximum number of vnodes available on the system. 693This can only be raised. 694.It Li kern.mbuf ( Dv KERN_MBUF ) 695Return information about the mbuf control variables. 696Mbufs are data structures which store network packets and other data 697structures in the networking code, see 698.Xr mbuf 9 . 699The third level names for the mbuf variables are detailed below. 700The changeable column shows whether a process with appropriate 701privilege may change the value. 702.Bl -column "kern.mbuf.nmbclusters" "integer" "Changeable" -offset indent 703.It Sy Third level name Sy Type Sy Changeable 704.\" XXX Changeable? really? 705.It kern.mbuf.mblowat integer yes 706.It kern.mbuf.mclbytes integer yes 707.It kern.mbuf.mcllowat integer yes 708.It kern.mbuf.msize integer yes 709.It kern.mbuf.nmbclusters integer yes 710.El 711.Pp 712The variables are as follows: 713.Bl -tag -width "123456" 714.It Li kern.mbuf.mblowat ( Dv MBUF_MBLOWAT ) 715The mbuf low water mark. 716.It Li kern.mbuf.mclbytes ( Dv MBUF_MCLBYTES ) 717The mbuf cluster size. 718.It Li kern.mbuf.mcllowat ( Dv MBUF_MCLLOWAT ) 719The mbuf cluster low water mark. 720.It Li kern.mbuf.msize ( Dv MBUF_MSIZE ) 721The mbuf base size. 722.It Li kern.mbuf.nmbclusters ( Dv MBUF_NMBCLUSTERS ) 723The limit on the number of mbuf clusters. 724The variable can only be increased, and only increased on machines with 725direct-mapped pool pages. 726.El 727.It Li kern.memlock ( Dv KERN_MEMLOCK ) 728Returns 1 if the 729.St -p1003.1b-93 730Process Memory Locking Option is available on this system, 731otherwise\ 0. 732.It Li kern.memlock_range ( Dv KERN_MEMLOCK_RANGE ) 733Returns 1 if the 734.St -p1003.1b-93 735Range Memory Locking Option is available on this system, 736otherwise\ 0. 737.It Li kern.memory_protection ( Dv KERN_MEMORY_PROTECTION ) 738Returns 1 if the 739.St -p1003.1b-93 740Memory Protection Option is available on this system, 741otherwise\ 0. 742.It Li kern.module 743Settings related to kernel modules. 744The third level names for the settings are described below. 745.Bl -column "kern.module.autoload" "integer" "Changeable" -offset indent 746.It Sy Third level name Sy Type Sy Changeable 747.It kern.module.autoload integer yes 748.It kern.module.autotime integer yes 749.It kern.module.verbose integer yes 750.El 751.Pp 752The variables are as follows: 753.Bl -tag -width "123456" 754.It Li kern.module.autoload 755A boolean that controls whether kernel modules are loaded automatically. 756See 757.Xr module 7 758for additional details. 759.It Li kern.module.autotime 760An integer that controls the delay before an attempt is made to 761automatically unload a module that was auto-loaded. 762Setting this value to zero disables the auto-unload function. 763.It Li kern.module.verbose 764A boolean that enables or disables verbose 765debug messages related to kernel modules. 766.El 767.It Li kern.monotonic_clock ( Dv KERN_MONOTONIC_CLOCK ) 768Returns the standard version the implementation of the 769.St -p1003.1b-93 770Monotonic Clock Option conforms to, 771otherwise\ 0. 772.It Li kern.mqueue 773Settings related to 774.Tn POSIX 775message queues; see 776.Xr mqueue 3 . 777This node is created dynamically when 778the corresponding kernel module is loaded. 779The third level names for the settings are described below. 780.Bl -column "kern.mqueue.mq_max_msgsize" "integer" "Changeable" -offset indent 781.It Sy Third level name Sy Type Sy Changeable 782.It kern.mqueue.mq_open_max integer yes 783.It kern.mqueue.mq_prio_max integer yes 784.It kern.mqueue.mq_max_msgsize integer yes 785.It kern.mqueue.mq_def_maxmsg integer yes 786.It kern.mqueue.mq_max_maxmsg integer yes 787.El 788.Pp 789The variables are: 790.Bl -tag -width "123456" 791.It Li kern.mqueue.mq_open_max 792The maximum number of message queue descriptors any single process can open. 793.It Li kern.mqueue.mq_prio_max 794The maximum priority of a message. 795.It Li kern.mqueue.mq_max_msgsize 796The maximum size of a message in a message queue. 797.It Li kern.mqueue.mq_def_maxmsg 798The default maximum message count. 799.It Li kern.mqueue.mq_max_maxmsg 800The maximum number of messages in a message queue. 801.El 802.It Li kern.msgbuf ( Dv KERN_MSGBUF ) 803The kernel message buffer, rotated so that the head of the circular kernel 804message buffer is at the start of the returned data. 805The returned data may contain NUL bytes. 806.It Li kern.msgbufsize ( Dv KERN_MSGBUFSIZE ) 807The maximum number of characters that the kernel message buffer can hold. 808.It Li kern.ngroups ( Dv KERN_NGROUPS ) 809The maximum number of supplemental groups. 810.\" .It Li kern.no_sa_support 811.\" XXX: Undocumented. 812.It Li kern.ntptime ( Dv KERN_NTPTIME ) 813A 814.Vt struct ntptimeval 815structure is returned. 816This structure contains data used by the 817.Xr ntpd 8 818program. 819.It Li kern.osrelease ( Dv KERN_OSRELEASE ) 820The system release string. 821.It Li kern.osrevision ( Dv KERN_OSREV ) 822The system revision string. 823.It Li kern.ostype ( Dv KERN_OSTYPE ) 824The system type string. 825.\".It Li kern.panic_now 826.\" XXX: Undocumented. 827.It Li kern.pipe ( Dv KERN_PIPE ) 828Pipe settings. 829The third level names for the integer pipe settings is detailed below. 830The changeable column shows whether a process with appropriate 831privilege may change the value. 832.Bl -column "kern.pipe.maxbigpipes" "integer" "Changeable" -offset indent 833.It Sy Third level name Sy Type Sy Changeable 834.It kern.pipe.kvasiz integer yes 835.It kern.pipe.maxbigpipes integer yes 836.It kern.pipe.maxkvasz integer yes 837.It kern.pipe.limitkva integer yes 838.It kern.pipe.nbigpipes integer yes 839.El 840.Pp 841The variables are as follows: 842.Bl -tag -width "123456" 843.It Li kern.pipe.kvasiz ( Dv KERN_PIPE_KVASIZ ) 844Amount of kernel memory consumed by pipe buffers. 845.It Li kern.pipe.maxbigpipes ( Dv KERN_PIPE_MAXBIGPIPES ) 846Maximum number of 847.Dq big 848pipes. 849.It Li kern.pipe.maxkvasz ( Dv KERN_PIPE_MAXKVASZ ) 850Maximum amount of kernel memory to be used for pipes. 851.It Li kern.pipe.limitkva ( Dv KERN_PIPE_LIMITKVA ) 852Limit for direct transfers via page loan. 853.It Li kern.pipe.nbigpipes ( Dv KERN_PIPE_NBIGPIPES ) 854Number of 855.Dq big 856pipes. 857.El 858.It Li kern.pool 859Provides statistics about the 860.Xr pool 9 861and 862.Xr pool_cache 9 863subsystems. 864.\" XXX: Undocumented .It Li kern.posix ( ? ) 865.\" This is a node in which the only variable is semmax. 866.It Li kern.posix1version ( Dv KERN_POSIX1 ) 867The version of ISO/IEC 9945 868.Pq St -p1003.1 869with which the system attempts to comply. 870.It Li kern.posix_aio 871The version of 872.St -p1003.1 873and its Asynchronous I/O option to which the system attempts to conform. 874.It Li kern.posix_barriers ( Dv KERN_POSIX_BARRIERS ) 875The version of 876.St -p1003.1 877and its 878Barriers 879option to which the system attempts to conform, 880otherwise\ 0. 881.It Li kern.posix_reader_writer_locks ( Dv KERN_POSIX_READER_WRITER_LOCKS ) 882The version of 883.St -p1003.1 884and its 885Read-Write Locks 886option to which the system attempts to conform, 887otherwise\ 0. 888.\".It Li kern.posix_sched 889.\" XXX: Undocumented. 890.It Li kern.posix_semaphores ( Dv KERN_POSIX_SEMAPHORES ) 891The version of 892.St -p1003.1 893and its 894Semaphores 895option to which the system attempts to conform, 896otherwise\ 0. 897.It Li kern.posix_spin_locks ( Dv KERN_POSIX_SPIN_LOCKS ) 898The version of 899.St -p1003.1 900and its 901Spin Locks 902option to which the system attempts to conform, 903otherwise\ 0. 904.It Li kern.posix_threads ( Dv KERN_POSIX_THREADS ) 905The version of 906.St -p1003.1 907and its 908Threads 909option to which the system attempts to conform, 910otherwise\ 0. 911.It Li kern.posix_timers ( Dv KERN_POSIX_TIMERS ) 912The version of 913.St -p1003.1 914and its 915Timers 916option to which the system attempts to conform, 917otherwise\ 0. 918.It Li kern.proc ( Dv KERN_PROC ) 919Return the entire process table, or a subset of it. 920An array of 921.Vt struct kinfo_proc 922structures is returned, 923whose size depends on the current number of such objects in the system. 924The third and fourth level numeric names are as follows: 925.Bl -column "KERN_PROC_SESSION" "Fourth level is:" -offset indent 926.It Sy Third level name Sy Fourth level is: 927.It KERN_PROC_ALL None 928.It KERN_PROC_GID A group ID 929.It KERN_PROC_PID A process ID 930.It KERN_PROC_PGRP A process group 931.It KERN_PROC_RGID A real group ID 932.It KERN_PROC_RUID A real user ID 933.It KERN_PROC_SESSION A session ID 934.It KERN_PROC_TTY A tty device 935.It KERN_PROC_UID A user ID 936.El 937.It Li kern.proc2 ( Dv KERN_PROC2 ) 938As for 939.Dv KERN_PROC , 940but an array of 941.Vt struct kinfo_proc2 942structures are returned. 943The fifth level name is the size of the 944.Vt struct kinfo_proc2 945and the sixth level name is the number of structures to return. 946.It Li kern.proc_args ( Dv KERN_PROC_ARGS ) 947Return the argv or environment strings (or the number thereof) 948of a process. 949Multiple strings are returned separated by NUL characters. 950The third level name is the process ID. 951The fourth level name is as follows: 952.Bl -column "KERN_PROG_PATHNAME" "The full pathname of the executable" -offset indent 953.It Dv KERN_PROC_ARGV The argv strings 954.It Dv KERN_PROC_ENV The environ strings 955.It Dv KERN_PROC_NARGV The number of argv strings 956.It Dv KERN_PROC_NENV The number of environ strings 957.It Dv KERN_PROC_PATHNAME The full pathname of the executable 958.El 959.It Li kern.profiling ( Dv KERN_PROF ) 960Return profiling information about the kernel. 961If the kernel is not compiled for profiling, 962attempts to retrieve any of the 963.Dv KERN_PROF 964values will fail with 965.Er EOPNOTSUPP . 966The third level names for the string and integer profiling information 967is detailed below. 968The changeable column shows whether a process with appropriate 969privilege may change the value. 970.Bl -column "kern.profiling.gmonparam" "struct gmonparam" "Changeable" -offset indent 971.It Sy Third level name Sy Type Sy Changeable 972.It kern.profiling.count u_short[\|] yes 973.It kern.profiling.froms u_short[\|] yes 974.It kern.profiling.gmonparam struct gmonparam no 975.It kern.profiling.state integer yes 976.It kern.profiling.tos struct tostruct yes 977.El 978.Pp 979The variables are as follows: 980.Bl -tag -width "123456" 981.It Li kern.profiling.count ( Dv GPROF_COUNT ) 982Array of statistical program counter counts. 983.It Li kern.profiling.froms ( Dv GPROF_FROMS ) 984Array indexed by program counter of call-from points. 985.It Li kern.profiling.gmonparams ( Dv GPROF_GMONPARAM ) 986Structure giving the sizes of the above arrays. 987.It Li kern.profiling.state ( Dv GPROF_STATE ) 988Profiling state. 989If set to 990.Dv GMON_PROF_ON , 991starts profiling. 992If set to 993.Dv GMON_PROF_OFF , 994stops profiling. 995.It Li kern.profiling.tos ( Dv GPROF_TOS ) 996Array of 997.Vt struct tostruct 998describing destination of calls and their counts. 999.El 1000.\" .It Li kern.pset 1001.\" XXX: Undocumented. 1002.It Li kern.rawpartition ( Dv KERN_RAWPARTITION ) 1003The raw partition of a disk (a == 0). 1004.It Li kern.root_device ( Dv KERN_ROOT_DEVICE ) 1005The name of the root device (e.g., 1006.Dq wd0 ) . 1007.It Li kern.root_partition ( Dv KERN_ROOT_PARTITION ) 1008The root partition on the root device (a == 0). 1009.It Li kern.rtc_offset ( Dv KERN_RTC_OFFSET ) 1010Return the offset of real time clock from UTC in minutes. 1011.It Li kern.saved_ids ( Dv KERN_SAVED_IDS ) 1012Returns 1 if saved set-group and saved set-user ID is available. 1013.It Li kern.sbmax ( Dv KERN_SBMAX ) 1014Maximum socket buffer size. 1015.\" XXX units? 1016.It Li kern.securelevel ( Dv KERN_SECURELVL ) 1017See 1018.Xr secmodel_securelevel 9 . 1019.\" .It Li kern.sched 1020.\" XXX: Undocumented. 1021.It Li kern.somaxkva ( Dv KERN_SOMAXKVA ) 1022Maximum amount of kernel memory to be used for socket buffers. 1023.\" XXX units? 1024.It Li kern.synchronized_io ( Dv KERN_SYNCHRONIZED_IO ) 1025Returns 1 if the 1026.St -p1003.1b-93 1027Synchronized I/O Option is available on this system, 1028otherwise\ 0. 1029.It Li kern.timecounter ( dynamic ) 1030Display and control the timecounter source of the system. 1031.Bl -column "kern.timecounter.timestepwarnings" "integer" "Changeable" -offset indent 1032.It Sy Third level name Sy Type Sy Changeable 1033.It kern.timecounter.choice string no 1034.It kern.timecounter.hardware string yes 1035.It kern.timecounter.timestepwarnings integer yes 1036.El 1037.Pp 1038The variables are as follows: 1039.Bl -tag -width "123456" 1040.It Li kern.timecounter.choice ( dynamic ) 1041The list of available timecounters with their quality and frequency. 1042.It Li kern.timecounter.hardware ( dynamic ) 1043The currently selected timecounter source. 1044.It Li kern.timecounter.timestepwarnings ( dynamic ) 1045If non-zero display a message each time the time is stepped. 1046.El 1047.It Li kern.timex ( Dv KERN_TIMEX ) 1048Not available. 1049.It Li kern.tkstat ( Dv KERN_TKSTAT ) 1050Return information about the number of characters sent and received 1051on ttys. 1052The third level names for the tty statistic variables are detailed below. 1053The changeable column shows whether a process 1054with appropriate privilege may change the value. 1055.Bl -column "kern.tkstat.cancc" "quad" "Changeable" -offset indent 1056.It Sy Third level name Sy Type Sy Changeable 1057.It kern.tkstat.cancc quad no 1058.It kern.tkstat.nin quad no 1059.It kern.tkstat.nout quad no 1060.It kern.tkstat.rawcc quad no 1061.El 1062.Pp 1063The variables are as follows: 1064.Bl -tag -width "123456" 1065.It Li kern.tkstat.cancc ( Dv KERN_TKSTAT_CANCC ) 1066The number of canonical input characters. 1067.It Li kern.tkstat.nin ( Dv KERN_TKSTAT_NIN ) 1068The total number of input characters. 1069.It Li kern.tkstat.nout ( Dv KERN_TKSTAT_NOUT ) 1070The total number of output characters. 1071.It Li kern.tkstat.rawcc ( Dv KERN_TKSTAT_RAWCC ) 1072The number of raw input characters. 1073.El 1074.It Li kern.tty 1075The third level names for the tty setup variables are detailed below. 1076The changeable column shows whether a process 1077with appropriate privilege may change the value. 1078.Bl -column "kern.tty.qsize" "int" "Changeable" -offset indent 1079.It Sy Third level name Sy Type Sy Changeable 1080.It kern.tty.qsize int yes 1081.El 1082.Pp 1083The variables are as follows: 1084.Bl -tag -width "123456" 1085.It Li kern.tty.qsize 1086Control/display the size of the default input and output queues selected 1087during tty creation. 1088Is converted to a power of two and its range is between 1089.Dv 1024 1090and 1091.Dv 65536 . 1092.El 1093.It Li kern.uidinfo 1094Resource usage for the current user. 1095.Bl -column "kern.uidinfo.proccnt" "integer" "Changeable" -offset indent 1096.It Sy Third level name Sy Type Sy Changeable 1097.It kern.uidinfo.proccnt integer no 1098.It kern.uidinfo.lwpcnt integer no 1099.It kern.uidinfo.lockcnt integer no 1100.It kern.uidinfo.sbsize integer no 1101.El 1102.Bl -tag -width "123456" 1103.It Li kern.uidinfo.proccnt 1104Returns the number of active processes for the current user. 1105.It Li kern.uidinfo.lwpcnt 1106Returns the number of active threads for the current user; the first thread 1107of each process is not counted. 1108.It Li kern.uidinfo.lockcnt 1109Number of locks held by the current user. 1110.It Li kern.uidinfo.sbsize 1111Number of bytes in socket buffers allocated to the current user. 1112.El 1113.It Li kern.urandom ( Dv KERN_URND ) 1114Random integer value. 1115.It Li kern.usercrypto 1116When enabled, allows userland to 1117.Xr open 2 1118the 1119.Pa /dev/crypto 1120special device, used by the 1121.Xr crypto 4 1122system. 1123.It Li kern.userasymcrypto 1124Enables or disables the use of software asymmetric crypto support in the 1125.Xr crypto 4 1126system. 1127.It Li kern.veriexec 1128Runtime information for 1129.Xr veriexec 8 . 1130.Bl -column "kern.veriexec.algorithms" "integer" "Changeable" -offset indent 1131.It Sy Third level name Sy Type Sy Changeable 1132.It kern.veriexec.algorithms string no 1133.It kern.veriexec.count node not applicable 1134.It kern.veriexec.strict integer yes 1135.It kern.veriexec.verbose integer yes 1136.El 1137.Bl -tag -width "123456" 1138.It Li kern.veriexec.algorithms 1139Returns a string with the supported algorithms in Veriexec. 1140.It Li kern.veriexec.count 1141Sub-nodes are added to this node as new mounts are monitored by Veriexec. 1142Each mount will be under its own 1143.No tableN 1144node. 1145Under each node there will be three variables, indicating the mount 1146point, the file system type, and the number of entries. 1147.It Li kern.veriexec.strict 1148Controls the strict level of Veriexec. 1149See 1150.Xr security 7 1151for more information on each level's implications. 1152.It Li kern.veriexec.verbose 1153Controls the verbosity level of Veriexec. 1154If 0, only the minimal 1155indication required will be given about what's happening - fingerprint 1156mismatches, removal of entries from the tables, modification of a 1157fingerprinted file. 1158If 1, more messages will be printed (ie., when a file with a valid 1159fingerprint is accessed). 1160Verbose level 2 is debug mode. 1161.El 1162.It Li kern.version ( Dv KERN_VERSION ) 1163The system version string. 1164.It Li kern.vnode ( Dv KERN_VNODE ) 1165Return the entire vnode table. 1166Note, the vnode table is not necessarily a consistent snapshot of 1167the system. 1168The returned data consists of an array whose size depends on the 1169current number of such objects in the system. 1170Each element of the array contains the kernel address of a vnode 1171.Vt struct vnode * 1172followed by the vnode itself 1173.Vt struct vnode . 1174.\" XXX: Undocumented: kern.lwp: no children? 1175.El 1176.Ss The machdep.* subtree 1177The set of variables defined is architecture dependent. 1178Most architectures define at least the following variables. 1179.Bl -column "machdep.booted_kernel" "Type" "Changeable" -offset indent 1180.It Sy Second level name Sy Type Sy Changeable 1181.It Li machdep.booted_kernel string no 1182.El 1183.\" XXX: Document the above. 1184.Ss The net.* subtree 1185The string and integer information available for the 1186.Li net 1187level is detailed below. 1188The changeable column shows whether a process with appropriate 1189privilege may change the value. 1190The second and third levels are typically the protocol family and 1191protocol number, though this is not always the case. 1192.Bl -column "Second level name" "IPsec key management values" "Changeable" -offset indent 1193.It Sy Second level name Sy Type Sy Changeable 1194.It net.route routing messages no 1195.It net.inet IPv4 values yes 1196.It net.inet6 IPv6 values yes 1197.It net.key IPsec key management values yes 1198.El 1199.Bl -tag -width "123456" 1200.It Li net.route ( Dv PF_ROUTE ) 1201.\" XXX really? 1202Return the entire routing table or a subset of it. 1203The data is returned as a sequence of routing messages (see 1204.Xr route 4 1205for the header file, format and meaning). 1206The length of each message is contained in the message header. 1207.Pp 1208The third level name is a protocol number, which is currently always\ 0. 1209The fourth level name is an address family, which may be set to 0 to 1210select all address families. 1211The fifth and sixth level names are as follows: 1212.Bl -column "Fifth level name" "Sixth level is:" -offset indent 1213.It Sy Fifth level name Sy Sixth level is: 1214.It NET_RT_FLAGS rtflags 1215.It NET_RT_DUMP None 1216.It NET_RT_IFLIST None 1217.El 1218.It Li net.inet ( Dv PF_INET ) 1219Get or set various global information about the IPv4 1220.Pq Internet Protocol version 4 . 1221The third level name is the protocol. 1222The fourth level name is the variable name. 1223The currently defined protocols and names are: 1224.Bl -column "Protocol" "anonportalgo.available" "integer" "Changeable" -offset indent 1225.It Sy Protocol Variable Sy Type Sy Changeable 1226.It arp down integer yes 1227.It arp keep integer yes 1228.It arp log_movements integer yes 1229.It arp log_permanent_modify integer yes 1230.It arp log_unknown_network integer yes 1231.It arp log_wrong_iface integer yes 1232.It arp prune integer yes 1233.It arp refresh integer yes 1234.It carp allow integer yes 1235.It carp preempt integer yes 1236.It carp log integer yes 1237.It carp arpbalance integer yes 1238.It icmp errppslimit integer yes 1239.It icmp maskrepl integer yes 1240.It icmp rediraccept integer yes 1241.It icmp redirtimeout integer yes 1242.It icmp bmcastecho integer yes 1243.It ip allowsrcrt integer yes 1244.It ip anonportalgo.selected string yes 1245.It ip anonportalgo.available string yes 1246.It ip anonportalgo.reserve struct yes 1247.It ip anonportmax integer yes 1248.It ip anonportmin integer yes 1249.It ip checkinterface integer yes 1250.It ip directed-broadcast integer yes 1251.It ip do_loopback_cksum integer yes 1252.It ip forwarding integer yes 1253.It ip forwsrcrt integer yes 1254.It ip gifttl integer yes 1255.It ip grettl integer yes 1256.It ip hashsize integer yes 1257.It ip hostzerobroadcast integer yes 1258.It ip lowportmin integer yes 1259.It ip lowportmax integer yes 1260.It ip maxflows integer yes 1261.It ip maxfragpackets integer yes 1262.It ip mtudisc integer yes 1263.It ip mtudisctimeout integer yes 1264.It ip random_id integer yes 1265.It ip redirect integer yes 1266.It ip subnetsarelocal integer yes 1267.It ip ttl integer yes 1268.It tcp rfc1323 integer yes 1269.It tcp sendspace integer yes 1270.It tcp recvspace integer yes 1271.It tcp mssdflt integer yes 1272.It tcp syn_cache_limit integer yes 1273.It tcp syn_bucket_limit integer yes 1274.It tcp syn_cache_interval integer yes 1275.It tcp init_win integer yes 1276.It tcp init_win_local integer yes 1277.It tcp mss_ifmtu integer yes 1278.It tcp win_scale integer yes 1279.It tcp timestamps integer yes 1280.It tcp compat_42 integer yes 1281.It tcp cwm integer yes 1282.It tcp cwm_burstsize integer yes 1283.It tcp ack_on_push integer yes 1284.It tcp keepidle integer yes 1285.It tcp keepintvl integer yes 1286.It tcp keepcnt integer yes 1287.It tcp slowhz integer no 1288.It tcp keepinit integer yes 1289.It tcp log_refused integer yes 1290.It tcp rstppslimit integer yes 1291.It tcp ident struct no 1292.It tcp drop struct no 1293.It tcp sack.enable integer yes 1294.It tcp sack.globalholes integer no 1295.It tcp sack.globalmaxholes integer yes 1296.It tcp sack.maxholes integer yes 1297.It tcp ecn.enable integer yes 1298.It tcp ecn.maxretries integer yes 1299.It tcp congctl.selected string yes 1300.It tcp congctl.available string yes 1301.It tcp abc.enable integer yes 1302.It tcp abc.aggressive integer yes 1303.It udp checksum integer yes 1304.It udp do_loopback_cksum integer yes 1305.It udp recvspace integer yes 1306.It udp sendspace integer yes 1307.El 1308.Pp 1309The variables are as follows: 1310.Bl -tag -width "123456" 1311.It Li arp.down 1312Failed ARP entry lifetime. 1313.It Li arp.keep 1314Valid ARP entry lifetime. 1315.It Li arp.prune 1316ARP cache pruning interval. 1317.It Li arp.refresh 1318ARP entry refresh interval. 1319.It Li carp.allow 1320If set to 0, incoming 1321.Xr carp 4 1322packets will not be processed. 1323If set to any other value, processing will occur. 1324Enabled by default. 1325.It Li carp.arpbalance 1326If set to any value other than 0, the ARP balancing functionality of 1327.Xr carp 4 1328is enabled. 1329When ARP requests are received for an IP address which is part of any virtual 1330host, carp will hash the source IP in the ARP request to select one of the 1331virtual hosts from the set of all the virtual hosts which have that IP address. 1332The master of that host will respond with the correct virtual MAC address. 1333Disabled by default. 1334.It Li carp.log 1335If set to any value other than 0, 1336.Xr carp 4 1337will log errors. 1338Disabled by default. 1339.It Li carp.preempt 1340If set to 0, 1341.Xr carp 4 1342will not attempt to become master if it is receiving advertisements from 1343another active master. 1344If set to any other value, carp will become master of the virtual host if it 1345believes it can send advertisements more frequently than the current master. 1346Disabled by default. 1347.It Li ip.allowsrcrt 1348If set to 1, the host accepts source routed packets. 1349.It Li ip.anonportalgo.available 1350The available RFC 6056 port randomization algorithms. 1351.It Li ip.anonportalgo.reserve 1352A bitmask of ports that will not be used during anonymous or privileged 1353port selection. 1354.It Li ip.anonportalgo.selected 1355The currently selected RFC 6056 port randomization algorithm. 1356.It Li ip.anonportmax 1357The highest port number to use for TCP and UDP ephemeral port allocation. 1358This cannot be set to less than 1024 or greater than 65535, and must 1359be greater than 1360.Li ip.anonportmin . 1361.It Li ip.anonportmin 1362The lowest port number to use for TCP and UDP ephemeral port allocation. 1363This cannot be set to less than 1024 or greater than 65535. 1364.It Li ip.checkinterface 1365If set to non-zero, the host will reject packets addressed to it 1366that arrive on an interface not bound to that address. 1367Currently, this must be disabled if ipnat is used to translate the 1368destination address to another local interface, or if addresses 1369are added to the loopback interface instead of the interface where 1370the packets for those packets are received. 1371.It Li ip.directed-broadcast 1372If set to 1, enables directed broadcast behavior for the host. 1373.It Li ip.do_loopback_cksum 1374Perform IP checksum on loopback. 1375.It Li ip.forwarding 1376If set to 1, enables IP forwarding for the host, 1377meaning that the host is acting as a router. 1378.It Li ip.forwsrcrt 1379If set to 1, enables forwarding of source-routed packets for the host. 1380This value may only be changed if the kernel security level is less than 1. 1381.It Li ip.gifttl 1382The maximum time-to-live (hop count) value for an IPv4 packet generated by 1383.Xr gif 4 1384tunnel interface. 1385.It Li ip.grettl 1386The maximum time-to-live (hop count) value for an IPv4 packet generated by 1387.Xr gre 4 1388tunnel interface. 1389.It Li ip.hashsize 1390The size of IPv4 Fast Forward hash table. 1391This value must be a power of 2 (64, 256...). 1392A larger hash table size results in fewer collisions. 1393Also see 1394.Li ip.maxflows . 1395.It Li ip.hostzerobroadcast 1396All zeroes address is broadcast address. 1397.It Li ip.lowportmax 1398The highest port number to use for TCP and UDP reserved port allocation. 1399This cannot be set to less than 0 or greater than 1024, and must 1400be greater than 1401.Li ip.lowportmin . 1402.It Li ip.lowportmin 1403The lowest port number to use for TCP and UDP reserved port allocation. 1404This cannot be set to less than 0 or greater than 1024, and must 1405be smaller than 1406.Li ip.lowportmax . 1407.It Li ip.maxflows 1408IPv4 Fast Forwarding is enabled by default. 1409If set to 0, IPv4 Fast Forwarding is disabled. 1410.Li ip.maxflows 1411controls the maximum amount of flows which can be created. 1412The default value is 256. 1413.It Li ip.maxfragpackets 1414The maximum number of fragmented packets the node will accept. 14150 means that the node will not accept any fragmented packets. 1416\-1 means that the node will accept as many fragmented packets as it receives. 1417The flag is provided basically for avoiding possible DoS attacks. 1418.It Li ip.mtudisc 1419If set to 1, enables Path MTU Discovery (RFC 1191). 1420When Path MTU Discovery is enabled, the transmitted TCP segment 1421size will be determined by the advertised maximum segment size 1422(MSS) from the remote end, as constrained by the path MTU. 1423If MTU Discovery is disabled, the transmitted segment size will 1424never be greater than 1425.Li tcp.mssdflt 1426(the local maximum segment size). 1427.It Li ip.mtudisctimeout 1428The number of seconds in which a route added by the Path MTU 1429Discovery engine will time out. 1430When the route times out, the Path 1431MTU Discovery engine will attempt to probe a larger path MTU. 1432.It Li ip.random_id 1433Assign random ip_id values. 1434.It Li ip.redirect 1435If set to 1, ICMP redirects may be sent by the host. 1436This option is ignored unless the host is routing IP packets, 1437and should normally be enabled on all systems. 1438.It Li ip.subnetsarelocal 1439If set to 1, subnets are to be considered local addresses. 1440.It Li ip.ttl 1441The maximum time-to-live (hop count) value for an IP packet sourced by 1442the system. 1443This value applies to normal transport protocols, not to ICMP. 1444.It Li icmp.errppslimit 1445The variable specifies the maximum number of outgoing ICMP error messages, 1446per second. 1447ICMP error messages that exceeded the value are subject to rate limitation 1448and will not go out from the node. 1449Negative value disables rate limitation. 1450.It Li icmp.maskrepl 1451If set to 1, ICMP network mask requests are to be answered. 1452.It Li icmp.rediraccept 1453If set to non-zero, the host will accept ICMP redirect packets. 1454Note that routers will never accept ICMP redirect packets, 1455and the variable is meaningful on IP hosts only. 1456.It Li icmp.redirtimeout 1457The variable specifies lifetime of routing entries generated by incoming 1458ICMP redirect. 1459This defaults to 600 seconds. 1460.It Li icmp.returndatabytes 1461Number of bytes to return in an ICMP error message. 1462.It Li icmp.bmcastecho 1463If set to 1, enables responding to ICMP echo or timestamp request to the 1464broadcast address. 1465.It Li tcp.ack_on_push 1466If set to 1, TCP is to immediately transmit an ACK upon reception of 1467a packet with PUSH set. 1468This can avoid losing a round trip time in some rare situations, 1469but has the caveat of potentially defeating TCP's delayed ACK algorithm. 1470Use of this option is generally not recommended, but 1471the variable exists in case your configuration really needs it. 1472.It Li tcp.compat_42 1473If set to 1, enables work-arounds for bugs in the 4.2BSD TCP implementation. 1474Use of this option is not recommended, although it may be 1475required in order to communicate with extremely old TCP implementations. 1476.It Li tcp.cwm 1477If set to 1, enables use of the Hughes/Touch/Heidemann Congestion Window 1478Monitoring algorithm. 1479This algorithm prevents line-rate bursts of packets that could 1480otherwise occur when data begins flowing on an idle TCP connection. 1481These line-rate bursts can contribute to network and router congestion. 1482This can be particularly useful on World Wide Web servers 1483which support HTTP/1.1, which has lingering connections. 1484.It Li tcp.cwm_burstsize 1485The Congestion Window Monitoring allowed burst size, in terms 1486of packet count. 1487.It Li tcp.delack_ticks 1488Number of ticks to delay sending an ACK. 1489.It Li tcp.do_loopback_cksum 1490Perform TCP checksum on loopback. 1491.It Li tcp.init_win 1492A value indicating the TCP initial congestion window. 1493The valid range 1494is 0 to 10 (maximum specified by RFC6928), 1495with a default of 4 (approximately 4K per RFC3390). 1496.It Li tcp.init_win_local 1497Like 1498.Li tcp.init_win , 1499but used when communicating with hosts on a local network. 1500.It Li tcp.keepcnt 1501Number of keepalive probes sent before declaring a connection dead. 1502If set to zero, there is no limit; 1503keepalives will be sent until some kind of 1504response is received from the peer. 1505.It Li tcp.keepidle 1506Time a connection must be idle before keepalives are sent (if keepalives 1507are enabled for the connection). 1508See also tcp.slowhz. 1509.It Li tcp.keepintvl 1510Time after a keepalive probe is sent until, in the absence of any response, 1511another probe is sent. 1512See also tcp.slowhz. 1513.It Li tcp.log_refused 1514If set to 1, refused TCP connections to the host will be logged. 1515.It Li tcp.keepinit 1516Timeout in seconds during connection establishment. 1517.It Li tcp.mss_ifmtu 1518If set to 1, TCP calculates the outgoing maximum segment size based on 1519the MTU of the appropriate interface. 1520If set to 0, it is calculated based on the greater of the MTU of the 1521interface, and the largest (non-loopback) interface MTU on the system. 1522.It Li tcp.mssdflt 1523The default maximum segment size both advertised to the peer 1524and to use when either the peer does not advertise a maximum segment size to 1525us during connection setup or Path MTU Discovery 1526.Li ( ip.mtudisc ) 1527is disabled. 1528Do not change this value unless you really know what you are doing. 1529.It Li tcp.recvspace 1530The default TCP receive buffer size. 1531.It Li tcp.rfc1323 1532If set to 1, enables RFC 1323 extensions to TCP. 1533.It Li tcp.rstppslimit 1534The variable specifies the maximum number of outgoing TCP RST packets, 1535per second. 1536TCP RST packet that exceeded the value are subject to rate limitation 1537and will not go out from the node. 1538Negative value disables rate limitation. 1539.It Li tcp.ident 1540Return the user ID of a connected socket pair. 1541(RFC1413 Identification Protocol lookups.) 1542.It Li tcp.drop 1543Drop a TCP socket pair connection. 1544.It Li tcp.sack.enable 1545If set to 1, enables RFC 2018 Selective ACKnowledgement. 1546.It Li tcp.sack.globalholes 1547Global number of TCP SACK holes. 1548.It Li tcp.sack.globalmaxholes 1549Global maximum number of TCP SACK holes. 1550.It Li tcp.sack.maxholes 1551Maximum number of TCP SACK holes allowed per connection. 1552.It Li tcp.ecn.enable 1553If set to 1, enables RFC 3168 Explicit Congestion Notification. 1554.It Li tcp.ecn.maxretries 1555Number of times to retry sending the ECN-setup packet. 1556.It Li tcp.sendspace 1557The default TCP send buffer size. 1558.It Li tcp.slowhz 1559The units for tcp.keepidle and tcp.keepintvl; those variables are in ticks 1560of a clock that ticks tcp.slowhz times per second. 1561(That is, their values 1562must be divided by the tcp.slowhz value to get times in seconds.) 1563.It Li tcp.syn_bucket_limit 1564The maximum number of entries allowed per hash bucket in the TCP 1565compressed state engine. 1566.It Li tcp.syn_cache_limit 1567The maximum number of entries allowed in the TCP compressed state 1568engine. 1569.It Li tcp.timestamps 1570If rfc1323 is enabled, a value of 1 indicates RFC 1323 time stamp options, 1571used for measuring TCP round trip times, are enabled. 1572.It Li tcp.win_scale 1573If rfc1323 is enabled, a value of 1 indicates RFC 1323 window scale options, 1574for increasing the TCP window size, are enabled. 1575.It Li tcp.congctl.available 1576The available TCP congestion control algorithms. 1577.It Li tcp.congctl.selected 1578The currently selected TCP congestion control algorithm. 1579.It Li tcp.abc.enable 1580If set to 1, use RFC 3465 Appropriate Byte Counting (ABC). 1581If set to 0, use traditional Packet Counting. 1582.It Li tcp.abc.aggressive 1583Choose the L parameter found in RFC 3465. 1584L is the maximum cwnd increase for an ack during slow start. 1585If set to 1, use L=2*SMSS. 1586If set to 0, use L=1*SMSS. 1587It has no effect unless tcp.abc.enable is set to 1. 1588.It Li udp.checksum 1589If set to 1, UDP checksums are being computed. 1590Received non-zero UDP checksums are always checked. 1591Disabling UDP checksums is strongly discouraged. 1592.It Li udp.recvspace 1593The default UDP receive buffer size. 1594.It Li udp.sendspace 1595The default UDP send buffer size. 1596.El 1597.Pp 1598For variables net.*.ipsec, please refer to 1599.Xr ipsec 4 . 1600.It Li net.inet6 ( Dv PF_INET6 ) 1601Get or set various global information about the IPv6 1602.Pq Internet Protocol version 6 . 1603The third level name is the protocol. 1604The fourth level name is the variable name. 1605The currently defined protocols and names are: 1606.Bl -column "Protocol" "anonportalgo.available" "integer" "Changeable" -offset indent 1607.It Sy Protocol Variable Sy Type Sy Changeable 1608.It icmp6 errppslimit integer yes 1609.It icmp6 mtudisc_hiwat integer yes 1610.It icmp6 mtudisc_lowat integer yes 1611.It icmp6 nd6_debug integer yes 1612.It icmp6 nd6_delay integer yes 1613.It icmp6 nd6_maxnudhint integer yes 1614.It icmp6 nd6_mmaxtries integer yes 1615.It icmp6 nd6_prune integer yes 1616.It icmp6 nd6_umaxtries integer yes 1617.It icmp6 nd6_useloopback integer yes 1618.It icmp6 nodeinfo integer yes 1619.It icmp6 rediraccept integer yes 1620.It icmp6 redirtimeout integer yes 1621.It ip6 accept_rtadv integer yes 1622.It ip6 anonportalgo.selected string yes 1623.It ip6 anonportalgo.available string yes 1624.It ip6 anonportalgo.reserve struct yes 1625.It ip6 anonportmax integer yes 1626.It ip6 anonportmin integer yes 1627.It ip6 auto_flowlabel integer yes 1628.It ip6 dad_count integer yes 1629.It ip6 defmcasthlim integer yes 1630.It ip6 forwarding integer yes 1631.It ip6 gifhlim integer yes 1632.It ip6 hashsize integer yes 1633.It ip6 hlim integer yes 1634.It ip6 hdrnestlimit integer yes 1635.It ip6 kame_version string no 1636.It ip6 keepfaith integer yes 1637.It ip6 log_interval integer yes 1638.It ip6 lowportmax integer yes 1639.It ip6 lowportmin integer yes 1640.It ip6 maxdynroutes integer yes 1641.It ip6 maxifprefixes integer yes 1642.It ip6 maxifdefrouters integer yes 1643.It ip6 maxflows integer yes 1644.It ip6 maxfragpackets integer yes 1645.It ip6 maxfrags integer yes 1646.It ip6 neighborgcthresh integer yes 1647.It ip6 redirect integer yes 1648.It ip6 rr_prune integer yes 1649.It ip6 use_deprecated integer yes 1650.It ip6 v6only integer yes 1651.It udp6 do_loopback_cksum integer yes 1652.It udp6 recvspace integer yes 1653.It udp6 sendspace integer yes 1654.El 1655.Pp 1656The variables are as follows: 1657.Bl -tag -width "123456" 1658.It Li ip6.accept_rtadv 1659If set to non-zero, the node will accept ICMPv6 router advertisement packets 1660and autoconfigures address prefixes and default routers. 1661The node must be a host 1662.Pq not a router 1663for the option to be meaningful. 1664.It Li ip6.anonportalgo.available 1665The available RFC 6056 port randomization algorithms. 1666.It Li ip6.anonportalgo.reserve 1667A bitmask of ports that will not be used during anonymous or privileged 1668port selection. 1669.It Li ip6.anonportalgo.selected 1670The currently selected RFC 6056 port randomization algorithm. 1671.It Li ip6.anonportmax 1672The highest port number to use for TCP and UDP ephemeral port allocation. 1673This cannot be set to less than 1024 or greater than 65535, and must 1674be greater than 1675.Li ip6.anonportmin . 1676.It Li ip6.anonportmin 1677The lowest port number to use for TCP and UDP ephemeral port allocation. 1678This cannot be set to less than 1024 or greater than 65535. 1679.It Li ip6.auto_flowlabel 1680On connected transport protocol packets, 1681fill IPv6 flowlabel field to help intermediate routers to identify packet flows. 1682.It Li ip6.dad_count 1683The variable configures number of IPv6 DAD 1684.Pq duplicated address detection 1685probe packets. 1686The packets will be generated when IPv6 interface addresses are configured. 1687.It Li ip6.defmcasthlim 1688The default hop limit value for an IPv6 multicast packet sourced by the node. 1689This value applies to all the transport protocols on top of IPv6. 1690There are APIs to override the value, as documented in 1691.Xr ip6 4 . 1692.It Li ip6.forwarding 1693If set to 1, enables IPv6 forwarding for the node, 1694meaning that the node is acting as a router. 1695If set to 0, disables IPv6 forwarding for the node, 1696meaning that the node is acting as a host. 1697IPv6 specification defines node behavior for 1698.Dq router 1699case and 1700.Dq host 1701case quite differently, and changing this variable during operation 1702may cause serious trouble. 1703It is recommended to configure the variable at bootstrap time, 1704and bootstrap time only. 1705.It Li ip6.gifhlim 1706The maximum hop limit value for an IPv6 packet generated by 1707.Xr gif 4 1708tunnel interface. 1709.It Li ip6.hdrnestlimit 1710The number of IPv6 extension headers permitted on incoming IPv6 packets. 1711If set to 0, the node will accept as many extension headers as possible. 1712.It Li ip6.hashsize 1713The size of IPv6 Fast Forward hash table. 1714This value must be a power of 2 (64, 256, ...). 1715A larger hash table size results in fewer collisions. 1716Also see 1717.Li ip6.maxflows . 1718.It Li ip6.hlim 1719The default hop limit value for an IPv6 unicast packet sourced by the node. 1720This value applies to all the transport protocols on top of IPv6. 1721There are APIs to override the value, as documented in 1722.Xr ip6 4 . 1723.It Li ip6.kame_version 1724The string identifies the version of KAME IPv6 stack implemented in the kernel. 1725.It Li ip6.keepfaith 1726If set to non-zero, it enables 1727.Dq FAITH 1728TCP relay IPv6-to-IPv4 translator code in the kernel. 1729Refer 1730.Xr faith 4 1731and 1732.Xr faithd 8 1733for detail. 1734.It Li ip6.log_interval 1735The variable controls amount of logs generated by IPv6 packet 1736forwarding engine, by setting interval between log output 1737.Pq in seconds . 1738.It Li ip6.lowportmax 1739The highest port number to use for TCP and UDP reserved port allocation. 1740This cannot be set to less than 0 or greater than 1024, and must 1741be greater than 1742.Li ip6.lowportmin . 1743.It Li ip6.lowportmin 1744The lowest port number to use for TCP and UDP reserved port allocation. 1745This cannot be set to less than 0 or greater than 1024, and must 1746be smaller than 1747.Li ip6.lowportmax . 1748.It Li ip6.maxdynroutes 1749Maximum number of routes created by redirect. 1750Set it to negative to disable. 1751The default value is 4096. 1752.It Li ip6.maxifprefixes 1753Maximum number of prefixes created by route advertisements per interface. 1754Set it to negative to disable. 1755The default value is 16. 1756.It Li ip6.maxifdefrouters 16 1757Maximum number of default routers created by route advertisements per interface. 1758Set it to negative to disable. 1759The default value is 16. 1760.It Li ip6.maxflows 1761IPv6 Fast Forwarding is enabled by default. 1762If set to 0, IPv6 Fast Forwarding is disabled. 1763.Li ip6.maxflows 1764controls the maximum amount of flows which can be created. 1765The default value is 256. 1766.It Li ip6.maxfragpackets 1767The maximum number of fragmented packets the node will accept. 17680 means that the node will not accept any fragmented packets. 1769\-1 means that the node will accept as many fragmented packets as it receives. 1770The flag is provided basically for avoiding possible DoS attacks. 1771.It Li ip6.maxfrags 1772The maximum number of fragments the node will accept. 17730 means that the node will not accept any fragments. 1774\-1 means that the node will accept as many fragments as it receives. 1775The flag is provided basically for avoiding possible DoS attacks. 1776.It Li ip6.neighborgcthresh 1777Maximum number of entries in neighbor cache. 1778Set to negative to disable. 1779The default value is 2048. 1780.It Li ip6.redirect 1781If set to 1, ICMPv6 redirects may be sent by the node. 1782This option is ignored unless the node is routing IP packets, 1783and should normally be enabled on all systems. 1784.It Li ip6.rr_prune 1785The variable specifies interval between IPv6 router renumbering prefix 1786babysitting, in seconds. 1787.It Li ip6.use_deprecated 1788The variable controls use of deprecated address, specified in RFC 2462 5.5.4. 1789.It Li ip6.v6only 1790The variable specifies initial value for 1791.Dv IPV6_V6ONLY 1792socket option for 1793.Dv AF_INET6 1794socket. 1795Please refer to 1796.Xr ip6 4 1797for detail. 1798.It Li icmp6.errppslimit 1799The variable specifies the maximum number of outgoing ICMPv6 error messages, 1800per second. 1801ICMPv6 error messages that exceeded the value are subject to rate limitation 1802and will not go out from the node. 1803Negative value disables rate limitation. 1804.It Li icmp6.mtudisc_hiwat 1805.It Li icmp6.mtudisc_lowat 1806The variables define the maximum number of routing table entries, 1807created due to path MTU discovery 1808.Pq prevents denial-of-service attacks with ICMPv6 too big messages . 1809When IPv6 path MTU discovery happens, we keep path MTU information into 1810the routing table. 1811If the number of routing table entries exceed the value, 1812the kernel will not attempt to keep the path MTU information. 1813.Li icmp6.mtudisc_hiwat 1814is used when we have verified ICMPv6 too big messages. 1815.Li icmp6.mtudisc_lowat 1816is used when we have unverified ICMPv6 too big messages. 1817Verification is performed by using address/port pairs kept in connected pcbs. 1818Negative value disables the upper limit. 1819.It Li icmp6.nd6_debug 1820If set to non-zero, kernel IPv6 neighbor discovery code will generate 1821debugging messages. 1822The debug outputs are useful to diagnose IPv6 interoperability issues. 1823The flag must be set to 0 for normal operation. 1824.It Li icmp6.nd6_delay 1825The variable specifies 1826.Dv DELAY_FIRST_PROBE_TIME 1827timing constant in IPv6 neighbor discovery specification 1828.Pq RFC 2461 , 1829in seconds. 1830.It Li icmp6.nd6_maxnudhint 1831IPv6 neighbor discovery permits upper layer protocols to supply reachability 1832hints, to avoid unnecessary neighbor discovery exchanges. 1833The variable defines the number of consecutive hints the neighbor discovery 1834layer will take. 1835For example, by setting the variable to 3, neighbor discovery layer 1836will take 3 consecutive hints in maximum. 1837After receiving 3 hints, neighbor discovery layer will perform 1838normal neighbor discovery process. 1839.It Li icmp6.nd6_mmaxtries 1840The variable specifies 1841.Dv MAX_MULTICAST_SOLICIT 1842constant in IPv6 neighbor discovery specification 1843.Pq RFC 2461 . 1844.It Li icmp6.nd6_prune 1845The variable specifies interval between IPv6 neighbor cache babysitting, 1846in seconds. 1847.It Li icmp6.nd6_umaxtries 1848The variable specifies 1849.Dv MAX_UNICAST_SOLICIT 1850constant in IPv6 neighbor discovery specification 1851.Pq RFC 2461 . 1852.It Li icmp6.nd6_useloopback 1853If set to non-zero, kernel IPv6 stack will use loopback interface for 1854local traffic. 1855.It Li icmp6.nodeinfo 1856The variable enables responses to ICMPv6 node information queries. 1857If you set the variable to 0, responses will not be generated for 1858ICMPv6 node information queries. 1859Since node information queries can have a security impact, it is 1860possible to fine tune which responses should be answered. 1861Two separate bits can be set. 1862.Bl -tag -width "12345" 1863.It 1 1864Respond to ICMPv6 FQDN queries, e.g. 1865.Li ping6 -w . 1866.It 2 1867Respond to ICMPv6 node addresses queries, e.g. 1868.Li ping6 -a . 1869.El 1870.It Li icmp6.rediraccept 1871If set to non-zero, the host will accept ICMPv6 redirect packets. 1872Note that IPv6 routers will never accept ICMPv6 redirect packets, 1873and the variable is meaningful on IPv6 hosts 1874.Pq non-router 1875only. 1876.It Li icmp6.redirtimeout 1877The variable specifies lifetime of routing entries generated by incoming 1878ICMPv6 redirect. 1879.It Li udp6.do_loopback_cksum 1880Perform UDP checksum on loopback. 1881.It Li udp6.recvspace 1882Default UDP receive buffer size. 1883.It Li udp6.sendspace 1884Default UDP send buffer size. 1885.El 1886.Pp 1887We reuse net.*.tcp for 1888.Tn TCP 1889over 1890.Tn IPv6 , 1891and therefore we do not have variables net.*.tcp6. 1892Variables net.inet6.udp6 have identical meaning to net.inet.udp. 1893Please refer to 1894.Li PF_INET 1895section above. 1896For variables net.*.ipsec6, please refer to 1897.Xr ipsec 4 . 1898.It Li net.key ( Dv PF_KEY ) 1899Get or set various global information about the IPsec key management. 1900The third level name is the variable name. 1901The currently defined variable and names are: 1902.Bl -column "blockacq_lifetime" "integer" "Changeable" -offset indent 1903.It Sy Variable Type Sy Changeable 1904.It debug integer yes 1905.It enabled integer yes 1906.It used integer no 1907.It spi_try integer yes 1908.It spi_min_value integer yes 1909.It spi_max_value integer yes 1910.It larval_lifetime integer yes 1911.It blockacq_count integer yes 1912.It blockacq_lifetime integer yes 1913.It esp_keymin integer yes 1914.It esp_auth integer yes 1915.It ah_keymin integer yes 1916.El 1917.Pp 1918The variables are as follows: 1919.Bl -tag -width "123456" 1920.It Li debug 1921Turn on debugging message from within the kernel. 1922The value is a bitmap, as defined in 1923.In netkey/key_debug.h . 1924.It Li enabled 1925Control processing of IPsec control messages. 1926.Bl -tag -width indent 1927.It 0 1928Never allow IPsec processing 1929.It 1 1930Allow IPsec processing when SPD policies are present. 1931.It 2 1932Force IPsec processing even when SPD policies are not present. 1933.El 1934.It Li used 1935Based on if IPsec is enabled, and SPD rule existance, show if 1936IPsec is being used. 1937Note that currenly once IPsec is being used, it cannot be disabled. 1938.It Li spi_try 1939The number of times the kernel will try to obtain an unique SPI 1940when it generates it from random number generator. 1941.It Li spi_min_value 1942Minimum SPI value when generating it within the kernel. 1943.It Li spi_max_value 1944Maximum SPI value when generating it within the kernel. 1945.It Li larval_lifetime 1946Lifetime for LARVAL SAD entries, in seconds. 1947.It Li blockacq_count 1948Number of ACQUIRE PF_KEY messages to be blocked after an ACQUIRE message. 1949It avoids flood of ACQUIRE PF_KEY from being sent from the kernel to the 1950key management daemon. 1951.It Li blockacq_lifetime 1952Lifetime of ACQUIRE PF_KEY message. 1953.It Li esp_keymin 1954Minimum ESP key length, in bits. 1955The value is used when the kernel creates proposal payload 1956on ACQUIRE PF_KEY message. 1957.It Li esp_auth 1958Whether ESP authentication should be used or not. 1959Non-zero value indicates that ESP authentication should be used. 1960The value is used when the kernel creates proposal payload 1961on ACQUIRE PF_KEY message. 1962.It Li ah_keymin 1963Minimum AH key length, in bits, 1964The value is used when the kernel creates proposal payload 1965on ACQUIRE PF_KEY message. 1966.El 1967.El 1968.Ss The proc.* subtree 1969The string and integer information available for the 1970.Li proc 1971level is detailed below. 1972The changeable column shows whether a process with appropriate 1973privilege may change the value. 1974These values are per-process, 1975and as such may change from one process to another. 1976When a process is created, 1977the default values are inherited from its parent. 1978When a set-user-ID or set-group-ID binary is executed, the 1979value of PROC_PID_CORENAME is reset to the system default value. 1980The second level name is either the magic value PROC_CURPROC, which 1981points to the current process, or the PID of the target process. 1982.Bl -column "proc.pid.corename" "string" "not applicable" -offset indent 1983.It Sy Third level name Sy Type Sy Changeable 1984.It proc.pid.corename string yes 1985.It proc.pid.rlimit node not applicable 1986.It proc.pid.stopfork int yes 1987.It proc.pid.stopexec int yes 1988.It proc.pid.stopexit int yes 1989.El 1990.Bl -tag -width "123456" 1991.It Li proc.pid.corename ( Dv PROC_PID_CORENAME ) 1992The template used for the core dump file name (see 1993.Xr core 5 1994for details). 1995The base name must either be 1996.Pa core 1997or end with the suffix 1998.Pa .core 1999(the super-user may set arbitrary names). 2000By default it points to 2001.Dv KERN_DEFCORENAME . 2002.It Li proc.pid.rlimit ( Dv PROC_PID_LIMIT ) 2003Return resources limits, as defined for the 2004.Xr getrlimit 2 2005and 2006.Xr setrlimit 2 2007system calls. 2008The fourth level name is one of: 2009.Bl -tag -width "123456" 2010.It Li proc.pid.rlimit.cputime ( Dv PROC_PID_LIMIT_CPU ) 2011The maximum amount of CPU time (in seconds) to be used by each process. 2012.It Li proc.pid.rlimit.filesize ( Dv PROC_PID_LIMIT_FSIZE ) 2013The largest size (in bytes) file that may be created. 2014.It Li proc.pid.rlimit.datasize ( Dv PROC_PID_LIMIT_DATA ) 2015The maximum size (in bytes) of the data segment for a process; 2016this defines how far a program may extend its break with the 2017.Xr sbrk 2 2018system call. 2019.It Li proc.pid.rlimit.stacksize ( Dv PROC_PID_LIMIT_STACK ) 2020The maximum size (in bytes) of the stack segment for a process; 2021this defines how far a program's stack segment may be extended. 2022Stack extension is performed automatically by the system. 2023.It Li proc.pid.rlimit.coredumpsize ( Dv PROC_PID_LIMIT_CORE ) 2024The largest size (in bytes) 2025.Pa core 2026file that may be created. 2027.It Li proc.pid.rlimit.memoryuse ( Dv PROC_PID_LIMIT_RSS ) 2028The maximum size (in bytes) to which a process's resident set size may 2029grow. 2030This imposes a limit on the amount of physical memory to be given to 2031a process; if memory is tight, the system will prefer to take memory 2032from processes that are exceeding their declared resident set size. 2033.It Li proc.pid.rlimit.memorylocked ( Dv PROC_PID_LIMIT_MEMLOCK ) 2034The maximum size (in bytes) which a process may lock into memory 2035using the 2036.Xr mlock 2 2037function. 2038.It Li proc.pid.rlimit.maxproc ( Dv PROC_PID_LIMIT_NPROC ) 2039The maximum number of simultaneous processes for this user id. 2040.It Li proc.pid.rlimit.descriptors ( Dv PROC_PID_LIMIT_NOFILE ) 2041The maximum number of open files for this process. 2042.It Li proc.pid.rlimit.sbsize ( Dv PROC_PID_LIMIT_SBSIZE ) 2043The maximum size (in bytes) of the socket buffers 2044set by the 2045.Xr setsockopt 2 2046.Dv SO_RCVBUF 2047and 2048.Dv SO_SNDBUF 2049options. 2050.It Li proc.pid.rlimit.vmemoryuse ( Dv PROC_PID_LIMIT_AS ) 2051The maximum size (in bytes) which a process can obtain. 2052.It Li proc.pid.rlimit.maxlwp ( Dv PROC_PID_LIMIT_NTHR ) 2053The maximum number of threads that cen be created and running at one time in 2054the process. 2055The first thread of each process is not counted against this. 2056.El 2057.Pp 2058The fifth level name is one of 2059.Li soft ( Dv PROC_PID_LIMIT_TYPE_SOFT ) 2060or 2061.Li hard ( Dv PROC_PID_LIMIT_TYPE_HARD ) , 2062to select respectively the soft or hard limit. 2063Both are of type integer. 2064.It Li proc.pid.stopfork ( Dv PROC_PID_STOPFORK ) 2065If non zero, the process' children will be stopped after 2066.Xr fork 2 2067calls. 2068The children is created in the SSTOP state and is never scheduled 2069for running before being stopped. 2070This feature helps attaching a process with a debugger such as 2071.Xr gdb 1 2072before it had the opportunity to actually do anything. 2073.Pp 2074This value is inherited by the process's children, and it also 2075apply to emulation specific system calls that fork a new process, such as 2076.Fn sproc 2077or 2078.Fn clone . 2079.It Li proc.pid.stopexec ( Dv PROC_PID_STOPEXEC ) 2080If non zero, the process will be stopped on next 2081.Xr exec 3 2082call. 2083The process created by 2084.Xr exec 3 2085is created in the SSTOP state and is never scheduled for running 2086before being stopped. 2087This feature helps attaching a process with a debugger such as 2088.Xr gdb 1 2089before it had the opportunity to actually do anything. 2090.Pp 2091This value is inherited by the process's children. 2092.It Li proc.pid.stopexit ( Dv PROC_PID_STOPEXIT ) 2093If non zero, the process will be stopped on when it has cause to exit, 2094either by way of calling 2095.Xr exit 3 , 2096.Xr _exit 2 , 2097or by the receipt of a specific signal. 2098The process is stopped before any of its resources or vm space is 2099released allowing examination of the termination state of a process 2100before it disappears. 2101This feature can be used to examine the final conditions of the 2102process's vmspace via 2103.Xr pmap 1 2104or its resource settings with 2105.Xr sysctl 8 2106before it disappears. 2107.Pp 2108This value is also inherited by the process's children. 2109.El 2110.Ss The user.* subtree ( Dv CTL_USER ) 2111The string and integer information available for the 2112.Li user 2113level is detailed below. 2114The changeable column shows whether a process with appropriate 2115privilege may change the value. 2116.Bl -column "user.coll_weights_max" "integer" "Changeable" -offset indent 2117.It Sy Second level name Sy Type Sy Changeable 2118.It user.atexit_max integer no 2119.It user.bc_base_max integer no 2120.It user.bc_dim_max integer no 2121.It user.bc_scale_max integer no 2122.It user.bc_string_max integer no 2123.It user.coll_weights_max integer no 2124.It user.cs_path string no 2125.It user.expr_nest_max integer no 2126.It user.line_max integer no 2127.It user.posix2_c_bind integer no 2128.It user.posix2_c_dev integer no 2129.It user.posix2_char_term integer no 2130.It user.posix2_fort_dev integer no 2131.It user.posix2_fort_run integer no 2132.It user.posix2_localedef integer no 2133.It user.posix2_sw_dev integer no 2134.It user.posix2_upe integer no 2135.It user.posix2_version integer no 2136.It user.re_dup_max integer no 2137.It user.stream_max integer no 2138.It user.stream_max integer no 2139.It user.tzname_max integer no 2140.El 2141.Bl -tag -width "123456" 2142.It Li user.atexit_max ( Dv USER_ATEXIT_MAX ) 2143The maximum number of functions that may be registered with 2144.Xr atexit 3 . 2145.It Li user.bc_base_max ( Dv USER_BC_BASE_MAX ) 2146The maximum ibase/obase values in the 2147.Xr bc 1 2148utility. 2149.It Li user.bc_dim_max ( Dv USER_BC_DIM_MAX ) 2150The maximum array size in the 2151.Xr bc 1 2152utility. 2153.It Li user.bc_scale_max ( Dv USER_BC_SCALE_MAX ) 2154The maximum scale value in the 2155.Xr bc 1 2156utility. 2157.It Li user.bc_string_max ( Dv USER_BC_STRING_MAX ) 2158The maximum string length in the 2159.Xr bc 1 2160utility. 2161.It Li user.coll_weights_max ( Dv USER_COLL_WEIGHTS_MAX ) 2162The maximum number of weights that can be assigned to any entry of 2163the LC_COLLATE order keyword in the locale definition file. 2164.It Li user.cs_path ( USER_CS_PATH ) 2165Return a value for the 2166.Ev PATH 2167environment variable that finds all the standard utilities. 2168.It Li user.expr_nest_max ( Dv USER_EXPR_NEST_MAX ) 2169The maximum number of expressions that can be nested within 2170parenthesis by the 2171.Xr expr 1 2172utility. 2173.It Li user.line_max ( Dv USER_LINE_MAX ) 2174The maximum length in bytes of a text-processing utility's input 2175line. 2176.It Li user.posix2_char_term ( Dv USER_POSIX2_CHAR_TERM ) 2177Return 1 if the system supports at least one terminal type capable of 2178all operations described in 2179.St -p1003.2 , 2180otherwise\ 0. 2181.It Li user.posix2_c_bind ( Dv USER_POSIX2_C_BIND ) 2182Return 1 if the system's C-language development facilities support the 2183C-Language Bindings Option, otherwise\ 0. 2184.It Li user.posix2_c_dev ( Dv USER_POSIX2_C_DEV ) 2185Return 1 if the system supports the C-Language Development Utilities Option, 2186otherwise\ 0. 2187.It Li user.posix2_fort_dev ( Dv USER_POSIX2_FORT_DEV ) 2188Return 1 if the system supports the FORTRAN Development Utilities Option, 2189otherwise\ 0. 2190.It Li user.posix2_fort_run ( Dv USER_POSIX2_FORT_RUN ) 2191Return 1 if the system supports the FORTRAN Runtime Utilities Option, 2192otherwise\ 0. 2193.It Li user.posix2_localedef ( Dv USER_POSIX2_LOCALEDEF ) 2194Return 1 if the system supports the creation of locales, otherwise\ 0. 2195.It Li user.posix2_sw_dev ( Dv USER_POSIX2_SW_DEV ) 2196Return 1 if the system supports the Software Development Utilities Option, 2197otherwise\ 0. 2198.It Li user.posix2_upe ( Dv USER_POSIX2_UPE ) 2199Return 1 if the system supports the User Portability Utilities Option, 2200otherwise\ 0. 2201.It Li user.posix2_version ( Dv USER_POSIX2_VERSION ) 2202The version of 2203.St -p1003.2 2204with which the system attempts to comply. 2205.It Li user.re_dup_max ( Dv USER_RE_DUP_MAX ) 2206The maximum number of repeated occurrences of a regular expression 2207permitted when using interval notation. 2208.It Li user.stream_max ( Dv USER_STREAM_MAX ) 2209The minimum maximum number of streams that a process may have open 2210at any one time. 2211.It Li user.tzname_max ( Dv USER_TZNAME_MAX ) 2212The minimum maximum number of types supported for the name of a 2213timezone. 2214.El 2215.Ss The vm.* subtree ( Dv CTL_VM ) 2216The string and integer information available for the 2217.Li vm 2218level is detailed below. 2219The changeable column shows whether a process with appropriate 2220privilege may change the value. 2221.Bl -column "Second level name" "struct uvmexp_sysctl" "Changeable" -offset indent 2222.It Sy Second level name Sy Type Sy Changeable 2223.It vm.anonmax int yes 2224.It vm.anonmin int yes 2225.It vm.bufcache int yes 2226.It vm.bufmem int no 2227.It vm.bufmem_hiwater int yes 2228.It vm.bufmem_lowater int yes 2229.It vm.execmax int yes 2230.It vm.execmin int yes 2231.It vm.filemax int yes 2232.It vm.filemin int yes 2233.It vm.loadavg struct loadavg no 2234.It vm.maxslp int no 2235.It vm.nkmempages int no 2236.It vm.uspace int no 2237.It vm.uvmexp struct uvmexp no 2238.It vm.uvmexp2 struct uvmexp_sysctl no 2239.It vm.vmmeter struct vmtotal no 2240.It vm.proc.map struct kinfo_vmentry no 2241.El 2242.Bl -tag -width "123456" 2243.It Li vm.anonmax ( Dv VM_ANONMAX ) 2244The percentage of physical memory which will be reclaimed 2245from other types of memory usage to store anonymous application data. 2246.It Li vm.anonmin ( Dv VM_ANONMIN ) 2247The percentage of physical memory which will be always be available for 2248anonymous application data. 2249.It Li vm.bufcache ( Dv VM_BUFCACHE ) 2250The percentage of physical memory which will be available 2251for the buffer cache. 2252.It Li vm.bufmem ( Dv VM_BUFMEM ) 2253The amount of kernel memory that is being used by the buffer cache. 2254.It Li vm.bufmem_lowater ( Dv VM_BUFMEM_LOWATER ) 2255The minimum amount of kernel memory to reserve for the 2256buffer cache. 2257.It Li vm.bufmem_hiwater ( Dv VM_BUFMEM_HIWATER ) 2258The maximum amount of kernel memory to be used for the 2259buffer cache. 2260.It Li vm.execmax ( Dv VM_EXECMAX ) 2261The percentage of physical memory which will be reclaimed 2262from other types of memory usage to store cached executable data. 2263.It Li vm.execmin ( Dv VM_EXECMIN ) 2264The percentage of physical memory which will be always be available for 2265cached executable data. 2266.It Li vm.filemax ( Dv VM_FILEMAX ) 2267The percentage of physical memory which will be reclaimed 2268from other types of memory usage to store cached file data. 2269.It Li vm.filemin ( Dv VM_FILEMIN ) 2270The percentage of physical memory which will be always be available for 2271cached file data. 2272.It Li vm.loadavg ( Dv VM_LOADAVG ) 2273Return the load average history. 2274The returned data consists of a 2275.Vt struct loadavg . 2276.It Li vm.maxslp ( Dv VM_MAXSLP ) 2277The value of the maxslp kernel global variable. 2278.It Li vm.vmmeter ( Dv VM_METER ) 2279Return system wide virtual memory statistics. 2280The returned data consists of a 2281.Vt struct vmtotal . 2282.It vm.user_va0_disable 2283A flag which controls whether user processes can map virtual address\ 0. 2284.It Li vm.proc.map ( Dv VM_PROC ) 2285The third level is 2286.dv VM_PROC_MAP , 2287the fourth is the pid of the process to display the vm object entries for, and 2288the fifth is the size of 2289.Vt struct kinfo_vmentry . 2290Returns an array of 2291.Vt struct kinfo_vmentry 2292objects. 2293.It Li vm.uspace ( Dv VM_USPACE ) 2294The number of bytes allocated for each kernel stack. 2295.It Li vm.uvmexp ( Dv VM_UVMEXP ) 2296Return system wide virtual memory statistics. 2297The returned data consists of a 2298.Vt struct uvmexp . 2299.It Li vm.uvmexp2 ( Dv VM_UVMEXP2 ) 2300Return system wide virtual memory statistics. 2301The returned data consists of a 2302.Vt struct uvmexp_sysctl . 2303.\" XXX vm.idlezero 2304.El 2305.Ss The ddb.* subtree ( Dv CTL_DDB ) 2306The information available for the 2307.Li ddb 2308level is detailed below. 2309The changeable column shows whether a process with appropriate 2310privilege may change the value. 2311.\" XXX sort 2312.Bl -column "Second level name" "integer" "Changeable" -offset indent 2313.It Sy Second level name Sy Type Sy Changeable 2314.It ddb.radix integer yes 2315.It ddb.maxoff integer yes 2316.It ddb.maxwidth integer yes 2317.It ddb.lines integer yes 2318.It ddb.tabstops integer yes 2319.It ddb.onpanic integer yes 2320.It ddb.fromconsole integer yes 2321.It ddb.tee_msgbuf integer yes 2322.It ddb.commandonenter string yes 2323.El 2324.Bl -tag -width "123456" 2325.It Li ddb.radix ( Dv DDBCTL_RADIX ) 2326The input and output radix. 2327.It Li ddb.maxoff ( Dv DDBCTL_MAXOFF ) 2328The maximum symbol offset. 2329.It Li ddb.maxwidth ( Dv DDBCTL_MAXWIDTH ) 2330The maximum output line width. 2331.It Li ddb.lines ( Dv DDBCTL_LINES ) 2332Number of display lines. 2333.It Li ddb.tabstops ( Dv DDBCTL_TABSTOPS ) 2334Tab width. 2335.It Li ddb.onpanic ( Dv DDBCTL_ONPANIC ) 2336If greater than zero, DDB will be entered if the kernel panics. 2337A value of 1 causes the system to enter DDB on panic, while a value of 2 2338causes the kernel to attempt to print out a stack trace before entering DDB. 2339A value of 0 causes the kernel to attempt to print a stack trace, then 2340reboot, while a value of \-1 means neither a stack trace will be printed 2341nor DDB entered. 2342.It Li ddb.fromconsole ( Dv DDBCTL_FROMCONSOLE ) 2343If not zero, DDB may be entered by sending a break on a serial 2344console or by a special key sequence on a graphics console. 2345.It Li ddb.tee_msgbuf 2346If not zero, DDB will output also to the kernel message buffer. 2347.It Li ddb.commandonenter 2348If not empty, a command to be executed on each enter to the 2349.Tn DDB . 2350.\" 2351.\" XXX: (a) ddb.commandonenter is missing in ddb(4); 2352.\" (b) No DDBCTL definitions for tee_msgbuf and commandonenter. 2353.El 2354.Pp 2355Some of these 2356.Tn MIB 2357nodes are also available as variables from within the debugger. 2358See 2359.Xr ddb 4 2360for more details. 2361.Ss The security.* subtree ( Dv CTL_SECURITY ) 2362The 2363.Li security 2364level contains various security-related settings for 2365the system. 2366The available second level names are: 2367.Bl -column "Second level name" "integer" "Changeable" -offset indent 2368.It Sy Second level name Sy Type Sy Changeable 2369.It Li security.curtain integer yes 2370.It Li security.models node not applicable 2371.It Li security.pax node not applicable 2372.El 2373.Pp 2374Available settings are detailed below. 2375.Bl -tag -width "123456" 2376.It Li security.curtain 2377If non-zero, will filter return objects according to the user 2378.Tn ID 2379requesting information about them, preventing from users any 2380access to objects they do not own. 2381.Pp 2382At the moment, it affects 2383.Xr ps 1 , 2384.Xr netstat 1 2385(for 2386.Dv PF_INET , 2387.Dv PF_INET6 , 2388and 2389.Dv PF_UNIX 2390PCBs), and 2391.Xr w 1 . 2392.It Li security.models 2393.Nx 2394supports pluggable security models. 2395Every security model used, whether if loaded as a module or built with the system, 2396is required to add an entry to this node with at least one element, 2397.Dq name , 2398indicating the name of the security model. 2399.Pp 2400In addition to the name, any settings and other information private to the 2401security model will be available under this node. 2402See 2403.Xr secmodel 9 2404for more information. 2405.It Li security.pax 2406Settings for PaX -- exploit mitigation features. 2407For more information on any of the PaX features, please see 2408.Xr paxctl 8 2409and 2410.Xr security 7 . 2411The available third and fourth level names are: 2412.Bl -column "security.pax.segvguard.suspend_timeout" "integer" "Changeable" \ 2413-offset 2n 2414.It Sy Third and fourth level names Ta Sy Type Ta Sy Changeable 2415.It Li security.pax.aslr.enabled integer yes 2416.\".It Li security.pax.aslr.exec_len integer yes 2417.It Li security.pax.aslr.global integer yes 2418.\".It Li security.pax.aslr.mmap_len integer yes 2419.\".It Li security.pax.aslr.stack_len integer yes 2420.It Li security.pax.mprotect.enabled integer yes 2421.It Li security.pax.mprotect.global integer yes 2422.It Li security.pax.segvguard.enabled integer yes 2423.It Li security.pax.segvguard.expiry_timeout integer yes 2424.It Li security.pax.segvguard.global integer yes 2425.It Li security.pax.segvguard.max_crashes integer yes 2426.It Li security.pax.segvguard.suspend_timeout integer yes 2427.El 2428.Bl -tag -width "123456" 2429.It Li security.pax.aslr.enabled 2430Enable PaX ASLR (Address Space Layout Randomization). 2431.Pp 2432The value of this 2433knob must be non-zero for PaX ASLR to be enabled, even if a program is set to 2434explicit enable. 2435.\".It Li security.pax.aslr.exec_len 2436.\" XXX: Undocumented. 2437.It Li security.pax.aslr.global 2438Specifies the default global policy for programs without an 2439explicit enable/disable flag. 2440.Pp 2441When non-zero, all programs will get PaX ASLR, except those exempted with 2442.Xr paxctl 8 . 2443Otherwise, all programs will not get PaX ASLR, except those specifically 2444marked as such with 2445.Xr paxctl 8 . 2446.\".It Li security.pax.aslr.mmap_len 2447.\" XXX: Undocumented. 2448.\" .It Li security.pax.aslr.stack_len 2449.\" XXX: Undocumented. 2450.It Li security.pax.mprotect.enabled 2451Enable PaX MPROTECT restrictions. 2452.Pp 2453These are 2454.Xr mprotect 2 2455restrictions to better enforce a W^X policy. 2456The value of this 2457knob must be non-zero for PaX MPROTECT to be enabled, even if a 2458program is set to explicit enable. 2459.It Li security.pax.mprotect.global 2460Specifies the default global policy for programs without an 2461explicit enable/disable flag. 2462.Pp 2463When non-zero, all programs will get the PaX MPROTECT restrictions, 2464except those exempted with 2465.Xr paxctl 8 . 2466Otherwise, all programs will not get the PaX MPROTECT restrictions, 2467except those specifically marked as such with 2468.Xr paxctl 8 . 2469.It Li security.pax.segvguard.enabled 2470Enable PaX Segvguard. 2471.Pp 2472PaX Segvguard can detect and prevent certain exploitation attempts, where 2473an attacker may try for example to brute-force function return addresses 2474of respawning daemons. 2475.Pp 2476.Em Note : 2477The 2478.Nx 2479interface and implementation of the Segvguard is still experimental, and may 2480change in future releases. 2481.It Li security.pax.segvguard.expiry_timeout 2482If the max number was not reached within this timeout (in seconds), the entry 2483will expire. 2484.It Li security.pax.segvguard.global 2485Specifies the default global policy for programs without an 2486explicit enable/disable flag. 2487.Pp 2488When non-zero, all programs will get the PaX Segvguard, 2489except those exempted with 2490.Xr paxctl 8 . 2491Otherwise, no program will get the PaX Segvguard restrictions, 2492except those specifically marked as such with 2493.Xr paxctl 8 . 2494.It Li security.pax.segvguard.max_crashes 2495The maximum number of segfaults a program can receive before suspension. 2496.It Li security.pax.segvguard.suspend_timeout 2497Number of seconds to suspend a user from running a faulting program when the 2498limit was exceeded. 2499.El 2500.El 2501.Ss The vendor.* subtree ( Dv CTL_VENDOR ) 2502The 2503.Li vendor 2504toplevel name is reserved to be used by vendors who wish to 2505have their own private MIB tree. 2506Intended use is to store values under 2507.Dq vendor.\*[Lt]yourname\*[Gt].* . 2508.Sh SEE ALSO 2509.Xr sysctl 3 , 2510.Xr ipsec 4 , 2511.Xr tcp 4 , 2512.Xr security 7 , 2513.Xr sysctl 8 2514.Sh HISTORY 2515The 2516.Nm 2517variables first appeared in 2518.Bx 4.4 . 2519