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