Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.152
28 Domain
?7.4.33
yvffpqmy
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
systemtap /
runtime /
[ HOME SHELL ]
Name
Size
Permission
Action
?;
dyninst
[ DIR ]
drwxr-xr-x
?;
linux
[ DIR ]
drwxr-xr-x
?;
transport
[ DIR ]
drwxr-xr-x
?;
unwind
[ DIR ]
drwxr-xr-x
addr-map.c
523
B
-rw-r--r--
addr-map.h
723
B
-rw-r--r--
alloc.c
498
B
-rw-r--r--
arith.c
483
B
-rw-r--r--
common_probe_context.h
6.08
KB
-rw-r--r--
common_session_state.h
415
B
-rw-r--r--
compatdefs.h
3.02
KB
-rw-r--r--
copy.c
585
B
-rw-r--r--
debug.h
485
B
-rw-r--r--
io.c
508
B
-rw-r--r--
k_syms.h
182
B
-rw-r--r--
loc2c-runtime.h
8.96
KB
-rw-r--r--
map-gen.c
25.29
KB
-rw-r--r--
map-stat.c
3.38
KB
-rw-r--r--
map.c
14.1
KB
-rw-r--r--
map.h
5.78
KB
-rw-r--r--
mempool.c
2.58
KB
-rw-r--r--
namespaces.h
487
B
-rw-r--r--
pmap-gen.c
8.17
KB
-rw-r--r--
print.c
486
B
-rw-r--r--
print.h
680
B
-rw-r--r--
print_flush.c
4.29
KB
-rw-r--r--
probe_lock.h
498
B
-rw-r--r--
proc_fs_compatibility.h
2.22
KB
-rw-r--r--
procfs-probes.c
4.21
KB
-rw-r--r--
procfs-probes.h
674
B
-rw-r--r--
procfs.c
7.3
KB
-rw-r--r--
ptrace_compatibility.h
1.48
KB
-rw-r--r--
regs.c
4.18
KB
-rw-r--r--
regs.h
2.12
KB
-rw-r--r--
runtime.h
928
B
-rw-r--r--
runtime_context.h
669
B
-rw-r--r--
runtime_defines.h
3.5
KB
-rw-r--r--
stack-arm.c
1.65
KB
-rw-r--r--
stack-ia64.c
1.06
KB
-rw-r--r--
stack-mips.c
125
B
-rw-r--r--
stack-s390.c
2.25
KB
-rw-r--r--
stack.c
18.79
KB
-rw-r--r--
stat-common.c
8.29
KB
-rw-r--r--
stat.c
7.25
KB
-rw-r--r--
stat.h
1.92
KB
-rw-r--r--
stp_helper_lock.h
2.98
KB
-rw-r--r--
stp_string.c
8.15
KB
-rw-r--r--
stp_string.h
598
B
-rw-r--r--
stp_task_work.c
2.75
KB
-rw-r--r--
stp_utrace.c
94.13
KB
-rw-r--r--
stp_utrace.h
13.68
KB
-rw-r--r--
sym.c
34.44
KB
-rw-r--r--
sym.h
5.83
KB
-rw-r--r--
syscall.h
15.61
KB
-rw-r--r--
task_finder_vma.c
12.81
KB
-rw-r--r--
time.c
13.31
KB
-rw-r--r--
timer.c
481
B
-rw-r--r--
timer.h
482
B
-rw-r--r--
uidgid_compatibility.h
603
B
-rw-r--r--
unwind.c
46.51
KB
-rw-r--r--
utrace_compatibility.h
3.07
KB
-rw-r--r--
vma.c
8.83
KB
-rw-r--r--
vsprintf.c
22.98
KB
-rw-r--r--
vsprintf.h
1.47
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : runtime_defines.h
/* Common runtime defines, not dependend on session variables. Included once at the top of the generated stap.c file by the translate.cxx translate_pass (). */ #if defined(__KERNEL__) #include "linux/runtime_defines.h" #elif defined(__DYNINST__) #include "dyninst/runtime_defines.h" #endif /* Strings are used for storing backtraces, they are larger on 64bit so raise the size on 64bit architectures. PR10486. */ #include <asm/types.h> #ifndef MAXSTRINGLEN #if BITS_PER_LONG == 32 #define MAXSTRINGLEN 256 #else #define MAXSTRINGLEN 512 #endif #endif typedef char string_t[MAXSTRINGLEN]; #if !defined(STAP_SUPPRESS_TIME_LIMITS_ENABLE) #ifndef MAXACTION #define MAXACTION 1000 #endif #ifndef MAXACTION_INTERRUPTIBLE #define MAXACTION_INTERRUPTIBLE (MAXACTION * 10) #endif #endif #ifndef TRYLOCKDELAY #define TRYLOCKDELAY 10 /* microseconds */ #endif #ifndef MAXTRYLOCK #define MAXTRYLOCK 100 /* 1 millisecond total */ #endif #ifndef MAXMAPENTRIES #define MAXMAPENTRIES 2048 #endif #ifndef MAXERRORS #define MAXERRORS 0 #endif #ifndef MAXSKIPPED #define MAXSKIPPED 100 #endif #ifndef MINSTACKSPACE #define MINSTACKSPACE 1024 #endif #ifndef INTERRUPTIBLE #define INTERRUPTIBLE 1 #endif /* Overload processing. */ #ifndef STP_OVERLOAD_INTERVAL #define STP_OVERLOAD_INTERVAL 1000000000LL #endif #ifndef STP_OVERLOAD_THRESHOLD #define STP_OVERLOAD_THRESHOLD 500000000LL #endif /* We allow the user to completely turn overload processing off (as opposed to tuning it by overriding the values above) by running: stap -DSTP_NO_OVERLOAD {other options}. */ #if !defined(STP_NO_OVERLOAD) && !defined(STAP_NO_OVERLOAD) && !defined(STAP_SUPPRESS_TIME_LIMITS_ENABLE) #define STP_OVERLOAD #endif /* Used for CONTEXT probe_type. */ enum stp_probe_type { /* begin, end or never probe, triggered by stap module itself. */ stp_probe_type_been, /* user space instruction probe, trigger by utrace signal report. */ stp_probe_type_itrace, /* kernel marker probe, triggered by old marker_probe (removed in 2.6.32). */ stp_probe_type_marker, /* perf event probe, triggered by perf event counter. Note that although this is defined in tapset-perfmon.cxx, this has nothing to do with the (old and now removed) perfmon probes. */ stp_probe_type_perf, /* read or write of stap module proc file. Triggers on manipulation of the /proc/systemtap/MODNAME created through a procfs probe. */ stp_probe_type_procfs, /* timer probe, triggered by standard kernel init_timer interface. */ stp_probe_type_timer, /* high resolution timer probes, triggered by hrtimer firing. */ stp_probe_type_hrtimer, /* profile timer probe, triggered by kernel profile timer (either in kernel or user space). */ stp_probe_type_profile_timer, /* utrace thread start/end probe, triggered by utrace quiesce event for associated thread. */ stp_probe_type_utrace, /* utrace syscall enter/exit probe, triggered by utrace syscall event. */ stp_probe_type_utrace_syscall, /* kprobe event, triggered for dwarf or dwarfless kprobes. */ stp_probe_type_kprobe, /* kretprobe event, triggered for dwarf or dwarfless kretprobes. */ stp_probe_type_kretprobe, /* uprobe event, triggered by hitting a uprobe. */ stp_probe_type_uprobe, /* uretprobe event, triggered by hitting a uretprobe. */ stp_probe_type_uretprobe, /* hardware data watch break point, triggered by kernel data read/write. */ stp_probe_type_hwbkpt, /* kernel tracepoint probe, triggered by tracepoint event call. */ stp_probe_type_tracepoint, /* netfilter probe, triggered on network trafic */ stp_probe_type_netfilter, };
Close