![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /opt/rh/gcc-toolset-11/root/usr/share/systemtap/tapset/linux/ |
# statfs _____________________________________________________ # long sys_statfs(const char __user * path, struct statfs __user * buf) # long compat_sys_statfs(const char __user *path, struct compat_statfs __user *buf) # @define _SYSCALL_STATFS_NAME %( name = "statfs" %) @define _SYSCALL_STATFS_ARGSTR %( argstr = sprintf("%s, %p", path, buf_uaddr) %) @define _SYSCALL_STATFS_REGARGS %( path = user_string_quoted(pointer_arg(1)) path_unquoted = user_string_nofault(pointer_arg(1)) buf_uaddr = pointer_arg(2) %) @define _SYSCALL_STATFS_REGARGS_STORE %( if (@probewrite(path_unquoted)) set_user_string_arg(pointer_arg(1), path_unquoted) if (@probewrite(buf_uaddr)) set_pointer_arg(2, buf_uaddr) %) probe syscall.statfs = dw_syscall.statfs !, nd_syscall.statfs ? {} probe syscall.statfs.return = dw_syscall.statfs.return !, nd_syscall.statfs.return ? {} # dw_statfs _____________________________________________________ probe dw_syscall.statfs = kernel.function("compat_sys_statfs").call ?, kernel.function("sys_statfs").call ? { @_SYSCALL_STATFS_NAME buf_uaddr = @__pointer($buf) path = user_string_quoted(@__pointer(@choose_defined($pathname, $path))) @_SYSCALL_STATFS_ARGSTR } probe dw_syscall.statfs.return = kernel.function("compat_sys_statfs").return ?, kernel.function("sys_statfs").return ? { @_SYSCALL_STATFS_NAME @SYSC_RETVALSTR($return) } # nd_statfs _____________________________________________________ probe nd_syscall.statfs = nd1_syscall.statfs!, nd2_syscall.statfs!, tp_syscall.statfs { } probe nd1_syscall.statfs = kprobe.function("compat_sys_statfs") ?, kprobe.function("sys_statfs") ? { @_SYSCALL_STATFS_NAME asmlinkage() @_SYSCALL_STATFS_REGARGS @_SYSCALL_STATFS_ARGSTR } /* kernel 4.17+ */ probe nd2_syscall.statfs = kprobe.function(@arch_syscall_prefix "compat_sys_statfs") ?, kprobe.function(@arch_syscall_prefix "sys_statfs") ? { __set_syscall_pt_regs(pointer_arg(1)) @_SYSCALL_STATFS_NAME @_SYSCALL_STATFS_REGARGS @_SYSCALL_STATFS_ARGSTR }, { %( @_IS_SREG_KERNEL %? @_SYSCALL_STATFS_REGARGS_STORE %) } /* kernel 3.5+, but undesirable because it affects all syscalls */ probe tp_syscall.statfs = kernel.trace("sys_enter") { __set_syscall_pt_regs($regs) @__syscall_compat_gate(@const("__NR_statfs"), @const("__NR_compat_statfs")) @_SYSCALL_STATFS_NAME @_SYSCALL_STATFS_REGARGS @_SYSCALL_STATFS_ARGSTR }, { %( @_IS_SREG_KERNEL %? @_SYSCALL_STATFS_REGARGS_STORE %) } probe nd_syscall.statfs.return = nd1_syscall.statfs.return!, nd2_syscall.statfs.return!, tp_syscall.statfs.return { } probe nd1_syscall.statfs.return = kprobe.function("compat_sys_statfs").return ?, kprobe.function("sys_statfs").return ? { @_SYSCALL_STATFS_NAME @SYSC_RETVALSTR(returnval()) } /* kernel 4.17+ */ probe nd2_syscall.statfs.return = kprobe.function(@arch_syscall_prefix "compat_sys_statfs").return ?, kprobe.function(@arch_syscall_prefix "sys_statfs").return ? { @_SYSCALL_STATFS_NAME @SYSC_RETVALSTR(returnval()) } /* kernel 3.5+, but undesirable because it affects all syscalls */ probe tp_syscall.statfs.return = kernel.trace("sys_exit") { __set_syscall_pt_regs($regs) @__syscall_compat_gate(@const("__NR_statfs"), @const("__NR_compat_statfs")) @_SYSCALL_STATFS_NAME @SYSC_RETVALSTR($ret) }