Created
September 26, 2020 20:36
-
-
Save ktosiek/06dce9ef85a926d25402eb143dc13830 to your computer and use it in GitHub Desktop.
bpftrace script for monitoring chmods. I've used this for debugging https://gist.github.com/ktosiek/88bdaa331563164125a5474735cbc8f8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Monitor all chmods and renames in the system. | |
// Some of those take an fd, so also track all openat calls to know where the files live. | |
tracepoint:syscalls:sys_enter_chmod { | |
printf("%u %s %s %u\n", pid, comm, str(args->filename), args->mode); | |
} | |
tracepoint:syscalls:sys_enter_fchmod { | |
printf("%u %s %u %s %u\n", pid, comm, args->fd, @fds[pid, args->fd], args->mode); | |
} | |
tracepoint:syscalls:sys_enter_fchmodat { | |
printf("%u %s %s %u\n", pid, comm, str(args->filename), args->mode); | |
} | |
tracepoint:syscalls:sys_enter_renameat { | |
printf("%u %s %s %s\n", pid, comm, str(args->oldname), str(args->newname)); | |
} | |
tracepoint:syscalls:sys_enter_renameat2 { | |
printf("%u %s %s %s\n", pid, comm, str(args->oldname), str(args->newname)); | |
} | |
tracepoint:syscalls:sys_enter_openat { | |
@openat[pid] = str(args->filename); | |
} | |
tracepoint:syscalls:sys_exit_openat { | |
@fds[pid, args->ret] = @openat[pid]; | |
delete(@openat[pid]); | |
} | |
END { clear(@fds) } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment