1.\" $NetBSD: sysctl.7,v 1.99 2016/03/30 05:55:04 ozaki-r 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 March 30, 2016 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 carp allow integer yes 1233.It carp preempt integer yes 1234.It carp log integer yes 1235.It carp arpbalance integer yes 1236.It icmp errppslimit integer yes 1237.It icmp maskrepl integer yes 1238.It icmp rediraccept integer yes 1239.It icmp redirtimeout integer yes 1240.It icmp bmcastecho integer yes 1241.It ip allowsrcrt integer yes 1242.It ip anonportalgo.selected string yes 1243.It ip anonportalgo.available string yes 1244.It ip anonportalgo.reserve struct yes 1245.It ip anonportmax integer yes 1246.It ip anonportmin integer yes 1247.It ip checkinterface integer yes 1248.It ip directed-broadcast integer yes 1249.It ip do_loopback_cksum integer yes 1250.It ip forwarding integer yes 1251.It ip forwsrcrt integer yes 1252.It ip gifttl integer yes 1253.It ip grettl integer yes 1254.It ip hashsize integer yes 1255.It ip hostzerobroadcast integer yes 1256.It ip lowportmin integer yes 1257.It ip lowportmax integer yes 1258.It ip maxflows integer yes 1259.It ip maxfragpackets integer yes 1260.It ip mtudisc integer yes 1261.It ip mtudisctimeout integer yes 1262.It ip random_id integer yes 1263.It ip redirect integer yes 1264.It ip subnetsarelocal integer yes 1265.It ip ttl integer yes 1266.It tcp rfc1323 integer yes 1267.It tcp sendspace integer yes 1268.It tcp recvspace integer yes 1269.It tcp mssdflt integer yes 1270.It tcp syn_cache_limit integer yes 1271.It tcp syn_bucket_limit integer yes 1272.It tcp syn_cache_interval integer yes 1273.It tcp init_win integer yes 1274.It tcp init_win_local integer yes 1275.It tcp mss_ifmtu integer yes 1276.It tcp win_scale integer yes 1277.It tcp timestamps integer yes 1278.It tcp compat_42 integer yes 1279.It tcp cwm integer yes 1280.It tcp cwm_burstsize integer yes 1281.It tcp ack_on_push integer yes 1282.It tcp keepidle integer yes 1283.It tcp keepintvl integer yes 1284.It tcp keepcnt integer yes 1285.It tcp slowhz integer no 1286.It tcp keepinit integer yes 1287.It tcp log_refused integer yes 1288.It tcp rstppslimit integer yes 1289.It tcp ident struct no 1290.It tcp drop struct no 1291.It tcp sack.enable integer yes 1292.It tcp sack.globalholes integer no 1293.It tcp sack.globalmaxholes integer yes 1294.It tcp sack.maxholes integer yes 1295.It tcp ecn.enable integer yes 1296.It tcp ecn.maxretries integer yes 1297.It tcp congctl.selected string yes 1298.It tcp congctl.available string yes 1299.It tcp abc.enable integer yes 1300.It tcp abc.aggressive integer yes 1301.It udp checksum integer yes 1302.It udp do_loopback_cksum integer yes 1303.It udp recvspace integer yes 1304.It udp sendspace integer yes 1305.El 1306.Pp 1307The variables are as follows: 1308.Bl -tag -width "123456" 1309.It Li arp.down 1310Failed ARP entry lifetime. 1311.It Li arp.keep 1312Valid ARP entry lifetime. 1313.It Li carp.allow 1314If set to 0, incoming 1315.Xr carp 4 1316packets will not be processed. 1317If set to any other value, processing will occur. 1318Enabled by default. 1319.It Li carp.arpbalance 1320If set to any value other than 0, the ARP balancing functionality of 1321.Xr carp 4 1322is enabled. 1323When ARP requests are received for an IP address which is part of any virtual 1324host, carp will hash the source IP in the ARP request to select one of the 1325virtual hosts from the set of all the virtual hosts which have that IP address. 1326The master of that host will respond with the correct virtual MAC address. 1327Disabled by default. 1328.It Li carp.log 1329If set to any value other than 0, 1330.Xr carp 4 1331will log errors. 1332Disabled by default. 1333.It Li carp.preempt 1334If set to 0, 1335.Xr carp 4 1336will not attempt to become master if it is receiving advertisements from 1337another active master. 1338If set to any other value, carp will become master of the virtual host if it 1339believes it can send advertisements more frequently than the current master. 1340Disabled by default. 1341.It Li ip.allowsrcrt 1342If set to 1, the host accepts source routed packets. 1343.It Li ip.anonportalgo.available 1344The available RFC 6056 port randomization algorithms. 1345.It Li ip.anonportalgo.reserve 1346A bitmask of ports that will not be used during anonymous or privileged 1347port selection. 1348.It Li ip.anonportalgo.selected 1349The currently selected RFC 6056 port randomization algorithm. 1350.It Li ip.anonportmax 1351The highest port number to use for TCP and UDP ephemeral port allocation. 1352This cannot be set to less than 1024 or greater than 65535, and must 1353be greater than 1354.Li ip.anonportmin . 1355.It Li ip.anonportmin 1356The lowest port number to use for TCP and UDP ephemeral port allocation. 1357This cannot be set to less than 1024 or greater than 65535. 1358.It Li ip.checkinterface 1359If set to non-zero, the host will reject packets addressed to it 1360that arrive on an interface not bound to that address. 1361Currently, this must be disabled if ipnat is used to translate the 1362destination address to another local interface, or if addresses 1363are added to the loopback interface instead of the interface where 1364the packets for those packets are received. 1365.It Li ip.directed-broadcast 1366If set to 1, enables directed broadcast behavior for the host. 1367.It Li ip.do_loopback_cksum 1368Perform IP checksum on loopback. 1369.It Li ip.forwarding 1370If set to 1, enables IP forwarding for the host, 1371meaning that the host is acting as a router. 1372.It Li ip.forwsrcrt 1373If set to 1, enables forwarding of source-routed packets for the host. 1374This value may only be changed if the kernel security level is less than 1. 1375.It Li ip.gifttl 1376The maximum time-to-live (hop count) value for an IPv4 packet generated by 1377.Xr gif 4 1378tunnel interface. 1379.It Li ip.grettl 1380The maximum time-to-live (hop count) value for an IPv4 packet generated by 1381.Xr gre 4 1382tunnel interface. 1383.It Li ip.hashsize 1384The size of IPv4 Fast Forward hash table. 1385This value must be a power of 2 (64, 256...). 1386A larger hash table size results in fewer collisions. 1387Also see 1388.Li ip.maxflows . 1389.It Li ip.hostzerobroadcast 1390All zeroes address is broadcast address. 1391.It Li ip.lowportmax 1392The highest port number to use for TCP and UDP reserved port allocation. 1393This cannot be set to less than 0 or greater than 1024, and must 1394be greater than 1395.Li ip.lowportmin . 1396.It Li ip.lowportmin 1397The lowest port number to use for TCP and UDP reserved port allocation. 1398This cannot be set to less than 0 or greater than 1024, and must 1399be smaller than 1400.Li ip.lowportmax . 1401.It Li ip.maxflows 1402IPv4 Fast Forwarding is enabled by default. 1403If set to 0, IPv4 Fast Forwarding is disabled. 1404.Li ip.maxflows 1405controls the maximum amount of flows which can be created. 1406The default value is 256. 1407.It Li ip.maxfragpackets 1408The maximum number of fragmented packets the node will accept. 14090 means that the node will not accept any fragmented packets. 1410\-1 means that the node will accept as many fragmented packets as it receives. 1411The flag is provided basically for avoiding possible DoS attacks. 1412.It Li ip.mtudisc 1413If set to 1, enables Path MTU Discovery (RFC 1191). 1414When Path MTU Discovery is enabled, the transmitted TCP segment 1415size will be determined by the advertised maximum segment size 1416(MSS) from the remote end, as constrained by the path MTU. 1417If MTU Discovery is disabled, the transmitted segment size will 1418never be greater than 1419.Li tcp.mssdflt 1420(the local maximum segment size). 1421.It Li ip.mtudisctimeout 1422The number of seconds in which a route added by the Path MTU 1423Discovery engine will time out. 1424When the route times out, the Path 1425MTU Discovery engine will attempt to probe a larger path MTU. 1426.It Li ip.random_id 1427Assign random ip_id values. 1428.It Li ip.redirect 1429If set to 1, ICMP redirects may be sent by the host. 1430This option is ignored unless the host is routing IP packets, 1431and should normally be enabled on all systems. 1432.It Li ip.subnetsarelocal 1433If set to 1, subnets are to be considered local addresses. 1434.It Li ip.ttl 1435The maximum time-to-live (hop count) value for an IP packet sourced by 1436the system. 1437This value applies to normal transport protocols, not to ICMP. 1438.It Li icmp.errppslimit 1439The variable specifies the maximum number of outgoing ICMP error messages, 1440per second. 1441ICMP error messages that exceeded the value are subject to rate limitation 1442and will not go out from the node. 1443Negative value disables rate limitation. 1444.It Li icmp.maskrepl 1445If set to 1, ICMP network mask requests are to be answered. 1446.It Li icmp.rediraccept 1447If set to non-zero, the host will accept ICMP redirect packets. 1448Note that routers will never accept ICMP redirect packets, 1449and the variable is meaningful on IP hosts only. 1450.It Li icmp.redirtimeout 1451The variable specifies lifetime of routing entries generated by incoming 1452ICMP redirect. 1453This defaults to 600 seconds. 1454.It Li icmp.returndatabytes 1455Number of bytes to return in an ICMP error message. 1456.It Li icmp.bmcastecho 1457If set to 1, enables responding to ICMP echo or timestamp request to the 1458broadcast address. 1459.It Li tcp.ack_on_push 1460If set to 1, TCP is to immediately transmit an ACK upon reception of 1461a packet with PUSH set. 1462This can avoid losing a round trip time in some rare situations, 1463but has the caveat of potentially defeating TCP's delayed ACK algorithm. 1464Use of this option is generally not recommended, but 1465the variable exists in case your configuration really needs it. 1466.It Li tcp.compat_42 1467If set to 1, enables work-arounds for bugs in the 4.2BSD TCP implementation. 1468Use of this option is not recommended, although it may be 1469required in order to communicate with extremely old TCP implementations. 1470.It Li tcp.cwm 1471If set to 1, enables use of the Hughes/Touch/Heidemann Congestion Window 1472Monitoring algorithm. 1473This algorithm prevents line-rate bursts of packets that could 1474otherwise occur when data begins flowing on an idle TCP connection. 1475These line-rate bursts can contribute to network and router congestion. 1476This can be particularly useful on World Wide Web servers 1477which support HTTP/1.1, which has lingering connections. 1478.It Li tcp.cwm_burstsize 1479The Congestion Window Monitoring allowed burst size, in terms 1480of packet count. 1481.It Li tcp.delack_ticks 1482Number of ticks to delay sending an ACK. 1483.It Li tcp.do_loopback_cksum 1484Perform TCP checksum on loopback. 1485.It Li tcp.init_win 1486A value indicating the TCP initial congestion window. 1487The valid range 1488is 0 to 10 (maximum specified by RFC6928), 1489with a default of 4 (approximately 4K per RFC3390). 1490.It Li tcp.init_win_local 1491Like 1492.Li tcp.init_win , 1493but used when communicating with hosts on a local network. 1494.It Li tcp.keepcnt 1495Number of keepalive probes sent before declaring a connection dead. 1496If set to zero, there is no limit; 1497keepalives will be sent until some kind of 1498response is received from the peer. 1499.It Li tcp.keepidle 1500Time a connection must be idle before keepalives are sent (if keepalives 1501are enabled for the connection). 1502See also tcp.slowhz. 1503.It Li tcp.keepintvl 1504Time after a keepalive probe is sent until, in the absence of any response, 1505another probe is sent. 1506See also tcp.slowhz. 1507.It Li tcp.log_refused 1508If set to 1, refused TCP connections to the host will be logged. 1509.It Li tcp.keepinit 1510Timeout in seconds during connection establishment. 1511.It Li tcp.mss_ifmtu 1512If set to 1, TCP calculates the outgoing maximum segment size based on 1513the MTU of the appropriate interface. 1514If set to 0, it is calculated based on the greater of the MTU of the 1515interface, and the largest (non-loopback) interface MTU on the system. 1516.It Li tcp.mssdflt 1517The default maximum segment size both advertised to the peer 1518and to use when either the peer does not advertise a maximum segment size to 1519us during connection setup or Path MTU Discovery 1520.Li ( ip.mtudisc ) 1521is disabled. 1522Do not change this value unless you really know what you are doing. 1523.It Li tcp.recvspace 1524The default TCP receive buffer size. 1525.It Li tcp.rfc1323 1526If set to 1, enables RFC 1323 extensions to TCP. 1527.It Li tcp.rstppslimit 1528The variable specifies the maximum number of outgoing TCP RST packets, 1529per second. 1530TCP RST packet that exceeded the value are subject to rate limitation 1531and will not go out from the node. 1532Negative value disables rate limitation. 1533.It Li tcp.ident 1534Return the user ID of a connected socket pair. 1535(RFC1413 Identification Protocol lookups.) 1536.It Li tcp.drop 1537Drop a TCP socket pair connection. 1538.It Li tcp.sack.enable 1539If set to 1, enables RFC 2018 Selective ACKnowledgement. 1540.It Li tcp.sack.globalholes 1541Global number of TCP SACK holes. 1542.It Li tcp.sack.globalmaxholes 1543Global maximum number of TCP SACK holes. 1544.It Li tcp.sack.maxholes 1545Maximum number of TCP SACK holes allowed per connection. 1546.It Li tcp.ecn.enable 1547If set to 1, enables RFC 3168 Explicit Congestion Notification. 1548.It Li tcp.ecn.maxretries 1549Number of times to retry sending the ECN-setup packet. 1550.It Li tcp.sendspace 1551The default TCP send buffer size. 1552.It Li tcp.slowhz 1553The units for tcp.keepidle and tcp.keepintvl; those variables are in ticks 1554of a clock that ticks tcp.slowhz times per second. 1555(That is, their values 1556must be divided by the tcp.slowhz value to get times in seconds.) 1557.It Li tcp.syn_bucket_limit 1558The maximum number of entries allowed per hash bucket in the TCP 1559compressed state engine. 1560.It Li tcp.syn_cache_limit 1561The maximum number of entries allowed in the TCP compressed state 1562engine. 1563.It Li tcp.timestamps 1564If rfc1323 is enabled, a value of 1 indicates RFC 1323 time stamp options, 1565used for measuring TCP round trip times, are enabled. 1566.It Li tcp.win_scale 1567If rfc1323 is enabled, a value of 1 indicates RFC 1323 window scale options, 1568for increasing the TCP window size, are enabled. 1569.It Li tcp.congctl.available 1570The available TCP congestion control algorithms. 1571.It Li tcp.congctl.selected 1572The currently selected TCP congestion control algorithm. 1573.It Li tcp.abc.enable 1574If set to 1, use RFC 3465 Appropriate Byte Counting (ABC). 1575If set to 0, use traditional Packet Counting. 1576.It Li tcp.abc.aggressive 1577Choose the L parameter found in RFC 3465. 1578L is the maximum cwnd increase for an ack during slow start. 1579If set to 1, use L=2*SMSS. 1580If set to 0, use L=1*SMSS. 1581It has no effect unless tcp.abc.enable is set to 1. 1582.It Li udp.checksum 1583If set to 1, UDP checksums are being computed. 1584Received non-zero UDP checksums are always checked. 1585Disabling UDP checksums is strongly discouraged. 1586.It Li udp.recvspace 1587The default UDP receive buffer size. 1588.It Li udp.sendspace 1589The default UDP send buffer size. 1590.El 1591.Pp 1592For variables net.*.ipsec, please refer to 1593.Xr ipsec 4 . 1594.It Li net.inet6 ( Dv PF_INET6 ) 1595Get or set various global information about the IPv6 1596.Pq Internet Protocol version 6 . 1597The third level name is the protocol. 1598The fourth level name is the variable name. 1599The currently defined protocols and names are: 1600.Bl -column "Protocol" "anonportalgo.available" "integer" "Changeable" -offset indent 1601.It Sy Protocol Variable Sy Type Sy Changeable 1602.It icmp6 errppslimit integer yes 1603.It icmp6 mtudisc_hiwat integer yes 1604.It icmp6 mtudisc_lowat integer yes 1605.It icmp6 nd6_debug integer yes 1606.It icmp6 nd6_delay integer yes 1607.It icmp6 nd6_maxnudhint integer yes 1608.It icmp6 nd6_mmaxtries integer yes 1609.It icmp6 nd6_prune integer yes 1610.It icmp6 nd6_umaxtries integer yes 1611.It icmp6 nd6_useloopback integer yes 1612.It icmp6 nodeinfo integer yes 1613.It icmp6 rediraccept integer yes 1614.It icmp6 redirtimeout integer yes 1615.It ip6 accept_rtadv integer yes 1616.It ip6 addctlpolicy struct in6_addrpolicy no 1617.It ip6 anonportalgo.selected string yes 1618.It ip6 anonportalgo.available string yes 1619.It ip6 anonportalgo.reserve struct yes 1620.It ip6 anonportmax integer yes 1621.It ip6 anonportmin integer yes 1622.It ip6 auto_flowlabel integer yes 1623.It ip6 dad_count integer yes 1624.It ip6 defmcasthlim integer yes 1625.It ip6 forwarding integer yes 1626.It ip6 gifhlim integer yes 1627.It ip6 hashsize integer yes 1628.It ip6 hlim integer yes 1629.It ip6 hdrnestlimit integer yes 1630.It ip6 kame_version string no 1631.It ip6 keepfaith integer yes 1632.It ip6 log_interval integer yes 1633.It ip6 lowportmax integer yes 1634.It ip6 lowportmin integer yes 1635.It ip6 maxdynroutes integer yes 1636.It ip6 maxifprefixes integer yes 1637.It ip6 maxifdefrouters integer yes 1638.It ip6 maxflows integer yes 1639.It ip6 maxfragpackets integer yes 1640.It ip6 maxfrags integer yes 1641.It ip6 neighborgcthresh integer yes 1642.It ip6 redirect integer yes 1643.It ip6 rr_prune integer yes 1644.It ip6 use_deprecated integer yes 1645.It ip6 v6only integer yes 1646.It udp6 do_loopback_cksum integer yes 1647.It udp6 recvspace integer yes 1648.It udp6 sendspace integer yes 1649.El 1650.Pp 1651The variables are as follows: 1652.Bl -tag -width "123456" 1653.It Li ip6.accept_rtadv 1654If set to non-zero, the node will accept ICMPv6 router advertisement packets 1655and autoconfigures address prefixes and default routers. 1656The node must be a host 1657.Pq not a router 1658for the option to be meaningful. 1659.It Li ip6.anonportalgo.available 1660The available RFC 6056 port randomization algorithms. 1661.It Li ip6.anonportalgo.reserve 1662A bitmask of ports that will not be used during anonymous or privileged 1663port selection. 1664.It Li ip6.anonportalgo.selected 1665The currently selected RFC 6056 port randomization algorithm. 1666.It Li ip6.anonportmax 1667The highest port number to use for TCP and UDP ephemeral port allocation. 1668This cannot be set to less than 1024 or greater than 65535, and must 1669be greater than 1670.Li ip6.anonportmin . 1671.It Li ip6.anonportmin 1672The lowest port number to use for TCP and UDP ephemeral port allocation. 1673This cannot be set to less than 1024 or greater than 65535. 1674.It Li ip6.auto_flowlabel 1675On connected transport protocol packets, 1676fill IPv6 flowlabel field to help intermediate routers to identify packet flows. 1677.It Li ip6.dad_count 1678The variable configures number of IPv6 DAD 1679.Pq duplicated address detection 1680probe packets. 1681The packets will be generated when IPv6 interface addresses are configured. 1682.It Li ip6.defmcasthlim 1683The default hop limit value for an IPv6 multicast packet sourced by the node. 1684This value applies to all the transport protocols on top of IPv6. 1685There are APIs to override the value, as documented in 1686.Xr ip6 4 . 1687.It Li ip6.forwarding 1688If set to 1, enables IPv6 forwarding for the node, 1689meaning that the node is acting as a router. 1690If set to 0, disables IPv6 forwarding for the node, 1691meaning that the node is acting as a host. 1692IPv6 specification defines node behavior for 1693.Dq router 1694case and 1695.Dq host 1696case quite differently, and changing this variable during operation 1697may cause serious trouble. 1698It is recommended to configure the variable at bootstrap time, 1699and bootstrap time only. 1700.It Li ip6.gifhlim 1701The maximum hop limit value for an IPv6 packet generated by 1702.Xr gif 4 1703tunnel interface. 1704.It Li ip6.hdrnestlimit 1705The number of IPv6 extension headers permitted on incoming IPv6 packets. 1706If set to 0, the node will accept as many extension headers as possible. 1707.It Li ip6.hashsize 1708The size of IPv6 Fast Forward hash table. 1709This value must be a power of 2 (64, 256, ...). 1710A larger hash table size results in fewer collisions. 1711Also see 1712.Li ip6.maxflows . 1713.It Li ip6.hlim 1714The default hop limit value for an IPv6 unicast packet sourced by the node. 1715This value applies to all the transport protocols on top of IPv6. 1716There are APIs to override the value, as documented in 1717.Xr ip6 4 . 1718.It Li ip6.kame_version 1719The string identifies the version of KAME IPv6 stack implemented in the kernel. 1720.It Li ip6.keepfaith 1721If set to non-zero, it enables 1722.Dq FAITH 1723TCP relay IPv6-to-IPv4 translator code in the kernel. 1724Refer 1725.Xr faith 4 1726and 1727.Xr faithd 8 1728for detail. 1729.It Li ip6.log_interval 1730The variable controls amount of logs generated by IPv6 packet 1731forwarding engine, by setting interval between log output 1732.Pq in seconds . 1733.It Li ip6.lowportmax 1734The highest port number to use for TCP and UDP reserved port allocation. 1735This cannot be set to less than 0 or greater than 1024, and must 1736be greater than 1737.Li ip6.lowportmin . 1738.It Li ip6.lowportmin 1739The lowest 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 smaller than 1742.Li ip6.lowportmax . 1743.It Li ip6.maxdynroutes 1744Maximum number of routes created by redirect. 1745Set it to negative to disable. 1746The default value is 4096. 1747.It Li ip6.maxifprefixes 1748Maximum number of prefixes created by route advertisements per interface. 1749Set it to negative to disable. 1750The default value is 16. 1751.It Li ip6.maxifdefrouters 16 1752Maximum number of default routers created by route advertisements per interface. 1753Set it to negative to disable. 1754The default value is 16. 1755.It Li ip6.maxflows 1756IPv6 Fast Forwarding is enabled by default. 1757If set to 0, IPv6 Fast Forwarding is disabled. 1758.Li ip6.maxflows 1759controls the maximum amount of flows which can be created. 1760The default value is 256. 1761.It Li ip6.maxfragpackets 1762The maximum number of fragmented packets the node will accept. 17630 means that the node will not accept any fragmented packets. 1764\-1 means that the node will accept as many fragmented packets as it receives. 1765The flag is provided basically for avoiding possible DoS attacks. 1766.It Li ip6.maxfrags 1767The maximum number of fragments the node will accept. 17680 means that the node will not accept any fragments. 1769\-1 means that the node will accept as many fragments as it receives. 1770The flag is provided basically for avoiding possible DoS attacks. 1771.It Li ip6.neighborgcthresh 1772Maximum number of entries in neighbor cache per interface. 1773Set to negative to disable. 1774The default value is 2048. 1775.It Li ip6.redirect 1776If set to 1, ICMPv6 redirects may be sent by the node. 1777This option is ignored unless the node is routing IP packets, 1778and should normally be enabled on all systems. 1779.It Li ip6.rr_prune 1780The variable specifies interval between IPv6 router renumbering prefix 1781babysitting, in seconds. 1782.It Li ip6.use_deprecated 1783The variable controls use of deprecated address, specified in RFC 2462 5.5.4. 1784.It Li ip6.v6only 1785The variable specifies initial value for 1786.Dv IPV6_V6ONLY 1787socket option for 1788.Dv AF_INET6 1789socket. 1790Please refer to 1791.Xr ip6 4 1792for detail. 1793.It Li icmp6.errppslimit 1794The variable specifies the maximum number of outgoing ICMPv6 error messages, 1795per second. 1796ICMPv6 error messages that exceeded the value are subject to rate limitation 1797and will not go out from the node. 1798Negative value disables rate limitation. 1799.It Li icmp6.mtudisc_hiwat 1800.It Li icmp6.mtudisc_lowat 1801The variables define the maximum number of routing table entries, 1802created due to path MTU discovery 1803.Pq prevents denial-of-service attacks with ICMPv6 too big messages . 1804When IPv6 path MTU discovery happens, we keep path MTU information into 1805the routing table. 1806If the number of routing table entries exceed the value, 1807the kernel will not attempt to keep the path MTU information. 1808.Li icmp6.mtudisc_hiwat 1809is used when we have verified ICMPv6 too big messages. 1810.Li icmp6.mtudisc_lowat 1811is used when we have unverified ICMPv6 too big messages. 1812Verification is performed by using address/port pairs kept in connected pcbs. 1813Negative value disables the upper limit. 1814.It Li icmp6.nd6_debug 1815If set to non-zero, kernel IPv6 neighbor discovery code will generate 1816debugging messages. 1817The debug outputs are useful to diagnose IPv6 interoperability issues. 1818The flag must be set to 0 for normal operation. 1819.It Li icmp6.nd6_delay 1820The variable specifies 1821.Dv DELAY_FIRST_PROBE_TIME 1822timing constant in IPv6 neighbor discovery specification 1823.Pq RFC 2461 , 1824in seconds. 1825.It Li icmp6.nd6_maxnudhint 1826IPv6 neighbor discovery permits upper layer protocols to supply reachability 1827hints, to avoid unnecessary neighbor discovery exchanges. 1828The variable defines the number of consecutive hints the neighbor discovery 1829layer will take. 1830For example, by setting the variable to 3, neighbor discovery layer 1831will take 3 consecutive hints in maximum. 1832After receiving 3 hints, neighbor discovery layer will perform 1833normal neighbor discovery process. 1834.It Li icmp6.nd6_mmaxtries 1835The variable specifies 1836.Dv MAX_MULTICAST_SOLICIT 1837constant in IPv6 neighbor discovery specification 1838.Pq RFC 2461 . 1839.It Li icmp6.nd6_prune 1840The variable specifies interval between IPv6 neighbor cache babysitting, 1841in seconds. 1842.It Li icmp6.nd6_umaxtries 1843The variable specifies 1844.Dv MAX_UNICAST_SOLICIT 1845constant in IPv6 neighbor discovery specification 1846.Pq RFC 2461 . 1847.It Li icmp6.nd6_useloopback 1848If set to non-zero, kernel IPv6 stack will use loopback interface for 1849local traffic. 1850.It Li icmp6.nodeinfo 1851The variable enables responses to ICMPv6 node information queries. 1852If you set the variable to 0, responses will not be generated for 1853ICMPv6 node information queries. 1854Since node information queries can have a security impact, it is 1855possible to fine tune which responses should be answered. 1856Two separate bits can be set. 1857.Bl -tag -width "12345" 1858.It 1 1859Respond to ICMPv6 FQDN queries, e.g. 1860.Li ping6 -w . 1861.It 2 1862Respond to ICMPv6 node addresses queries, e.g. 1863.Li ping6 -a . 1864.El 1865.It Li icmp6.rediraccept 1866If set to non-zero, the host will accept ICMPv6 redirect packets. 1867Note that IPv6 routers will never accept ICMPv6 redirect packets, 1868and the variable is meaningful on IPv6 hosts 1869.Pq non-router 1870only. 1871.It Li icmp6.redirtimeout 1872The variable specifies lifetime of routing entries generated by incoming 1873ICMPv6 redirect. 1874.It Li udp6.do_loopback_cksum 1875Perform UDP checksum on loopback. 1876.It Li udp6.recvspace 1877Default UDP receive buffer size. 1878.It Li udp6.sendspace 1879Default UDP send buffer size. 1880.El 1881.Pp 1882We reuse net.*.tcp for 1883.Tn TCP 1884over 1885.Tn IPv6 , 1886and therefore we do not have variables net.*.tcp6. 1887Variables net.inet6.udp6 have identical meaning to net.inet.udp. 1888Please refer to 1889.Li PF_INET 1890section above. 1891For variables net.*.ipsec6, please refer to 1892.Xr ipsec 4 . 1893.It Li net.key ( Dv PF_KEY ) 1894Get or set various global information about the IPsec key management. 1895The third level name is the variable name. 1896The currently defined variable and names are: 1897.Bl -column "blockacq_lifetime" "integer" "Changeable" -offset indent 1898.It Sy Variable Type Sy Changeable 1899.It debug integer yes 1900.It enabled integer yes 1901.It used integer no 1902.It spi_try integer yes 1903.It spi_min_value integer yes 1904.It spi_max_value integer yes 1905.It larval_lifetime integer yes 1906.It blockacq_count integer yes 1907.It blockacq_lifetime integer yes 1908.It esp_keymin integer yes 1909.It esp_auth integer yes 1910.It ah_keymin integer yes 1911.El 1912.Pp 1913The variables are as follows: 1914.Bl -tag -width "123456" 1915.It Li debug 1916Turn on debugging message from within the kernel. 1917The value is a bitmap, as defined in 1918.In netkey/key_debug.h . 1919.It Li enabled 1920Control processing of IPsec control messages. 1921.Bl -tag -width indent 1922.It 0 1923Never allow IPsec processing 1924.It 1 1925Allow IPsec processing when SPD policies are present. 1926.It 2 1927Force IPsec processing even when SPD policies are not present. 1928.El 1929.It Li used 1930Based on if IPsec is enabled, and SPD rule existance, show if 1931IPsec is being used. 1932Note that currenly once IPsec is being used, it cannot be disabled. 1933.It Li spi_try 1934The number of times the kernel will try to obtain an unique SPI 1935when it generates it from random number generator. 1936.It Li spi_min_value 1937Minimum SPI value when generating it within the kernel. 1938.It Li spi_max_value 1939Maximum SPI value when generating it within the kernel. 1940.It Li larval_lifetime 1941Lifetime for LARVAL SAD entries, in seconds. 1942.It Li blockacq_count 1943Number of ACQUIRE PF_KEY messages to be blocked after an ACQUIRE message. 1944It avoids flood of ACQUIRE PF_KEY from being sent from the kernel to the 1945key management daemon. 1946.It Li blockacq_lifetime 1947Lifetime of ACQUIRE PF_KEY message. 1948.It Li esp_keymin 1949Minimum ESP key length, in bits. 1950The value is used when the kernel creates proposal payload 1951on ACQUIRE PF_KEY message. 1952.It Li esp_auth 1953Whether ESP authentication should be used or not. 1954Non-zero value indicates that ESP authentication should be used. 1955The value is used when the kernel creates proposal payload 1956on ACQUIRE PF_KEY message. 1957.It Li ah_keymin 1958Minimum AH key length, in bits, 1959The value is used when the kernel creates proposal payload 1960on ACQUIRE PF_KEY message. 1961.El 1962.El 1963.Ss The proc.* subtree 1964The string and integer information available for the 1965.Li proc 1966level is detailed below. 1967The changeable column shows whether a process with appropriate 1968privilege may change the value. 1969These values are per-process, 1970and as such may change from one process to another. 1971When a process is created, 1972the default values are inherited from its parent. 1973When a set-user-ID or set-group-ID binary is executed, the 1974value of PROC_PID_CORENAME is reset to the system default value. 1975The second level name is either the magic value PROC_CURPROC, which 1976points to the current process, or the PID of the target process. 1977.Bl -column "proc.pid.corename" "string" "not applicable" -offset indent 1978.It Sy Third level name Sy Type Sy Changeable 1979.It proc.pid.corename string yes 1980.It proc.pid.rlimit node not applicable 1981.It proc.pid.stopfork int yes 1982.It proc.pid.stopexec int yes 1983.It proc.pid.stopexit int yes 1984.El 1985.Bl -tag -width "123456" 1986.It Li proc.pid.corename ( Dv PROC_PID_CORENAME ) 1987The template used for the core dump file name (see 1988.Xr core 5 1989for details). 1990The base name must either be 1991.Pa core 1992or end with the suffix 1993.Pa .core 1994(the super-user may set arbitrary names). 1995By default it points to 1996.Dv KERN_DEFCORENAME . 1997.It Li proc.pid.rlimit ( Dv PROC_PID_LIMIT ) 1998Return resources limits, as defined for the 1999.Xr getrlimit 2 2000and 2001.Xr setrlimit 2 2002system calls. 2003The fourth level name is one of: 2004.Bl -tag -width "123456" 2005.It Li proc.pid.rlimit.cputime ( Dv PROC_PID_LIMIT_CPU ) 2006The maximum amount of CPU time (in seconds) to be used by each process. 2007.It Li proc.pid.rlimit.filesize ( Dv PROC_PID_LIMIT_FSIZE ) 2008The largest size (in bytes) file that may be created. 2009.It Li proc.pid.rlimit.datasize ( Dv PROC_PID_LIMIT_DATA ) 2010The maximum size (in bytes) of the data segment for a process; 2011this defines how far a program may extend its break with the 2012.Xr sbrk 2 2013system call. 2014.It Li proc.pid.rlimit.stacksize ( Dv PROC_PID_LIMIT_STACK ) 2015The maximum size (in bytes) of the stack segment for a process; 2016this defines how far a program's stack segment may be extended. 2017Stack extension is performed automatically by the system. 2018.It Li proc.pid.rlimit.coredumpsize ( Dv PROC_PID_LIMIT_CORE ) 2019The largest size (in bytes) 2020.Pa core 2021file that may be created. 2022.It Li proc.pid.rlimit.memoryuse ( Dv PROC_PID_LIMIT_RSS ) 2023The maximum size (in bytes) to which a process's resident set size may 2024grow. 2025This imposes a limit on the amount of physical memory to be given to 2026a process; if memory is tight, the system will prefer to take memory 2027from processes that are exceeding their declared resident set size. 2028.It Li proc.pid.rlimit.memorylocked ( Dv PROC_PID_LIMIT_MEMLOCK ) 2029The maximum size (in bytes) which a process may lock into memory 2030using the 2031.Xr mlock 2 2032function. 2033.It Li proc.pid.rlimit.maxproc ( Dv PROC_PID_LIMIT_NPROC ) 2034The maximum number of simultaneous processes for this user id. 2035.It Li proc.pid.rlimit.descriptors ( Dv PROC_PID_LIMIT_NOFILE ) 2036The maximum number of open files for this process. 2037.It Li proc.pid.rlimit.sbsize ( Dv PROC_PID_LIMIT_SBSIZE ) 2038The maximum size (in bytes) of the socket buffers 2039set by the 2040.Xr setsockopt 2 2041.Dv SO_RCVBUF 2042and 2043.Dv SO_SNDBUF 2044options. 2045.It Li proc.pid.rlimit.vmemoryuse ( Dv PROC_PID_LIMIT_AS ) 2046The maximum size (in bytes) which a process can obtain. 2047.It Li proc.pid.rlimit.maxlwp ( Dv PROC_PID_LIMIT_NTHR ) 2048The maximum number of threads that cen be created and running at one time in 2049the process. 2050The first thread of each process is not counted against this. 2051.El 2052.Pp 2053The fifth level name is one of 2054.Li soft ( Dv PROC_PID_LIMIT_TYPE_SOFT ) 2055or 2056.Li hard ( Dv PROC_PID_LIMIT_TYPE_HARD ) , 2057to select respectively the soft or hard limit. 2058Both are of type integer. 2059.It Li proc.pid.stopfork ( Dv PROC_PID_STOPFORK ) 2060If non zero, the process' children will be stopped after 2061.Xr fork 2 2062calls. 2063The children is created in the SSTOP state and is never scheduled 2064for running before being stopped. 2065This feature helps attaching a process with a debugger such as 2066.Xr gdb 1 2067before it had the opportunity to actually do anything. 2068.Pp 2069This value is inherited by the process's children, and it also 2070apply to emulation specific system calls that fork a new process, such as 2071.Fn sproc 2072or 2073.Fn clone . 2074.It Li proc.pid.stopexec ( Dv PROC_PID_STOPEXEC ) 2075If non zero, the process will be stopped on next 2076.Xr exec 3 2077call. 2078The process created by 2079.Xr exec 3 2080is created in the SSTOP state and is never scheduled for running 2081before being stopped. 2082This feature helps attaching a process with a debugger such as 2083.Xr gdb 1 2084before it had the opportunity to actually do anything. 2085.Pp 2086This value is inherited by the process's children. 2087.It Li proc.pid.stopexit ( Dv PROC_PID_STOPEXIT ) 2088If non zero, the process will be stopped on when it has cause to exit, 2089either by way of calling 2090.Xr exit 3 , 2091.Xr _exit 2 , 2092or by the receipt of a specific signal. 2093The process is stopped before any of its resources or vm space is 2094released allowing examination of the termination state of a process 2095before it disappears. 2096This feature can be used to examine the final conditions of the 2097process's vmspace via 2098.Xr pmap 1 2099or its resource settings with 2100.Xr sysctl 8 2101before it disappears. 2102.Pp 2103This value is also inherited by the process's children. 2104.El 2105.Ss The user.* subtree ( Dv CTL_USER ) 2106The string and integer information available for the 2107.Li user 2108level is detailed below. 2109The changeable column shows whether a process with appropriate 2110privilege may change the value. 2111.Bl -column "user.coll_weights_max" "integer" "Changeable" -offset indent 2112.It Sy Second level name Sy Type Sy Changeable 2113.It user.atexit_max integer no 2114.It user.bc_base_max integer no 2115.It user.bc_dim_max integer no 2116.It user.bc_scale_max integer no 2117.It user.bc_string_max integer no 2118.It user.coll_weights_max integer no 2119.It user.cs_path string no 2120.It user.expr_nest_max integer no 2121.It user.line_max integer no 2122.It user.posix2_c_bind integer no 2123.It user.posix2_c_dev integer no 2124.It user.posix2_char_term integer no 2125.It user.posix2_fort_dev integer no 2126.It user.posix2_fort_run integer no 2127.It user.posix2_localedef integer no 2128.It user.posix2_sw_dev integer no 2129.It user.posix2_upe integer no 2130.It user.posix2_version integer no 2131.It user.re_dup_max integer no 2132.It user.stream_max integer no 2133.It user.stream_max integer no 2134.It user.tzname_max integer no 2135.El 2136.Bl -tag -width "123456" 2137.It Li user.atexit_max ( Dv USER_ATEXIT_MAX ) 2138The maximum number of functions that may be registered with 2139.Xr atexit 3 . 2140.It Li user.bc_base_max ( Dv USER_BC_BASE_MAX ) 2141The maximum ibase/obase values in the 2142.Xr bc 1 2143utility. 2144.It Li user.bc_dim_max ( Dv USER_BC_DIM_MAX ) 2145The maximum array size in the 2146.Xr bc 1 2147utility. 2148.It Li user.bc_scale_max ( Dv USER_BC_SCALE_MAX ) 2149The maximum scale value in the 2150.Xr bc 1 2151utility. 2152.It Li user.bc_string_max ( Dv USER_BC_STRING_MAX ) 2153The maximum string length in the 2154.Xr bc 1 2155utility. 2156.It Li user.coll_weights_max ( Dv USER_COLL_WEIGHTS_MAX ) 2157The maximum number of weights that can be assigned to any entry of 2158the LC_COLLATE order keyword in the locale definition file. 2159.It Li user.cs_path ( USER_CS_PATH ) 2160Return a value for the 2161.Ev PATH 2162environment variable that finds all the standard utilities. 2163.It Li user.expr_nest_max ( Dv USER_EXPR_NEST_MAX ) 2164The maximum number of expressions that can be nested within 2165parenthesis by the 2166.Xr expr 1 2167utility. 2168.It Li user.line_max ( Dv USER_LINE_MAX ) 2169The maximum length in bytes of a text-processing utility's input 2170line. 2171.It Li user.posix2_char_term ( Dv USER_POSIX2_CHAR_TERM ) 2172Return 1 if the system supports at least one terminal type capable of 2173all operations described in 2174.St -p1003.2 , 2175otherwise\ 0. 2176.It Li user.posix2_c_bind ( Dv USER_POSIX2_C_BIND ) 2177Return 1 if the system's C-language development facilities support the 2178C-Language Bindings Option, otherwise\ 0. 2179.It Li user.posix2_c_dev ( Dv USER_POSIX2_C_DEV ) 2180Return 1 if the system supports the C-Language Development Utilities Option, 2181otherwise\ 0. 2182.It Li user.posix2_fort_dev ( Dv USER_POSIX2_FORT_DEV ) 2183Return 1 if the system supports the FORTRAN Development Utilities Option, 2184otherwise\ 0. 2185.It Li user.posix2_fort_run ( Dv USER_POSIX2_FORT_RUN ) 2186Return 1 if the system supports the FORTRAN Runtime Utilities Option, 2187otherwise\ 0. 2188.It Li user.posix2_localedef ( Dv USER_POSIX2_LOCALEDEF ) 2189Return 1 if the system supports the creation of locales, otherwise\ 0. 2190.It Li user.posix2_sw_dev ( Dv USER_POSIX2_SW_DEV ) 2191Return 1 if the system supports the Software Development Utilities Option, 2192otherwise\ 0. 2193.It Li user.posix2_upe ( Dv USER_POSIX2_UPE ) 2194Return 1 if the system supports the User Portability Utilities Option, 2195otherwise\ 0. 2196.It Li user.posix2_version ( Dv USER_POSIX2_VERSION ) 2197The version of 2198.St -p1003.2 2199with which the system attempts to comply. 2200.It Li user.re_dup_max ( Dv USER_RE_DUP_MAX ) 2201The maximum number of repeated occurrences of a regular expression 2202permitted when using interval notation. 2203.It Li user.stream_max ( Dv USER_STREAM_MAX ) 2204The minimum maximum number of streams that a process may have open 2205at any one time. 2206.It Li user.tzname_max ( Dv USER_TZNAME_MAX ) 2207The minimum maximum number of types supported for the name of a 2208timezone. 2209.El 2210.Ss The vm.* subtree ( Dv CTL_VM ) 2211The string and integer information available for the 2212.Li vm 2213level is detailed below. 2214The changeable column shows whether a process with appropriate 2215privilege may change the value. 2216.Bl -column "Second level name" "struct uvmexp_sysctl" "Changeable" -offset indent 2217.It Sy Second level name Sy Type Sy Changeable 2218.It vm.anonmax int yes 2219.It vm.anonmin int yes 2220.It vm.bufcache int yes 2221.It vm.bufmem int no 2222.It vm.bufmem_hiwater int yes 2223.It vm.bufmem_lowater int yes 2224.It vm.execmax int yes 2225.It vm.execmin int yes 2226.It vm.filemax int yes 2227.It vm.filemin int yes 2228.It vm.loadavg struct loadavg no 2229.It vm.maxslp int no 2230.It vm.nkmempages int no 2231.It vm.uspace int no 2232.It vm.uvmexp struct uvmexp no 2233.It vm.uvmexp2 struct uvmexp_sysctl no 2234.It vm.vmmeter struct vmtotal no 2235.It vm.proc.map struct kinfo_vmentry no 2236.El 2237.Bl -tag -width "123456" 2238.It Li vm.anonmax ( Dv VM_ANONMAX ) 2239The percentage of physical memory which will be reclaimed 2240from other types of memory usage to store anonymous application data. 2241.It Li vm.anonmin ( Dv VM_ANONMIN ) 2242The percentage of physical memory which will be always be available for 2243anonymous application data. 2244.It Li vm.bufcache ( Dv VM_BUFCACHE ) 2245The percentage of physical memory which will be available 2246for the buffer cache. 2247.It Li vm.bufmem ( Dv VM_BUFMEM ) 2248The amount of kernel memory that is being used by the buffer cache. 2249.It Li vm.bufmem_lowater ( Dv VM_BUFMEM_LOWATER ) 2250The minimum amount of kernel memory to reserve for the 2251buffer cache. 2252.It Li vm.bufmem_hiwater ( Dv VM_BUFMEM_HIWATER ) 2253The maximum amount of kernel memory to be used for the 2254buffer cache. 2255.It Li vm.execmax ( Dv VM_EXECMAX ) 2256The percentage of physical memory which will be reclaimed 2257from other types of memory usage to store cached executable data. 2258.It Li vm.execmin ( Dv VM_EXECMIN ) 2259The percentage of physical memory which will be always be available for 2260cached executable data. 2261.It Li vm.filemax ( Dv VM_FILEMAX ) 2262The percentage of physical memory which will be reclaimed 2263from other types of memory usage to store cached file data. 2264.It Li vm.filemin ( Dv VM_FILEMIN ) 2265The percentage of physical memory which will be always be available for 2266cached file data. 2267.It Li vm.loadavg ( Dv VM_LOADAVG ) 2268Return the load average history. 2269The returned data consists of a 2270.Vt struct loadavg . 2271.It Li vm.maxslp ( Dv VM_MAXSLP ) 2272The value of the maxslp kernel global variable. 2273.It Li vm.vmmeter ( Dv VM_METER ) 2274Return system wide virtual memory statistics. 2275The returned data consists of a 2276.Vt struct vmtotal . 2277.It vm.user_va0_disable 2278A flag which controls whether user processes can map virtual address\ 0. 2279.It Li vm.proc.map ( Dv VM_PROC ) 2280The third level is 2281.dv VM_PROC_MAP , 2282the fourth is the pid of the process to display the vm object entries for, and 2283the fifth is the size of 2284.Vt struct kinfo_vmentry . 2285Returns an array of 2286.Vt struct kinfo_vmentry 2287objects. 2288.It Li vm.uspace ( Dv VM_USPACE ) 2289The number of bytes allocated for each kernel stack. 2290.It Li vm.uvmexp ( Dv VM_UVMEXP ) 2291Return system wide virtual memory statistics. 2292The returned data consists of a 2293.Vt struct uvmexp . 2294.It Li vm.uvmexp2 ( Dv VM_UVMEXP2 ) 2295Return system wide virtual memory statistics. 2296The returned data consists of a 2297.Vt struct uvmexp_sysctl . 2298.\" XXX vm.idlezero 2299.El 2300.Ss The ddb.* subtree ( Dv CTL_DDB ) 2301The information available for the 2302.Li ddb 2303level is detailed below. 2304The changeable column shows whether a process with appropriate 2305privilege may change the value. 2306.\" XXX sort 2307.Bl -column "Second level name" "integer" "Changeable" -offset indent 2308.It Sy Second level name Sy Type Sy Changeable 2309.It ddb.radix integer yes 2310.It ddb.maxoff integer yes 2311.It ddb.maxwidth integer yes 2312.It ddb.lines integer yes 2313.It ddb.tabstops integer yes 2314.It ddb.onpanic integer yes 2315.It ddb.fromconsole integer yes 2316.It ddb.tee_msgbuf integer yes 2317.It ddb.commandonenter string yes 2318.El 2319.Bl -tag -width "123456" 2320.It Li ddb.radix ( Dv DDBCTL_RADIX ) 2321The input and output radix. 2322.It Li ddb.maxoff ( Dv DDBCTL_MAXOFF ) 2323The maximum symbol offset. 2324.It Li ddb.maxwidth ( Dv DDBCTL_MAXWIDTH ) 2325The maximum output line width. 2326.It Li ddb.lines ( Dv DDBCTL_LINES ) 2327Number of display lines. 2328.It Li ddb.tabstops ( Dv DDBCTL_TABSTOPS ) 2329Tab width. 2330.It Li ddb.onpanic ( Dv DDBCTL_ONPANIC ) 2331If greater than zero, DDB will be entered if the kernel panics. 2332A value of 1 causes the system to enter DDB on panic, while a value of 2 2333causes the kernel to attempt to print out a stack trace before entering DDB. 2334A value of 0 causes the kernel to attempt to print a stack trace, then 2335reboot, while a value of \-1 means neither a stack trace will be printed 2336nor DDB entered. 2337.It Li ddb.fromconsole ( Dv DDBCTL_FROMCONSOLE ) 2338If not zero, DDB may be entered by sending a break on a serial 2339console or by a special key sequence on a graphics console. 2340.It Li ddb.tee_msgbuf 2341If not zero, DDB will output also to the kernel message buffer. 2342.It Li ddb.commandonenter 2343If not empty, a command to be executed on each enter to the 2344.Tn DDB . 2345.\" 2346.\" XXX: (a) ddb.commandonenter is missing in ddb(4); 2347.\" (b) No DDBCTL definitions for tee_msgbuf and commandonenter. 2348.El 2349.Pp 2350Some of these 2351.Tn MIB 2352nodes are also available as variables from within the debugger. 2353See 2354.Xr ddb 4 2355for more details. 2356.Ss The security.* subtree ( Dv CTL_SECURITY ) 2357The 2358.Li security 2359level contains various security-related settings for 2360the system. 2361The available second level names are: 2362.Bl -column "Second level name" "integer" "Changeable" -offset indent 2363.It Sy Second level name Sy Type Sy Changeable 2364.It Li security.curtain integer yes 2365.It Li security.models node not applicable 2366.It Li security.pax node not applicable 2367.El 2368.Pp 2369Available settings are detailed below. 2370.Bl -tag -width "123456" 2371.It Li security.curtain 2372If non-zero, will filter return objects according to the user 2373.Tn ID 2374requesting information about them, preventing users from 2375accessing any objects they do not own. 2376.Pp 2377At the moment, it affects 2378.Xr ps 1 , 2379.Xr netstat 1 2380(for 2381.Dv PF_INET , 2382.Dv PF_INET6 , 2383and 2384.Dv PF_UNIX 2385PCBs), and 2386.Xr w 1 . 2387.It Li security.models 2388.Nx 2389supports pluggable security models. 2390Every security model used, whether if loaded as a module or built with the system, 2391is required to add an entry to this node with at least one element, 2392.Dq name , 2393indicating the name of the security model. 2394.Pp 2395In addition to the name, any settings and other information private to the 2396security model will be available under this node. 2397See 2398.Xr secmodel 9 2399for more information. 2400.It Li security.pax 2401Settings for PaX -- exploit mitigation features. 2402For more information on any of the PaX features, please see 2403.Xr paxctl 8 2404and 2405.Xr security 7 . 2406The available third and fourth level names are: 2407.Bl -column "security.pax.segvguard.suspend_timeout" "integer" "Changeable" \ 2408-offset 2n 2409.It Sy Third and fourth level names Ta Sy Type Ta Sy Changeable 2410.It Li security.pax.aslr.enabled integer yes 2411.\".It Li security.pax.aslr.exec_len integer yes 2412.It Li security.pax.aslr.global integer yes 2413.\".It Li security.pax.aslr.mmap_len integer yes 2414.\".It Li security.pax.aslr.stack_len integer yes 2415.It Li security.pax.mprotect.enabled integer yes 2416.It Li security.pax.mprotect.global integer yes 2417.It Li security.pax.segvguard.enabled integer yes 2418.It Li security.pax.segvguard.expiry_timeout integer yes 2419.It Li security.pax.segvguard.global integer yes 2420.It Li security.pax.segvguard.max_crashes integer yes 2421.It Li security.pax.segvguard.suspend_timeout integer yes 2422.El 2423.Bl -tag -width "123456" 2424.It Li security.pax.aslr.enabled 2425Enable PaX ASLR (Address Space Layout Randomization). 2426.Pp 2427The value of this 2428knob must be non-zero for PaX ASLR to be enabled, even if a program is set to 2429explicit enable. 2430.\".It Li security.pax.aslr.exec_len 2431.\" XXX: Undocumented. 2432.It Li security.pax.aslr.global 2433Specifies the default global policy for programs without an 2434explicit enable/disable flag. 2435.Pp 2436When non-zero, all programs will get PaX ASLR, except those exempted with 2437.Xr paxctl 8 . 2438Otherwise, all programs will not get PaX ASLR, except those specifically 2439marked as such with 2440.Xr paxctl 8 . 2441.\".It Li security.pax.aslr.mmap_len 2442.\" XXX: Undocumented. 2443.\" .It Li security.pax.aslr.stack_len 2444.\" XXX: Undocumented. 2445.It Li security.pax.mprotect.enabled 2446Enable PaX MPROTECT restrictions. 2447.Pp 2448These are 2449.Xr mprotect 2 2450restrictions to better enforce a W^X policy. 2451The value of this 2452knob must be non-zero for PaX MPROTECT to be enabled, even if a 2453program is set to explicit enable. 2454.It Li security.pax.mprotect.global 2455Specifies the default global policy for programs without an 2456explicit enable/disable flag. 2457.Pp 2458When non-zero, all programs will get the PaX MPROTECT restrictions, 2459except those exempted with 2460.Xr paxctl 8 . 2461Otherwise, all programs will not get the PaX MPROTECT restrictions, 2462except those specifically marked as such with 2463.Xr paxctl 8 . 2464.It Li security.pax.segvguard.enabled 2465Enable PaX Segvguard. 2466.Pp 2467PaX Segvguard can detect and prevent certain exploitation attempts, where 2468an attacker may try for example to brute-force function return addresses 2469of respawning daemons. 2470.Pp 2471.Em Note : 2472The 2473.Nx 2474interface and implementation of the Segvguard is still experimental, and may 2475change in future releases. 2476.It Li security.pax.segvguard.expiry_timeout 2477If the max number was not reached within this timeout (in seconds), the entry 2478will expire. 2479.It Li security.pax.segvguard.global 2480Specifies the default global policy for programs without an 2481explicit enable/disable flag. 2482.Pp 2483When non-zero, all programs will get the PaX Segvguard, 2484except those exempted with 2485.Xr paxctl 8 . 2486Otherwise, no program will get the PaX Segvguard restrictions, 2487except those specifically marked as such with 2488.Xr paxctl 8 . 2489.It Li security.pax.segvguard.max_crashes 2490The maximum number of segfaults a program can receive before suspension. 2491.It Li security.pax.segvguard.suspend_timeout 2492Number of seconds to suspend a user from running a faulting program when the 2493limit was exceeded. 2494.El 2495.El 2496.Ss The vendor.* subtree ( Dv CTL_VENDOR ) 2497The 2498.Li vendor 2499toplevel name is reserved to be used by vendors who wish to 2500have their own private MIB tree. 2501Intended use is to store values under 2502.Dq vendor.\*[Lt]yourname\*[Gt].* . 2503.Sh SEE ALSO 2504.Xr sysctl 3 , 2505.Xr ipsec 4 , 2506.Xr tcp 4 , 2507.Xr security 7 , 2508.Xr sysctl 8 2509.Sh HISTORY 2510The 2511.Nm 2512variables first appeared in 2513.Bx 4.4 . 2514