Go to file
John David Anglin 91b909315c Fix data race in setting function descriptors during lazy binding on hppa.
This addresses an issue that is present mainly on SMP machines running
threaded code.  In a typical indirect call or PLT import stub, the
target address is loaded first.  Then the global pointer is loaded into
the PIC register in the delay slot of a branch to the target address.
During lazy binding, the target address is a trampoline which transfers
to _dl_runtime_resolve().

_dl_runtime_resolve() uses the relocation offset stored in the global
pointer and the linkage map stored in the trampoline to find the
relocation.  Then, the function descriptor is updated.

In a multi-threaded application, it is possible for the global pointer
to be updated between the load of the target address and the global
pointer.  When this happens, the relocation offset has been replaced
by the new global pointer.  The function pointer has probably been
updated as well but there is no way to find the address of the function
descriptor and to transfer to the target.  So, _dl_runtime_resolve()
typically crashes.

HP-UX addressed this problem by adding an extra pc-relative branch to
the trampoline.  The descriptor is initially setup to point to the
branch.  The branch then transfers to the trampoline.  This allowed
the trampoline code to figure out which descriptor was being used
without any modification to user code.  I didn't use this approach
as it is more complex and changes function pointer canonicalization.

The order of loading the target address and global pointer in
indirect calls was not consistent with the order used in import stubs.
In particular, $$dyncall and some inline versions of it loaded the
global pointer first.  This was inconsistent with the global pointer
being updated first in dl-machine.h.  Assuming the accesses are
ordered, we want elf_machine_fixup_plt() to store the global pointer
first and calls to load it last.  Then, the global pointer will be
correct when the target function is entered.

However, just to make things more fun, HP added support for
out-of-order execution of accesses in PA 2.0.  The accesses used by
calls are weakly ordered. So, it's possibly under some circumstances
that a function might be entered with the wrong global pointer.
However, HP uses weakly ordered accesses in 64-bit HP-UX, so I assume
that loading the global pointer in the delay slot of the branch must
work consistently.

The basic fix for the race is a combination of modifying user code to
preserve the address of the function descriptor in register %r22 and
setting the least-significant bit in the relocation offset.  The
latter was suggested by Carlos as a way to distinguish relocation
offsets from global pointer values.  Conventionally, %r22 is used
as the address of the function descriptor in calls to $$dyncall.
So, it wasn't hard to preserve the address in %r22.

I have updated gcc trunk and gcc-9 branch to not clobber %r22 in
$$dyncall and inline indirect calls.  I have also modified the import
stubs in binutils trunk and the 2.33 branch to preserve %r22.  This
required making the stubs one instruction longer but we save one
relocation.  I also modified binutils to align the .plt section on
a 8-byte boundary.  This allows descriptors to be updated atomically
with a floting-point store.

With these changes, _dl_runtime_resolve() can fallback to an alternate
mechanism to find the relocation offset when it has been clobbered.
There's just one additional instruction in the fast path. I tested
the fallback function, _dl_fix_reloc_arg(), by changing the branch to
always use the fallback.  Old code still runs as it did before.

