| 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 : |
# read _______________________________________________________
# ssize_t sys_read(unsigned int fd, char __user * buf, size_t count)
@define _SYSCALL_READ_NAME
%(
name = "read"
%)
@define _SYSCALL_READ_ARGSTR
%(
argstr = sprintf("%d, %p, %u", fd, buf_uaddr, count)
%)
probe syscall.read = dw_syscall.read !, nd_syscall.read ? {}
probe syscall.read.return = dw_syscall.read.return !,
nd_syscall.read.return ? {}
# dw_read _____________________________________________________
probe dw_syscall.read =
%( arch == "s390" %?
__syscall.read, kernel.function("sys32_read").call ?,
kernel.function("compat_sys_s390_read").call ?
%:
__syscall.read
%)
{
@_SYSCALL_READ_NAME
fd = __int32($fd)
buf_uaddr = @__pointer($buf)
count = @__compat_ulong($count)
@_SYSCALL_READ_ARGSTR
}
probe __syscall.read = kernel.function("sys_read").call
{
%( arch == "s390" %?
@__syscall_gate(@const("__NR_read"))
%)
}
probe dw_syscall.read.return =
%( arch == "s390" %?
__syscall.read.return, kernel.function("sys32_read").return ?,
kernel.function("compat_sys_s390_read").return ?
%:
__syscall.read.return
%)
{
@_SYSCALL_READ_NAME
retstr = return_str(1, $return)
}
probe __syscall.read.return = kernel.function("sys_read").return
{
%( arch == "s390" %?
@__syscall_gate(@const("__NR_read"))
%)
}
# nd_read _____________________________________________________
probe nd_syscall.read =
%( arch == "s390" %?
__nd_syscall.read, kprobe.function("sys32_read") ?,
kprobe.function("compat_sys_s390_read") ?
%:
__nd_syscall.read
%)
{
@_SYSCALL_READ_NAME
asmlinkage()
fd = int_arg(1)
buf_uaddr = pointer_arg(2)
count = ulong_arg(3)
@_SYSCALL_READ_ARGSTR
}
probe __nd_syscall.read = kprobe.function("sys_read")
{
%( arch == "s390" %?
@__syscall_gate(@const("__NR_read"))
%)
}
probe nd_syscall.read.return =
%( arch == "s390" %?
__nd_syscall.read.return, kprobe.function("sys32_read").return ?,
kprobe.function("compat_sys_s390_read").return ?
%:
__nd_syscall.read.return
%)
{
@_SYSCALL_READ_NAME
retstr = returnstr(1)
}
probe __nd_syscall.read.return = kprobe.function("sys_read").return
{
%( arch == "s390" %?
@__syscall_gate(@const("__NR_read"))
%)
}