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
|
# fchmodat ___________________________________________________
# new function with 2.6.16
# long sys_fchmodat(int dfd, const char __user *filename,
# mode_t mode)
@define _SYSCALL_FCHMODAT_NAME
%(
name = "fchmodat"
%)
@define _SYSCALL_FCHMODAT_ARGSTR
%(
argstr = sprintf("%s, %s, %#o", dirfd_str, pathname, mode)
%)
@define _SYSCALL_FCHMODAT_REGARGS
%(
dirfd = int_arg(1)
dirfd_str = _dfd_str(dirfd)
pathname = user_string_quoted(pointer_arg(2))
pathname_unquoted = user_string_nofault(pointer_arg(2))
mode = uint_arg(3)
%)
@define _SYSCALL_FCHMODAT_REGARGS_STORE
%(
if (@probewrite(dirfd))
set_int_arg(1, dirfd)
if (@probewrite(pathname_unquoted))
set_user_string_arg(pointer_arg(2), pathname_unquoted)
if (@probewrite(mode))
set_uint_arg(3, mode)
%)
probe syscall.fchmodat = dw_syscall.fchmodat !, nd_syscall.fchmodat ? {}
probe syscall.fchmodat.return = dw_syscall.fchmodat.return !, nd_syscall.fchmodat.return ? {}
# dw_fchmodat _____________________________________________________
probe dw_syscall.fchmodat = kernel.function("sys_fchmodat").call ?
{
@__syscall_compat_gate(@const("__NR_fchmodat"),
@const("__NR_compat_fchmodat"))
@_SYSCALL_FCHMODAT_NAME
dirfd = __int32($dfd)
dirfd_str = _dfd_str(__int32($dfd))
pathname = user_string_quoted($filename)
%( arch == "i386" %?
# Why @cast() here? Even though the user passes an unsigned
# int (32-bits), some kernels (2.6.32-431.el6.i686) get an
# unsigned short (16-bits).
mode = @uint_cast(&$mode)
%:
mode = __uint32($mode)
%)
@_SYSCALL_FCHMODAT_ARGSTR
}
probe dw_syscall.fchmodat.return = kernel.function("sys_fchmodat").return ?
{
@__syscall_compat_gate(@const("__NR_fchmodat"),
@const("__NR_compat_fchmodat"))
@_SYSCALL_FCHMODAT_NAME
@SYSC_RETVALSTR($return)
}
# nd_fchmodat _____________________________________________________
probe nd_syscall.fchmodat = nd1_syscall.fchmodat!, nd2_syscall.fchmodat!, tp_syscall.fchmodat
{ }
probe nd1_syscall.fchmodat = kprobe.function("sys_fchmodat") ?
{
@__syscall_compat_gate(@const("__NR_fchmodat"),
@const("__NR_compat_fchmodat"))
@_SYSCALL_FCHMODAT_NAME
asmlinkage()
@_SYSCALL_FCHMODAT_REGARGS
@_SYSCALL_FCHMODAT_ARGSTR
}
/* kernel 4.17+ */
probe nd2_syscall.fchmodat = kprobe.function(@arch_syscall_prefix "sys_fchmodat") ?
{
__set_syscall_pt_regs(pointer_arg(1))
@_SYSCALL_FCHMODAT_NAME
@_SYSCALL_FCHMODAT_REGARGS
@_SYSCALL_FCHMODAT_ARGSTR
},
{
%( @_IS_SREG_KERNEL %? @_SYSCALL_FCHMODAT_REGARGS_STORE %)
}
/* kernel 3.5+, but undesirable because it affects all syscalls */
probe tp_syscall.fchmodat = kernel.trace("sys_enter")
{
__set_syscall_pt_regs($regs)
@__syscall_compat_gate(@const("__NR_fchmodat"), @const("__NR_compat_fchmodat"))
@_SYSCALL_FCHMODAT_NAME
@_SYSCALL_FCHMODAT_REGARGS
@_SYSCALL_FCHMODAT_ARGSTR
},
{
%( @_IS_SREG_KERNEL %? @_SYSCALL_FCHMODAT_REGARGS_STORE %)
}
probe nd_syscall.fchmodat.return = nd1_syscall.fchmodat.return!, nd2_syscall.fchmodat.return!, tp_syscall.fchmodat.return
{ }
probe nd1_syscall.fchmodat.return = kprobe.function("sys_fchmodat").return ?
{
@__syscall_compat_gate(@const("__NR_fchmodat"),
@const("__NR_compat_fchmodat"))
@_SYSCALL_FCHMODAT_NAME
@SYSC_RETVALSTR(returnval())
}
/* kernel 4.17+ */
probe nd2_syscall.fchmodat.return = kprobe.function(@arch_syscall_prefix "sys_fchmodat").return ?
{
@_SYSCALL_FCHMODAT_NAME
@SYSC_RETVALSTR(returnval())
}
/* kernel 3.5+, but undesirable because it affects all syscalls */
probe tp_syscall.fchmodat.return = kernel.trace("sys_exit")
{
__set_syscall_pt_regs($regs)
@__syscall_compat_gate(@const("__NR_fchmodat"), @const("__NR_compat_fchmodat"))
@_SYSCALL_FCHMODAT_NAME
@SYSC_RETVALSTR($ret)
}
|