46 #include <sys/types.h>
57 #include "debug/Loader.hh"
72 if (elf_version(EV_CURRENT) == EV_NONE)
73 panic(
"wrong elf version number!");
80 elf_memory((
char *)
const_cast<uint8_t *
>(ifd->data()), ifd->len());
84 if (gelf_getehdr(elf, &ehdr) == 0)
98 std::string interpDir;
106 "Error: setInterpDir has already been called once\n");
113 elf = elf_memory((
char *)
const_cast<uint8_t *
>(
imageData->data()),
127 for (
int i = 0;
i <
ehdr.e_phnum; ++
i) {
129 if (gelf_getphdr(
elf,
i, &phdr) == 0) {
130 panic(
"gelf_getphdr failed for segment %d.",
i);
133 if (phdr.p_type == PT_LOAD)
135 if (phdr.p_type == PT_INTERP) {
147 "No loadable segments in '%s'. ELF file corrupted?\n",
156 if (elf_version(EV_CURRENT) == EV_NONE)
157 panic(
"wrong elf version number!");
161 Elf_Scn *section = elf_getscn(
elf, sec_idx);
166 gelf_getshdr(section, &shdr);
168 if (shdr.sh_type == SHT_SYMTAB) {
169 Elf_Data *
data = elf_getdata(section,
nullptr);
170 int count = shdr.sh_size / shdr.sh_entsize;
171 DPRINTF(Loader,
"Found Symbol Table, %d symbols present.",
count);
176 gelf_getsym(
data,
i, &sym);
178 char *sym_name = elf_strptr(
elf, shdr.sh_link, sym.st_name);
179 if (!sym_name || sym_name[0] ==
'$')
184 symbol.
name = sym_name;
186 switch (GELF_ST_BIND(sym.st_info)) {
201 DPRINTF(Loader,
"Symbol: %-40s value %#x.\n",
207 section = elf_getscn(
elf, sec_idx);
215 const std::string elf_path = (
char *)
imageData->data() + phdr.p_offset;
216 if (!interpDir.empty())
217 return interpDir + elf_path;
225 auto &emach =
ehdr.e_machine;
226 auto &eclass =
ehdr.e_ident[EI_CLASS];
227 auto &edata =
ehdr.e_ident[EI_DATA];
230 if (emach == EM_SPARC64 || (emach == EM_SPARC && eclass == ELFCLASS64) ||
231 emach == EM_SPARCV9) {
233 }
else if (emach == EM_SPARC32PLUS ||
234 (emach == EM_SPARC && eclass == ELFCLASS32)) {
236 }
else if (emach == EM_MIPS && eclass == ELFCLASS32) {
238 if (edata != ELFDATA2LSB) {
239 fatal(
"The binary you're trying to load is compiled for big "
240 "endian MIPS. gem5\nonly supports little endian MIPS. "
241 "Please recompile your binary.\n");
243 }
else if (emach == EM_X86_64 && eclass == ELFCLASS64) {
245 }
else if (emach == EM_386 && eclass == ELFCLASS32) {
247 }
else if (emach == EM_ARM && eclass == ELFCLASS32) {
249 }
else if (emach == EM_AARCH64 && eclass == ELFCLASS64) {
251 }
else if (emach == EM_RISCV) {
253 }
else if (emach == EM_PPC && eclass == ELFCLASS32) {
255 }
else if (emach == EM_PPC64 && eclass == ELFCLASS64) {
258 warn(
"Unknown architecture: %d\n", emach);
267 if (
ehdr.e_machine == EM_PPC64) {
268 switch (
ehdr.e_flags & 0x3) {
272 if (
ehdr.e_ident[EI_DATA] == ELFDATA2MSB)
274 if (
ehdr.e_ident[EI_DATA] == ELFDATA2LSB)
281 switch (
ehdr.e_ident[EI_OSABI]) {
285 case ELFOSABI_SOLARIS:
294 case ELFOSABI_FREEBSD:
301 Elf_Scn *section = elf_getscn(
elf, 1);
302 for (
int sec_idx = 1; section; section = elf_getscn(
elf, ++sec_idx)) {
304 gelf_getshdr(section, &shdr);
306 char *e_str = elf_strptr(
elf,
ehdr.e_shstrndx, shdr.sh_name);
307 if (shdr.sh_type == SHT_NOTE && !strcmp(
".note.ABI-tag", e_str)) {
311 Elf_Data *raw_data = elf_rawdata(section,
nullptr);
312 assert(raw_data && raw_data->d_buf);
314 uint32_t raw_abi = ((uint32_t *)raw_data->d_buf)[4];
315 bool is_le =
ehdr.e_ident[EI_DATA] == ELFDATA2LSB;
316 uint32_t os_abi = is_le ?
htole(raw_abi) :
htobe(raw_abi);
323 fatal(
"gem5 does not support the HURD ABI.\n");
333 if (!strcmp(
".SUNW_version", e_str) || !strcmp(
".stab.index", e_str)) {
343 auto edata =
ehdr.e_ident[EI_DATA];
344 if (edata == ELFDATANONE)
345 panic(
"invalid ELF data encoding");
346 byteOrder = (edata == ELFDATA2MSB) ? ByteOrder::big : ByteOrder::little;
354 if (phdr.p_memsz == 0) {
355 warn(
"Ignoring empty loadable segment %s",
name);
360 phdr.p_offset, phdr.p_filesz });
361 Addr uninitialized = phdr.p_memsz - phdr.p_filesz;
368 phdr.p_paddr + phdr.p_filesz, uninitialized });
371 const Addr file_start = phdr.p_offset;
372 const Addr file_end = file_start + phdr.p_filesz;
378 if (file_start <= ehdr.e_phoff && file_end >
ehdr.e_phoff)
393 if (elf_version(EV_CURRENT) == EV_NONE)
394 panic(
"wrong elf version number!");
398 elf_memory((
char *)
const_cast<uint8_t *
>(
imageData->data()),
404 if (gelf_getehdr(
elf, &
ehdr) ==0) {
405 panic(
"Not ELF, shouldn't be here");
410 Elf_Scn *section = elf_getscn(
elf, sec_idx);
415 gelf_getshdr(section, &shdr);
417 section = elf_getscn(
elf, ++sec_idx);