Rev 3690 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2973 | svoboda | 1 | /* |
2 | * Copyright (c) 2008 Jiri Svoboda |
||
3 | * All rights reserved. |
||
4 | * |
||
5 | * Redistribution and use in source and binary forms, with or without |
||
6 | * modification, are permitted provided that the following conditions |
||
7 | * are met: |
||
8 | * |
||
9 | * - Redistributions of source code must retain the above copyright |
||
10 | * notice, this list of conditions and the following disclaimer. |
||
11 | * - Redistributions in binary form must reproduce the above copyright |
||
12 | * notice, this list of conditions and the following disclaimer in the |
||
13 | * documentation and/or other materials provided with the distribution. |
||
14 | * - The name of the author may not be used to endorse or promote products |
||
15 | * derived from this software without specific prior written permission. |
||
16 | * |
||
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
||
18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
||
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
||
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
||
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
||
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||
27 | */ |
||
28 | |||
29 | /** @addtogroup rtld rtld |
||
30 | * @brief |
||
31 | * @{ |
||
32 | */ |
||
33 | /** |
||
34 | * @file |
||
35 | */ |
||
36 | |||
37 | #include <stdio.h> |
||
3688 | svoboda | 38 | #include <stdlib.h> |
2973 | svoboda | 39 | |
40 | #include <elf_dyn.h> |
||
2978 | svoboda | 41 | #include <symbol.h> |
2973 | svoboda | 42 | #include <rtld.h> |
43 | |||
3688 | svoboda | 44 | #include <rtld_arch.h> |
45 | |||
2996 | svoboda | 46 | void module_process_pre_arch(module_t *m) |
47 | { |
||
48 | /* Unused */ |
||
49 | } |
||
50 | |||
51 | |||
2973 | svoboda | 52 | /** |
53 | * Process (fixup) all relocations in a relocation table. |
||
54 | */ |
||
2980 | svoboda | 55 | void rel_table_process(module_t *m, elf_rel_t *rt, size_t rt_size) |
2973 | svoboda | 56 | { |
57 | int i; |
||
58 | |||
59 | size_t rt_entries; |
||
60 | size_t r_offset; |
||
61 | elf_word r_info; |
||
62 | unsigned rel_type; |
||
63 | elf_word sym_idx; |
||
2978 | svoboda | 64 | uintptr_t sym_addr; |
2973 | svoboda | 65 | |
66 | elf_symbol_t *sym_table; |
||
67 | elf_symbol_t *sym; |
||
68 | uint32_t *r_ptr; |
||
3688 | svoboda | 69 | uint32_t sym_size; |
2973 | svoboda | 70 | char *str_tab; |
2978 | svoboda | 71 | |
72 | elf_symbol_t *sym_def; |
||
2980 | svoboda | 73 | module_t *dest; |
2973 | svoboda | 74 | |
3562 | svoboda | 75 | DPRINTF("parse relocation table\n"); |
2973 | svoboda | 76 | |
77 | sym_table = m->dyn.sym_tab; |
||
78 | rt_entries = rt_size / sizeof(elf_rel_t); |
||
79 | str_tab = m->dyn.str_tab; |
||
80 | |||
3562 | svoboda | 81 | DPRINTF("address: 0x%x, entries: %d\n", (uintptr_t)rt, rt_entries); |
2973 | svoboda | 82 | |
83 | for (i = 0; i < rt_entries; ++i) { |
||
3562 | svoboda | 84 | // DPRINTF("symbol %d: ", i); |
2973 | svoboda | 85 | r_offset = rt[i].r_offset; |
86 | r_info = rt[i].r_info; |
||
87 | |||
88 | sym_idx = ELF32_R_SYM(r_info); |
||
89 | sym = &sym_table[sym_idx]; |
||
90 | |||
3562 | svoboda | 91 | /* DPRINTF("name '%s', value 0x%x, size 0x%x\n", |
2973 | svoboda | 92 | str_tab + sym->st_name, |
93 | sym->st_value, |
||
94 | sym->st_size); |
||
2983 | svoboda | 95 | */ |
2973 | svoboda | 96 | rel_type = ELF32_R_TYPE(r_info); |
2978 | svoboda | 97 | r_ptr = (uint32_t *)(r_offset + m->bias); |
2973 | svoboda | 98 | |
2982 | svoboda | 99 | if (sym->st_name != 0) { |
3562 | svoboda | 100 | // DPRINTF("rel_type: %x, rel_offset: 0x%x\n", rel_type, r_offset); |
2999 | svoboda | 101 | sym_def = symbol_def_find(str_tab + sym->st_name, |
102 | m, &dest); |
||
3562 | svoboda | 103 | // DPRINTF("dest name: '%s'\n", dest->dyn.soname); |
104 | // DPRINTF("dest bias: 0x%x\n", dest->bias); |
||
2982 | svoboda | 105 | if (sym_def) { |
2998 | svoboda | 106 | sym_addr = symbol_get_addr(sym_def, dest); |
3562 | svoboda | 107 | // DPRINTF("symbol definition found, addr=0x%x\n", sym_addr); |
2982 | svoboda | 108 | } else { |
3562 | svoboda | 109 | DPRINTF("symbol definition not found\n"); |
2982 | svoboda | 110 | continue; |
111 | } |
||
2978 | svoboda | 112 | } |
113 | |||
2973 | svoboda | 114 | switch (rel_type) { |
115 | case R_386_GLOB_DAT: |
||
116 | case R_386_JUMP_SLOT: |
||
3688 | svoboda | 117 | DPRINTF("fixup R_386_GLOB_DAT/JUMP_SLOT (b+v)\n"); |
2973 | svoboda | 118 | *r_ptr = sym_addr; |
119 | break; |
||
120 | |||
121 | case R_386_32: |
||
3688 | svoboda | 122 | DPRINTF("fixup R_386_32 (b+v+a)\n"); |
2973 | svoboda | 123 | *r_ptr += sym_addr; |
124 | break; |
||
3687 | svoboda | 125 | |
126 | case R_386_PC32: |
||
3690 | svoboda | 127 | DPRINTF("fixup R_386_PC32 (b+v+a-p)\n"); |
3687 | svoboda | 128 | *r_ptr += sym_addr - (uint32_t) r_ptr; |
129 | break; |
||
3688 | svoboda | 130 | |
131 | case R_386_COPY: |
||
132 | /* |
||
133 | * Copy symbol data from shared object to specified |
||
134 | * location. |
||
135 | */ |
||
136 | DPRINTF("fixup R_386_COPY (s)\n"); |
||
137 | sym_size = sym->st_size; |
||
138 | if (sym_size != sym_def->st_size) { |
||
139 | printf("Warning: Mismatched symbol sizes.\n"); |
||
140 | /* Take the lower value. */ |
||
141 | if (sym_size > sym_def->st_size) |
||
142 | sym_size = sym_def->st_size; |
||
143 | } |
||
144 | memcpy(r_ptr, (const void *)sym_addr, sym_size); |
||
145 | break; |
||
2973 | svoboda | 146 | |
147 | case R_386_RELATIVE: |
||
3688 | svoboda | 148 | DPRINTF("fixup R_386_RELATIVE (b+a)\n"); |
2980 | svoboda | 149 | *r_ptr += m->bias; |
2973 | svoboda | 150 | break; |
3681 | svoboda | 151 | |
3688 | svoboda | 152 | case R_386_TLS_DTPMOD32: |
153 | /* |
||
154 | * We can ignore this as long as the only module |
||
155 | * with TLS variables is libc.so. |
||
156 | */ |
||
157 | DPRINTF("Ignoring R_386_TLS_DTPMOD32\n"); |
||
158 | break; |
||
159 | |||
3681 | svoboda | 160 | default: |
3688 | svoboda | 161 | printf("Error: Unknown relocation type %d\n", |
162 | rel_type); |
||
163 | exit(1); |
||
2978 | svoboda | 164 | } |
3681 | svoboda | 165 | |
2973 | svoboda | 166 | } |
167 | |||
168 | } |
||
169 | |||
2996 | svoboda | 170 | void rela_table_process(module_t *m, elf_rela_t *rt, size_t rt_size) |
171 | { |
||
172 | /* Unused */ |
||
173 | (void)m; (void)rt; (void)rt_size; |
||
174 | } |
||
175 | |||
2973 | svoboda | 176 | /** @} |
177 | */ |