Fix BZ# 22180.
commite5e4d7cc056ffae51fc55b66d9dd0abd99927486
authorPaul Pluzhnikov <ppluzhnikov@google.com>
Thu, 21 Sep 2017 19:14:41 +0000 (21 12:14 -0700)
committerPaul Pluzhnikov <ppluzhnikov@google.com>
Thu, 21 Sep 2017 19:14:41 +0000 (21 12:14 -0700)
tree2290540b926efebc5936d984a773688247a5f736
parentc10c5267a8c95ffea1fad70e2bf047c1dd3dfd48
Fix BZ# 22180.

POSIX requires that dlclose() and exit() be thread safe, therefore
you can have one thread in the middle of dlclose() and another thread
executing exit() without causing any undefined behaviour on the part
of the implementation.

The existing implementation had a flaw that exit() exit handler processing
did not consider a concurrent dlclose() and would not mark already run
exit handlers using the ef_free flavour. The consequence of this is that
a concurrent exit() with dlclose() will run all the exit handlers that
dlclose() had not yet run, but then will block on the loader lock. The
concurrent dlclose() will continue to run all the exit handlers again
(twice) in violation of the Itanium C++ ABI requirements for __cxa_atexit().

This commit fixes this by having exit() mark all handlers with ef_free to
ensure that concurrent dlclose() won't re-run registered exit handlers that
have already run.
ChangeLog
stdlib/Makefile
stdlib/exit.c
stdlib/test-dlclose-exit-race-helper.c [new file with mode: 0644]
stdlib/test-dlclose-exit-race.c [new file with mode: 0644]