1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
# statx _______________________________________________________
# Syscall introduced in kernel commit a528d35e8bfcc521d7cb70aaf03e1bd296c8493f
# Author: David Howells <dhowells@redhat.com>
# Date: Tue Jan 31 16:46:22 2017 +0000
# SYSCALL_DEFINE5(statx,
# int, dfd, const char __user *, filename, unsigned, flags,
# unsigned int, mask,
# struct statx __user *, buffer)
#
# asmlinkage long sys_statx(int dfd, const char __user *path, unsigned flags,
# unsigned mask, struct statx __user *buffer);
@define _SYSCALL_STATX_NAME
%(
name = "statx"
%)
@define _SYSCALL_STATX_ARGSTR
%(
argstr = sprintf("%s, %s, %s, %s, %p", dfd_str, filename, flags_str,
mask_str, buf_uaddr)
%)
@define _SYSCALL_STATX_REGARGS
%(
dfd = int_arg(1)
dfd_str = _dfd_str(dfd)
filename_uaddr = pointer_arg(2)
filename = user_string_quoted(filename_uaddr)
filename_unquoted = user_string_nofault(pointer_arg(2))
flags = uint_arg(3)
flags_str = _at_flag_str(flags)
mask = uint_arg(4)
mask_str = _statx_mask_str(mask)
buf_uaddr = pointer_arg(5)
%)
@define _SYSCALL_STATX_REGARGS_STORE
%(
if (@probewrite(dfd))
set_int_arg(1, dfd)
if (@probewrite(filename_uaddr))
set_pointer_arg(2, filename_uaddr)
if (@probewrite(filename_unquoted))
set_user_string_arg(pointer_arg(2), filename_unquoted)
if (@probewrite(flags))
set_uint_arg(3, flags)
if (@probewrite(mask))
set_uint_arg(4, mask)
if (@probewrite(buf_uaddr))
set_pointer_arg(5, buf_uaddr)
%)
probe syscall.statx = dw_syscall.statx !, nd_syscall.statx ? {}
probe syscall.statx.return = dw_syscall.statx.return !, nd_syscall.statx.return ? {}
# dw_statx _____________________________________________________
probe dw_syscall.statx = kernel.function("sys_statx").call ?
{
@_SYSCALL_STATX_NAME
dfd = __int32($dfd)
dfd_str = _dfd_str(dfd)
filename_uaddr = $filename
filename = user_string_quoted($filename)
flags = __uint32($flags)
flags_str = _at_flag_str(flags)
mask = __uint32($mask)
mask_str = _statx_mask_str(mask)
buf_uaddr = $buffer
# Not pretty-printing struct statx, since it is just
# (maybe somehow initialized) *destination* buffer.
@_SYSCALL_STATX_ARGSTR
}
probe dw_syscall.statx.return = kernel.function("sys_statx").return ?
{
@_SYSCALL_STATX_NAME
@SYSC_RETVALSTR($return)
}
# nd_statx _____________________________________________________
probe nd_syscall.statx = nd1_syscall.statx!, nd2_syscall.statx!, tp_syscall.statx
{ }
probe nd1_syscall.statx = kprobe.function("sys_statx") ?
{
@_SYSCALL_STATX_NAME
asmlinkage()
@_SYSCALL_STATX_REGARGS
# Not pretty-printing struct statx, since it is just
# (maybe somehow initialized) *destination* buffer.
@_SYSCALL_STATX_ARGSTR
}
/* kernel 4.17+ */
probe nd2_syscall.statx = kprobe.function(@arch_syscall_prefix "sys_statx") ?
{
__set_syscall_pt_regs(pointer_arg(1))
@_SYSCALL_STATX_NAME
@_SYSCALL_STATX_REGARGS
@_SYSCALL_STATX_ARGSTR
},
{
%( @_IS_SREG_KERNEL %? @_SYSCALL_STATX_REGARGS_STORE %)
}
/* kernel 3.5+, but undesirable because it affects all syscalls */
probe tp_syscall.statx = kernel.trace("sys_enter")
{
__set_syscall_pt_regs($regs)
@__syscall_compat_gate(@const("__NR_statx"), @const("__NR_compat_statx"))
@_SYSCALL_STATX_NAME
@_SYSCALL_STATX_REGARGS
@_SYSCALL_STATX_ARGSTR
},
{
%( @_IS_SREG_KERNEL %? @_SYSCALL_STATX_REGARGS_STORE %)
}
probe nd_syscall.statx.return = nd1_syscall.statx.return!, nd2_syscall.statx.return!, tp_syscall.statx.return
{ }
probe nd1_syscall.statx.return = kprobe.function("sys_statx").return ?
{
@_SYSCALL_STATX_NAME
@SYSC_RETVALSTR(returnval())
}
/* kernel 4.17+ */
probe nd2_syscall.statx.return = kprobe.function(@arch_syscall_prefix "sys_statx").return ?
{
@_SYSCALL_STATX_NAME
@SYSC_RETVALSTR(returnval())
}
/* kernel 3.5+, but undesirable because it affects all syscalls */
probe tp_syscall.statx.return = kernel.trace("sys_exit")
{
__set_syscall_pt_regs($regs)
@__syscall_compat_gate(@const("__NR_statx"), @const("__NR_compat_statx"))
@_SYSCALL_STATX_NAME
@SYSC_RETVALSTR($ret)
}
|