[compiler-rt] [tsan] Refine fstat{,64} interceptors (PR #86625)
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 26 13:28:25 PDT 2024
================
@@ -1613,47 +1614,40 @@ TSAN_INTERCEPTOR(int, __fxstat, int version, int fd, void *buf) {
FdAccess(thr, pc, fd);
return REAL(__fxstat)(version, fd, buf);
}
-#define TSAN_MAYBE_INTERCEPT___FXSTAT TSAN_INTERCEPT(__fxstat)
+
+TSAN_INTERCEPTOR(int, __fxstat64, int version, int fd, void *buf) {
+ SCOPED_TSAN_INTERCEPTOR(__fxstat64, version, fd, buf);
+ if (fd > 0)
+ FdAccess(thr, pc, fd);
+ return REAL(__fxstat64)(version, fd, buf);
+}
+#define TSAN_MAYBE_INTERCEPT___FXSTAT TSAN_INTERCEPT(__fxstat); TSAN_INTERCEPT(__fxstat64)
#else
#define TSAN_MAYBE_INTERCEPT___FXSTAT
#endif
+#if !SANITIZER_GLIBC || __GLIBC_PREREQ(2, 33)
----------------
vitalybuka wrote:
__GLIBC_PREREQ should not be 1 for "!SANITIZER_GLIBC"
Can you fix this in sanitizer_glibc_version?
https://github.com/llvm/llvm-project/pull/86625
More information about the llvm-commits
mailing list