]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
compiler-rt: avoid segfaults when re-exec'ing with ASLR
authorDimitry Andric <dim@FreeBSD.org>
Wed, 22 Nov 2023 18:23:06 +0000 (19:23 +0100)
committerDimitry Andric <dim@FreeBSD.org>
Wed, 22 Nov 2023 18:23:06 +0000 (19:23 +0100)
commit4c9a0adad18263ec8725d9bfc5f560c6ad1da8bd
treec9170f4996a54004b46cf67a2643d3e24b607381
parentecf2106c0701e522b8c643f8ea37550b3e58ba57
compiler-rt: avoid segfaults when re-exec'ing with ASLR

After 930a7c2ac67e ("compiler-rt: re-exec with ASLR disabled when
necessary") and 96fe7c8ab0f6 ("compiler-rt: support ReExec() on
FreeBSD"), binaries linked against the sanitizer libraries may segfault
due to procctl(2) being intercepted. Instead, the non-intercepted
internal_procctl() should be called.

Similarly, the ReExec() function that re-executes the binary after
turning off ASLR should not call elf_aux_info(3) and realpath(3), since
these will also be intercepted. Instead, loop directly over the elf aux
info vector to find the executable path, and avoid calling realpath(3)
since it is actually unwanted for this use case.

Fixes: 930a7c2ac67e96fe7c8ab0f6
MFC after: 3 days
contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp
contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cpp