[PATCH] D59695: [llvm-objcopy] - Report SHT_GROUP sections with invalid alignment.
George Rimar via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 24 06:31:32 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL356853: [llvm-objcopy] - Report SHT_GROUP sections with invalid alignment. (authored by grimar, committed by ).
Herald added a project: LLVM.
Changed prior to commit:
https://reviews.llvm.org/D59695?vs=191874&id=192027#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D59695/new/
https://reviews.llvm.org/D59695
Files:
llvm/trunk/test/tools/llvm-objcopy/ELF/group-addr-misaligned.test
llvm/trunk/tools/llvm-objcopy/ELF/Object.cpp
Index: llvm/trunk/test/tools/llvm-objcopy/ELF/group-addr-misaligned.test
===================================================================
--- llvm/trunk/test/tools/llvm-objcopy/ELF/group-addr-misaligned.test
+++ llvm/trunk/test/tools/llvm-objcopy/ELF/group-addr-misaligned.test
@@ -0,0 +1,38 @@
+# RUN: yaml2obj %s > %t
+# RUN: not llvm-objcopy %t %t2 2>&1 | FileCheck %s
+# CHECK: error: Invalid alignment 1 of group section .group.
+
+# In this test, we check that llvm-objcopy reports an error
+# for SHT_GROUP section with invalid alignment (not a multiple of 4).
+
+--- !ELF
+FileHeader:
+ Class: ELFCLASS64
+ Data: ELFDATA2LSB
+ Type: ET_REL
+ Machine: EM_X86_64
+Sections:
+## It is not important for passing the test case to have this placeholder,
+## but having it would trigger ubsan failure when writing the group section
+## into a file if the error tested would not be reported by llvm-objcopy.
+ - Name: .placeholder
+ Type: SHT_PROGBITS
+ Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
+ AddressAlign: 0x0000000000000001
+ Content: "00"
+ - Name: .group
+ Type: SHT_GROUP
+ Link: .symtab
+ AddressAlign: 0x0000000000000001
+ Info: foo
+ Members:
+ - SectionOrType: GRP_COMDAT
+ - SectionOrType: .text.foo
+ - Name: .text.foo
+ Type: SHT_PROGBITS
+ Flags: [ SHF_ALLOC, SHF_EXECINSTR, SHF_GROUP ]
+ AddressAlign: 0x0000000000000001
+Symbols:
+ Local:
+ - Name: foo
+ Section: .group
Index: llvm/trunk/tools/llvm-objcopy/ELF/Object.cpp
===================================================================
--- llvm/trunk/tools/llvm-objcopy/ELF/Object.cpp
+++ llvm/trunk/tools/llvm-objcopy/ELF/Object.cpp
@@ -949,6 +949,9 @@
template <class ELFT>
void ELFBuilder<ELFT>::initGroupSection(GroupSection *GroupSec) {
+ if (GroupSec->Align % sizeof(ELF::Elf32_Word) != 0)
+ error("Invalid alignment " + Twine(GroupSec->Align) + " of group section " +
+ GroupSec->Name);
auto SecTable = Obj.sections();
auto SymTab = SecTable.template getSectionOfType<SymbolTableSection>(
GroupSec->Link,
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D59695.192027.patch
Type: text/x-patch
Size: 2265 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190324/7d8c6fcd/attachment-0001.bin>
More information about the llvm-commits
mailing list