diff options
author | Cary Coutant <ccoutant@gmail.com> | 2018-06-21 13:51:16 -0700 |
---|---|---|
committer | Cary Coutant <ccoutant@gmail.com> | 2018-06-21 13:54:16 -0700 |
commit | cea6ffbd06a6ebb5c21cb51e7775b8ebb5e34f38 (patch) | |
tree | a051cfe643463bc74fd4c9cdd75db0d0c9137a53 /gold/testsuite/Makefile.am | |
parent | 1ced1a5f108fd0a0c88d2298dbdd2dd2a2ee38f0 (diff) | |
download | fsf-binutils-gdb-cea6ffbd06a6ebb5c21cb51e7775b8ebb5e34f38.zip fsf-binutils-gdb-cea6ffbd06a6ebb5c21cb51e7775b8ebb5e34f38.tar.gz fsf-binutils-gdb-cea6ffbd06a6ebb5c21cb51e7775b8ebb5e34f38.tar.bz2 |
Fix treatment of symbol versions with unused as-needed libraries.
When we have a weak reference to a symbol defined in an
as-needed library, and that library ends up not-needed, gold
simply clears the version information in the symbol table, even
if the symbol could have been resolved by a needed library later
in the link order. This results in a loss of version information,
which can cause the program to bind to the wrong version at run
time.
This patch lets a dynamic definition override an earlier one if
the earlier one is from a not-needed library, so that we can
retain the version information from the binding to the needed
library. In order to do that, the tracking of needed/not-needed
had to be moved up to symbol resolution time, instead of during
Symbol_table::set_dynsym_indexes().
In cases where we still end up discarding version information,
I've added a warning.
For the original problem report and discussion, see:
https://stackoverflow.com/questions/50751421/undefined-behavior-in-shared-lib-using-libpthread-but-not-having-it-in-elf-as-d
gold/
* resolve.cc (Symbol_table::resolve): Rename tobinding to
orig_tobinding. Call set_is_needed() for objects that resolve
non-weak references.
(Symbol_table::should_override): Allow a dynamic definition to
override an earlier one in a not-needed library.
* symtab.cc (Symbol_table::set_dynsym_indexes): Remove separate
processing for as-needed symbols. Add warning when discarding
version informatin.
* testsuite/Makefile.am (weak_as_needed): New test case.
* testsuite/Makefile.in: Regenerate.
* testsuite/weak_as_needed.sh: New test script.
* testsuite/weak_as_needed_a.c: New source file.
* testsuite/weak_as_needed_b.c: New source file.
* testsuite/weak_as_needed_b.script: New version script.
* testsuite/weak_as_needed_c.c: New source file.
* testsuite/weak_as_needed_c.script: New version script.
Diffstat (limited to 'gold/testsuite/Makefile.am')
-rw-r--r-- | gold/testsuite/Makefile.am | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gold/testsuite/Makefile.am b/gold/testsuite/Makefile.am index b88b02f..ab3b258 100644 --- a/gold/testsuite/Makefile.am +++ b/gold/testsuite/Makefile.am @@ -1880,6 +1880,23 @@ ver_test_14.syms: ver_test_14 ver_test_14: gcctestdir/ld ver_test_main.o ver_test_1.so ver_test_2.so ver_test_4.so ver_test_14.script $(CXXLINK) -Bgcctestdir/ -Wl,--version-script,$(srcdir)/ver_test_14.script -Wl,-E -Wl,-R,. ver_test_main.o ver_test_1.so ver_test_2.so ver_test_4.so +check_SCRIPTS += weak_as_needed.sh +check_DATA += weak_as_needed.stdout +weak_as_needed.stdout: weak_as_needed_a.so + $(TEST_READELF) -dW --dyn-syms $< >$@ +weak_as_needed_a.so: gcctestdir/ld weak_as_needed_a.o weak_as_needed_b.so weak_as_needed_c.so + gcctestdir/ld -shared -rpath . -o $@ weak_as_needed_a.o --as-needed weak_as_needed_b.so weak_as_needed_c.so +weak_as_needed_b.so: gcctestdir/ld weak_as_needed_b.o weak_as_needed_b.script + gcctestdir/ld -shared -rpath . -o $@ --version-script $(srcdir)/weak_as_needed_b.script weak_as_needed_b.o +weak_as_needed_c.so: gcctestdir/ld weak_as_needed_c.o weak_as_needed_c.script + gcctestdir/ld -shared -rpath . -o $@ --version-script $(srcdir)/weak_as_needed_c.script weak_as_needed_c.o +weak_as_needed_a.o: weak_as_needed_a.c + $(COMPILE) -c -fpic -o $@ $< +weak_as_needed_b.o: weak_as_needed_b.c + $(COMPILE) -c -fpic -o $@ $< +weak_as_needed_c.o: weak_as_needed_c.c + $(COMPILE) -c -fpic -o $@ $< + check_PROGRAMS += protected_1 protected_1_SOURCES = \ protected_main_1.cc protected_main_2.cc protected_main_3.cc |