1#ifndef _LINUX_PTRACE_H
2#define _LINUX_PTRACE_H
3
4
5
6
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
19#define PTRACE_ATTACH 16
20#define PTRACE_DETACH 17
21
22#define PTRACE_SYSCALL 24
23
24
25#define PTRACE_SETOPTIONS 0x4200
26#define PTRACE_GETEVENTMSG 0x4201
27#define PTRACE_GETSIGINFO 0x4202
28#define PTRACE_SETSIGINFO 0x4203
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47#define PTRACE_GETREGSET 0x4204
48#define PTRACE_SETREGSET 0x4205
49
50#define PTRACE_SEIZE 0x4206
51#define PTRACE_INTERRUPT 0x4207
52#define PTRACE_LISTEN 0x4208
53
54
55#define PTRACE_EVENT_FORK 1
56#define PTRACE_EVENT_VFORK 2
57#define PTRACE_EVENT_CLONE 3
58#define PTRACE_EVENT_EXEC 4
59#define PTRACE_EVENT_VFORK_DONE 5
60#define PTRACE_EVENT_EXIT 6
61#define PTRACE_EVENT_SECCOMP 7
62
63#define PTRACE_EVENT_STOP 128
64
65
66#define PTRACE_O_TRACESYSGOOD 1
67#define PTRACE_O_TRACEFORK (1 << PTRACE_EVENT_FORK)
68#define PTRACE_O_TRACEVFORK (1 << PTRACE_EVENT_VFORK)
69#define PTRACE_O_TRACECLONE (1 << PTRACE_EVENT_CLONE)
70#define PTRACE_O_TRACEEXEC (1 << PTRACE_EVENT_EXEC)
71#define PTRACE_O_TRACEVFORKDONE (1 << PTRACE_EVENT_VFORK_DONE)
72#define PTRACE_O_TRACEEXIT (1 << PTRACE_EVENT_EXIT)
73#define PTRACE_O_TRACESECCOMP (1 << PTRACE_EVENT_SECCOMP)
74
75#define PTRACE_O_MASK 0x000000ff
76
77#include <asm/ptrace.h>
78
79#ifdef __KERNEL__
80
81
82
83
84
85
86
87
88#define PT_SEIZED 0x00010000
89#define PT_PTRACED 0x00000001
90#define PT_DTRACE 0x00000002
91#define PT_PTRACE_CAP 0x00000004
92
93#define PT_OPT_FLAG_SHIFT 3
94
95#define PT_EVENT_FLAG(event) (1 << (PT_OPT_FLAG_SHIFT + (event)))
96#define PT_TRACESYSGOOD PT_EVENT_FLAG(0)
97#define PT_TRACE_FORK PT_EVENT_FLAG(PTRACE_EVENT_FORK)
98#define PT_TRACE_VFORK PT_EVENT_FLAG(PTRACE_EVENT_VFORK)
99#define PT_TRACE_CLONE PT_EVENT_FLAG(PTRACE_EVENT_CLONE)
100#define PT_TRACE_EXEC PT_EVENT_FLAG(PTRACE_EVENT_EXEC)
101#define PT_TRACE_VFORK_DONE PT_EVENT_FLAG(PTRACE_EVENT_VFORK_DONE)
102#define PT_TRACE_EXIT PT_EVENT_FLAG(PTRACE_EVENT_EXIT)
103#define PT_TRACE_SECCOMP PT_EVENT_FLAG(PTRACE_EVENT_SECCOMP)
104
105
106#define PT_SINGLESTEP_BIT 31
107#define PT_SINGLESTEP (1<<PT_SINGLESTEP_BIT)
108#define PT_BLOCKSTEP_BIT 30
109#define PT_BLOCKSTEP (1<<PT_BLOCKSTEP_BIT)
110
111#include <linux/compiler.h>
112#include <linux/sched.h>
113#include <linux/err.h>
114#include <linux/bug.h>
115
116
117extern long arch_ptrace(struct task_struct *child, long request,
118 unsigned long addr, unsigned long data);
119extern int ptrace_readdata(struct task_struct *tsk, unsigned long src, char __user *dst, int len);
120extern int ptrace_writedata(struct task_struct *tsk, char __user *src, unsigned long dst, int len);
121extern void ptrace_disable(struct task_struct *);
122extern int ptrace_check_attach(struct task_struct *task, bool ignore_state);
123extern int ptrace_request(struct task_struct *child, long request,
124 unsigned long addr, unsigned long data);
125extern void ptrace_notify(int exit_code);
126extern void __ptrace_link(struct task_struct *child,
127 struct task_struct *new_parent);
128extern void __ptrace_unlink(struct task_struct *child);
129extern void exit_ptrace(struct task_struct *tracer);
130#define PTRACE_MODE_READ 0x01
131#define PTRACE_MODE_ATTACH 0x02
132#define PTRACE_MODE_NOAUDIT 0x04
133
134extern int __ptrace_may_access(struct task_struct *task, unsigned int mode);
135
136extern bool ptrace_may_access(struct task_struct *task, unsigned int mode);
137
138static inline int ptrace_reparented(struct task_struct *child)
139{
140 return !same_thread_group(child->real_parent, child->parent);
141}
142
143static inline void ptrace_unlink(struct task_struct *child)
144{
145 if (unlikely(child->ptrace))
146 __ptrace_unlink(child);
147}
148
149int generic_ptrace_peekdata(struct task_struct *tsk, unsigned long addr,
150 unsigned long data);
151int generic_ptrace_pokedata(struct task_struct *tsk, unsigned long addr,
152 unsigned long data);
153
154
155
156
157
158
159
160
161
162
163
164
165static inline struct task_struct *ptrace_parent(struct task_struct *task)
166{
167 if (unlikely(task->ptrace))
168 return rcu_dereference(task->parent);
169 return NULL;
170}
171
172
173
174
175
176
177
178
179
180
181static inline bool ptrace_event_enabled(struct task_struct *task, int event)
182{
183 return task->ptrace & PT_EVENT_FLAG(event);
184}
185
186
187
188
189
190
191
192
193
194
195
196static inline void ptrace_event(int event, unsigned long message)
197{
198 if (unlikely(ptrace_event_enabled(current, event))) {
199 current->ptrace_message = message;
200 ptrace_notify((event << 8) | SIGTRAP);
201 } else if (event == PTRACE_EVENT_EXEC) {
202
203 if ((current->ptrace & (PT_PTRACED|PT_SEIZED)) == PT_PTRACED)
204 send_sig(SIGTRAP, current, 0);
205 }
206}
207
208
209
210
211
212
213
214
215
216
217
218static inline void ptrace_init_task(struct task_struct *child, bool ptrace)
219{
220 INIT_LIST_HEAD(&child->ptrace_entry);
221 INIT_LIST_HEAD(&child->ptraced);
222#ifdef CONFIG_HAVE_HW_BREAKPOINT
223 atomic_set(&child->ptrace_bp_refcnt, 1);
224#endif
225 child->jobctl = 0;
226 child->ptrace = 0;
227 child->parent = child->real_parent;
228
229 if (unlikely(ptrace) && current->ptrace) {
230 child->ptrace = current->ptrace;
231 __ptrace_link(child, current->parent);
232
233 if (child->ptrace & PT_SEIZED)
234 task_set_jobctl_pending(child, JOBCTL_TRAP_STOP);
235 else
236 sigaddset(&child->pending.signal, SIGSTOP);
237
238 set_tsk_thread_flag(child, TIF_SIGPENDING);
239 }
240}
241
242
243
244
245
246
247
248static inline void ptrace_release_task(struct task_struct *task)
249{
250 BUG_ON(!list_empty(&task->ptraced));
251 ptrace_unlink(task);
252 BUG_ON(!list_empty(&task->ptrace_entry));
253}
254
255#ifndef force_successful_syscall_return
256
257
258
259
260
261
262
263
264
265
266
267#define force_successful_syscall_return() do { } while (0)
268#endif
269
270#ifndef is_syscall_success
271
272
273
274
275
276#define is_syscall_success(regs) (!IS_ERR_VALUE((unsigned long)(regs_return_value(regs))))
277#endif
278
279
280
281
282
283
284
285
286
287#ifndef arch_has_single_step
288
289
290
291
292
293
294
295
296
297#define arch_has_single_step() (0)
298
299
300
301
302
303
304
305
306
307
308static inline void user_enable_single_step(struct task_struct *task)
309{
310 BUG();
311}
312
313
314
315
316
317
318
319
320
321
322static inline void user_disable_single_step(struct task_struct *task)
323{
324}
325#else
326extern void user_enable_single_step(struct task_struct *);
327extern void user_disable_single_step(struct task_struct *);
328#endif
329
330#ifndef arch_has_block_step
331
332
333
334
335
336
337
338
339
340#define arch_has_block_step() (0)
341
342
343
344
345
346
347
348
349
350
351static inline void user_enable_block_step(struct task_struct *task)
352{
353 BUG();
354}
355#else
356extern void user_enable_block_step(struct task_struct *);
357#endif
358
359#ifdef ARCH_HAS_USER_SINGLE_STEP_INFO
360extern void user_single_step_siginfo(struct task_struct *tsk,
361 struct pt_regs *regs, siginfo_t *info);
362#else
363static inline void user_single_step_siginfo(struct task_struct *tsk,
364 struct pt_regs *regs, siginfo_t *info)
365{
366 memset(info, 0, sizeof(*info));
367 info->si_signo = SIGTRAP;
368}
369#endif
370
371#ifndef arch_ptrace_stop_needed
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386#define arch_ptrace_stop_needed(code, info) (0)
387#endif
388
389#ifndef arch_ptrace_stop
390
391
392
393
394
395
396
397
398
399
400
401
402
403#define arch_ptrace_stop(code, info) do { } while (0)
404#endif
405
406extern int task_current_syscall(struct task_struct *target, long *callno,
407 unsigned long args[6], unsigned int maxargs,
408 unsigned long *sp, unsigned long *pc);
409
410#ifdef CONFIG_HAVE_HW_BREAKPOINT
411extern int ptrace_get_breakpoints(struct task_struct *tsk);
412extern void ptrace_put_breakpoints(struct task_struct *tsk);
413#else
414static inline void ptrace_put_breakpoints(struct task_struct *tsk) { }
415#endif
416
417#endif
418
419#endif
420