elf_object.cc (5335:69d45f5f21a2) elf_object.cc (5383:51dc65015ca9)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
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 are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * 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
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Steve Reinhardt
29 * Ali Saidi
30 */
31
32#include <string>
33
34#include "gelf.h"
35
36#include "base/loader/elf_object.hh"
37#include "base/loader/symtab.hh"
38#include "base/misc.hh"
39#include "base/trace.hh" // for DPRINTF
40#include "sim/byteswap.hh"
41
42using namespace std;
43
44ObjectFile *
45ElfObject::tryFile(const string &fname, int fd, size_t len, uint8_t *data)
46{
47 Elf *elf;
48 GElf_Ehdr ehdr;
49 Arch arch = UnknownArch;
50 OpSys opSys = UnknownOpSys;
51
52 // check that header matches library version
53 if (elf_version(EV_CURRENT) == EV_NONE)
54 panic("wrong elf version number!");
55
56 // get a pointer to elf structure
57 elf = elf_memory((char*)data,len);
58 // will only fail if fd is invalid
59 assert(elf != NULL);
60
61 // Check that we actually have a elf file
62 if (gelf_getehdr(elf, &ehdr) ==0) {
63 DPRINTFR(Loader, "Not ELF\n");
64 elf_end(elf);
65 return NULL;
66 } else {
67 //Detect the architecture
68 //Since we don't know how to check for alpha right now, we'll
69 //just assume if it wasn't something else and it's 64 bit, that's
70 //what it must be.
71 if (ehdr.e_machine == EM_SPARC64 ||
72 (ehdr.e_machine == EM_SPARC &&
73 ehdr.e_ident[EI_CLASS] == ELFCLASS64)||
74 ehdr.e_machine == EM_SPARCV9) {
75 arch = ObjectFile::SPARC64;
76 } else if (ehdr.e_machine == EM_SPARC32PLUS ||
77 (ehdr.e_machine == EM_SPARC &&
78 ehdr.e_ident[EI_CLASS] == ELFCLASS32)) {
79 arch = ObjectFile::SPARC32;
80 } else if (ehdr.e_machine == EM_MIPS
81 && ehdr.e_ident[EI_CLASS] == ELFCLASS32) {
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
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 are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * 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
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Steve Reinhardt
29 * Ali Saidi
30 */
31
32#include <string>
33
34#include "gelf.h"
35
36#include "base/loader/elf_object.hh"
37#include "base/loader/symtab.hh"
38#include "base/misc.hh"
39#include "base/trace.hh" // for DPRINTF
40#include "sim/byteswap.hh"
41
42using namespace std;
43
44ObjectFile *
45ElfObject::tryFile(const string &fname, int fd, size_t len, uint8_t *data)
46{
47 Elf *elf;
48 GElf_Ehdr ehdr;
49 Arch arch = UnknownArch;
50 OpSys opSys = UnknownOpSys;
51
52 // check that header matches library version
53 if (elf_version(EV_CURRENT) == EV_NONE)
54 panic("wrong elf version number!");
55
56 // get a pointer to elf structure
57 elf = elf_memory((char*)data,len);
58 // will only fail if fd is invalid
59 assert(elf != NULL);
60
61 // Check that we actually have a elf file
62 if (gelf_getehdr(elf, &ehdr) ==0) {
63 DPRINTFR(Loader, "Not ELF\n");
64 elf_end(elf);
65 return NULL;
66 } else {
67 //Detect the architecture
68 //Since we don't know how to check for alpha right now, we'll
69 //just assume if it wasn't something else and it's 64 bit, that's
70 //what it must be.
71 if (ehdr.e_machine == EM_SPARC64 ||
72 (ehdr.e_machine == EM_SPARC &&
73 ehdr.e_ident[EI_CLASS] == ELFCLASS64)||
74 ehdr.e_machine == EM_SPARCV9) {
75 arch = ObjectFile::SPARC64;
76 } else if (ehdr.e_machine == EM_SPARC32PLUS ||
77 (ehdr.e_machine == EM_SPARC &&
78 ehdr.e_ident[EI_CLASS] == ELFCLASS32)) {
79 arch = ObjectFile::SPARC32;
80 } else if (ehdr.e_machine == EM_MIPS
81 && ehdr.e_ident[EI_CLASS] == ELFCLASS32) {
82 arch = ObjectFile::Mips;
82 if (ehdr.e_ident[EI_DATA] == ELFDATA2LSB) {
83 arch = ObjectFile::Mips;
84 } else {
85 fatal("The binary you're trying to load is compiled for big "
86 "endian MIPS. M5\nonly supports little endian MIPS. "
87 "Please recompile your binary.\n");
88 }
83 } else if (ehdr.e_machine == EM_X86_64 &&
84 ehdr.e_ident[EI_CLASS] == ELFCLASS64) {
85 //In the future, we might want to differentiate between 32 bit
86 //and 64 bit x86 processes in case there are differences in their
87 //initial stack frame.
88 arch = ObjectFile::X86;
89 } else if (ehdr.e_ident[EI_CLASS] == ELFCLASS64) {
90 arch = ObjectFile::Alpha;
91 } else if (ehdr.e_machine == EM_ARM) {
92 arch = ObjectFile::Arm;
93 } else {
94 warn("Unknown architecture: %d\n", ehdr.e_machine);
95 arch = ObjectFile::UnknownArch;
96 }
97
98 //Detect the operating system
99 switch (ehdr.e_ident[EI_OSABI])
100 {
101
102 case ELFOSABI_LINUX:
103 case ELFOSABI_ARM:
104 opSys = ObjectFile::Linux;
105 break;
106 case ELFOSABI_SOLARIS:
107 opSys = ObjectFile::Solaris;
108 break;
109 case ELFOSABI_TRU64:
110 opSys = ObjectFile::Tru64;
111 break;
112 default:
113 opSys = ObjectFile::UnknownOpSys;
114 }
115
116 //take a look at the .note.ABI section
117 //It can let us know what's what.
118 if (opSys == ObjectFile::UnknownOpSys) {
119 Elf_Scn *section;
120 GElf_Shdr shdr;
121 Elf_Data *data;
122 uint32_t osAbi;;
123 int secIdx = 1;
124
125 // Get the first section
126 section = elf_getscn(elf, secIdx);
127
128 // While there are no more sections
129 while (section != NULL && opSys == ObjectFile::UnknownOpSys) {
130 gelf_getshdr(section, &shdr);
131 if (shdr.sh_type == SHT_NOTE && !strcmp(".note.ABI-tag",
132 elf_strptr(elf, ehdr.e_shstrndx, shdr.sh_name))) {
133 // we have found a ABI note section
134 // Check the 5th 32bit word for OS 0 == linux, 1 == hurd,
135 // 2 == solaris, 3 == freebsd
136 data = elf_rawdata(section, NULL);
137 assert(data->d_buf);
138 if(ehdr.e_ident[EI_DATA] == ELFDATA2LSB)
139 osAbi = htole(((uint32_t*)data->d_buf)[4]);
140 else
141 osAbi = htobe(((uint32_t*)data->d_buf)[4]);
142
143 switch(osAbi) {
144 case 0:
145 opSys = ObjectFile::Linux;
146 break;
147 case 2:
148 opSys = ObjectFile::Solaris;
149 break;
150 }
151 } // if section found
152 if (!strcmp(".SUNW_version", elf_strptr(elf, ehdr.e_shstrndx, shdr.sh_name)))
153 opSys = ObjectFile::Solaris;
154 if (!strcmp(".stab.index", elf_strptr(elf, ehdr.e_shstrndx, shdr.sh_name)))
155 opSys = ObjectFile::Solaris;
156
157 section = elf_getscn(elf, ++secIdx);
158 } // while sections
159 }
160
161 ElfObject * result = new ElfObject(fname, fd, len, data, arch, opSys);
162
163 //The number of headers in the file
164 result->_programHeaderCount = ehdr.e_phnum;
165 //Record the size of each entry
166 result->_programHeaderSize = ehdr.e_phentsize;
167 if(result->_programHeaderCount) //If there is a program header table
168 {
169 //Figure out the virtual address of the header table in the
170 //final memory image. We use the program headers themselves
171 //to translate from a file offset to the address in the image.
172 GElf_Phdr phdr;
173 uint64_t e_phoff = ehdr.e_phoff;
174 result->_programHeaderTable = 0;
175 for(int hdrnum = 0; hdrnum < result->_programHeaderCount; hdrnum++)
176 {
177 gelf_getphdr(elf, hdrnum, &phdr);
178 //Check if we've found the segment with the headers in it
179 if(phdr.p_offset <= e_phoff &&
180 phdr.p_offset + phdr.p_filesz > e_phoff)
181 {
182 result->_programHeaderTable = phdr.p_paddr + e_phoff;
183 break;
184 }
185 }
186 }
187 else
188 result->_programHeaderTable = 0;
189
190
191 elf_end(elf);
192 return result;
193 }
194}
195
196
197ElfObject::ElfObject(const string &_filename, int _fd,
198 size_t _len, uint8_t *_data,
199 Arch _arch, OpSys _opSys)
200 : ObjectFile(_filename, _fd, _len, _data, _arch, _opSys)
201
202{
203 Elf *elf;
204 GElf_Ehdr ehdr;
205
206 // check that header matches library version
207 if (elf_version(EV_CURRENT) == EV_NONE)
208 panic("wrong elf version number!");
209
210 // get a pointer to elf structure
211 elf = elf_memory((char*)fileData,len);
212 // will only fail if fd is invalid
213 assert(elf != NULL);
214
215 // Check that we actually have a elf file
216 if (gelf_getehdr(elf, &ehdr) ==0) {
217 panic("Not ELF, shouldn't be here");
218 }
219
220 entry = ehdr.e_entry;
221
222 // initialize segment sizes to 0 in case they're not present
223 text.size = data.size = bss.size = 0;
224
225 int secIdx = 1;
226 Elf_Scn *section;
227 GElf_Shdr shdr;
228
229 // The first address of some important sections.
230 Addr textSecStart = 0;
231 Addr dataSecStart = 0;
232 Addr bssSecStart = 0;
233
234 // Get the first section
235 section = elf_getscn(elf, secIdx);
236
237 // Find the beginning of the most interesting sections.
238 while (section != NULL) {
239 gelf_getshdr(section, &shdr);
240 char * secName = elf_strptr(elf, ehdr.e_shstrndx, shdr.sh_name);
241
242 if (!strcmp(".text", secName)) {
243 textSecStart = shdr.sh_addr;
244 } else if (!strcmp(".data", secName)) {
245 dataSecStart = shdr.sh_addr;
246 } else if (!strcmp(".bss", secName)) {
247 bssSecStart = shdr.sh_addr;
248 }
249
250 section = elf_getscn(elf, ++secIdx);
251 }
252
253 // Go through all the segments in the program, record them, and scrape
254 // out information about the text, data, and bss areas needed by other
255 // code.
256 for (int i = 0; i < ehdr.e_phnum; ++i) {
257 GElf_Phdr phdr;
258 if (gelf_getphdr(elf, i, &phdr) == 0) {
259 panic("gelf_getphdr failed for segment %d.", i);
260 }
261
262 // for now we don't care about non-loadable segments
263 if (!(phdr.p_type & PT_LOAD))
264 continue;
265
266 // Check to see if this segment contains the bss section.
267 if (phdr.p_paddr <= bssSecStart &&
268 phdr.p_paddr + phdr.p_memsz > bssSecStart &&
269 phdr.p_memsz - phdr.p_filesz > 0) {
270 bss.baseAddr = phdr.p_paddr + phdr.p_filesz;
271 bss.size = phdr.p_memsz - phdr.p_filesz;
272 bss.fileImage = NULL;
273 }
274
275 // Check to see if this is the text or data segment
276 if (phdr.p_vaddr <= textSecStart &&
277 phdr.p_vaddr + phdr.p_filesz > textSecStart) {
278 text.baseAddr = phdr.p_paddr;
279 text.size = phdr.p_filesz;
280 text.fileImage = fileData + phdr.p_offset;
281 } else if (phdr.p_vaddr <= dataSecStart &&
282 phdr.p_vaddr + phdr.p_filesz > dataSecStart) {
283 data.baseAddr = phdr.p_paddr;
284 data.size = phdr.p_filesz;
285 data.fileImage = fileData + phdr.p_offset;
286 } else {
287 Segment extra;
288 extra.baseAddr = phdr.p_paddr;
289 extra.size = phdr.p_filesz;
290 extra.fileImage = fileData + phdr.p_offset;
291 extraSegments.push_back(extra);
292 }
293 }
294
295 // should have found at least one loadable segment
296 assert(text.size != 0);
297
298 DPRINTFR(Loader, "text: 0x%x %d\ndata: 0x%x %d\nbss: 0x%x %d\n",
299 text.baseAddr, text.size, data.baseAddr, data.size,
300 bss.baseAddr, bss.size);
301
302 elf_end(elf);
303
304 // We will actually read the sections when we need to load them
305}
306
307
308bool
309ElfObject::loadSomeSymbols(SymbolTable *symtab, int binding)
310{
311 Elf *elf;
312 int sec_idx = 1; // there is a 0 but it is nothing, go figure
313 Elf_Scn *section;
314 GElf_Shdr shdr;
315 Elf_Data *data;
316 int count, ii;
317 bool found = false;
318 GElf_Sym sym;
319
320 if (!symtab)
321 return false;
322
323 // check that header matches library version
324 if (elf_version(EV_CURRENT) == EV_NONE)
325 panic("wrong elf version number!");
326
327 // get a pointer to elf structure
328 elf = elf_memory((char*)fileData,len);
329
330 assert(elf != NULL);
331
332 // Get the first section
333 section = elf_getscn(elf, sec_idx);
334
335 // While there are no more sections
336 while (section != NULL) {
337 gelf_getshdr(section, &shdr);
338
339 if (shdr.sh_type == SHT_SYMTAB) {
340 found = true;
341 data = elf_getdata(section, NULL);
342 count = shdr.sh_size / shdr.sh_entsize;
343 DPRINTF(Loader, "Found Symbol Table, %d symbols present\n", count);
344
345 // loop through all the symbols, only loading global ones
346 for (ii = 0; ii < count; ++ii) {
347 gelf_getsym(data, ii, &sym);
348 if (GELF_ST_BIND(sym.st_info) == binding) {
349 symtab->insert(sym.st_value,
350 elf_strptr(elf, shdr.sh_link, sym.st_name));
351 }
352 }
353 }
354 ++sec_idx;
355 section = elf_getscn(elf, sec_idx);
356 }
357
358 elf_end(elf);
359
360 return found;
361}
362
363bool
364ElfObject::loadGlobalSymbols(SymbolTable *symtab, Addr addrMask)
365{
366 return loadSomeSymbols(symtab, STB_GLOBAL);
367}
368
369bool
370ElfObject::loadLocalSymbols(SymbolTable *symtab, Addr addrMask)
371{
372 return loadSomeSymbols(symtab, STB_LOCAL);
373}
374
375bool
376ElfObject::loadSections(Port *memPort, Addr addrMask)
377{
378 if (!ObjectFile::loadSections(memPort, addrMask))
379 return false;
380
381 vector<Segment>::iterator extraIt;
382 for (extraIt = extraSegments.begin();
383 extraIt != extraSegments.end(); extraIt++) {
384 if (!loadSection(&(*extraIt), memPort, addrMask)) {
385 return false;
386 }
387 }
388 return true;
389}
390
391void
392ElfObject::getSections()
393{
394 Elf *elf;
395 int sec_idx = 1; // there is a 0 but it is nothing, go figure
396 Elf_Scn *section;
397 GElf_Shdr shdr;
398
399 GElf_Ehdr ehdr;
400
401 assert(!sectionNames.size());
402
403 // check that header matches library version
404 if (elf_version(EV_CURRENT) == EV_NONE)
405 panic("wrong elf version number!");
406
407 // get a pointer to elf structure
408 elf = elf_memory((char*)fileData,len);
409 assert(elf != NULL);
410
411 // Check that we actually have a elf file
412 if (gelf_getehdr(elf, &ehdr) ==0) {
413 panic("Not ELF, shouldn't be here");
414 }
415
416 // Get the first section
417 section = elf_getscn(elf, sec_idx);
418
419 // While there are no more sections
420 while (section != NULL) {
421 gelf_getshdr(section, &shdr);
422 sectionNames.insert(elf_strptr(elf, ehdr.e_shstrndx, shdr.sh_name));
423 section = elf_getscn(elf, ++sec_idx);
424 } // while sections
425}
426
427bool
428ElfObject::sectionExists(string sec)
429{
430 if (!sectionNames.size())
431 getSections();
432 return sectionNames.find(sec) != sectionNames.end();
433}
434
435
89 } else if (ehdr.e_machine == EM_X86_64 &&
90 ehdr.e_ident[EI_CLASS] == ELFCLASS64) {
91 //In the future, we might want to differentiate between 32 bit
92 //and 64 bit x86 processes in case there are differences in their
93 //initial stack frame.
94 arch = ObjectFile::X86;
95 } else if (ehdr.e_ident[EI_CLASS] == ELFCLASS64) {
96 arch = ObjectFile::Alpha;
97 } else if (ehdr.e_machine == EM_ARM) {
98 arch = ObjectFile::Arm;
99 } else {
100 warn("Unknown architecture: %d\n", ehdr.e_machine);
101 arch = ObjectFile::UnknownArch;
102 }
103
104 //Detect the operating system
105 switch (ehdr.e_ident[EI_OSABI])
106 {
107
108 case ELFOSABI_LINUX:
109 case ELFOSABI_ARM:
110 opSys = ObjectFile::Linux;
111 break;
112 case ELFOSABI_SOLARIS:
113 opSys = ObjectFile::Solaris;
114 break;
115 case ELFOSABI_TRU64:
116 opSys = ObjectFile::Tru64;
117 break;
118 default:
119 opSys = ObjectFile::UnknownOpSys;
120 }
121
122 //take a look at the .note.ABI section
123 //It can let us know what's what.
124 if (opSys == ObjectFile::UnknownOpSys) {
125 Elf_Scn *section;
126 GElf_Shdr shdr;
127 Elf_Data *data;
128 uint32_t osAbi;;
129 int secIdx = 1;
130
131 // Get the first section
132 section = elf_getscn(elf, secIdx);
133
134 // While there are no more sections
135 while (section != NULL && opSys == ObjectFile::UnknownOpSys) {
136 gelf_getshdr(section, &shdr);
137 if (shdr.sh_type == SHT_NOTE && !strcmp(".note.ABI-tag",
138 elf_strptr(elf, ehdr.e_shstrndx, shdr.sh_name))) {
139 // we have found a ABI note section
140 // Check the 5th 32bit word for OS 0 == linux, 1 == hurd,
141 // 2 == solaris, 3 == freebsd
142 data = elf_rawdata(section, NULL);
143 assert(data->d_buf);
144 if(ehdr.e_ident[EI_DATA] == ELFDATA2LSB)
145 osAbi = htole(((uint32_t*)data->d_buf)[4]);
146 else
147 osAbi = htobe(((uint32_t*)data->d_buf)[4]);
148
149 switch(osAbi) {
150 case 0:
151 opSys = ObjectFile::Linux;
152 break;
153 case 2:
154 opSys = ObjectFile::Solaris;
155 break;
156 }
157 } // if section found
158 if (!strcmp(".SUNW_version", elf_strptr(elf, ehdr.e_shstrndx, shdr.sh_name)))
159 opSys = ObjectFile::Solaris;
160 if (!strcmp(".stab.index", elf_strptr(elf, ehdr.e_shstrndx, shdr.sh_name)))
161 opSys = ObjectFile::Solaris;
162
163 section = elf_getscn(elf, ++secIdx);
164 } // while sections
165 }
166
167 ElfObject * result = new ElfObject(fname, fd, len, data, arch, opSys);
168
169 //The number of headers in the file
170 result->_programHeaderCount = ehdr.e_phnum;
171 //Record the size of each entry
172 result->_programHeaderSize = ehdr.e_phentsize;
173 if(result->_programHeaderCount) //If there is a program header table
174 {
175 //Figure out the virtual address of the header table in the
176 //final memory image. We use the program headers themselves
177 //to translate from a file offset to the address in the image.
178 GElf_Phdr phdr;
179 uint64_t e_phoff = ehdr.e_phoff;
180 result->_programHeaderTable = 0;
181 for(int hdrnum = 0; hdrnum < result->_programHeaderCount; hdrnum++)
182 {
183 gelf_getphdr(elf, hdrnum, &phdr);
184 //Check if we've found the segment with the headers in it
185 if(phdr.p_offset <= e_phoff &&
186 phdr.p_offset + phdr.p_filesz > e_phoff)
187 {
188 result->_programHeaderTable = phdr.p_paddr + e_phoff;
189 break;
190 }
191 }
192 }
193 else
194 result->_programHeaderTable = 0;
195
196
197 elf_end(elf);
198 return result;
199 }
200}
201
202
203ElfObject::ElfObject(const string &_filename, int _fd,
204 size_t _len, uint8_t *_data,
205 Arch _arch, OpSys _opSys)
206 : ObjectFile(_filename, _fd, _len, _data, _arch, _opSys)
207
208{
209 Elf *elf;
210 GElf_Ehdr ehdr;
211
212 // check that header matches library version
213 if (elf_version(EV_CURRENT) == EV_NONE)
214 panic("wrong elf version number!");
215
216 // get a pointer to elf structure
217 elf = elf_memory((char*)fileData,len);
218 // will only fail if fd is invalid
219 assert(elf != NULL);
220
221 // Check that we actually have a elf file
222 if (gelf_getehdr(elf, &ehdr) ==0) {
223 panic("Not ELF, shouldn't be here");
224 }
225
226 entry = ehdr.e_entry;
227
228 // initialize segment sizes to 0 in case they're not present
229 text.size = data.size = bss.size = 0;
230
231 int secIdx = 1;
232 Elf_Scn *section;
233 GElf_Shdr shdr;
234
235 // The first address of some important sections.
236 Addr textSecStart = 0;
237 Addr dataSecStart = 0;
238 Addr bssSecStart = 0;
239
240 // Get the first section
241 section = elf_getscn(elf, secIdx);
242
243 // Find the beginning of the most interesting sections.
244 while (section != NULL) {
245 gelf_getshdr(section, &shdr);
246 char * secName = elf_strptr(elf, ehdr.e_shstrndx, shdr.sh_name);
247
248 if (!strcmp(".text", secName)) {
249 textSecStart = shdr.sh_addr;
250 } else if (!strcmp(".data", secName)) {
251 dataSecStart = shdr.sh_addr;
252 } else if (!strcmp(".bss", secName)) {
253 bssSecStart = shdr.sh_addr;
254 }
255
256 section = elf_getscn(elf, ++secIdx);
257 }
258
259 // Go through all the segments in the program, record them, and scrape
260 // out information about the text, data, and bss areas needed by other
261 // code.
262 for (int i = 0; i < ehdr.e_phnum; ++i) {
263 GElf_Phdr phdr;
264 if (gelf_getphdr(elf, i, &phdr) == 0) {
265 panic("gelf_getphdr failed for segment %d.", i);
266 }
267
268 // for now we don't care about non-loadable segments
269 if (!(phdr.p_type & PT_LOAD))
270 continue;
271
272 // Check to see if this segment contains the bss section.
273 if (phdr.p_paddr <= bssSecStart &&
274 phdr.p_paddr + phdr.p_memsz > bssSecStart &&
275 phdr.p_memsz - phdr.p_filesz > 0) {
276 bss.baseAddr = phdr.p_paddr + phdr.p_filesz;
277 bss.size = phdr.p_memsz - phdr.p_filesz;
278 bss.fileImage = NULL;
279 }
280
281 // Check to see if this is the text or data segment
282 if (phdr.p_vaddr <= textSecStart &&
283 phdr.p_vaddr + phdr.p_filesz > textSecStart) {
284 text.baseAddr = phdr.p_paddr;
285 text.size = phdr.p_filesz;
286 text.fileImage = fileData + phdr.p_offset;
287 } else if (phdr.p_vaddr <= dataSecStart &&
288 phdr.p_vaddr + phdr.p_filesz > dataSecStart) {
289 data.baseAddr = phdr.p_paddr;
290 data.size = phdr.p_filesz;
291 data.fileImage = fileData + phdr.p_offset;
292 } else {
293 Segment extra;
294 extra.baseAddr = phdr.p_paddr;
295 extra.size = phdr.p_filesz;
296 extra.fileImage = fileData + phdr.p_offset;
297 extraSegments.push_back(extra);
298 }
299 }
300
301 // should have found at least one loadable segment
302 assert(text.size != 0);
303
304 DPRINTFR(Loader, "text: 0x%x %d\ndata: 0x%x %d\nbss: 0x%x %d\n",
305 text.baseAddr, text.size, data.baseAddr, data.size,
306 bss.baseAddr, bss.size);
307
308 elf_end(elf);
309
310 // We will actually read the sections when we need to load them
311}
312
313
314bool
315ElfObject::loadSomeSymbols(SymbolTable *symtab, int binding)
316{
317 Elf *elf;
318 int sec_idx = 1; // there is a 0 but it is nothing, go figure
319 Elf_Scn *section;
320 GElf_Shdr shdr;
321 Elf_Data *data;
322 int count, ii;
323 bool found = false;
324 GElf_Sym sym;
325
326 if (!symtab)
327 return false;
328
329 // check that header matches library version
330 if (elf_version(EV_CURRENT) == EV_NONE)
331 panic("wrong elf version number!");
332
333 // get a pointer to elf structure
334 elf = elf_memory((char*)fileData,len);
335
336 assert(elf != NULL);
337
338 // Get the first section
339 section = elf_getscn(elf, sec_idx);
340
341 // While there are no more sections
342 while (section != NULL) {
343 gelf_getshdr(section, &shdr);
344
345 if (shdr.sh_type == SHT_SYMTAB) {
346 found = true;
347 data = elf_getdata(section, NULL);
348 count = shdr.sh_size / shdr.sh_entsize;
349 DPRINTF(Loader, "Found Symbol Table, %d symbols present\n", count);
350
351 // loop through all the symbols, only loading global ones
352 for (ii = 0; ii < count; ++ii) {
353 gelf_getsym(data, ii, &sym);
354 if (GELF_ST_BIND(sym.st_info) == binding) {
355 symtab->insert(sym.st_value,
356 elf_strptr(elf, shdr.sh_link, sym.st_name));
357 }
358 }
359 }
360 ++sec_idx;
361 section = elf_getscn(elf, sec_idx);
362 }
363
364 elf_end(elf);
365
366 return found;
367}
368
369bool
370ElfObject::loadGlobalSymbols(SymbolTable *symtab, Addr addrMask)
371{
372 return loadSomeSymbols(symtab, STB_GLOBAL);
373}
374
375bool
376ElfObject::loadLocalSymbols(SymbolTable *symtab, Addr addrMask)
377{
378 return loadSomeSymbols(symtab, STB_LOCAL);
379}
380
381bool
382ElfObject::loadSections(Port *memPort, Addr addrMask)
383{
384 if (!ObjectFile::loadSections(memPort, addrMask))
385 return false;
386
387 vector<Segment>::iterator extraIt;
388 for (extraIt = extraSegments.begin();
389 extraIt != extraSegments.end(); extraIt++) {
390 if (!loadSection(&(*extraIt), memPort, addrMask)) {
391 return false;
392 }
393 }
394 return true;
395}
396
397void
398ElfObject::getSections()
399{
400 Elf *elf;
401 int sec_idx = 1; // there is a 0 but it is nothing, go figure
402 Elf_Scn *section;
403 GElf_Shdr shdr;
404
405 GElf_Ehdr ehdr;
406
407 assert(!sectionNames.size());
408
409 // check that header matches library version
410 if (elf_version(EV_CURRENT) == EV_NONE)
411 panic("wrong elf version number!");
412
413 // get a pointer to elf structure
414 elf = elf_memory((char*)fileData,len);
415 assert(elf != NULL);
416
417 // Check that we actually have a elf file
418 if (gelf_getehdr(elf, &ehdr) ==0) {
419 panic("Not ELF, shouldn't be here");
420 }
421
422 // Get the first section
423 section = elf_getscn(elf, sec_idx);
424
425 // While there are no more sections
426 while (section != NULL) {
427 gelf_getshdr(section, &shdr);
428 sectionNames.insert(elf_strptr(elf, ehdr.e_shstrndx, shdr.sh_name));
429 section = elf_getscn(elf, ++sec_idx);
430 } // while sections
431}
432
433bool
434ElfObject::sectionExists(string sec)
435{
436 if (!sectionNames.size())
437 getSections();
438 return sectionNames.find(sec) != sectionNames.end();
439}
440
441