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>
21 #include <linux/audit.h>
22 #include <linux/pid_namespace.h>
23 #include <linux/syscalls.h>
25 #include <asm/pgtable.h>
26 #include <asm/uaccess.h>
30 * Initialize a new task whose father had been ptraced.
32 * Called from copy_process().
34 void ptrace_fork(struct task_struct
*child
, unsigned long clone_flags
)
36 arch_ptrace_fork(child
, clone_flags
);
40 * ptrace a task: make the debugger its new parent and
41 * move it to the ptrace list.
43 * Must be called with the tasklist lock write-held.
45 void __ptrace_link(struct task_struct
*child
, struct task_struct
*new_parent
)
47 BUG_ON(!list_empty(&child
->ptrace_entry
));
48 list_add(&child
->ptrace_entry
, &new_parent
->ptraced
);
49 child
->parent
= new_parent
;
53 * Turn a tracing stop into a normal stop now, since with no tracer there
54 * would be no way to wake it up with SIGCONT or SIGKILL. If there was a
55 * signal sent that would resume the child, but didn't because it was in
56 * TASK_TRACED, resume it now.
57 * Requires that irqs be disabled.
59 static void ptrace_untrace(struct task_struct
*child
)
61 spin_lock(&child
->sighand
->siglock
);
62 if (task_is_traced(child
)) {
63 if (child
->signal
->flags
& SIGNAL_STOP_STOPPED
) {
64 __set_task_state(child
, TASK_STOPPED
);
66 signal_wake_up(child
, 1);
69 spin_unlock(&child
->sighand
->siglock
);
73 * unptrace a task: move it back to its original parent and
74 * remove it from the ptrace list.
76 * Must be called with the tasklist lock write-held.
78 void __ptrace_unlink(struct task_struct
*child
)
80 BUG_ON(!child
->ptrace
);
83 child
->parent
= child
->real_parent
;
84 list_del_init(&child
->ptrace_entry
);
86 arch_ptrace_untrace(child
);
87 if (task_is_traced(child
))
88 ptrace_untrace(child
);
92 * Check that we have indeed attached to the thing..
94 int ptrace_check_attach(struct task_struct
*child
, int kill
)
99 * We take the read lock around doing both checks to close a
100 * possible race where someone else was tracing our child and
101 * detached between these two checks. After this locked check,
102 * we are sure that this is our traced child and that can only
103 * be changed by us so it's not changing right after this.
105 read_lock(&tasklist_lock
);
106 if ((child
->ptrace
& PT_PTRACED
) && child
->parent
== current
) {
109 * child->sighand can't be NULL, release_task()
110 * does ptrace_unlink() before __exit_signal().
112 spin_lock_irq(&child
->sighand
->siglock
);
113 if (task_is_stopped(child
))
114 child
->state
= TASK_TRACED
;
115 else if (!task_is_traced(child
) && !kill
)
117 spin_unlock_irq(&child
->sighand
->siglock
);
119 read_unlock(&tasklist_lock
);
122 ret
= wait_task_inactive(child
, TASK_TRACED
) ? 0 : -ESRCH
;
124 /* All systems go.. */
128 int __ptrace_may_access(struct task_struct
*task
, unsigned int mode
)
130 const struct cred
*cred
= current_cred(), *tcred
;
132 /* May we inspect the given task?
133 * This check is used both for attaching with ptrace
134 * and for allowing access to sensitive information in /proc.
136 * ptrace_attach denies several cases that /proc allows
137 * because setting up the necessary parent/child relationship
138 * or halting the specified task is impossible.
141 /* Don't let security modules deny introspection */
145 tcred
= __task_cred(task
);
146 if ((cred
->uid
!= tcred
->euid
||
147 cred
->uid
!= tcred
->suid
||
148 cred
->uid
!= tcred
->uid
||
149 cred
->gid
!= tcred
->egid
||
150 cred
->gid
!= tcred
->sgid
||
151 cred
->gid
!= tcred
->gid
) &&
152 !capable(CAP_SYS_PTRACE
)) {
159 dumpable
= get_dumpable(task
->mm
);
160 if (!dumpable
&& !capable(CAP_SYS_PTRACE
))
163 return security_ptrace_may_access(task
, mode
);
166 bool ptrace_may_access(struct task_struct
*task
, unsigned int mode
)
170 err
= __ptrace_may_access(task
, mode
);
172 return (!err
? true : false);
175 int ptrace_attach(struct task_struct
*task
)
183 if (same_thread_group(task
, current
))
186 /* Protect exec's credential calculations against our interference;
187 * SUID, SGID and LSM creds get determined differently under ptrace.
189 retval
= mutex_lock_interruptible(¤t
->cred_exec_mutex
);
198 * We want to hold both the task-lock and the
199 * tasklist_lock for writing at the same time.
200 * But that's against the rules (tasklist_lock
201 * is taken for reading by interrupts on other
202 * cpu's that may have task_lock).
205 if (!write_trylock_irqsave(&tasklist_lock
, flags
)) {
209 } while (!write_can_lock(&tasklist_lock
));
215 /* the same process cannot be attached many times */
216 if (task
->ptrace
& PT_PTRACED
)
218 retval
= __ptrace_may_access(task
, PTRACE_MODE_ATTACH
);
223 task
->ptrace
|= PT_PTRACED
;
224 if (capable(CAP_SYS_PTRACE
))
225 task
->ptrace
|= PT_PTRACE_CAP
;
227 __ptrace_link(task
, current
);
229 send_sig_info(SIGSTOP
, SEND_SIG_FORCED
, task
);
231 write_unlock_irqrestore(&tasklist_lock
, flags
);
233 mutex_unlock(¤t
->cred_exec_mutex
);
238 static inline void __ptrace_detach(struct task_struct
*child
, unsigned int data
)
240 child
->exit_code
= data
;
241 /* .. re-parent .. */
242 __ptrace_unlink(child
);
243 /* .. and wake it up. */
244 if (child
->exit_state
!= EXIT_ZOMBIE
)
245 wake_up_process(child
);
248 int ptrace_detach(struct task_struct
*child
, unsigned int data
)
250 if (!valid_signal(data
))
253 /* Architecture-specific hardware disable .. */
254 ptrace_disable(child
);
255 clear_tsk_thread_flag(child
, TIF_SYSCALL_TRACE
);
257 write_lock_irq(&tasklist_lock
);
258 /* protect against de_thread()->release_task() */
260 __ptrace_detach(child
, data
);
261 write_unlock_irq(&tasklist_lock
);
266 int ptrace_readdata(struct task_struct
*tsk
, unsigned long src
, char __user
*dst
, int len
)
272 int this_len
, retval
;
274 this_len
= (len
> sizeof(buf
)) ? sizeof(buf
) : len
;
275 retval
= access_process_vm(tsk
, src
, buf
, this_len
, 0);
281 if (copy_to_user(dst
, buf
, retval
))
291 int ptrace_writedata(struct task_struct
*tsk
, char __user
*src
, unsigned long dst
, int len
)
297 int this_len
, retval
;
299 this_len
= (len
> sizeof(buf
)) ? sizeof(buf
) : len
;
300 if (copy_from_user(buf
, src
, this_len
))
302 retval
= access_process_vm(tsk
, dst
, buf
, this_len
, 1);
316 static int ptrace_setoptions(struct task_struct
*child
, long data
)
318 child
->ptrace
&= ~PT_TRACE_MASK
;
320 if (data
& PTRACE_O_TRACESYSGOOD
)
321 child
->ptrace
|= PT_TRACESYSGOOD
;
323 if (data
& PTRACE_O_TRACEFORK
)
324 child
->ptrace
|= PT_TRACE_FORK
;
326 if (data
& PTRACE_O_TRACEVFORK
)
327 child
->ptrace
|= PT_TRACE_VFORK
;
329 if (data
& PTRACE_O_TRACECLONE
)
330 child
->ptrace
|= PT_TRACE_CLONE
;
332 if (data
& PTRACE_O_TRACEEXEC
)
333 child
->ptrace
|= PT_TRACE_EXEC
;
335 if (data
& PTRACE_O_TRACEVFORKDONE
)
336 child
->ptrace
|= PT_TRACE_VFORK_DONE
;
338 if (data
& PTRACE_O_TRACEEXIT
)
339 child
->ptrace
|= PT_TRACE_EXIT
;
341 return (data
& ~PTRACE_O_MASK
) ? -EINVAL
: 0;
344 static int ptrace_getsiginfo(struct task_struct
*child
, siginfo_t
*info
)
348 read_lock(&tasklist_lock
);
349 if (likely(child
->sighand
!= NULL
)) {
351 spin_lock_irq(&child
->sighand
->siglock
);
352 if (likely(child
->last_siginfo
!= NULL
)) {
353 *info
= *child
->last_siginfo
;
356 spin_unlock_irq(&child
->sighand
->siglock
);
358 read_unlock(&tasklist_lock
);
362 static int ptrace_setsiginfo(struct task_struct
*child
, const siginfo_t
*info
)
366 read_lock(&tasklist_lock
);
367 if (likely(child
->sighand
!= NULL
)) {
369 spin_lock_irq(&child
->sighand
->siglock
);
370 if (likely(child
->last_siginfo
!= NULL
)) {
371 *child
->last_siginfo
= *info
;
374 spin_unlock_irq(&child
->sighand
->siglock
);
376 read_unlock(&tasklist_lock
);
381 #ifdef PTRACE_SINGLESTEP
382 #define is_singlestep(request) ((request) == PTRACE_SINGLESTEP)
384 #define is_singlestep(request) 0
387 #ifdef PTRACE_SINGLEBLOCK
388 #define is_singleblock(request) ((request) == PTRACE_SINGLEBLOCK)
390 #define is_singleblock(request) 0
394 #define is_sysemu_singlestep(request) ((request) == PTRACE_SYSEMU_SINGLESTEP)
396 #define is_sysemu_singlestep(request) 0
399 static int ptrace_resume(struct task_struct
*child
, long request
, long data
)
401 if (!valid_signal(data
))
404 if (request
== PTRACE_SYSCALL
)
405 set_tsk_thread_flag(child
, TIF_SYSCALL_TRACE
);
407 clear_tsk_thread_flag(child
, TIF_SYSCALL_TRACE
);
409 #ifdef TIF_SYSCALL_EMU
410 if (request
== PTRACE_SYSEMU
|| request
== PTRACE_SYSEMU_SINGLESTEP
)
411 set_tsk_thread_flag(child
, TIF_SYSCALL_EMU
);
413 clear_tsk_thread_flag(child
, TIF_SYSCALL_EMU
);
416 if (is_singleblock(request
)) {
417 if (unlikely(!arch_has_block_step()))
419 user_enable_block_step(child
);
420 } else if (is_singlestep(request
) || is_sysemu_singlestep(request
)) {
421 if (unlikely(!arch_has_single_step()))
423 user_enable_single_step(child
);
426 user_disable_single_step(child
);
428 child
->exit_code
= data
;
429 wake_up_process(child
);
434 int ptrace_request(struct task_struct
*child
, long request
,
435 long addr
, long data
)
441 case PTRACE_PEEKTEXT
:
442 case PTRACE_PEEKDATA
:
443 return generic_ptrace_peekdata(child
, addr
, data
);
444 case PTRACE_POKETEXT
:
445 case PTRACE_POKEDATA
:
446 return generic_ptrace_pokedata(child
, addr
, data
);
448 #ifdef PTRACE_OLDSETOPTIONS
449 case PTRACE_OLDSETOPTIONS
:
451 case PTRACE_SETOPTIONS
:
452 ret
= ptrace_setoptions(child
, data
);
454 case PTRACE_GETEVENTMSG
:
455 ret
= put_user(child
->ptrace_message
, (unsigned long __user
*) data
);
458 case PTRACE_GETSIGINFO
:
459 ret
= ptrace_getsiginfo(child
, &siginfo
);
461 ret
= copy_siginfo_to_user((siginfo_t __user
*) data
,
465 case PTRACE_SETSIGINFO
:
466 if (copy_from_user(&siginfo
, (siginfo_t __user
*) data
,
470 ret
= ptrace_setsiginfo(child
, &siginfo
);
473 case PTRACE_DETACH
: /* detach a process that was attached. */
474 ret
= ptrace_detach(child
, data
);
477 #ifdef PTRACE_SINGLESTEP
478 case PTRACE_SINGLESTEP
:
480 #ifdef PTRACE_SINGLEBLOCK
481 case PTRACE_SINGLEBLOCK
:
485 case PTRACE_SYSEMU_SINGLESTEP
:
489 return ptrace_resume(child
, request
, data
);
492 if (child
->exit_state
) /* already dead */
494 return ptrace_resume(child
, request
, SIGKILL
);
504 * ptrace_traceme -- helper for PTRACE_TRACEME
506 * Performs checks and sets PT_PTRACED.
507 * Should be used by all ptrace implementations for PTRACE_TRACEME.
509 int ptrace_traceme(void)
514 * Are we already being traced?
518 if (!(current
->ptrace
& PT_PTRACED
)) {
520 * See ptrace_attach() comments about the locking here.
523 if (!write_trylock_irqsave(&tasklist_lock
, flags
)) {
524 task_unlock(current
);
527 } while (!write_can_lock(&tasklist_lock
));
531 ret
= security_ptrace_traceme(current
->parent
);
534 * Set the ptrace bit in the process ptrace flags.
535 * Then link us on our parent's ptraced list.
538 current
->ptrace
|= PT_PTRACED
;
539 __ptrace_link(current
, current
->real_parent
);
542 write_unlock_irqrestore(&tasklist_lock
, flags
);
544 task_unlock(current
);
549 * ptrace_get_task_struct -- grab a task struct reference for ptrace
550 * @pid: process id to grab a task_struct reference of
552 * This function is a helper for ptrace implementations. It checks
553 * permissions and then grabs a task struct for use of the actual
554 * ptrace implementation.
556 * Returns the task_struct for @pid or an ERR_PTR() on failure.
558 struct task_struct
*ptrace_get_task_struct(pid_t pid
)
560 struct task_struct
*child
;
562 read_lock(&tasklist_lock
);
563 child
= find_task_by_vpid(pid
);
565 get_task_struct(child
);
567 read_unlock(&tasklist_lock
);
569 return ERR_PTR(-ESRCH
);
573 #ifndef arch_ptrace_attach
574 #define arch_ptrace_attach(child) do { } while (0)
577 SYSCALL_DEFINE4(ptrace
, long, request
, long, pid
, long, addr
, long, data
)
579 struct task_struct
*child
;
583 * This lock_kernel fixes a subtle race with suid exec
586 if (request
== PTRACE_TRACEME
) {
587 ret
= ptrace_traceme();
589 arch_ptrace_attach(current
);
593 child
= ptrace_get_task_struct(pid
);
595 ret
= PTR_ERR(child
);
599 if (request
== PTRACE_ATTACH
) {
600 ret
= ptrace_attach(child
);
602 * Some architectures need to do book-keeping after
606 arch_ptrace_attach(child
);
607 goto out_put_task_struct
;
610 ret
= ptrace_check_attach(child
, request
== PTRACE_KILL
);
612 goto out_put_task_struct
;
614 ret
= arch_ptrace(child
, request
, addr
, data
);
616 goto out_put_task_struct
;
619 put_task_struct(child
);
625 int generic_ptrace_peekdata(struct task_struct
*tsk
, long addr
, long data
)
630 copied
= access_process_vm(tsk
, addr
, &tmp
, sizeof(tmp
), 0);
631 if (copied
!= sizeof(tmp
))
633 return put_user(tmp
, (unsigned long __user
*)data
);
636 int generic_ptrace_pokedata(struct task_struct
*tsk
, long addr
, long data
)
640 copied
= access_process_vm(tsk
, addr
, &data
, sizeof(data
), 1);
641 return (copied
== sizeof(data
)) ? 0 : -EIO
;
644 #if defined CONFIG_COMPAT
645 #include <linux/compat.h>
647 int compat_ptrace_request(struct task_struct
*child
, compat_long_t request
,
648 compat_ulong_t addr
, compat_ulong_t data
)
650 compat_ulong_t __user
*datap
= compat_ptr(data
);
656 case PTRACE_PEEKTEXT
:
657 case PTRACE_PEEKDATA
:
658 ret
= access_process_vm(child
, addr
, &word
, sizeof(word
), 0);
659 if (ret
!= sizeof(word
))
662 ret
= put_user(word
, datap
);
665 case PTRACE_POKETEXT
:
666 case PTRACE_POKEDATA
:
667 ret
= access_process_vm(child
, addr
, &data
, sizeof(data
), 1);
668 ret
= (ret
!= sizeof(data
) ? -EIO
: 0);
671 case PTRACE_GETEVENTMSG
:
672 ret
= put_user((compat_ulong_t
) child
->ptrace_message
, datap
);
675 case PTRACE_GETSIGINFO
:
676 ret
= ptrace_getsiginfo(child
, &siginfo
);
678 ret
= copy_siginfo_to_user32(
679 (struct compat_siginfo __user
*) datap
,
683 case PTRACE_SETSIGINFO
:
684 memset(&siginfo
, 0, sizeof siginfo
);
685 if (copy_siginfo_from_user32(
686 &siginfo
, (struct compat_siginfo __user
*) datap
))
689 ret
= ptrace_setsiginfo(child
, &siginfo
);
693 ret
= ptrace_request(child
, request
, addr
, data
);
699 asmlinkage
long compat_sys_ptrace(compat_long_t request
, compat_long_t pid
,
700 compat_long_t addr
, compat_long_t data
)
702 struct task_struct
*child
;
706 * This lock_kernel fixes a subtle race with suid exec
709 if (request
== PTRACE_TRACEME
) {
710 ret
= ptrace_traceme();
714 child
= ptrace_get_task_struct(pid
);
716 ret
= PTR_ERR(child
);
720 if (request
== PTRACE_ATTACH
) {
721 ret
= ptrace_attach(child
);
723 * Some architectures need to do book-keeping after
727 arch_ptrace_attach(child
);
728 goto out_put_task_struct
;
731 ret
= ptrace_check_attach(child
, request
== PTRACE_KILL
);
733 ret
= compat_arch_ptrace(child
, request
, addr
, data
);
736 put_task_struct(child
);
741 #endif /* CONFIG_COMPAT */