[compiler-rt] [compiler-rt][rtsan] adding Linux's clone call interception. (PR #130423)
David CARLIER via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 28 13:42:25 PDT 2025
================
@@ -1361,6 +1361,31 @@ INTERCEPTOR(int, execve, const char *filename, char *const argv[],
return REAL(execve)(filename, argv, envp);
}
+#if SANITIZER_GLIBC
+INTERCEPTOR(int, clone, int (*f)(void *), void *stack, int flags, void *arg,
+ ...) {
+ __rtsan_notify_intercepted_call("clone");
+
+ if ((flags & CLONE_PIDFD) || (flags & CLONE_SETTLS) ||
----------------
devnexen wrote:
sorry just saw your comment now, will add something.
https://github.com/llvm/llvm-project/pull/130423
More information about the llvm-commits
mailing list