1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
|
/* $OpenBSD: rtld_machine.c,v 1.5 2002/06/05 23:13:55 art Exp $ */
/*
* Copyright (c) 1998 Per Fogelstrom, Opsycon AB
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed under OpenBSD by
* Per Fogelstrom, Opsycon AB, Sweden.
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*/
#define _DYN_LOADER
#include <sys/types.h>
#include <link.h>
#include "resolve.h"
#include "syscall.h"
#include "archdep.h"
int
_dl_md_reloc(elf_object_t *object, int rel, int relsz)
{
int i;
int numrel;
int fails = 0;
Elf32_Addr loff;
Elf32_Rel *relocs;
loff = object->load_offs;
numrel = object->Dyn.info[relsz] / sizeof(Elf32_Rel);
relocs = (Elf32_Rel *)(object->Dyn.info[rel]);
if (relocs == NULL)
return(0);
for (i = 0; i < numrel; i++, relocs++) {
Elf32_Addr r_addr = relocs->r_offset + loff;
Elf32_Addr ooff;
const Elf32_Sym *sym, *this;
const char *symn;
if (ELF32_R_SYM(relocs->r_info) == 0xffffff)
continue;
sym = object->dyn.symtab;
sym += ELF32_R_SYM(relocs->r_info);
this = sym;
symn = object->dyn.strtab + sym->st_name;
if (ELF32_R_SYM(relocs->r_info) &&
!(ELF32_ST_BIND(sym->st_info) == STB_LOCAL &&
ELF32_ST_TYPE (sym->st_info) == STT_NOTYPE)) {
ooff = _dl_find_symbol(symn, _dl_objects, &this, 0, 1);
if (!this && ELF32_ST_BIND(sym->st_info) == STB_GLOBAL) {
_dl_printf("%s: can't resolve reference '%s'\n",
_dl_progname, symn);
fails++;
}
}
switch (ELF32_R_TYPE(relocs->r_info)) {
case R_MIPS_REL32:
if (ELF32_ST_BIND(sym->st_info) == STB_LOCAL &&
(ELF32_ST_TYPE(sym->st_info) == STT_SECTION ||
ELF32_ST_TYPE(sym->st_info) == STT_NOTYPE) ) {
*(u_int32_t *)r_addr += loff;
} else if (this)
*(u_int32_t *)r_addr += this->st_value + ooff;
break;
case R_MIPS_NONE:
break;
default:
_dl_printf("%s: unsupported relocation '%s'\n",
_dl_progname, symn);
_dl_exit(1);
}
}
return(fails);
}
/*
* Relocate the Global Offset Table (GOT). Currently we don't
* do lazy evaluation here because the GNU linker doesn't
* follow the ABI spec which says that if an external symbol
* is referenced by other relocations than CALL16 and 26 it
* should not be given a stub and have a zero value in the
* symbol table. By not doing so, we can't use pointers to
* external functions and use them in comparitions...
*/
void
_dl_md_reloc_got(elf_object_t *object, int lazy)
{
int i, n;
Elf32_Addr loff;
Elf32_Addr ooff;
Elf32_Addr *gotp;
const Elf32_Sym *symp;
const Elf32_Sym *this;
const char *strt;
lazy = 0; /* XXX Fix ld before enabling lazy */
loff = object->load_offs;
strt = object->dyn.strtab;
gotp = object->dyn.pltgot;
n = object->Dyn.info[DT_MIPS_LOCAL_GOTNO - DT_LOPROC + DT_NUM];
if (object->status & STAT_GOT_DONE)
return;
/*
* Set up pointers for run time (lazy) resolving.
*/
gotp[0] = (int)_dl_rt_resolve;
if (gotp[1] & 0x80000000) {
gotp[1] = (int)object | 0x80000000;
}
/*
* First do all local references.
*/
for (i = ((gotp[1] & 0x80000000) ? 2 : 1); i < n; i++) {
gotp[i] += loff;
}
gotp += n;
symp = object->dyn.symtab;
symp += object->Dyn.info[DT_MIPS_GOTSYM - DT_LOPROC + DT_NUM];
n = object->Dyn.info[DT_MIPS_SYMTABNO - DT_LOPROC + DT_NUM] -
object->Dyn.info[DT_MIPS_GOTSYM - DT_LOPROC + DT_NUM];
/*
* Then do all global references according to the ABI.
* Quickstart is not yet implemented.
*/
while (n--) {
if (symp->st_shndx == SHN_UNDEF &&
ELF32_ST_TYPE(symp->st_info) == STT_FUNC) {
_dl_printf("undef: %s = %X\n", strt + symp->st_name, symp->st_value);
if (symp->st_value == 0 || !lazy) {
this = 0;
ooff = _dl_find_symbol(strt + symp->st_name,
_dl_objects, &this, 0, 1);
if (this)
*gotp = this->st_value + ooff;
} else
*gotp = symp->st_value + ooff;
} else if (symp->st_shndx == SHN_COMMON ||
symp->st_shndx == SHN_UNDEF) {
this = 0;
ooff = _dl_find_symbol(strt + symp->st_name,
_dl_objects, &this, 0, 1);
if (this)
*gotp = this->st_value + ooff;
} else if (ELF32_ST_TYPE(symp->st_info) == STT_FUNC) {
*gotp += loff;
} else { /* XXX ??? */ /* Resolve all others immediatly */
*gotp = symp->st_value + loff;
}
gotp++;
symp++;
}
object->status |= STAT_GOT_DONE;
}
|