[compiler-rt] [compiler-rt][rtsan] adding Linux's clone call interception. (PR #130423)

via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 10 04:44:41 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) ||
----------------
davidtrevelyan wrote:

This branch does not appear to be under test - is there any reason why that is difficult?

https://github.com/llvm/llvm-project/pull/130423


More information about the llvm-commits mailing list