From: Rafael Espindola Date: Thu, 14 Dec 2017 05:01:49 +0000 (+0000) Subject: Fix crash on invalid. X-Git-Tag: llvmorg-6.0.0-rc1~1061 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b308cace8496a54e4674b305481f7e5886284306;p=platform%2Fupstream%2Fllvm.git Fix crash on invalid. We would fail an assert if a shared library had a local symbol after sh_info. llvm-svn: 320667 --- diff --git a/lld/ELF/SymbolTable.cpp b/lld/ELF/SymbolTable.cpp index 12509c9a1757..71ff936f2e4f 100644 --- a/lld/ELF/SymbolTable.cpp +++ b/lld/ELF/SymbolTable.cpp @@ -495,7 +495,11 @@ void SymbolTable::addShared(StringRef Name, SharedFile *File, if (WasInserted || ((S->isUndefined() || S->isLazy()) && S->getVisibility() == STV_DEFAULT)) { uint8_t Binding = S->Binding; - replaceSymbol(S, File, Name, Sym.getBinding(), Sym.st_other, + uint8_t OrigBinding = Sym.getBinding(); + if (OrigBinding == STB_LOCAL) + error("Found local symbol '" + Name + + "' in global part of symbol table in file " + toString(File)); + replaceSymbol(S, File, Name, OrigBinding, Sym.st_other, Sym.getType(), Sym.st_value, Sym.st_size, Alignment, VerdefIndex); if (!WasInserted) { diff --git a/lld/test/ELF/Inputs/local-symbol-in-dso.so b/lld/test/ELF/Inputs/local-symbol-in-dso.so new file mode 100755 index 000000000000..5062a7aeead2 Binary files /dev/null and b/lld/test/ELF/Inputs/local-symbol-in-dso.so differ diff --git a/lld/test/ELF/invalid-local-symbol-in-dso.s b/lld/test/ELF/invalid-local-symbol-in-dso.s new file mode 100644 index 000000000000..0a12e46e92fd --- /dev/null +++ b/lld/test/ELF/invalid-local-symbol-in-dso.s @@ -0,0 +1,5 @@ +# RUN: llvm-mc %s -o %t.o -filetype=obj -triple x86_64-pc-linux + +# We used to crash on this +# RUN: not ld.lld %t.o %p/Inputs/local-symbol-in-dso.so -o %t 2>&1 | FileCheck %s +# CHECK: Found local symbol 'foo' in global part of symbol table in file {{.*}}local-symbol-in-dso.so