27 #include <sys/cdefs.h>
33 #include <sys/param.h>
34 #include <sys/systm.h>
38 #include <sys/kernel.h>
40 #include <sys/malloc.h>
41 #include <sys/mutex.h>
42 #include <sys/mount.h>
45 #include <sys/namei.h>
46 #include <sys/fcntl.h>
47 #include <sys/vnode.h>
48 #include <sys/linker.h>
50 #include <machine/elf.h>
54 #include <security/mac/mac_framework.h>
57 #include <vm/vm_param.h>
59 #include <vm/vm_object.h>
60 #include <vm/vm_kern.h>
61 #include <vm/vm_extern.h>
64 #include <vm/vm_map.h>
66 #include <sys/link_elf.h>
72 #include "linker_if.h"
77 struct linker_file
lf;
135 #include <kern/kern_ctf.c>
139 const char *, linker_file_t *);
148 c_linker_sym_t *,
long *);
153 void ***,
void ***,
int *);
155 int (*)(
const char *,
void *),
void *);
157 linker_function_nameval_callback_t,
void *);
161 static Elf_Addr
elf_lookup(linker_file_t, Elf_Size,
int);
181 #if ELF_TARG_CLASS == ELFCLASS32
195 static struct elf_set_head set_vnet_list;
201 struct elf_set *
set, *iter;
203 set =
malloc(
sizeof(*set), M_LINKER, M_WAITOK);
208 TAILQ_FOREACH(iter, list, es_link) {
212 (
"linker sets intersection: to insert: 0x%jx-0x%jx; inserted: 0x%jx-0x%jx",
217 TAILQ_INSERT_BEFORE(iter, set, es_link);
223 TAILQ_INSERT_TAIL(list, set, es_link);
231 TAILQ_FOREACH(set, list, es_link) {
232 if (addr < set->es_start)
234 if (addr < set->es_stop) {
249 TAILQ_FOREACH(set, list, es_link) {
250 if (start < set->es_start)
253 TAILQ_REMOVE(list, set, es_link);
258 KASSERT(0, (
"deleting unknown linker set (start = 0x%jx)",
263 static void r_debug_state(
struct r_debug *,
struct link_map *);
268 struct r_debug r_debug;
270 #define GDB_STATE(s) do { \
271 r_debug.r_state = s; r_debug_state(NULL, NULL); \
278 r_debug_state(
struct r_debug *dummy_one __unused,
279 struct link_map *dummy_two __unused)
284 link_elf_add_gdb(
struct link_map *l)
286 struct link_map *prev;
290 if (r_debug.r_map == NULL) {
296 for (prev = r_debug.r_map;
297 prev->l_next != NULL;
306 link_elf_delete_gdb(
struct link_map *l)
308 if (l->l_prev == NULL) {
310 if ((r_debug.r_map = l->l_next) != NULL)
311 l->l_next->l_prev = NULL;
314 if ((l->l_prev->l_next = l->l_next) != NULL)
315 l->l_next->l_prev = l->l_prev;
321 Elf_Addr link_elf_get_gp(linker_file_t);
332 if (filename == NULL)
333 printf(
"kldload: %s\n", s);
335 printf(
"kldload: %s: %s\n", filename, s);
352 error = elf_cpu_load_file(lf);
359 newfilename =
malloc(strlen(lf->filename) + 1, M_LINKER, M_WAITOK);
360 strcpy(newfilename, lf->filename);
361 ef->gdb.l_name = newfilename;
363 link_elf_add_gdb(&ef->gdb);
364 GDB_STATE(RT_CONSISTENT);
374 caddr_t modptr, baseptr, sizeptr;
391 panic(
"%s: Can't create linker structures for kernel",
397 #ifdef SPARSE_MAPPING
407 if (modptr != NULL) {
419 r_debug.r_map = NULL;
420 r_debug.r_brk = r_debug_state;
421 r_debug.r_state = RT_CONSISTENT;
428 TAILQ_INIT(&set_vnet_list);
438 caddr_t ssym, esym, base;
447 MODINFO_METADATA | MODINFOMD_SSYM);
450 ssym = *(caddr_t *)pointer;
452 MODINFO_METADATA | MODINFOMD_ESYM);
455 esym = *(caddr_t *)pointer;
459 symcnt = *(
long *)base;
460 base +=
sizeof(long);
461 symtab = (Elf_Sym *)base;
462 base += roundup(symcnt,
sizeof(
long));
464 if (base > esym || base < ssym) {
465 printf(
"Symbols are corrupt!\n");
469 strcnt = *(
long *)base;
470 base +=
sizeof(long);
472 base += roundup(strcnt,
sizeof(
long));
474 if (base > esym || base < ssym) {
475 printf(
"Symbols are corrupt!\n");
480 ef->
ddbsymcnt = symcnt /
sizeof(Elf_Sym);
491 int plttype = DT_REL;
493 for (dp = ef->
dynamic; dp->d_tag != DT_NULL; dp++) {
498 const Elf_Hashelt *hashtab = (
const Elf_Hashelt *)
499 (ef->
address + dp->d_un.d_ptr);
510 ef->
strsz = dp->d_un.d_val;
516 if (dp->d_un.d_val !=
sizeof(Elf_Sym))
520 ef->
got = (Elf_Addr *) (ef->
address + dp->d_un.d_ptr);
523 ef->
rel = (
const Elf_Rel *) (ef->
address + dp->d_un.d_ptr);
529 if (dp->d_un.d_val !=
sizeof(Elf_Rel))
533 ef->
pltrel = (
const Elf_Rel *) (ef->
address + dp->d_un.d_ptr);
539 ef->
rela = (
const Elf_Rela *) (ef->
address + dp->d_un.d_ptr);
545 if (dp->d_un.d_val !=
sizeof(Elf_Rela))
549 plttype = dp->d_un.d_val;
550 if (plttype != DT_REL && plttype != DT_RELA)
555 dp->d_un.d_ptr = (Elf_Addr)&r_debug;
561 if (plttype == DT_RELA) {
589 count *=
sizeof(
void *);
616 (
void ***)&ef->vnet_stop, &count);
620 count *=
sizeof(
void *);
626 ef->vnet_base = (Elf_Addr)(uintptr_t)vnet_data_alloc(count);
627 if (ef->vnet_base == 0)
629 memcpy((
void *)ef->vnet_base, (
void *)ef->vnet_start, count);
630 vnet_data_copy((
void *)ef->vnet_base, count);
631 elf_set_add(&set_vnet_list, ef->vnet_start, ef->vnet_stop,
642 caddr_t modptr, baseptr, sizeptr, dynptr;
658 MODINFO_METADATA | MODINFOMD_DYNAMIC);
661 strcmp(type,
"elf module") != 0))
663 if (baseptr == NULL || sizeptr == NULL || dynptr == NULL)
673 ef->
address = *(caddr_t *)baseptr;
674 #ifdef SPARSE_MAPPING
677 dp = (vm_offset_t)ef->
address + *(vm_offset_t *)dynptr;
680 lf->size = *(
size_t *)sizeptr;
687 error = parse_vnet(ef);
706 for (dp = ef->
dynamic; dp->d_tag != DT_NULL; dp++) {
707 if (dp->d_tag != DT_NEEDED)
709 modname = ef->
strtab + dp->d_un.d_val;
728 struct thread* td = curthread;
742 Elf_Addr base_vlimit;
758 NDINIT(&nd, LOOKUP, FOLLOW | MPSAFE, UIO_SYSSPACE, filename, td);
760 error =
vn_open(&nd, &flags, 0, NULL);
763 vfslocked = NDHASGIANT(&nd);
764 NDFREE(&nd, NDF_ONLY_PNBUF);
765 if (nd.ni_vp->v_type != VREG) {
771 error = mac_kld_check_load(curthread->td_ucred, nd.ni_vp);
781 firstpage =
malloc(PAGE_SIZE, M_LINKER, M_WAITOK);
782 hdr = (Elf_Ehdr *)firstpage;
783 error =
vn_rdwr(UIO_READ, nd.ni_vp, firstpage, PAGE_SIZE, 0,
784 UIO_SYSSPACE, IO_NODELOCKED, td->td_ucred, NOCRED,
786 nbytes = PAGE_SIZE - resid;
795 if (hdr->e_ident[EI_CLASS] != ELF_TARG_CLASS ||
796 hdr->e_ident[EI_DATA] != ELF_TARG_DATA) {
801 if (hdr->e_ident[EI_VERSION] != EV_CURRENT ||
802 hdr->e_version != EV_CURRENT) {
807 if (hdr->e_type != ET_EXEC && hdr->e_type != ET_DYN) {
811 if (hdr->e_machine != ELF_TARG_MACH) {
823 if (!((hdr->e_phentsize ==
sizeof(Elf_Phdr)) &&
824 (hdr->e_phoff + hdr->e_phnum*
sizeof(Elf_Phdr) <= PAGE_SIZE) &&
825 (hdr->e_phoff + hdr->e_phnum*
sizeof(Elf_Phdr) <= nbytes)))
834 phdr = (Elf_Phdr *) (firstpage + hdr->e_phoff);
835 phlimit = phdr + hdr->e_phnum;
839 while (phdr < phlimit) {
840 switch (phdr->p_type) {
885 base_offset = trunc_page(segs[0]->p_offset);
886 base_vaddr = trunc_page(segs[0]->p_vaddr);
887 base_vlimit = round_page(segs[nsegs - 1]->p_vaddr +
888 segs[nsegs - 1]->p_memsz);
889 mapsize = base_vlimit - base_vaddr;
898 #ifdef SPARSE_MAPPING
899 ef->
object = vm_object_allocate(OBJT_DEFAULT, mapsize >> PAGE_SHIFT);
904 ef->
address = (caddr_t) vm_map_min(kernel_map);
905 error = vm_map_find(kernel_map, ef->
object, 0,
906 (vm_offset_t *) &ef->
address, mapsize, 1,
907 VM_PROT_ALL, VM_PROT_ALL, 0);
909 vm_object_deallocate(ef->
object);
921 for (i = 0; i < nsegs; i++) {
922 caddr_t segbase = mapbase + segs[i]->p_vaddr - base_vaddr;
923 error =
vn_rdwr(UIO_READ, nd.ni_vp,
924 segbase, segs[i]->p_filesz, segs[i]->p_offset,
925 UIO_SYSSPACE, IO_NODELOCKED, td->td_ucred, NOCRED,
929 bzero(segbase + segs[i]->p_filesz,
930 segs[i]->p_memsz - segs[i]->p_filesz);
932 #ifdef SPARSE_MAPPING
936 error = vm_map_wire(kernel_map,
937 (vm_offset_t) segbase,
938 (vm_offset_t) segbase + segs[i]->p_memsz,
939 VM_MAP_WIRE_SYSTEM|VM_MAP_WIRE_NOHOLES);
940 if (error != KERN_SUCCESS) {
950 kmupetext((uintfptr_t)(mapbase + segs[0]->p_vaddr - base_vaddr +
955 ef->
dynamic = (Elf_Dyn *) (mapbase + phdyn->p_vaddr - base_vaddr);
967 error = parse_vnet(ef);
973 VOP_UNLOCK(nd.ni_vp, 0);
975 vn_lock(nd.ni_vp, LK_EXCLUSIVE | LK_RETRY);
979 for (dp = ef->
dynamic; dp->d_tag != DT_NULL; dp++) {
980 if (dp->d_tag != DT_NEEDED)
982 modname = ef->
strtab + dp->d_un.d_val;
996 nbytes = hdr->e_shnum * hdr->e_shentsize;
997 if (nbytes == 0 || hdr->e_shoff == 0)
999 shdr =
malloc(nbytes, M_LINKER, M_WAITOK | M_ZERO);
1000 error =
vn_rdwr(UIO_READ, nd.ni_vp,
1001 (caddr_t)shdr, nbytes, hdr->e_shoff,
1002 UIO_SYSSPACE, IO_NODELOCKED, td->td_ucred, NOCRED,
1008 for (i = 0; i < hdr->e_shnum; i++) {
1009 if (shdr[i].sh_type == SHT_SYMTAB) {
1011 symstrindex = shdr[i].sh_link;
1014 if (symtabindex < 0 || symstrindex < 0)
1017 symcnt = shdr[symtabindex].sh_size;
1019 strcnt = shdr[symstrindex].sh_size;
1022 error =
vn_rdwr(UIO_READ, nd.ni_vp,
1023 ef->
symbase, symcnt, shdr[symtabindex].sh_offset,
1024 UIO_SYSSPACE, IO_NODELOCKED, td->td_ucred, NOCRED,
1028 error =
vn_rdwr(UIO_READ, nd.ni_vp,
1029 ef->
strbase, strcnt, shdr[symstrindex].sh_offset,
1030 UIO_SYSSPACE, IO_NODELOCKED, td->td_ucred, NOCRED,
1035 ef->
ddbsymcnt = symcnt /
sizeof(Elf_Sym);
1048 VOP_UNLOCK(nd.ni_vp, 0);
1049 vn_close(nd.ni_vp, FREAD, td->td_ucred, td);
1050 VFS_UNLOCK_GIANT(vfslocked);
1051 if (error != 0 && lf != NULL)
1054 free(shdr, M_LINKER);
1055 if (firstpage != NULL)
1056 free(firstpage, M_LINKER);
1067 if (x >= ef->
pcpu_start && x < ef->pcpu_stop)
1070 if (x >= ef->vnet_start && x < ef->vnet_stop)
1071 return ((x - ef->vnet_start) + ef->vnet_base);
1088 if (ef->vnet_base != 0) {
1089 vnet_data_free((
void *)ef->vnet_base,
1090 ef->vnet_stop - ef->vnet_start);
1095 if (ef->gdb.l_ld != NULL) {
1096 GDB_STATE(RT_DELETE);
1097 free((
void *)(uintptr_t)ef->gdb.l_name, M_LINKER);
1098 link_elf_delete_gdb(&ef->gdb);
1099 GDB_STATE(RT_CONSISTENT);
1104 elf_cpu_unload_file(file);
1111 #ifdef SPARSE_MAPPING
1112 if (ef->
object != NULL) {
1113 vm_map_remove(kernel_map, (vm_offset_t) ef->
address,
1115 + (ef->
object->size << PAGE_SHIFT));
1136 if (file->filename != NULL)
1145 if (ELF_R_SYM(r_info)) {
1146 ref = ef->
symtab + ELF_R_SYM(r_info);
1147 return (ef->
strtab + ref->st_name);
1155 const Elf_Rel *rellim;
1157 const Elf_Rela *relalim;
1158 const Elf_Rela *rela;
1159 const char *symname;
1164 rellim = (
const Elf_Rel *)
1166 while (rel < rellim) {
1167 if (elf_reloc(&ef->
lf, (Elf_Addr)ef->
address, rel,
1170 printf(
"link_elf: symbol %s undefined\n", symname);
1180 relalim = (
const Elf_Rela *)
1182 while (rela < relalim) {
1183 if (elf_reloc(&ef->
lf, (Elf_Addr)ef->
address, rela,
1186 printf(
"link_elf: symbol %s undefined\n",
1197 rellim = (
const Elf_Rel *)
1199 while (rel < rellim) {
1200 if (elf_reloc(&ef->
lf, (Elf_Addr)ef->
address, rel,
1203 printf(
"link_elf: symbol %s undefined\n",
1214 relalim = (
const Elf_Rela *)
1216 while (rela < relalim) {
1217 if (elf_reloc(&ef->
lf, (Elf_Addr)ef->
address, rela,
1220 printf(
"link_elf: symbol %s undefined\n",
1235 static unsigned long
1238 const unsigned char *p = (
const unsigned char *) name;
1239 unsigned long h = 0;
1242 while (*p !=
'\0') {
1243 h = (h << 4) + *p++;
1244 if ((g = h & 0xf0000000) != 0)
1255 unsigned long symnum;
1256 const Elf_Sym*
symp;
1263 printf(
"link_elf_lookup_symbol: missing symbol hash table\n");
1271 while (symnum != STN_UNDEF) {
1273 printf(
"%s: corrupt symbol table\n", __func__);
1277 symp = ef->
symtab + symnum;
1278 if (symp->st_name == 0) {
1279 printf(
"%s: corrupt symbol table\n", __func__);
1283 strp = ef->
strtab + symp->st_name;
1285 if (strcmp(name, strp) == 0) {
1286 if (symp->st_shndx != SHN_UNDEF ||
1287 (symp->st_value != 0 &&
1288 ELF_ST_TYPE(symp->st_info) == STT_FUNC)) {
1289 *sym = (c_linker_sym_t) symp;
1295 symnum = ef->
chains[symnum];
1303 for (i = 0, symp = ef->
ddbsymtab; i < ef->ddbsymcnt; i++, symp++) {
1305 if (strcmp(name, strp) == 0) {
1306 if (symp->st_shndx != SHN_UNDEF ||
1307 (symp->st_value != 0 &&
1308 ELF_ST_TYPE(symp->st_info) == STT_FUNC)) {
1309 *sym = (c_linker_sym_t) symp;
1321 linker_symval_t *symval)
1324 const Elf_Sym* es = (
const Elf_Sym*) sym;
1327 symval->name = ef->
strtab + es->st_name;
1328 symval->value = (caddr_t) ef->
address + es->st_value;
1329 symval->size = es->st_size;
1335 symval->name = ef->
ddbstrtab + es->st_name;
1336 symval->value = (caddr_t) ef->
address + es->st_value;
1337 symval->size = es->st_size;
1348 u_long off = (uintptr_t) (
void *)
value;
1352 const Elf_Sym* best = 0;
1355 for (i = 0, es = ef->
ddbsymtab; i < ef->ddbsymcnt; i++, es++) {
1356 if (es->st_name == 0)
1358 st_value = es->st_value + (uintptr_t) (
void *) ef->
address;
1359 if (off >= st_value) {
1360 if (off - st_value < diff) {
1361 diff = off - st_value;
1365 }
else if (off - st_value == diff) {
1374 *sym = (c_linker_sym_t) best;
1384 void ***startp,
void ***stopp,
int *countp)
1387 linker_symval_t symval;
1390 int len, error = 0,
count;
1392 len = strlen(name) +
sizeof(
"__start_set_");
1393 setsym =
malloc(len, M_LINKER, M_WAITOK);
1396 snprintf(setsym, len,
"%s%s",
"__start_set_", name);
1401 if (symval.value == 0) {
1405 start = (
void **)symval.value;
1408 snprintf(setsym, len,
"%s%s",
"__stop_set_", name);
1413 if (symval.value == 0) {
1417 stop = (
void **)symval.value;
1420 count = stop - start;
1431 free(setsym, M_LINKER);
1440 const Elf_Sym *
symp;
1444 for (i = 0, symp = ef->
ddbsymtab; i < ef->ddbsymcnt; i++, symp++) {
1445 if (symp->st_value != 0 &&
1446 ELF_ST_TYPE(symp->st_info) == STT_FUNC) {
1459 linker_symval_t symval;
1461 const Elf_Sym*
symp;
1465 for (i = 0, symp = ef->
ddbsymtab; i < ef->ddbsymcnt; i++, symp++) {
1466 if (symp->st_value != 0 &&
1467 ELF_ST_TYPE(symp->st_info) == STT_FUNC) {
1469 (c_linker_sym_t) symp, &symval);
1472 error =
callback(file, i, &symval, opaque);
1488 link_elf_get_gp(linker_file_t lf)
1491 return ((Elf_Addr)ef->
got);
1502 return (ef->
symtab + symidx);
1513 sym = ef->
symtab + symidx;
1514 return (ef->
strtab + sym->st_name);
1530 Elf_Addr addr,
start, base;
1536 sym = ef->
symtab + symidx;
1542 if (ELF_ST_BIND(sym->st_info) == STB_LOCAL) {
1544 if (sym->st_shndx == SHN_UNDEF || sym->st_value == 0)
1546 return ((Elf_Addr)ef->
address + sym->st_value);
1556 symbol = ef->
strtab + sym->st_name;
1565 addr = addr - start + base;
1567 else if (
elf_set_find(&set_vnet_list, addr, &start, &base))
1568 addr = addr - start + base;
1576 const Elf_Rel *rellim;
1578 const Elf_Rela *relalim;
1579 const Elf_Rela *rela;
1583 if ((rel = ef->
rel) != NULL) {
1584 rellim = (
const Elf_Rel *)((
const char *)ef->
rel + ef->
relsize);
1585 while (rel < rellim) {
1586 elf_reloc_local(lf, (Elf_Addr)ef->
address, rel,
1593 if ((rela = ef->
rela) != NULL) {
1594 relalim = (
const Elf_Rela *)
1596 while (rela < relalim) {
1597 elf_reloc_local(lf, (Elf_Addr)ef->
address, rela,
1611 if (*symtab == NULL)
1624 if (*strtab == NULL)
static int link_elf_search_symbol(linker_file_t, caddr_t, c_linker_sym_t *, long *)
int linker_ctf_get(linker_file_t file, linker_ctf_t *lc)
Elf_Addr elf_relocaddr(linker_file_t lf, Elf_Addr x)
static void link_elf_error(const char *filename, const char *s)
SYSINIT(link_elf, SI_SUB_KLD, SI_ORDER_THIRD, link_elf_init, 0)
const Elf_Hashelt * buckets
void NDFREE(struct nameidata *ndp, const u_int flags)
int snprintf(char *str, size_t size, const char *format,...)
static int parse_dynamic(elf_file_t)
void preload_delete_name(const char *name)
static int link_elf_link_preload_finish(linker_file_t)
static int relocate_file(elf_file_t)
void * malloc(unsigned long size, struct malloc_type *mtp, int flags)
void dpcpu_copy(void *s, int size)
static int link_elf_ctf_get(linker_file_t lf, linker_ctf_t *lc)
static int linker_load_file(const char *filename, linker_file_t *result)
static int link_elf_preload_parse_symbols(elf_file_t)
void panic(const char *fmt,...)
caddr_t preload_search_by_type(const char *type)
static int link_elf_link_preload(linker_class_t cls, const char *, linker_file_t *)
static int link_elf_each_function_nameval(linker_file_t, linker_function_nameval_callback_t, void *)
linker_function_name_callback_t callback
static void link_elf_init(void *arg)
static kobj_method_t link_elf_methods[]
static void link_elf_unload_preload(linker_file_t)
static int parse_dpcpu(elf_file_t ef)
const Elf_Sym * ddbsymtab
const Elf_Sym * elf_get_sym(linker_file_t lf, Elf_Size symidx)
static Elf_Addr elf_lookup(linker_file_t, Elf_Size, int)
TAILQ_HEAD(elf_set_head, elf_set)
static long link_elf_strtab_get(linker_file_t, caddr_t *)
static struct linker_class link_elf_class
static void elf_set_add(struct elf_set_head *list, Elf_Addr start, Elf_Addr stop, Elf_Addr base)
static void link_elf_unload_file(linker_file_t)
static struct elf_set_head set_pcpu_list
static int linker_load_module(const char *kldname, const char *modname, struct linker_file *parent, struct mod_depend *verinfo, struct linker_file **lfpp)
const char * elf_get_symname(linker_file_t lf, Elf_Size symidx)
int vn_rdwr(enum uio_rw rw, struct vnode *vp, void *base, int len, off_t offset, enum uio_seg segflg, int ioflg, struct ucred *active_cred, struct ucred *file_cred, ssize_t *aresid, struct thread *td)
static int link_elf_symbol_values(linker_file_t, c_linker_sym_t, linker_symval_t *)
caddr_t linker_file_lookup_symbol(linker_file_t file, const char *name, int deps)
static unsigned long elf_hash(const char *name)
caddr_t preload_search_by_name(const char *name)
static long link_elf_symtab_get(linker_file_t, const Elf_Sym **)
static int elf_set_find(struct elf_set_head *list, Elf_Addr addr, Elf_Addr *start, Elf_Addr *base)
static int link_elf_load_file(linker_class_t, const char *, linker_file_t *)
void free(void *addr, struct malloc_type *mtp)
int vn_close(struct vnode *vp, int flags, struct ucred *file_cred, struct thread *td)
int printf(const char *fmt,...)
caddr_t preload_search_info(caddr_t mod, int inf)
int linker_add_class(linker_class_t lc)
int linker_file_unload(linker_file_t file, int flags)
linker_file_t linker_make_file(const char *pathname, linker_class_t lc)
static int link_elf_lookup_set(linker_file_t, const char *, void ***, void ***, int *)
linker_file_t linker_kernel_file
int linker_load_dependencies(linker_file_t lf)
int vn_open(struct nameidata *ndp, int *flagp, int cmode, struct file *fp)
static int link_elf_link_common_finish(linker_file_t)
static void link_elf_reloc_local(linker_file_t)
const Elf_Hashelt * chains
struct elf_file * elf_file_t
static int link_elf_lookup_symbol(linker_file_t, const char *, c_linker_sym_t *)
void dpcpu_free(void *s, int size)
void * dpcpu_alloc(int size)
static const char * symbol_name(elf_file_t ef, Elf_Size r_info)
static void elf_set_delete(struct elf_set_head *list, Elf_Addr start)
static int link_elf_each_function_name(linker_file_t, int(*)(const char *, void *), void *)