Problem with realpath interceptor
authorDmitry Vyukov <dvyukov@google.com>
Tue, 10 Aug 2021 14:27:49 +0000 (16:27 +0200)
committerDmitry Vyukov <dvyukov@google.com>
Tue, 10 Aug 2021 14:29:42 +0000 (16:29 +0200)
commitfaef0d042f523357fe5590e7cb6a8391cf0351a8
treee47022f4db5964afdddda660ac5e9c407ff1d94d
parentc1a014c3827cf6dd8365316d94c53e2b4434e111
Problem with realpath interceptor

tsan in some cases (e.g. after fork from multithreaded program, which arguably is problematic) increments ignore_interceptors and in that case runs just the intercepted functions and not their wrappers.
For realpath the interceptor handles the resolved_path == nullptr case though and so when ignore_interceptors is non-zero, realpath (".", nullptr) will fail instead of succeeding.
This patch uses instead the COMMON_INTERCEPT_FUNCTION_GLIBC_VER_MIN macro to use realpath@@GLIBC_2.3 whenever possible (if not, then it is likely a glibc architecture
with more recent oldest symbol version than 2.3, for which any realpath in glibc will DTRT, or unsupported glibc older than 2.3), which never supported NULL as second argument.

Reviewed By: dvyukov

Differential Revision: https://reviews.llvm.org/D107819
compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc