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
|
# mq_notify __________________________________________________
# long sys_mq_notify(mqd_t mqdes, const struct sigevent __user *u_notification)
# long compat_sys_mq_notify(mqd_t mqdes, const struct compat_sigevent __user *u_notification)
#
@define _SYSCALL_MQ_NOTIFY_NAME
%(
name = "mq_notify"
%)
@define _SYSCALL_MQ_NOTIFY_ARGSTR
%(
argstr = sprintf("%d, %p", mqdes, notification_uaddr)
%)
@define _SYSCALL_MQ_NOTIFY_REGARGS
%(
mqdes = int_arg(1)
notification_uaddr = pointer_arg(2)
%)
probe syscall.mq_notify = dw_syscall.mq_notify !, nd_syscall.mq_notify ? {}
probe syscall.mq_notify.return = dw_syscall.mq_notify.return !,
nd_syscall.mq_notify.return ? {}
# dw_mq_notify _____________________________________________________
probe dw_syscall.mq_notify =
__syscall.mq_notify,
kernel.function("compat_sys_mq_notify").call ?
{
@_SYSCALL_MQ_NOTIFY_NAME
mqdes = __int32($mqdes)
notification_uaddr = @__pointer($u_notification)
@_SYSCALL_MQ_NOTIFY_ARGSTR
}
probe __syscall.mq_notify = kernel.function("sys_mq_notify").call
{
@__syscall_gate(@const("__NR_mq_notify"))
}
probe dw_syscall.mq_notify.return =
__syscall.mq_notify.return,
kernel.function("compat_sys_mq_notify").return ?
{
@_SYSCALL_MQ_NOTIFY_NAME
@SYSC_RETVALSTR($return)
}
probe __syscall.mq_notify.return = kernel.function("sys_mq_notify").return
{
@__syscall_gate(@const("__NR_mq_notify"))
}
# nd_mq_notify _____________________________________________________
probe nd_syscall.mq_notify = nd1_syscall.mq_notify!, nd2_syscall.mq_notify!, tp_syscall.mq_notify
{ }
probe nd1_syscall.mq_notify =
__nd1_syscall.mq_notify ?,
kprobe.function("compat_sys_mq_notify") ?
{
@_SYSCALL_MQ_NOTIFY_NAME
asmlinkage()
@_SYSCALL_MQ_NOTIFY_REGARGS
@_SYSCALL_MQ_NOTIFY_ARGSTR
}
probe __nd1_syscall.mq_notify = kprobe.function("sys_mq_notify")
{
@__syscall_gate(@const("__NR_mq_notify"))
}
/* kernel 4.17+ */
probe nd2_syscall.mq_notify =
kprobe.function(@arch_syscall_prefix "sys_mq_notify") ?,
kprobe.function(@arch_syscall_prefix "compat_sys_mq_notify") ?
{
__set_syscall_pt_regs(pointer_arg(1))
@_SYSCALL_MQ_NOTIFY_NAME
@_SYSCALL_MQ_NOTIFY_REGARGS
@_SYSCALL_MQ_NOTIFY_ARGSTR
}
/* kernel 3.5+, but undesirable because it affects all syscalls */
probe tp_syscall.mq_notify = kernel.trace("sys_enter")
{
__set_syscall_pt_regs($regs)
@__syscall_compat_gate(@const("__NR_mq_notify"), @const("__NR_compat_mq_notify"))
@_SYSCALL_MQ_NOTIFY_NAME
@_SYSCALL_MQ_NOTIFY_REGARGS
@_SYSCALL_MQ_NOTIFY_ARGSTR
}
probe nd_syscall.mq_notify.return = nd1_syscall.mq_notify.return!, nd2_syscall.mq_notify.return!, tp_syscall.mq_notify.return
{ }
probe nd1_syscall.mq_notify.return =
__nd1_syscall.mq_notify.return ?,
kprobe.function("compat_sys_mq_notify").return ?
{
@_SYSCALL_MQ_NOTIFY_NAME
@SYSC_RETVALSTR(returnval())
}
probe __nd1_syscall.mq_notify.return = kprobe.function("sys_mq_notify").return
{
@__syscall_gate(@const("__NR_mq_notify"))
}
/* kernel 4.17+ */
probe nd2_syscall.mq_notify.return =
kprobe.function(@arch_syscall_prefix "sys_mq_notify").return ?,
kprobe.function(@arch_syscall_prefix "compat_sys_mq_notify").return ?
{
@_SYSCALL_MQ_NOTIFY_NAME
@SYSC_RETVALSTR(returnval())
}
/* kernel 3.5+, but undesirable because it affects all syscalls */
probe tp_syscall.mq_notify.return = kernel.trace("sys_exit")
{
__set_syscall_pt_regs($regs)
@__syscall_compat_gate(@const("__NR_mq_notify"), @const("__NR_compat_mq_notify"))
@_SYSCALL_MQ_NOTIFY_NAME
@SYSC_RETVALSTR($ret)
}
|