Fixes bug 23296.

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
(cherry picked from commit 1a044511a3)
2020-05-04 21:56:38 +02:00
argp Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
assert Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
benchtests Run bench-timing-type with newly built libc. 2020-01-20 11:29:41 +00:00
bits Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
catgets Update copyright dates not handled by scripts/update-copyrights. 2020-01-01 00:21:22 +00:00
ChangeLog.old Generate ChangeLog.old/ChangeLog.20 for 2.31 2020-02-01 17:22:50 +05:30
conform Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
crypt Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
csu elf: Move vDSO setup to rtld (BZ#24967) 2020-01-03 11:22:07 -03:00
ctype Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
debug mips: Fix bracktrace result for signal frames 2020-03-30 23:18:26 +02:00
dirent Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
dlfcn Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
elf Fix elf/tst-rtld-preload cross-testing. 2020-01-24 17:22:13 +00:00
gmon Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
gnulib Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
grp Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
gshadow Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
hesiod Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
htl htl: Add internal version of __pthread_mutex_timedlock 2020-01-13 20:41:07 +01:00
hurd Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
iconv Update copyright dates not handled by scripts/update-copyrights. 2020-01-01 00:21:22 +00:00
iconvdata Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
include Update version numbers for 2.31 release 2020-02-01 17:16:54 +05:30
inet Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
intl Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
io Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
libio Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
locale Fix locale/tst-locale-locpath cross-testing when sshd sets LANG. 2020-01-24 17:23:07 +00:00
localedata sl_SI locale: Use "." as the thousands separator (bug 25233) 2020-01-08 00:13:48 +01:00
login Update copyright dates not handled by scripts/update-copyrights. 2020-01-01 00:21:22 +00:00
mach Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
malloc malloc/tst-mallocfork2: Kill lingering process for unexpected failures 2020-02-27 17:27:37 -03:00
manual Update newest tested versions of dependencies in install.texi 2020-02-01 17:16:54 +05:30
math Add libm_alias_finite for _finite symbols 2020-01-03 10:02:04 -03:00
mathvec Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
misc Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
nis Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
nptl Update copyright dates not handled by scripts/update-copyrights. 2020-01-01 00:21:22 +00:00
nptl_db Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
nscd Update copyright dates not handled by scripts/update-copyrights. 2020-01-01 00:21:22 +00:00
nss Update copyright dates not handled by scripts/update-copyrights. 2020-01-01 00:21:22 +00:00
po Add Portuguese (Portugal) translation 2020-02-01 17:16:54 +05:30
posix Fix use-after-free in glob when expanding ~user (bug 25414) 2020-03-17 18:39:52 -04:00
pwd Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
resolv Get rid of Werror=maybe-uninitialized in res_send.c. 2020-01-20 10:57:08 +01:00
resource Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
rt Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
scripts gitlog-to-changelog: Drop scripts in favour of gnulib version 2020-01-23 20:00:13 +05:30
setjmp Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
shadow Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
signal Build raise with -fasynchronous-unwind-tables. 2020-01-24 17:23:47 +00:00
socket Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
soft-fp Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
stdio-common Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
stdlib stdlib: Move tst-system to tests-container 2020-03-25 10:01:28 -03:00
string Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
sunrpc Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
support support/shell-container.c: Add builtin kill 2020-03-25 10:01:28 -03:00
sysdeps Fix data race in setting function descriptors during lazy binding on hppa. 2020-05-04 21:56:38 +02:00
sysvipc Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
termios Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
time Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
timezone Update timezone/README 2020-01-09 23:00:25 -08:00
wcsmbs Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
wctype Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
.gitattributes Assume __NR_openat is always defined 2016-03-23 23:35:08 +01:00
.gitignore Add *.pyc to .gitignore 2015-05-18 15:26:26 +05:30
abi-tags Remove the bulk of the NaCl port. 2017-05-20 08:09:10 -04:00
aclocal.m4 LIBC_SLIBDIR_RTLDDIR: substitute arguments in single quotes 2018-01-25 17:20:28 +01:00
config.h.in sparc: Assume GOTDATA support in the toolchain 2019-10-09 19:15:33 +02:00
config.make.in Make --bindir effective 2019-05-14 11:04:33 -03:00
configure Improve IFUNC check [BZ #25506] 2020-03-08 13:44:12 +01:00
configure.ac Improve IFUNC check [BZ #25506] 2020-03-08 13:44:12 +01:00
COPYING Update to latest versions of GPL-2.0 and LGPL-2.1 2013-09-09 12:52:48 +10:00
COPYING.LIB Update to latest versions of GPL-2.0 and LGPL-2.1 2013-09-09 12:52:48 +10:00
extra-lib.mk Rename cppflags-iterator.mk to libof-iterator.mk, remove extra-modules.mk. 2017-05-09 07:06:29 -04:00
gen-locales.mk Improve gen-locales.mk and gen-locale.sh to make test files with @ options work 2018-02-27 17:01:57 +01:00
INSTALL Update newest tested versions of dependencies in install.texi 2020-02-01 17:16:54 +05:30
libc-abis libc-abis: Define ABSOLUTE ABI [BZ #19818][BZ #23307] 2018-07-05 18:06:43 +01:00
libof-iterator.mk Rename cppflags-iterator.mk to libof-iterator.mk, remove extra-modules.mk. 2017-05-09 07:06:29 -04:00
LICENSES Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
MAINTAINERS Add MAINTAINERS 2017-05-11 13:38:30 -04:00
Makeconfig Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
Makefile Drop dependency of dist target on ChangeLog 2020-01-09 13:28:08 +05:30
Makefile.help Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
Makefile.in New make target to only build benchmark binaries 2016-04-20 10:23:28 +05:30
Makerules Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
NEWS Fix data race in setting function descriptors during lazy binding on hppa. 2020-05-04 21:56:38 +02:00
o-iterator.mk Fri Mar 17 12:58:37 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1995-03-17 18:42:51 +00:00
README Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
Rules Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
shlib-versions Extend NSS test suite 2017-07-17 15:52:44 -04:00
test-skeleton.c Update copyright dates with scripts/update-copyrights. 2020-01-01 00:14:33 +00:00
version.h Update version numbers for 2.31 release 2020-02-01 17:16:54 +05:30

This directory contains the sources of the GNU C Library.
See the file "version.h" for what release version you have.

The GNU C Library is the standard system C library for all GNU systems,
and is an important part of what makes up a GNU system.  It provides the
system API for all programs written in C and C-compatible languages such
as C++ and Objective C; the runtime facilities of other programming
languages use the C library to access the underlying operating system.

In GNU/Linux systems, the C library works with the Linux kernel to
implement the operating system behavior seen by user applications.
In GNU/Hurd systems, it works with a microkernel and Hurd servers.

The GNU C Library implements much of the POSIX.1 functionality in the
GNU/Hurd system, using configurations i[4567]86-*-gnu.

When working with Linux kernels, this version of the GNU C Library
requires Linux kernel version 3.2 or later.

Also note that the shared version of the libgcc_s library must be
installed for the pthread library to work correctly.

The GNU C Library supports these configurations for using Linux kernels:

	aarch64*-*-linux-gnu
	alpha*-*-linux-gnu
	arm-*-linux-gnueabi
	csky-*-linux-gnuabiv2
	hppa-*-linux-gnu
	i[4567]86-*-linux-gnu
	x86_64-*-linux-gnu	Can build either x86_64 or x32
	ia64-*-linux-gnu
	m68k-*-linux-gnu
	microblaze*-*-linux-gnu
	mips-*-linux-gnu
	mips64-*-linux-gnu
	powerpc-*-linux-gnu	Hardware or software floating point, BE only.
	powerpc64*-*-linux-gnu	Big-endian and little-endian.
	s390-*-linux-gnu
	s390x-*-linux-gnu
	riscv64-*-linux-gnu
	sh[34]-*-linux-gnu
	sparc*-*-linux-gnu
	sparc64*-*-linux-gnu

If you are interested in doing a port, please contact the glibc
maintainers; see https://www.gnu.org/software/libc/ for more
information.

See the file INSTALL to find out how to configure, build, and install
the GNU C Library.  You might also consider reading the WWW pages for
the C library at https://www.gnu.org/software/libc/.

The GNU C Library is (almost) completely documented by the Texinfo manual
found in the `manual/' subdirectory.  The manual is still being updated
and contains some known errors and omissions; we regret that we do not
have the resources to work on the manual as much as we would like.  For
corrections to the manual, please file a bug in the `manual' component,
following the bug-reporting instructions below.  Please be sure to check
the manual in the current development sources to see if your problem has
already been corrected.

Please see https://www.gnu.org/software/libc/bugs.html for bug reporting
information.  We are now using the Bugzilla system to track all bug reports.
This web page gives detailed information on how to report bugs properly.

The GNU C Library is free software.  See the file COPYING.LIB for copying
conditions, and LICENSES for notices about a few contributions that require
these additional notices to be distributed.  License copyright years may be
listed using range notation, e.g., 1996-2015, indicating that every year in
the range, inclusive, is a copyrightable year that would otherwise be listed
individually.