I was skipping over symbols/relocs that I needed to handle

2.0
_xeroxz 4 years ago
parent 0c421e5050
commit 0c915c05d3

@ -151,7 +151,7 @@ namespace lnk
const auto string_table = const auto string_table =
reinterpret_cast<const char*>( reinterpret_cast<const char*>(
reinterpret_cast<std::uintptr_t>(symbol_table) + reinterpret_cast<std::uintptr_t>(symbol_table) +
(coff_header->NumberOfSymbols * sizeof IMAGE_SYMBOL)); (coff_header->NumberOfSymbols * sizeof IMAGE_SYMBOL));
std::vector<image_reloc_t> result; std::vector<image_reloc_t> result;
for (auto idx = 0u; idx < coff_header->NumberOfSections; ++idx) for (auto idx = 0u; idx < coff_header->NumberOfSections; ++idx)
@ -171,10 +171,12 @@ namespace lnk
continue; continue;
// skip both the .pdata and the .xdata sections... these are used for exceptions... // skip both the .pdata and the .xdata sections... these are used for exceptions...
if (!strncmp((char*)section_headers[idx].Name, ".pdata", strlen(".pdata") - 1)) if (!strncmp(reinterpret_cast<const char*>(
section_headers[idx].Name), ".pdata", strlen(".pdata") - 1))
continue; continue;
if (!strncmp((char*)section_headers[idx].Name, ".xdata", strlen(".xdata") - 1)) if (!strncmp(reinterpret_cast<const char*>(
section_headers[idx].Name), ".xdata", strlen(".xdata") - 1))
continue; continue;
const auto reloc_dir = const auto reloc_dir =
@ -187,7 +189,7 @@ namespace lnk
image_reloc_t entry; image_reloc_t entry;
entry.file_offset = entry.file_offset =
reloc_dir[reloc_idx].VirtualAddress + reloc_dir[reloc_idx].VirtualAddress +
section_headers[idx].PointerToRawData; section_headers[idx].PointerToRawData;
if (symbol_table[reloc_dir[reloc_idx].SymbolTableIndex].N.Name.Short) if (symbol_table[reloc_dir[reloc_idx].SymbolTableIndex].N.Name.Short)
entry.resolve_symbol_name = entry.resolve_symbol_name =
@ -198,6 +200,10 @@ namespace lnk
string_table + symbol_table[reloc_dir[ string_table + symbol_table[reloc_dir[
reloc_idx].SymbolTableIndex].N.Name.Long); reloc_idx].SymbolTableIndex].N.Name.Long);
if (entry.resolve_symbol_name.empty() ||
entry.resolve_symbol_name.c_str()[0] == '.')
continue;
entry.type = reloc_dir[reloc_idx].Type; entry.type = reloc_dir[reloc_idx].Type;
result.push_back(entry); result.push_back(entry);
} }
@ -222,15 +228,25 @@ namespace lnk
const auto string_table = const auto string_table =
reinterpret_cast<const char*>( reinterpret_cast<const char*>(
reinterpret_cast<std::uintptr_t>(symbol_table) + reinterpret_cast<std::uintptr_t>(symbol_table) +
(coff_header->NumberOfSymbols * sizeof IMAGE_SYMBOL)); (coff_header->NumberOfSymbols * sizeof IMAGE_SYMBOL));
std::vector<symbol_t> result; std::vector<symbol_t> result;
for (auto idx = 0u; idx < coff_header->NumberOfSymbols; ++idx) for (auto idx = 0u; idx < coff_header->NumberOfSymbols; ++idx)
{ {
symbol_t symbol;
if (symbol_table[idx].N.Name.Short)
symbol.symbol_name =
std::string((char*)symbol_table[idx].N.ShortName);
else
symbol.symbol_name =
std::string(string_table +
symbol_table[idx].N.Name.Long);
// skip section symbols... we only want // skip section symbols... we only want
// .data, .rdata, and executable (function) symbols... // .data, .rdata, and executable (function) symbols...
if (symbol_table[idx].StorageClass != IMAGE_SYM_CLASS_EXTERNAL if (symbol.symbol_name.empty() ||
|| !symbol_table[idx].SectionNumber) symbol.symbol_name.c_str()[0] == '.' ||
symbol_table[idx].SectionNumber < 1)
{ {
if (symbol_table[idx].NumberOfAuxSymbols) if (symbol_table[idx].NumberOfAuxSymbols)
idx += symbol_table[idx].NumberOfAuxSymbols; idx += symbol_table[idx].NumberOfAuxSymbols;
@ -238,17 +254,8 @@ namespace lnk
continue; continue;
} }
symbol_t symbol; symbol.file_offset = section_headers[symbol_table[idx]
if (symbol_table[idx].N.Name.Short) .SectionNumber - 1].PointerToRawData + symbol_table[idx].Value;
symbol.symbol_name =
std::string((char*)symbol_table[idx].N.ShortName);
else
symbol.symbol_name =
std::string(string_table +
symbol_table[idx].N.Name.Long);
symbol.file_offset = section_headers[symbol_table[
idx].SectionNumber - 1].PointerToRawData + symbol_table[idx].Value;
symbol.section_number = symbol_table[idx].SectionNumber; symbol.section_number = symbol_table[idx].SectionNumber;
symbol.section_offset = symbol_table[idx].Value; symbol.section_offset = symbol_table[idx].Value;

@ -96,9 +96,10 @@ namespace theo
{ {
if (reloc.type != IMAGE_REL_AMD64_ADDR64) if (reloc.type != IMAGE_REL_AMD64_ADDR64)
{ {
std::printf("[!] error... unsupported relocation at file offset = 0x%x\n\t> symbol = %s\n", std::printf("[!] error... unsupported relocation at file offset = 0x%x\n", reloc.file_offset);
reloc.file_offset, reloc.resolve_symbol_name.c_str()); std::printf("\t> symbol = %s\n", reloc.resolve_symbol_name.c_str());
std::printf("\t> reloc type = 0x%x\n", reloc.type);
std::printf("\t> object size = 0x%x\n", obj.size());
return false; return false;
} }
@ -109,9 +110,9 @@ namespace theo
// check obj symbol table for this relocation... // check obj symbol table for this relocation...
if (mapped_symbols[reloc.resolve_symbol_name]) if (mapped_symbols[reloc.resolve_symbol_name])
{ {
std::printf(" > resolving internal symbol...\n"); std::printf("\t> resolving internal symbol...\n");
std::printf(" > address = 0x%p\n", mapped_symbols[reloc.resolve_symbol_name]); std::printf("\t\t> address = 0x%p\n", mapped_symbols[reloc.resolve_symbol_name]);
std::printf(" > symbol = %s\n", reloc.resolve_symbol_name.c_str()); std::printf("\t\t> symbol = %s\n", reloc.resolve_symbol_name.c_str());
*reloc_addr = mapped_symbols[reloc.resolve_symbol_name]; *reloc_addr = mapped_symbols[reloc.resolve_symbol_name];
} }
else // else check external symbol table... else // else check external symbol table...
@ -130,9 +131,9 @@ namespace theo
*reloc_addr = extern_symbol; *reloc_addr = extern_symbol;
} }
std::printf(" > resolving external symbol...\n"); std::printf("\t> resolving external symbol...\n");
std::printf(" > address = 0x%p\n", *reloc_addr); std::printf("\t\t> address = 0x%p\n", *reloc_addr);
std::printf(" > symbol = %s\n", reloc.resolve_symbol_name.c_str()); std::printf("\t\t> symbol = %s\n", reloc.resolve_symbol_name.c_str());
} }
} }
return true; return true;

Loading…
Cancel
Save