]> git.ipfire.org Git - thirdparty/glibc.git/commit
elf: Avoid deadlock between pthread_create and ctors [BZ #28357]
authorSzabolcs Nagy <szabolcs.nagy@arm.com>
Wed, 15 Sep 2021 14:16:19 +0000 (15:16 +0100)
committerSzabolcs Nagy <szabolcs.nagy@arm.com>
Mon, 4 Oct 2021 14:07:05 +0000 (15:07 +0100)
commit83b5323261bb72313bffcf37476c1b8f0847c736
tree2359c0540ec0009d3b010f35fd4cec6a2ca89253
parent958309cba24caf58ea5e118b20eccadbb3638f2d
elf: Avoid deadlock between pthread_create and ctors [BZ #28357]

The fix for bug 19329 caused a regression such that pthread_create can
deadlock when concurrent ctors from dlopen are waiting for it to finish.
Use a new GL(dl_load_tls_lock) in pthread_create that is not taken
around ctors in dlopen.

The new lock is also used in __tls_get_addr instead of GL(dl_load_lock).

The new lock is held in _dl_open_worker and _dl_close_worker around
most of the logic before/after the init/fini routines.  When init/fini
routines are running then TLS is in a consistent, usable state.
In _dl_open_worker the new lock requires catching and reraising dlopen
failures that happen in the critical section.

The new lock is reinitialized in a fork child, to keep the existing
behaviour and it is kept recursive in case malloc interposition or TLS
access from signal handlers can retake it.  It is not obvious if this
is necessary or helps, but avoids changing the preexisting behaviour.

The new lock may be more appropriate for dl_iterate_phdr too than
GL(dl_load_write_lock), since TLS state of an incompletely loaded
module may be accessed.  If the new lock can replace the old one,
that can be a separate change.

Fixes bug 28357.

Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
elf/dl-close.c
elf/dl-open.c
elf/dl-support.c
elf/dl-tls.c
elf/rtld.c
posix/fork.c
sysdeps/generic/ldsodefs.h
sysdeps/pthread/Makefile
sysdeps/pthread/tst-create1.c [new file with mode: 0644]
sysdeps/pthread/tst-create1mod.c [new file with mode: 0644]