![]() 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/ |
/* utrace-only subset of register accessors */ %{ #include "syscall.h" %} function _utrace_syscall_nr:long () %{ /* pure */ /* stable */ /* myproc-unprivileged */ if (! CONTEXT->uregs || ! CONTEXT->user_mode_p) { CONTEXT->last_error = "invalid call without context registers"; } else { STAP_RETVALUE = _stp_syscall_get_nr(current, CONTEXT->uregs); } %} function _utrace_syscall_arg:long (n:long) %{ /* pure */ /* myproc-unprivileged */ unsigned long arg = 0; if (! CONTEXT->uregs || ! CONTEXT->user_mode_p) { CONTEXT->last_error = "invalid call without context registers"; } else { syscall_get_arguments(current, CONTEXT->uregs, (int)STAP_ARG_n, 1, &arg); } STAP_RETVALUE = arg; %} function _utrace_syscall_return:long () %{ /* pure */ /* stable */ /* myproc-unprivileged */ /* * Here's the reason for the "unsigned long" cast. Since all * values inside systemtap are 64-bit numbers, return values were * getting sign extended. This caused return values to not match * up with the same values passes as arguments. */ if (! CONTEXT->uregs || ! CONTEXT->user_mode_p) { CONTEXT->last_error = "invalid call without context registers"; } else { STAP_RETVALUE = (unsigned long)syscall_get_return_value(current, CONTEXT->uregs); } %}