mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 10:22:05 -05:00
disasm: For ELF files, disassemble .text section
Since disasm is built in lagom, this requires adding LibELF to lagom.
This commit is contained in:
parent
44a7765676
commit
9c136be08b
2 changed files with 23 additions and 3 deletions
|
@ -43,6 +43,7 @@ endif()
|
|||
|
||||
file(GLOB AK_SOURCES "../../AK/*.cpp")
|
||||
file(GLOB LIBCORE_SOURCES "../../Libraries/LibCore/*.cpp")
|
||||
file(GLOB LIBELF_SOURCES "../../Libraries/LibELF/*.cpp")
|
||||
file(GLOB LIBGEMINI_SOURCES "../../Libraries/LibGemini/*.cpp")
|
||||
file(GLOB LIBGFX_SOURCES "../../Libraries/LibGfx/*.cpp")
|
||||
file(GLOB LIBIPC_SOURCES "../../Libraries/LibIPC/*.cpp")
|
||||
|
@ -60,7 +61,7 @@ file(GLOB SHELL_SOURCES "../../Shell/*.cpp")
|
|||
file(GLOB SHELL_TESTS "../../Shell/Tests/*.sh")
|
||||
|
||||
set(LAGOM_CORE_SOURCES ${AK_SOURCES} ${LIBCORE_SOURCES})
|
||||
set(LAGOM_MORE_SOURCES ${LIBIPC_SOURCES} ${LIBLINE_SOURCES} ${LIBJS_SOURCES} ${LIBJS_SUBDIR_SOURCES} ${LIBX86_SOURCES} ${LIBCRYPTO_SOURCES} ${LIBCOMPRESS_SOURCES} ${LIBCRYPTO_SUBDIR_SOURCES} ${LIBTLS_SOURCES} ${LIBMARKDOWN_SOURCES} ${LIBGEMINI_SOURCES} ${LIBGFX_SOURCES})
|
||||
set(LAGOM_MORE_SOURCES ${LIBELF_SOURCES} ${LIBIPC_SOURCES} ${LIBLINE_SOURCES} ${LIBJS_SOURCES} ${LIBJS_SUBDIR_SOURCES} ${LIBX86_SOURCES} ${LIBCRYPTO_SOURCES} ${LIBCOMPRESS_SOURCES} ${LIBCRYPTO_SUBDIR_SOURCES} ${LIBTLS_SOURCES} ${LIBMARKDOWN_SOURCES} ${LIBGEMINI_SOURCES} ${LIBGFX_SOURCES})
|
||||
|
||||
include_directories (../../)
|
||||
include_directories (../../Libraries/)
|
||||
|
|
|
@ -27,8 +27,10 @@
|
|||
#include <AK/LogStream.h>
|
||||
#include <AK/MappedFile.h>
|
||||
#include <LibCore/ArgsParser.h>
|
||||
#include <LibELF/Loader.h>
|
||||
#include <LibX86/Disassembler.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
|
@ -44,7 +46,24 @@ int main(int argc, char** argv)
|
|||
return 1;
|
||||
}
|
||||
|
||||
X86::SimpleInstructionStream stream((const u8*)file.data(), file.size());
|
||||
const u8* asm_data = (const u8*)file.data();
|
||||
size_t asm_size = file.size();
|
||||
size_t file_offset = 0;
|
||||
if (asm_size >= 4 && strncmp((const char*)asm_data, "\u007fELF", 4) == 0) {
|
||||
if (auto elf = ELF::Loader::create(asm_data, asm_size)) {
|
||||
elf->image().for_each_section_of_type(SHT_PROGBITS, [&](const ELF::Image::Section& section) {
|
||||
// FIXME: Disassemble all SHT_PROGBITS sections, not just .text.
|
||||
if (section.name() != ".text")
|
||||
return IterationDecision::Continue;
|
||||
asm_data = (const u8*)section.raw_data();
|
||||
asm_size = section.size();
|
||||
file_offset = section.address();
|
||||
return IterationDecision::Break;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
X86::SimpleInstructionStream stream(asm_data, asm_size);
|
||||
X86::Disassembler disassembler(stream);
|
||||
|
||||
for (;;) {
|
||||
|
@ -52,7 +71,7 @@ int main(int argc, char** argv)
|
|||
auto insn = disassembler.next();
|
||||
if (!insn.has_value())
|
||||
break;
|
||||
out() << String::format("%08x", offset) << " " << insn.value().to_string(offset);
|
||||
out() << String::format("%08x", file_offset + offset) << " " << insn.value().to_string(offset);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue