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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
|
# fstat ______________________________________________________
# long sys_fstat(unsigned int fd, struct __old_kernel_stat __user * statbuf)
# long sys_fstat64(unsigned long fd, struct stat64 __user * statbuf)
# long sys32_fstat64(unsigned int fd, struct stat64 __user *statbuf)
# long sys_newfstat(unsigned int fd, struct stat __user * statbuf)
# long sys_oabi_fstat64(char __user * filename,
# struct oldabi_stat64 __user * statbuf)
# long compat_sys_newfstat(unsigned int fd, struct compat_stat __user * statbuf)
#
@define _SYSCALL_FSTAT_NAME
%(
name = "fstat"
%)
@define _SYSCALL_FSTAT_ARGSTR
%(
argstr = sprintf("%d, %p", filedes, buf_uaddr)
%)
@define _SYSCALL_FSTAT_REGARGS
%(
filedes = int_arg(1)
buf_uaddr = pointer_arg(2)
%)
@define _SYSCALL_FSTAT_REGARGS_STORE
%(
if (@probewrite(filedes))
set_int_arg(1, filedes)
if (@probewrite(buf_uaddr))
set_pointer_arg(2, buf_uaddr)
%)
probe syscall.fstat = dw_syscall.fstat !, nd_syscall.fstat ? {}
probe syscall.fstat.return = dw_syscall.fstat.return !, nd_syscall.fstat.return ? {}
# dw_fstat _____________________________________________________
probe dw_syscall.fstat = kernel.function("sys_fstat").call ?,
kernel.function("sys_fstat64").call ?,
kernel.function("sys32_fstat64").call ?,
kernel.function("sys_newfstat").call ?,
kernel.function("sys_oabi_fstat64").call ?,
kernel.function("sys_oabi_fstat64").call ?,
%( arch == "s390" %?
kernel.function("compat_sys_s390_fstat64").call ?,
%)
%( arch == "x86_64" %?
kernel.function("compat_sys_x86_fstat64").call ?,
%)
kernel.function("compat_sys_newfstat").call ?
{
@_SYSCALL_FSTAT_NAME
filedes = __int32($fd)
buf_uaddr = $statbuf
@_SYSCALL_FSTAT_ARGSTR
}
probe dw_syscall.fstat.return = kernel.function("sys_fstat").return ?,
kernel.function("sys_fstat64").return ?,
kernel.function("sys32_fstat64").return ?,
kernel.function("sys_newfstat").return ?,
kernel.function("sys_oabi_fstat64").return ?,
%( arch == "s390" %?
kernel.function("compat_sys_s390_fstat64").return ?,
%)
%( arch == "x86_64" %?
kernel.function("compat_sys_x86_fstat64").return ?,
%)
kernel.function("compat_sys_newfstat").return ?
{
@_SYSCALL_FSTAT_NAME
@SYSC_RETVALSTR($return)
}
# nd_fstat _____________________________________________________
probe nd_syscall.fstat = nd1_syscall.fstat!, nd2_syscall.fstat!, tp_syscall.fstat
{ }
probe nd1_syscall.fstat = kprobe.function("sys_fstat") ?,
kprobe.function("sys_fstat64") ?,
kprobe.function("sys32_fstat64") ?,
kprobe.function("sys_newfstat") ?,
kprobe.function("sys_oabi_fstat64") ?,
%( arch == "s390" %?
kprobe.function("compat_sys_s390_fstat64") ?,
%)
%( arch == "x86_64" %?
kprobe.function("compat_sys_x86_fstat64") ?,
%)
kprobe.function("compat_sys_newfstat") ?
{
@_SYSCALL_FSTAT_NAME
asmlinkage()
@_SYSCALL_FSTAT_REGARGS
@_SYSCALL_FSTAT_ARGSTR
}
/* kernel 4.17+ */
probe nd2_syscall.fstat =
kprobe.function(@arch_syscall_prefix "sys_fstat") ?,
kprobe.function(@arch_syscall_prefix "sys_newfstat") ?,
kprobe.function(@arch_syscall_prefix "compat_sys_newfstat") ?,
kprobe.function(@arch_syscall_prefix "compat_sys_x86_fstat64") ?
{
__set_syscall_pt_regs(pointer_arg(1))
@_SYSCALL_FSTAT_NAME
@_SYSCALL_FSTAT_REGARGS
@_SYSCALL_FSTAT_ARGSTR
},
{
@_SYSCALL_FSTAT_REGARGS_STORE
}
/* kernel 3.5+, but undesirable because it affects all syscalls */
probe tp_syscall.fstat = __tp_syscall.fstat,
__tp_syscall.fstat64,
__tp_syscall.newfstat
{
__set_syscall_pt_regs($regs)
@_SYSCALL_FSTAT_NAME
@_SYSCALL_FSTAT_REGARGS
@_SYSCALL_FSTAT_ARGSTR
},
{
@_SYSCALL_FSTAT_REGARGS_STORE
}
probe __tp_syscall.fstat = kernel.trace("sys_enter")
{
@__syscall_compat_gate(@const("__NR_oldfstat"), @const("__NR_compat_oldfstat"))
}
probe __tp_syscall.fstat64 = kernel.trace("sys_enter")
{
@__syscall_compat_gate(@const("__NR_fstat64"), @const("__NR_compat_fstat64"))
}
probe __tp_syscall.newfstat = kernel.trace("sys_enter")
{
@__syscall_compat_gate(@const("__NR_fstat"), @const("__NR_compat_fstat"))
}
probe nd_syscall.fstat.return = nd1_syscall.fstat.return!, nd2_syscall.fstat.return!, tp_syscall.fstat.return
{ }
probe nd1_syscall.fstat.return = kprobe.function("sys_fstat").return ?,
kprobe.function("sys_fstat64").return ?,
kprobe.function("sys32_fstat64").return ?,
kprobe.function("sys_newfstat").return ?,
kprobe.function("sys_oabi_fstat64").return ?,
%( arch == "s390" %?
kprobe.function("compat_sys_s390_fstat64").return ?,
%)
%( arch == "x86_64" %?
kprobe.function("compat_sys_x86_fstat64").return ?,
%)
kprobe.function("compat_sys_newfstat").return ?
{
@_SYSCALL_FSTAT_NAME
@SYSC_RETVALSTR(returnval())
}
/* kernel 4.17+ */
probe nd2_syscall.fstat.return =
kprobe.function(@arch_syscall_prefix "sys_fstat").return ?,
kprobe.function(@arch_syscall_prefix "sys_newfstat").return ?,
kprobe.function(@arch_syscall_prefix "compat_sys_newfstat").return ?,
kprobe.function(@arch_syscall_prefix "compat_sys_x86_fstat64").return ?
{
@_SYSCALL_FSTAT_NAME
@SYSC_RETVALSTR(returnval())
}
/* kernel 3.5+, but undesirable because it affects all syscalls */
probe tp_syscall.fstat.return = __tp_syscall.fstat.return,
__tp_syscall.fstat64.return,
__tp_syscall.newfstat.return
{
__set_syscall_pt_regs($regs)
@_SYSCALL_FSTAT_NAME
@SYSC_RETVALSTR($ret)
}
probe __tp_syscall.fstat.return = kernel.trace("sys_exit")
{
@__syscall_compat_gate(@const("__NR_oldfstat"), @const("__NR_compat_oldfstat"))
}
probe __tp_syscall.fstat64.return = kernel.trace("sys_exit")
{
@__syscall_compat_gate(@const("__NR_fstat64"), @const("__NR_compat_fstat64"))
}
probe __tp_syscall.newfstat.return = kernel.trace("sys_exit")
{
@__syscall_compat_gate(@const("__NR_fstat"), @const("__NR_compat_fstat"))
}
|