/usr/share/cagefs-skeleton/usr/include/bits
/* `ptrace' debugger support interface. Linux version, not architecture-specific. Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, see <https://www.gnu.org/licenses/>. */ #ifndef _SYS_PTRACE_H # error "Never use <bits/ptrace-shared.h> directly; include <sys/ptrace.h> instead." #endif /* Options set using PTRACE_SETOPTIONS. */ enum __ptrace_setoptions { PTRACE_O_TRACESYSGOOD = 0x00000001, PTRACE_O_TRACEFORK = 0x00000002, PTRACE_O_TRACEVFORK = 0x00000004, PTRACE_O_TRACECLONE = 0x00000008, PTRACE_O_TRACEEXEC = 0x00000010, PTRACE_O_TRACEVFORKDONE = 0x00000020, PTRACE_O_TRACEEXIT = 0x00000040, PTRACE_O_TRACESECCOMP = 0x00000080, PTRACE_O_EXITKILL = 0x00100000, PTRACE_O_SUSPEND_SECCOMP = 0x00200000, PTRACE_O_MASK = 0x003000ff }; enum __ptrace_eventcodes { /* Wait extended result codes for the above trace options. */ PTRACE_EVENT_FORK = 1, PTRACE_EVENT_VFORK = 2, PTRACE_EVENT_CLONE = 3, PTRACE_EVENT_EXEC = 4, PTRACE_EVENT_VFORK_DONE = 5, PTRACE_EVENT_EXIT = 6, PTRACE_EVENT_SECCOMP = 7, /* Extended result codes enabled by means other than options. */ PTRACE_EVENT_STOP = 128 }; /* Type of stop for PTRACE_GET_SYSCALL_INFO. */ enum __ptrace_get_syscall_info_op { PTRACE_SYSCALL_INFO_NONE = 0, PTRACE_SYSCALL_INFO_ENTRY = 1, PTRACE_SYSCALL_INFO_EXIT = 2, PTRACE_SYSCALL_INFO_SECCOMP = 3 }; /* Arguments for PTRACE_PEEKSIGINFO. */ struct __ptrace_peeksiginfo_args { __uint64_t off; /* From which siginfo to start. */ __uint32_t flags; /* Flags for peeksiginfo. */ __int32_t nr; /* How many siginfos to take. */ }; enum __ptrace_peeksiginfo_flags { /* Read signals from a shared (process wide) queue. */ PTRACE_PEEKSIGINFO_SHARED = (1 << 0) }; /* Argument and results of PTRACE_SECCOMP_GET_METADATA. */ struct __ptrace_seccomp_metadata { __uint64_t filter_off; /* Input: which filter. */ __uint64_t flags; /* Output: filter's flags. */ }; /* Results of PTRACE_GET_SYSCALL_INFO. */ struct __ptrace_syscall_info { __uint8_t op; /* One of the enum __ptrace_get_syscall_info_op values. */ __uint32_t arch __attribute__ ((__aligned__ (4))); /* AUDIT_ARCH_* value. */ __uint64_t instruction_pointer; /* Instruction pointer. */ __uint64_t stack_pointer; /* Stack pointer. */ union { /* System call number and arguments, for PTRACE_SYSCALL_INFO_ENTRY. */ struct { __uint64_t nr; __uint64_t args[6]; } entry; /* System call return value and error flag, for PTRACE_SYSCALL_INFO_EXIT. */ struct { __int64_t rval; __uint8_t is_error; } exit; /* System call number, arguments and SECCOMP_RET_DATA portion of SECCOMP_RET_TRACE return value, for PTRACE_SYSCALL_INFO_SECCOMP. */ struct { __uint64_t nr; __uint64_t args[6]; __uint32_t ret_data; } seccomp; }; }; /* Perform process tracing functions. REQUEST is one of the values above, and determines the action to be taken. For all requests except PTRACE_TRACEME, PID specifies the process to be traced. PID and the other arguments described above for the various requests should appear (those that are used for the particular request) as: pid_t PID, void *ADDR, int DATA, void *ADDR2 after REQUEST. */ extern long int ptrace (enum __ptrace_request __request, ...) __THROW;
.
Edit
..
Edit
a.out.h
Edit
argp-ldbl.h
Edit
byteswap.h
Edit
cmathcalls.h
Edit
confname.h
Edit
cpu-set.h
Edit
dirent.h
Edit
dirent_ext.h
Edit
dlfcn.h
Edit
elfclass.h
Edit
endian.h
Edit
endianness.h
Edit
environments.h
Edit
epoll.h
Edit
err-ldbl.h
Edit
errno.h
Edit
error-ldbl.h
Edit
error.h
Edit
eventfd.h
Edit
fcntl-linux.h
Edit
fcntl.h
Edit
fcntl2.h
Edit
fenv.h
Edit
floatn-common.h
Edit
floatn.h
Edit
flt-eval-method.h
Edit
fp-fast.h
Edit
fp-logb.h
Edit
getopt_core.h
Edit
getopt_ext.h
Edit
getopt_posix.h
Edit
hwcap.h
Edit
in.h
Edit
indirect-return.h
Edit
inet-fortified-decl.h
Edit
inet-fortified.h
Edit
initspin.h
Edit
inotify.h
Edit
ioctl-types.h
Edit
ioctls.h
Edit
ipc-perm.h
Edit
ipc.h
Edit
ipctypes.h
Edit
iscanonical.h
Edit
libc-header-start.h
Edit
libm-simd-decl-stubs.h
Edit
link.h
Edit
link_lavcurrent.h
Edit
local_lim.h
Edit
locale.h
Edit
long-double.h
Edit
math-vector.h
Edit
mathcalls-helper-functions.h
Edit
mathcalls-narrow.h
Edit
mathcalls.h
Edit
mathdef.h
Edit
mman-linux.h
Edit
mman-map-flags-generic.h
Edit
mman-shared.h
Edit
mman.h
Edit
monetary-ldbl.h
Edit
mqueue.h
Edit
mqueue2.h
Edit
msq.h
Edit
netdb.h
Edit
param.h
Edit
platform
Edit
poll.h
Edit
poll2.h
Edit
posix1_lim.h
Edit
posix2_lim.h
Edit
posix_opt.h
Edit
printf-ldbl.h
Edit
procfs-extra.h
Edit
procfs-id.h
Edit
procfs-prregset.h
Edit
procfs.h
Edit
pthread_stack_min-dynamic.h
Edit
pthread_stack_min.h
Edit
pthreadtypes-arch.h
Edit
pthreadtypes.h
Edit
ptrace-shared.h
Edit
resource.h
Edit
rseq.h
Edit
sched.h
Edit
select.h
Edit
select2.h
Edit
sem.h
Edit
semaphore.h
Edit
setjmp.h
Edit
setjmp2.h
Edit
shm.h
Edit
shmlba.h
Edit
sigaction.h
Edit
sigcontext.h
Edit
sigevent-consts.h
Edit
siginfo-arch.h
Edit
siginfo-consts-arch.h
Edit
siginfo-consts.h
Edit
signal_ext.h
Edit
signalfd.h
Edit
signum-arch.h
Edit
signum-generic.h
Edit
sigstack.h
Edit
sigstksz.h
Edit
sigthread.h
Edit
sockaddr.h
Edit
socket-constants.h
Edit
socket.h
Edit
socket2.h
Edit
socket_type.h
Edit
ss_flags.h
Edit
stab.def
Edit
stat.h
Edit
statfs.h
Edit
statvfs.h
Edit
statx-generic.h
Edit
statx.h
Edit
stdint-intn.h
Edit
stdint-uintn.h
Edit
stdio-ldbl.h
Edit
stdio.h
Edit
stdio2-decl.h
Edit
stdio2.h
Edit
stdio_lim.h
Edit
stdlib-bsearch.h
Edit
stdlib-float.h
Edit
stdlib-ldbl.h
Edit
stdlib.h
Edit
string_fortified.h
Edit
strings_fortified.h
Edit
struct_mutex.h
Edit
struct_rwlock.h
Edit
struct_stat.h
Edit
struct_stat_time64_helper.h
Edit
syscall.h
Edit
syslog-ldbl.h
Edit
syslog-path.h
Edit
syslog.h
Edit
sysmacros.h
Edit
termios-baud.h
Edit
termios-c_cc.h
Edit
termios-c_cflag.h
Edit
termios-c_iflag.h
Edit
termios-c_lflag.h
Edit
termios-c_oflag.h
Edit
termios-misc.h
Edit
termios-struct.h
Edit
termios-tcflow.h
Edit
termios.h
Edit
thread-shared-types.h
Edit
time.h
Edit
time64.h
Edit
timerfd.h
Edit
timesize.h
Edit
timex.h
Edit
types
Edit
types.h
Edit
typesizes.h
Edit
uintn-identity.h
Edit
uio-ext.h
Edit
uio_lim.h
Edit
unistd.h
Edit
unistd_ext.h
Edit
utmp.h
Edit
utmpx.h
Edit
utsname.h
Edit
waitflags.h
Edit
waitstatus.h
Edit
wchar-ldbl.h
Edit
wchar.h
Edit
wchar2-decl.h
Edit
wchar2.h
Edit
wctype-wchar.h
Edit
wordsize.h
Edit
xopen_lim.h
Edit