2 * linux/kernel/ptrace.c
4 * (C) Copyright 1999 Linus Torvalds
6 * Common interfaces for "ptrace()" which we do not want
7 * to continually duplicate across every architecture.
10 #include <linux/capability.h>
11 #include <linux/module.h>
12 #include <linux/sched.h>
13 #include <linux/errno.h>
15 #include <linux/highmem.h>
16 #include <linux/pagemap.h>
17 #include <linux/smp_lock.h>
18 #include <linux/ptrace.h>
19 #include <linux/security.h>
20 #include <linux/signal.h>
22 #include <asm/pgtable.h>
23 #include <asm/uaccess.h>
26 * ptrace a task: make the debugger its new parent and
27 * move it to the ptrace list.
29 * Must be called with the tasklist lock write-held.
31 void __ptrace_link(struct task_struct
*child
, struct task_struct
*new_parent
)
33 BUG_ON(!list_empty(&child
->ptrace_list
));
34 if (child
->parent
== new_parent
)
36 list_add(&child
->ptrace_list
, &child
->parent
->ptrace_children
);
38 child
->parent
= new_parent
;
43 * Turn a tracing stop into a normal stop now, since with no tracer there
44 * would be no way to wake it up with SIGCONT or SIGKILL. If there was a
45 * signal sent that would resume the child, but didn't because it was in
46 * TASK_TRACED, resume it now.
47 * Requires that irqs be disabled.
49 void ptrace_untrace(struct task_struct
*child
)
51 spin_lock(&child
->sighand
->siglock
);
52 if (child
->state
== TASK_TRACED
) {
53 if (child
->signal
->flags
& SIGNAL_STOP_STOPPED
) {
54 child
->state
= TASK_STOPPED
;
56 signal_wake_up(child
, 1);
59 spin_unlock(&child
->sighand
->siglock
);
63 * unptrace a task: move it back to its original parent and
64 * remove it from the ptrace list.
66 * Must be called with the tasklist lock write-held.
68 void __ptrace_unlink(struct task_struct
*child
)
70 BUG_ON(!child
->ptrace
);
73 if (!list_empty(&child
->ptrace_list
)) {
74 list_del_init(&child
->ptrace_list
);
76 child
->parent
= child
->real_parent
;
80 if (child
->state
== TASK_TRACED
)
81 ptrace_untrace(child
);
85 * Check that we have indeed attached to the thing..
87 int ptrace_check_attach(struct task_struct
*child
, int kill
)
92 * We take the read lock around doing both checks to close a
93 * possible race where someone else was tracing our child and
94 * detached between these two checks. After this locked check,
95 * we are sure that this is our traced child and that can only
96 * be changed by us so it's not changing right after this.
98 read_lock(&tasklist_lock
);
99 if ((child
->ptrace
& PT_PTRACED
) && child
->parent
== current
&&
100 (!(child
->ptrace
& PT_ATTACHED
) || child
->real_parent
!= current
)
101 && child
->signal
!= NULL
) {
103 spin_lock_irq(&child
->sighand
->siglock
);
104 if (child
->state
== TASK_STOPPED
) {
105 child
->state
= TASK_TRACED
;
106 } else if (child
->state
!= TASK_TRACED
&& !kill
) {
109 spin_unlock_irq(&child
->sighand
->siglock
);
111 read_unlock(&tasklist_lock
);
114 wait_task_inactive(child
);
117 /* All systems go.. */
121 static int may_attach(struct task_struct
*task
)
123 /* May we inspect the given task?
124 * This check is used both for attaching with ptrace
125 * and for allowing access to sensitive information in /proc.
127 * ptrace_attach denies several cases that /proc allows
128 * because setting up the necessary parent/child relationship
129 * or halting the specified task is impossible.
132 /* Don't let security modules deny introspection */
135 if (((current
->uid
!= task
->euid
) ||
136 (current
->uid
!= task
->suid
) ||
137 (current
->uid
!= task
->uid
) ||
138 (current
->gid
!= task
->egid
) ||
139 (current
->gid
!= task
->sgid
) ||
140 (current
->gid
!= task
->gid
)) && !capable(CAP_SYS_PTRACE
))
144 dumpable
= task
->mm
->dumpable
;
145 if (!dumpable
&& !capable(CAP_SYS_PTRACE
))
148 return security_ptrace(current
, task
);
151 int ptrace_may_attach(struct task_struct
*task
)
155 err
= may_attach(task
);
160 int ptrace_attach(struct task_struct
*task
)
167 if (task
->tgid
== current
->tgid
)
174 * We want to hold both the task-lock and the
175 * tasklist_lock for writing at the same time.
176 * But that's against the rules (tasklist_lock
177 * is taken for reading by interrupts on other
178 * cpu's that may have task_lock).
182 if (!write_trylock(&tasklist_lock
)) {
187 } while (!write_can_lock(&tasklist_lock
));
193 /* the same process cannot be attached many times */
194 if (task
->ptrace
& PT_PTRACED
)
196 retval
= may_attach(task
);
201 task
->ptrace
|= PT_PTRACED
| ((task
->real_parent
!= current
)
203 if (capable(CAP_SYS_PTRACE
))
204 task
->ptrace
|= PT_PTRACE_CAP
;
206 __ptrace_link(task
, current
);
208 force_sig_specific(SIGSTOP
, task
);
211 write_unlock_irq(&tasklist_lock
);
217 static inline void __ptrace_detach(struct task_struct
*child
, unsigned int data
)
219 child
->exit_code
= data
;
220 /* .. re-parent .. */
221 __ptrace_unlink(child
);
222 /* .. and wake it up. */
223 if (child
->exit_state
!= EXIT_ZOMBIE
)
224 wake_up_process(child
);
227 int ptrace_detach(struct task_struct
*child
, unsigned int data
)
229 if (!valid_signal(data
))
232 /* Architecture-specific hardware disable .. */
233 ptrace_disable(child
);
235 write_lock_irq(&tasklist_lock
);
236 /* protect against de_thread()->release_task() */
238 __ptrace_detach(child
, data
);
239 write_unlock_irq(&tasklist_lock
);
244 int ptrace_readdata(struct task_struct
*tsk
, unsigned long src
, char __user
*dst
, int len
)
250 int this_len
, retval
;
252 this_len
= (len
> sizeof(buf
)) ? sizeof(buf
) : len
;
253 retval
= access_process_vm(tsk
, src
, buf
, this_len
, 0);
259 if (copy_to_user(dst
, buf
, retval
))
269 int ptrace_writedata(struct task_struct
*tsk
, char __user
*src
, unsigned long dst
, int len
)
275 int this_len
, retval
;
277 this_len
= (len
> sizeof(buf
)) ? sizeof(buf
) : len
;
278 if (copy_from_user(buf
, src
, this_len
))
280 retval
= access_process_vm(tsk
, dst
, buf
, this_len
, 1);
294 static int ptrace_setoptions(struct task_struct
*child
, long data
)
296 child
->ptrace
&= ~PT_TRACE_MASK
;
298 if (data
& PTRACE_O_TRACESYSGOOD
)
299 child
->ptrace
|= PT_TRACESYSGOOD
;
301 if (data
& PTRACE_O_TRACEFORK
)
302 child
->ptrace
|= PT_TRACE_FORK
;
304 if (data
& PTRACE_O_TRACEVFORK
)
305 child
->ptrace
|= PT_TRACE_VFORK
;
307 if (data
& PTRACE_O_TRACECLONE
)
308 child
->ptrace
|= PT_TRACE_CLONE
;
310 if (data
& PTRACE_O_TRACEEXEC
)
311 child
->ptrace
|= PT_TRACE_EXEC
;
313 if (data
& PTRACE_O_TRACEVFORKDONE
)
314 child
->ptrace
|= PT_TRACE_VFORK_DONE
;
316 if (data
& PTRACE_O_TRACEEXIT
)
317 child
->ptrace
|= PT_TRACE_EXIT
;
319 return (data
& ~PTRACE_O_MASK
) ? -EINVAL
: 0;
322 static int ptrace_getsiginfo(struct task_struct
*child
, siginfo_t __user
* data
)
327 read_lock(&tasklist_lock
);
328 if (likely(child
->sighand
!= NULL
)) {
330 spin_lock_irq(&child
->sighand
->siglock
);
331 if (likely(child
->last_siginfo
!= NULL
)) {
332 lastinfo
= *child
->last_siginfo
;
335 spin_unlock_irq(&child
->sighand
->siglock
);
337 read_unlock(&tasklist_lock
);
339 return copy_siginfo_to_user(data
, &lastinfo
);
343 static int ptrace_setsiginfo(struct task_struct
*child
, siginfo_t __user
* data
)
348 if (copy_from_user(&newinfo
, data
, sizeof (siginfo_t
)))
351 read_lock(&tasklist_lock
);
352 if (likely(child
->sighand
!= NULL
)) {
354 spin_lock_irq(&child
->sighand
->siglock
);
355 if (likely(child
->last_siginfo
!= NULL
)) {
356 *child
->last_siginfo
= newinfo
;
359 spin_unlock_irq(&child
->sighand
->siglock
);
361 read_unlock(&tasklist_lock
);
365 int ptrace_request(struct task_struct
*child
, long request
,
366 long addr
, long data
)
371 #ifdef PTRACE_OLDSETOPTIONS
372 case PTRACE_OLDSETOPTIONS
:
374 case PTRACE_SETOPTIONS
:
375 ret
= ptrace_setoptions(child
, data
);
377 case PTRACE_GETEVENTMSG
:
378 ret
= put_user(child
->ptrace_message
, (unsigned long __user
*) data
);
380 case PTRACE_GETSIGINFO
:
381 ret
= ptrace_getsiginfo(child
, (siginfo_t __user
*) data
);
383 case PTRACE_SETSIGINFO
:
384 ret
= ptrace_setsiginfo(child
, (siginfo_t __user
*) data
);
394 * ptrace_traceme -- helper for PTRACE_TRACEME
396 * Performs checks and sets PT_PTRACED.
397 * Should be used by all ptrace implementations for PTRACE_TRACEME.
399 int ptrace_traceme(void)
404 * Are we already being traced?
407 if (!(current
->ptrace
& PT_PTRACED
)) {
408 ret
= security_ptrace(current
->parent
, current
);
410 * Set the ptrace bit in the process ptrace flags.
413 current
->ptrace
|= PT_PTRACED
;
415 task_unlock(current
);
420 * ptrace_get_task_struct -- grab a task struct reference for ptrace
421 * @pid: process id to grab a task_struct reference of
423 * This function is a helper for ptrace implementations. It checks
424 * permissions and then grabs a task struct for use of the actual
425 * ptrace implementation.
427 * Returns the task_struct for @pid or an ERR_PTR() on failure.
429 struct task_struct
*ptrace_get_task_struct(pid_t pid
)
431 struct task_struct
*child
;
434 * Tracing init is not allowed.
437 return ERR_PTR(-EPERM
);
439 read_lock(&tasklist_lock
);
440 child
= find_task_by_pid(pid
);
442 get_task_struct(child
);
444 read_unlock(&tasklist_lock
);
446 return ERR_PTR(-ESRCH
);
450 #ifndef __ARCH_SYS_PTRACE
451 asmlinkage
long sys_ptrace(long request
, long pid
, long addr
, long data
)
453 struct task_struct
*child
;
457 * This lock_kernel fixes a subtle race with suid exec
460 if (request
== PTRACE_TRACEME
) {
461 ret
= ptrace_traceme();
465 child
= ptrace_get_task_struct(pid
);
467 ret
= PTR_ERR(child
);
471 if (request
== PTRACE_ATTACH
) {
472 ret
= ptrace_attach(child
);
473 goto out_put_task_struct
;
476 ret
= ptrace_check_attach(child
, request
== PTRACE_KILL
);
478 goto out_put_task_struct
;
480 ret
= arch_ptrace(child
, request
, addr
, data
);
482 goto out_put_task_struct
;
485 put_task_struct(child
);
490 #endif /* __ARCH_SYS_PTRACE */