| Server IP : 118.27.122.120 / Your IP : 216.73.216.136 Web Server : Apache System : Linux web0216.sh.tyo1 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64 User : r4834334 ( 11094) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/thread-self/root/opt/rh/devtoolset-8/root/usr/share/systemtap/tapset/linux/ |
Upload File : |
# pwritev2 __________________________________________________
#
# SYSCALL_DEFINE6(pwritev2, unsigned long, fd, const struct iovec __user *, vec,
# unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
# int, flags)
# COMPAT_SYSCALL_DEFINE6(pwritev2, compat_ulong_t, fd,
# const struct compat_iovec __user *,vec,
# compat_ulong_t, vlen, u32, pos_low, u32, pos_high, int, flags)
@define _SYSCALL_PWRITEV2_NAME
%(
name = "pwritev2"
%)
@define _SYSCALL_PWRITEV2_ARGSTR
%(
argstr = sprintf("%d, %p, %d, 0x%x, %s", fd, vector_uaddr,
count, offset, flags_str)
%)
probe syscall.pwritev2 = dw_syscall.pwritev2 !, nd_syscall.pwritev2 ? {}
probe syscall.pwritev2.return = dw_syscall.pwritev2.return !,
nd_syscall.pwritev2.return ? {}
# dw_pwritev2 _____________________________________________________
probe dw_syscall.pwritev2 = __syscall.pwritev2 ?, __syscall.compat_pwritev2 ?
{
@_SYSCALL_PWRITEV2_NAME
}
probe __syscall.pwritev2 = kernel.function("sys_pwritev2").call ?
{
fd = __int32($fd)
vector_uaddr = $vec
count = __int32($vlen)
offset = @__pos_from_hilo($pos_h, $pos_l)
flags = $flags
flags_str = _preadv2_flags_str(flags)
@_SYSCALL_PWRITEV2_ARGSTR
}
probe __syscall.compat_pwritev2 = kernel.function("compat_sys_pwritev2").call ?
{
fd = __int32($fd)
vector_uaddr = $vec
count = __int32($vlen)
offset = ($pos_high << 32) + $pos_low
flags = $flags
flags_str = _preadv2_flags_str(flags)
@_SYSCALL_PWRITEV2_ARGSTR
}
probe dw_syscall.pwritev2.return = kernel.function("sys_pwritev2").return ?,
kernel.function("compat_sys_pwritev2").return ?
{
@_SYSCALL_PWRITEV2_NAME
retstr = return_str(1, $return)
}
# nd_pwritev2 _____________________________________________________
probe nd_syscall.pwritev2 = __nd_syscall.pwritev2 ?,
__nd_syscall.compat_pwritev2 ?
{
@_SYSCALL_PWRITEV2_NAME
}
probe __nd_syscall.pwritev2 = kprobe.function("sys_pwritev2").call
{
asmlinkage()
fd = int_arg(1)
vector_uaddr = pointer_arg(2)
count = int_arg(3)
offset = @__pos_from_hilo(ulong_arg(5), ulong_arg(4))
flags = int_arg(6)
flags_str = _preadv2_flags_str(flags)
@_SYSCALL_PWRITEV2_ARGSTR
}
probe __nd_syscall.compat_pwritev2 =
kprobe.function("compat_sys_pwritev2").call
{
asmlinkage()
fd = int_arg(1)
vector_uaddr = pointer_arg(2)
count = int_arg(3)
offset = (u32_arg(5) << 32) + u32_arg(4)
flags = int_arg(6)
flags_str = _preadv2_flags_str(flags)
@_SYSCALL_PWRITEV2_ARGSTR
}
probe nd_syscall.pwritev2.return = kprobe.function("sys_pwritev2").return ?,
kprobe.function("compat_sys_pwritev2").return ?
{
@_SYSCALL_PWRITEV2_NAME
retstr = returnstr(1)
}