diff options
author | Andreas Gampe <agampe@google.com> | 2014-09-12 18:38:24 -0700 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2014-09-15 22:34:11 -0700 |
commit | daab38ca60c5b91787e29c87a161a2bb8c1b6f11 (patch) | |
tree | 0b155557e516ec1ff571c359af904e00d31d0c43 /compiler/elf_fixup.cc | |
parent | d2e5a6934ca1a07c9e1e87d3d0b21b63e1011934 (diff) | |
download | art-daab38ca60c5b91787e29c87a161a2bb8c1b6f11.zip art-daab38ca60c5b91787e29c87a161a2bb8c1b6f11.tar.gz art-daab38ca60c5b91787e29c87a161a2bb8c1b6f11.tar.bz2 |
ART: Make elf loading not abort
Changes elf_file code to use less CHECKs and instead return error
values (usually nullptr). This avoids aborts.
In oat_file, when loading an oat file fails, try to unlink at. If
this succeeds, on the next run we may compile again.
Bug: 17491333
(cherry picked from commit afa6b8e93a0dc0de33c9d404945c7c5621e20b1a)
Change-Id: I50fdd2edacd86f25d4dacf2180ce2a6105eaf4af
Diffstat (limited to 'compiler/elf_fixup.cc')
-rw-r--r-- | compiler/elf_fixup.cc | 50 |
1 files changed, 27 insertions, 23 deletions
diff --git a/compiler/elf_fixup.cc b/compiler/elf_fixup.cc index bbfbc6e..0d34879 100644 --- a/compiler/elf_fixup.cc +++ b/compiler/elf_fixup.cc @@ -89,17 +89,18 @@ bool ElfFixup::FixupDynamic(ElfFile& elf_file, uintptr_t base_address) { bool ElfFixup::FixupSectionHeaders(ElfFile& elf_file, uintptr_t base_address) { for (Elf32_Word i = 0; i < elf_file.GetSectionHeaderNum(); i++) { - Elf32_Shdr& sh = elf_file.GetSectionHeader(i); + Elf32_Shdr* sh = elf_file.GetSectionHeader(i); + CHECK(sh != nullptr); // 0 implies that the section will not exist in the memory of the process - if (sh.sh_addr == 0) { + if (sh->sh_addr == 0) { continue; } if (DEBUG_FIXUP) { LOG(INFO) << StringPrintf("In %s moving Elf32_Shdr[%d] from 0x%08x to 0x%08" PRIxPTR, elf_file.GetFile().GetPath().c_str(), i, - sh.sh_addr, sh.sh_addr + base_address); + sh->sh_addr, sh->sh_addr + base_address); } - sh.sh_addr += base_address; + sh->sh_addr += base_address; } return true; } @@ -107,18 +108,19 @@ bool ElfFixup::FixupSectionHeaders(ElfFile& elf_file, uintptr_t base_address) { bool ElfFixup::FixupProgramHeaders(ElfFile& elf_file, uintptr_t base_address) { // TODO: ELFObjectFile doesn't have give to Elf32_Phdr, so we do that ourselves for now. for (Elf32_Word i = 0; i < elf_file.GetProgramHeaderNum(); i++) { - Elf32_Phdr& ph = elf_file.GetProgramHeader(i); - CHECK_EQ(ph.p_vaddr, ph.p_paddr) << elf_file.GetFile().GetPath() << " i=" << i; - CHECK((ph.p_align == 0) || (0 == ((ph.p_vaddr - ph.p_offset) & (ph.p_align - 1)))) + Elf32_Phdr* ph = elf_file.GetProgramHeader(i); + CHECK(ph != nullptr); + CHECK_EQ(ph->p_vaddr, ph->p_paddr) << elf_file.GetFile().GetPath() << " i=" << i; + CHECK((ph->p_align == 0) || (0 == ((ph->p_vaddr - ph->p_offset) & (ph->p_align - 1)))) << elf_file.GetFile().GetPath() << " i=" << i; if (DEBUG_FIXUP) { LOG(INFO) << StringPrintf("In %s moving Elf32_Phdr[%d] from 0x%08x to 0x%08" PRIxPTR, elf_file.GetFile().GetPath().c_str(), i, - ph.p_vaddr, ph.p_vaddr + base_address); + ph->p_vaddr, ph->p_vaddr + base_address); } - ph.p_vaddr += base_address; - ph.p_paddr += base_address; - CHECK((ph.p_align == 0) || (0 == ((ph.p_vaddr - ph.p_offset) & (ph.p_align - 1)))) + ph->p_vaddr += base_address; + ph->p_paddr += base_address; + CHECK((ph->p_align == 0) || (0 == ((ph->p_vaddr - ph->p_offset) & (ph->p_align - 1)))) << elf_file.GetFile().GetPath() << " i=" << i; } return true; @@ -128,20 +130,21 @@ bool ElfFixup::FixupSymbols(ElfFile& elf_file, uintptr_t base_address, bool dyna Elf32_Word section_type = dynamic ? SHT_DYNSYM : SHT_SYMTAB; // TODO: Unfortunate ELFObjectFile has protected symbol access, so use ElfFile Elf32_Shdr* symbol_section = elf_file.FindSectionByType(section_type); - if (symbol_section == NULL) { + if (symbol_section == nullptr) { // file is missing optional .symtab CHECK(!dynamic) << elf_file.GetFile().GetPath(); return true; } for (uint32_t i = 0; i < elf_file.GetSymbolNum(*symbol_section); i++) { - Elf32_Sym& symbol = elf_file.GetSymbol(section_type, i); - if (symbol.st_value != 0) { + Elf32_Sym* symbol = elf_file.GetSymbol(section_type, i); + CHECK(symbol != nullptr); + if (symbol->st_value != 0) { if (DEBUG_FIXUP) { LOG(INFO) << StringPrintf("In %s moving Elf32_Sym[%d] from 0x%08x to 0x%08" PRIxPTR, elf_file.GetFile().GetPath().c_str(), i, - symbol.st_value, symbol.st_value + base_address); + symbol->st_value, symbol->st_value + base_address); } - symbol.st_value += base_address; + symbol->st_value += base_address; } } return true; @@ -149,10 +152,11 @@ bool ElfFixup::FixupSymbols(ElfFile& elf_file, uintptr_t base_address, bool dyna bool ElfFixup::FixupRelocations(ElfFile& elf_file, uintptr_t base_address) { for (Elf32_Word i = 0; i < elf_file.GetSectionHeaderNum(); i++) { - Elf32_Shdr& sh = elf_file.GetSectionHeader(i); - if (sh.sh_type == SHT_REL) { - for (uint32_t i = 0; i < elf_file.GetRelNum(sh); i++) { - Elf32_Rel& rel = elf_file.GetRel(sh, i); + Elf32_Shdr* sh = elf_file.GetSectionHeader(i); + CHECK(sh != nullptr); + if (sh->sh_type == SHT_REL) { + for (uint32_t i = 0; i < elf_file.GetRelNum(*sh); i++) { + Elf32_Rel& rel = elf_file.GetRel(*sh, i); if (DEBUG_FIXUP) { LOG(INFO) << StringPrintf("In %s moving Elf32_Rel[%d] from 0x%08x to 0x%08" PRIxPTR, elf_file.GetFile().GetPath().c_str(), i, @@ -160,9 +164,9 @@ bool ElfFixup::FixupRelocations(ElfFile& elf_file, uintptr_t base_address) { } rel.r_offset += base_address; } - } else if (sh.sh_type == SHT_RELA) { - for (uint32_t i = 0; i < elf_file.GetRelaNum(sh); i++) { - Elf32_Rela& rela = elf_file.GetRela(sh, i); + } else if (sh->sh_type == SHT_RELA) { + for (uint32_t i = 0; i < elf_file.GetRelaNum(*sh); i++) { + Elf32_Rela& rela = elf_file.GetRela(*sh, i); if (DEBUG_FIXUP) { LOG(INFO) << StringPrintf("In %s moving Elf32_Rela[%d] from 0x%08x to 0x%08" PRIxPTR, elf_file.GetFile().GetPath().c_str(), i, |