[compiler-rt] [compiler-rt][rtsan] stat api interception. (PR #128430)

Chris Apple via llvm-commits llvm-commits at lists.llvm.org
Sun Feb 23 14:57:53 PST 2025


================
@@ -285,6 +285,45 @@ INTERCEPTOR(int, unlinkat, int fd, const char *pathname, int flag) {
   return REAL(unlinkat)(fd, pathname, flag);
 }
 
+INTERCEPTOR(int, stat, const char *pathname, struct stat *s) {
+  __rtsan_notify_intercepted_call("stat");
+  return REAL(stat)(pathname, s);
+}
+
+INTERCEPTOR(int, lstat, const char *pathname, struct stat *s) {
+  __rtsan_notify_intercepted_call("lstat");
+  return REAL(lstat)(pathname, s);
+}
+
+INTERCEPTOR(int, fstat, int fd, struct stat *s) {
----------------
cjappl wrote:

another one you could consider in this PR is `fstatat`

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


More information about the llvm-commits mailing list