From: Jordan Rupprecht Date: Fri, 29 Mar 2019 16:48:19 +0000 (+0000) Subject: [llvm-readobj] Add some generic notes (e.g. NT_VERSION) X-Git-Tag: llvmorg-10-init~8886 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=871baa2551649b806c98b06c3aa3503360495ce3;p=platform%2Fupstream%2Fllvm.git [llvm-readobj] Add some generic notes (e.g. NT_VERSION) Summary: Support reading notes that don't have a standard note name. Reviewers: MaskRay Reviewed By: MaskRay Subscribers: llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D59969 llvm-svn: 357271 --- diff --git a/llvm/include/llvm/BinaryFormat/ELF.h b/llvm/include/llvm/BinaryFormat/ELF.h index 5e9bfe7..4f72da6 100644 --- a/llvm/include/llvm/BinaryFormat/ELF.h +++ b/llvm/include/llvm/BinaryFormat/ELF.h @@ -1339,6 +1339,14 @@ enum { NT_FREEBSD_PROCSTAT_AUXV = 16, }; +// Generic note types +enum : unsigned { + NT_VERSION = 1, + NT_ARCH = 2, + NT_GNU_BUILD_ATTRIBUTE_OPEN = 0x100, + NT_GNU_BUILD_ATTRIBUTE_FUNC = 0x101, +}; + enum { NT_GNU_ABI_TAG = 1, NT_GNU_HWCAP = 2, diff --git a/llvm/test/tools/llvm-readobj/note-generic.s b/llvm/test/tools/llvm-readobj/note-generic.s new file mode 100644 index 0000000..7b3b85f --- /dev/null +++ b/llvm/test/tools/llvm-readobj/note-generic.s @@ -0,0 +1,85 @@ +// REQUIRES: x86-registered-target +// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o %t.o + +// RUN: llvm-readobj --notes %t.o | FileCheck %s --check-prefix=LLVM +// RUN: llvm-readelf --notes %t.o | FileCheck %s --check-prefix=GNU + +// GNU: Displaying notes found at file offset 0x00000040 with length 0x00000010: +// GNU-NEXT: Owner Data size Description +// GNU-NEXT: XYZ 0x00000000 NT_VERSION (version) + +// GNU: Displaying notes found at file offset 0x00000050 with length 0x00000010: +// GNU-NEXT: Owner Data size Description +// GNU-NEXT: XYZ 0x00000000 NT_ARCH (architecture) + +// GNU: Displaying notes found at file offset 0x00000060 with length 0x00000010: +// GNU-NEXT: Owner Data size Description +// GNU-NEXT: XYZ 0x00000000 OPEN + +// GNU: Displaying notes found at file offset 0x00000070 with length 0x00000010: +// GNU-NEXT: Owner Data size Description +// GNU-NEXT: XYZ 0x00000000 func + +// LLVM: Notes [ +// LLVM-NEXT: NoteSection { +// LLVM-NEXT: Offset: 0x40 +// LLVM-NEXT: Size: 0x10 +// LLVM-NEXT: Note { +// LLVM-NEXT: Owner: XYZ +// LLVM-NEXT: Data size: 0x0 +// LLVM-NEXT: Type: NT_VERSION (version) +// LLVM-NEXT: } +// LLVM-NEXT: } +// LLVM-NEXT: NoteSection { +// LLVM-NEXT: Offset: 0x50 +// LLVM-NEXT: Size: 0x10 +// LLVM-NEXT: Note { +// LLVM-NEXT: Owner: XYZ +// LLVM-NEXT: Data size: 0x0 +// LLVM-NEXT: Type: NT_ARCH (architecture) +// LLVM-NEXT: } +// LLVM-NEXT: } +// LLVM-NEXT: NoteSection { +// LLVM-NEXT: Offset: 0x60 +// LLVM-NEXT: Size: 0x10 +// LLVM-NEXT: Note { +// LLVM-NEXT: Owner: XYZ +// LLVM-NEXT: Data size: 0x0 +// LLVM-NEXT: Type: OPEN +// LLVM-NEXT: } +// LLVM-NEXT: } +// LLVM-NEXT: NoteSection { +// LLVM-NEXT: Offset: 0x70 +// LLVM-NEXT: Size: 0x10 +// LLVM-NEXT: Note { +// LLVM-NEXT: Owner: XYZ +// LLVM-NEXT: Data size: 0x0 +// LLVM-NEXT: Type: func +// LLVM-NEXT: } +// LLVM-NEXT: } +// LLVM-NEXT: ] + +.section ".note.version", "a" + .align 4 + .long 4 /* namesz */ + .long 0 /* descsz */ + .long 1 /* type = NT_VERSION */ + .asciz "XYZ" +.section ".note.arch", "a" + .align 4 + .long 4 /* namesz */ + .long 0 /* descsz */ + .long 2 /* type = NT_ARCH*/ + .asciz "XYZ" +.section ".note.open", "a" + .align 4 + .long 4 /* namesz */ + .long 0 /* descsz */ + .long 0x100 /* type = NT_GNU_BUILD_ATTRIBUTE_OPEN*/ + .asciz "XYZ" +.section ".note.func", "a" + .align 4 + .long 4 /* namesz */ + .long 0 /* descsz */ + .long 0x101 /* type = NT_GNU_BUILD_ATTRIBUTE_FUNC*/ + .asciz "XYZ" diff --git a/llvm/tools/llvm-readobj/ELFDumper.cpp b/llvm/tools/llvm-readobj/ELFDumper.cpp index 1bd7737..5a4699c 100644 --- a/llvm/tools/llvm-readobj/ELFDumper.cpp +++ b/llvm/tools/llvm-readobj/ELFDumper.cpp @@ -3489,6 +3489,24 @@ void GNUStyle::printAddrsig(const ELFFile *Obj) { OS << "GNUStyle::printAddrsig not implemented\n"; } +static StringRef getGenericNoteTypeName(const uint32_t NT) { + static const struct { + uint32_t ID; + const char *Name; + } Notes[] = { + {ELF::NT_VERSION, "NT_VERSION (version)"}, + {ELF::NT_ARCH, "NT_ARCH (architecture)"}, + {ELF::NT_GNU_BUILD_ATTRIBUTE_OPEN, "OPEN"}, + {ELF::NT_GNU_BUILD_ATTRIBUTE_FUNC, "func"}, + }; + + for (const auto &Note : Notes) + if (Note.ID == NT) + return Note.Name; + + return ""; +} + static std::string getGNUNoteTypeName(const uint32_t NT) { static const struct { uint32_t ID; @@ -3877,7 +3895,11 @@ void GNUStyle::printNotes(const ELFFile *Obj) { if (!N.Type.empty()) OS << " " << N.Type << ":\n " << N.Value << '\n'; } else { - OS << "Unknown note type: (" << format_hex(Type, 10) << ')'; + StringRef NoteType = getGenericNoteTypeName(Type); + if (!NoteType.empty()) + OS << NoteType; + else + OS << "Unknown note type: (" << format_hex(Type, 10) << ')'; } OS << '\n'; }; @@ -4682,8 +4704,12 @@ void LLVMStyle::printNotes(const ELFFile *Obj) { if (!N.Type.empty()) W.printString(N.Type, N.Value); } else { - W.printString("Type", - "Unknown (" + to_string(format_hex(Type, 10)) + ")"); + StringRef NoteType = getGenericNoteTypeName(Type); + if (!NoteType.empty()) + W.printString("Type", NoteType); + else + W.printString("Type", + "Unknown (" + to_string(format_hex(Type, 10)) + ")"); } };