MetPX / sarrac

C implementation of (a subset of) Sarracenia (large scale file transfer utility)
GNU General Public License v2.0
4 stars 1 forks source link

Always intercept syscall #172

Closed reidsunderland closed 3 weeks ago

reidsunderland commented 3 weeks ago

We decided that we should always intercept syscall on all OS versions. We were originally only intercepting it on RedHat 8, because the mv command called renameat2 using syscall.

But it's possible that other code on other OS versions will call other file/directory operations using syscall, so we include it everywhere now. This is possible because we now have code to pass through most other syscalls.