nptl: Implement pthread_self in libc.so [BZ #22635]
authorFlorian Weimer <fweimer@redhat.com>
Wed, 20 Dec 2017 10:40:36 +0000 (11:40 +0100)
committerFlorian Weimer <fweimer@redhat.com>
Wed, 20 Dec 2017 10:42:04 +0000 (11:42 +0100)
commit8a26ad2ab7396bc94fd3cd7b25cba433908d30e1
tree3e87bff8b59daaa5c7564532cc48c8d53ee5f7db
parent5069ff32842c60c55f8b573ee66fe43f9ec364af
nptl: Implement pthread_self in libc.so [BZ #22635]

All binaries use TLS and thus need a properly set up TCB, so we can
simply return its address directly, instead of forwarding to the
libpthread implementation from libc.

For versioned symbols, the dynamic linker checks that the soname matches
the name supplied by the link editor, so a compatibility symbol in
libpthread is needed.

To avoid linking against the libpthread function in all cases, we would
have to bump the symbol version of libpthread in libc.so and supply a
compat symbol.  This commit does not do that because the function
implementation is so small, so the overhead by two active copies of the
same function might well be smaller than the increase in symbol table
size.
ChangeLog
nptl/Makefile
nptl/compat-pthread_self.c [new file with mode: 0644]
nptl/forward.c
nptl/nptl-init.c
nptl/pthread_self.c
sysdeps/nptl/pthread-functions.h