1 /*- 2 * Copyright (c) 1982, 1986, 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 * Quite extensively rewritten by Poul-Henning Kamp of the FreeBSD 9 * project, to make these variables more userfriendly. 10 * 11 * Redistribution and use in source and binary forms, with or without 12 * modification, are permitted provided that the following conditions 13 * are met: 14 * 1. Redistributions of source code must retain the above copyright 15 * notice, this list of conditions and the following disclaimer. 16 * 2. Redistributions in binary form must reproduce the above copyright 17 * notice, this list of conditions and the following disclaimer in the 18 * documentation and/or other materials provided with the distribution. 19 * 3. All advertising materials mentioning features or use of this software 20 * must display the following acknowledgement: 21 * This product includes software developed by the University of 22 * California, Berkeley and its contributors. 23 * 4. Neither the name of the University nor the names of its contributors 24 * may be used to endorse or promote products derived from this software 25 * without specific prior written permission. 26 * 27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 37 * SUCH DAMAGE. 38 * 39 * @(#)kern_sysctl.c 8.4 (Berkeley) 4/14/94 40 * $FreeBSD$ 41 */ 42 43 #include "opt_compat.h" 44 45 #include <sys/param.h> 46 #include <sys/systm.h> 47 #include <sys/kernel.h> 48 #include <sys/sysctl.h> 49 #include <sys/malloc.h> 50 #include <sys/proc.h> 51 #include <sys/lock.h> 52 #include <sys/mutex.h> 53 #include <sys/sx.h> 54 #include <sys/sysproto.h> 55 #include <vm/vm.h> 56 #include <vm/vm_extern.h> 57 58 static MALLOC_DEFINE(M_SYSCTL, "sysctl", "sysctl internal magic"); 59 static MALLOC_DEFINE(M_SYSCTLOID, "sysctloid", "sysctl dynamic oids"); 60 static MALLOC_DEFINE(M_SYSCTLTMP, "sysctltmp", "sysctl temp output buffer"); 61 62 /* 63 * Locking - this locks the sysctl tree in memory. 64 */ 65 static struct sx sysctllock; 66 67 #define SYSCTL_LOCK() sx_xlock(&sysctllock) 68 #define SYSCTL_UNLOCK() sx_xunlock(&sysctllock) 69 #define SYSCTL_INIT() sx_init(&sysctllock, "sysctl sysctllock") 70 71 static int sysctl_root(SYSCTL_HANDLER_ARGS); 72 73 struct sysctl_oid_list sysctl__children; /* root list */ 74 75 static struct sysctl_oid * 76 sysctl_find_oidname(const char *name, struct sysctl_oid_list *list) 77 { 78 struct sysctl_oid *oidp; 79 80 SLIST_FOREACH(oidp, list, oid_link) { 81 if (strcmp(oidp->oid_name, name) == 0) { 82 return (oidp); 83 } 84 } 85 return (NULL); 86 } 87 88 /* 89 * Initialization of the MIB tree. 90 * 91 * Order by number in each list. 92 */ 93 94 void 95 sysctl_register_oid(struct sysctl_oid *oidp) 96 { 97 struct sysctl_oid_list *parent = oidp->oid_parent; 98 struct sysctl_oid *p; 99 struct sysctl_oid *q; 100 101 /* 102 * First check if another oid with the same name already 103 * exists in the parent's list. 104 */ 105 p = sysctl_find_oidname(oidp->oid_name, parent); 106 if (p != NULL) { 107 if ((p->oid_kind & CTLTYPE) == CTLTYPE_NODE) { 108 p->oid_refcnt++; 109 return; 110 } else { 111 printf("can't re-use a leaf (%s)!\n", p->oid_name); 112 return; 113 } 114 } 115 /* 116 * If this oid has a number OID_AUTO, give it a number which 117 * is greater than any current oid. 118 * NOTE: DO NOT change the starting value here, change it in 119 * <sys/sysctl.h>, and make sure it is at least 256 to 120 * accomodate e.g. net.inet.raw as a static sysctl node. 121 */ 122 if (oidp->oid_number == OID_AUTO) { 123 static int newoid = CTL_AUTO_START; 124 125 oidp->oid_number = newoid++; 126 if (newoid == 0x7fffffff) 127 panic("out of oids"); 128 } 129 #if 0 130 else if (oidp->oid_number >= CTL_AUTO_START) { 131 /* do not panic; this happens when unregistering sysctl sets */ 132 printf("static sysctl oid too high: %d", oidp->oid_number); 133 } 134 #endif 135 136 /* 137 * Insert the oid into the parent's list in order. 138 */ 139 q = NULL; 140 SLIST_FOREACH(p, parent, oid_link) { 141 if (oidp->oid_number < p->oid_number) 142 break; 143 q = p; 144 } 145 if (q) 146 SLIST_INSERT_AFTER(q, oidp, oid_link); 147 else 148 SLIST_INSERT_HEAD(parent, oidp, oid_link); 149 } 150 151 void 152 sysctl_unregister_oid(struct sysctl_oid *oidp) 153 { 154 SLIST_REMOVE(oidp->oid_parent, oidp, sysctl_oid, oid_link); 155 } 156 157 /* Initialize a new context to keep track of dynamically added sysctls. */ 158 int 159 sysctl_ctx_init(struct sysctl_ctx_list *c) 160 { 161 162 if (c == NULL) { 163 return (EINVAL); 164 } 165 TAILQ_INIT(c); 166 return (0); 167 } 168 169 /* Free the context, and destroy all dynamic oids registered in this context */ 170 int 171 sysctl_ctx_free(struct sysctl_ctx_list *clist) 172 { 173 struct sysctl_ctx_entry *e, *e1; 174 int error; 175 176 error = 0; 177 /* 178 * First perform a "dry run" to check if it's ok to remove oids. 179 * XXX FIXME 180 * XXX This algorithm is a hack. But I don't know any 181 * XXX better solution for now... 182 */ 183 TAILQ_FOREACH(e, clist, link) { 184 error = sysctl_remove_oid(e->entry, 0, 0); 185 if (error) 186 break; 187 } 188 /* 189 * Restore deregistered entries, either from the end, 190 * or from the place where error occured. 191 * e contains the entry that was not unregistered 192 */ 193 if (error) 194 e1 = TAILQ_PREV(e, sysctl_ctx_list, link); 195 else 196 e1 = TAILQ_LAST(clist, sysctl_ctx_list); 197 while (e1 != NULL) { 198 sysctl_register_oid(e1->entry); 199 e1 = TAILQ_PREV(e1, sysctl_ctx_list, link); 200 } 201 if (error) 202 return(EBUSY); 203 /* Now really delete the entries */ 204 e = TAILQ_FIRST(clist); 205 while (e != NULL) { 206 e1 = TAILQ_NEXT(e, link); 207 error = sysctl_remove_oid(e->entry, 1, 0); 208 if (error) 209 panic("sysctl_remove_oid: corrupt tree, entry: %s", 210 e->entry->oid_name); 211 free(e, M_SYSCTLOID); 212 e = e1; 213 } 214 return (error); 215 } 216 217 /* Add an entry to the context */ 218 struct sysctl_ctx_entry * 219 sysctl_ctx_entry_add(struct sysctl_ctx_list *clist, struct sysctl_oid *oidp) 220 { 221 struct sysctl_ctx_entry *e; 222 223 if (clist == NULL || oidp == NULL) 224 return(NULL); 225 e = malloc(sizeof(struct sysctl_ctx_entry), M_SYSCTLOID, M_WAITOK); 226 e->entry = oidp; 227 TAILQ_INSERT_HEAD(clist, e, link); 228 return (e); 229 } 230 231 /* Find an entry in the context */ 232 struct sysctl_ctx_entry * 233 sysctl_ctx_entry_find(struct sysctl_ctx_list *clist, struct sysctl_oid *oidp) 234 { 235 struct sysctl_ctx_entry *e; 236 237 if (clist == NULL || oidp == NULL) 238 return(NULL); 239 TAILQ_FOREACH(e, clist, link) { 240 if(e->entry == oidp) 241 return(e); 242 } 243 return (e); 244 } 245 246 /* 247 * Delete an entry from the context. 248 * NOTE: this function doesn't free oidp! You have to remove it 249 * with sysctl_remove_oid(). 250 */ 251 int 252 sysctl_ctx_entry_del(struct sysctl_ctx_list *clist, struct sysctl_oid *oidp) 253 { 254 struct sysctl_ctx_entry *e; 255 256 if (clist == NULL || oidp == NULL) 257 return (EINVAL); 258 e = sysctl_ctx_entry_find(clist, oidp); 259 if (e != NULL) { 260 TAILQ_REMOVE(clist, e, link); 261 free(e, M_SYSCTLOID); 262 return (0); 263 } else 264 return (ENOENT); 265 } 266 267 /* 268 * Remove dynamically created sysctl trees. 269 * oidp - top of the tree to be removed 270 * del - if 0 - just deregister, otherwise free up entries as well 271 * recurse - if != 0 traverse the subtree to be deleted 272 */ 273 int 274 sysctl_remove_oid(struct sysctl_oid *oidp, int del, int recurse) 275 { 276 struct sysctl_oid *p; 277 int error; 278 279 if (oidp == NULL) 280 return(EINVAL); 281 if ((oidp->oid_kind & CTLFLAG_DYN) == 0) { 282 printf("can't remove non-dynamic nodes!\n"); 283 return (EINVAL); 284 } 285 /* 286 * WARNING: normal method to do this should be through 287 * sysctl_ctx_free(). Use recursing as the last resort 288 * method to purge your sysctl tree of leftovers... 289 * However, if some other code still references these nodes, 290 * it will panic. 291 */ 292 if ((oidp->oid_kind & CTLTYPE) == CTLTYPE_NODE) { 293 if (oidp->oid_refcnt == 1) { 294 SLIST_FOREACH(p, SYSCTL_CHILDREN(oidp), oid_link) { 295 if (!recurse) 296 return (ENOTEMPTY); 297 error = sysctl_remove_oid(p, del, recurse); 298 if (error) 299 return (error); 300 } 301 if (del) 302 free(SYSCTL_CHILDREN(oidp), M_SYSCTLOID); 303 } 304 } 305 if (oidp->oid_refcnt > 1 ) { 306 oidp->oid_refcnt--; 307 } else { 308 if (oidp->oid_refcnt == 0) { 309 printf("Warning: bad oid_refcnt=%u (%s)!\n", 310 oidp->oid_refcnt, oidp->oid_name); 311 return (EINVAL); 312 } 313 sysctl_unregister_oid(oidp); 314 if (del) { 315 if (oidp->descr) 316 free((void *)(uintptr_t)(const void *)oidp->descr, M_SYSCTLOID); 317 free((void *)(uintptr_t)(const void *)oidp->oid_name, 318 M_SYSCTLOID); 319 free(oidp, M_SYSCTLOID); 320 } 321 } 322 return (0); 323 } 324 325 /* 326 * Create new sysctls at run time. 327 * clist may point to a valid context initialized with sysctl_ctx_init(). 328 */ 329 struct sysctl_oid * 330 sysctl_add_oid(struct sysctl_ctx_list *clist, struct sysctl_oid_list *parent, 331 int number, const char *name, int kind, void *arg1, int arg2, 332 int (*handler)(SYSCTL_HANDLER_ARGS), const char *fmt, const char *descr) 333 { 334 struct sysctl_oid *oidp; 335 ssize_t len; 336 char *newname; 337 338 /* You have to hook up somewhere.. */ 339 if (parent == NULL) 340 return(NULL); 341 /* Check if the node already exists, otherwise create it */ 342 oidp = sysctl_find_oidname(name, parent); 343 if (oidp != NULL) { 344 if ((oidp->oid_kind & CTLTYPE) == CTLTYPE_NODE) { 345 oidp->oid_refcnt++; 346 /* Update the context */ 347 if (clist != NULL) 348 sysctl_ctx_entry_add(clist, oidp); 349 return (oidp); 350 } else { 351 printf("can't re-use a leaf (%s)!\n", name); 352 return (NULL); 353 } 354 } 355 oidp = malloc(sizeof(struct sysctl_oid), M_SYSCTLOID, M_WAITOK|M_ZERO); 356 oidp->oid_parent = parent; 357 SLIST_NEXT(oidp, oid_link) = NULL; 358 oidp->oid_number = number; 359 oidp->oid_refcnt = 1; 360 len = strlen(name); 361 newname = malloc(len + 1, M_SYSCTLOID, M_WAITOK); 362 bcopy(name, newname, len + 1); 363 newname[len] = '\0'; 364 oidp->oid_name = newname; 365 oidp->oid_handler = handler; 366 oidp->oid_kind = CTLFLAG_DYN | kind; 367 if ((kind & CTLTYPE) == CTLTYPE_NODE) { 368 /* Allocate space for children */ 369 SYSCTL_CHILDREN(oidp) = malloc(sizeof(struct sysctl_oid_list), 370 M_SYSCTLOID, M_WAITOK); 371 SLIST_INIT(SYSCTL_CHILDREN(oidp)); 372 } else { 373 oidp->oid_arg1 = arg1; 374 oidp->oid_arg2 = arg2; 375 } 376 oidp->oid_fmt = fmt; 377 if (descr) { 378 int len = strlen(descr) + 1; 379 oidp->descr = malloc(len, M_SYSCTLOID, M_WAITOK); 380 if (oidp->descr) 381 strcpy((char *)(uintptr_t)(const void *)oidp->descr, descr); 382 } 383 /* Update the context, if used */ 384 if (clist != NULL) 385 sysctl_ctx_entry_add(clist, oidp); 386 /* Register this oid */ 387 sysctl_register_oid(oidp); 388 return (oidp); 389 } 390 391 /* 392 * Register the kernel's oids on startup. 393 */ 394 SET_DECLARE(sysctl_set, struct sysctl_oid); 395 396 static void 397 sysctl_register_all(void *arg) 398 { 399 struct sysctl_oid **oidp; 400 401 SYSCTL_INIT(); 402 SET_FOREACH(oidp, sysctl_set) 403 sysctl_register_oid(*oidp); 404 } 405 SYSINIT(sysctl, SI_SUB_KMEM, SI_ORDER_ANY, sysctl_register_all, 0); 406 407 /* 408 * "Staff-functions" 409 * 410 * These functions implement a presently undocumented interface 411 * used by the sysctl program to walk the tree, and get the type 412 * so it can print the value. 413 * This interface is under work and consideration, and should probably 414 * be killed with a big axe by the first person who can find the time. 415 * (be aware though, that the proper interface isn't as obvious as it 416 * may seem, there are various conflicting requirements. 417 * 418 * {0,0} printf the entire MIB-tree. 419 * {0,1,...} return the name of the "..." OID. 420 * {0,2,...} return the next OID. 421 * {0,3} return the OID of the name in "new" 422 * {0,4,...} return the kind & format info for the "..." OID. 423 * {0,5,...} return the description the "..." OID. 424 */ 425 426 static void 427 sysctl_sysctl_debug_dump_node(struct sysctl_oid_list *l, int i) 428 { 429 int k; 430 struct sysctl_oid *oidp; 431 432 SLIST_FOREACH(oidp, l, oid_link) { 433 434 for (k=0; k<i; k++) 435 printf(" "); 436 437 printf("%d %s ", oidp->oid_number, oidp->oid_name); 438 439 printf("%c%c", 440 oidp->oid_kind & CTLFLAG_RD ? 'R':' ', 441 oidp->oid_kind & CTLFLAG_WR ? 'W':' '); 442 443 if (oidp->oid_handler) 444 printf(" *Handler"); 445 446 switch (oidp->oid_kind & CTLTYPE) { 447 case CTLTYPE_NODE: 448 printf(" Node\n"); 449 if (!oidp->oid_handler) { 450 sysctl_sysctl_debug_dump_node( 451 oidp->oid_arg1, i+2); 452 } 453 break; 454 case CTLTYPE_INT: printf(" Int\n"); break; 455 case CTLTYPE_STRING: printf(" String\n"); break; 456 case CTLTYPE_QUAD: printf(" Quad\n"); break; 457 case CTLTYPE_OPAQUE: printf(" Opaque/struct\n"); break; 458 default: printf("\n"); 459 } 460 461 } 462 } 463 464 static int 465 sysctl_sysctl_debug(SYSCTL_HANDLER_ARGS) 466 { 467 int error; 468 469 error = suser(req->td); 470 if (error) 471 return error; 472 sysctl_sysctl_debug_dump_node(&sysctl__children, 0); 473 return ENOENT; 474 } 475 476 SYSCTL_PROC(_sysctl, 0, debug, CTLTYPE_STRING|CTLFLAG_RD, 477 0, 0, sysctl_sysctl_debug, "-", ""); 478 479 static int 480 sysctl_sysctl_name(SYSCTL_HANDLER_ARGS) 481 { 482 int *name = (int *) arg1; 483 u_int namelen = arg2; 484 int error = 0; 485 struct sysctl_oid *oid; 486 struct sysctl_oid_list *lsp = &sysctl__children, *lsp2; 487 char buf[10]; 488 489 while (namelen) { 490 if (!lsp) { 491 snprintf(buf,sizeof(buf),"%d",*name); 492 if (req->oldidx) 493 error = SYSCTL_OUT(req, ".", 1); 494 if (!error) 495 error = SYSCTL_OUT(req, buf, strlen(buf)); 496 if (error) 497 return (error); 498 namelen--; 499 name++; 500 continue; 501 } 502 lsp2 = 0; 503 SLIST_FOREACH(oid, lsp, oid_link) { 504 if (oid->oid_number != *name) 505 continue; 506 507 if (req->oldidx) 508 error = SYSCTL_OUT(req, ".", 1); 509 if (!error) 510 error = SYSCTL_OUT(req, oid->oid_name, 511 strlen(oid->oid_name)); 512 if (error) 513 return (error); 514 515 namelen--; 516 name++; 517 518 if ((oid->oid_kind & CTLTYPE) != CTLTYPE_NODE) 519 break; 520 521 if (oid->oid_handler) 522 break; 523 524 lsp2 = (struct sysctl_oid_list *)oid->oid_arg1; 525 break; 526 } 527 lsp = lsp2; 528 } 529 return (SYSCTL_OUT(req, "", 1)); 530 } 531 532 SYSCTL_NODE(_sysctl, 1, name, CTLFLAG_RD, sysctl_sysctl_name, ""); 533 534 static int 535 sysctl_sysctl_next_ls(struct sysctl_oid_list *lsp, int *name, u_int namelen, 536 int *next, int *len, int level, struct sysctl_oid **oidpp) 537 { 538 struct sysctl_oid *oidp; 539 540 *len = level; 541 SLIST_FOREACH(oidp, lsp, oid_link) { 542 *next = oidp->oid_number; 543 *oidpp = oidp; 544 545 if (!namelen) { 546 if ((oidp->oid_kind & CTLTYPE) != CTLTYPE_NODE) 547 return 0; 548 if (oidp->oid_handler) 549 /* We really should call the handler here...*/ 550 return 0; 551 lsp = (struct sysctl_oid_list *)oidp->oid_arg1; 552 if (!sysctl_sysctl_next_ls(lsp, 0, 0, next+1, 553 len, level+1, oidpp)) 554 return 0; 555 goto next; 556 } 557 558 if (oidp->oid_number < *name) 559 continue; 560 561 if (oidp->oid_number > *name) { 562 if ((oidp->oid_kind & CTLTYPE) != CTLTYPE_NODE) 563 return 0; 564 if (oidp->oid_handler) 565 return 0; 566 lsp = (struct sysctl_oid_list *)oidp->oid_arg1; 567 if (!sysctl_sysctl_next_ls(lsp, name+1, namelen-1, 568 next+1, len, level+1, oidpp)) 569 return (0); 570 goto next; 571 } 572 if ((oidp->oid_kind & CTLTYPE) != CTLTYPE_NODE) 573 continue; 574 575 if (oidp->oid_handler) 576 continue; 577 578 lsp = (struct sysctl_oid_list *)oidp->oid_arg1; 579 if (!sysctl_sysctl_next_ls(lsp, name+1, namelen-1, next+1, 580 len, level+1, oidpp)) 581 return (0); 582 next: 583 namelen = 1; 584 *len = level; 585 } 586 return 1; 587 } 588 589 static int 590 sysctl_sysctl_next(SYSCTL_HANDLER_ARGS) 591 { 592 int *name = (int *) arg1; 593 u_int namelen = arg2; 594 int i, j, error; 595 struct sysctl_oid *oid; 596 struct sysctl_oid_list *lsp = &sysctl__children; 597 int newoid[CTL_MAXNAME]; 598 599 i = sysctl_sysctl_next_ls(lsp, name, namelen, newoid, &j, 1, &oid); 600 if (i) 601 return ENOENT; 602 error = SYSCTL_OUT(req, newoid, j * sizeof (int)); 603 return (error); 604 } 605 606 SYSCTL_NODE(_sysctl, 2, next, CTLFLAG_RD, sysctl_sysctl_next, ""); 607 608 static int 609 name2oid (char *name, int *oid, int *len, struct sysctl_oid **oidpp) 610 { 611 int i; 612 struct sysctl_oid *oidp; 613 struct sysctl_oid_list *lsp = &sysctl__children; 614 char *p; 615 616 if (!*name) 617 return ENOENT; 618 619 p = name + strlen(name) - 1 ; 620 if (*p == '.') 621 *p = '\0'; 622 623 *len = 0; 624 625 for (p = name; *p && *p != '.'; p++) 626 ; 627 i = *p; 628 if (i == '.') 629 *p = '\0'; 630 631 oidp = SLIST_FIRST(lsp); 632 633 while (oidp && *len < CTL_MAXNAME) { 634 if (strcmp(name, oidp->oid_name)) { 635 oidp = SLIST_NEXT(oidp, oid_link); 636 continue; 637 } 638 *oid++ = oidp->oid_number; 639 (*len)++; 640 641 if (!i) { 642 if (oidpp) 643 *oidpp = oidp; 644 return (0); 645 } 646 647 if ((oidp->oid_kind & CTLTYPE) != CTLTYPE_NODE) 648 break; 649 650 if (oidp->oid_handler) 651 break; 652 653 lsp = (struct sysctl_oid_list *)oidp->oid_arg1; 654 oidp = SLIST_FIRST(lsp); 655 name = p+1; 656 for (p = name; *p && *p != '.'; p++) 657 ; 658 i = *p; 659 if (i == '.') 660 *p = '\0'; 661 } 662 return ENOENT; 663 } 664 665 static int 666 sysctl_sysctl_name2oid(SYSCTL_HANDLER_ARGS) 667 { 668 char *p; 669 int error, oid[CTL_MAXNAME], len; 670 struct sysctl_oid *op = 0; 671 672 if (!req->newlen) 673 return ENOENT; 674 if (req->newlen >= MAXPATHLEN) /* XXX arbitrary, undocumented */ 675 return (ENAMETOOLONG); 676 677 p = malloc(req->newlen+1, M_SYSCTL, M_WAITOK); 678 679 error = SYSCTL_IN(req, p, req->newlen); 680 if (error) { 681 free(p, M_SYSCTL); 682 return (error); 683 } 684 685 p [req->newlen] = '\0'; 686 687 error = name2oid(p, oid, &len, &op); 688 689 free(p, M_SYSCTL); 690 691 if (error) 692 return (error); 693 694 error = SYSCTL_OUT(req, oid, len * sizeof *oid); 695 return (error); 696 } 697 698 SYSCTL_PROC(_sysctl, 3, name2oid, CTLFLAG_RW|CTLFLAG_ANYBODY, 0, 0, 699 sysctl_sysctl_name2oid, "I", ""); 700 701 static int 702 sysctl_sysctl_oidfmt(SYSCTL_HANDLER_ARGS) 703 { 704 struct sysctl_oid *oid; 705 int error; 706 707 error = sysctl_find_oid(arg1, arg2, &oid, NULL, req); 708 if (error) 709 return (error); 710 711 if (!oid->oid_fmt) 712 return (ENOENT); 713 error = SYSCTL_OUT(req, &oid->oid_kind, sizeof(oid->oid_kind)); 714 if (error) 715 return (error); 716 error = SYSCTL_OUT(req, oid->oid_fmt, strlen(oid->oid_fmt) + 1); 717 return (error); 718 } 719 720 721 SYSCTL_NODE(_sysctl, 4, oidfmt, CTLFLAG_RD, sysctl_sysctl_oidfmt, ""); 722 723 static int 724 sysctl_sysctl_oiddescr(SYSCTL_HANDLER_ARGS) 725 { 726 struct sysctl_oid *oid; 727 int error; 728 729 error = sysctl_find_oid(arg1, arg2, &oid, NULL, req); 730 if (error) 731 return (error); 732 733 if (!oid->descr) 734 return (ENOENT); 735 error = SYSCTL_OUT(req, oid->descr, strlen(oid->descr) + 1); 736 return (error); 737 } 738 739 SYSCTL_NODE(_sysctl, 5, oiddescr, CTLFLAG_RD, sysctl_sysctl_oiddescr, ""); 740 741 /* 742 * Default "handler" functions. 743 */ 744 745 /* 746 * Handle an int, signed or unsigned. 747 * Two cases: 748 * a variable: point arg1 at it. 749 * a constant: pass it in arg2. 750 */ 751 752 int 753 sysctl_handle_int(SYSCTL_HANDLER_ARGS) 754 { 755 int tmpout, error = 0; 756 757 /* 758 * Attempt to get a coherent snapshot by making a copy of the data. 759 */ 760 if (arg1) 761 tmpout = *(int *)arg1; 762 else 763 tmpout = arg2; 764 error = SYSCTL_OUT(req, &tmpout, sizeof(int)); 765 766 if (error || !req->newptr) 767 return (error); 768 769 if (!arg1) 770 error = EPERM; 771 else 772 error = SYSCTL_IN(req, arg1, sizeof(int)); 773 return (error); 774 } 775 776 /* 777 * Handle a long, signed or unsigned. arg1 points to it. 778 */ 779 780 int 781 sysctl_handle_long(SYSCTL_HANDLER_ARGS) 782 { 783 int error = 0; 784 long tmpout; 785 786 /* 787 * Attempt to get a coherent snapshot by making a copy of the data. 788 */ 789 if (!arg1) 790 return (EINVAL); 791 tmpout = *(long *)arg1; 792 error = SYSCTL_OUT(req, &tmpout, sizeof(long)); 793 794 if (error || !req->newptr) 795 return (error); 796 797 error = SYSCTL_IN(req, arg1, sizeof(long)); 798 return (error); 799 } 800 801 /* 802 * Handle our generic '\0' terminated 'C' string. 803 * Two cases: 804 * a variable string: point arg1 at it, arg2 is max length. 805 * a constant string: point arg1 at it, arg2 is zero. 806 */ 807 808 int 809 sysctl_handle_string(SYSCTL_HANDLER_ARGS) 810 { 811 int error=0; 812 char *tmparg; 813 size_t outlen; 814 815 /* 816 * Attempt to get a coherent snapshot by copying to a 817 * temporary kernel buffer. 818 */ 819 retry: 820 outlen = strlen((char *)arg1)+1; 821 tmparg = malloc(outlen, M_SYSCTLTMP, M_WAITOK); 822 strncpy(tmparg, (char *)arg1, outlen); 823 if (tmparg[outlen-1] != '\0') { 824 free(tmparg, M_SYSCTLTMP); 825 goto retry; 826 } 827 error = SYSCTL_OUT(req, tmparg, outlen); 828 free(tmparg, M_SYSCTLTMP); 829 830 if (error || !req->newptr) 831 return (error); 832 833 if ((req->newlen - req->newidx) >= arg2) { 834 error = EINVAL; 835 } else { 836 arg2 = (req->newlen - req->newidx); 837 error = SYSCTL_IN(req, arg1, arg2); 838 ((char *)arg1)[arg2] = '\0'; 839 } 840 841 return (error); 842 } 843 844 /* 845 * Handle any kind of opaque data. 846 * arg1 points to it, arg2 is the size. 847 */ 848 849 int 850 sysctl_handle_opaque(SYSCTL_HANDLER_ARGS) 851 { 852 int error; 853 void *tmparg; 854 855 /* 856 * Attempt to get a coherent snapshot, either by wiring the 857 * user space buffer or copying to a temporary kernel buffer 858 * depending on the size of the data. 859 */ 860 if (arg2 > PAGE_SIZE) { 861 sysctl_wire_old_buffer(req, arg2); 862 error = SYSCTL_OUT(req, arg1, arg2); 863 } else { 864 tmparg = malloc(arg2, M_SYSCTLTMP, M_WAITOK); 865 bcopy(arg1, tmparg, arg2); 866 error = SYSCTL_OUT(req, tmparg, arg2); 867 free(tmparg, M_SYSCTLTMP); 868 } 869 870 if (error || !req->newptr) 871 return (error); 872 873 error = SYSCTL_IN(req, arg1, arg2); 874 875 return (error); 876 } 877 878 /* 879 * Transfer functions to/from kernel space. 880 * XXX: rather untested at this point 881 */ 882 static int 883 sysctl_old_kernel(struct sysctl_req *req, const void *p, size_t l) 884 { 885 size_t i = 0; 886 887 if (req->oldptr) { 888 i = l; 889 if (req->oldlen <= req->oldidx) 890 i = 0; 891 else 892 if (i > req->oldlen - req->oldidx) 893 i = req->oldlen - req->oldidx; 894 if (i > 0) 895 bcopy(p, (char *)req->oldptr + req->oldidx, i); 896 } 897 req->oldidx += l; 898 if (req->oldptr && i != l) 899 return (ENOMEM); 900 return (0); 901 } 902 903 static int 904 sysctl_new_kernel(struct sysctl_req *req, void *p, size_t l) 905 { 906 if (!req->newptr) 907 return 0; 908 if (req->newlen - req->newidx < l) 909 return (EINVAL); 910 bcopy((char *)req->newptr + req->newidx, p, l); 911 req->newidx += l; 912 return (0); 913 } 914 915 int 916 kernel_sysctl(struct thread *td, int *name, u_int namelen, void *old, 917 size_t *oldlenp, void *new, size_t newlen, size_t *retval) 918 { 919 int error = 0; 920 struct sysctl_req req; 921 922 bzero(&req, sizeof req); 923 924 req.td = td; 925 926 if (oldlenp) { 927 req.oldlen = *oldlenp; 928 } 929 930 if (old) { 931 req.oldptr= old; 932 } 933 934 if (new != NULL) { 935 req.newlen = newlen; 936 req.newptr = new; 937 } 938 939 req.oldfunc = sysctl_old_kernel; 940 req.newfunc = sysctl_new_kernel; 941 req.lock = 1; 942 943 SYSCTL_LOCK(); 944 945 error = sysctl_root(0, name, namelen, &req); 946 947 if (req.lock == 2) 948 vsunlock(req.oldptr, req.oldlen); 949 950 SYSCTL_UNLOCK(); 951 952 if (error && error != ENOMEM) 953 return (error); 954 955 if (retval) { 956 if (req.oldptr && req.oldidx > req.oldlen) 957 *retval = req.oldlen; 958 else 959 *retval = req.oldidx; 960 } 961 return (error); 962 } 963 964 int 965 kernel_sysctlbyname(struct thread *td, char *name, void *old, size_t *oldlenp, 966 void *new, size_t newlen, size_t *retval) 967 { 968 int oid[CTL_MAXNAME]; 969 size_t oidlen, plen; 970 int error; 971 972 oid[0] = 0; /* sysctl internal magic */ 973 oid[1] = 3; /* name2oid */ 974 oidlen = sizeof(oid); 975 976 error = kernel_sysctl(td, oid, 2, oid, &oidlen, 977 (void *)name, strlen(name), &plen); 978 if (error) 979 return (error); 980 981 error = kernel_sysctl(td, oid, plen / sizeof(int), old, oldlenp, 982 new, newlen, retval); 983 return (error); 984 } 985 986 /* 987 * Transfer function to/from user space. 988 */ 989 static int 990 sysctl_old_user(struct sysctl_req *req, const void *p, size_t l) 991 { 992 int error = 0; 993 size_t i = 0; 994 995 if (req->lock == 1 && req->oldptr) { 996 vslock(req->oldptr, req->oldlen); 997 req->lock = 2; 998 } 999 if (req->oldptr) { 1000 i = l; 1001 if (req->oldlen <= req->oldidx) 1002 i = 0; 1003 else 1004 if (i > req->oldlen - req->oldidx) 1005 i = req->oldlen - req->oldidx; 1006 if (i > 0) 1007 error = copyout(p, (char *)req->oldptr + req->oldidx, 1008 i); 1009 } 1010 req->oldidx += l; 1011 if (error) 1012 return (error); 1013 if (req->oldptr && i < l) 1014 return (ENOMEM); 1015 return (0); 1016 } 1017 1018 static int 1019 sysctl_new_user(struct sysctl_req *req, void *p, size_t l) 1020 { 1021 int error; 1022 1023 if (!req->newptr) 1024 return 0; 1025 if (req->newlen - req->newidx < l) 1026 return (EINVAL); 1027 error = copyin((char *)req->newptr + req->newidx, p, l); 1028 req->newidx += l; 1029 return (error); 1030 } 1031 1032 /* 1033 * Wire the user space destination buffer. If set to a value greater than 1034 * zero, the len parameter limits the maximum amount of wired memory. 1035 * 1036 * XXX - The len parameter is currently ignored due to the lack of 1037 * a place to save it in the sysctl_req structure so that the matching 1038 * amount of memory can be unwired in the sysctl exit code. 1039 */ 1040 void 1041 sysctl_wire_old_buffer(struct sysctl_req *req, size_t len) 1042 { 1043 if (req->lock == 1 && req->oldptr && req->oldfunc == sysctl_old_user) { 1044 vslock(req->oldptr, req->oldlen); 1045 req->lock = 2; 1046 } 1047 } 1048 1049 int 1050 sysctl_find_oid(int *name, u_int namelen, struct sysctl_oid **noid, 1051 int *nindx, struct sysctl_req *req) 1052 { 1053 struct sysctl_oid *oid; 1054 int indx; 1055 1056 oid = SLIST_FIRST(&sysctl__children); 1057 indx = 0; 1058 while (oid && indx < CTL_MAXNAME) { 1059 if (oid->oid_number == name[indx]) { 1060 indx++; 1061 if (oid->oid_kind & CTLFLAG_NOLOCK) 1062 req->lock = 0; 1063 if ((oid->oid_kind & CTLTYPE) == CTLTYPE_NODE) { 1064 if (oid->oid_handler != NULL || 1065 indx == namelen) { 1066 *noid = oid; 1067 if (nindx != NULL) 1068 *nindx = indx; 1069 return (0); 1070 } 1071 oid = SLIST_FIRST( 1072 (struct sysctl_oid_list *)oid->oid_arg1); 1073 } else if (indx == namelen) { 1074 *noid = oid; 1075 if (nindx != NULL) 1076 *nindx = indx; 1077 return (0); 1078 } else { 1079 return (ENOTDIR); 1080 } 1081 } else { 1082 oid = SLIST_NEXT(oid, oid_link); 1083 } 1084 } 1085 return (ENOENT); 1086 } 1087 1088 /* 1089 * Traverse our tree, and find the right node, execute whatever it points 1090 * to, and return the resulting error code. 1091 */ 1092 1093 int 1094 sysctl_root(SYSCTL_HANDLER_ARGS) 1095 { 1096 struct sysctl_oid *oid; 1097 int error, indx; 1098 1099 error = sysctl_find_oid(arg1, arg2, &oid, &indx, req); 1100 if (error) 1101 return (error); 1102 1103 if ((oid->oid_kind & CTLTYPE) == CTLTYPE_NODE) { 1104 /* 1105 * You can't call a sysctl when it's a node, but has 1106 * no handler. Inform the user that it's a node. 1107 * The indx may or may not be the same as namelen. 1108 */ 1109 if (oid->oid_handler == NULL) 1110 return (EISDIR); 1111 } 1112 1113 /* Is this sysctl writable? */ 1114 if (req->newptr && !(oid->oid_kind & CTLFLAG_WR)) 1115 return (EPERM); 1116 1117 KASSERT(req->td != NULL, ("sysctl_root(): req->td == NULL")); 1118 1119 /* Is this sysctl sensitive to securelevels? */ 1120 if (req->newptr && (oid->oid_kind & CTLFLAG_SECURE)) { 1121 error = securelevel_gt(req->td->td_ucred, 0); 1122 if (error) 1123 return (error); 1124 } 1125 1126 /* Is this sysctl writable by only privileged users? */ 1127 if (req->newptr && !(oid->oid_kind & CTLFLAG_ANYBODY)) { 1128 int flags; 1129 1130 if (oid->oid_kind & CTLFLAG_PRISON) 1131 flags = PRISON_ROOT; 1132 else 1133 flags = 0; 1134 error = suser_cred(req->td->td_ucred, flags); 1135 if (error) 1136 return (error); 1137 } 1138 1139 if (!oid->oid_handler) 1140 return EINVAL; 1141 1142 if ((oid->oid_kind & CTLTYPE) == CTLTYPE_NODE) 1143 error = oid->oid_handler(oid, (int *)arg1 + indx, arg2 - indx, 1144 req); 1145 else 1146 error = oid->oid_handler(oid, oid->oid_arg1, oid->oid_arg2, 1147 req); 1148 return (error); 1149 } 1150 1151 #ifndef _SYS_SYSPROTO_H_ 1152 struct sysctl_args { 1153 int *name; 1154 u_int namelen; 1155 void *old; 1156 size_t *oldlenp; 1157 void *new; 1158 size_t newlen; 1159 }; 1160 #endif 1161 1162 /* 1163 * MPSAFE 1164 */ 1165 int 1166 __sysctl(struct thread *td, struct sysctl_args *uap) 1167 { 1168 int error, name[CTL_MAXNAME]; 1169 size_t j; 1170 1171 if (uap->namelen > CTL_MAXNAME || uap->namelen < 2) 1172 return (EINVAL); 1173 1174 error = copyin(uap->name, &name, uap->namelen * sizeof(int)); 1175 if (error) 1176 return (error); 1177 1178 mtx_lock(&Giant); 1179 1180 error = userland_sysctl(td, name, uap->namelen, 1181 uap->old, uap->oldlenp, 0, 1182 uap->new, uap->newlen, &j); 1183 if (error && error != ENOMEM) 1184 goto done2; 1185 if (uap->oldlenp) { 1186 int i = copyout(&j, uap->oldlenp, sizeof(j)); 1187 if (i) 1188 error = i; 1189 } 1190 done2: 1191 mtx_unlock(&Giant); 1192 return (error); 1193 } 1194 1195 /* 1196 * This is used from various compatibility syscalls too. That's why name 1197 * must be in kernel space. 1198 */ 1199 int 1200 userland_sysctl(struct thread *td, int *name, u_int namelen, void *old, 1201 size_t *oldlenp, int inkernel, void *new, size_t newlen, size_t *retval) 1202 { 1203 int error = 0; 1204 struct sysctl_req req, req2; 1205 1206 bzero(&req, sizeof req); 1207 1208 req.td = td; 1209 1210 if (oldlenp) { 1211 if (inkernel) { 1212 req.oldlen = *oldlenp; 1213 } else { 1214 error = copyin(oldlenp, &req.oldlen, sizeof(*oldlenp)); 1215 if (error) 1216 return (error); 1217 } 1218 } 1219 1220 if (old) { 1221 if (!useracc(old, req.oldlen, VM_PROT_WRITE)) 1222 return (EFAULT); 1223 req.oldptr= old; 1224 } 1225 1226 if (new != NULL) { 1227 if (!useracc(new, req.newlen, VM_PROT_READ)) 1228 return (EFAULT); 1229 req.newlen = newlen; 1230 req.newptr = new; 1231 } 1232 1233 req.oldfunc = sysctl_old_user; 1234 req.newfunc = sysctl_new_user; 1235 req.lock = 1; 1236 1237 SYSCTL_LOCK(); 1238 1239 do { 1240 req2 = req; 1241 error = sysctl_root(0, name, namelen, &req2); 1242 } while (error == EAGAIN); 1243 1244 req = req2; 1245 if (req.lock == 2) 1246 vsunlock(req.oldptr, req.oldlen); 1247 1248 SYSCTL_UNLOCK(); 1249 1250 if (error && error != ENOMEM) 1251 return (error); 1252 1253 if (retval) { 1254 if (req.oldptr && req.oldidx > req.oldlen) 1255 *retval = req.oldlen; 1256 else 1257 *retval = req.oldidx; 1258 } 1259 return (error); 1260 } 1261 1262 #ifdef COMPAT_43 1263 #include <sys/socket.h> 1264 #include <vm/vm_param.h> 1265 1266 #define KINFO_PROC (0<<8) 1267 #define KINFO_RT (1<<8) 1268 #define KINFO_VNODE (2<<8) 1269 #define KINFO_FILE (3<<8) 1270 #define KINFO_METER (4<<8) 1271 #define KINFO_LOADAVG (5<<8) 1272 #define KINFO_CLOCKRATE (6<<8) 1273 1274 /* Non-standard BSDI extension - only present on their 4.3 net-2 releases */ 1275 #define KINFO_BSDI_SYSINFO (101<<8) 1276 1277 /* 1278 * XXX this is bloat, but I hope it's better here than on the potentially 1279 * limited kernel stack... -Peter 1280 */ 1281 1282 static struct { 1283 int bsdi_machine; /* "i386" on BSD/386 */ 1284 /* ^^^ this is an offset to the string, relative to the struct start */ 1285 char *pad0; 1286 long pad1; 1287 long pad2; 1288 long pad3; 1289 u_long pad4; 1290 u_long pad5; 1291 u_long pad6; 1292 1293 int bsdi_ostype; /* "BSD/386" on BSD/386 */ 1294 int bsdi_osrelease; /* "1.1" on BSD/386 */ 1295 long pad7; 1296 long pad8; 1297 char *pad9; 1298 1299 long pad10; 1300 long pad11; 1301 int pad12; 1302 long pad13; 1303 quad_t pad14; 1304 long pad15; 1305 1306 struct timeval pad16; 1307 /* we dont set this, because BSDI's uname used gethostname() instead */ 1308 int bsdi_hostname; /* hostname on BSD/386 */ 1309 1310 /* the actual string data is appended here */ 1311 1312 } bsdi_si; 1313 /* 1314 * this data is appended to the end of the bsdi_si structure during copyout. 1315 * The "char *" offsets are relative to the base of the bsdi_si struct. 1316 * This contains "FreeBSD\02.0-BUILT-nnnnnn\0i386\0", and these strings 1317 * should not exceed the length of the buffer here... (or else!! :-) 1318 */ 1319 static char bsdi_strings[80]; /* It had better be less than this! */ 1320 1321 #ifndef _SYS_SYSPROTO_H_ 1322 struct getkerninfo_args { 1323 int op; 1324 char *where; 1325 size_t *size; 1326 int arg; 1327 }; 1328 #endif 1329 1330 /* 1331 * MPSAFE 1332 */ 1333 int 1334 ogetkerninfo(struct thread *td, struct getkerninfo_args *uap) 1335 { 1336 int error, name[6]; 1337 size_t size; 1338 u_int needed = 0; 1339 1340 mtx_lock(&Giant); 1341 1342 switch (uap->op & 0xff00) { 1343 1344 case KINFO_RT: 1345 name[0] = CTL_NET; 1346 name[1] = PF_ROUTE; 1347 name[2] = 0; 1348 name[3] = (uap->op & 0xff0000) >> 16; 1349 name[4] = uap->op & 0xff; 1350 name[5] = uap->arg; 1351 error = userland_sysctl(td, name, 6, uap->where, uap->size, 1352 0, 0, 0, &size); 1353 break; 1354 1355 case KINFO_VNODE: 1356 name[0] = CTL_KERN; 1357 name[1] = KERN_VNODE; 1358 error = userland_sysctl(td, name, 2, uap->where, uap->size, 1359 0, 0, 0, &size); 1360 break; 1361 1362 case KINFO_PROC: 1363 name[0] = CTL_KERN; 1364 name[1] = KERN_PROC; 1365 name[2] = uap->op & 0xff; 1366 name[3] = uap->arg; 1367 error = userland_sysctl(td, name, 4, uap->where, uap->size, 1368 0, 0, 0, &size); 1369 break; 1370 1371 case KINFO_FILE: 1372 name[0] = CTL_KERN; 1373 name[1] = KERN_FILE; 1374 error = userland_sysctl(td, name, 2, uap->where, uap->size, 1375 0, 0, 0, &size); 1376 break; 1377 1378 case KINFO_METER: 1379 name[0] = CTL_VM; 1380 name[1] = VM_METER; 1381 error = userland_sysctl(td, name, 2, uap->where, uap->size, 1382 0, 0, 0, &size); 1383 break; 1384 1385 case KINFO_LOADAVG: 1386 name[0] = CTL_VM; 1387 name[1] = VM_LOADAVG; 1388 error = userland_sysctl(td, name, 2, uap->where, uap->size, 1389 0, 0, 0, &size); 1390 break; 1391 1392 case KINFO_CLOCKRATE: 1393 name[0] = CTL_KERN; 1394 name[1] = KERN_CLOCKRATE; 1395 error = userland_sysctl(td, name, 2, uap->where, uap->size, 1396 0, 0, 0, &size); 1397 break; 1398 1399 case KINFO_BSDI_SYSINFO: { 1400 /* 1401 * this is pretty crude, but it's just enough for uname() 1402 * from BSDI's 1.x libc to work. 1403 * 1404 * *size gives the size of the buffer before the call, and 1405 * the amount of data copied after a successful call. 1406 * If successful, the return value is the amount of data 1407 * available, which can be larger than *size. 1408 * 1409 * BSDI's 2.x product apparently fails with ENOMEM if *size 1410 * is too small. 1411 */ 1412 1413 u_int left; 1414 char *s; 1415 1416 bzero((char *)&bsdi_si, sizeof(bsdi_si)); 1417 bzero(bsdi_strings, sizeof(bsdi_strings)); 1418 1419 s = bsdi_strings; 1420 1421 bsdi_si.bsdi_ostype = (s - bsdi_strings) + sizeof(bsdi_si); 1422 strcpy(s, ostype); 1423 s += strlen(s) + 1; 1424 1425 bsdi_si.bsdi_osrelease = (s - bsdi_strings) + sizeof(bsdi_si); 1426 strcpy(s, osrelease); 1427 s += strlen(s) + 1; 1428 1429 bsdi_si.bsdi_machine = (s - bsdi_strings) + sizeof(bsdi_si); 1430 strcpy(s, machine); 1431 s += strlen(s) + 1; 1432 1433 needed = sizeof(bsdi_si) + (s - bsdi_strings); 1434 1435 if ((uap->where == NULL) || (uap->size == NULL)) { 1436 /* process is asking how much buffer to supply.. */ 1437 size = needed; 1438 error = 0; 1439 break; 1440 } 1441 1442 if ((error = copyin(uap->size, &size, sizeof(size))) != 0) 1443 break; 1444 1445 /* if too much buffer supplied, trim it down */ 1446 if (size > needed) 1447 size = needed; 1448 1449 /* how much of the buffer is remaining */ 1450 left = size; 1451 1452 if ((error = copyout((char *)&bsdi_si, uap->where, left)) != 0) 1453 break; 1454 1455 /* is there any point in continuing? */ 1456 if (left > sizeof(bsdi_si)) { 1457 left -= sizeof(bsdi_si); 1458 error = copyout(&bsdi_strings, 1459 uap->where + sizeof(bsdi_si), left); 1460 } 1461 break; 1462 } 1463 1464 default: 1465 error = EOPNOTSUPP; 1466 break; 1467 } 1468 if (error == 0) { 1469 td->td_retval[0] = needed ? needed : size; 1470 if (uap->size) { 1471 error = copyout(&size, uap->size, sizeof(size)); 1472 } 1473 } 1474 mtx_unlock(&Giant); 1475 return (error); 1476 } 1477 #endif /* COMPAT_43 */ 1478