1 /* 2 * Copyright (c) 1989, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Mike Karels at Berkeley Software Design, Inc. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 3. All advertising materials mentioning features or use of this software 17 * must display the following acknowledgement: 18 * This product includes software developed by the University of 19 * California, Berkeley and its contributors. 20 * 4. Neither the name of the University nor the names of its contributors 21 * may be used to endorse or promote products derived from this software 22 * without specific prior written permission. 23 * 24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 34 * SUCH DAMAGE. 35 * 36 * @(#)sysctl.h 8.1 (Berkeley) 6/2/93 37 * $FreeBSD$ 38 */ 39 40 #ifndef _SYS_SYSCTL_H_ 41 #define _SYS_SYSCTL_H_ 42 43 #include <sys/_posix.h> 44 #include <sys/queue.h> 45 46 /* 47 * Definitions for sysctl call. The sysctl call uses a hierarchical name 48 * for objects that can be examined or modified. The name is expressed as 49 * a sequence of integers. Like a file path name, the meaning of each 50 * component depends on its place in the hierarchy. The top-level and kern 51 * identifiers are defined here, and other identifiers are defined in the 52 * respective subsystem header files. 53 */ 54 55 #define CTL_MAXNAME 12 /* largest number of components supported */ 56 57 /* 58 * Each subsystem defined by sysctl defines a list of variables 59 * for that subsystem. Each name is either a node with further 60 * levels defined below it, or it is a leaf of some particular 61 * type given below. Each sysctl level defines a set of name/type 62 * pairs to be used by sysctl(1) in manipulating the subsystem. 63 */ 64 struct ctlname { 65 char *ctl_name; /* subsystem name */ 66 int ctl_type; /* type of name */ 67 }; 68 69 #define CTLTYPE 0xf /* Mask for the type */ 70 #define CTLTYPE_NODE 1 /* name is a node */ 71 #define CTLTYPE_INT 2 /* name describes an integer */ 72 #define CTLTYPE_STRING 3 /* name describes a string */ 73 #define CTLTYPE_QUAD 4 /* name describes a 64-bit number */ 74 #define CTLTYPE_OPAQUE 5 /* name describes a structure */ 75 #define CTLTYPE_STRUCT CTLTYPE_OPAQUE /* name describes a structure */ 76 77 #define CTLFLAG_RD 0x80000000 /* Allow reads of variable */ 78 #define CTLFLAG_WR 0x40000000 /* Allow writes to the variable */ 79 #define CTLFLAG_RW (CTLFLAG_RD|CTLFLAG_WR) 80 #define CTLFLAG_NOLOCK 0x20000000 /* XXX Don't Lock */ 81 #define CTLFLAG_ANYBODY 0x10000000 /* All users can set this var */ 82 #define CTLFLAG_SECURE 0x08000000 /* Permit set only if securelevel<=0 */ 83 #define CTLFLAG_PRISON 0x04000000 /* Prisoned roots can fiddle */ 84 #define CTLFLAG_DYN 0x02000000 /* Dynamic oid - can be freed */ 85 86 /* 87 * USE THIS instead of a hardwired number from the categories below 88 * to get dynamically assigned sysctl entries using the linker-set 89 * technology. This is the way nearly all new sysctl variables should 90 * be implemented. 91 * e.g. SYSCTL_INT(_parent, OID_AUTO, name, CTLFLAG_RW, &variable, 0, ""); 92 */ 93 #define OID_AUTO (-1) 94 95 #ifdef _KERNEL 96 #define SYSCTL_HANDLER_ARGS struct sysctl_oid *oidp, void *arg1, int arg2, \ 97 struct sysctl_req *req 98 99 /* 100 * This describes the access space for a sysctl request. This is needed 101 * so that we can use the interface from the kernel or from user-space. 102 */ 103 struct sysctl_req { 104 struct proc *p; 105 int lock; 106 void *oldptr; 107 size_t oldlen; 108 size_t oldidx; 109 int (*oldfunc)(struct sysctl_req *, const void *, size_t); 110 void *newptr; 111 size_t newlen; 112 size_t newidx; 113 int (*newfunc)(struct sysctl_req *, void *, size_t); 114 }; 115 116 SLIST_HEAD(sysctl_oid_list, sysctl_oid); 117 118 /* 119 * This describes one "oid" in the MIB tree. Potentially more nodes can 120 * be hidden behind it, expanded by the handler. 121 */ 122 struct sysctl_oid { 123 struct sysctl_oid_list *oid_parent; 124 SLIST_ENTRY(sysctl_oid) oid_link; 125 int oid_number; 126 int oid_kind; 127 void *oid_arg1; 128 int oid_arg2; 129 const char *oid_name; 130 int (*oid_handler)(SYSCTL_HANDLER_ARGS); 131 const char *oid_fmt; 132 int oid_refcnt; 133 }; 134 135 #define SYSCTL_IN(r, p, l) (r->newfunc)(r, p, l) 136 #define SYSCTL_OUT(r, p, l) (r->oldfunc)(r, p, l) 137 138 int sysctl_handle_int(SYSCTL_HANDLER_ARGS); 139 int sysctl_handle_long(SYSCTL_HANDLER_ARGS); 140 int sysctl_handle_intptr(SYSCTL_HANDLER_ARGS); 141 int sysctl_handle_string(SYSCTL_HANDLER_ARGS); 142 int sysctl_handle_opaque(SYSCTL_HANDLER_ARGS); 143 144 /* 145 * These functions are used to add/remove an oid from the mib. 146 */ 147 void sysctl_register_oid(struct sysctl_oid *oidp); 148 void sysctl_unregister_oid(struct sysctl_oid *oidp); 149 150 /* Declare a static oid to allow child oids to be added to it. */ 151 #define SYSCTL_DECL(name) \ 152 extern struct sysctl_oid_list sysctl_##name##_children 153 154 /* Hide these in macros */ 155 #define SYSCTL_CHILDREN(oid_ptr) (struct sysctl_oid_list *) \ 156 (oid_ptr)->oid_arg1 157 #define SYSCTL_STATIC_CHILDREN(oid_name) \ 158 (&sysctl_##oid_name##_children) 159 160 /* === Structs and macros related to context handling === */ 161 162 /* All dynamically created sysctls can be tracked in a context list. */ 163 struct sysctl_ctx_entry { 164 struct sysctl_oid *entry; 165 TAILQ_ENTRY(sysctl_ctx_entry) link; 166 }; 167 168 TAILQ_HEAD(sysctl_ctx_list, sysctl_ctx_entry); 169 170 /* This constructs a "raw" MIB oid. */ 171 #define SYSCTL_OID(parent, nbr, name, kind, a1, a2, handler, fmt, descr) \ 172 static struct sysctl_oid sysctl__##parent##_##name = { \ 173 &sysctl_##parent##_children, { 0 }, \ 174 nbr, kind, a1, a2, #name, handler, fmt }; \ 175 DATA_SET(sysctl_set, sysctl__##parent##_##name); 176 177 #define SYSCTL_ADD_OID(ctx, parent, nbr, name, kind, a1, a2, handler, fmt, descr) \ 178 sysctl_add_oid(ctx, parent, nbr, #name, kind, a1, a2, handler, fmt, descr); 179 180 /* This constructs a node from which other oids can hang. */ 181 #define SYSCTL_NODE(parent, nbr, name, access, handler, descr) \ 182 struct sysctl_oid_list sysctl_##parent##_##name##_children; \ 183 SYSCTL_OID(parent, nbr, name, CTLTYPE_NODE|access, \ 184 (void*)&sysctl_##parent##_##name##_children, 0, handler, \ 185 "N", descr); 186 187 #define SYSCTL_ADD_NODE(ctx, parent, nbr, name, access, handler, descr) \ 188 sysctl_add_oid(ctx, parent, nbr, #name, CTLTYPE_NODE|access, \ 189 0, 0, handler, "N", descr); 190 191 /* Oid for a string. len can be 0 to indicate '\0' termination. */ 192 #define SYSCTL_STRING(parent, nbr, name, access, arg, len, descr) \ 193 SYSCTL_OID(parent, nbr, name, CTLTYPE_STRING|access, \ 194 arg, len, sysctl_handle_string, "A", descr) 195 196 #define SYSCTL_ADD_STRING(ctx, parent, nbr, name, access, arg, len, descr) \ 197 sysctl_add_oid(ctx, parent, nbr, #name, CTLTYPE_STRING|access, \ 198 arg, len, sysctl_handle_string, "A", descr); 199 200 /* Oid for an int. If ptr is NULL, val is returned. */ 201 #define SYSCTL_INT(parent, nbr, name, access, ptr, val, descr) \ 202 SYSCTL_OID(parent, nbr, name, CTLTYPE_INT|access, \ 203 ptr, val, sysctl_handle_int, "I", descr) 204 205 #define SYSCTL_ADD_INT(ctx, parent, nbr, name, access, ptr, val, descr) \ 206 sysctl_add_oid(ctx, parent, nbr, #name, CTLTYPE_INT|access, \ 207 ptr, val, sysctl_handle_int, "I", descr); 208 209 /* Oid for an unsigned int. If ptr is NULL, val is returned. */ 210 #define SYSCTL_UINT(parent, nbr, name, access, ptr, val, descr) \ 211 SYSCTL_OID(parent, nbr, name, CTLTYPE_INT|access, \ 212 ptr, val, sysctl_handle_int, "IU", descr) 213 214 #define SYSCTL_ADD_UINT(ctx, parent, nbr, name, access, ptr, val, descr) \ 215 sysctl_add_oid(ctx, parent, nbr, #name, CTLTYPE_INT|access, \ 216 ptr, val, sysctl_handle_int, "IU", descr); 217 218 /* Oid for a long. The pointer must be non NULL. */ 219 #define SYSCTL_LONG(parent, nbr, name, access, ptr, val, descr) \ 220 SYSCTL_OID(parent, nbr, name, CTLTYPE_INT|access, \ 221 ptr, val, sysctl_handle_long, "L", descr) 222 223 #define SYSCTL_ADD_LONG(ctx, parent, nbr, name, access, ptr, descr) \ 224 sysctl_add_oid(ctx, parent, nbr, #name, CTLTYPE_INT|access, \ 225 ptr, 0, sysctl_handle_long, "L", descr); 226 227 /* Oid for a long. The pointer must be non NULL. */ 228 #define SYSCTL_ULONG(parent, nbr, name, access, ptr, val, descr) \ 229 SYSCTL_OID(parent, nbr, name, CTLTYPE_INT|access, \ 230 ptr, val, sysctl_handle_long, "LU", descr) 231 232 #define SYSCTL_ADD_ULONG(ctx, parent, nbr, name, access, ptr, descr) \ 233 sysctl_add_oid(ctx, parent, nbr, #name, CTLTYPE_INT|access, \ 234 ptr, 0, sysctl_handle_long, "LU", descr); 235 236 /* Oid for an opaque object. Specified by a pointer and a length. */ 237 #define SYSCTL_OPAQUE(parent, nbr, name, access, ptr, len, fmt, descr) \ 238 SYSCTL_OID(parent, nbr, name, CTLTYPE_OPAQUE|access, \ 239 ptr, len, sysctl_handle_opaque, fmt, descr) 240 241 #define SYSCTL_ADD_OPAQUE(ctx, parent, nbr, name, access, ptr, len, fmt, descr)\ 242 sysctl_add_oid(ctx, parent, nbr, #name, CTLTYPE_OPAQUE|access, \ 243 ptr, len, sysctl_handle_opaque, fmt, descr); 244 245 /* Oid for a struct. Specified by a pointer and a type. */ 246 #define SYSCTL_STRUCT(parent, nbr, name, access, ptr, type, descr) \ 247 SYSCTL_OID(parent, nbr, name, CTLTYPE_OPAQUE|access, \ 248 ptr, sizeof(struct type), sysctl_handle_opaque, \ 249 "S," #type, descr) 250 251 #define SYSCTL_ADD_STRUCT(ctx, parent, nbr, name, access, ptr, type, descr) \ 252 sysctl_add_oid(ctx, parent, nbr, #name, CTLTYPE_OPAQUE|access, \ 253 ptr, sizeof(struct type), sysctl_handle_opaque, "S," #type, descr); 254 255 /* Oid for a procedure. Specified by a pointer and an arg. */ 256 #define SYSCTL_PROC(parent, nbr, name, access, ptr, arg, handler, fmt, descr) \ 257 SYSCTL_OID(parent, nbr, name, access, \ 258 ptr, arg, handler, fmt, descr) 259 260 #define SYSCTL_ADD_PROC(ctx, parent, nbr, name, access, ptr, arg, handler, fmt, descr) \ 261 sysctl_add_oid(ctx, parent, nbr, #name, access, \ 262 ptr, arg, handler, fmt, descr); 263 264 #endif /* _KERNEL */ 265 266 /* 267 * Top-level identifiers 268 */ 269 #define CTL_UNSPEC 0 /* unused */ 270 #define CTL_KERN 1 /* "high kernel": proc, limits */ 271 #define CTL_VM 2 /* virtual memory */ 272 #define CTL_VFS 3 /* file system, mount type is next */ 273 #define CTL_NET 4 /* network, see socket.h */ 274 #define CTL_DEBUG 5 /* debugging parameters */ 275 #define CTL_HW 6 /* generic cpu/io */ 276 #define CTL_MACHDEP 7 /* machine dependent */ 277 #define CTL_USER 8 /* user-level */ 278 #define CTL_P1003_1B 9 /* POSIX 1003.1B */ 279 #define CTL_MAXID 10 /* number of valid top-level ids */ 280 281 #define CTL_NAMES { \ 282 { 0, 0 }, \ 283 { "kern", CTLTYPE_NODE }, \ 284 { "vm", CTLTYPE_NODE }, \ 285 { "vfs", CTLTYPE_NODE }, \ 286 { "net", CTLTYPE_NODE }, \ 287 { "debug", CTLTYPE_NODE }, \ 288 { "hw", CTLTYPE_NODE }, \ 289 { "machdep", CTLTYPE_NODE }, \ 290 { "user", CTLTYPE_NODE }, \ 291 { "p1003_1b", CTLTYPE_NODE }, \ 292 } 293 294 /* 295 * CTL_KERN identifiers 296 */ 297 #define KERN_OSTYPE 1 /* string: system version */ 298 #define KERN_OSRELEASE 2 /* string: system release */ 299 #define KERN_OSREV 3 /* int: system revision */ 300 #define KERN_VERSION 4 /* string: compile time info */ 301 #define KERN_MAXVNODES 5 /* int: max vnodes */ 302 #define KERN_MAXPROC 6 /* int: max processes */ 303 #define KERN_MAXFILES 7 /* int: max open files */ 304 #define KERN_ARGMAX 8 /* int: max arguments to exec */ 305 #define KERN_SECURELVL 9 /* int: system security level */ 306 #define KERN_HOSTNAME 10 /* string: hostname */ 307 #define KERN_HOSTID 11 /* int: host identifier */ 308 #define KERN_CLOCKRATE 12 /* struct: struct clockrate */ 309 #define KERN_VNODE 13 /* struct: vnode structures */ 310 #define KERN_PROC 14 /* struct: process entries */ 311 #define KERN_FILE 15 /* struct: file entries */ 312 #define KERN_PROF 16 /* node: kernel profiling info */ 313 #define KERN_POSIX1 17 /* int: POSIX.1 version */ 314 #define KERN_NGROUPS 18 /* int: # of supplemental group ids */ 315 #define KERN_JOB_CONTROL 19 /* int: is job control available */ 316 #define KERN_SAVED_IDS 20 /* int: saved set-user/group-ID */ 317 #define KERN_BOOTTIME 21 /* struct: time kernel was booted */ 318 #define KERN_NISDOMAINNAME 22 /* string: YP domain name */ 319 #define KERN_UPDATEINTERVAL 23 /* int: update process sleep time */ 320 #define KERN_OSRELDATE 24 /* int: OS release date */ 321 #define KERN_NTP_PLL 25 /* node: NTP PLL control */ 322 #define KERN_BOOTFILE 26 /* string: name of booted kernel */ 323 #define KERN_MAXFILESPERPROC 27 /* int: max open files per proc */ 324 #define KERN_MAXPROCPERUID 28 /* int: max processes per uid */ 325 #define KERN_DUMPDEV 29 /* dev_t: device to dump on */ 326 #define KERN_IPC 30 /* node: anything related to IPC */ 327 #define KERN_DUMMY 31 /* unused */ 328 #define KERN_PS_STRINGS 32 /* int: address of PS_STRINGS */ 329 #define KERN_USRSTACK 33 /* int: address of USRSTACK */ 330 #define KERN_LOGSIGEXIT 34 /* int: do we log sigexit procs? */ 331 #define KERN_MAXID 35 /* number of valid kern ids */ 332 333 #define CTL_KERN_NAMES { \ 334 { 0, 0 }, \ 335 { "ostype", CTLTYPE_STRING }, \ 336 { "osrelease", CTLTYPE_STRING }, \ 337 { "osrevision", CTLTYPE_INT }, \ 338 { "version", CTLTYPE_STRING }, \ 339 { "maxvnodes", CTLTYPE_INT }, \ 340 { "maxproc", CTLTYPE_INT }, \ 341 { "maxfiles", CTLTYPE_INT }, \ 342 { "argmax", CTLTYPE_INT }, \ 343 { "securelevel", CTLTYPE_INT }, \ 344 { "hostname", CTLTYPE_STRING }, \ 345 { "hostid", CTLTYPE_INT }, \ 346 { "clockrate", CTLTYPE_STRUCT }, \ 347 { "vnode", CTLTYPE_STRUCT }, \ 348 { "proc", CTLTYPE_STRUCT }, \ 349 { "file", CTLTYPE_STRUCT }, \ 350 { "profiling", CTLTYPE_NODE }, \ 351 { "posix1version", CTLTYPE_INT }, \ 352 { "ngroups", CTLTYPE_INT }, \ 353 { "job_control", CTLTYPE_INT }, \ 354 { "saved_ids", CTLTYPE_INT }, \ 355 { "boottime", CTLTYPE_STRUCT }, \ 356 { "nisdomainname", CTLTYPE_STRING }, \ 357 { "update", CTLTYPE_INT }, \ 358 { "osreldate", CTLTYPE_INT }, \ 359 { "ntp_pll", CTLTYPE_NODE }, \ 360 { "bootfile", CTLTYPE_STRING }, \ 361 { "maxfilesperproc", CTLTYPE_INT }, \ 362 { "maxprocperuid", CTLTYPE_INT }, \ 363 { "dumpdev", CTLTYPE_STRUCT }, /* we lie; don't print as int */ \ 364 { "ipc", CTLTYPE_NODE }, \ 365 { "dummy", CTLTYPE_INT }, \ 366 { "ps_strings", CTLTYPE_INT }, \ 367 { "usrstack", CTLTYPE_INT }, \ 368 { "logsigexit", CTLTYPE_INT }, \ 369 } 370 371 /* 372 * CTL_VFS identifiers 373 */ 374 #define CTL_VFS_NAMES { \ 375 { "vfsconf", CTLTYPE_STRUCT }, \ 376 } 377 378 /* 379 * KERN_PROC subtypes 380 */ 381 #define KERN_PROC_ALL 0 /* everything */ 382 #define KERN_PROC_PID 1 /* by process id */ 383 #define KERN_PROC_PGRP 2 /* by process group id */ 384 #define KERN_PROC_SESSION 3 /* by session of pid */ 385 #define KERN_PROC_TTY 4 /* by controlling tty */ 386 #define KERN_PROC_UID 5 /* by effective uid */ 387 #define KERN_PROC_RUID 6 /* by real uid */ 388 #define KERN_PROC_ARGS 7 /* get/set arguments/proctitle */ 389 390 /* 391 * KERN_IPC identifiers 392 */ 393 #define KIPC_MAXSOCKBUF 1 /* int: max size of a socket buffer */ 394 #define KIPC_SOCKBUF_WASTE 2 /* int: wastage factor in sockbuf */ 395 #define KIPC_SOMAXCONN 3 /* int: max length of connection q */ 396 #define KIPC_MAX_LINKHDR 4 /* int: max length of link header */ 397 #define KIPC_MAX_PROTOHDR 5 /* int: max length of network header */ 398 #define KIPC_MAX_HDR 6 /* int: max total length of headers */ 399 #define KIPC_MAX_DATALEN 7 /* int: max length of data? */ 400 #define KIPC_MBSTAT 8 /* struct: mbuf usage statistics */ 401 #define KIPC_NMBCLUSTERS 9 /* int: maximum mbuf clusters */ 402 403 /* 404 * CTL_HW identifiers 405 */ 406 #define HW_MACHINE 1 /* string: machine class */ 407 #define HW_MODEL 2 /* string: specific machine model */ 408 #define HW_NCPU 3 /* int: number of cpus */ 409 #define HW_BYTEORDER 4 /* int: machine byte order */ 410 #define HW_PHYSMEM 5 /* int: total memory */ 411 #define HW_USERMEM 6 /* int: non-kernel memory */ 412 #define HW_PAGESIZE 7 /* int: software page size */ 413 #define HW_DISKNAMES 8 /* strings: disk drive names */ 414 #define HW_DISKSTATS 9 /* struct: diskstats[] */ 415 #define HW_FLOATINGPT 10 /* int: has HW floating point? */ 416 #define HW_MACHINE_ARCH 11 /* string: machine architecture */ 417 #define HW_MAXID 12 /* number of valid hw ids */ 418 419 #define CTL_HW_NAMES { \ 420 { 0, 0 }, \ 421 { "machine", CTLTYPE_STRING }, \ 422 { "model", CTLTYPE_STRING }, \ 423 { "ncpu", CTLTYPE_INT }, \ 424 { "byteorder", CTLTYPE_INT }, \ 425 { "physmem", CTLTYPE_INT }, \ 426 { "usermem", CTLTYPE_INT }, \ 427 { "pagesize", CTLTYPE_INT }, \ 428 { "disknames", CTLTYPE_STRUCT }, \ 429 { "diskstats", CTLTYPE_STRUCT }, \ 430 { "floatingpoint", CTLTYPE_INT }, \ 431 } 432 433 /* 434 * CTL_USER definitions 435 */ 436 #define USER_CS_PATH 1 /* string: _CS_PATH */ 437 #define USER_BC_BASE_MAX 2 /* int: BC_BASE_MAX */ 438 #define USER_BC_DIM_MAX 3 /* int: BC_DIM_MAX */ 439 #define USER_BC_SCALE_MAX 4 /* int: BC_SCALE_MAX */ 440 #define USER_BC_STRING_MAX 5 /* int: BC_STRING_MAX */ 441 #define USER_COLL_WEIGHTS_MAX 6 /* int: COLL_WEIGHTS_MAX */ 442 #define USER_EXPR_NEST_MAX 7 /* int: EXPR_NEST_MAX */ 443 #define USER_LINE_MAX 8 /* int: LINE_MAX */ 444 #define USER_RE_DUP_MAX 9 /* int: RE_DUP_MAX */ 445 #define USER_POSIX2_VERSION 10 /* int: POSIX2_VERSION */ 446 #define USER_POSIX2_C_BIND 11 /* int: POSIX2_C_BIND */ 447 #define USER_POSIX2_C_DEV 12 /* int: POSIX2_C_DEV */ 448 #define USER_POSIX2_CHAR_TERM 13 /* int: POSIX2_CHAR_TERM */ 449 #define USER_POSIX2_FORT_DEV 14 /* int: POSIX2_FORT_DEV */ 450 #define USER_POSIX2_FORT_RUN 15 /* int: POSIX2_FORT_RUN */ 451 #define USER_POSIX2_LOCALEDEF 16 /* int: POSIX2_LOCALEDEF */ 452 #define USER_POSIX2_SW_DEV 17 /* int: POSIX2_SW_DEV */ 453 #define USER_POSIX2_UPE 18 /* int: POSIX2_UPE */ 454 #define USER_STREAM_MAX 19 /* int: POSIX2_STREAM_MAX */ 455 #define USER_TZNAME_MAX 20 /* int: POSIX2_TZNAME_MAX */ 456 #define USER_MAXID 21 /* number of valid user ids */ 457 458 #define CTL_USER_NAMES { \ 459 { 0, 0 }, \ 460 { "cs_path", CTLTYPE_STRING }, \ 461 { "bc_base_max", CTLTYPE_INT }, \ 462 { "bc_dim_max", CTLTYPE_INT }, \ 463 { "bc_scale_max", CTLTYPE_INT }, \ 464 { "bc_string_max", CTLTYPE_INT }, \ 465 { "coll_weights_max", CTLTYPE_INT }, \ 466 { "expr_nest_max", CTLTYPE_INT }, \ 467 { "line_max", CTLTYPE_INT }, \ 468 { "re_dup_max", CTLTYPE_INT }, \ 469 { "posix2_version", CTLTYPE_INT }, \ 470 { "posix2_c_bind", CTLTYPE_INT }, \ 471 { "posix2_c_dev", CTLTYPE_INT }, \ 472 { "posix2_char_term", CTLTYPE_INT }, \ 473 { "posix2_fort_dev", CTLTYPE_INT }, \ 474 { "posix2_fort_run", CTLTYPE_INT }, \ 475 { "posix2_localedef", CTLTYPE_INT }, \ 476 { "posix2_sw_dev", CTLTYPE_INT }, \ 477 { "posix2_upe", CTLTYPE_INT }, \ 478 { "stream_max", CTLTYPE_INT }, \ 479 { "tzname_max", CTLTYPE_INT }, \ 480 } 481 482 #define CTL_P1003_1B_ASYNCHRONOUS_IO 1 /* boolean */ 483 #define CTL_P1003_1B_MAPPED_FILES 2 /* boolean */ 484 #define CTL_P1003_1B_MEMLOCK 3 /* boolean */ 485 #define CTL_P1003_1B_MEMLOCK_RANGE 4 /* boolean */ 486 #define CTL_P1003_1B_MEMORY_PROTECTION 5 /* boolean */ 487 #define CTL_P1003_1B_MESSAGE_PASSING 6 /* boolean */ 488 #define CTL_P1003_1B_PRIORITIZED_IO 7 /* boolean */ 489 #define CTL_P1003_1B_PRIORITY_SCHEDULING 8 /* boolean */ 490 #define CTL_P1003_1B_REALTIME_SIGNALS 9 /* boolean */ 491 #define CTL_P1003_1B_SEMAPHORES 10 /* boolean */ 492 #define CTL_P1003_1B_FSYNC 11 /* boolean */ 493 #define CTL_P1003_1B_SHARED_MEMORY_OBJECTS 12 /* boolean */ 494 #define CTL_P1003_1B_SYNCHRONIZED_IO 13 /* boolean */ 495 #define CTL_P1003_1B_TIMERS 14 /* boolean */ 496 #define CTL_P1003_1B_AIO_LISTIO_MAX 15 /* int */ 497 #define CTL_P1003_1B_AIO_MAX 16 /* int */ 498 #define CTL_P1003_1B_AIO_PRIO_DELTA_MAX 17 /* int */ 499 #define CTL_P1003_1B_DELAYTIMER_MAX 18 /* int */ 500 #define CTL_P1003_1B_MQ_OPEN_MAX 19 /* int */ 501 #define CTL_P1003_1B_PAGESIZE 20 /* int */ 502 #define CTL_P1003_1B_RTSIG_MAX 21 /* int */ 503 #define CTL_P1003_1B_SEM_NSEMS_MAX 22 /* int */ 504 #define CTL_P1003_1B_SEM_VALUE_MAX 23 /* int */ 505 #define CTL_P1003_1B_SIGQUEUE_MAX 24 /* int */ 506 #define CTL_P1003_1B_TIMER_MAX 25 /* int */ 507 508 #define CTL_P1003_1B_MAXID 26 509 510 #define CTL_P1003_1B_NAMES { \ 511 { 0, 0 }, \ 512 { "asynchronous_io", CTLTYPE_INT }, \ 513 { "mapped_files", CTLTYPE_INT }, \ 514 { "memlock", CTLTYPE_INT }, \ 515 { "memlock_range", CTLTYPE_INT }, \ 516 { "memory_protection", CTLTYPE_INT }, \ 517 { "message_passing", CTLTYPE_INT }, \ 518 { "prioritized_io", CTLTYPE_INT }, \ 519 { "priority_scheduling", CTLTYPE_INT }, \ 520 { "realtime_signals", CTLTYPE_INT }, \ 521 { "semaphores", CTLTYPE_INT }, \ 522 { "fsync", CTLTYPE_INT }, \ 523 { "shared_memory_objects", CTLTYPE_INT }, \ 524 { "synchronized_io", CTLTYPE_INT }, \ 525 { "timers", CTLTYPE_INT }, \ 526 { "aio_listio_max", CTLTYPE_INT }, \ 527 { "aio_max", CTLTYPE_INT }, \ 528 { "aio_prio_delta_max", CTLTYPE_INT }, \ 529 { "delaytimer_max", CTLTYPE_INT }, \ 530 { "mq_open_max", CTLTYPE_INT }, \ 531 { "pagesize", CTLTYPE_INT }, \ 532 { "rtsig_max", CTLTYPE_INT }, \ 533 { "nsems_max", CTLTYPE_INT }, \ 534 { "sem_value_max", CTLTYPE_INT }, \ 535 { "sigqueue_max", CTLTYPE_INT }, \ 536 { "timer_max", CTLTYPE_INT }, \ 537 } 538 539 #ifdef _KERNEL 540 541 /* 542 * Declare some common oids. 543 */ 544 extern struct sysctl_oid_list sysctl__children; 545 SYSCTL_DECL(_kern); 546 SYSCTL_DECL(_sysctl); 547 SYSCTL_DECL(_vm); 548 SYSCTL_DECL(_vfs); 549 SYSCTL_DECL(_net); 550 SYSCTL_DECL(_debug); 551 SYSCTL_DECL(_hw); 552 SYSCTL_DECL(_machdep); 553 SYSCTL_DECL(_user); 554 SYSCTL_DECL(_compat); 555 556 extern char machine[]; 557 extern char osrelease[]; 558 extern char ostype[]; 559 560 struct linker_set; 561 562 /* Dynamic oid handling */ 563 struct sysctl_oid *sysctl_add_oid(struct sysctl_ctx_list *clist, 564 struct sysctl_oid_list *parent, int nbr, char *name, 565 int kind, void *arg1, int arg2, 566 int (*handler) (SYSCTL_HANDLER_ARGS), 567 char *fmt, char *descr); 568 int sysctl_remove_oid(struct sysctl_oid *oidp, int del, int recurse); 569 int sysctl_ctx_init(struct sysctl_ctx_list *clist); 570 int sysctl_ctx_free(struct sysctl_ctx_list *clist); 571 struct sysctl_ctx_entry *sysctl_ctx_entry_add(struct sysctl_ctx_list *clist, 572 struct sysctl_oid *oidp); 573 struct sysctl_ctx_entry *sysctl_ctx_entry_find(struct sysctl_ctx_list *clist, 574 struct sysctl_oid *oidp); 575 int sysctl_ctx_entry_del(struct sysctl_ctx_list *clist, 576 struct sysctl_oid *oidp); 577 578 /* Linker set based oid handling */ 579 void sysctl_register_set(struct linker_set *lsp); 580 void sysctl_unregister_set(struct linker_set *lsp); 581 582 int kernel_sysctl(struct proc *p, int *name, u_int namelen, void *old, 583 size_t *oldlenp, void *new, size_t newlen, 584 size_t *retval); 585 int userland_sysctl(struct proc *p, int *name, u_int namelen, void *old, 586 size_t *oldlenp, int inkernel, void *new, size_t newlen, 587 size_t *retval); 588 int sysctl_find_oid(int *name, u_int namelen, struct sysctl_oid **noid, 589 int *nindx, struct sysctl_req *req); 590 591 #else /* !_KERNEL */ 592 #include <sys/cdefs.h> 593 594 __BEGIN_DECLS 595 int sysctl __P((int *, u_int, void *, size_t *, void *, size_t)); 596 int sysctlbyname __P((const char *, void *, size_t *, void *, size_t)); 597 __END_DECLS 598 #endif /* _KERNEL */ 599 600 #endif /* !_SYS_SYSCTL_H_ */ 601