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
|
# lremovexattr _______________________________________________
# long sys_lremovexattr(char __user *path, char __user *name)
#
@define _SYSCALL_LREMOVEXATTR_NAME
%(
name = "lremovexattr"
%)
@define _SYSCALL_LREMOVEXATTR_ARGSTR
%(
argstr = sprintf("%s, %s", path, name_str)
%)
@define _SYSCALL_LREMOVEXATTR_REGARGS
%(
path_uaddr = pointer_arg(1)
path = user_string_quoted(path_uaddr)
name_uaddr = pointer_arg(2)
# 'name2' should have been 'name_str'. Deprecate the old name.
%(systemtap_v <= "1.4" %?
name2 = user_string_quoted(name_uaddr)
%)
name_str = user_string_quoted(name_uaddr)
%)
probe syscall.lremovexattr = dw_syscall.lremovexattr !, nd_syscall.lremovexattr ? {}
probe syscall.lremovexattr.return = dw_syscall.lremovexattr.return !, nd_syscall.lremovexattr.return ? {}
# dw_lremovexattr _____________________________________________________
probe dw_syscall.lremovexattr = kernel.function("sys_lremovexattr").call
{
@_SYSCALL_LREMOVEXATTR_NAME
name_uaddr = $name
# 'name2' should have been 'name_str'. Deprecate the old name.
%(systemtap_v <= "1.4" %?
name2 = user_string_quoted($name)
%)
name_str = user_string_quoted($name)
path_uaddr = @choose_defined($pathname, $path)
path = user_string_quoted(@choose_defined($pathname, $path))
@_SYSCALL_LREMOVEXATTR_ARGSTR
}
probe dw_syscall.lremovexattr.return = kernel.function("sys_lremovexattr").return
{
@_SYSCALL_LREMOVEXATTR_NAME
@SYSC_RETVALSTR($return)
}
# nd_lremovexattr _____________________________________________________
probe nd_syscall.lremovexattr = nd1_syscall.lremovexattr!, nd2_syscall.lremovexattr!, tp_syscall.lremovexattr
{ }
probe nd1_syscall.lremovexattr = kprobe.function("sys_lremovexattr") ?
{
@_SYSCALL_LREMOVEXATTR_NAME
asmlinkage()
@_SYSCALL_LREMOVEXATTR_REGARGS
@_SYSCALL_LREMOVEXATTR_ARGSTR
}
/* kernel 4.17+ */
probe nd2_syscall.lremovexattr = kprobe.function(@arch_syscall_prefix "sys_lremovexattr") ?
{
__set_syscall_pt_regs(pointer_arg(1))
@_SYSCALL_LREMOVEXATTR_NAME
@_SYSCALL_LREMOVEXATTR_REGARGS
@_SYSCALL_LREMOVEXATTR_ARGSTR
}
/* kernel 3.5+, but undesirable because it affects all syscalls */
probe tp_syscall.lremovexattr = kernel.trace("sys_enter")
{
__set_syscall_pt_regs($regs)
@__syscall_compat_gate(@const("__NR_lremovexattr"), @const("__NR_compat_lremovexattr"))
@_SYSCALL_LREMOVEXATTR_NAME
@_SYSCALL_LREMOVEXATTR_REGARGS
@_SYSCALL_LREMOVEXATTR_ARGSTR
}
probe nd_syscall.lremovexattr.return = nd1_syscall.lremovexattr.return!, nd2_syscall.lremovexattr.return!, tp_syscall.lremovexattr.return
{ }
probe nd1_syscall.lremovexattr.return = kprobe.function("sys_lremovexattr").return ?
{
@_SYSCALL_LREMOVEXATTR_NAME
@SYSC_RETVALSTR(returnval())
}
/* kernel 4.17+ */
probe nd2_syscall.lremovexattr.return = kprobe.function(@arch_syscall_prefix "sys_lremovexattr").return ?
{
@_SYSCALL_LREMOVEXATTR_NAME
@SYSC_RETVALSTR(returnval())
}
/* kernel 3.5+, but undesirable because it affects all syscalls */
probe tp_syscall.lremovexattr.return = kernel.trace("sys_exit")
{
__set_syscall_pt_regs($regs)
@__syscall_compat_gate(@const("__NR_lremovexattr"), @const("__NR_compat_lremovexattr"))
@_SYSCALL_LREMOVEXATTR_NAME
@SYSC_RETVALSTR($ret)
}
|