Add more ptrace constants for AArch64 and PowerPC.
[glibc.git] / sysdeps / unix / sysv / linux / aarch64 / sys / ptrace.h
blobde26da002398ef14dea2dd92f7c9313fb63a47e4
1 /* `ptrace' debugger support interface. Linux/AArch64 version.
2 Copyright (C) 1996-2021 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <https://www.gnu.org/licenses/>. */
20 #ifndef _SYS_PTRACE_H
21 #define _SYS_PTRACE_H 1
23 #include <features.h>
24 #include <bits/types.h>
26 __BEGIN_DECLS
28 /* Type of the REQUEST argument to `ptrace.' */
29 enum __ptrace_request
31 /* Indicate that the process making this request should be traced.
32 All signals received by this process can be intercepted by its
33 parent, and its parent can use the other `ptrace' requests. */
34 PTRACE_TRACEME = 0,
35 #define PT_TRACE_ME PTRACE_TRACEME
37 /* Return the word in the process's text space at address ADDR. */
38 PTRACE_PEEKTEXT = 1,
39 #define PT_READ_I PTRACE_PEEKTEXT
41 /* Return the word in the process's data space at address ADDR. */
42 PTRACE_PEEKDATA = 2,
43 #define PT_READ_D PTRACE_PEEKDATA
45 /* Return the word in the process's user area at offset ADDR. */
46 PTRACE_PEEKUSER = 3,
47 #define PT_READ_U PTRACE_PEEKUSER
49 /* Write the word DATA into the process's text space at address ADDR. */
50 PTRACE_POKETEXT = 4,
51 #define PT_WRITE_I PTRACE_POKETEXT
53 /* Write the word DATA into the process's data space at address ADDR. */
54 PTRACE_POKEDATA = 5,
55 #define PT_WRITE_D PTRACE_POKEDATA
57 /* Write the word DATA into the process's user area at offset ADDR. */
58 PTRACE_POKEUSER = 6,
59 #define PT_WRITE_U PTRACE_POKEUSER
61 /* Continue the process. */
62 PTRACE_CONT = 7,
63 #define PT_CONTINUE PTRACE_CONT
65 /* Kill the process. */
66 PTRACE_KILL = 8,
67 #define PT_KILL PTRACE_KILL
69 /* Single step the process. */
70 PTRACE_SINGLESTEP = 9,
71 #define PT_STEP PTRACE_SINGLESTEP
73 /* Attach to a process that is already running. */
74 PTRACE_ATTACH = 16,
75 #define PT_ATTACH PTRACE_ATTACH
77 /* Detach from a process attached to with PTRACE_ATTACH. */
78 PTRACE_DETACH = 17,
79 #define PT_DETACH PTRACE_DETACH
81 /* Continue and stop at the next entry to or return from syscall. */
82 PTRACE_SYSCALL = 24,
83 #define PT_SYSCALL PTRACE_SYSCALL
85 /* Continue and stop at the next syscall, it will not be executed. */
86 PTRACE_SYSEMU = 31,
87 #define PT_SYSEMU PTRACE_SYSEMU
89 /* Single step the process, the next syscall will not be executed. */
90 PTRACE_SYSEMU_SINGLESTEP = 32,
91 #define PT_SYSEMU_SINGLESTEP PTRACE_SYSEMU_SINGLESTEP
93 /* Read MTE tags. */
94 PTRACE_PEEKMTETAGS = 33,
95 #define PT_PEEKMTETAGS PTRACE_PEEKMTETAGS
97 /* Write MTE tags. */
98 PTRACE_POKEMTETAGS = 34,
99 #define PT_POKEMTETAGS PTRACE_POKEMTETAGS
101 /* Set ptrace filter options. */
102 PTRACE_SETOPTIONS = 0x4200,
103 #define PT_SETOPTIONS PTRACE_SETOPTIONS
105 /* Get last ptrace message. */
106 PTRACE_GETEVENTMSG = 0x4201,
107 #define PT_GETEVENTMSG PTRACE_GETEVENTMSG
109 /* Get siginfo for process. */
110 PTRACE_GETSIGINFO = 0x4202,
111 #define PT_GETSIGINFO PTRACE_GETSIGINFO
113 /* Set new siginfo for process. */
114 PTRACE_SETSIGINFO = 0x4203,
115 #define PT_SETSIGINFO PTRACE_SETSIGINFO
117 /* Get register content. */
118 PTRACE_GETREGSET = 0x4204,
119 #define PTRACE_GETREGSET PTRACE_GETREGSET
121 /* Set register content. */
122 PTRACE_SETREGSET = 0x4205,
123 #define PTRACE_SETREGSET PTRACE_SETREGSET
125 /* Like PTRACE_ATTACH, but do not force tracee to trap and do not affect
126 signal or group stop state. */
127 PTRACE_SEIZE = 0x4206,
128 #define PTRACE_SEIZE PTRACE_SEIZE
130 /* Trap seized tracee. */
131 PTRACE_INTERRUPT = 0x4207,
132 #define PTRACE_INTERRUPT PTRACE_INTERRUPT
134 /* Wait for next group event. */
135 PTRACE_LISTEN = 0x4208,
136 #define PTRACE_LISTEN PTRACE_LISTEN
138 /* Retrieve siginfo_t structures without removing signals from a queue. */
139 PTRACE_PEEKSIGINFO = 0x4209,
140 #define PTRACE_PEEKSIGINFO PTRACE_PEEKSIGINFO
142 /* Get the mask of blocked signals. */
143 PTRACE_GETSIGMASK = 0x420a,
144 #define PTRACE_GETSIGMASK PTRACE_GETSIGMASK
146 /* Change the mask of blocked signals. */
147 PTRACE_SETSIGMASK = 0x420b,
148 #define PTRACE_SETSIGMASK PTRACE_SETSIGMASK
150 /* Get seccomp BPF filters. */
151 PTRACE_SECCOMP_GET_FILTER = 0x420c,
152 #define PTRACE_SECCOMP_GET_FILTER PTRACE_SECCOMP_GET_FILTER
154 /* Get seccomp BPF filter metadata. */
155 PTRACE_SECCOMP_GET_METADATA = 0x420d,
156 #define PTRACE_SECCOMP_GET_METADATA PTRACE_SECCOMP_GET_METADATA
158 /* Get information about system call. */
159 PTRACE_GET_SYSCALL_INFO = 0x420e
160 #define PTRACE_GET_SYSCALL_INFO PTRACE_GET_SYSCALL_INFO
164 #include <bits/ptrace-shared.h>
166 __END_DECLS
168 #endif /* _SYS_PTRACE_H */