]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/kern/link_elf.c
kernel linker: do not read debug symbol tables for non-debug symbols
[FreeBSD/FreeBSD.git] / sys / kern / link_elf.c
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 1998-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 __FBSDID("$FreeBSD$");
31
32 #include "opt_ddb.h"
33 #include "opt_gdb.h"
34
35 #include <sys/param.h>
36 #include <sys/systm.h>
37 #ifdef GPROF
38 #include <sys/gmon.h>
39 #endif
40 #include <sys/kernel.h>
41 #include <sys/lock.h>
42 #include <sys/malloc.h>
43 #ifdef SPARSE_MAPPING
44 #include <sys/mman.h>
45 #endif
46 #include <sys/mutex.h>
47 #include <sys/mount.h>
48 #include <sys/pcpu.h>
49 #include <sys/proc.h>
50 #include <sys/namei.h>
51 #include <sys/fcntl.h>
52 #include <sys/vnode.h>
53 #include <sys/linker.h>
54 #include <sys/sysctl.h>
55
56 #include <machine/elf.h>
57
58 #include <net/vnet.h>
59
60 #include <security/mac/mac_framework.h>
61
62 #include <vm/vm.h>
63 #include <vm/vm_param.h>
64 #ifdef SPARSE_MAPPING
65 #include <vm/vm_object.h>
66 #include <vm/vm_kern.h>
67 #include <vm/vm_extern.h>
68 #endif
69 #include <vm/pmap.h>
70 #include <vm/vm_map.h>
71
72 #include <sys/link_elf.h>
73
74 #include "linker_if.h"
75
76 #define MAXSEGS 4
77
78 typedef struct elf_file {
79         struct linker_file lf;          /* Common fields */
80         int             preloaded;      /* Was file pre-loaded */
81         caddr_t         address;        /* Relocation address */
82 #ifdef SPARSE_MAPPING
83         vm_object_t     object;         /* VM object to hold file pages */
84 #endif
85         Elf_Dyn         *dynamic;       /* Symbol table etc. */
86         Elf_Hashelt     nbuckets;       /* DT_HASH info */
87         Elf_Hashelt     nchains;
88         const Elf_Hashelt *buckets;
89         const Elf_Hashelt *chains;
90         caddr_t         hash;
91         caddr_t         strtab;         /* DT_STRTAB */
92         int             strsz;          /* DT_STRSZ */
93         const Elf_Sym   *symtab;                /* DT_SYMTAB */
94         Elf_Addr        *got;           /* DT_PLTGOT */
95         const Elf_Rel   *pltrel;        /* DT_JMPREL */
96         int             pltrelsize;     /* DT_PLTRELSZ */
97         const Elf_Rela  *pltrela;       /* DT_JMPREL */
98         int             pltrelasize;    /* DT_PLTRELSZ */
99         const Elf_Rel   *rel;           /* DT_REL */
100         int             relsize;        /* DT_RELSZ */
101         const Elf_Rela  *rela;          /* DT_RELA */
102         int             relasize;       /* DT_RELASZ */
103         caddr_t         modptr;
104         const Elf_Sym   *ddbsymtab;     /* The symbol table we are using */
105         long            ddbsymcnt;      /* Number of symbols */
106         caddr_t         ddbstrtab;      /* String table */
107         long            ddbstrcnt;      /* number of bytes in string table */
108         caddr_t         symbase;        /* malloc'ed symbold base */
109         caddr_t         strbase;        /* malloc'ed string base */
110         caddr_t         ctftab;         /* CTF table */
111         long            ctfcnt;         /* number of bytes in CTF table */
112         caddr_t         ctfoff;         /* CTF offset table */
113         caddr_t         typoff;         /* Type offset table */
114         long            typlen;         /* Number of type entries. */
115         Elf_Addr        pcpu_start;     /* Pre-relocation pcpu set start. */
116         Elf_Addr        pcpu_stop;      /* Pre-relocation pcpu set stop. */
117         Elf_Addr        pcpu_base;      /* Relocated pcpu set address. */
118 #ifdef VIMAGE
119         Elf_Addr        vnet_start;     /* Pre-relocation vnet set start. */
120         Elf_Addr        vnet_stop;      /* Pre-relocation vnet set stop. */
121         Elf_Addr        vnet_base;      /* Relocated vnet set address. */
122 #endif
123 #ifdef GDB
124         struct link_map gdb;            /* hooks for gdb */
125 #endif
126 } *elf_file_t;
127
128 struct elf_set {
129         Elf_Addr        es_start;
130         Elf_Addr        es_stop;
131         Elf_Addr        es_base;
132         TAILQ_ENTRY(elf_set)    es_link;
133 };
134
135 TAILQ_HEAD(elf_set_head, elf_set);
136
137 #include <kern/kern_ctf.c>
138
139 static int      link_elf_link_common_finish(linker_file_t);
140 static int      link_elf_link_preload(linker_class_t cls,
141                                       const char *, linker_file_t *);
142 static int      link_elf_link_preload_finish(linker_file_t);
143 static int      link_elf_load_file(linker_class_t, const char *,
144                     linker_file_t *);
145 static int      link_elf_lookup_symbol(linker_file_t, const char *,
146                     c_linker_sym_t *);
147 static int      link_elf_lookup_debug_symbol(linker_file_t, const char *,
148                     c_linker_sym_t *);
149 static int      link_elf_symbol_values(linker_file_t, c_linker_sym_t,
150                     linker_symval_t *);
151 static int      link_elf_debug_symbol_values(linker_file_t, c_linker_sym_t,
152                     linker_symval_t*);
153 static int      link_elf_search_symbol(linker_file_t, caddr_t,
154                     c_linker_sym_t *, long *);
155
156 static void     link_elf_unload_file(linker_file_t);
157 static void     link_elf_unload_preload(linker_file_t);
158 static int      link_elf_lookup_set(linker_file_t, const char *,
159                     void ***, void ***, int *);
160 static int      link_elf_each_function_name(linker_file_t,
161                     int (*)(const char *, void *), void *);
162 static int      link_elf_each_function_nameval(linker_file_t,
163                     linker_function_nameval_callback_t, void *);
164 static void     link_elf_reloc_local(linker_file_t);
165 static long     link_elf_symtab_get(linker_file_t, const Elf_Sym **);
166 static long     link_elf_strtab_get(linker_file_t, caddr_t *);
167 static int      elf_lookup(linker_file_t, Elf_Size, int, Elf_Addr *);
168
169 static kobj_method_t link_elf_methods[] = {
170         KOBJMETHOD(linker_lookup_symbol,        link_elf_lookup_symbol),
171         KOBJMETHOD(linker_lookup_debug_symbol,  link_elf_lookup_debug_symbol),
172         KOBJMETHOD(linker_symbol_values,        link_elf_symbol_values),
173         KOBJMETHOD(linker_debug_symbol_values,  link_elf_debug_symbol_values),
174         KOBJMETHOD(linker_search_symbol,        link_elf_search_symbol),
175         KOBJMETHOD(linker_unload,               link_elf_unload_file),
176         KOBJMETHOD(linker_load_file,            link_elf_load_file),
177         KOBJMETHOD(linker_link_preload,         link_elf_link_preload),
178         KOBJMETHOD(linker_link_preload_finish,  link_elf_link_preload_finish),
179         KOBJMETHOD(linker_lookup_set,           link_elf_lookup_set),
180         KOBJMETHOD(linker_each_function_name,   link_elf_each_function_name),
181         KOBJMETHOD(linker_each_function_nameval, link_elf_each_function_nameval),
182         KOBJMETHOD(linker_ctf_get,              link_elf_ctf_get),
183         KOBJMETHOD(linker_symtab_get,           link_elf_symtab_get),
184         KOBJMETHOD(linker_strtab_get,           link_elf_strtab_get),
185         KOBJMETHOD_END
186 };
187
188 static struct linker_class link_elf_class = {
189 #if ELF_TARG_CLASS == ELFCLASS32
190         "elf32",
191 #else
192         "elf64",
193 #endif
194         link_elf_methods, sizeof(struct elf_file)
195 };
196
197 typedef int (*elf_reloc_fn)(linker_file_t lf, Elf_Addr relocbase,
198     const void *data, int type, elf_lookup_fn lookup);
199
200 static int      parse_dynamic(elf_file_t);
201 static int      relocate_file(elf_file_t);
202 static int      relocate_file1(elf_file_t ef, elf_lookup_fn lookup,
203                     elf_reloc_fn reloc, bool ifuncs);
204 static int      link_elf_preload_parse_symbols(elf_file_t);
205
206 static struct elf_set_head set_pcpu_list;
207 #ifdef VIMAGE
208 static struct elf_set_head set_vnet_list;
209 #endif
210
211 static void
212 elf_set_add(struct elf_set_head *list, Elf_Addr start, Elf_Addr stop, Elf_Addr base)
213 {
214         struct elf_set *set, *iter;
215
216         set = malloc(sizeof(*set), M_LINKER, M_WAITOK);
217         set->es_start = start;
218         set->es_stop = stop;
219         set->es_base = base;
220
221         TAILQ_FOREACH(iter, list, es_link) {
222                 KASSERT((set->es_start < iter->es_start && set->es_stop < iter->es_stop) ||
223                     (set->es_start > iter->es_start && set->es_stop > iter->es_stop),
224                     ("linker sets intersection: to insert: 0x%jx-0x%jx; inserted: 0x%jx-0x%jx",
225                     (uintmax_t)set->es_start, (uintmax_t)set->es_stop,
226                     (uintmax_t)iter->es_start, (uintmax_t)iter->es_stop));
227
228                 if (iter->es_start > set->es_start) {
229                         TAILQ_INSERT_BEFORE(iter, set, es_link);
230                         break;
231                 }
232         }
233
234         if (iter == NULL)
235                 TAILQ_INSERT_TAIL(list, set, es_link);
236 }
237
238 static int
239 elf_set_find(struct elf_set_head *list, Elf_Addr addr, Elf_Addr *start, Elf_Addr *base)
240 {
241         struct elf_set *set;
242
243         TAILQ_FOREACH(set, list, es_link) {
244                 if (addr < set->es_start)
245                         return (0);
246                 if (addr < set->es_stop) {
247                         *start = set->es_start;
248                         *base = set->es_base;
249                         return (1);
250                 }
251         }
252
253         return (0);
254 }
255
256 static void
257 elf_set_delete(struct elf_set_head *list, Elf_Addr start)
258 {
259         struct elf_set *set;
260
261         TAILQ_FOREACH(set, list, es_link) {
262                 if (start < set->es_start)
263                         break;
264                 if (start == set->es_start) {
265                         TAILQ_REMOVE(list, set, es_link);
266                         free(set, M_LINKER);
267                         return;
268                 }
269         }
270         KASSERT(0, ("deleting unknown linker set (start = 0x%jx)",
271             (uintmax_t)start));
272 }
273
274 #ifdef GDB
275 static void     r_debug_state(struct r_debug *, struct link_map *);
276
277 /*
278  * A list of loaded modules for GDB to use for loading symbols.
279  */
280 struct r_debug r_debug;
281
282 #define GDB_STATE(s) do {                               \
283         r_debug.r_state = s; r_debug_state(NULL, NULL); \
284 } while (0)
285
286 /*
287  * Function for the debugger to set a breakpoint on to gain control.
288  */
289 static void
290 r_debug_state(struct r_debug *dummy_one __unused,
291               struct link_map *dummy_two __unused)
292 {
293 }
294
295 static void
296 link_elf_add_gdb(struct link_map *l)
297 {
298         struct link_map *prev;
299
300         l->l_next = NULL;
301
302         if (r_debug.r_map == NULL) {
303                 /* Add first. */
304                 l->l_prev = NULL;
305                 r_debug.r_map = l;
306         } else {
307                 /* Append to list. */
308                 for (prev = r_debug.r_map;
309                     prev->l_next != NULL;
310                     prev = prev->l_next)
311                         ;
312                 l->l_prev = prev;
313                 prev->l_next = l;
314         }
315 }
316
317 static void
318 link_elf_delete_gdb(struct link_map *l)
319 {
320         if (l->l_prev == NULL) {
321                 /* Remove first. */
322                 if ((r_debug.r_map = l->l_next) != NULL)
323                         l->l_next->l_prev = NULL;
324         } else {
325                 /* Remove any but first. */
326                 if ((l->l_prev->l_next = l->l_next) != NULL)
327                         l->l_next->l_prev = l->l_prev;
328         }
329 }
330 #endif /* GDB */
331
332 /*
333  * The kernel symbol table starts here.
334  */
335 extern struct _dynamic _DYNAMIC;
336
337 static void
338 link_elf_error(const char *filename, const char *s)
339 {
340         if (filename == NULL)
341                 printf("kldload: %s\n", s);
342         else
343                 printf("kldload: %s: %s\n", filename, s);
344 }
345
346 static void
347 link_elf_invoke_ctors(caddr_t addr, size_t size)
348 {
349         void (**ctor)(void);
350         size_t i, cnt;
351
352         if (addr == NULL || size == 0)
353                 return;
354         cnt = size / sizeof(*ctor);
355         ctor = (void *)addr;
356         for (i = 0; i < cnt; i++) {
357                 if (ctor[i] != NULL)
358                         (*ctor[i])();
359         }
360 }
361
362 /*
363  * Actions performed after linking/loading both the preloaded kernel and any
364  * modules; whether preloaded or dynamicly loaded.
365  */
366 static int
367 link_elf_link_common_finish(linker_file_t lf)
368 {
369 #ifdef GDB
370         elf_file_t ef = (elf_file_t)lf;
371         char *newfilename;
372 #endif
373         int error;
374
375         /* Notify MD code that a module is being loaded. */
376         error = elf_cpu_load_file(lf);
377         if (error != 0)
378                 return (error);
379
380 #ifdef GDB
381         GDB_STATE(RT_ADD);
382         ef->gdb.l_addr = lf->address;
383         newfilename = malloc(strlen(lf->filename) + 1, M_LINKER, M_WAITOK);
384         strcpy(newfilename, lf->filename);
385         ef->gdb.l_name = newfilename;
386         ef->gdb.l_ld = ef->dynamic;
387         link_elf_add_gdb(&ef->gdb);
388         GDB_STATE(RT_CONSISTENT);
389 #endif
390
391         /* Invoke .ctors */
392         link_elf_invoke_ctors(lf->ctors_addr, lf->ctors_size);
393         return (0);
394 }
395
396 #ifdef RELOCATABLE_KERNEL
397 /*
398  * __startkernel and __endkernel are symbols set up as relocation canaries.
399  *
400  * They are defined in locore to reference linker script symbols at the
401  * beginning and end of the LOAD area. This has the desired side effect of
402  * giving us variables that have relative relocations pointing at them, so
403  * relocation of the kernel object will cause the variables to be updated
404  * automatically by the runtime linker when we initialize.
405  *
406  * There are two main reasons to relocate the kernel:
407  * 1) If the loader needed to load the kernel at an alternate load address.
408  * 2) If the kernel is switching address spaces on machines like POWER9
409  *    under Radix where the high bits of the effective address are used to
410  *    differentiate between hypervisor, host, guest, and problem state.
411  */
412 extern vm_offset_t __startkernel, __endkernel;
413 #endif
414
415 static unsigned long kern_relbase = KERNBASE;
416
417 SYSCTL_ULONG(_kern, OID_AUTO, base_address, CTLFLAG_RD,
418         SYSCTL_NULL_ULONG_PTR, KERNBASE, "Kernel base address");
419 SYSCTL_ULONG(_kern, OID_AUTO, relbase_address, CTLFLAG_RD,
420         &kern_relbase, 0, "Kernel relocated base address");
421
422 static void
423 link_elf_init(void* arg)
424 {
425         Elf_Dyn *dp;
426         Elf_Addr *ctors_addrp;
427         Elf_Size *ctors_sizep;
428         caddr_t modptr, baseptr, sizeptr;
429         elf_file_t ef;
430         const char *modname;
431
432         linker_add_class(&link_elf_class);
433
434         dp = (Elf_Dyn *)&_DYNAMIC;
435         modname = NULL;
436         modptr = preload_search_by_type("elf" __XSTRING(__ELF_WORD_SIZE) " kernel");
437         if (modptr == NULL)
438                 modptr = preload_search_by_type("elf kernel");
439         modname = (char *)preload_search_info(modptr, MODINFO_NAME);
440         if (modname == NULL)
441                 modname = "kernel";
442         linker_kernel_file = linker_make_file(modname, &link_elf_class);
443         if (linker_kernel_file == NULL)
444                 panic("%s: Can't create linker structures for kernel",
445                     __func__);
446
447         ef = (elf_file_t) linker_kernel_file;
448         ef->preloaded = 1;
449 #ifdef RELOCATABLE_KERNEL
450         /* Compute relative displacement */
451         ef->address = (caddr_t) (__startkernel - KERNBASE);
452 #else
453         ef->address = 0;
454 #endif
455 #ifdef SPARSE_MAPPING
456         ef->object = NULL;
457 #endif
458         ef->dynamic = dp;
459
460         if (dp != NULL)
461                 parse_dynamic(ef);
462 #ifdef RELOCATABLE_KERNEL
463         linker_kernel_file->address = (caddr_t)__startkernel;
464         linker_kernel_file->size = (intptr_t)(__endkernel - __startkernel);
465         kern_relbase = (unsigned long)__startkernel;
466 #else
467         linker_kernel_file->address += KERNBASE;
468         linker_kernel_file->size = -(intptr_t)linker_kernel_file->address;
469 #endif
470
471         if (modptr != NULL) {
472                 ef->modptr = modptr;
473                 baseptr = preload_search_info(modptr, MODINFO_ADDR);
474                 if (baseptr != NULL)
475                         linker_kernel_file->address = *(caddr_t *)baseptr;
476                 sizeptr = preload_search_info(modptr, MODINFO_SIZE);
477                 if (sizeptr != NULL)
478                         linker_kernel_file->size = *(size_t *)sizeptr;
479                 ctors_addrp = (Elf_Addr *)preload_search_info(modptr,
480                         MODINFO_METADATA | MODINFOMD_CTORS_ADDR);
481                 ctors_sizep = (Elf_Size *)preload_search_info(modptr,
482                         MODINFO_METADATA | MODINFOMD_CTORS_SIZE);
483                 if (ctors_addrp != NULL && ctors_sizep != NULL) {
484                         linker_kernel_file->ctors_addr = ef->address +
485                             *ctors_addrp;
486                         linker_kernel_file->ctors_size = *ctors_sizep;
487                 }
488         }
489         (void)link_elf_preload_parse_symbols(ef);
490
491 #ifdef GDB
492         r_debug.r_map = NULL;
493         r_debug.r_brk = r_debug_state;
494         r_debug.r_state = RT_CONSISTENT;
495 #endif
496
497         (void)link_elf_link_common_finish(linker_kernel_file);
498         linker_kernel_file->flags |= LINKER_FILE_LINKED;
499         TAILQ_INIT(&set_pcpu_list);
500 #ifdef VIMAGE
501         TAILQ_INIT(&set_vnet_list);
502 #endif
503 }
504
505 SYSINIT(link_elf, SI_SUB_KLD, SI_ORDER_THIRD, link_elf_init, NULL);
506
507 static int
508 link_elf_preload_parse_symbols(elf_file_t ef)
509 {
510         caddr_t pointer;
511         caddr_t ssym, esym, base;
512         caddr_t strtab;
513         int strcnt;
514         Elf_Sym *symtab;
515         int symcnt;
516
517         if (ef->modptr == NULL)
518                 return (0);
519         pointer = preload_search_info(ef->modptr,
520             MODINFO_METADATA | MODINFOMD_SSYM);
521         if (pointer == NULL)
522                 return (0);
523         ssym = *(caddr_t *)pointer;
524         pointer = preload_search_info(ef->modptr,
525             MODINFO_METADATA | MODINFOMD_ESYM);
526         if (pointer == NULL)
527                 return (0);
528         esym = *(caddr_t *)pointer;
529
530         base = ssym;
531
532         symcnt = *(long *)base;
533         base += sizeof(long);
534         symtab = (Elf_Sym *)base;
535         base += roundup(symcnt, sizeof(long));
536
537         if (base > esym || base < ssym) {
538                 printf("Symbols are corrupt!\n");
539                 return (EINVAL);
540         }
541
542         strcnt = *(long *)base;
543         base += sizeof(long);
544         strtab = base;
545         base += roundup(strcnt, sizeof(long));
546
547         if (base > esym || base < ssym) {
548                 printf("Symbols are corrupt!\n");
549                 return (EINVAL);
550         }
551
552         ef->ddbsymtab = symtab;
553         ef->ddbsymcnt = symcnt / sizeof(Elf_Sym);
554         ef->ddbstrtab = strtab;
555         ef->ddbstrcnt = strcnt;
556
557         return (0);
558 }
559
560 static int
561 parse_dynamic(elf_file_t ef)
562 {
563         Elf_Dyn *dp;
564         int plttype = DT_REL;
565
566         for (dp = ef->dynamic; dp->d_tag != DT_NULL; dp++) {
567                 switch (dp->d_tag) {
568                 case DT_HASH:
569                 {
570                         /* From src/libexec/rtld-elf/rtld.c */
571                         const Elf_Hashelt *hashtab = (const Elf_Hashelt *)
572                             (ef->address + dp->d_un.d_ptr);
573                         ef->nbuckets = hashtab[0];
574                         ef->nchains = hashtab[1];
575                         ef->buckets = hashtab + 2;
576                         ef->chains = ef->buckets + ef->nbuckets;
577                         break;
578                 }
579                 case DT_STRTAB:
580                         ef->strtab = (caddr_t) (ef->address + dp->d_un.d_ptr);
581                         break;
582                 case DT_STRSZ:
583                         ef->strsz = dp->d_un.d_val;
584                         break;
585                 case DT_SYMTAB:
586                         ef->symtab = (Elf_Sym*) (ef->address + dp->d_un.d_ptr);
587                         break;
588                 case DT_SYMENT:
589                         if (dp->d_un.d_val != sizeof(Elf_Sym))
590                                 return (ENOEXEC);
591                         break;
592                 case DT_PLTGOT:
593                         ef->got = (Elf_Addr *) (ef->address + dp->d_un.d_ptr);
594                         break;
595                 case DT_REL:
596                         ef->rel = (const Elf_Rel *) (ef->address + dp->d_un.d_ptr);
597                         break;
598                 case DT_RELSZ:
599                         ef->relsize = dp->d_un.d_val;
600                         break;
601                 case DT_RELENT:
602                         if (dp->d_un.d_val != sizeof(Elf_Rel))
603                                 return (ENOEXEC);
604                         break;
605                 case DT_JMPREL:
606                         ef->pltrel = (const Elf_Rel *) (ef->address + dp->d_un.d_ptr);
607                         break;
608                 case DT_PLTRELSZ:
609                         ef->pltrelsize = dp->d_un.d_val;
610                         break;
611                 case DT_RELA:
612                         ef->rela = (const Elf_Rela *) (ef->address + dp->d_un.d_ptr);
613                         break;
614                 case DT_RELASZ:
615                         ef->relasize = dp->d_un.d_val;
616                         break;
617                 case DT_RELAENT:
618                         if (dp->d_un.d_val != sizeof(Elf_Rela))
619                                 return (ENOEXEC);
620                         break;
621                 case DT_PLTREL:
622                         plttype = dp->d_un.d_val;
623                         if (plttype != DT_REL && plttype != DT_RELA)
624                                 return (ENOEXEC);
625                         break;
626 #ifdef GDB
627                 case DT_DEBUG:
628                         dp->d_un.d_ptr = (Elf_Addr)&r_debug;
629                         break;
630 #endif
631                 }
632         }
633
634         if (plttype == DT_RELA) {
635                 ef->pltrela = (const Elf_Rela *)ef->pltrel;
636                 ef->pltrel = NULL;
637                 ef->pltrelasize = ef->pltrelsize;
638                 ef->pltrelsize = 0;
639         }
640
641         ef->ddbsymtab = ef->symtab;
642         ef->ddbsymcnt = ef->nchains;
643         ef->ddbstrtab = ef->strtab;
644         ef->ddbstrcnt = ef->strsz;
645
646         return elf_cpu_parse_dynamic(ef->address, ef->dynamic);
647 }
648
649 #define LS_PADDING      0x90909090
650 static int
651 parse_dpcpu(elf_file_t ef)
652 {
653         int error, size;
654 #if defined(__i386__)
655         uint32_t pad;
656 #endif
657
658         ef->pcpu_start = 0;
659         ef->pcpu_stop = 0;
660         error = link_elf_lookup_set(&ef->lf, "pcpu", (void ***)&ef->pcpu_start,
661             (void ***)&ef->pcpu_stop, NULL);
662         /* Error just means there is no pcpu set to relocate. */
663         if (error != 0)
664                 return (0);
665         size = (uintptr_t)ef->pcpu_stop - (uintptr_t)ef->pcpu_start;
666         /* Empty set? */
667         if (size < 1)
668                 return (0);
669 #if defined(__i386__)
670         /* In case we do find __start/stop_set_ symbols double-check. */
671         if (size < 4) {
672                 uprintf("Kernel module '%s' must be recompiled with "
673                     "linker script\n", ef->lf.pathname);
674                 return (ENOEXEC);
675         }
676
677         /* Padding from linker-script correct? */
678         pad = *(uint32_t *)((uintptr_t)ef->pcpu_stop - sizeof(pad));
679         if (pad != LS_PADDING) {
680                 uprintf("Kernel module '%s' must be recompiled with "
681                     "linker script, invalid padding %#04x (%#04x)\n",
682                     ef->lf.pathname, pad, LS_PADDING);
683                 return (ENOEXEC);
684         }
685         /* If we only have valid padding, nothing to do. */
686         if (size == 4)
687                 return (0);
688 #endif
689         /*
690          * Allocate space in the primary pcpu area.  Copy in our
691          * initialization from the data section and then initialize
692          * all per-cpu storage from that.
693          */
694         ef->pcpu_base = (Elf_Addr)(uintptr_t)dpcpu_alloc(size);
695         if (ef->pcpu_base == 0) {
696                 printf("%s: pcpu module space is out of space; "
697                     "cannot allocate %d for %s\n",
698                     __func__, size, ef->lf.pathname);
699                 return (ENOSPC);
700         }
701         memcpy((void *)ef->pcpu_base, (void *)ef->pcpu_start, size);
702         dpcpu_copy((void *)ef->pcpu_base, size);
703         elf_set_add(&set_pcpu_list, ef->pcpu_start, ef->pcpu_stop,
704             ef->pcpu_base);
705
706         return (0);
707 }
708
709 #ifdef VIMAGE
710 static int
711 parse_vnet(elf_file_t ef)
712 {
713         int error, size;
714 #if defined(__i386__)
715         uint32_t pad;
716 #endif
717
718         ef->vnet_start = 0;
719         ef->vnet_stop = 0;
720         error = link_elf_lookup_set(&ef->lf, "vnet", (void ***)&ef->vnet_start,
721             (void ***)&ef->vnet_stop, NULL);
722         /* Error just means there is no vnet data set to relocate. */
723         if (error != 0)
724                 return (0);
725         size = (uintptr_t)ef->vnet_stop - (uintptr_t)ef->vnet_start;
726         /* Empty set? */
727         if (size < 1)
728                 return (0);
729 #if defined(__i386__)
730         /* In case we do find __start/stop_set_ symbols double-check. */
731         if (size < 4) {
732                 uprintf("Kernel module '%s' must be recompiled with "
733                     "linker script\n", ef->lf.pathname);
734                 return (ENOEXEC);
735         }
736
737         /* Padding from linker-script correct? */
738         pad = *(uint32_t *)((uintptr_t)ef->vnet_stop - sizeof(pad));
739         if (pad != LS_PADDING) {
740                 uprintf("Kernel module '%s' must be recompiled with "
741                     "linker script, invalid padding %#04x (%#04x)\n",
742                     ef->lf.pathname, pad, LS_PADDING);
743                 return (ENOEXEC);
744         }
745         /* If we only have valid padding, nothing to do. */
746         if (size == 4)
747                 return (0);
748 #endif
749         /*
750          * Allocate space in the primary vnet area.  Copy in our
751          * initialization from the data section and then initialize
752          * all per-vnet storage from that.
753          */
754         ef->vnet_base = (Elf_Addr)(uintptr_t)vnet_data_alloc(size);
755         if (ef->vnet_base == 0) {
756                 printf("%s: vnet module space is out of space; "
757                     "cannot allocate %d for %s\n",
758                     __func__, size, ef->lf.pathname);
759                 return (ENOSPC);
760         }
761         memcpy((void *)ef->vnet_base, (void *)ef->vnet_start, size);
762         vnet_data_copy((void *)ef->vnet_base, size);
763         elf_set_add(&set_vnet_list, ef->vnet_start, ef->vnet_stop,
764             ef->vnet_base);
765
766         return (0);
767 }
768 #endif
769 #undef LS_PADDING
770
771 /*
772  * Apply the specified protection to the loadable segments of a preloaded linker
773  * file.
774  */
775 static int
776 preload_protect(elf_file_t ef, vm_prot_t prot)
777 {
778 #if defined(__aarch64__) || defined(__amd64__)
779         Elf_Ehdr *hdr;
780         Elf_Phdr *phdr, *phlimit;
781         vm_prot_t nprot;
782         int error;
783
784         error = 0;
785         hdr = (Elf_Ehdr *)ef->address;
786         phdr = (Elf_Phdr *)(ef->address + hdr->e_phoff);
787         phlimit = phdr + hdr->e_phnum;
788         for (; phdr < phlimit; phdr++) {
789                 if (phdr->p_type != PT_LOAD)
790                         continue;
791
792                 nprot = prot | VM_PROT_READ;
793                 if ((phdr->p_flags & PF_W) != 0)
794                         nprot |= VM_PROT_WRITE;
795                 if ((phdr->p_flags & PF_X) != 0)
796                         nprot |= VM_PROT_EXECUTE;
797                 error = pmap_change_prot((vm_offset_t)ef->address +
798                     phdr->p_vaddr, round_page(phdr->p_memsz), nprot);
799                 if (error != 0)
800                         break;
801         }
802         return (error);
803 #else
804         return (0);
805 #endif
806 }
807
808 #ifdef __arm__
809 /*
810  * Locate the ARM exception/unwind table info for DDB and stack(9) use by
811  * searching for the section header that describes it.  There may be no unwind
812  * info, for example in a module containing only data.
813  */
814 static void
815 link_elf_locate_exidx(linker_file_t lf, Elf_Shdr *shdr, int nhdr)
816 {
817         int i;
818
819         for (i = 0; i < nhdr; i++) {
820                 if (shdr[i].sh_type == SHT_ARM_EXIDX) {
821                         lf->exidx_addr = shdr[i].sh_addr + lf->address;
822                         lf->exidx_size = shdr[i].sh_size;
823                         break;
824                 }
825         }
826 }
827
828 /*
829  * Locate the section headers metadata in a preloaded module, then use it to
830  * locate the exception/unwind table in the module.  The size of the metadata
831  * block is stored in a uint32 word immediately before the data itself, and a
832  * comment in preload_search_info() says it is safe to rely on that.
833  */
834 static void
835 link_elf_locate_exidx_preload(struct linker_file *lf, caddr_t modptr)
836 {
837         uint32_t *modinfo;
838         Elf_Shdr *shdr;
839         uint32_t  nhdr;
840
841         modinfo = (uint32_t *)preload_search_info(modptr,
842             MODINFO_METADATA | MODINFOMD_SHDR);
843         if (modinfo != NULL) {
844                 shdr = (Elf_Shdr *)modinfo;
845                 nhdr = modinfo[-1] / sizeof(Elf_Shdr);
846                 link_elf_locate_exidx(lf, shdr, nhdr);
847         }
848 }
849
850 #endif /* __arm__ */
851
852 static int
853 link_elf_link_preload(linker_class_t cls, const char *filename,
854     linker_file_t *result)
855 {
856         Elf_Addr *ctors_addrp;
857         Elf_Size *ctors_sizep;
858         caddr_t modptr, baseptr, sizeptr, dynptr;
859         char *type;
860         elf_file_t ef;
861         linker_file_t lf;
862         int error;
863         vm_offset_t dp;
864
865         /* Look to see if we have the file preloaded */
866         modptr = preload_search_by_name(filename);
867         if (modptr == NULL)
868                 return (ENOENT);
869
870         type = (char *)preload_search_info(modptr, MODINFO_TYPE);
871         baseptr = preload_search_info(modptr, MODINFO_ADDR);
872         sizeptr = preload_search_info(modptr, MODINFO_SIZE);
873         dynptr = preload_search_info(modptr,
874             MODINFO_METADATA | MODINFOMD_DYNAMIC);
875         if (type == NULL ||
876             (strcmp(type, "elf" __XSTRING(__ELF_WORD_SIZE) " module") != 0 &&
877              strcmp(type, "elf module") != 0))
878                 return (EFTYPE);
879         if (baseptr == NULL || sizeptr == NULL || dynptr == NULL)
880                 return (EINVAL);
881
882         lf = linker_make_file(filename, &link_elf_class);
883         if (lf == NULL)
884                 return (ENOMEM);
885
886         ef = (elf_file_t) lf;
887         ef->preloaded = 1;
888         ef->modptr = modptr;
889         ef->address = *(caddr_t *)baseptr;
890 #ifdef SPARSE_MAPPING
891         ef->object = NULL;
892 #endif
893         dp = (vm_offset_t)ef->address + *(vm_offset_t *)dynptr;
894         ef->dynamic = (Elf_Dyn *)dp;
895         lf->address = ef->address;
896         lf->size = *(size_t *)sizeptr;
897
898         ctors_addrp = (Elf_Addr *)preload_search_info(modptr,
899             MODINFO_METADATA | MODINFOMD_CTORS_ADDR);
900         ctors_sizep = (Elf_Size *)preload_search_info(modptr,
901             MODINFO_METADATA | MODINFOMD_CTORS_SIZE);
902         if (ctors_addrp != NULL && ctors_sizep != NULL) {
903                 lf->ctors_addr = ef->address + *ctors_addrp;
904                 lf->ctors_size = *ctors_sizep;
905         }
906
907 #ifdef __arm__
908         link_elf_locate_exidx_preload(lf, modptr);
909 #endif
910
911         error = parse_dynamic(ef);
912         if (error == 0)
913                 error = parse_dpcpu(ef);
914 #ifdef VIMAGE
915         if (error == 0)
916                 error = parse_vnet(ef);
917 #endif
918         if (error == 0)
919                 error = preload_protect(ef, VM_PROT_ALL);
920         if (error != 0) {
921                 linker_file_unload(lf, LINKER_UNLOAD_FORCE);
922                 return (error);
923         }
924         link_elf_reloc_local(lf);
925         *result = lf;
926         return (0);
927 }
928
929 static int
930 link_elf_link_preload_finish(linker_file_t lf)
931 {
932         elf_file_t ef;
933         int error;
934
935         ef = (elf_file_t) lf;
936         error = relocate_file(ef);
937         if (error == 0)
938                 error = preload_protect(ef, VM_PROT_NONE);
939         if (error != 0)
940                 return (error);
941         (void)link_elf_preload_parse_symbols(ef);
942
943         return (link_elf_link_common_finish(lf));
944 }
945
946 static int
947 link_elf_load_file(linker_class_t cls, const char* filename,
948     linker_file_t* result)
949 {
950         struct nameidata nd;
951         struct thread* td = curthread;  /* XXX */
952         Elf_Ehdr *hdr;
953         caddr_t firstpage, segbase;
954         int nbytes, i;
955         Elf_Phdr *phdr;
956         Elf_Phdr *phlimit;
957         Elf_Phdr *segs[MAXSEGS];
958         int nsegs;
959         Elf_Phdr *phdyn;
960         caddr_t mapbase;
961         size_t mapsize;
962         Elf_Addr base_vaddr;
963         Elf_Addr base_vlimit;
964         int error = 0;
965         ssize_t resid;
966         int flags;
967         elf_file_t ef;
968         linker_file_t lf;
969         Elf_Shdr *shdr;
970         int symtabindex;
971         int symstrindex;
972         int shstrindex;
973         int symcnt;
974         int strcnt;
975         char *shstrs;
976
977         shdr = NULL;
978         lf = NULL;
979         shstrs = NULL;
980
981         NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, filename, td);
982         flags = FREAD;
983         error = vn_open(&nd, &flags, 0, NULL);
984         if (error != 0)
985                 return (error);
986         NDFREE(&nd, NDF_ONLY_PNBUF);
987         if (nd.ni_vp->v_type != VREG) {
988                 error = ENOEXEC;
989                 firstpage = NULL;
990                 goto out;
991         }
992 #ifdef MAC
993         error = mac_kld_check_load(curthread->td_ucred, nd.ni_vp);
994         if (error != 0) {
995                 firstpage = NULL;
996                 goto out;
997         }
998 #endif
999
1000         /*
1001          * Read the elf header from the file.
1002          */
1003         firstpage = malloc(PAGE_SIZE, M_LINKER, M_WAITOK);
1004         hdr = (Elf_Ehdr *)firstpage;
1005         error = vn_rdwr(UIO_READ, nd.ni_vp, firstpage, PAGE_SIZE, 0,
1006             UIO_SYSSPACE, IO_NODELOCKED, td->td_ucred, NOCRED,
1007             &resid, td);
1008         nbytes = PAGE_SIZE - resid;
1009         if (error != 0)
1010                 goto out;
1011
1012         if (!IS_ELF(*hdr)) {
1013                 error = ENOEXEC;
1014                 goto out;
1015         }
1016
1017         if (hdr->e_ident[EI_CLASS] != ELF_TARG_CLASS ||
1018             hdr->e_ident[EI_DATA] != ELF_TARG_DATA) {
1019                 link_elf_error(filename, "Unsupported file layout");
1020                 error = ENOEXEC;
1021                 goto out;
1022         }
1023         if (hdr->e_ident[EI_VERSION] != EV_CURRENT ||
1024             hdr->e_version != EV_CURRENT) {
1025                 link_elf_error(filename, "Unsupported file version");
1026                 error = ENOEXEC;
1027                 goto out;
1028         }
1029         if (hdr->e_type != ET_EXEC && hdr->e_type != ET_DYN) {
1030                 error = ENOSYS;
1031                 goto out;
1032         }
1033         if (hdr->e_machine != ELF_TARG_MACH) {
1034                 link_elf_error(filename, "Unsupported machine");
1035                 error = ENOEXEC;
1036                 goto out;
1037         }
1038
1039         /*
1040          * We rely on the program header being in the first page.
1041          * This is not strictly required by the ABI specification, but
1042          * it seems to always true in practice.  And, it simplifies
1043          * things considerably.
1044          */
1045         if (!((hdr->e_phentsize == sizeof(Elf_Phdr)) &&
1046               (hdr->e_phoff + hdr->e_phnum*sizeof(Elf_Phdr) <= PAGE_SIZE) &&
1047               (hdr->e_phoff + hdr->e_phnum*sizeof(Elf_Phdr) <= nbytes)))
1048                 link_elf_error(filename, "Unreadable program headers");
1049
1050         /*
1051          * Scan the program header entries, and save key information.
1052          *
1053          * We rely on there being exactly two load segments, text and data,
1054          * in that order.
1055          */
1056         phdr = (Elf_Phdr *) (firstpage + hdr->e_phoff);
1057         phlimit = phdr + hdr->e_phnum;
1058         nsegs = 0;
1059         phdyn = NULL;
1060         while (phdr < phlimit) {
1061                 switch (phdr->p_type) {
1062                 case PT_LOAD:
1063                         if (nsegs == MAXSEGS) {
1064                                 link_elf_error(filename, "Too many sections");
1065                                 error = ENOEXEC;
1066                                 goto out;
1067                         }
1068                         /*
1069                          * XXX: We just trust they come in right order ??
1070                          */
1071                         segs[nsegs] = phdr;
1072                         ++nsegs;
1073                         break;
1074
1075                 case PT_DYNAMIC:
1076                         phdyn = phdr;
1077                         break;
1078
1079                 case PT_INTERP:
1080                         error = ENOSYS;
1081                         goto out;
1082                 }
1083
1084                 ++phdr;
1085         }
1086         if (phdyn == NULL) {
1087                 link_elf_error(filename, "Object is not dynamically-linked");
1088                 error = ENOEXEC;
1089                 goto out;
1090         }
1091         if (nsegs == 0) {
1092                 link_elf_error(filename, "No sections");
1093                 error = ENOEXEC;
1094                 goto out;
1095         }
1096
1097         /*
1098          * Allocate the entire address space of the object, to stake
1099          * out our contiguous region, and to establish the base
1100          * address for relocation.
1101          */
1102         base_vaddr = trunc_page(segs[0]->p_vaddr);
1103         base_vlimit = round_page(segs[nsegs - 1]->p_vaddr +
1104             segs[nsegs - 1]->p_memsz);
1105         mapsize = base_vlimit - base_vaddr;
1106
1107         lf = linker_make_file(filename, &link_elf_class);
1108         if (lf == NULL) {
1109                 error = ENOMEM;
1110                 goto out;
1111         }
1112
1113         ef = (elf_file_t) lf;
1114 #ifdef SPARSE_MAPPING
1115         ef->object = vm_pager_allocate(OBJT_PHYS, NULL, mapsize, VM_PROT_ALL,
1116             0, thread0.td_ucred);
1117         if (ef->object == NULL) {
1118                 error = ENOMEM;
1119                 goto out;
1120         }
1121 #ifdef __amd64__
1122         mapbase = (caddr_t)KERNBASE;
1123 #else
1124         mapbase = (caddr_t)vm_map_min(kernel_map);
1125 #endif
1126         /*
1127          * Mapping protections are downgraded after relocation processing.
1128          */
1129         error = vm_map_find(kernel_map, ef->object, 0,
1130             (vm_offset_t *)&mapbase, mapsize, 0, VMFS_OPTIMAL_SPACE,
1131             VM_PROT_ALL, VM_PROT_ALL, 0);
1132         if (error != 0) {
1133                 vm_object_deallocate(ef->object);
1134                 ef->object = NULL;
1135                 goto out;
1136         }
1137 #else
1138         mapbase = malloc_exec(mapsize, M_LINKER, M_WAITOK);
1139 #endif
1140         ef->address = mapbase;
1141
1142         /*
1143          * Read the text and data sections and zero the bss.
1144          */
1145         for (i = 0; i < nsegs; i++) {
1146                 segbase = mapbase + segs[i]->p_vaddr - base_vaddr;
1147
1148 #ifdef SPARSE_MAPPING
1149                 /*
1150                  * Consecutive segments may have different mapping permissions,
1151                  * so be strict and verify that their mappings do not overlap.
1152                  */
1153                 if (((vm_offset_t)segbase & PAGE_MASK) != 0) {
1154                         error = EINVAL;
1155                         goto out;
1156                 }
1157
1158                 error = vm_map_wire(kernel_map,
1159                     (vm_offset_t)segbase,
1160                     (vm_offset_t)segbase + round_page(segs[i]->p_memsz),
1161                     VM_MAP_WIRE_SYSTEM | VM_MAP_WIRE_NOHOLES);
1162                 if (error != KERN_SUCCESS) {
1163                         error = ENOMEM;
1164                         goto out;
1165                 }
1166 #endif
1167
1168                 error = vn_rdwr(UIO_READ, nd.ni_vp,
1169                     segbase, segs[i]->p_filesz, segs[i]->p_offset,
1170                     UIO_SYSSPACE, IO_NODELOCKED, td->td_ucred, NOCRED,
1171                     &resid, td);
1172                 if (error != 0)
1173                         goto out;
1174                 bzero(segbase + segs[i]->p_filesz,
1175                     segs[i]->p_memsz - segs[i]->p_filesz);
1176         }
1177
1178 #ifdef GPROF
1179         /* Update profiling information with the new text segment. */
1180         mtx_lock(&Giant);
1181         kmupetext((uintfptr_t)(mapbase + segs[0]->p_vaddr - base_vaddr +
1182             segs[0]->p_memsz));
1183         mtx_unlock(&Giant);
1184 #endif
1185
1186         ef->dynamic = (Elf_Dyn *) (mapbase + phdyn->p_vaddr - base_vaddr);
1187
1188         lf->address = ef->address;
1189         lf->size = mapsize;
1190
1191         error = parse_dynamic(ef);
1192         if (error != 0)
1193                 goto out;
1194         error = parse_dpcpu(ef);
1195         if (error != 0)
1196                 goto out;
1197 #ifdef VIMAGE
1198         error = parse_vnet(ef);
1199         if (error != 0)
1200                 goto out;
1201 #endif
1202         link_elf_reloc_local(lf);
1203
1204         VOP_UNLOCK(nd.ni_vp);
1205         error = linker_load_dependencies(lf);
1206         vn_lock(nd.ni_vp, LK_EXCLUSIVE | LK_RETRY);
1207         if (error != 0)
1208                 goto out;
1209         error = relocate_file(ef);
1210         if (error != 0)
1211                 goto out;
1212
1213 #ifdef SPARSE_MAPPING
1214         /*
1215          * Downgrade permissions on text segment mappings now that relocation
1216          * processing is complete.  Restrict permissions on read-only segments.
1217          */
1218         for (i = 0; i < nsegs; i++) {
1219                 vm_prot_t prot;
1220
1221                 if (segs[i]->p_type != PT_LOAD)
1222                         continue;
1223
1224                 prot = VM_PROT_READ;
1225                 if ((segs[i]->p_flags & PF_W) != 0)
1226                         prot |= VM_PROT_WRITE;
1227                 if ((segs[i]->p_flags & PF_X) != 0)
1228                         prot |= VM_PROT_EXECUTE;
1229                 segbase = mapbase + segs[i]->p_vaddr - base_vaddr;
1230                 error = vm_map_protect(kernel_map,
1231                     (vm_offset_t)segbase,
1232                     (vm_offset_t)segbase + round_page(segs[i]->p_memsz),
1233                     prot, 0, VM_MAP_PROTECT_SET_PROT);
1234                 if (error != KERN_SUCCESS) {
1235                         error = ENOMEM;
1236                         goto out;
1237                 }
1238         }
1239 #endif
1240
1241         /*
1242          * Try and load the symbol table if it's present.  (you can
1243          * strip it!)
1244          */
1245         nbytes = hdr->e_shnum * hdr->e_shentsize;
1246         if (nbytes == 0 || hdr->e_shoff == 0)
1247                 goto nosyms;
1248         shdr = malloc(nbytes, M_LINKER, M_WAITOK | M_ZERO);
1249         error = vn_rdwr(UIO_READ, nd.ni_vp,
1250             (caddr_t)shdr, nbytes, hdr->e_shoff,
1251             UIO_SYSSPACE, IO_NODELOCKED, td->td_ucred, NOCRED,
1252             &resid, td);
1253         if (error != 0)
1254                 goto out;
1255
1256         /* Read section string table */
1257         shstrindex = hdr->e_shstrndx;
1258         if (shstrindex != 0 && shdr[shstrindex].sh_type == SHT_STRTAB &&
1259             shdr[shstrindex].sh_size != 0) {
1260                 nbytes = shdr[shstrindex].sh_size;
1261                 shstrs = malloc(nbytes, M_LINKER, M_WAITOK | M_ZERO);
1262                 error = vn_rdwr(UIO_READ, nd.ni_vp, (caddr_t)shstrs, nbytes,
1263                     shdr[shstrindex].sh_offset, UIO_SYSSPACE, IO_NODELOCKED,
1264                     td->td_ucred, NOCRED, &resid, td);
1265                 if (error)
1266                         goto out;
1267         }
1268
1269         symtabindex = -1;
1270         symstrindex = -1;
1271         for (i = 0; i < hdr->e_shnum; i++) {
1272                 if (shdr[i].sh_type == SHT_SYMTAB) {
1273                         symtabindex = i;
1274                         symstrindex = shdr[i].sh_link;
1275                 } else if (shstrs != NULL && shdr[i].sh_name != 0 &&
1276                     strcmp(shstrs + shdr[i].sh_name, ".ctors") == 0) {
1277                         /* Record relocated address and size of .ctors. */
1278                         lf->ctors_addr = mapbase + shdr[i].sh_addr - base_vaddr;
1279                         lf->ctors_size = shdr[i].sh_size;
1280                 }
1281         }
1282         if (symtabindex < 0 || symstrindex < 0)
1283                 goto nosyms;
1284
1285         symcnt = shdr[symtabindex].sh_size;
1286         ef->symbase = malloc(symcnt, M_LINKER, M_WAITOK);
1287         strcnt = shdr[symstrindex].sh_size;
1288         ef->strbase = malloc(strcnt, M_LINKER, M_WAITOK);
1289
1290         error = vn_rdwr(UIO_READ, nd.ni_vp,
1291             ef->symbase, symcnt, shdr[symtabindex].sh_offset,
1292             UIO_SYSSPACE, IO_NODELOCKED, td->td_ucred, NOCRED,
1293             &resid, td);
1294         if (error != 0)
1295                 goto out;
1296         error = vn_rdwr(UIO_READ, nd.ni_vp,
1297             ef->strbase, strcnt, shdr[symstrindex].sh_offset,
1298             UIO_SYSSPACE, IO_NODELOCKED, td->td_ucred, NOCRED,
1299             &resid, td);
1300         if (error != 0)
1301                 goto out;
1302
1303         ef->ddbsymcnt = symcnt / sizeof(Elf_Sym);
1304         ef->ddbsymtab = (const Elf_Sym *)ef->symbase;
1305         ef->ddbstrcnt = strcnt;
1306         ef->ddbstrtab = ef->strbase;
1307
1308 nosyms:
1309
1310 #ifdef __arm__
1311         link_elf_locate_exidx(lf, shdr, hdr->e_shnum);
1312 #endif
1313
1314         error = link_elf_link_common_finish(lf);
1315         if (error != 0)
1316                 goto out;
1317
1318         *result = lf;
1319
1320 out:
1321         VOP_UNLOCK(nd.ni_vp);
1322         vn_close(nd.ni_vp, FREAD, td->td_ucred, td);
1323         if (error != 0 && lf != NULL)
1324                 linker_file_unload(lf, LINKER_UNLOAD_FORCE);
1325         free(shdr, M_LINKER);
1326         free(firstpage, M_LINKER);
1327         free(shstrs, M_LINKER);
1328
1329         return (error);
1330 }
1331
1332 Elf_Addr
1333 elf_relocaddr(linker_file_t lf, Elf_Addr x)
1334 {
1335         elf_file_t ef;
1336
1337         KASSERT(lf->ops->cls == (kobj_class_t)&link_elf_class,
1338             ("elf_relocaddr: unexpected linker file %p", lf));
1339
1340         ef = (elf_file_t)lf;
1341         if (x >= ef->pcpu_start && x < ef->pcpu_stop)
1342                 return ((x - ef->pcpu_start) + ef->pcpu_base);
1343 #ifdef VIMAGE
1344         if (x >= ef->vnet_start && x < ef->vnet_stop)
1345                 return ((x - ef->vnet_start) + ef->vnet_base);
1346 #endif
1347         return (x);
1348 }
1349
1350 static void
1351 link_elf_unload_file(linker_file_t file)
1352 {
1353         elf_file_t ef = (elf_file_t) file;
1354
1355         if (ef->pcpu_base != 0) {
1356                 dpcpu_free((void *)ef->pcpu_base,
1357                     ef->pcpu_stop - ef->pcpu_start);
1358                 elf_set_delete(&set_pcpu_list, ef->pcpu_start);
1359         }
1360 #ifdef VIMAGE
1361         if (ef->vnet_base != 0) {
1362                 vnet_data_free((void *)ef->vnet_base,
1363                     ef->vnet_stop - ef->vnet_start);
1364                 elf_set_delete(&set_vnet_list, ef->vnet_start);
1365         }
1366 #endif
1367 #ifdef GDB
1368         if (ef->gdb.l_ld != NULL) {
1369                 GDB_STATE(RT_DELETE);
1370                 free((void *)(uintptr_t)ef->gdb.l_name, M_LINKER);
1371                 link_elf_delete_gdb(&ef->gdb);
1372                 GDB_STATE(RT_CONSISTENT);
1373         }
1374 #endif
1375
1376         /* Notify MD code that a module is being unloaded. */
1377         elf_cpu_unload_file(file);
1378
1379         if (ef->preloaded) {
1380                 link_elf_unload_preload(file);
1381                 return;
1382         }
1383
1384 #ifdef SPARSE_MAPPING
1385         if (ef->object != NULL) {
1386                 vm_map_remove(kernel_map, (vm_offset_t) ef->address,
1387                     (vm_offset_t) ef->address
1388                     + (ef->object->size << PAGE_SHIFT));
1389         }
1390 #else
1391         free(ef->address, M_LINKER);
1392 #endif
1393         free(ef->symbase, M_LINKER);
1394         free(ef->strbase, M_LINKER);
1395         free(ef->ctftab, M_LINKER);
1396         free(ef->ctfoff, M_LINKER);
1397         free(ef->typoff, M_LINKER);
1398 }
1399
1400 static void
1401 link_elf_unload_preload(linker_file_t file)
1402 {
1403
1404         if (file->pathname != NULL)
1405                 preload_delete_name(file->pathname);
1406 }
1407
1408 static const char *
1409 symbol_name(elf_file_t ef, Elf_Size r_info)
1410 {
1411         const Elf_Sym *ref;
1412
1413         if (ELF_R_SYM(r_info)) {
1414                 ref = ef->symtab + ELF_R_SYM(r_info);
1415                 return (ef->strtab + ref->st_name);
1416         }
1417         return (NULL);
1418 }
1419
1420 static int
1421 symbol_type(elf_file_t ef, Elf_Size r_info)
1422 {
1423         const Elf_Sym *ref;
1424
1425         if (ELF_R_SYM(r_info)) {
1426                 ref = ef->symtab + ELF_R_SYM(r_info);
1427                 return (ELF_ST_TYPE(ref->st_info));
1428         }
1429         return (STT_NOTYPE);
1430 }
1431
1432 static int
1433 relocate_file1(elf_file_t ef, elf_lookup_fn lookup, elf_reloc_fn reloc,
1434     bool ifuncs)
1435 {
1436         const Elf_Rel *rel;
1437         const Elf_Rela *rela;
1438         const char *symname;
1439
1440 #define APPLY_RELOCS(iter, tbl, tblsize, type) do {                     \
1441         for ((iter) = (tbl); (iter) != NULL &&                          \
1442             (iter) < (tbl) + (tblsize) / sizeof(*(iter)); (iter)++) {   \
1443                 if ((symbol_type(ef, (iter)->r_info) ==                 \
1444                     STT_GNU_IFUNC ||                                    \
1445                     elf_is_ifunc_reloc((iter)->r_info)) != ifuncs)      \
1446                         continue;                                       \
1447                 if (reloc(&ef->lf, (Elf_Addr)ef->address,               \
1448                     (iter), (type), lookup)) {                          \
1449                         symname = symbol_name(ef, (iter)->r_info);      \
1450                         printf("link_elf: symbol %s undefined\n",       \
1451                             symname);                                   \
1452                         return (ENOENT);                                \
1453                 }                                                       \
1454         }                                                               \
1455 } while (0)
1456
1457         APPLY_RELOCS(rel, ef->rel, ef->relsize, ELF_RELOC_REL);
1458         APPLY_RELOCS(rela, ef->rela, ef->relasize, ELF_RELOC_RELA);
1459         APPLY_RELOCS(rel, ef->pltrel, ef->pltrelsize, ELF_RELOC_REL);
1460         APPLY_RELOCS(rela, ef->pltrela, ef->pltrelasize, ELF_RELOC_RELA);
1461
1462 #undef APPLY_RELOCS
1463
1464         return (0);
1465 }
1466
1467 static int
1468 relocate_file(elf_file_t ef)
1469 {
1470         int error;
1471
1472         error = relocate_file1(ef, elf_lookup, elf_reloc, false);
1473         if (error == 0)
1474                 error = relocate_file1(ef, elf_lookup, elf_reloc, true);
1475         return (error);
1476 }
1477
1478 /*
1479  * Hash function for symbol table lookup.  Don't even think about changing
1480  * this.  It is specified by the System V ABI.
1481  */
1482 static unsigned long
1483 elf_hash(const char *name)
1484 {
1485         const unsigned char *p = (const unsigned char *) name;
1486         unsigned long h = 0;
1487         unsigned long g;
1488
1489         while (*p != '\0') {
1490                 h = (h << 4) + *p++;
1491                 if ((g = h & 0xf0000000) != 0)
1492                         h ^= g >> 24;
1493                 h &= ~g;
1494         }
1495         return (h);
1496 }
1497
1498 static int
1499 link_elf_lookup_symbol1(linker_file_t lf, const char *name, c_linker_sym_t *sym,
1500     bool see_local)
1501 {
1502         elf_file_t ef = (elf_file_t) lf;
1503         unsigned long symnum;
1504         const Elf_Sym* symp;
1505         const char *strp;
1506         unsigned long hash;
1507
1508         /* If we don't have a hash, bail. */
1509         if (ef->buckets == NULL || ef->nbuckets == 0) {
1510                 printf("link_elf_lookup_symbol: missing symbol hash table\n");
1511                 return (ENOENT);
1512         }
1513
1514         /* First, search hashed global symbols */
1515         hash = elf_hash(name);
1516         symnum = ef->buckets[hash % ef->nbuckets];
1517
1518         while (symnum != STN_UNDEF) {
1519                 if (symnum >= ef->nchains) {
1520                         printf("%s: corrupt symbol table\n", __func__);
1521                         return (ENOENT);
1522                 }
1523
1524                 symp = ef->symtab + symnum;
1525                 if (symp->st_name == 0) {
1526                         printf("%s: corrupt symbol table\n", __func__);
1527                         return (ENOENT);
1528                 }
1529
1530                 strp = ef->strtab + symp->st_name;
1531
1532                 if (strcmp(name, strp) == 0) {
1533                         if (symp->st_shndx != SHN_UNDEF ||
1534                             (symp->st_value != 0 &&
1535                             (ELF_ST_TYPE(symp->st_info) == STT_FUNC ||
1536                             ELF_ST_TYPE(symp->st_info) == STT_GNU_IFUNC))) {
1537                                 if (see_local ||
1538                                     ELF_ST_BIND(symp->st_info) != STB_LOCAL) {
1539                                         *sym = (c_linker_sym_t) symp;
1540                                         return (0);
1541                                 }
1542                         }
1543                         return (ENOENT);
1544                 }
1545
1546                 symnum = ef->chains[symnum];
1547         }
1548
1549         return (ENOENT);
1550 }
1551
1552 static int
1553 link_elf_lookup_symbol(linker_file_t lf, const char *name, c_linker_sym_t *sym)
1554 {
1555         return (link_elf_lookup_symbol1(lf, name, sym, false));
1556 }
1557
1558 static int
1559 link_elf_lookup_debug_symbol(linker_file_t lf, const char *name,
1560     c_linker_sym_t *sym)
1561 {
1562         elf_file_t ef = (elf_file_t)lf;
1563         const Elf_Sym* symp;
1564         const char *strp;
1565         int i;
1566
1567         if (link_elf_lookup_symbol1(lf, name, sym, true) == 0)
1568                 return (0);
1569
1570         for (i = 0, symp = ef->ddbsymtab; i < ef->ddbsymcnt; i++, symp++) {
1571                 strp = ef->ddbstrtab + symp->st_name;
1572                 if (strcmp(name, strp) == 0) {
1573                         if (symp->st_shndx != SHN_UNDEF ||
1574                             (symp->st_value != 0 &&
1575                             (ELF_ST_TYPE(symp->st_info) == STT_FUNC ||
1576                             ELF_ST_TYPE(symp->st_info) == STT_GNU_IFUNC))) {
1577                                 *sym = (c_linker_sym_t) symp;
1578                                 return (0);
1579                         }
1580                         return (ENOENT);
1581                 }
1582         }
1583
1584         return (ENOENT);
1585 }
1586
1587 static int
1588 link_elf_symbol_values1(linker_file_t lf, c_linker_sym_t sym,
1589     linker_symval_t *symval, bool see_local)
1590 {
1591         elf_file_t ef;
1592         const Elf_Sym *es;
1593         caddr_t val;
1594
1595         ef = (elf_file_t)lf;
1596         es = (const Elf_Sym *)sym;
1597         if (es >= ef->symtab && es < ef->symtab + ef->nchains) {
1598                 if (!see_local && ELF_ST_BIND(es->st_info) == STB_LOCAL)
1599                         return (ENOENT);
1600                 symval->name = ef->strtab + es->st_name;
1601                 val = (caddr_t)ef->address + es->st_value;
1602                 if (ELF_ST_TYPE(es->st_info) == STT_GNU_IFUNC)
1603                         val = ((caddr_t (*)(void))val)();
1604                 symval->value = val;
1605                 symval->size = es->st_size;
1606                 return (0);
1607         }
1608         return (ENOENT);
1609 }
1610
1611 static int
1612 link_elf_symbol_values(linker_file_t lf, c_linker_sym_t sym,
1613     linker_symval_t *symval)
1614 {
1615         return (link_elf_symbol_values1(lf, sym, symval, false));
1616 }
1617
1618 static int
1619 link_elf_debug_symbol_values(linker_file_t lf, c_linker_sym_t sym,
1620     linker_symval_t *symval)
1621 {
1622         elf_file_t ef = (elf_file_t)lf;
1623         const Elf_Sym *es = (const Elf_Sym *)sym;
1624         caddr_t val;
1625
1626         if (link_elf_symbol_values1(lf, sym, symval, true) == 0)
1627                 return (0);
1628         if (ef->symtab == ef->ddbsymtab)
1629                 return (ENOENT);
1630
1631         if (es >= ef->ddbsymtab && es < (ef->ddbsymtab + ef->ddbsymcnt)) {
1632                 symval->name = ef->ddbstrtab + es->st_name;
1633                 val = (caddr_t)ef->address + es->st_value;
1634                 if (ELF_ST_TYPE(es->st_info) == STT_GNU_IFUNC)
1635                         val = ((caddr_t (*)(void))val)();
1636                 symval->value = val;
1637                 symval->size = es->st_size;
1638                 return (0);
1639         }
1640         return (ENOENT);
1641 }
1642
1643 static int
1644 link_elf_search_symbol(linker_file_t lf, caddr_t value,
1645     c_linker_sym_t *sym, long *diffp)
1646 {
1647         elf_file_t ef = (elf_file_t)lf;
1648         u_long off = (uintptr_t)(void *)value;
1649         u_long diff = off;
1650         u_long st_value;
1651         const Elf_Sym *es;
1652         const Elf_Sym *best = NULL;
1653         int i;
1654
1655         for (i = 0, es = ef->ddbsymtab; i < ef->ddbsymcnt; i++, es++) {
1656                 if (es->st_name == 0)
1657                         continue;
1658                 st_value = es->st_value + (uintptr_t) (void *) ef->address;
1659                 if (off >= st_value) {
1660                         if (off - st_value < diff) {
1661                                 diff = off - st_value;
1662                                 best = es;
1663                                 if (diff == 0)
1664                                         break;
1665                         } else if (off - st_value == diff) {
1666                                 best = es;
1667                         }
1668                 }
1669         }
1670         if (best == NULL)
1671                 *diffp = off;
1672         else
1673                 *diffp = diff;
1674         *sym = (c_linker_sym_t) best;
1675
1676         return (0);
1677 }
1678
1679 /*
1680  * Look up a linker set on an ELF system.
1681  */
1682 static int
1683 link_elf_lookup_set(linker_file_t lf, const char *name,
1684     void ***startp, void ***stopp, int *countp)
1685 {
1686         c_linker_sym_t sym;
1687         linker_symval_t symval;
1688         char *setsym;
1689         void **start, **stop;
1690         int len, error = 0, count;
1691
1692         len = strlen(name) + sizeof("__start_set_"); /* sizeof includes \0 */
1693         setsym = malloc(len, M_LINKER, M_WAITOK);
1694
1695         /* get address of first entry */
1696         snprintf(setsym, len, "%s%s", "__start_set_", name);
1697         error = link_elf_lookup_symbol(lf, setsym, &sym);
1698         if (error != 0)
1699                 goto out;
1700         link_elf_symbol_values(lf, sym, &symval);
1701         if (symval.value == 0) {
1702                 error = ESRCH;
1703                 goto out;
1704         }
1705         start = (void **)symval.value;
1706
1707         /* get address of last entry */
1708         snprintf(setsym, len, "%s%s", "__stop_set_", name);
1709         error = link_elf_lookup_symbol(lf, setsym, &sym);
1710         if (error != 0)
1711                 goto out;
1712         link_elf_symbol_values(lf, sym, &symval);
1713         if (symval.value == 0) {
1714                 error = ESRCH;
1715                 goto out;
1716         }
1717         stop = (void **)symval.value;
1718
1719         /* and the number of entries */
1720         count = stop - start;
1721
1722         /* and copy out */
1723         if (startp != NULL)
1724                 *startp = start;
1725         if (stopp != NULL)
1726                 *stopp = stop;
1727         if (countp != NULL)
1728                 *countp = count;
1729
1730 out:
1731         free(setsym, M_LINKER);
1732         return (error);
1733 }
1734
1735 static int
1736 link_elf_each_function_name(linker_file_t file,
1737   int (*callback)(const char *, void *), void *opaque)
1738 {
1739         elf_file_t ef = (elf_file_t)file;
1740         const Elf_Sym *symp;
1741         int i, error;
1742
1743         /* Exhaustive search */
1744         for (i = 0, symp = ef->ddbsymtab; i < ef->ddbsymcnt; i++, symp++) {
1745                 if (symp->st_value != 0 &&
1746                     (ELF_ST_TYPE(symp->st_info) == STT_FUNC ||
1747                     ELF_ST_TYPE(symp->st_info) == STT_GNU_IFUNC)) {
1748                         error = callback(ef->ddbstrtab + symp->st_name, opaque);
1749                         if (error != 0)
1750                                 return (error);
1751                 }
1752         }
1753         return (0);
1754 }
1755
1756 static int
1757 link_elf_each_function_nameval(linker_file_t file,
1758     linker_function_nameval_callback_t callback, void *opaque)
1759 {
1760         linker_symval_t symval;
1761         elf_file_t ef = (elf_file_t)file;
1762         const Elf_Sym *symp;
1763         int i, error;
1764
1765         /* Exhaustive search */
1766         for (i = 0, symp = ef->ddbsymtab; i < ef->ddbsymcnt; i++, symp++) {
1767                 if (symp->st_value != 0 &&
1768                     (ELF_ST_TYPE(symp->st_info) == STT_FUNC ||
1769                     ELF_ST_TYPE(symp->st_info) == STT_GNU_IFUNC)) {
1770                         error = link_elf_debug_symbol_values(file,
1771                             (c_linker_sym_t) symp, &symval);
1772                         if (error == 0)
1773                                 error = callback(file, i, &symval, opaque);
1774                         if (error != 0)
1775                                 return (error);
1776                 }
1777         }
1778         return (0);
1779 }
1780
1781 const Elf_Sym *
1782 elf_get_sym(linker_file_t lf, Elf_Size symidx)
1783 {
1784         elf_file_t ef = (elf_file_t)lf;
1785
1786         if (symidx >= ef->nchains)
1787                 return (NULL);
1788         return (ef->symtab + symidx);
1789 }
1790
1791 const char *
1792 elf_get_symname(linker_file_t lf, Elf_Size symidx)
1793 {
1794         elf_file_t ef = (elf_file_t)lf;
1795         const Elf_Sym *sym;
1796
1797         if (symidx >= ef->nchains)
1798                 return (NULL);
1799         sym = ef->symtab + symidx;
1800         return (ef->strtab + sym->st_name);
1801 }
1802
1803 /*
1804  * Symbol lookup function that can be used when the symbol index is known (ie
1805  * in relocations). It uses the symbol index instead of doing a fully fledged
1806  * hash table based lookup when such is valid. For example for local symbols.
1807  * This is not only more efficient, it's also more correct. It's not always
1808  * the case that the symbol can be found through the hash table.
1809  */
1810 static int
1811 elf_lookup(linker_file_t lf, Elf_Size symidx, int deps, Elf_Addr *res)
1812 {
1813         elf_file_t ef = (elf_file_t)lf;
1814         const Elf_Sym *sym;
1815         const char *symbol;
1816         Elf_Addr addr, start, base;
1817
1818         /* Don't even try to lookup the symbol if the index is bogus. */
1819         if (symidx >= ef->nchains) {
1820                 *res = 0;
1821                 return (EINVAL);
1822         }
1823
1824         sym = ef->symtab + symidx;
1825
1826         /*
1827          * Don't do a full lookup when the symbol is local. It may even
1828          * fail because it may not be found through the hash table.
1829          */
1830         if (ELF_ST_BIND(sym->st_info) == STB_LOCAL) {
1831                 /* Force lookup failure when we have an insanity. */
1832                 if (sym->st_shndx == SHN_UNDEF || sym->st_value == 0) {
1833                         *res = 0;
1834                         return (EINVAL);
1835                 }
1836                 *res = ((Elf_Addr)ef->address + sym->st_value);
1837                 return (0);
1838         }
1839
1840         /*
1841          * XXX we can avoid doing a hash table based lookup for global
1842          * symbols as well. This however is not always valid, so we'll
1843          * just do it the hard way for now. Performance tweaks can
1844          * always be added.
1845          */
1846
1847         symbol = ef->strtab + sym->st_name;
1848
1849         /* Force a lookup failure if the symbol name is bogus. */
1850         if (*symbol == 0) {
1851                 *res = 0;
1852                 return (EINVAL);
1853         }
1854
1855         addr = ((Elf_Addr)linker_file_lookup_symbol(lf, symbol, deps));
1856         if (addr == 0 && ELF_ST_BIND(sym->st_info) != STB_WEAK) {
1857                 *res = 0;
1858                 return (EINVAL);
1859         }
1860
1861         if (elf_set_find(&set_pcpu_list, addr, &start, &base))
1862                 addr = addr - start + base;
1863 #ifdef VIMAGE
1864         else if (elf_set_find(&set_vnet_list, addr, &start, &base))
1865                 addr = addr - start + base;
1866 #endif
1867         *res = addr;
1868         return (0);
1869 }
1870
1871 static void
1872 link_elf_reloc_local(linker_file_t lf)
1873 {
1874         const Elf_Rel *rellim;
1875         const Elf_Rel *rel;
1876         const Elf_Rela *relalim;
1877         const Elf_Rela *rela;
1878         elf_file_t ef = (elf_file_t)lf;
1879
1880         /* Perform relocations without addend if there are any: */
1881         if ((rel = ef->rel) != NULL) {
1882                 rellim = (const Elf_Rel *)((const char *)ef->rel + ef->relsize);
1883                 while (rel < rellim) {
1884                         elf_reloc_local(lf, (Elf_Addr)ef->address, rel,
1885                             ELF_RELOC_REL, elf_lookup);
1886                         rel++;
1887                 }
1888         }
1889
1890         /* Perform relocations with addend if there are any: */
1891         if ((rela = ef->rela) != NULL) {
1892                 relalim = (const Elf_Rela *)
1893                     ((const char *)ef->rela + ef->relasize);
1894                 while (rela < relalim) {
1895                         elf_reloc_local(lf, (Elf_Addr)ef->address, rela,
1896                             ELF_RELOC_RELA, elf_lookup);
1897                         rela++;
1898                 }
1899         }
1900 }
1901
1902 static long
1903 link_elf_symtab_get(linker_file_t lf, const Elf_Sym **symtab)
1904 {
1905         elf_file_t ef = (elf_file_t)lf;
1906
1907         *symtab = ef->ddbsymtab;
1908
1909         if (*symtab == NULL)
1910                 return (0);
1911
1912         return (ef->ddbsymcnt);
1913 }
1914
1915 static long
1916 link_elf_strtab_get(linker_file_t lf, caddr_t *strtab)
1917 {
1918         elf_file_t ef = (elf_file_t)lf;
1919
1920         *strtab = ef->ddbstrtab;
1921
1922         if (*strtab == NULL)
1923                 return (0);
1924
1925         return (ef->ddbstrcnt);
1926 }
1927
1928 #if defined(__i386__) || defined(__amd64__) || defined(__aarch64__) || defined(__powerpc__)
1929 /*
1930  * Use this lookup routine when performing relocations early during boot.
1931  * The generic lookup routine depends on kobj, which is not initialized
1932  * at that point.
1933  */
1934 static int
1935 elf_lookup_ifunc(linker_file_t lf, Elf_Size symidx, int deps __unused,
1936     Elf_Addr *res)
1937 {
1938         elf_file_t ef;
1939         const Elf_Sym *symp;
1940         caddr_t val;
1941
1942         ef = (elf_file_t)lf;
1943         symp = ef->symtab + symidx;
1944         if (ELF_ST_TYPE(symp->st_info) == STT_GNU_IFUNC) {
1945                 val = (caddr_t)ef->address + symp->st_value;
1946                 *res = ((Elf_Addr (*)(void))val)();
1947                 return (0);
1948         }
1949         return (ENOENT);
1950 }
1951
1952 void
1953 link_elf_ireloc(caddr_t kmdp)
1954 {
1955         struct elf_file eff;
1956         elf_file_t ef;
1957
1958         ef = &eff;
1959
1960         bzero_early(ef, sizeof(*ef));
1961
1962         ef->modptr = kmdp;
1963         ef->dynamic = (Elf_Dyn *)&_DYNAMIC;
1964
1965 #ifdef RELOCATABLE_KERNEL
1966         ef->address = (caddr_t) (__startkernel - KERNBASE);
1967 #else
1968         ef->address = 0;
1969 #endif
1970         parse_dynamic(ef);
1971
1972         link_elf_preload_parse_symbols(ef);
1973         relocate_file1(ef, elf_lookup_ifunc, elf_reloc, true);
1974 }
1975
1976 #if defined(__aarch64__) || defined(__amd64__)
1977 void
1978 link_elf_late_ireloc(void)
1979 {
1980         elf_file_t ef;
1981
1982         KASSERT(linker_kernel_file != NULL,
1983             ("link_elf_late_ireloc: No kernel linker file found"));
1984         ef = (elf_file_t)linker_kernel_file;
1985
1986         relocate_file1(ef, elf_lookup_ifunc, elf_reloc_late, true);
1987 }
1988 #endif
1989 #endif