[compiler-rt] [compiler-rt][rtsan] chdir/fchdir/chroot interception. (PR #125895)

Chris Apple via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 5 10:50:59 PST 2025


================
@@ -244,6 +244,22 @@ INTERCEPTOR(int, close, int filedes) {
   return REAL(close)(filedes);
 }
 
+INTERCEPTOR(int, chdir, const char *path) {
+  __rtsan_notify_intercepted_call("chdir");
+  return REAL(chdir)(path);
+}
+
+INTERCEPTOR(int, fchdir, int fd) {
+  __rtsan_notify_intercepted_call("fchdir");
+  return REAL(fchdir)(fd);
+}
+
+INTERCEPTOR(int, chroot, const char *path) {
+  __rtsan_notify_intercepted_call("chroot");
+  return REAL(chroot)(path);
+}
----------------
cjappl wrote:

Could we separate out chroot? I think we should consider it separately considering it is a sudo only call. 

The other two interceptors look great, and I will happily approve those. Just want to consider chroot separately considering it's system-wide effects

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


More information about the llvm-commits mailing list