Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /opt/rh/gcc-toolset-11/root/usr/share/systemtap/tapset/linux/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //opt/rh/gcc-toolset-11/root/usr/share/systemtap/tapset/linux/sysc_fchown16.stp
# fchown16 ___________________________________________________
# long sys_fchown16(unsigned int fd, old_uid_t user, old_gid_t group)

@define _SYSCALL_FCHOWN16_NAME
%(
	name = "fchown16"
%)

@define _SYSCALL_FCHOWN16_ARGSTR
%(
	argstr = sprintf("%d, %d, %d", fd, owner, group)
%)

@define _SYSCALL_FCHOWN16_REGARGS
%(
	fd = int_arg(1)
	owner = __short(uint_arg(2))
	group = __short(uint_arg(3))
%)

@define _SYSCALL_FCHOWN16_REGARGS_STORE
%(
        if (@probewrite(fd))
          set_int_arg(1, fd)

	if (@probewrite(owner))
	  set_uint_arg(2, __short(owner))

	if (@probewrite(group))
	  set_uint_arg(3, __short(group))
%)

probe syscall.fchown16 = dw_syscall.fchown16 !, nd_syscall.fchown16 ? {}
probe syscall.fchown16.return = dw_syscall.fchown16.return !, nd_syscall.fchown16.return ? {}

# dw_fchown16 _____________________________________________________

probe dw_syscall.fchown16 = kernel.function("sys_fchown16").call ?
{
	@_SYSCALL_FCHOWN16_NAME
	fd = $fd
	owner = __short($user)
	group = __short($group)
	@_SYSCALL_FCHOWN16_ARGSTR
}
probe dw_syscall.fchown16.return = kernel.function("sys_fchown16").return ?
{
	@_SYSCALL_FCHOWN16_NAME
	@SYSC_RETVALSTR($return)
}

# nd_fchown16 _____________________________________________________

probe nd_syscall.fchown16 = nd1_syscall.fchown16!, nd2_syscall.fchown16!, tp_syscall.fchown16
  { }

probe nd1_syscall.fchown16 = kprobe.function("sys_fchown16") ?
{
	@_SYSCALL_FCHOWN16_NAME
	asmlinkage()
	@_SYSCALL_FCHOWN16_REGARGS
	@_SYSCALL_FCHOWN16_ARGSTR
}

/* kernel 4.17+ */
probe nd2_syscall.fchown16 = kprobe.function(@arch_syscall_prefix "sys_fchown16") ?
{
	__set_syscall_pt_regs(pointer_arg(1))
	@_SYSCALL_FCHOWN16_NAME
	@_SYSCALL_FCHOWN16_REGARGS
	@_SYSCALL_FCHOWN16_ARGSTR
},
{
        %( @_IS_SREG_KERNEL %? @_SYSCALL_FCHOWN16_REGARGS_STORE %)
}

/* kernel 3.5+, but undesirable because it affects all syscalls */
probe tp_syscall.fchown16 = kernel.trace("sys_enter")
{
	__set_syscall_pt_regs($regs)
%( CONFIG_64BIT == "y" %?
	@__compat_syscall_gate(@const("__NR_compat_fchown"))
%:
	@__syscall_gate(@const("__NR_fchown"))
%)
	@_SYSCALL_FCHOWN16_NAME
	@_SYSCALL_FCHOWN16_REGARGS
	@_SYSCALL_FCHOWN16_ARGSTR
},
{
        %( @_IS_SREG_KERNEL %? @_SYSCALL_FCHOWN16_REGARGS_STORE %)
}

probe nd_syscall.fchown16.return = nd1_syscall.fchown16.return!, nd2_syscall.fchown16.return!, tp_syscall.fchown16.return
  { }
  
probe nd1_syscall.fchown16.return = kprobe.function("sys_fchown16").return ?
{
	@_SYSCALL_FCHOWN16_NAME
	@SYSC_RETVALSTR(returnval())
}

/* kernel 4.17+ */
probe nd2_syscall.fchown16.return = kprobe.function(@arch_syscall_prefix "sys_fchown16").return ?
{
	@_SYSCALL_FCHOWN16_NAME
	@SYSC_RETVALSTR(returnval())
}
 
/* kernel 3.5+, but undesirable because it affects all syscalls */
probe tp_syscall.fchown16.return = kernel.trace("sys_exit")
{
	__set_syscall_pt_regs($regs)
%( CONFIG_64BIT == "y" %?
	@__compat_syscall_gate(@const("__NR_compat_fchown"))
%:
	@__syscall_gate(@const("__NR_fchown"))
%)
	@_SYSCALL_FCHOWN16_NAME
	@SYSC_RETVALSTR($ret)
}

Spamworldpro Mini