forked from OSchip/llvm-project
[ELF] Error on relocations to STT_SECTION symbols if the sections were discarded
This is implemented by creating Undefined (instead of Defined) for such local STT_SECTION symbols. It allows us to catch errors when there are relocations to such discarded sections (e.g. in PR41693, ld.bfd and gold error but we don't). Updated comdat-discarded-error.s checks we emit friendly error message. For relocatable-eh-frame.s, ld.lld -r a.o a.o will now error "STT_SECTION symbol should be defined" because the section .eh_frame refers to is now an Undefined instead of a Defined. So I have to change `error()` to `warn()` to retain the output. Reviewed By: ruiu Differential Revision: https://reviews.llvm.org/D61583 llvm-svn: 361792
This commit is contained in:
parent
d8f8abbd4a
commit
cfca5095df
|
@ -997,6 +997,9 @@ template <class ELFT> void ObjFile<ELFT>::initializeSymbols() {
|
||||||
|
|
||||||
if (ESym.st_shndx == SHN_UNDEF)
|
if (ESym.st_shndx == SHN_UNDEF)
|
||||||
this->Symbols[I] = make<Undefined>(this, Name, Binding, StOther, Type);
|
this->Symbols[I] = make<Undefined>(this, Name, Binding, StOther, Type);
|
||||||
|
else if (Sec == &InputSection::Discarded)
|
||||||
|
this->Symbols[I] = make<Undefined>(this, Name, Binding, StOther, Type,
|
||||||
|
/*DiscardedSecIdx=*/SecIdx);
|
||||||
else
|
else
|
||||||
this->Symbols[I] =
|
this->Symbols[I] =
|
||||||
make<Defined>(this, Name, Binding, StOther, Type, Value, Size, Sec);
|
make<Defined>(this, Name, Binding, StOther, Type, Value, Size, Sec);
|
||||||
|
|
|
@ -438,7 +438,8 @@ void InputSection::copyRelocations(uint8_t *Buf, ArrayRef<RelTy> Rels) {
|
||||||
// hopefully creates a frame that is ignored at runtime.
|
// hopefully creates a frame that is ignored at runtime.
|
||||||
auto *D = dyn_cast<Defined>(&Sym);
|
auto *D = dyn_cast<Defined>(&Sym);
|
||||||
if (!D) {
|
if (!D) {
|
||||||
error("STT_SECTION symbol should be defined");
|
warn("STT_SECTION symbol should be defined");
|
||||||
|
P->setSymbolAndType(0, 0, false);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
SectionBase *Section = D->Section->Repl;
|
SectionBase *Section = D->Section->Repl;
|
||||||
|
|
|
@ -681,9 +681,17 @@ static std::string maybeReportDiscarded(Undefined &Sym, InputSectionBase &Sec,
|
||||||
return "";
|
return "";
|
||||||
ArrayRef<Elf_Shdr_Impl<ELFT>> ObjSections =
|
ArrayRef<Elf_Shdr_Impl<ELFT>> ObjSections =
|
||||||
CHECK(File->getObj().sections(), File);
|
CHECK(File->getObj().sections(), File);
|
||||||
std::string Msg =
|
|
||||||
"relocation refers to a symbol in a discarded section: " + toString(Sym) +
|
std::string Msg;
|
||||||
"\n>>> defined in " + toString(File);
|
if (Sym.Type == ELF::STT_SECTION) {
|
||||||
|
Msg = "relocation refers to a discarded section: ";
|
||||||
|
Msg += CHECK(
|
||||||
|
File->getObj().getSectionName(&ObjSections[Sym.DiscardedSecIdx]), File);
|
||||||
|
} else {
|
||||||
|
Msg = "relocation refers to a symbol in a discarded section: " +
|
||||||
|
toString(Sym);
|
||||||
|
}
|
||||||
|
Msg += "\n>>> defined in " + toString(File);
|
||||||
|
|
||||||
Elf_Shdr_Impl<ELFT> ELFSec = ObjSections[Sym.DiscardedSecIdx - 1];
|
Elf_Shdr_Impl<ELFT> ELFSec = ObjSections[Sym.DiscardedSecIdx - 1];
|
||||||
if (ELFSec.sh_type != SHT_GROUP)
|
if (ELFSec.sh_type != SHT_GROUP)
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
# RUN: echo '.section .text.foo,"axG",@progbits,foo,comdat; .globl bar; bar:' | \
|
# RUN: echo '.section .text.foo,"axG",@progbits,foo,comdat; .globl bar; bar:' | \
|
||||||
# RUN: llvm-mc -filetype=obj -triple=x86_64 - -o %t3.o
|
# RUN: llvm-mc -filetype=obj -triple=x86_64 - -o %t3.o
|
||||||
|
|
||||||
# RUN: not ld.lld %t1.o %t2.o %t3.o -o /dev/null 2>&1 | FileCheck %s
|
# RUN: not ld.lld %t2.o %t3.o %t1.o -o /dev/null 2>&1 | FileCheck %s
|
||||||
|
|
||||||
# CHECK: error: relocation refers to a symbol in a discarded section: bar
|
# CHECK: error: relocation refers to a symbol in a discarded section: bar
|
||||||
# CHECK-NEXT: >>> defined in {{.*}}3.o
|
# CHECK-NEXT: >>> defined in {{.*}}3.o
|
||||||
|
@ -13,6 +13,16 @@
|
||||||
# CHECK-NEXT: >>> prevailing definition is in {{.*}}2.o
|
# CHECK-NEXT: >>> prevailing definition is in {{.*}}2.o
|
||||||
# CHECK-NEXT: >>> referenced by {{.*}}1.o:(.text+0x1)
|
# CHECK-NEXT: >>> referenced by {{.*}}1.o:(.text+0x1)
|
||||||
|
|
||||||
|
# CHECK: error: relocation refers to a discarded section: .text.foo
|
||||||
|
# CHECK-NEXT: >>> defined in {{.*}}1.o
|
||||||
|
# CHECK-NEXT: >>> section group signature: foo
|
||||||
|
# CHECK-NEXT: >>> prevailing definition is in {{.*}}2.o
|
||||||
|
# CHECK-NEXT: >>> referenced by {{.*}}1.o:(.data+0x0)
|
||||||
|
|
||||||
.globl _start
|
.globl _start
|
||||||
_start:
|
_start:
|
||||||
jmp bar
|
jmp bar
|
||||||
|
|
||||||
|
.section .text.foo,"axG",@progbits,foo,comdat
|
||||||
|
.data
|
||||||
|
.quad .text.foo
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# REQUIRES: x86
|
# REQUIRES: x86
|
||||||
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
|
||||||
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %p/Inputs/comdat-discarded-reloc.s -o %t2.o
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %p/Inputs/comdat-discarded-reloc.s -o %t2.o
|
||||||
# RUN: ld.lld -gc-sections %t.o %t2.o -o %t
|
# RUN: ld.lld -gc-sections --noinhibit-exec %t.o %t2.o -o /dev/null
|
||||||
|
|
||||||
## ELF spec doesn't allow a relocation to point to a deduplicated
|
## ELF spec doesn't allow a relocation to point to a deduplicated
|
||||||
## COMDAT section. Unfortunately this happens in practice (e.g. .eh_frame)
|
## COMDAT section. Unfortunately this happens in practice (e.g. .eh_frame)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
// REQUIRES: x86
|
// REQUIRES: x86
|
||||||
// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
|
// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
|
||||||
// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %p/Inputs/comdat.s -o %t2.o
|
// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %p/Inputs/comdat.s -o %t2.o
|
||||||
// RUN: ld.lld -shared %t.o %t.o %t2.o -o %t
|
// RUN: ld.lld -shared %t.o %t2.o -o %t
|
||||||
// RUN: llvm-objdump -d %t | FileCheck %s
|
// RUN: llvm-objdump -d %t | FileCheck %s
|
||||||
// RUN: llvm-readobj -S --symbols %t | FileCheck --check-prefix=READ %s
|
// RUN: llvm-readobj -S --symbols %t | FileCheck --check-prefix=READ %s
|
||||||
|
|
||||||
|
@ -31,9 +31,7 @@ foo:
|
||||||
// CHECK-EMPTY:
|
// CHECK-EMPTY:
|
||||||
// CHECK-NEXT: bar:
|
// CHECK-NEXT: bar:
|
||||||
// 0x1000 - 0x1001 - 5 = -6
|
// 0x1000 - 0x1001 - 5 = -6
|
||||||
// 0 - 0x1006 - 5 = -4107
|
|
||||||
// CHECK-NEXT: 1001: {{.*}} callq -6
|
// CHECK-NEXT: 1001: {{.*}} callq -6
|
||||||
// CHECK-NEXT: 1006: {{.*}} callq -4107
|
|
||||||
|
|
||||||
.section .text3,"axG",@progbits,zed,comdat,unique,0
|
.section .text3,"axG",@progbits,zed,comdat,unique,0
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# RUN: yaml2obj %s -o %t.o
|
# RUN: yaml2obj %s -o %t.o
|
||||||
# RUN: not ld.lld -r %t.o -o /dev/null 2>&1 | FileCheck %s
|
# RUN: not ld.lld -r --fatal-warnings %t.o -o /dev/null 2>&1 | FileCheck %s
|
||||||
|
|
||||||
# We used to crash at this.
|
# We used to crash at this.
|
||||||
# CHECK: STT_SECTION symbol should be defined
|
# CHECK: STT_SECTION symbol should be defined
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
# REQUIRES: x86
|
# REQUIRES: x86
|
||||||
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
|
||||||
# RUN: ld.lld -r %t.o %t.o -o %t
|
# RUN: ld.lld -r %t.o %t.o -o %t 2>&1 | FileCheck --check-prefix=WARN %s
|
||||||
# RUN: llvm-readobj -r %t | FileCheck %s
|
# RUN: llvm-readobj -r %t | FileCheck %s
|
||||||
# RUN: ld.lld %t -o %t.so -shared
|
# RUN: ld.lld %t -o %t.so -shared
|
||||||
# RUN: llvm-objdump -h %t.so | FileCheck --check-prefix=DSO %s
|
# RUN: llvm-objdump -h %t.so | FileCheck --check-prefix=DSO %s
|
||||||
|
|
||||||
|
# WARN: STT_SECTION symbol should be defined
|
||||||
|
|
||||||
# DSO: .eh_frame 00000034
|
# DSO: .eh_frame 00000034
|
||||||
|
|
||||||
# CHECK: Relocations [
|
# CHECK: Relocations [
|
||||||
|
|
Loading…
Reference in New Issue