blob: dbfa821d5a6eca74a897cb0d570eddb8ffb0079f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_PTRACE_H
2#define _LINUX_PTRACE_H
3/* ptrace.h */
4/* structs and defines to help the user use the ptrace system call. */
5
6/* has the defines to get at the registers. */
7
8#define PTRACE_TRACEME 0
9#define PTRACE_PEEKTEXT 1
10#define PTRACE_PEEKDATA 2
11#define PTRACE_PEEKUSR 3
12#define PTRACE_POKETEXT 4
13#define PTRACE_POKEDATA 5
14#define PTRACE_POKEUSR 6
15#define PTRACE_CONT 7
16#define PTRACE_KILL 8
17#define PTRACE_SINGLESTEP 9
18
Roland McGrath416bc512006-09-29 02:00:45 -070019#define PTRACE_ATTACH 16
20#define PTRACE_DETACH 17
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#define PTRACE_SYSCALL 24
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24/* 0x4200-0x4300 are reserved for architecture-independent additions. */
25#define PTRACE_SETOPTIONS 0x4200
26#define PTRACE_GETEVENTMSG 0x4201
27#define PTRACE_GETSIGINFO 0x4202
28#define PTRACE_SETSIGINFO 0x4203
29
Suresh Siddha2225a122010-02-11 11:51:00 -080030/*
31 * Generic ptrace interface that exports the architecture specific regsets
32 * using the corresponding NT_* types (which are also used in the core dump).
33 *
34 * This interface usage is as follows:
35 * struct iovec iov = { buf, len};
36 *
37 * ret = ptrace(PTRACE_GETREGSET/PTRACE_SETREGSET, pid, NT_XXX_TYPE, &iov);
38 *
39 * On the successful completion, iov.len will be updated by the kernel,
40 * specifying how much the kernel has written/read to/from the user's iov.buf.
41 */
42#define PTRACE_GETREGSET 0x4204
43#define PTRACE_SETREGSET 0x4205
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045/* options set using PTRACE_SETOPTIONS */
46#define PTRACE_O_TRACESYSGOOD 0x00000001
47#define PTRACE_O_TRACEFORK 0x00000002
48#define PTRACE_O_TRACEVFORK 0x00000004
49#define PTRACE_O_TRACECLONE 0x00000008
50#define PTRACE_O_TRACEEXEC 0x00000010
51#define PTRACE_O_TRACEVFORKDONE 0x00000020
52#define PTRACE_O_TRACEEXIT 0x00000040
53
54#define PTRACE_O_MASK 0x0000007f
55
56/* Wait extended result codes for the above trace options. */
57#define PTRACE_EVENT_FORK 1
58#define PTRACE_EVENT_VFORK 2
59#define PTRACE_EVENT_CLONE 3
60#define PTRACE_EVENT_EXEC 4
61#define PTRACE_EVENT_VFORK_DONE 5
62#define PTRACE_EVENT_EXIT 6
63
64#include <asm/ptrace.h>
65
66#ifdef __KERNEL__
67/*
68 * Ptrace flags
Eric W. Biederman260ea102006-06-23 02:05:18 -070069 *
70 * The owner ship rules for task->ptrace which holds the ptrace
71 * flags is simple. When a task is running it owns it's task->ptrace
72 * flags. When the a task is stopped the ptracer owns task->ptrace.
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 */
74
75#define PT_PTRACED 0x00000001
76#define PT_DTRACE 0x00000002 /* delayed trace (used on m68k, i386) */
77#define PT_TRACESYSGOOD 0x00000004
78#define PT_PTRACE_CAP 0x00000008 /* ptracer can follow suid-exec */
79#define PT_TRACE_FORK 0x00000010
80#define PT_TRACE_VFORK 0x00000020
81#define PT_TRACE_CLONE 0x00000040
82#define PT_TRACE_EXEC 0x00000080
83#define PT_TRACE_VFORK_DONE 0x00000100
84#define PT_TRACE_EXIT 0x00000200
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86#define PT_TRACE_MASK 0x000003f4
87
88/* single stepping state bits (used on ARM and PA-RISC) */
89#define PT_SINGLESTEP_BIT 31
90#define PT_SINGLESTEP (1<<PT_SINGLESTEP_BIT)
91#define PT_BLOCKSTEP_BIT 30
92#define PT_BLOCKSTEP (1<<PT_BLOCKSTEP_BIT)
93
94#include <linux/compiler.h> /* For unlikely. */
95#include <linux/sched.h> /* For struct task_struct. */
96
Christoph Hellwig481bed42005-11-07 00:59:47 -080097
98extern long arch_ptrace(struct task_struct *child, long request, long addr, long data);
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -080099extern int ptrace_traceme(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100extern int ptrace_readdata(struct task_struct *tsk, unsigned long src, char __user *dst, int len);
101extern int ptrace_writedata(struct task_struct *tsk, char __user *src, unsigned long dst, int len);
102extern int ptrace_attach(struct task_struct *tsk);
103extern int ptrace_detach(struct task_struct *, unsigned int);
104extern void ptrace_disable(struct task_struct *);
105extern int ptrace_check_attach(struct task_struct *task, int kill);
106extern int ptrace_request(struct task_struct *child, long request, long addr, long data);
107extern void ptrace_notify(int exit_code);
108extern void __ptrace_link(struct task_struct *child,
109 struct task_struct *new_parent);
110extern void __ptrace_unlink(struct task_struct *child);
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700111extern void exit_ptrace(struct task_struct *tracer);
Stephen Smalley006ebb42008-05-19 08:32:49 -0400112#define PTRACE_MODE_READ 1
113#define PTRACE_MODE_ATTACH 2
114/* Returns 0 on success, -errno on denial. */
115extern int __ptrace_may_access(struct task_struct *task, unsigned int mode);
116/* Returns true on success, false on denial. */
117extern bool ptrace_may_access(struct task_struct *task, unsigned int mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Oleg Nesterov53b6f9f2008-04-30 00:53:13 -0700119static inline int ptrace_reparented(struct task_struct *child)
120{
121 return child->real_parent != child->parent;
122}
Oleg Nesterovc6a47cc2009-12-15 16:47:15 -0800123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124static inline void ptrace_unlink(struct task_struct *child)
125{
126 if (unlikely(child->ptrace))
127 __ptrace_unlink(child);
128}
129
Alexey Dobriyan76647322007-07-17 04:03:43 -0700130int generic_ptrace_peekdata(struct task_struct *tsk, long addr, long data);
Alexey Dobriyanf284ce72007-07-17 04:03:44 -0700131int generic_ptrace_pokedata(struct task_struct *tsk, long addr, long data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Roland McGrath88ac2922008-07-25 19:45:43 -0700133/**
134 * task_ptrace - return %PT_* flags that apply to a task
135 * @task: pointer to &task_struct in question
136 *
137 * Returns the %PT_* flags that apply to @task.
138 */
139static inline int task_ptrace(struct task_struct *task)
140{
141 return task->ptrace;
142}
143
144/**
145 * ptrace_event - possibly stop for a ptrace event notification
146 * @mask: %PT_* bit to check in @current->ptrace
147 * @event: %PTRACE_EVENT_* value to report if @mask is set
148 * @message: value for %PTRACE_GETEVENTMSG to return
149 *
150 * This checks the @mask bit to see if ptrace wants stops for this event.
151 * If so we stop, reporting @event and @message to the ptrace parent.
152 *
153 * Returns nonzero if we did a ptrace notification, zero if not.
154 *
155 * Called without locks.
156 */
157static inline int ptrace_event(int mask, int event, unsigned long message)
158{
159 if (mask && likely(!(current->ptrace & mask)))
160 return 0;
161 current->ptrace_message = message;
162 ptrace_notify((event << 8) | SIGTRAP);
163 return 1;
164}
165
Roland McGrath09a05392008-07-25 19:45:47 -0700166/**
167 * ptrace_init_task - initialize ptrace state for a new child
168 * @child: new child task
169 * @ptrace: true if child should be ptrace'd by parent's tracer
170 *
171 * This is called immediately after adding @child to its parent's children
172 * list. @ptrace is false in the normal case, and true to ptrace @child.
173 *
174 * Called with current's siglock and write_lock_irq(&tasklist_lock) held.
175 */
176static inline void ptrace_init_task(struct task_struct *child, bool ptrace)
177{
178 INIT_LIST_HEAD(&child->ptrace_entry);
179 INIT_LIST_HEAD(&child->ptraced);
180 child->parent = child->real_parent;
181 child->ptrace = 0;
Oleg Nesterovc6a47cc2009-12-15 16:47:15 -0800182 if (unlikely(ptrace) && (current->ptrace & PT_PTRACED)) {
Roland McGrath09a05392008-07-25 19:45:47 -0700183 child->ptrace = current->ptrace;
Oleg Nesterovc6a47cc2009-12-15 16:47:15 -0800184 __ptrace_link(child, current->parent);
Roland McGrath09a05392008-07-25 19:45:47 -0700185 }
186}
187
Roland McGrathdae33572008-07-25 19:45:48 -0700188/**
189 * ptrace_release_task - final ptrace-related cleanup of a zombie being reaped
190 * @task: task in %EXIT_DEAD state
191 *
192 * Called with write_lock(&tasklist_lock) held.
193 */
194static inline void ptrace_release_task(struct task_struct *task)
195{
196 BUG_ON(!list_empty(&task->ptraced));
197 ptrace_unlink(task);
198 BUG_ON(!list_empty(&task->ptrace_entry));
199}
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201#ifndef force_successful_syscall_return
202/*
203 * System call handlers that, upon successful completion, need to return a
204 * negative value should call force_successful_syscall_return() right before
205 * returning. On architectures where the syscall convention provides for a
206 * separate error flag (e.g., alpha, ia64, ppc{,64}, sparc{,64}, possibly
207 * others), this macro can be used to ensure that the error flag will not get
208 * set. On architectures which do not support a separate error flag, the macro
209 * is a no-op and the spurious error condition needs to be filtered out by some
210 * other means (e.g., in user-level, by passing an extra argument to the
211 * syscall handler, or something along those lines).
212 */
213#define force_successful_syscall_return() do { } while (0)
214#endif
215
Roland McGrathfb7fa8f2008-01-30 13:30:47 +0100216/*
217 * <asm/ptrace.h> should define the following things inside #ifdef __KERNEL__.
218 *
219 * These do-nothing inlines are used when the arch does not
220 * implement single-step. The kerneldoc comments are here
221 * to document the interface for all arch definitions.
222 */
223
224#ifndef arch_has_single_step
225/**
226 * arch_has_single_step - does this CPU support user-mode single-step?
227 *
228 * If this is defined, then there must be function declarations or
229 * inlines for user_enable_single_step() and user_disable_single_step().
230 * arch_has_single_step() should evaluate to nonzero iff the machine
231 * supports instruction single-step for user mode.
232 * It can be a constant or it can test a CPU feature bit.
233 */
234#define arch_has_single_step() (0)
235
236/**
237 * user_enable_single_step - single-step in user-mode task
238 * @task: either current or a task stopped in %TASK_TRACED
239 *
240 * This can only be called when arch_has_single_step() has returned nonzero.
241 * Set @task so that when it returns to user mode, it will trap after the
Roland McGrathdc802c22008-01-30 13:30:53 +0100242 * next single instruction executes. If arch_has_block_step() is defined,
243 * this must clear the effects of user_enable_block_step() too.
Roland McGrathfb7fa8f2008-01-30 13:30:47 +0100244 */
245static inline void user_enable_single_step(struct task_struct *task)
246{
247 BUG(); /* This can never be called. */
248}
249
250/**
251 * user_disable_single_step - cancel user-mode single-step
252 * @task: either current or a task stopped in %TASK_TRACED
253 *
Roland McGrathdc802c22008-01-30 13:30:53 +0100254 * Clear @task of the effects of user_enable_single_step() and
255 * user_enable_block_step(). This can be called whether or not either
256 * of those was ever called on @task, and even if arch_has_single_step()
257 * returned zero.
Roland McGrathfb7fa8f2008-01-30 13:30:47 +0100258 */
259static inline void user_disable_single_step(struct task_struct *task)
260{
261}
262#endif /* arch_has_single_step */
263
Roland McGrathdc802c22008-01-30 13:30:53 +0100264#ifndef arch_has_block_step
265/**
266 * arch_has_block_step - does this CPU support user-mode block-step?
267 *
268 * If this is defined, then there must be a function declaration or inline
269 * for user_enable_block_step(), and arch_has_single_step() must be defined
270 * too. arch_has_block_step() should evaluate to nonzero iff the machine
271 * supports step-until-branch for user mode. It can be a constant or it
272 * can test a CPU feature bit.
273 */
Roland McGrath5b88abb2008-01-30 13:30:53 +0100274#define arch_has_block_step() (0)
Roland McGrathdc802c22008-01-30 13:30:53 +0100275
276/**
277 * user_enable_block_step - step until branch in user-mode task
278 * @task: either current or a task stopped in %TASK_TRACED
279 *
280 * This can only be called when arch_has_block_step() has returned nonzero,
281 * and will never be called when single-instruction stepping is being used.
282 * Set @task so that when it returns to user mode, it will trap after the
283 * next branch or trap taken.
284 */
285static inline void user_enable_block_step(struct task_struct *task)
286{
287 BUG(); /* This can never be called. */
288}
289#endif /* arch_has_block_step */
290
Oleg Nesterov85ec7fd2009-12-15 16:47:17 -0800291#ifdef ARCH_HAS_USER_SINGLE_STEP_INFO
292extern void user_single_step_siginfo(struct task_struct *tsk,
293 struct pt_regs *regs, siginfo_t *info);
294#else
295static inline void user_single_step_siginfo(struct task_struct *tsk,
296 struct pt_regs *regs, siginfo_t *info)
297{
298 memset(info, 0, sizeof(*info));
299 info->si_signo = SIGTRAP;
300}
301#endif
302
Roland McGrath1a669c22008-02-06 01:37:37 -0800303#ifndef arch_ptrace_stop_needed
304/**
305 * arch_ptrace_stop_needed - Decide whether arch_ptrace_stop() should be called
306 * @code: current->exit_code value ptrace will stop with
307 * @info: siginfo_t pointer (or %NULL) for signal ptrace will stop with
308 *
309 * This is called with the siglock held, to decide whether or not it's
310 * necessary to release the siglock and call arch_ptrace_stop() with the
311 * same @code and @info arguments. It can be defined to a constant if
312 * arch_ptrace_stop() is never required, or always is. On machines where
313 * this makes sense, it should be defined to a quick test to optimize out
314 * calling arch_ptrace_stop() when it would be superfluous. For example,
315 * if the thread has not been back to user mode since the last stop, the
316 * thread state might indicate that nothing needs to be done.
317 */
318#define arch_ptrace_stop_needed(code, info) (0)
319#endif
320
321#ifndef arch_ptrace_stop
322/**
323 * arch_ptrace_stop - Do machine-specific work before stopping for ptrace
324 * @code: current->exit_code value ptrace will stop with
325 * @info: siginfo_t pointer (or %NULL) for signal ptrace will stop with
326 *
327 * This is called with no locks held when arch_ptrace_stop_needed() has
328 * just returned nonzero. It is allowed to block, e.g. for user memory
329 * access. The arch can have machine-specific work to be done before
330 * ptrace stops. On ia64, register backing store gets written back to user
331 * memory here. Since this can be costly (requires dropping the siglock),
332 * we only do it when the arch requires it for this particular stop, as
333 * indicated by arch_ptrace_stop_needed().
334 */
335#define arch_ptrace_stop(code, info) do { } while (0)
336#endif
337
Markus Metzgerbf53de92008-12-19 15:10:24 +0100338#ifndef arch_ptrace_untrace
339/*
340 * Do machine-specific work before untracing child.
341 *
342 * This is called for a normal detach as well as from ptrace_exit()
343 * when the tracing task dies.
344 *
345 * Called with write_lock(&tasklist_lock) held.
346 */
347#define arch_ptrace_untrace(task) do { } while (0)
348#endif
349
Roland McGrathbbc69862008-07-25 19:45:59 -0700350extern int task_current_syscall(struct task_struct *target, long *callno,
351 unsigned long args[6], unsigned int maxargs,
352 unsigned long *sp, unsigned long *pc);
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354#endif
355
356#endif