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