[compiler-rt] [compiler-rt][rtsan] copy_file_range interception for Linux. (PR #129026)
Chris Apple via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 27 17:14:30 PST 2025
================
@@ -312,6 +312,18 @@ INTERCEPTOR(int, ftruncate64, int fd, off64_t length) {
#define RTSAN_MAYBE_INTERCEPT_FTRUNCATE64
#endif
+#if SANITIZER_LINUX
+INTERCEPTOR(ssize_t, copy_file_range, int fdin, off_t *off_int, int fdout,
+ off_t *off_out, size_t len, unsigned int flags) {
+ __rtsan_notify_intercepted_call("copy_file_range");
+ return REAL(copy_file_range)(fdin, off_int, fdout, off_out, len, flags);
+}
+#define RTSAN_MAYBE_INTERCEPT_COPY_FILE_RANGE \
----------------
cjappl wrote:
I'm OK Keeping this as it is in the review. I think the expressiveness of it is a net positive.
https://github.com/llvm/llvm-project/pull/129026
More information about the llvm-commits
mailing list