linker: improve "bad ELF magic" error.
Include what we actually saw. Bug: http://b/79463184 Test: ran tests Change-Id: Id5f8aa3ab94b411ea839b0a1ada9beda9053a10f
This commit is contained in:
parent
92c6f7ee90
commit
a897151426
2 changed files with 3 additions and 2 deletions
|
@ -213,7 +213,8 @@ static const char* EM_to_string(int em) {
|
|||
|
||||
bool ElfReader::VerifyElfHeader() {
|
||||
if (memcmp(header_.e_ident, ELFMAG, SELFMAG) != 0) {
|
||||
DL_ERR("\"%s\" has bad ELF magic", name_.c_str());
|
||||
DL_ERR("\"%s\" has bad ELF magic: %02x%02x%02x%02x", name_.c_str(),
|
||||
header_.e_ident[0], header_.e_ident[1], header_.e_ident[2], header_.e_ident[3]);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -173,7 +173,7 @@ TEST_F(DlExtTest, ExtInfoUseFdWithInvalidOffset) {
|
|||
extinfo.library_fd_offset = 0;
|
||||
handle_ = android_dlopen_ext("libname_ignored", RTLD_NOW, &extinfo);
|
||||
ASSERT_TRUE(handle_ == nullptr);
|
||||
ASSERT_EQ("dlopen failed: \"" + lib_path + "\" has bad ELF magic", dlerror());
|
||||
ASSERT_EQ("dlopen failed: \"" + lib_path + "\" has bad ELF magic: 504b0304", dlerror());
|
||||
|
||||
// Check if dlsym works after unsuccessful dlopen().
|
||||
// Supply non-exiting one to make linker visit every soinfo.
|
||||
|
|
Loading…
Reference in a new issue