1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 3 * 4 * Copyright (c) 1997-2000 Doug Rabson 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 * SUCH DAMAGE. 27 */ 28 29 #include <sys/cdefs.h> 30 #include "opt_ddb.h" 31 #include "opt_kld.h" 32 #include "opt_hwpmc_hooks.h" 33 34 #include <sys/param.h> 35 #include <sys/systm.h> 36 #include <sys/boottrace.h> 37 #include <sys/eventhandler.h> 38 #include <sys/fcntl.h> 39 #include <sys/jail.h> 40 #include <sys/kernel.h> 41 #include <sys/libkern.h> 42 #include <sys/linker.h> 43 #include <sys/lock.h> 44 #include <sys/malloc.h> 45 #include <sys/module.h> 46 #include <sys/mount.h> 47 #include <sys/mutex.h> 48 #include <sys/namei.h> 49 #include <sys/priv.h> 50 #include <sys/proc.h> 51 #include <sys/sx.h> 52 #include <sys/syscallsubr.h> 53 #include <sys/sysctl.h> 54 #include <sys/sysproto.h> 55 #include <sys/vnode.h> 56 57 #ifdef DDB 58 #include <ddb/ddb.h> 59 #endif 60 61 #include <net/vnet.h> 62 63 #include <security/mac/mac_framework.h> 64 65 #include "linker_if.h" 66 67 #ifdef HWPMC_HOOKS 68 #include <sys/pmckern.h> 69 #endif 70 71 #ifdef KLD_DEBUG 72 int kld_debug = 0; 73 SYSCTL_INT(_debug, OID_AUTO, kld_debug, CTLFLAG_RWTUN, 74 &kld_debug, 0, "Set various levels of KLD debug"); 75 #endif 76 77 /* These variables are used by kernel debuggers to enumerate loaded files. */ 78 const int kld_off_address = offsetof(struct linker_file, address); 79 const int kld_off_filename = offsetof(struct linker_file, filename); 80 const int kld_off_pathname = offsetof(struct linker_file, pathname); 81 const int kld_off_next = offsetof(struct linker_file, link.tqe_next); 82 83 /* 84 * static char *linker_search_path(const char *name, struct mod_depend 85 * *verinfo); 86 */ 87 static const char *linker_basename(const char *path); 88 89 /* 90 * Find a currently loaded file given its filename. 91 */ 92 static linker_file_t linker_find_file_by_name(const char* _filename); 93 94 /* 95 * Find a currently loaded file given its file id. 96 */ 97 static linker_file_t linker_find_file_by_id(int _fileid); 98 99 /* Metadata from the static kernel */ 100 SET_DECLARE(modmetadata_set, struct mod_metadata); 101 102 MALLOC_DEFINE(M_LINKER, "linker", "kernel linker"); 103 104 linker_file_t linker_kernel_file; 105 106 static struct sx kld_sx; /* kernel linker lock */ 107 static u_int kld_busy; 108 static struct thread *kld_busy_owner; 109 110 /* 111 * Load counter used by clients to determine if a linker file has been 112 * re-loaded. This counter is incremented for each file load. 113 */ 114 static int loadcnt; 115 116 static linker_class_list_t classes; 117 static linker_file_list_t linker_files; 118 static int next_file_id = 1; 119 static int linker_no_more_classes = 0; 120 121 #define LINKER_GET_NEXT_FILE_ID(a) do { \ 122 linker_file_t lftmp; \ 123 \ 124 if (!cold) \ 125 sx_assert(&kld_sx, SA_XLOCKED); \ 126 retry: \ 127 TAILQ_FOREACH(lftmp, &linker_files, link) { \ 128 if (next_file_id == lftmp->id) { \ 129 next_file_id++; \ 130 goto retry; \ 131 } \ 132 } \ 133 (a) = next_file_id; \ 134 } while (0) 135 136 /* XXX wrong name; we're looking at version provision tags here, not modules */ 137 typedef TAILQ_HEAD(, modlist) modlisthead_t; 138 struct modlist { 139 TAILQ_ENTRY(modlist) link; /* chain together all modules */ 140 linker_file_t container; 141 const char *name; 142 int version; 143 }; 144 typedef struct modlist *modlist_t; 145 static modlisthead_t found_modules; 146 147 static int linker_file_add_dependency(linker_file_t file, 148 linker_file_t dep); 149 static caddr_t linker_file_lookup_symbol_internal(linker_file_t file, 150 const char* name, int deps); 151 static int linker_load_module(const char *kldname, 152 const char *modname, struct linker_file *parent, 153 const struct mod_depend *verinfo, struct linker_file **lfpp); 154 static modlist_t modlist_lookup2(const char *name, const struct mod_depend *verinfo); 155 156 static void 157 linker_init(void *arg) 158 { 159 160 sx_init(&kld_sx, "kernel linker"); 161 TAILQ_INIT(&classes); 162 TAILQ_INIT(&linker_files); 163 } 164 165 SYSINIT(linker, SI_SUB_KLD, SI_ORDER_FIRST, linker_init, NULL); 166 167 static void 168 linker_stop_class_add(void *arg) 169 { 170 171 linker_no_more_classes = 1; 172 } 173 174 SYSINIT(linker_class, SI_SUB_KLD, SI_ORDER_ANY, linker_stop_class_add, NULL); 175 176 int 177 linker_add_class(linker_class_t lc) 178 { 179 180 /* 181 * We disallow any class registration past SI_ORDER_ANY 182 * of SI_SUB_KLD. We bump the reference count to keep the 183 * ops from being freed. 184 */ 185 if (linker_no_more_classes == 1) 186 return (EPERM); 187 kobj_class_compile((kobj_class_t) lc); 188 ((kobj_class_t)lc)->refs++; /* XXX: kobj_mtx */ 189 TAILQ_INSERT_TAIL(&classes, lc, link); 190 return (0); 191 } 192 193 static void 194 linker_file_sysinit(linker_file_t lf) 195 { 196 struct sysinit **start, **stop, **sipp, **xipp, *save; 197 int last; 198 199 KLD_DPF(FILE, ("linker_file_sysinit: calling SYSINITs for %s\n", 200 lf->filename)); 201 202 sx_assert(&kld_sx, SA_XLOCKED); 203 204 if (linker_file_lookup_set(lf, "sysinit_set", &start, &stop, NULL) != 0) 205 return; 206 /* 207 * Perform a bubble sort of the system initialization objects by 208 * their subsystem (primary key) and order (secondary key). 209 * 210 * Since some things care about execution order, this is the operation 211 * which ensures continued function. 212 */ 213 for (sipp = start; sipp < stop; sipp++) { 214 for (xipp = sipp + 1; xipp < stop; xipp++) { 215 if ((*sipp)->subsystem < (*xipp)->subsystem || 216 ((*sipp)->subsystem == (*xipp)->subsystem && 217 (*sipp)->order <= (*xipp)->order)) 218 continue; /* skip */ 219 save = *sipp; 220 *sipp = *xipp; 221 *xipp = save; 222 } 223 } 224 225 /* 226 * Traverse the (now) ordered list of system initialization tasks. 227 * Perform each task, and continue on to the next task. 228 */ 229 last = SI_SUB_DUMMY; 230 sx_xunlock(&kld_sx); 231 mtx_lock(&Giant); 232 for (sipp = start; sipp < stop; sipp++) { 233 if ((*sipp)->subsystem == SI_SUB_DUMMY) 234 continue; /* skip dummy task(s) */ 235 236 if ((*sipp)->subsystem > last) 237 BOOTTRACE("%s: sysinit 0x%7x", lf->filename, 238 (*sipp)->subsystem); 239 240 /* Call function */ 241 (*((*sipp)->func)) ((*sipp)->udata); 242 last = (*sipp)->subsystem; 243 } 244 mtx_unlock(&Giant); 245 sx_xlock(&kld_sx); 246 } 247 248 static void 249 linker_file_sysuninit(linker_file_t lf) 250 { 251 struct sysinit **start, **stop, **sipp, **xipp, *save; 252 int last; 253 254 KLD_DPF(FILE, ("linker_file_sysuninit: calling SYSUNINITs for %s\n", 255 lf->filename)); 256 257 sx_assert(&kld_sx, SA_XLOCKED); 258 259 if (linker_file_lookup_set(lf, "sysuninit_set", &start, &stop, 260 NULL) != 0) 261 return; 262 263 /* 264 * Perform a reverse bubble sort of the system initialization objects 265 * by their subsystem (primary key) and order (secondary key). 266 * 267 * Since some things care about execution order, this is the operation 268 * which ensures continued function. 269 */ 270 for (sipp = start; sipp < stop; sipp++) { 271 for (xipp = sipp + 1; xipp < stop; xipp++) { 272 if ((*sipp)->subsystem > (*xipp)->subsystem || 273 ((*sipp)->subsystem == (*xipp)->subsystem && 274 (*sipp)->order >= (*xipp)->order)) 275 continue; /* skip */ 276 save = *sipp; 277 *sipp = *xipp; 278 *xipp = save; 279 } 280 } 281 282 /* 283 * Traverse the (now) ordered list of system initialization tasks. 284 * Perform each task, and continue on to the next task. 285 */ 286 sx_xunlock(&kld_sx); 287 mtx_lock(&Giant); 288 last = SI_SUB_DUMMY; 289 for (sipp = start; sipp < stop; sipp++) { 290 if ((*sipp)->subsystem == SI_SUB_DUMMY) 291 continue; /* skip dummy task(s) */ 292 293 if ((*sipp)->subsystem > last) 294 BOOTTRACE("%s: sysuninit 0x%7x", lf->filename, 295 (*sipp)->subsystem); 296 297 /* Call function */ 298 (*((*sipp)->func)) ((*sipp)->udata); 299 last = (*sipp)->subsystem; 300 } 301 mtx_unlock(&Giant); 302 sx_xlock(&kld_sx); 303 } 304 305 static void 306 linker_file_register_sysctls(linker_file_t lf, bool enable) 307 { 308 struct sysctl_oid **start, **stop, **oidp; 309 310 KLD_DPF(FILE, 311 ("linker_file_register_sysctls: registering SYSCTLs for %s\n", 312 lf->filename)); 313 314 sx_assert(&kld_sx, SA_XLOCKED); 315 316 if (linker_file_lookup_set(lf, "sysctl_set", &start, &stop, NULL) != 0) 317 return; 318 319 sx_xunlock(&kld_sx); 320 sysctl_wlock(); 321 for (oidp = start; oidp < stop; oidp++) { 322 if (enable) 323 sysctl_register_oid(*oidp); 324 else 325 sysctl_register_disabled_oid(*oidp); 326 } 327 sysctl_wunlock(); 328 sx_xlock(&kld_sx); 329 } 330 331 /* 332 * Invoke the LINKER_CTF_GET implementation for this file. Existing 333 * implementations will load CTF info from the filesystem upon the first call 334 * and cache it in the kernel thereafter. 335 */ 336 static void 337 linker_ctf_load_file(linker_file_t file) 338 { 339 linker_ctf_t lc; 340 int error; 341 342 error = linker_ctf_get(file, &lc); 343 if (error == 0) 344 return; 345 if (bootverbose) { 346 printf("failed to load CTF for %s: %d\n", file->filename, 347 error); 348 } 349 } 350 351 static void 352 linker_file_enable_sysctls(linker_file_t lf) 353 { 354 struct sysctl_oid **start, **stop, **oidp; 355 356 KLD_DPF(FILE, 357 ("linker_file_enable_sysctls: enable SYSCTLs for %s\n", 358 lf->filename)); 359 360 sx_assert(&kld_sx, SA_XLOCKED); 361 362 if (linker_file_lookup_set(lf, "sysctl_set", &start, &stop, NULL) != 0) 363 return; 364 365 sx_xunlock(&kld_sx); 366 sysctl_wlock(); 367 for (oidp = start; oidp < stop; oidp++) 368 sysctl_enable_oid(*oidp); 369 sysctl_wunlock(); 370 sx_xlock(&kld_sx); 371 } 372 373 static void 374 linker_file_unregister_sysctls(linker_file_t lf) 375 { 376 struct sysctl_oid **start, **stop, **oidp; 377 378 KLD_DPF(FILE, ("linker_file_unregister_sysctls: unregistering SYSCTLs" 379 " for %s\n", lf->filename)); 380 381 sx_assert(&kld_sx, SA_XLOCKED); 382 383 if (linker_file_lookup_set(lf, "sysctl_set", &start, &stop, NULL) != 0) 384 return; 385 386 sx_xunlock(&kld_sx); 387 sysctl_wlock(); 388 for (oidp = start; oidp < stop; oidp++) 389 sysctl_unregister_oid(*oidp); 390 sysctl_wunlock(); 391 sx_xlock(&kld_sx); 392 } 393 394 static int 395 linker_file_register_modules(linker_file_t lf) 396 { 397 struct mod_metadata **start, **stop, **mdp; 398 const moduledata_t *moddata; 399 int first_error, error; 400 401 KLD_DPF(FILE, ("linker_file_register_modules: registering modules" 402 " in %s\n", lf->filename)); 403 404 sx_assert(&kld_sx, SA_XLOCKED); 405 406 if (linker_file_lookup_set(lf, MDT_SETNAME, &start, &stop, NULL) != 0) { 407 /* 408 * This fallback should be unnecessary, but if we get booted 409 * from boot2 instead of loader and we are missing our 410 * metadata then we have to try the best we can. 411 */ 412 if (lf == linker_kernel_file) { 413 start = SET_BEGIN(modmetadata_set); 414 stop = SET_LIMIT(modmetadata_set); 415 } else 416 return (0); 417 } 418 first_error = 0; 419 for (mdp = start; mdp < stop; mdp++) { 420 if ((*mdp)->md_type != MDT_MODULE) 421 continue; 422 moddata = (*mdp)->md_data; 423 KLD_DPF(FILE, ("Registering module %s in %s\n", 424 moddata->name, lf->filename)); 425 error = module_register(moddata, lf); 426 if (error) { 427 printf("Module %s failed to register: %d\n", 428 moddata->name, error); 429 if (first_error == 0) 430 first_error = error; 431 } 432 } 433 return (first_error); 434 } 435 436 static void 437 linker_init_kernel_modules(void) 438 { 439 440 sx_xlock(&kld_sx); 441 linker_file_register_modules(linker_kernel_file); 442 sx_xunlock(&kld_sx); 443 } 444 445 SYSINIT(linker_kernel, SI_SUB_KLD, SI_ORDER_ANY, linker_init_kernel_modules, 446 NULL); 447 448 static int 449 linker_load_file(const char *filename, linker_file_t *result) 450 { 451 linker_class_t lc; 452 linker_file_t lf; 453 int foundfile, error, modules; 454 455 /* Refuse to load modules if securelevel raised */ 456 if (prison0.pr_securelevel > 0) 457 return (EPERM); 458 459 sx_assert(&kld_sx, SA_XLOCKED); 460 lf = linker_find_file_by_name(filename); 461 if (lf) { 462 KLD_DPF(FILE, ("linker_load_file: file %s is already loaded," 463 " incrementing refs\n", filename)); 464 *result = lf; 465 lf->refs++; 466 return (0); 467 } 468 foundfile = 0; 469 error = 0; 470 471 /* 472 * We do not need to protect (lock) classes here because there is 473 * no class registration past startup (SI_SUB_KLD, SI_ORDER_ANY) 474 * and there is no class deregistration mechanism at this time. 475 */ 476 TAILQ_FOREACH(lc, &classes, link) { 477 KLD_DPF(FILE, ("linker_load_file: trying to load %s\n", 478 filename)); 479 error = LINKER_LOAD_FILE(lc, filename, &lf); 480 /* 481 * If we got something other than ENOENT, then it exists but 482 * we cannot load it for some other reason. 483 */ 484 if (error != ENOENT) { 485 foundfile = 1; 486 if (error == EEXIST) 487 break; 488 } 489 if (lf) { 490 error = linker_file_register_modules(lf); 491 if (error == EEXIST) { 492 linker_file_unload(lf, LINKER_UNLOAD_FORCE); 493 return (error); 494 } 495 modules = !TAILQ_EMPTY(&lf->modules); 496 linker_file_register_sysctls(lf, false); 497 #ifdef VIMAGE 498 LINKER_PROPAGATE_VNETS(lf); 499 #endif 500 linker_file_sysinit(lf); 501 lf->flags |= LINKER_FILE_LINKED; 502 503 /* 504 * If all of the modules in this file failed 505 * to load, unload the file and return an 506 * error of ENOEXEC. 507 */ 508 if (modules && TAILQ_EMPTY(&lf->modules)) { 509 linker_file_unload(lf, LINKER_UNLOAD_FORCE); 510 return (ENOEXEC); 511 } 512 linker_file_enable_sysctls(lf); 513 514 /* 515 * Ask the linker to load CTF data for this file. 516 */ 517 linker_ctf_load_file(lf); 518 EVENTHANDLER_INVOKE(kld_load, lf); 519 *result = lf; 520 return (0); 521 } 522 } 523 /* 524 * Less than ideal, but tells the user whether it failed to load or 525 * the module was not found. 526 */ 527 if (foundfile) { 528 /* 529 * If the file type has not been recognized by the last try 530 * printout a message before to fail. 531 */ 532 if (error == ENOSYS) 533 printf("%s: %s - unsupported file type\n", 534 __func__, filename); 535 536 /* 537 * Format not recognized or otherwise unloadable. 538 * When loading a module that is statically built into 539 * the kernel EEXIST percolates back up as the return 540 * value. Preserve this so that apps like sysinstall 541 * can recognize this special case and not post bogus 542 * dialog boxes. 543 */ 544 if (error != EEXIST) 545 error = ENOEXEC; 546 } else 547 error = ENOENT; /* Nothing found */ 548 return (error); 549 } 550 551 int 552 linker_reference_module(const char *modname, struct mod_depend *verinfo, 553 linker_file_t *result) 554 { 555 modlist_t mod; 556 int error; 557 558 sx_xlock(&kld_sx); 559 if ((mod = modlist_lookup2(modname, verinfo)) != NULL) { 560 *result = mod->container; 561 (*result)->refs++; 562 sx_xunlock(&kld_sx); 563 return (0); 564 } 565 566 error = linker_load_module(NULL, modname, NULL, verinfo, result); 567 sx_xunlock(&kld_sx); 568 return (error); 569 } 570 571 int 572 linker_release_module(const char *modname, struct mod_depend *verinfo, 573 linker_file_t lf) 574 { 575 modlist_t mod; 576 int error; 577 578 sx_xlock(&kld_sx); 579 if (lf == NULL) { 580 KASSERT(modname != NULL, 581 ("linker_release_module: no file or name")); 582 mod = modlist_lookup2(modname, verinfo); 583 if (mod == NULL) { 584 sx_xunlock(&kld_sx); 585 return (ESRCH); 586 } 587 lf = mod->container; 588 } else 589 KASSERT(modname == NULL && verinfo == NULL, 590 ("linker_release_module: both file and name")); 591 error = linker_file_unload(lf, LINKER_UNLOAD_NORMAL); 592 sx_xunlock(&kld_sx); 593 return (error); 594 } 595 596 static linker_file_t 597 linker_find_file_by_name(const char *filename) 598 { 599 linker_file_t lf; 600 char *koname; 601 602 koname = malloc(strlen(filename) + 4, M_LINKER, M_WAITOK); 603 sprintf(koname, "%s.ko", filename); 604 605 sx_assert(&kld_sx, SA_XLOCKED); 606 TAILQ_FOREACH(lf, &linker_files, link) { 607 if (strcmp(lf->filename, koname) == 0) 608 break; 609 if (strcmp(lf->filename, filename) == 0) 610 break; 611 } 612 free(koname, M_LINKER); 613 return (lf); 614 } 615 616 static linker_file_t 617 linker_find_file_by_id(int fileid) 618 { 619 linker_file_t lf; 620 621 sx_assert(&kld_sx, SA_XLOCKED); 622 TAILQ_FOREACH(lf, &linker_files, link) 623 if (lf->id == fileid && lf->flags & LINKER_FILE_LINKED) 624 break; 625 return (lf); 626 } 627 628 int 629 linker_file_foreach(linker_predicate_t *predicate, void *context) 630 { 631 linker_file_t lf; 632 int retval = 0; 633 634 sx_xlock(&kld_sx); 635 TAILQ_FOREACH(lf, &linker_files, link) { 636 retval = predicate(lf, context); 637 if (retval != 0) 638 break; 639 } 640 sx_xunlock(&kld_sx); 641 return (retval); 642 } 643 644 linker_file_t 645 linker_make_file(const char *pathname, linker_class_t lc) 646 { 647 linker_file_t lf; 648 const char *filename; 649 650 if (!cold) 651 sx_assert(&kld_sx, SA_XLOCKED); 652 filename = linker_basename(pathname); 653 654 KLD_DPF(FILE, ("linker_make_file: new file, filename='%s' for pathname='%s'\n", filename, pathname)); 655 lf = (linker_file_t)kobj_create((kobj_class_t)lc, M_LINKER, M_WAITOK); 656 if (lf == NULL) 657 return (NULL); 658 lf->ctors_addr = 0; 659 lf->ctors_size = 0; 660 lf->dtors_addr = 0; 661 lf->dtors_size = 0; 662 lf->refs = 1; 663 lf->userrefs = 0; 664 lf->flags = 0; 665 lf->filename = strdup(filename, M_LINKER); 666 lf->pathname = strdup(pathname, M_LINKER); 667 LINKER_GET_NEXT_FILE_ID(lf->id); 668 lf->ndeps = 0; 669 lf->deps = NULL; 670 lf->loadcnt = ++loadcnt; 671 #ifdef __arm__ 672 lf->exidx_addr = 0; 673 lf->exidx_size = 0; 674 #endif 675 STAILQ_INIT(&lf->common); 676 TAILQ_INIT(&lf->modules); 677 TAILQ_INSERT_TAIL(&linker_files, lf, link); 678 return (lf); 679 } 680 681 int 682 linker_file_unload(linker_file_t file, int flags) 683 { 684 module_t mod, next; 685 modlist_t ml, nextml; 686 struct common_symbol *cp; 687 int error, i; 688 689 /* Refuse to unload modules if securelevel raised. */ 690 if (prison0.pr_securelevel > 0) 691 return (EPERM); 692 693 sx_assert(&kld_sx, SA_XLOCKED); 694 KLD_DPF(FILE, ("linker_file_unload: lf->refs=%d\n", file->refs)); 695 696 /* Easy case of just dropping a reference. */ 697 if (file->refs > 1) { 698 file->refs--; 699 return (0); 700 } 701 702 /* Give eventhandlers a chance to prevent the unload. */ 703 error = 0; 704 EVENTHANDLER_INVOKE(kld_unload_try, file, &error); 705 if (error != 0) 706 return (EBUSY); 707 708 KLD_DPF(FILE, ("linker_file_unload: file is unloading," 709 " informing modules\n")); 710 711 /* 712 * Quiesce all the modules to give them a chance to veto the unload. 713 */ 714 MOD_SLOCK; 715 for (mod = TAILQ_FIRST(&file->modules); mod; 716 mod = module_getfnext(mod)) { 717 error = module_quiesce(mod); 718 if (error != 0 && flags != LINKER_UNLOAD_FORCE) { 719 KLD_DPF(FILE, ("linker_file_unload: module %s" 720 " vetoed unload\n", module_getname(mod))); 721 /* 722 * XXX: Do we need to tell all the quiesced modules 723 * that they can resume work now via a new module 724 * event? 725 */ 726 MOD_SUNLOCK; 727 return (error); 728 } 729 } 730 MOD_SUNLOCK; 731 732 /* 733 * Inform any modules associated with this file that they are 734 * being unloaded. 735 */ 736 MOD_XLOCK; 737 for (mod = TAILQ_FIRST(&file->modules); mod; mod = next) { 738 next = module_getfnext(mod); 739 MOD_XUNLOCK; 740 741 /* 742 * Give the module a chance to veto the unload. 743 */ 744 if ((error = module_unload(mod)) != 0) { 745 #ifdef KLD_DEBUG 746 MOD_SLOCK; 747 KLD_DPF(FILE, ("linker_file_unload: module %s" 748 " failed unload\n", module_getname(mod))); 749 MOD_SUNLOCK; 750 #endif 751 return (error); 752 } 753 MOD_XLOCK; 754 module_release(mod); 755 } 756 MOD_XUNLOCK; 757 758 TAILQ_FOREACH_SAFE(ml, &found_modules, link, nextml) { 759 if (ml->container == file) { 760 TAILQ_REMOVE(&found_modules, ml, link); 761 free(ml, M_LINKER); 762 } 763 } 764 765 /* 766 * Don't try to run SYSUNINITs if we are unloaded due to a 767 * link error. 768 */ 769 if (file->flags & LINKER_FILE_LINKED) { 770 file->flags &= ~LINKER_FILE_LINKED; 771 linker_file_unregister_sysctls(file); 772 linker_file_sysuninit(file); 773 } 774 TAILQ_REMOVE(&linker_files, file, link); 775 776 if (file->deps) { 777 for (i = 0; i < file->ndeps; i++) 778 linker_file_unload(file->deps[i], flags); 779 free(file->deps, M_LINKER); 780 file->deps = NULL; 781 } 782 while ((cp = STAILQ_FIRST(&file->common)) != NULL) { 783 STAILQ_REMOVE_HEAD(&file->common, link); 784 free(cp, M_LINKER); 785 } 786 787 LINKER_UNLOAD(file); 788 789 EVENTHANDLER_INVOKE(kld_unload, file->filename, file->address, 790 file->size); 791 792 if (file->filename) { 793 free(file->filename, M_LINKER); 794 file->filename = NULL; 795 } 796 if (file->pathname) { 797 free(file->pathname, M_LINKER); 798 file->pathname = NULL; 799 } 800 kobj_delete((kobj_t) file, M_LINKER); 801 return (0); 802 } 803 804 int 805 linker_ctf_get(linker_file_t file, linker_ctf_t *lc) 806 { 807 return (LINKER_CTF_GET(file, lc)); 808 } 809 810 int 811 linker_ctf_lookup_typename_ddb(linker_ctf_t *lc, const char *typename) 812 { 813 #ifdef DDB 814 linker_file_t lf; 815 816 TAILQ_FOREACH (lf, &linker_files, link){ 817 if (LINKER_CTF_LOOKUP_TYPENAME(lf, lc, typename) == 0) 818 return (0); 819 } 820 #endif 821 return (ENOENT); 822 } 823 824 int 825 linker_ctf_lookup_sym_ddb(const char *symname, c_linker_sym_t *sym, 826 linker_ctf_t *lc) 827 { 828 #ifdef DDB 829 linker_file_t lf; 830 831 TAILQ_FOREACH (lf, &linker_files, link){ 832 if (LINKER_LOOKUP_DEBUG_SYMBOL_CTF(lf, symname, sym, lc) == 0) 833 return (0); 834 } 835 #endif 836 return (ENOENT); 837 } 838 839 static int 840 linker_file_add_dependency(linker_file_t file, linker_file_t dep) 841 { 842 linker_file_t *newdeps; 843 844 sx_assert(&kld_sx, SA_XLOCKED); 845 file->deps = realloc(file->deps, (file->ndeps + 1) * sizeof(*newdeps), 846 M_LINKER, M_WAITOK | M_ZERO); 847 file->deps[file->ndeps] = dep; 848 file->ndeps++; 849 KLD_DPF(FILE, ("linker_file_add_dependency:" 850 " adding %s as dependency for %s\n", 851 dep->filename, file->filename)); 852 return (0); 853 } 854 855 /* 856 * Locate a linker set and its contents. This is a helper function to avoid 857 * linker_if.h exposure elsewhere. Note: firstp and lastp are really void **. 858 * This function is used in this file so we can avoid having lots of (void **) 859 * casts. 860 */ 861 int 862 linker_file_lookup_set(linker_file_t file, const char *name, 863 void *firstp, void *lastp, int *countp) 864 { 865 866 sx_assert(&kld_sx, SA_LOCKED); 867 return (LINKER_LOOKUP_SET(file, name, firstp, lastp, countp)); 868 } 869 870 /* 871 * List all functions in a file. 872 */ 873 int 874 linker_file_function_listall(linker_file_t lf, 875 linker_function_nameval_callback_t callback_func, void *arg) 876 { 877 return (LINKER_EACH_FUNCTION_NAMEVAL(lf, callback_func, arg)); 878 } 879 880 caddr_t 881 linker_file_lookup_symbol(linker_file_t file, const char *name, int deps) 882 { 883 caddr_t sym; 884 int locked; 885 886 locked = sx_xlocked(&kld_sx); 887 if (!locked) 888 sx_xlock(&kld_sx); 889 sym = linker_file_lookup_symbol_internal(file, name, deps); 890 if (!locked) 891 sx_xunlock(&kld_sx); 892 return (sym); 893 } 894 895 static caddr_t 896 linker_file_lookup_symbol_internal(linker_file_t file, const char *name, 897 int deps) 898 { 899 c_linker_sym_t sym; 900 linker_symval_t symval; 901 caddr_t address; 902 size_t common_size = 0; 903 int i; 904 905 sx_assert(&kld_sx, SA_XLOCKED); 906 KLD_DPF(SYM, ("linker_file_lookup_symbol: file=%p, name=%s, deps=%d\n", 907 file, name, deps)); 908 909 if (LINKER_LOOKUP_SYMBOL(file, name, &sym) == 0) { 910 LINKER_SYMBOL_VALUES(file, sym, &symval); 911 if (symval.value == 0) 912 /* 913 * For commons, first look them up in the 914 * dependencies and only allocate space if not found 915 * there. 916 */ 917 common_size = symval.size; 918 else { 919 KLD_DPF(SYM, ("linker_file_lookup_symbol: symbol" 920 ".value=%p\n", symval.value)); 921 return (symval.value); 922 } 923 } 924 if (deps) { 925 for (i = 0; i < file->ndeps; i++) { 926 address = linker_file_lookup_symbol_internal( 927 file->deps[i], name, 0); 928 if (address) { 929 KLD_DPF(SYM, ("linker_file_lookup_symbol:" 930 " deps value=%p\n", address)); 931 return (address); 932 } 933 } 934 } 935 if (common_size > 0) { 936 /* 937 * This is a common symbol which was not found in the 938 * dependencies. We maintain a simple common symbol table in 939 * the file object. 940 */ 941 struct common_symbol *cp; 942 943 STAILQ_FOREACH(cp, &file->common, link) { 944 if (strcmp(cp->name, name) == 0) { 945 KLD_DPF(SYM, ("linker_file_lookup_symbol:" 946 " old common value=%p\n", cp->address)); 947 return (cp->address); 948 } 949 } 950 /* 951 * Round the symbol size up to align. 952 */ 953 common_size = (common_size + sizeof(int) - 1) & -sizeof(int); 954 cp = malloc(sizeof(struct common_symbol) 955 + common_size + strlen(name) + 1, M_LINKER, 956 M_WAITOK | M_ZERO); 957 cp->address = (caddr_t)(cp + 1); 958 cp->name = cp->address + common_size; 959 strcpy(cp->name, name); 960 bzero(cp->address, common_size); 961 STAILQ_INSERT_TAIL(&file->common, cp, link); 962 963 KLD_DPF(SYM, ("linker_file_lookup_symbol: new common" 964 " value=%p\n", cp->address)); 965 return (cp->address); 966 } 967 KLD_DPF(SYM, ("linker_file_lookup_symbol: fail\n")); 968 return (0); 969 } 970 971 /* 972 * Both DDB and stack(9) rely on the kernel linker to provide forward and 973 * backward lookup of symbols. However, DDB and sometimes stack(9) need to 974 * do this in a lockfree manner. We provide a set of internal helper 975 * routines to perform these operations without locks, and then wrappers that 976 * optionally lock. 977 * 978 * linker_debug_lookup() is ifdef DDB as currently it's only used by DDB. 979 */ 980 #ifdef DDB 981 static int 982 linker_debug_lookup(const char *symstr, c_linker_sym_t *sym) 983 { 984 linker_file_t lf; 985 986 TAILQ_FOREACH(lf, &linker_files, link) { 987 if (LINKER_LOOKUP_DEBUG_SYMBOL(lf, symstr, sym) == 0) 988 return (0); 989 } 990 return (ENOENT); 991 } 992 #endif 993 994 static int 995 linker_debug_search_symbol(caddr_t value, c_linker_sym_t *sym, long *diffp) 996 { 997 linker_file_t lf; 998 c_linker_sym_t best, es; 999 u_long diff, bestdiff, off; 1000 1001 best = 0; 1002 off = (uintptr_t)value; 1003 bestdiff = off; 1004 TAILQ_FOREACH(lf, &linker_files, link) { 1005 if (LINKER_SEARCH_SYMBOL(lf, value, &es, &diff) != 0) 1006 continue; 1007 if (es != 0 && diff < bestdiff) { 1008 best = es; 1009 bestdiff = diff; 1010 } 1011 if (bestdiff == 0) 1012 break; 1013 } 1014 if (best) { 1015 *sym = best; 1016 *diffp = bestdiff; 1017 return (0); 1018 } else { 1019 *sym = 0; 1020 *diffp = off; 1021 return (ENOENT); 1022 } 1023 } 1024 1025 static int 1026 linker_debug_symbol_values(c_linker_sym_t sym, linker_symval_t *symval) 1027 { 1028 linker_file_t lf; 1029 1030 TAILQ_FOREACH(lf, &linker_files, link) { 1031 if (LINKER_DEBUG_SYMBOL_VALUES(lf, sym, symval) == 0) 1032 return (0); 1033 } 1034 return (ENOENT); 1035 } 1036 1037 static int 1038 linker_debug_search_symbol_name(caddr_t value, char *buf, u_int buflen, 1039 long *offset) 1040 { 1041 linker_symval_t symval; 1042 c_linker_sym_t sym; 1043 int error; 1044 1045 *offset = 0; 1046 error = linker_debug_search_symbol(value, &sym, offset); 1047 if (error) 1048 return (error); 1049 error = linker_debug_symbol_values(sym, &symval); 1050 if (error) 1051 return (error); 1052 strlcpy(buf, symval.name, buflen); 1053 return (0); 1054 } 1055 1056 /* 1057 * DDB Helpers. DDB has to look across multiple files with their own symbol 1058 * tables and string tables. 1059 * 1060 * Note that we do not obey list locking protocols here. We really don't need 1061 * DDB to hang because somebody's got the lock held. We'll take the chance 1062 * that the files list is inconsistent instead. 1063 */ 1064 #ifdef DDB 1065 int 1066 linker_ddb_lookup(const char *symstr, c_linker_sym_t *sym) 1067 { 1068 1069 return (linker_debug_lookup(symstr, sym)); 1070 } 1071 #endif 1072 1073 int 1074 linker_ddb_search_symbol(caddr_t value, c_linker_sym_t *sym, long *diffp) 1075 { 1076 1077 return (linker_debug_search_symbol(value, sym, diffp)); 1078 } 1079 1080 int 1081 linker_ddb_symbol_values(c_linker_sym_t sym, linker_symval_t *symval) 1082 { 1083 1084 return (linker_debug_symbol_values(sym, symval)); 1085 } 1086 1087 int 1088 linker_ddb_search_symbol_name(caddr_t value, char *buf, u_int buflen, 1089 long *offset) 1090 { 1091 1092 return (linker_debug_search_symbol_name(value, buf, buflen, offset)); 1093 } 1094 1095 /* 1096 * stack(9) helper for non-debugging environemnts. Unlike DDB helpers, we do 1097 * obey locking protocols, and offer a significantly less complex interface. 1098 */ 1099 int 1100 linker_search_symbol_name_flags(caddr_t value, char *buf, u_int buflen, 1101 long *offset, int flags) 1102 { 1103 int error; 1104 1105 KASSERT((flags & (M_NOWAIT | M_WAITOK)) != 0 && 1106 (flags & (M_NOWAIT | M_WAITOK)) != (M_NOWAIT | M_WAITOK), 1107 ("%s: bad flags: 0x%x", __func__, flags)); 1108 1109 if (flags & M_NOWAIT) { 1110 if (!sx_try_slock(&kld_sx)) 1111 return (EWOULDBLOCK); 1112 } else 1113 sx_slock(&kld_sx); 1114 1115 error = linker_debug_search_symbol_name(value, buf, buflen, offset); 1116 sx_sunlock(&kld_sx); 1117 return (error); 1118 } 1119 1120 int 1121 linker_search_symbol_name(caddr_t value, char *buf, u_int buflen, 1122 long *offset) 1123 { 1124 1125 return (linker_search_symbol_name_flags(value, buf, buflen, offset, 1126 M_WAITOK)); 1127 } 1128 1129 int 1130 linker_kldload_busy(int flags) 1131 { 1132 int error; 1133 1134 MPASS((flags & ~(LINKER_UB_UNLOCK | LINKER_UB_LOCKED | 1135 LINKER_UB_PCATCH)) == 0); 1136 if ((flags & LINKER_UB_LOCKED) != 0) 1137 sx_assert(&kld_sx, SA_XLOCKED); 1138 1139 if ((flags & LINKER_UB_LOCKED) == 0) 1140 sx_xlock(&kld_sx); 1141 while (kld_busy > 0) { 1142 if (kld_busy_owner == curthread) 1143 break; 1144 error = sx_sleep(&kld_busy, &kld_sx, 1145 (flags & LINKER_UB_PCATCH) != 0 ? PCATCH : 0, 1146 "kldbusy", 0); 1147 if (error != 0) { 1148 if ((flags & LINKER_UB_UNLOCK) != 0) 1149 sx_xunlock(&kld_sx); 1150 return (error); 1151 } 1152 } 1153 kld_busy++; 1154 kld_busy_owner = curthread; 1155 if ((flags & LINKER_UB_UNLOCK) != 0) 1156 sx_xunlock(&kld_sx); 1157 return (0); 1158 } 1159 1160 void 1161 linker_kldload_unbusy(int flags) 1162 { 1163 MPASS((flags & ~LINKER_UB_LOCKED) == 0); 1164 if ((flags & LINKER_UB_LOCKED) != 0) 1165 sx_assert(&kld_sx, SA_XLOCKED); 1166 1167 if ((flags & LINKER_UB_LOCKED) == 0) 1168 sx_xlock(&kld_sx); 1169 MPASS(kld_busy > 0); 1170 if (kld_busy_owner != curthread) 1171 panic("linker_kldload_unbusy done by not owning thread %p", 1172 kld_busy_owner); 1173 kld_busy--; 1174 if (kld_busy == 0) { 1175 kld_busy_owner = NULL; 1176 wakeup(&kld_busy); 1177 } 1178 sx_xunlock(&kld_sx); 1179 } 1180 1181 /* 1182 * Syscalls. 1183 */ 1184 int 1185 kern_kldload(struct thread *td, const char *file, int *fileid) 1186 { 1187 const char *kldname, *modname; 1188 linker_file_t lf; 1189 int error; 1190 1191 if ((error = securelevel_gt(td->td_ucred, 0)) != 0) 1192 return (error); 1193 1194 if ((error = priv_check(td, PRIV_KLD_LOAD)) != 0) 1195 return (error); 1196 1197 /* 1198 * If file does not contain a qualified name or any dot in it 1199 * (kldname.ko, or kldname.ver.ko) treat it as an interface 1200 * name. 1201 */ 1202 if (strchr(file, '/') || strchr(file, '.')) { 1203 kldname = file; 1204 modname = NULL; 1205 } else { 1206 kldname = NULL; 1207 modname = file; 1208 } 1209 1210 error = linker_kldload_busy(LINKER_UB_PCATCH); 1211 if (error != 0) { 1212 sx_xunlock(&kld_sx); 1213 return (error); 1214 } 1215 1216 /* 1217 * It is possible that kldloaded module will attach a new ifnet, 1218 * so vnet context must be set when this ocurs. 1219 */ 1220 CURVNET_SET(TD_TO_VNET(td)); 1221 1222 error = linker_load_module(kldname, modname, NULL, NULL, &lf); 1223 CURVNET_RESTORE(); 1224 1225 if (error == 0) { 1226 lf->userrefs++; 1227 if (fileid != NULL) 1228 *fileid = lf->id; 1229 } 1230 linker_kldload_unbusy(LINKER_UB_LOCKED); 1231 return (error); 1232 } 1233 1234 int 1235 sys_kldload(struct thread *td, struct kldload_args *uap) 1236 { 1237 char *pathname = NULL; 1238 int error, fileid; 1239 1240 td->td_retval[0] = -1; 1241 1242 pathname = malloc(MAXPATHLEN, M_TEMP, M_WAITOK); 1243 error = copyinstr(uap->file, pathname, MAXPATHLEN, NULL); 1244 if (error == 0) { 1245 error = kern_kldload(td, pathname, &fileid); 1246 if (error == 0) 1247 td->td_retval[0] = fileid; 1248 } 1249 free(pathname, M_TEMP); 1250 return (error); 1251 } 1252 1253 int 1254 kern_kldunload(struct thread *td, int fileid, int flags) 1255 { 1256 linker_file_t lf; 1257 int error = 0; 1258 1259 if ((error = securelevel_gt(td->td_ucred, 0)) != 0) 1260 return (error); 1261 1262 if ((error = priv_check(td, PRIV_KLD_UNLOAD)) != 0) 1263 return (error); 1264 1265 error = linker_kldload_busy(LINKER_UB_PCATCH); 1266 if (error != 0) { 1267 sx_xunlock(&kld_sx); 1268 return (error); 1269 } 1270 1271 CURVNET_SET(TD_TO_VNET(td)); 1272 lf = linker_find_file_by_id(fileid); 1273 if (lf) { 1274 KLD_DPF(FILE, ("kldunload: lf->userrefs=%d\n", lf->userrefs)); 1275 1276 if (lf->userrefs == 0) { 1277 /* 1278 * XXX: maybe LINKER_UNLOAD_FORCE should override ? 1279 */ 1280 printf("kldunload: attempt to unload file that was" 1281 " loaded by the kernel\n"); 1282 error = EBUSY; 1283 } else { 1284 lf->userrefs--; 1285 error = linker_file_unload(lf, flags); 1286 if (error) 1287 lf->userrefs++; 1288 } 1289 } else 1290 error = ENOENT; 1291 CURVNET_RESTORE(); 1292 linker_kldload_unbusy(LINKER_UB_LOCKED); 1293 return (error); 1294 } 1295 1296 int 1297 sys_kldunload(struct thread *td, struct kldunload_args *uap) 1298 { 1299 1300 return (kern_kldunload(td, uap->fileid, LINKER_UNLOAD_NORMAL)); 1301 } 1302 1303 int 1304 sys_kldunloadf(struct thread *td, struct kldunloadf_args *uap) 1305 { 1306 1307 if (uap->flags != LINKER_UNLOAD_NORMAL && 1308 uap->flags != LINKER_UNLOAD_FORCE) 1309 return (EINVAL); 1310 return (kern_kldunload(td, uap->fileid, uap->flags)); 1311 } 1312 1313 int 1314 sys_kldfind(struct thread *td, struct kldfind_args *uap) 1315 { 1316 char *pathname; 1317 const char *filename; 1318 linker_file_t lf; 1319 int error; 1320 1321 #ifdef MAC 1322 error = mac_kld_check_stat(td->td_ucred); 1323 if (error) 1324 return (error); 1325 #endif 1326 1327 td->td_retval[0] = -1; 1328 1329 pathname = malloc(MAXPATHLEN, M_TEMP, M_WAITOK); 1330 if ((error = copyinstr(uap->file, pathname, MAXPATHLEN, NULL)) != 0) 1331 goto out; 1332 1333 filename = linker_basename(pathname); 1334 sx_xlock(&kld_sx); 1335 lf = linker_find_file_by_name(filename); 1336 if (lf) 1337 td->td_retval[0] = lf->id; 1338 else 1339 error = ENOENT; 1340 sx_xunlock(&kld_sx); 1341 out: 1342 free(pathname, M_TEMP); 1343 return (error); 1344 } 1345 1346 int 1347 sys_kldnext(struct thread *td, struct kldnext_args *uap) 1348 { 1349 linker_file_t lf; 1350 int error = 0; 1351 1352 #ifdef MAC 1353 error = mac_kld_check_stat(td->td_ucred); 1354 if (error) 1355 return (error); 1356 #endif 1357 1358 sx_xlock(&kld_sx); 1359 if (uap->fileid == 0) 1360 lf = TAILQ_FIRST(&linker_files); 1361 else { 1362 lf = linker_find_file_by_id(uap->fileid); 1363 if (lf == NULL) { 1364 error = ENOENT; 1365 goto out; 1366 } 1367 lf = TAILQ_NEXT(lf, link); 1368 } 1369 1370 /* Skip partially loaded files. */ 1371 while (lf != NULL && !(lf->flags & LINKER_FILE_LINKED)) 1372 lf = TAILQ_NEXT(lf, link); 1373 1374 if (lf) 1375 td->td_retval[0] = lf->id; 1376 else 1377 td->td_retval[0] = 0; 1378 out: 1379 sx_xunlock(&kld_sx); 1380 return (error); 1381 } 1382 1383 int 1384 sys_kldstat(struct thread *td, struct kldstat_args *uap) 1385 { 1386 struct kld_file_stat *stat; 1387 int error, version; 1388 1389 /* 1390 * Check the version of the user's structure. 1391 */ 1392 if ((error = copyin(&uap->stat->version, &version, sizeof(version))) 1393 != 0) 1394 return (error); 1395 if (version != sizeof(struct kld_file_stat_1) && 1396 version != sizeof(struct kld_file_stat)) 1397 return (EINVAL); 1398 1399 stat = malloc(sizeof(*stat), M_TEMP, M_WAITOK | M_ZERO); 1400 error = kern_kldstat(td, uap->fileid, stat); 1401 if (error == 0) 1402 error = copyout(stat, uap->stat, version); 1403 free(stat, M_TEMP); 1404 return (error); 1405 } 1406 1407 int 1408 kern_kldstat(struct thread *td, int fileid, struct kld_file_stat *stat) 1409 { 1410 linker_file_t lf; 1411 int namelen; 1412 #ifdef MAC 1413 int error; 1414 1415 error = mac_kld_check_stat(td->td_ucred); 1416 if (error) 1417 return (error); 1418 #endif 1419 1420 sx_xlock(&kld_sx); 1421 lf = linker_find_file_by_id(fileid); 1422 if (lf == NULL) { 1423 sx_xunlock(&kld_sx); 1424 return (ENOENT); 1425 } 1426 1427 /* Version 1 fields: */ 1428 namelen = strlen(lf->filename) + 1; 1429 if (namelen > sizeof(stat->name)) 1430 namelen = sizeof(stat->name); 1431 bcopy(lf->filename, &stat->name[0], namelen); 1432 stat->refs = lf->refs; 1433 stat->id = lf->id; 1434 stat->address = lf->address; 1435 stat->size = lf->size; 1436 /* Version 2 fields: */ 1437 namelen = strlen(lf->pathname) + 1; 1438 if (namelen > sizeof(stat->pathname)) 1439 namelen = sizeof(stat->pathname); 1440 bcopy(lf->pathname, &stat->pathname[0], namelen); 1441 sx_xunlock(&kld_sx); 1442 1443 td->td_retval[0] = 0; 1444 return (0); 1445 } 1446 1447 #ifdef DDB 1448 DB_COMMAND_FLAGS(kldstat, db_kldstat, DB_CMD_MEMSAFE) 1449 { 1450 linker_file_t lf; 1451 1452 #define POINTER_WIDTH ((int)(sizeof(void *) * 2 + 2)) 1453 db_printf("Id Refs Address%*c Size Name\n", POINTER_WIDTH - 7, ' '); 1454 #undef POINTER_WIDTH 1455 TAILQ_FOREACH(lf, &linker_files, link) { 1456 if (db_pager_quit) 1457 return; 1458 db_printf("%2d %4d %p %-8zx %s\n", lf->id, lf->refs, 1459 lf->address, lf->size, lf->filename); 1460 } 1461 } 1462 #endif /* DDB */ 1463 1464 int 1465 sys_kldfirstmod(struct thread *td, struct kldfirstmod_args *uap) 1466 { 1467 linker_file_t lf; 1468 module_t mp; 1469 int error = 0; 1470 1471 #ifdef MAC 1472 error = mac_kld_check_stat(td->td_ucred); 1473 if (error) 1474 return (error); 1475 #endif 1476 1477 sx_xlock(&kld_sx); 1478 lf = linker_find_file_by_id(uap->fileid); 1479 if (lf) { 1480 MOD_SLOCK; 1481 mp = TAILQ_FIRST(&lf->modules); 1482 if (mp != NULL) 1483 td->td_retval[0] = module_getid(mp); 1484 else 1485 td->td_retval[0] = 0; 1486 MOD_SUNLOCK; 1487 } else 1488 error = ENOENT; 1489 sx_xunlock(&kld_sx); 1490 return (error); 1491 } 1492 1493 int 1494 sys_kldsym(struct thread *td, struct kldsym_args *uap) 1495 { 1496 char *symstr = NULL; 1497 c_linker_sym_t sym; 1498 linker_symval_t symval; 1499 linker_file_t lf; 1500 struct kld_sym_lookup lookup; 1501 int error = 0; 1502 1503 #ifdef MAC 1504 error = mac_kld_check_stat(td->td_ucred); 1505 if (error) 1506 return (error); 1507 #endif 1508 1509 if ((error = copyin(uap->data, &lookup, sizeof(lookup))) != 0) 1510 return (error); 1511 if (lookup.version != sizeof(lookup) || 1512 uap->cmd != KLDSYM_LOOKUP) 1513 return (EINVAL); 1514 symstr = malloc(MAXPATHLEN, M_TEMP, M_WAITOK); 1515 if ((error = copyinstr(lookup.symname, symstr, MAXPATHLEN, NULL)) != 0) 1516 goto out; 1517 sx_xlock(&kld_sx); 1518 if (uap->fileid != 0) { 1519 lf = linker_find_file_by_id(uap->fileid); 1520 if (lf == NULL) 1521 error = ENOENT; 1522 else if (LINKER_LOOKUP_SYMBOL(lf, symstr, &sym) == 0 && 1523 LINKER_SYMBOL_VALUES(lf, sym, &symval) == 0) { 1524 lookup.symvalue = (uintptr_t) symval.value; 1525 lookup.symsize = symval.size; 1526 error = copyout(&lookup, uap->data, sizeof(lookup)); 1527 } else 1528 error = ENOENT; 1529 } else { 1530 TAILQ_FOREACH(lf, &linker_files, link) { 1531 if (LINKER_LOOKUP_SYMBOL(lf, symstr, &sym) == 0 && 1532 LINKER_SYMBOL_VALUES(lf, sym, &symval) == 0) { 1533 lookup.symvalue = (uintptr_t)symval.value; 1534 lookup.symsize = symval.size; 1535 error = copyout(&lookup, uap->data, 1536 sizeof(lookup)); 1537 break; 1538 } 1539 } 1540 if (lf == NULL) 1541 error = ENOENT; 1542 } 1543 sx_xunlock(&kld_sx); 1544 out: 1545 free(symstr, M_TEMP); 1546 return (error); 1547 } 1548 1549 /* 1550 * Preloaded module support 1551 */ 1552 1553 static modlist_t 1554 modlist_lookup(const char *name, int ver) 1555 { 1556 modlist_t mod; 1557 1558 TAILQ_FOREACH(mod, &found_modules, link) { 1559 if (strcmp(mod->name, name) == 0 && 1560 (ver == 0 || mod->version == ver)) 1561 return (mod); 1562 } 1563 return (NULL); 1564 } 1565 1566 static modlist_t 1567 modlist_lookup2(const char *name, const struct mod_depend *verinfo) 1568 { 1569 modlist_t mod, bestmod; 1570 int ver; 1571 1572 if (verinfo == NULL) 1573 return (modlist_lookup(name, 0)); 1574 bestmod = NULL; 1575 TAILQ_FOREACH(mod, &found_modules, link) { 1576 if (strcmp(mod->name, name) != 0) 1577 continue; 1578 ver = mod->version; 1579 if (ver == verinfo->md_ver_preferred) 1580 return (mod); 1581 if (ver >= verinfo->md_ver_minimum && 1582 ver <= verinfo->md_ver_maximum && 1583 (bestmod == NULL || ver > bestmod->version)) 1584 bestmod = mod; 1585 } 1586 return (bestmod); 1587 } 1588 1589 static modlist_t 1590 modlist_newmodule(const char *modname, int version, linker_file_t container) 1591 { 1592 modlist_t mod; 1593 1594 mod = malloc(sizeof(struct modlist), M_LINKER, M_NOWAIT | M_ZERO); 1595 if (mod == NULL) 1596 panic("no memory for module list"); 1597 mod->container = container; 1598 mod->name = modname; 1599 mod->version = version; 1600 TAILQ_INSERT_TAIL(&found_modules, mod, link); 1601 return (mod); 1602 } 1603 1604 static void 1605 linker_addmodules(linker_file_t lf, struct mod_metadata **start, 1606 struct mod_metadata **stop, int preload) 1607 { 1608 struct mod_metadata *mp, **mdp; 1609 const char *modname; 1610 int ver; 1611 1612 for (mdp = start; mdp < stop; mdp++) { 1613 mp = *mdp; 1614 if (mp->md_type != MDT_VERSION) 1615 continue; 1616 modname = mp->md_cval; 1617 ver = ((const struct mod_version *)mp->md_data)->mv_version; 1618 if (modlist_lookup(modname, ver) != NULL) { 1619 printf("module %s already present!\n", modname); 1620 /* XXX what can we do? this is a build error. :-( */ 1621 continue; 1622 } 1623 modlist_newmodule(modname, ver, lf); 1624 } 1625 } 1626 1627 static void 1628 linker_preload(void *arg) 1629 { 1630 caddr_t modptr; 1631 const char *modname, *nmodname; 1632 char *modtype; 1633 linker_file_t lf, nlf; 1634 linker_class_t lc; 1635 int error; 1636 linker_file_list_t loaded_files; 1637 linker_file_list_t depended_files; 1638 struct mod_metadata *mp, *nmp; 1639 struct mod_metadata **start, **stop, **mdp, **nmdp; 1640 const struct mod_depend *verinfo; 1641 int nver; 1642 int resolves; 1643 modlist_t mod; 1644 struct sysinit **si_start, **si_stop; 1645 1646 TAILQ_INIT(&loaded_files); 1647 TAILQ_INIT(&depended_files); 1648 TAILQ_INIT(&found_modules); 1649 error = 0; 1650 1651 modptr = NULL; 1652 sx_xlock(&kld_sx); 1653 while ((modptr = preload_search_next_name(modptr)) != NULL) { 1654 modname = (char *)preload_search_info(modptr, MODINFO_NAME); 1655 modtype = (char *)preload_search_info(modptr, MODINFO_TYPE); 1656 if (modname == NULL) { 1657 printf("Preloaded module at %p does not have a" 1658 " name!\n", modptr); 1659 continue; 1660 } 1661 if (modtype == NULL) { 1662 printf("Preloaded module at %p does not have a type!\n", 1663 modptr); 1664 continue; 1665 } 1666 if (bootverbose) 1667 printf("Preloaded %s \"%s\" at %p.\n", modtype, modname, 1668 modptr); 1669 lf = NULL; 1670 TAILQ_FOREACH(lc, &classes, link) { 1671 error = LINKER_LINK_PRELOAD(lc, modname, &lf); 1672 if (!error) 1673 break; 1674 lf = NULL; 1675 } 1676 if (lf) 1677 TAILQ_INSERT_TAIL(&loaded_files, lf, loaded); 1678 } 1679 1680 /* 1681 * First get a list of stuff in the kernel. 1682 */ 1683 if (linker_file_lookup_set(linker_kernel_file, MDT_SETNAME, &start, 1684 &stop, NULL) == 0) 1685 linker_addmodules(linker_kernel_file, start, stop, 1); 1686 1687 /* 1688 * This is a once-off kinky bubble sort to resolve relocation 1689 * dependency requirements. 1690 */ 1691 restart: 1692 TAILQ_FOREACH(lf, &loaded_files, loaded) { 1693 error = linker_file_lookup_set(lf, MDT_SETNAME, &start, 1694 &stop, NULL); 1695 /* 1696 * First, look to see if we would successfully link with this 1697 * stuff. 1698 */ 1699 resolves = 1; /* unless we know otherwise */ 1700 if (!error) { 1701 for (mdp = start; mdp < stop; mdp++) { 1702 mp = *mdp; 1703 if (mp->md_type != MDT_DEPEND) 1704 continue; 1705 modname = mp->md_cval; 1706 verinfo = mp->md_data; 1707 for (nmdp = start; nmdp < stop; nmdp++) { 1708 nmp = *nmdp; 1709 if (nmp->md_type != MDT_VERSION) 1710 continue; 1711 nmodname = nmp->md_cval; 1712 if (strcmp(modname, nmodname) == 0) 1713 break; 1714 } 1715 if (nmdp < stop) /* it's a self reference */ 1716 continue; 1717 1718 /* 1719 * ok, the module isn't here yet, we 1720 * are not finished 1721 */ 1722 if (modlist_lookup2(modname, verinfo) == NULL) 1723 resolves = 0; 1724 } 1725 } 1726 /* 1727 * OK, if we found our modules, we can link. So, "provide" 1728 * the modules inside and add it to the end of the link order 1729 * list. 1730 */ 1731 if (resolves) { 1732 if (!error) { 1733 for (mdp = start; mdp < stop; mdp++) { 1734 mp = *mdp; 1735 if (mp->md_type != MDT_VERSION) 1736 continue; 1737 modname = mp->md_cval; 1738 nver = ((const struct mod_version *) 1739 mp->md_data)->mv_version; 1740 if (modlist_lookup(modname, 1741 nver) != NULL) { 1742 printf("module %s already" 1743 " present!\n", modname); 1744 TAILQ_REMOVE(&loaded_files, 1745 lf, loaded); 1746 linker_file_unload(lf, 1747 LINKER_UNLOAD_FORCE); 1748 /* we changed tailq next ptr */ 1749 goto restart; 1750 } 1751 modlist_newmodule(modname, nver, lf); 1752 } 1753 } 1754 TAILQ_REMOVE(&loaded_files, lf, loaded); 1755 TAILQ_INSERT_TAIL(&depended_files, lf, loaded); 1756 /* 1757 * Since we provided modules, we need to restart the 1758 * sort so that the previous files that depend on us 1759 * have a chance. Also, we've busted the tailq next 1760 * pointer with the REMOVE. 1761 */ 1762 goto restart; 1763 } 1764 } 1765 1766 /* 1767 * At this point, we check to see what could not be resolved.. 1768 */ 1769 while ((lf = TAILQ_FIRST(&loaded_files)) != NULL) { 1770 TAILQ_REMOVE(&loaded_files, lf, loaded); 1771 printf("KLD file %s is missing dependencies\n", lf->filename); 1772 linker_file_unload(lf, LINKER_UNLOAD_FORCE); 1773 } 1774 1775 /* 1776 * We made it. Finish off the linking in the order we determined. 1777 */ 1778 TAILQ_FOREACH_SAFE(lf, &depended_files, loaded, nlf) { 1779 if (linker_kernel_file) { 1780 linker_kernel_file->refs++; 1781 error = linker_file_add_dependency(lf, 1782 linker_kernel_file); 1783 if (error) 1784 panic("cannot add dependency"); 1785 } 1786 error = linker_file_lookup_set(lf, MDT_SETNAME, &start, 1787 &stop, NULL); 1788 if (!error) { 1789 for (mdp = start; mdp < stop; mdp++) { 1790 mp = *mdp; 1791 if (mp->md_type != MDT_DEPEND) 1792 continue; 1793 modname = mp->md_cval; 1794 verinfo = mp->md_data; 1795 mod = modlist_lookup2(modname, verinfo); 1796 if (mod == NULL) { 1797 printf("KLD file %s - cannot find " 1798 "dependency \"%s\"\n", 1799 lf->filename, modname); 1800 goto fail; 1801 } 1802 /* Don't count self-dependencies */ 1803 if (lf == mod->container) 1804 continue; 1805 mod->container->refs++; 1806 error = linker_file_add_dependency(lf, 1807 mod->container); 1808 if (error) 1809 panic("cannot add dependency"); 1810 } 1811 } 1812 /* 1813 * Now do relocation etc using the symbol search paths 1814 * established by the dependencies 1815 */ 1816 error = LINKER_LINK_PRELOAD_FINISH(lf); 1817 if (error) { 1818 printf("KLD file %s - could not finalize loading\n", 1819 lf->filename); 1820 goto fail; 1821 } 1822 linker_file_register_modules(lf); 1823 if (!TAILQ_EMPTY(&lf->modules)) 1824 lf->flags |= LINKER_FILE_MODULES; 1825 if (linker_file_lookup_set(lf, "sysinit_set", &si_start, 1826 &si_stop, NULL) == 0) 1827 sysinit_add(si_start, si_stop); 1828 linker_file_register_sysctls(lf, true); 1829 lf->flags |= LINKER_FILE_LINKED; 1830 continue; 1831 fail: 1832 TAILQ_REMOVE(&depended_files, lf, loaded); 1833 linker_file_unload(lf, LINKER_UNLOAD_FORCE); 1834 } 1835 sx_xunlock(&kld_sx); 1836 /* woohoo! we made it! */ 1837 } 1838 SYSINIT(preload, SI_SUB_KLD, SI_ORDER_MIDDLE, linker_preload, NULL); 1839 1840 static void 1841 linker_mountroot(void *arg __unused) 1842 { 1843 linker_file_t lf; 1844 1845 sx_xlock(&kld_sx); 1846 TAILQ_FOREACH (lf, &linker_files, link) { 1847 linker_ctf_load_file(lf); 1848 } 1849 sx_xunlock(&kld_sx); 1850 } 1851 EVENTHANDLER_DEFINE(mountroot, linker_mountroot, NULL, 0); 1852 1853 /* 1854 * Handle preload files that failed to load any modules. 1855 */ 1856 static void 1857 linker_preload_finish(void *arg) 1858 { 1859 linker_file_t lf, nlf; 1860 1861 sx_xlock(&kld_sx); 1862 TAILQ_FOREACH_SAFE(lf, &linker_files, link, nlf) { 1863 /* 1864 * If all of the modules in this file failed to load, unload 1865 * the file and return an error of ENOEXEC. (Parity with 1866 * linker_load_file.) 1867 */ 1868 if ((lf->flags & LINKER_FILE_MODULES) != 0 && 1869 TAILQ_EMPTY(&lf->modules)) { 1870 linker_file_unload(lf, LINKER_UNLOAD_FORCE); 1871 continue; 1872 } 1873 1874 lf->flags &= ~LINKER_FILE_MODULES; 1875 lf->userrefs++; /* so we can (try to) kldunload it */ 1876 } 1877 sx_xunlock(&kld_sx); 1878 } 1879 1880 /* 1881 * Attempt to run after all DECLARE_MODULE SYSINITs. Unfortunately they can be 1882 * scheduled at any subsystem and order, so run this as late as possible. init 1883 * becomes runnable in SI_SUB_KTHREAD_INIT, so go slightly before that. 1884 */ 1885 SYSINIT(preload_finish, SI_SUB_KTHREAD_INIT - 100, SI_ORDER_MIDDLE, 1886 linker_preload_finish, NULL); 1887 1888 /* 1889 * Search for a not-loaded module by name. 1890 * 1891 * Modules may be found in the following locations: 1892 * 1893 * - preloaded (result is just the module name) - on disk (result is full path 1894 * to module) 1895 * 1896 * If the module name is qualified in any way (contains path, etc.) the we 1897 * simply return a copy of it. 1898 * 1899 * The search path can be manipulated via sysctl. Note that we use the ';' 1900 * character as a separator to be consistent with the bootloader. 1901 */ 1902 1903 static char linker_hintfile[] = "linker.hints"; 1904 static char linker_path[MAXPATHLEN] = "/boot/kernel;/boot/modules"; 1905 1906 SYSCTL_STRING(_kern, OID_AUTO, module_path, CTLFLAG_RWTUN, linker_path, 1907 sizeof(linker_path), "module load search path"); 1908 1909 TUNABLE_STR("module_path", linker_path, sizeof(linker_path)); 1910 1911 static const char * const linker_ext_list[] = { 1912 "", 1913 ".ko", 1914 NULL 1915 }; 1916 1917 /* 1918 * Check if file actually exists either with or without extension listed in 1919 * the linker_ext_list. (probably should be generic for the rest of the 1920 * kernel) 1921 */ 1922 static char * 1923 linker_lookup_file(const char *path, int pathlen, const char *name, 1924 int namelen, struct vattr *vap) 1925 { 1926 struct nameidata nd; 1927 struct thread *td = curthread; /* XXX */ 1928 const char * const *cpp, *sep; 1929 char *result; 1930 int error, len, extlen, reclen, flags; 1931 __enum_uint8(vtype) type; 1932 1933 extlen = 0; 1934 for (cpp = linker_ext_list; *cpp; cpp++) { 1935 len = strlen(*cpp); 1936 if (len > extlen) 1937 extlen = len; 1938 } 1939 extlen++; /* trailing '\0' */ 1940 sep = (path[pathlen - 1] != '/') ? "/" : ""; 1941 1942 reclen = pathlen + strlen(sep) + namelen + extlen + 1; 1943 result = malloc(reclen, M_LINKER, M_WAITOK); 1944 for (cpp = linker_ext_list; *cpp; cpp++) { 1945 snprintf(result, reclen, "%.*s%s%.*s%s", pathlen, path, sep, 1946 namelen, name, *cpp); 1947 /* 1948 * Attempt to open the file, and return the path if 1949 * we succeed and it's a regular file. 1950 */ 1951 NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, result); 1952 flags = FREAD; 1953 error = vn_open(&nd, &flags, 0, NULL); 1954 if (error == 0) { 1955 NDFREE_PNBUF(&nd); 1956 type = nd.ni_vp->v_type; 1957 if (vap) 1958 VOP_GETATTR(nd.ni_vp, vap, td->td_ucred); 1959 VOP_UNLOCK(nd.ni_vp); 1960 vn_close(nd.ni_vp, FREAD, td->td_ucred, td); 1961 if (type == VREG) 1962 return (result); 1963 } 1964 } 1965 free(result, M_LINKER); 1966 return (NULL); 1967 } 1968 1969 #define INT_ALIGN(base, ptr) ptr = \ 1970 (base) + roundup2((ptr) - (base), sizeof(int)) 1971 1972 /* 1973 * Lookup KLD which contains requested module in the "linker.hints" file. If 1974 * version specification is available, then try to find the best KLD. 1975 * Otherwise just find the latest one. 1976 */ 1977 static char * 1978 linker_hints_lookup(const char *path, int pathlen, const char *modname, 1979 int modnamelen, const struct mod_depend *verinfo) 1980 { 1981 struct thread *td = curthread; /* XXX */ 1982 struct ucred *cred = td ? td->td_ucred : NULL; 1983 struct nameidata nd; 1984 struct vattr vattr, mattr; 1985 const char *best, *sep; 1986 u_char *hints = NULL; 1987 u_char *cp, *recptr, *bufend, *result, *pathbuf; 1988 int error, ival, bestver, *intp, found, flags, clen, blen; 1989 ssize_t reclen; 1990 1991 result = NULL; 1992 bestver = found = 0; 1993 1994 sep = (path[pathlen - 1] != '/') ? "/" : ""; 1995 reclen = imax(modnamelen, strlen(linker_hintfile)) + pathlen + 1996 strlen(sep) + 1; 1997 pathbuf = malloc(reclen, M_LINKER, M_WAITOK); 1998 snprintf(pathbuf, reclen, "%.*s%s%s", pathlen, path, sep, 1999 linker_hintfile); 2000 2001 NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_SYSSPACE, pathbuf); 2002 flags = FREAD; 2003 error = vn_open(&nd, &flags, 0, NULL); 2004 if (error) 2005 goto bad; 2006 NDFREE_PNBUF(&nd); 2007 if (nd.ni_vp->v_type != VREG) 2008 goto bad; 2009 best = cp = NULL; 2010 error = VOP_GETATTR(nd.ni_vp, &vattr, cred); 2011 if (error) 2012 goto bad; 2013 /* 2014 * XXX: we need to limit this number to some reasonable value 2015 */ 2016 if (vattr.va_size > LINKER_HINTS_MAX) { 2017 printf("linker.hints file too large %ld\n", (long)vattr.va_size); 2018 goto bad; 2019 } 2020 hints = malloc(vattr.va_size, M_TEMP, M_WAITOK); 2021 error = vn_rdwr(UIO_READ, nd.ni_vp, (caddr_t)hints, vattr.va_size, 0, 2022 UIO_SYSSPACE, IO_NODELOCKED, cred, NOCRED, &reclen, td); 2023 if (error) 2024 goto bad; 2025 VOP_UNLOCK(nd.ni_vp); 2026 vn_close(nd.ni_vp, FREAD, cred, td); 2027 nd.ni_vp = NULL; 2028 if (reclen != 0) { 2029 printf("can't read %zd\n", reclen); 2030 goto bad; 2031 } 2032 intp = (int *)hints; 2033 ival = *intp++; 2034 if (ival != LINKER_HINTS_VERSION) { 2035 printf("linker.hints file version mismatch %d\n", ival); 2036 goto bad; 2037 } 2038 bufend = hints + vattr.va_size; 2039 recptr = (u_char *)intp; 2040 clen = blen = 0; 2041 while (recptr < bufend && !found) { 2042 intp = (int *)recptr; 2043 reclen = *intp++; 2044 ival = *intp++; 2045 cp = (char *)intp; 2046 switch (ival) { 2047 case MDT_VERSION: 2048 clen = *cp++; 2049 if (clen != modnamelen || bcmp(cp, modname, clen) != 0) 2050 break; 2051 cp += clen; 2052 INT_ALIGN(hints, cp); 2053 ival = *(int *)cp; 2054 cp += sizeof(int); 2055 clen = *cp++; 2056 if (verinfo == NULL || 2057 ival == verinfo->md_ver_preferred) { 2058 found = 1; 2059 break; 2060 } 2061 if (ival >= verinfo->md_ver_minimum && 2062 ival <= verinfo->md_ver_maximum && 2063 ival > bestver) { 2064 bestver = ival; 2065 best = cp; 2066 blen = clen; 2067 } 2068 break; 2069 default: 2070 break; 2071 } 2072 recptr += reclen + sizeof(int); 2073 } 2074 /* 2075 * Finally check if KLD is in the place 2076 */ 2077 if (found) 2078 result = linker_lookup_file(path, pathlen, cp, clen, &mattr); 2079 else if (best) 2080 result = linker_lookup_file(path, pathlen, best, blen, &mattr); 2081 2082 /* 2083 * KLD is newer than hints file. What we should do now? 2084 */ 2085 if (result && timespeccmp(&mattr.va_mtime, &vattr.va_mtime, >)) 2086 printf("warning: KLD '%s' is newer than the linker.hints" 2087 " file\n", result); 2088 bad: 2089 free(pathbuf, M_LINKER); 2090 if (hints) 2091 free(hints, M_TEMP); 2092 if (nd.ni_vp != NULL) { 2093 VOP_UNLOCK(nd.ni_vp); 2094 vn_close(nd.ni_vp, FREAD, cred, td); 2095 } 2096 /* 2097 * If nothing found or hints is absent - fallback to the old 2098 * way by using "kldname[.ko]" as module name. 2099 */ 2100 if (!found && !bestver && result == NULL) 2101 result = linker_lookup_file(path, pathlen, modname, 2102 modnamelen, NULL); 2103 return (result); 2104 } 2105 2106 /* 2107 * Lookup KLD which contains requested module in the all directories. 2108 */ 2109 static char * 2110 linker_search_module(const char *modname, int modnamelen, 2111 const struct mod_depend *verinfo) 2112 { 2113 char *cp, *ep, *result; 2114 2115 /* 2116 * traverse the linker path 2117 */ 2118 for (cp = linker_path; *cp; cp = ep + 1) { 2119 /* find the end of this component */ 2120 for (ep = cp; (*ep != 0) && (*ep != ';'); ep++); 2121 result = linker_hints_lookup(cp, ep - cp, modname, 2122 modnamelen, verinfo); 2123 if (result != NULL) 2124 return (result); 2125 if (*ep == 0) 2126 break; 2127 } 2128 return (NULL); 2129 } 2130 2131 /* 2132 * Search for module in all directories listed in the linker_path. 2133 */ 2134 static char * 2135 linker_search_kld(const char *name) 2136 { 2137 char *cp, *ep, *result; 2138 int len; 2139 2140 /* qualified at all? */ 2141 if (strchr(name, '/')) 2142 return (strdup(name, M_LINKER)); 2143 2144 /* traverse the linker path */ 2145 len = strlen(name); 2146 for (ep = linker_path; *ep; ep++) { 2147 cp = ep; 2148 /* find the end of this component */ 2149 for (; *ep != 0 && *ep != ';'; ep++); 2150 result = linker_lookup_file(cp, ep - cp, name, len, NULL); 2151 if (result != NULL) 2152 return (result); 2153 } 2154 return (NULL); 2155 } 2156 2157 static const char * 2158 linker_basename(const char *path) 2159 { 2160 const char *filename; 2161 2162 filename = strrchr(path, '/'); 2163 if (filename == NULL) 2164 return path; 2165 if (filename[1]) 2166 filename++; 2167 return (filename); 2168 } 2169 2170 #ifdef HWPMC_HOOKS 2171 /* 2172 * Inform hwpmc about the set of kernel modules currently loaded. 2173 */ 2174 void * 2175 linker_hwpmc_list_objects(void) 2176 { 2177 linker_file_t lf; 2178 struct pmckern_map_in *kobase; 2179 int i, nmappings; 2180 2181 nmappings = 0; 2182 sx_slock(&kld_sx); 2183 TAILQ_FOREACH(lf, &linker_files, link) 2184 nmappings++; 2185 2186 /* Allocate nmappings + 1 entries. */ 2187 kobase = malloc((nmappings + 1) * sizeof(struct pmckern_map_in), 2188 M_LINKER, M_WAITOK | M_ZERO); 2189 i = 0; 2190 TAILQ_FOREACH(lf, &linker_files, link) { 2191 /* Save the info for this linker file. */ 2192 kobase[i].pm_file = lf->pathname; 2193 kobase[i].pm_address = (uintptr_t)lf->address; 2194 i++; 2195 } 2196 sx_sunlock(&kld_sx); 2197 2198 KASSERT(i > 0, ("linker_hpwmc_list_objects: no kernel objects?")); 2199 2200 /* The last entry of the malloced area comprises of all zeros. */ 2201 KASSERT(kobase[i].pm_file == NULL, 2202 ("linker_hwpmc_list_objects: last object not NULL")); 2203 2204 return ((void *)kobase); 2205 } 2206 #endif 2207 2208 /* check if root file system is not mounted */ 2209 static bool 2210 linker_root_mounted(void) 2211 { 2212 struct pwd *pwd; 2213 bool ret; 2214 2215 if (rootvnode == NULL) 2216 return (false); 2217 2218 pwd = pwd_hold(curthread); 2219 ret = pwd->pwd_rdir != NULL; 2220 pwd_drop(pwd); 2221 return (ret); 2222 } 2223 2224 /* 2225 * Find a file which contains given module and load it, if "parent" is not 2226 * NULL, register a reference to it. 2227 */ 2228 static int 2229 linker_load_module(const char *kldname, const char *modname, 2230 struct linker_file *parent, const struct mod_depend *verinfo, 2231 struct linker_file **lfpp) 2232 { 2233 linker_file_t lfdep; 2234 const char *filename; 2235 char *pathname; 2236 int error; 2237 2238 sx_assert(&kld_sx, SA_XLOCKED); 2239 if (modname == NULL) { 2240 /* 2241 * We have to load KLD 2242 */ 2243 KASSERT(verinfo == NULL, ("linker_load_module: verinfo" 2244 " is not NULL")); 2245 if (!linker_root_mounted()) 2246 return (ENXIO); 2247 pathname = linker_search_kld(kldname); 2248 } else { 2249 if (modlist_lookup2(modname, verinfo) != NULL) 2250 return (EEXIST); 2251 if (!linker_root_mounted()) 2252 return (ENXIO); 2253 if (kldname != NULL) 2254 pathname = strdup(kldname, M_LINKER); 2255 else 2256 /* 2257 * Need to find a KLD with required module 2258 */ 2259 pathname = linker_search_module(modname, 2260 strlen(modname), verinfo); 2261 } 2262 if (pathname == NULL) 2263 return (ENOENT); 2264 2265 /* 2266 * Can't load more than one file with the same basename XXX: 2267 * Actually it should be possible to have multiple KLDs with 2268 * the same basename but different path because they can 2269 * provide different versions of the same modules. 2270 */ 2271 filename = linker_basename(pathname); 2272 if (linker_find_file_by_name(filename)) 2273 error = EEXIST; 2274 else do { 2275 error = linker_load_file(pathname, &lfdep); 2276 if (error) 2277 break; 2278 if (modname && verinfo && 2279 modlist_lookup2(modname, verinfo) == NULL) { 2280 linker_file_unload(lfdep, LINKER_UNLOAD_FORCE); 2281 error = ENOENT; 2282 break; 2283 } 2284 if (parent) { 2285 error = linker_file_add_dependency(parent, lfdep); 2286 if (error) 2287 break; 2288 } 2289 if (lfpp) 2290 *lfpp = lfdep; 2291 } while (0); 2292 free(pathname, M_LINKER); 2293 return (error); 2294 } 2295 2296 /* 2297 * This routine is responsible for finding dependencies of userland initiated 2298 * kldload(2)'s of files. 2299 */ 2300 int 2301 linker_load_dependencies(linker_file_t lf) 2302 { 2303 linker_file_t lfdep; 2304 struct mod_metadata **start, **stop, **mdp, **nmdp; 2305 struct mod_metadata *mp, *nmp; 2306 const struct mod_depend *verinfo; 2307 modlist_t mod; 2308 const char *modname, *nmodname; 2309 int ver, error = 0; 2310 2311 /* 2312 * All files are dependent on /kernel. 2313 */ 2314 sx_assert(&kld_sx, SA_XLOCKED); 2315 if (linker_kernel_file) { 2316 linker_kernel_file->refs++; 2317 error = linker_file_add_dependency(lf, linker_kernel_file); 2318 if (error) 2319 return (error); 2320 } 2321 if (linker_file_lookup_set(lf, MDT_SETNAME, &start, &stop, 2322 NULL) != 0) 2323 return (0); 2324 for (mdp = start; mdp < stop; mdp++) { 2325 mp = *mdp; 2326 if (mp->md_type != MDT_VERSION) 2327 continue; 2328 modname = mp->md_cval; 2329 ver = ((const struct mod_version *)mp->md_data)->mv_version; 2330 mod = modlist_lookup(modname, ver); 2331 if (mod != NULL) { 2332 printf("interface %s.%d already present in the KLD" 2333 " '%s'!\n", modname, ver, 2334 mod->container->filename); 2335 return (EEXIST); 2336 } 2337 } 2338 2339 for (mdp = start; mdp < stop; mdp++) { 2340 mp = *mdp; 2341 if (mp->md_type != MDT_DEPEND) 2342 continue; 2343 modname = mp->md_cval; 2344 verinfo = mp->md_data; 2345 nmodname = NULL; 2346 for (nmdp = start; nmdp < stop; nmdp++) { 2347 nmp = *nmdp; 2348 if (nmp->md_type != MDT_VERSION) 2349 continue; 2350 nmodname = nmp->md_cval; 2351 if (strcmp(modname, nmodname) == 0) 2352 break; 2353 } 2354 if (nmdp < stop)/* early exit, it's a self reference */ 2355 continue; 2356 mod = modlist_lookup2(modname, verinfo); 2357 if (mod) { /* woohoo, it's loaded already */ 2358 lfdep = mod->container; 2359 lfdep->refs++; 2360 error = linker_file_add_dependency(lf, lfdep); 2361 if (error) 2362 break; 2363 continue; 2364 } 2365 error = linker_load_module(NULL, modname, lf, verinfo, NULL); 2366 if (error) { 2367 printf("KLD %s: depends on %s - not available or" 2368 " version mismatch\n", lf->filename, modname); 2369 break; 2370 } 2371 } 2372 2373 if (error) 2374 return (error); 2375 linker_addmodules(lf, start, stop, 0); 2376 return (error); 2377 } 2378 2379 static int 2380 sysctl_kern_function_list_iterate(const char *name, void *opaque) 2381 { 2382 struct sysctl_req *req; 2383 2384 req = opaque; 2385 return (SYSCTL_OUT(req, name, strlen(name) + 1)); 2386 } 2387 2388 /* 2389 * Export a nul-separated, double-nul-terminated list of all function names 2390 * in the kernel. 2391 */ 2392 static int 2393 sysctl_kern_function_list(SYSCTL_HANDLER_ARGS) 2394 { 2395 linker_file_t lf; 2396 int error; 2397 2398 #ifdef MAC 2399 error = mac_kld_check_stat(req->td->td_ucred); 2400 if (error) 2401 return (error); 2402 #endif 2403 error = sysctl_wire_old_buffer(req, 0); 2404 if (error != 0) 2405 return (error); 2406 sx_xlock(&kld_sx); 2407 TAILQ_FOREACH(lf, &linker_files, link) { 2408 error = LINKER_EACH_FUNCTION_NAME(lf, 2409 sysctl_kern_function_list_iterate, req); 2410 if (error) { 2411 sx_xunlock(&kld_sx); 2412 return (error); 2413 } 2414 } 2415 sx_xunlock(&kld_sx); 2416 return (SYSCTL_OUT(req, "", 1)); 2417 } 2418 2419 SYSCTL_PROC(_kern, OID_AUTO, function_list, 2420 CTLTYPE_OPAQUE | CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, 0, 2421 sysctl_kern_function_list, "", 2422 "kernel function list"); 2423