]> git.ipfire.org Git - thirdparty/glibc.git/commit - ChangeLog
Fix _dl_profile_fixup data-dependency issue (Bug 23690)
authorTulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
Fri, 30 Nov 2018 20:05:32 +0000 (18:05 -0200)
committerCarlos O'Donell <carlos@redhat.com>
Fri, 7 Dec 2018 14:05:49 +0000 (09:05 -0500)
commit8c89e6b02d95cb4c0155eb3efc18fbd9c0f4582f
tree577855ca8d5bdaa86d76874bb526a5548962abb7
parentb8dd0f42780a3133c02f064a2c0c5c4e7ab61aaa
Fix _dl_profile_fixup data-dependency issue (Bug 23690)

There is a data-dependency between the fields of struct l_reloc_result
and the field used as the initialization guard. Users of the guard
expect writes to the structure to be observable when they also observe
the guard initialized. The solution for this problem is to use an acquire
and release load and store to ensure previous writes to the structure are
observable if the guard is initialized.

The previous implementation used DL_FIXUP_VALUE_ADDR (l_reloc_result->addr)
as the initialization guard, making it impossible for some architectures
to load and store it atomically, i.e. hppa and ia64, due to its larger size.

This commit adds an unsigned int to l_reloc_result to be used as the new
initialization guard of the struct, making it possible to load and store
it atomically in all architectures. The fix ensures that the values
observed in l_reloc_result are consistent and do not lead to crashes.
The algorithm is documented in the code in elf/dl-runtime.c
(_dl_profile_fixup). Not all data races have been eliminated.

Tested with build-many-glibcs and on powerpc, powerpc64, and powerpc64le.

[BZ #23690]
* elf/dl-runtime.c (_dl_profile_fixup): Guarantee memory
modification order when accessing reloc_result->addr.
* include/link.h (reloc_result): Add field init.
* nptl/Makefile (tests): Add tst-audit-threads.
(modules-names): Add tst-audit-threads-mod1 and
tst-audit-threads-mod2.
Add rules to build tst-audit-threads.
* nptl/tst-audit-threads-mod1.c: New file.
* nptl/tst-audit-threads-mod2.c: Likewise.
* nptl/tst-audit-threads.c: Likewise.
* nptl/tst-audit-threads.h: Likewise.

Signed-off-by: Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
(cherry picked from commit e5d262effe3a87164308a3f37e61b32d0348692a)
ChangeLog
elf/dl-runtime.c
include/link.h
nptl/Makefile
nptl/tst-audit-threads-mod1.c [new file with mode: 0644]
nptl/tst-audit-threads-mod2.c [new file with mode: 0644]
nptl/tst-audit-threads.c [new file with mode: 0644]
nptl/tst-audit-threads.h [new file with mode: 0644]