diff options
author | Carlos O'Donell <carlos@redhat.com> | 2017-01-28 19:13:34 -0500 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2018-12-29 01:35:01 +0100 |
commit | fcd316654a4510281fff32194b3b9f90e3dfab83 (patch) | |
tree | c36afd14a49ef16dfff7b8743c4e982c0a5f655e /nptl/Makefile | |
parent | e853f05a5757dfee0c8b7f301e6a52047cc9864a (diff) | |
download | glibc-fcd316654a4510281fff32194b3b9f90e3dfab83.tar.gz glibc-fcd316654a4510281fff32194b3b9f90e3dfab83.tar.xz glibc-fcd316654a4510281fff32194b3b9f90e3dfab83.zip |
Bug 20116: Fix use after free in pthread_create()
The commit documents the ownership rules around 'struct pthread' and when a thread can read or write to the descriptor. With those ownership rules in place it becomes obvious that pd->stopped_start should not be touched in several of the paths during thread startup, particularly so for detached threads. In the case of detached threads, between the time the thread is created by the OS kernel and the creating thread checks pd->stopped_start, the detached thread might have already exited and the memory for pd unmapped. As a regression test we add a simple test which exercises this exact case by quickly creating detached threads with large enough stacks to ensure the thread stack cache is bypassed and the stacks are unmapped. Before the fix the testcase segfaults, after the fix it works correctly and completes without issue. For a detailed discussion see: https://www.sourceware.org/ml/libc-alpha/2017-01/msg00505.html (cherry picked from commit f8bf15febcaf137bbec5a61101e88cd5a9d56ca8)
Diffstat (limited to 'nptl/Makefile')
-rw-r--r-- | nptl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index 1aa52afd71..6928477501 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -291,7 +291,8 @@ tests = tst-typesizes \ c89 gnu89 c99 gnu99 c11 gnu11) \ tst-bad-schedattr \ tst-thread_local1 tst-mutex-errorcheck tst-robust10 \ - tst-minstack-cancel tst-minstack-exit + tst-minstack-cancel tst-minstack-exit \ + tst-create-detached xtests = tst-setuid1 tst-setuid1-static tst-setuid2 \ tst-mutexpp1 tst-mutexpp6 tst-mutexpp10 |