| 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 : |
# mkdirat ____________________________________________________
# long sys_mkdirat(int dfd, const char __user *pathname, int mode)
# new function with 2.6.16
@define _SYSCALL_MKDIRAT_NAME
%(
name = "mkdirat"
%)
@define _SYSCALL_MKDIRAT_ARGSTR
%(
argstr = sprintf("%s, %s, %#o", dirfd_str, pathname, mode)
%)
probe syscall.mkdirat = dw_syscall.mkdirat !, nd_syscall.mkdirat ? {}
probe syscall.mkdirat.return = dw_syscall.mkdirat.return !,
nd_syscall.mkdirat.return ? {}
# dw_mkdirat _____________________________________________________
probe dw_syscall.mkdirat = kernel.function("sys_mkdirat").call ?
{
@__syscall_compat_gate(@const("__NR_mkdirat"), @const("__NR_compat_mkdirat"))
@_SYSCALL_MKDIRAT_NAME
dirfd = __int32($dfd)
dirfd_str = _dfd_str(__int32($dfd))
pathname = user_string_quoted($pathname)
mode = __uint32($mode)
@_SYSCALL_MKDIRAT_ARGSTR
}
probe dw_syscall.mkdirat.return = kernel.function("sys_mkdirat").return ?
{
@__syscall_compat_gate(@const("__NR_mkdirat"), @const("__NR_compat_mkdirat"))
@_SYSCALL_MKDIRAT_NAME
retstr = return_str(1, $return)
}
# nd_mkdirat _____________________________________________________
probe nd_syscall.mkdirat = kprobe.function("sys_mkdirat") ?
{
@__syscall_compat_gate(@const("__NR_mkdirat"), @const("__NR_compat_mkdirat"))
@_SYSCALL_MKDIRAT_NAME
asmlinkage()
dirfd = int_arg(1)
dirfd_str = _dfd_str(dirfd)
pathname = user_string_quoted(pointer_arg(2))
mode = uint_arg(3)
@_SYSCALL_MKDIRAT_ARGSTR
}
probe nd_syscall.mkdirat.return = kprobe.function("sys_mkdirat").return ?
{
@__syscall_compat_gate(@const("__NR_mkdirat"), @const("__NR_compat_mkdirat"))
@_SYSCALL_MKDIRAT_NAME
retstr = returnstr(1)
}