One Hat Cyber Team
Your IP :
216.73.216.135
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
systemtap
/
tapset
/
linux
/
i386
/
Edit File:
sysc_set_zone_reclaim.stp
# set_zone_reclaim ___________________________________________ /* * asmlinkage long * sys_set_zone_reclaim(unsigned int node, * unsigned int zone, * unsigned int state) */ @define _SYSCALL_SET_ZONE_RECLAIM_NAME %( name = "set_zone_reclaim" %) @define _SYSCALL_SET_ZONE_RECLAIM_ARGSTR %( argstr = sprintf("%d, %d, %d", node, zone, state) %) probe syscall.set_zone_reclaim = dw_syscall.set_zone_reclaim !, nd_syscall.set_zone_reclaim ? {} probe syscall.set_zone_reclaim.return = dw_syscall.set_zone_reclaim.return !, nd_syscall.set_zone_reclaim.return ? {} # dw_set_zone_reclaim _____________________________________________________ probe dw_syscall.set_zone_reclaim = kernel.function("sys_set_zone_reclaim") ? { @_SYSCALL_SET_ZONE_RECLAIM_NAME node = $node zone = $zone state = $state @_SYSCALL_SET_ZONE_RECLAIM_ARGSTR } probe dw_syscall.set_zone_reclaim.return = kernel.function("sys_set_zone_reclaim").return ? { @_SYSCALL_SET_ZONE_RECLAIM_NAME @SYSC_RETVALSTR($return) } # nd_set_zone_reclaim _____________________________________________________ probe nd_syscall.set_zone_reclaim = kprobe.function("sys_set_zone_reclaim") ? { @_SYSCALL_SET_ZONE_RECLAIM_NAME asmlinkage() node = uint_arg(1) zone = uint_arg(2) state = uint_arg(3) @_SYSCALL_SET_ZONE_RECLAIM_ARGSTR } probe nd_syscall.set_zone_reclaim.return = kprobe.function("sys_set_zone_reclaim").return ? { @_SYSCALL_SET_ZONE_RECLAIM_NAME @SYSC_RETVALSTR(returnval()) }
Simpan