Lines Matching refs:error_msg
68 std::string* error_msg, in Open() argument
81 if (!elf_file->Setup(file, prot, flags, low_4gb, error_msg)) { in Open()
92 std::string* error_msg) { in Open() argument
96 if (!elf_file->Setup(file, prot, flags, low_4gb, error_msg)) { in Open()
107 std::string* error_msg) { in Setup() argument
111 *error_msg = StringPrintf("Failed to get length of file: '%s' fd=%d: %s", in Setup()
117 *error_msg = StringPrintf("File size of %zd bytes not large enough to contain ELF header of " in Setup()
134 error_msg), in Setup()
135 error_msg)) { in Setup()
141 *error_msg = StringPrintf("File size of %zd bytes not large enough to contain ELF program " in Setup()
154 error_msg), in Setup()
155 error_msg)) { in Setup()
156 *error_msg = StringPrintf("Failed to map ELF program headers: %s", error_msg->c_str()); in Setup()
169 error_msg), in Setup()
170 error_msg)) { in Setup()
171 *error_msg = StringPrintf("Failed to map ELF file: %s", error_msg->c_str()); in Setup()
179 if (!CheckAndSet(GetHeader().e_phoff, "program headers", &program_headers_start_, error_msg)) { in Setup()
184 if (!CheckAndSet(GetHeader().e_shoff, "section headers", §ion_headers_start_, error_msg)) { in Setup()
191 *error_msg = StringPrintf("Failed to find shstrtab section header in ELF file: '%s'", in Setup()
199 *error_msg = StringPrintf("Failed to find PT_DYNAMIC program header in ELF file: '%s'", in Setup()
205 reinterpret_cast<uint8_t**>(&dynamic_section_start_), error_msg)) { in Setup()
213 *error_msg = StringPrintf("Failed to find section header for section %d in ELF file: '%s'", in Setup()
220 reinterpret_cast<uint8_t**>(&symtab_section_start_), error_msg)) { in Setup()
227 reinterpret_cast<uint8_t**>(&dynsym_section_start_), error_msg)) { in Setup()
239 reinterpret_cast<uint8_t**>(&dynstr_section_start_), error_msg)) { in Setup()
248 reinterpret_cast<uint8_t**>(&strtab_section_start_), error_msg)) { in Setup()
268 reinterpret_cast<uint8_t**>(&hash_section_start_), error_msg)) { in Setup()
277 if (!CheckSectionsExist(file, error_msg)) { in Setup()
294 uint8_t** target, std::string* error_msg) { in CheckAndSet() argument
296 *error_msg = StringPrintf("Offset %d is out of range for %s in ELF file: '%s'", offset, label, in CheckAndSet()
338 bool ElfFileImpl<ElfTypes>::CheckSectionsExist(File* file, std::string* error_msg) const { in CheckSectionsExist()
342 *error_msg = StringPrintf("No section headers in ELF file: '%s'", file->GetPath().c_str()); in CheckSectionsExist()
349 *error_msg = StringPrintf("Failed to find PT_DYNAMIC program header in ELF file: '%s'", in CheckSectionsExist()
356 *error_msg = StringPrintf("Failed to find dynamic section in ELF file: '%s'", in CheckSectionsExist()
366 *error_msg = StringPrintf("No strtab for symtab in ELF file: '%s'", file->GetPath().c_str()); in CheckSectionsExist()
373 *error_msg = StringPrintf("Symtab is not linked to the strtab in ELF file: '%s'", in CheckSectionsExist()
381 *error_msg = StringPrintf("No dynstr in ELF file: '%s'", file->GetPath().c_str()); in CheckSectionsExist()
385 *error_msg = StringPrintf("No dynsym in ELF file: '%s'", file->GetPath().c_str()); in CheckSectionsExist()
391 *error_msg = StringPrintf("Failed to find hash section in ELF file: '%s'", in CheckSectionsExist()
399 *error_msg = StringPrintf("Hash section is not linked to the dynstr in ELF file: '%s'", in CheckSectionsExist()
412 *error_msg = StringPrintf("Shstrtab is not in the mapped ELF file: '%s'", in CheckSectionsExist()
422 bool ElfFileImpl<ElfTypes>::SetMap(File* file, MemMap* map, std::string* error_msg) { in SetMap() argument
425 DCHECK(!error_msg->empty()); in SetMap()
437 *error_msg = StringPrintf("Failed to find ELF magic value %d %d %d %d in %s, found %d %d %d %d", in SetMap()
448 *error_msg = StringPrintf("Failed to find expected EI_CLASS value %d in %s, found %d", in SetMap()
455 *error_msg = StringPrintf("Failed to find expected EI_DATA value %d in %s, found %d", in SetMap()
462 *error_msg = StringPrintf("Failed to find expected EI_VERSION value %d in %s, found %d", in SetMap()
469 *error_msg = StringPrintf("Failed to find expected e_type value %d in %s, found %d", in SetMap()
476 *error_msg = StringPrintf("Failed to find expected e_version value %d in %s, found %d", in SetMap()
483 *error_msg = StringPrintf("Failed to find expected e_entry value %d in %s, found %d", in SetMap()
490 *error_msg = StringPrintf("Failed to find non-zero e_phoff value in %s", in SetMap()
495 *error_msg = StringPrintf("Failed to find non-zero e_shoff value in %s", in SetMap()
500 *error_msg = StringPrintf("Failed to find non-zero e_ehsize value in %s", in SetMap()
505 *error_msg = StringPrintf("Failed to find non-zero e_phentsize value in %s", in SetMap()
510 *error_msg = StringPrintf("Failed to find non-zero e_phnum value in %s", in SetMap()
515 *error_msg = StringPrintf("Failed to find non-zero e_shentsize value in %s", in SetMap()
520 *error_msg = StringPrintf("Failed to find non-zero e_shnum value in %s", in SetMap()
525 *error_msg = StringPrintf("Failed to find non-zero e_shstrndx value in %s", in SetMap()
530 *error_msg = StringPrintf("Failed to find e_shnum value %d less than %d in %s", in SetMap()
539 *error_msg = StringPrintf("Failed to find e_phoff value %" PRIu64 " less than %zd in %s", in SetMap()
546 *error_msg = StringPrintf("Failed to find e_shoff value %" PRIu64 " less than %zd in %s", in SetMap()
1034 bool ElfFileImpl<ElfTypes>::GetLoadedSize(size_t* size, std::string* error_msg) const { in GetLoadedSize()
1052 *error_msg = oss.str(); in GetLoadedSize()
1069 *error_msg = oss.str(); in GetLoadedSize()
1081 std::string* error_msg) { in Load() argument
1089 *error_msg = oss.str(); in Load()
1098 *error_msg = StringPrintf("No program header for entry %d in ELF file %s.", in Load()
1126 *error_msg = StringPrintf("Failed to get length of file: '%s' fd=%d: %s", in Load()
1141 if (!GetLoadedSize(&loaded_size, error_msg)) { in Load()
1142 DCHECK(!error_msg->empty()); in Load()
1151 error_msg)); in Load()
1153 *error_msg = StringPrintf("Failed to allocate %s: %s", in Load()
1154 reservation_name.c_str(), error_msg->c_str()); in Load()
1192 *error_msg = StringPrintf("Invalid p_filesz > p_memsz (%" PRIu64 " > %" PRIu64 "): %s", in Load()
1200 *error_msg = StringPrintf("Unsupported unaligned p_filesz < p_memsz (%" PRIu64 in Load()
1208 *error_msg = StringPrintf("File size of %zd bytes not large enough to contain ELF segment " in Load()
1225 error_msg)); in Load()
1227 *error_msg = StringPrintf("Failed to map ELF file segment %d from %s: %s", in Load()
1228 i, file->GetPath().c_str(), error_msg->c_str()); in Load()
1232 … *error_msg = StringPrintf("Failed to map ELF file segment %d from %s at expected address %p, " in Load()
1246 prot, false, true /* reuse */, error_msg)); in Load()
1248 *error_msg = StringPrintf("Failed to map zero-initialized ELF file segment %d from %s: %s", in Load()
1249 i, file->GetPath().c_str(), error_msg->c_str()); in Load()
1253 *error_msg = StringPrintf("Failed to map zero-initialized ELF file segment %d from %s " in Load()
1265 *error_msg = StringPrintf("dynamic section address invalid in ELF file %s", in Load()
1277 *error_msg = StringPrintf("DT_HASH value %p does not refer to a loaded ELF segment of %s", in Load()
1286 *error_msg = StringPrintf("DT_HASH value %p does not refer to a loaded ELF segment of %s", in Load()
1295 *error_msg = StringPrintf("DT_HASH value %p does not refer to a loaded ELF segment of %s", in Load()
1304 *error_msg = StringPrintf("DT_NULL found after %d .dynamic entries, " in Load()
1315 if (!CheckSectionsExist(file, error_msg)) { in Load()
1409 bool ElfFileImpl<ElfTypes>::Strip(File* file, std::string* error_msg) { in Strip() argument
1503 *error_msg = StringPrintf("Failed to truncate while stripping ELF file: '%s': %s", in Strip()
1686 std::string* error_msg, in Open() argument
1689 *error_msg = StringPrintf("File %s is too short to be a valid ELF file", in Open()
1700 error_msg)); in Open()
1710 error_msg, in Open()
1721 error_msg, in Open()
1728 *error_msg = StringPrintf("Failed to find expected EI_CLASS value %d or %d in %s, found %d", in Open()
1736 ElfFile* ElfFile::Open(File* file, int mmap_prot, int mmap_flags, std::string* error_msg) { in Open() argument
1740 *error_msg = StringPrintf("File %s is too short to be a valid ELF file", in Open()
1751 error_msg)); in Open()
1761 error_msg); in Open()
1771 error_msg); in Open()
1777 *error_msg = StringPrintf("Failed to find expected EI_CLASS value %d or %d in %s, found %d", in Open()
1793 bool ElfFile::Load(File* file, bool executable, bool low_4gb, std::string* error_msg) { in Load() argument
1794 DELEGATE_TO_IMPL(Load, file, executable, low_4gb, error_msg); in Load()
1862 bool ElfFile::GetLoadedSize(size_t* size, std::string* error_msg) const { in GetLoadedSize()
1863 DELEGATE_TO_IMPL(GetLoadedSize, size, error_msg); in GetLoadedSize()
1866 bool ElfFile::Strip(File* file, std::string* error_msg) { in Strip() argument
1867 std::unique_ptr<ElfFile> elf_file(ElfFile::Open(file, true, false, /*low_4gb*/false, error_msg)); in Strip()
1873 return elf_file->elf64_->Strip(file, error_msg); in Strip()
1875 return elf_file->elf32_->Strip(file, error_msg); in Strip()