]> git.ipfire.org Git - thirdparty/glibc.git/commit - ChangeLog
Fix handling of static TLS in dlopen'ed objects
authorMartin von Gagern <Martin.vGagern@gmx.net>
Sun, 15 May 2011 01:25:43 +0000 (21:25 -0400)
committerUlrich Drepper <drepper@gmail.com>
Sun, 15 May 2011 01:25:43 +0000 (21:25 -0400)
commitd26dfc60edc8c6dd160eefff16a734152a835ca0
tree0d0e1a3caa1f5edd8fc27a8a4715fc1052740c7e
parenta79a1c704b32c48903a4cb4c0786eca828520b5c
Fix handling of static TLS in dlopen'ed objects

When dynamically loading a library along with several dependencies, calls to
_dl_add_to_slotinfo and _dl_update_slotinfo can become intermixed. As a
consequence, _dl_update_slotinfo will update the generation counter of the dtv
although not all of the slots belonging to that generation have been added.
Subsequent calls to _dl_add_to_slotinfo will add more slots to the same
generation, for which no storage will be allocated, as the dtv generation
checks will claim no work is necessary. This will lead to uninitialized dtv
entries and will likely cause a SIGSEGV when thread local variables are
accessed.
ChangeLog
NEWS
elf/Makefile
elf/dl-open.c
elf/tst-tls19.c [new file with mode: 0644]
elf/tst-tls19mod1.c [new file with mode: 0644]
elf/tst-tls19mod2.c [new file with mode: 0644]
elf/tst-tls19mod3.c [new file with mode: 0644]