aboutsummaryrefslogtreecommitdiff
path: root/elf/reldep4mod1.c
diff options
context:
space:
mode:
authorSzabolcs Nagy <szabolcs.nagy@arm.com>2020-12-30 19:19:37 +0000
committerSzabolcs Nagy <szabolcs.nagy@arm.com>2021-05-11 17:16:37 +0100
commit1387ad6225c2222f027790e3f460e31aa5dd2c54 (patch)
tree1ac97b2a3fa49f59ac513cba3adcc84b1e76d671 /elf/reldep4mod1.c
parent213573f86eae0b5ff70a4f71ed6f809aa76991f5 (diff)
downloadglibc-1387ad6225c2222f027790e3f460e31aa5dd2c54.tar
glibc-1387ad6225c2222f027790e3f460e31aa5dd2c54.tar.gz
glibc-1387ad6225c2222f027790e3f460e31aa5dd2c54.tar.bz2
glibc-1387ad6225c2222f027790e3f460e31aa5dd2c54.zip
elf: Fix data races in pthread_create and TLS access [BZ #19329]
DTV setup at thread creation (_dl_allocate_tls_init) is changed to take the dlopen lock, GL(dl_load_lock). Avoiding data races here without locks would require design changes: the map that is accessed for static TLS initialization here may be concurrently freed by dlclose. That use after free may be solved by only locking around static TLS setup or by ensuring dlclose does not free modules with static TLS, however currently every link map with TLS has to be accessed at least to see if it needs static TLS. And even if that's solved, still a lot of atomics would be needed to synchronize DTV related globals without a lock. So fix both bug 19329 and bug 27111 with a lock that prevents DTV setup running concurrently with dlopen or dlclose. _dl_update_slotinfo at TLS access still does not use any locks so CONCURRENCY NOTES are added to explain the synchronization. The early exit from the slotinfo walk when max_modid is reached is not strictly necessary, but does not hurt either. An incorrect acquire load was removed from _dl_resize_dtv: it did not synchronize with any release store or fence and synchronization is now handled separately at thread creation and TLS access time. There are still a number of racy read accesses to globals that will be changed to relaxed MO atomics in a followup patch. This should not introduce regressions compared to existing behaviour and avoid cluttering the main part of the fix. Not all TLS access related data races got fixed here: there are additional races at lazy tlsdesc relocations see bug 27137. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'elf/reldep4mod1.c')
0 files changed, 0 insertions, 0 deletions