gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
elf_object.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011-2013, 2019 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2003-2005 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
42 
43 #include <fcntl.h>
44 #include <sys/mman.h>
45 #include <sys/stat.h>
46 #include <sys/types.h>
47 #include <unistd.h>
48 
49 #include <cassert>
50 #include <string>
51 
52 #include "base/bitfield.hh"
53 #include "base/loader/symtab.hh"
54 #include "base/logging.hh"
55 #include "base/trace.hh"
56 #include "debug/Loader.hh"
57 #include "gelf.h"
58 #include "sim/byteswap.hh"
59 
60 namespace Loader
61 {
62 
63 ObjectFile *
65 {
66  // check that header matches library version
67  if (elf_version(EV_CURRENT) == EV_NONE)
68  panic("wrong elf version number!");
69 
70  ObjectFile *object = nullptr;
71 
72  // get a pointer to elf structure
73  // Check that we actually have a elf file
74  Elf *elf =
75  elf_memory((char *)const_cast<uint8_t *>(ifd->data()), ifd->len());
76  assert(elf);
77 
78  GElf_Ehdr ehdr;
79  if (gelf_getehdr(elf, &ehdr) == 0)
80  DPRINTFR(Loader, "Not ELF\n");
81  else
82  object = new ElfObject(ifd);
83 
84  elf_end(elf);
85 
86  return object;
87 }
88 
89 namespace
90 {
91 
92 ElfObjectFormat elfObjectFormat;
93 std::string interpDir;
94 
95 } // anonymous namespace
96 
97 void
98 setInterpDir(const std::string &dirname)
99 {
100  fatal_if(!interpDir.empty(),
101  "Error: setInterpDir has already been called once\n");
102  interpDir = dirname;
103 }
104 
106 {
107  // get a pointer to elf structure
108  elf = elf_memory((char *)const_cast<uint8_t *>(imageData->data()),
109  imageData->len());
110  assert(elf);
111  gelf_getehdr(elf, &ehdr);
112 
113  determineArch();
114  determineOpSys();
115 
116  entry = ehdr.e_entry;
117  _programHeaderCount = ehdr.e_phnum;
118  _programHeaderSize = ehdr.e_phentsize;
119 
120  // Go through all the segments in the program and record them.
121  for (int i = 0; i < ehdr.e_phnum; ++i) {
122  GElf_Phdr phdr;
123  if (gelf_getphdr(elf, i, &phdr) == 0) {
124  panic("gelf_getphdr failed for segment %d.", i);
125  }
126 
127  if (phdr.p_type == PT_LOAD)
128  handleLoadableSegment(phdr, i);
129  if (phdr.p_type == PT_INTERP) {
130  // Make sure the interpreter is an valid ELF file.
131  auto interp_path = getInterpPath(phdr);
132  ObjectFile *obj = createObjectFile(interp_path);
133  interpreter = dynamic_cast<ElfObject *>(obj);
134  assert(interpreter != nullptr);
135  }
136  }
137 
138  // should have found at least one loadable segment
139  warn_if(image.segments().empty(),
140  "No loadable segments in '%s'. ELF file corrupted?\n",
141  imageData->filename());
142 
143  for (auto M5_VAR_USED &seg: image.segments())
144  DPRINTFR(Loader, "%s\n", seg);
145 
146  // We will actually read the sections when we need to load them
147 }
148 
149 std::string
150 ElfObject::getInterpPath(const GElf_Phdr &phdr) const
151 {
152  // This is the interpreter path as specified in the elf file
153  const std::string elf_path = (char *)imageData->data() + phdr.p_offset;
154  if (!interpDir.empty())
155  return interpDir + elf_path;
156  else
157  return elf_path;
158 }
159 
160 void
162 {
163  auto &emach = ehdr.e_machine;
164  auto &eclass = ehdr.e_ident[EI_CLASS];
165  auto &edata = ehdr.e_ident[EI_DATA];
166 
167  // Detect the architecture
168  if (emach == EM_SPARC64 || (emach == EM_SPARC && eclass == ELFCLASS64) ||
169  emach == EM_SPARCV9) {
170  arch = SPARC64;
171  } else if (emach == EM_SPARC32PLUS ||
172  (emach == EM_SPARC && eclass == ELFCLASS32)) {
173  arch = SPARC32;
174  } else if (emach == EM_MIPS && eclass == ELFCLASS32) {
175  arch = Mips;
176  if (edata != ELFDATA2LSB) {
177  fatal("The binary you're trying to load is compiled for big "
178  "endian MIPS. gem5\nonly supports little endian MIPS. "
179  "Please recompile your binary.\n");
180  }
181  } else if (emach == EM_X86_64 && eclass == ELFCLASS64) {
182  arch = X86_64;
183  } else if (emach == EM_386 && eclass == ELFCLASS32) {
184  arch = I386;
185  } else if (emach == EM_ARM && eclass == ELFCLASS32) {
186  arch = bits(ehdr.e_entry, 0) ? Thumb : Arm;
187  } else if (emach == EM_AARCH64 && eclass == ELFCLASS64) {
188  arch = Arm64;
189  } else if (emach == EM_RISCV) {
190  arch = (eclass == ELFCLASS64) ? Riscv64 : Riscv32;
191  } else if (emach == EM_PPC && eclass == ELFCLASS32) {
192  arch = Power;
193  if (edata != ELFDATA2MSB) {
194  fatal("The binary you're trying to load is compiled for "
195  "little endian Power.\ngem5 only supports big "
196  "endian Power. Please recompile your binary.\n");
197  }
198  } else if (emach == EM_PPC64) {
199  fatal("The binary you're trying to load is compiled for 64-bit "
200  "Power. M5\n only supports 32-bit Power. Please "
201  "recompile your binary.\n");
202  } else {
203  warn("Unknown architecture: %d\n", emach);
204  }
205 }
206 
207 void
209 {
210  // Detect the operating system
211  switch (ehdr.e_ident[EI_OSABI]) {
212  case ELFOSABI_LINUX:
213  opSys = Linux;
214  return;
215  case ELFOSABI_SOLARIS:
216  opSys = Solaris;
217  return;
218  case ELFOSABI_TRU64:
219  opSys = Tru64;
220  return;
221  case ELFOSABI_ARM:
223  return;
224  case ELFOSABI_FREEBSD:
225  opSys = FreeBSD;
226  return;
227  default:
229  }
230 
231  Elf_Scn *section = elf_getscn(elf, 1);
232  for (int sec_idx = 1; section; section = elf_getscn(elf, ++sec_idx)) {
233  GElf_Shdr shdr;
234  gelf_getshdr(section, &shdr);
235 
236  char *e_str = elf_strptr(elf, ehdr.e_shstrndx, shdr.sh_name);
237  if (shdr.sh_type == SHT_NOTE && !strcmp(".note.ABI-tag", e_str)) {
238  // we have found a ABI note section
239  // Check the 5th 32bit word for OS 0 == linux, 1 == hurd,
240  // 2 == solaris, 3 == freebsd
241  Elf_Data *raw_data = elf_rawdata(section, nullptr);
242  assert(raw_data && raw_data->d_buf);
243 
244  uint32_t raw_abi = ((uint32_t *)raw_data->d_buf)[4];
245  bool is_le = ehdr.e_ident[EI_DATA] == ELFDATA2LSB;
246  uint32_t os_abi = is_le ? htole(raw_abi) : htobe(raw_abi);
247 
248  switch (os_abi) {
249  case 0:
250  opSys = Linux;
251  return;
252  case 1:
253  fatal("gem5 does not support the HURD ABI.\n");
254  case 2:
255  opSys = Solaris;
256  return;
257  case 3:
258  opSys = FreeBSD;
259  return;
260  }
261  }
262 
263  if (!strcmp(".SUNW_version", e_str) || !strcmp(".stab.index", e_str)) {
264  opSys = Solaris;
265  return;
266  }
267  }
268 }
269 
270 void
271 ElfObject::handleLoadableSegment(GElf_Phdr phdr, int seg_num)
272 {
273  auto name = std::to_string(seg_num);
274 
275  image.addSegment({ name, phdr.p_paddr, imageData,
276  phdr.p_offset, phdr.p_filesz });
277  Addr uninitialized = phdr.p_memsz - phdr.p_filesz;
278  if (uninitialized) {
279  // There may be parts of a segment which aren't included in the
280  // file. In those cases, we need to create a new segment with no
281  // data to take up the extra space. This should be zeroed when
282  // loaded into memory.
283  image.addSegment({ name + "(uninitialized)",
284  phdr.p_paddr + phdr.p_filesz, uninitialized });
285  }
286 
287  const Addr file_start = phdr.p_offset;
288  const Addr file_end = file_start + phdr.p_filesz;
289 
290  // If there is a program header table, figure out the virtual
291  // address of the header table in the final memory image. We use
292  // the program headers themselves to translate from a file offset
293  // to the address in the image.
294  if (file_start <= ehdr.e_phoff && file_end > ehdr.e_phoff)
295  _programHeaderTable = phdr.p_vaddr + (ehdr.e_phoff - file_start);
296 }
297 
299 {
300  elf_end(elf);
301 }
302 
303 bool
305  Addr base, Addr offset)
306 {
307  if (!symtab)
308  return false;
309 
310  // check that header matches library version
311  if (elf_version(EV_CURRENT) == EV_NONE)
312  panic("wrong elf version number!");
313 
314  // get a pointer to elf structure
315  Elf *elf = elf_memory((char *)const_cast<uint8_t *>(
316  imageData->data()), imageData->len());
317  assert(elf != NULL);
318 
319  // Get the first section
320  int sec_idx = 1; // there is a 0 but it is nothing, go figure
321  Elf_Scn *section = elf_getscn(elf, sec_idx);
322 
323  // While there are no more sections
324  bool found = false;
325  while (section != NULL) {
326  GElf_Shdr shdr;
327  gelf_getshdr(section, &shdr);
328 
329  if (shdr.sh_type == SHT_SYMTAB) {
330  found = true;
331  Elf_Data *data = elf_getdata(section, NULL);
332  int count = shdr.sh_size / shdr.sh_entsize;
333  DPRINTF(Loader, "Found Symbol Table, %d symbols present\n", count);
334 
335  // loop through all the symbols, only loading global ones
336  for (int i = 0; i < count; ++i) {
337  GElf_Sym sym;
338  gelf_getsym(data, i, &sym);
339  if (GELF_ST_BIND(sym.st_info) == binding) {
340  char *sym_name =
341  elf_strptr(elf, shdr.sh_link, sym.st_name);
342  if (sym_name && sym_name[0] != '$') {
343  Addr value = sym.st_value - base + offset;
344  if (symtab->insert(value & mask, sym_name)) {
345  DPRINTF(Loader, "Symbol: %-40s value %#x\n",
346  sym_name, value);
347  }
348  }
349  }
350  }
351  }
352  ++sec_idx;
353  section = elf_getscn(elf, sec_idx);
354  }
355 
356  elf_end(elf);
357 
358  return found;
359 }
360 
361 bool
363  Addr addr_mask)
364 {
365  return (loadGlobalSymbols(symtab, base, offset, addr_mask) &&
366  loadLocalSymbols(symtab, base, offset, addr_mask) &&
367  loadWeakSymbols(symtab, base, offset, addr_mask));
368 }
369 
370 bool
372  Addr addr_mask)
373 {
374  if (interpreter) {
375  interpreter->loadSomeSymbols(symtab, STB_GLOBAL, addr_mask,
376  base, offset);
377  }
378  return loadSomeSymbols(symtab, STB_GLOBAL, addr_mask, base, offset);
379 }
380 
381 bool
383  Addr addr_mask)
384 {
385  if (interpreter) {
386  interpreter->loadSomeSymbols(symtab, STB_LOCAL, addr_mask,
387  base, offset);
388  }
389  return loadSomeSymbols(symtab, STB_LOCAL, addr_mask, base, offset);
390 }
391 
392 bool
394  Addr addr_mask)
395 {
396  if (interpreter) {
397  interpreter->loadSomeSymbols(symtab, STB_WEAK, addr_mask,
398  base, offset);
399  }
400  return loadSomeSymbols(symtab, STB_WEAK, addr_mask, base, offset);
401 }
402 
403 void
405 {
406  assert(!sectionNames.size());
407 
408  // check that header matches library version
409  if (elf_version(EV_CURRENT) == EV_NONE)
410  panic("wrong elf version number!");
411 
412  // get a pointer to elf structure
413  Elf *elf =
414  elf_memory((char *)const_cast<uint8_t *>(imageData->data()),
415  imageData->len());
416  assert(elf != NULL);
417 
418  // Check that we actually have a elf file
419  GElf_Ehdr ehdr;
420  if (gelf_getehdr(elf, &ehdr) ==0) {
421  panic("Not ELF, shouldn't be here");
422  }
423 
424  // Get the first section
425  int sec_idx = 1; // there is a 0 but it is nothing, go figure
426  Elf_Scn *section = elf_getscn(elf, sec_idx);
427 
428  // While there are no more sections
429  while (section) {
430  GElf_Shdr shdr;
431  gelf_getshdr(section, &shdr);
432  sectionNames.insert(elf_strptr(elf, ehdr.e_shstrndx, shdr.sh_name));
433  section = elf_getscn(elf, ++sec_idx);
434  } // while sections
435 
436  elf_end(elf);
437 }
438 
439 bool
440 ElfObject::sectionExists(std::string sec)
441 {
442  if (!sectionNames.size())
443  getSections();
444 
445  return sectionNames.find(sec) != sectionNames.end();
446 }
447 
448 
449 void
451 {
452  // Record the bias.
453  ldBias = bias_addr;
454 
455  // Patch the entry point with bias_addr.
456  entry += bias_addr;
457 
458  // Patch segments with the bias_addr.
459  image.offset(bias_addr);
460 }
461 
462 } // namespace Loader
count
Definition: misc.hh:703
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
#define DPRINTF(x,...)
Definition: trace.hh:225
bool loadSomeSymbols(SymbolTable *symtab, int binding, Addr mask, Addr base, Addr offset)
Helper functions for loadGlobalSymbols() and loadLocalSymbols().
Definition: elf_object.cc:304
ElfObject * interpreter
Definition: elf_object.hh:76
GElf_Ehdr ehdr
Definition: elf_object.hh:63
ObjectFile * createObjectFile(const std::string &fname, bool raw)
Definition: object_file.cc:61
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:171
const std::string & name()
Definition: trace.cc:50
Bitfield< 7 > i
MemoryImage image
Definition: elf_object.hh:101
ObjectFile * load(ImageFileDataPtr data) override
Definition: elf_object.cc:64
ElfObject(ImageFileDataPtr ifd)
Definition: elf_object.cc:105
ImageFileDataPtr imageData
Definition: image_file.hh:44
Addr _programHeaderTable
Definition: elf_object.hh:71
std::shared_ptr< ImageFileData > ImageFileDataPtr
Bitfield< 23, 0 > offset
Definition: types.hh:152
bool loadAllSymbols(SymbolTable *symtab, Addr base=0, Addr offset=0, Addr addr_mask=MaxAddr) override
Definition: elf_object.cc:362
void setInterpDir(const std::string &dirname)
This is the interface for setting up a base path for the elf interpreter.
Definition: elf_object.cc:98
uint16_t _programHeaderSize
Definition: elf_object.hh:72
bool insert(Addr address, std::string symbol)
Definition: symtab.cc:56
T htole(T value)
Definition: byteswap.hh:140
bool loadWeakSymbols(SymbolTable *symtab, Addr base=0, Addr offset=0, Addr addr_mask=MaxAddr) override
Definition: elf_object.cc:393
MemoryImage & offset(Addr by)
bool sectionExists(std::string sec)
Definition: elf_object.cc:440
Bitfield< 51, 12 > base
Definition: pagetable.hh:141
#define warn_if(cond,...)
Conditional warning macro that checks the supplied condition and only prints a warning if the conditi...
Definition: logging.hh:224
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition: logging.hh:199
void updateBias(Addr bias_addr) override
Definition: elf_object.cc:450
uint16_t _programHeaderCount
Definition: elf_object.hh:73
Bitfield< 2, 0 > seg
Definition: types.hh:82
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
std::string getInterpPath(const GElf_Phdr &phdr) const
Definition: elf_object.cc:150
void handleLoadableSegment(GElf_Phdr phdr, int seg_num)
Definition: elf_object.cc:271
const std::vector< Segment > & segments() const
void addSegment(const Segment &seg)
bool loadGlobalSymbols(SymbolTable *symtab, Addr base=0, Addr offset=0, Addr addr_mask=MaxAddr) override
Definition: elf_object.cc:371
T htobe(T value)
Definition: byteswap.hh:142
bool loadLocalSymbols(SymbolTable *symtab, Addr base=0, Addr offset=0, Addr addr_mask=MaxAddr) override
Definition: elf_object.cc:382
std::set< std::string > sectionNames
Definition: elf_object.hh:74
Bitfield< 3, 0 > mask
Definition: types.hh:62
#define warn(...)
Definition: logging.hh:208
T bits(T val, int first, int last)
Extract the bitfield from position &#39;first&#39; to &#39;last&#39; (inclusive) from &#39;val&#39; and right justify it...
Definition: bitfield.hh:71
const char data[]
const std::string to_string(sc_enc enc)
Definition: sc_fxdefs.cc:60
#define DPRINTFR(...)
Definition: trace.hh:227

Generated on Thu May 28 2020 16:21:29 for gem5 by doxygen 1.8.13