1 /* $NetBSD: lookup_elf32.c,v 1.3 2010/02/11 21:28:16 martin Exp $ */
4 * Copyright (c) 2010 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
32 /* If not included by lookup_elf64.c, ELFSIZE won't be defined. */
37 #include <lib/libkern/libkern.h>
38 #include <sys/param.h>
39 #include <sys/exec_elf.h>
41 #if ((ELFSIZE == 32) && defined(BOOT_ELF32)) || \
42 ((ELFSIZE == 64) && defined(BOOT_ELF64))
44 void * ELFNAMEEND(lookup_symbol
)(const char *, void *, void *);
47 ELFNAMEEND(lookup_symbol
)(const char *symname
, void *sstab
, void *estab
)
51 Elf_Sym
*symtab_start
, *symtab_end
, *sp
;
52 char *strtab_start
, *strtab_end
;
56 if (elf
->e_shoff
== 0)
59 switch (elf
->e_machine
) {
60 ELFDEFNNAME(MACHDEP_ID_CASES
)
65 symtab_start
= symtab_end
= NULL
;
66 strtab_start
= strtab_end
= NULL
;
68 shp
= (Elf_Shdr
*)((char *)sstab
+ elf
->e_shoff
);
69 for (i
= 0; i
< elf
->e_shnum
; i
++) {
70 if (shp
[i
].sh_type
!= SHT_SYMTAB
)
72 if (shp
[i
].sh_offset
== 0)
74 symtab_start
= (Elf_Sym
*)((char*)sstab
+ shp
[i
].sh_offset
);
75 symtab_end
= (Elf_Sym
*)((char*)sstab
+ shp
[i
].sh_offset
78 if (shp
[j
].sh_offset
== 0)
80 strtab_start
= (char*)sstab
+ shp
[j
].sh_offset
;
81 strtab_end
= (char*)sstab
+ shp
[j
].sh_offset
+ shp
[j
].sh_size
;
85 if (!symtab_start
|| !strtab_start
)
88 for (sp
= symtab_start
; sp
< symtab_end
; sp
++)
89 if (sp
->st_name
!= 0 &&
90 strcmp(strtab_start
+ sp
->st_name
, symname
) == 0)
91 return (void*)(uintptr_t)sp
->st_value
;
96 #endif /* (ELFSIZE == 32 && BOOT_ELF32) || (ELFSIZE == 64 && BOOT_ELF64) */