forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for reading the dynamic symbol table from PT_DYNAMIC (llv…
…m#112596) Allow LLDB to parse the dynamic symbol table from an ELF file or memory image in an ELF file that has no section headers. This patch uses the ability to parse the PT_DYNAMIC segment and find the DT_SYMTAB, DT_SYMENT, DT_HASH or DT_GNU_HASH to find and parse the dynamic symbol table if the section headers are not present. It also adds a helper function to read data from a .dynamic key/value pair entry correctly from the file or from memory.
- Loading branch information
Showing
3 changed files
with
244 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// This test verifies that loading an ELF file that has no section headers can | ||
// load the dynamic symbol table using the DT_SYMTAB, DT_SYMENT, DT_HASH or | ||
// the DT_GNU_HASH .dynamic key/value pairs that are loaded via the PT_DYNAMIC | ||
// segment. | ||
|
||
// RUN: llvm-mc -triple=x86_64-pc-linux -filetype=obj \ | ||
// RUN: -o - - <<<".globl defined, undefined; defined:" | \ | ||
// RUN: ld.lld /dev/stdin -o - --hash-style=gnu -export-dynamic -shared \ | ||
// RUN: -z nosectionheader -o %t.gnu | ||
// RUN: %lldb %t.gnu -b \ | ||
// RUN: -o "image dump objfile" \ | ||
// RUN: | FileCheck %s --dump-input=always --check-prefix=GNU | ||
// GNU: (lldb) image dump objfile | ||
// GNU: Dumping headers for 1 module(s). | ||
// GNU: ObjectFileELF, file = | ||
// GNU: ELF Header | ||
// GNU: e_type = 0x0003 ET_DYN | ||
// Make sure there are no section headers | ||
// GNU: e_shnum = 0x00000000 | ||
// Make sure we were able to load the symbols | ||
// GNU: Symtab, file = {{.*}}elf-dynsym.test.tmp.gnu, num_symbols = 2: | ||
// GNU-DAG: undefined | ||
// GNU-DAG: defined | ||
|
||
// RUN: llvm-mc -triple=x86_64-pc-linux -filetype=obj \ | ||
// RUN: -o - - <<<".globl defined, undefined; defined:" | \ | ||
// RUN: ld.lld /dev/stdin -o - --hash-style=sysv -export-dynamic -shared \ | ||
// RUN: -z nosectionheader -o %t.sysv | ||
// RUN: %lldb %t.sysv -b \ | ||
// RUN: -o "image dump objfile" \ | ||
// RUN: | FileCheck %s --dump-input=always --check-prefix=HASH | ||
// HASH: (lldb) image dump objfile | ||
// HASH: Dumping headers for 1 module(s). | ||
// HASH: ObjectFileELF, file = | ||
// HASH: ELF Header | ||
// HASH: e_type = 0x0003 ET_DYN | ||
// Make sure there are no section headers | ||
// HASH: e_shnum = 0x00000000 | ||
// Make sure we were able to load the symbols | ||
// HASH: Symtab, file = {{.*}}elf-dynsym.test.tmp.sysv, num_symbols = 2: | ||
// HASH-DAG: undefined | ||
// HASH-DAG: defined |