[PATCH] D41257: Use warn() instead of error() to report a bad symbol in a DSO.

Rui Ueyama via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 14 13:34:49 PST 2017


ruiu created this revision.
ruiu added reviewers: rafael, pcc.
Herald added a subscriber: emaste.

Specifically, libwidevinecdm.so in Chrome has such bad symbol.


https://reviews.llvm.org/D41257

Files:
  lld/ELF/SymbolTable.cpp
  lld/test/ELF/invalid-local-symbol-in-dso.s


Index: lld/test/ELF/invalid-local-symbol-in-dso.s
===================================================================
--- lld/test/ELF/invalid-local-symbol-in-dso.s
+++ lld/test/ELF/invalid-local-symbol-in-dso.s
@@ -1,5 +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
+# RUN: 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
Index: lld/ELF/SymbolTable.cpp
===================================================================
--- lld/ELF/SymbolTable.cpp
+++ lld/ELF/SymbolTable.cpp
@@ -496,9 +496,13 @@
                       S->getVisibility() == STV_DEFAULT)) {
     uint8_t Binding = S->Binding;
     uint8_t OrigBinding = Sym.getBinding();
-    if (OrigBinding == STB_LOCAL)
-      error("Found local symbol '" + Name +
-            "' in global part of symbol table in file " + toString(File));
+
+    if (OrigBinding == STB_LOCAL) {
+      warn("Found local symbol '" + Name +
+           "' in global part of symbol table in file " + toString(File));
+      OrigBinding = STB_GLOBAL;
+    }
+
     replaceSymbol<SharedSymbol>(S, File, Name, OrigBinding, Sym.st_other,
                                 Sym.getType(), Sym.st_value, Sym.st_size,
                                 Alignment, VerdefIndex);


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D41257.127016.patch
Type: text/x-patch
Size: 1469 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20171214/aa1363fb/attachment.bin>


More information about the llvm-commits mailing list