KEYS: add missing permission check for request_key() destination
[linux/fpc-iii.git] / kernel / ptrace.c
blob96a418e507e6e140e645498bdbc69bfd6180a046
1 /*
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.
8 */
10 #include <linux/capability.h>
11 #include <linux/export.h>
12 #include <linux/sched.h>
13 #include <linux/errno.h>
14 #include <linux/mm.h>
15 #include <linux/highmem.h>
16 #include <linux/pagemap.h>
17 #include <linux/ptrace.h>
18 #include <linux/security.h>
19 #include <linux/signal.h>
20 #include <linux/uio.h>
21 #include <linux/audit.h>
22 #include <linux/pid_namespace.h>
23 #include <linux/syscalls.h>
24 #include <linux/uaccess.h>
25 #include <linux/regset.h>
26 #include <linux/hw_breakpoint.h>
27 #include <linux/cn_proc.h>
28 #include <linux/compat.h>
31 * Access another process' address space via ptrace.
32 * Source/target buffer must be kernel space,
33 * Do not walk the page table directly, use get_user_pages
35 int ptrace_access_vm(struct task_struct *tsk, unsigned long addr,
36 void *buf, int len, int write)
38 struct mm_struct *mm;
39 int ret;
41 mm = get_task_mm(tsk);
42 if (!mm)
43 return 0;
45 if (!tsk->ptrace ||
46 (current != tsk->parent) ||
47 ((get_dumpable(mm) != SUID_DUMP_USER) &&
48 !ptracer_capable(tsk, mm->user_ns))) {
49 mmput(mm);
50 return 0;
53 ret = __access_remote_vm(tsk, mm, addr, buf, len, write);
54 mmput(mm);
56 return ret;
60 static int ptrace_trapping_sleep_fn(void *flags)
62 schedule();
63 return 0;
66 void __ptrace_link(struct task_struct *child, struct task_struct *new_parent,
67 const struct cred *ptracer_cred)
69 BUG_ON(!list_empty(&child->ptrace_entry));
70 list_add(&child->ptrace_entry, &new_parent->ptraced);
71 child->parent = new_parent;
72 child->ptracer_cred = get_cred(ptracer_cred);
76 * ptrace a task: make the debugger its new parent and
77 * move it to the ptrace list.
79 * Must be called with the tasklist lock write-held.
81 static void ptrace_link(struct task_struct *child, struct task_struct *new_parent)
83 rcu_read_lock();
84 __ptrace_link(child, new_parent, __task_cred(new_parent));
85 rcu_read_unlock();
88 /**
89 * __ptrace_unlink - unlink ptracee and restore its execution state
90 * @child: ptracee to be unlinked
92 * Remove @child from the ptrace list, move it back to the original parent,
93 * and restore the execution state so that it conforms to the group stop
94 * state.
96 * Unlinking can happen via two paths - explicit PTRACE_DETACH or ptracer
97 * exiting. For PTRACE_DETACH, unless the ptracee has been killed between
98 * ptrace_check_attach() and here, it's guaranteed to be in TASK_TRACED.
99 * If the ptracer is exiting, the ptracee can be in any state.
101 * After detach, the ptracee should be in a state which conforms to the
102 * group stop. If the group is stopped or in the process of stopping, the
103 * ptracee should be put into TASK_STOPPED; otherwise, it should be woken
104 * up from TASK_TRACED.
106 * If the ptracee is in TASK_TRACED and needs to be moved to TASK_STOPPED,
107 * it goes through TRACED -> RUNNING -> STOPPED transition which is similar
108 * to but in the opposite direction of what happens while attaching to a
109 * stopped task. However, in this direction, the intermediate RUNNING
110 * state is not hidden even from the current ptracer and if it immediately
111 * re-attaches and performs a WNOHANG wait(2), it may fail.
113 * CONTEXT:
114 * write_lock_irq(tasklist_lock)
116 void __ptrace_unlink(struct task_struct *child)
118 const struct cred *old_cred;
119 BUG_ON(!child->ptrace);
121 child->parent = child->real_parent;
122 list_del_init(&child->ptrace_entry);
123 old_cred = child->ptracer_cred;
124 child->ptracer_cred = NULL;
125 put_cred(old_cred);
127 spin_lock(&child->sighand->siglock);
128 child->ptrace = 0;
130 * Clear all pending traps and TRAPPING. TRAPPING should be
131 * cleared regardless of JOBCTL_STOP_PENDING. Do it explicitly.
133 task_clear_jobctl_pending(child, JOBCTL_TRAP_MASK);
134 task_clear_jobctl_trapping(child);
137 * Reinstate JOBCTL_STOP_PENDING if group stop is in effect and
138 * @child isn't dead.
140 if (!(child->flags & PF_EXITING) &&
141 (child->signal->flags & SIGNAL_STOP_STOPPED ||
142 child->signal->group_stop_count)) {
143 child->jobctl |= JOBCTL_STOP_PENDING;
146 * This is only possible if this thread was cloned by the
147 * traced task running in the stopped group, set the signal
148 * for the future reports.
149 * FIXME: we should change ptrace_init_task() to handle this
150 * case.
152 if (!(child->jobctl & JOBCTL_STOP_SIGMASK))
153 child->jobctl |= SIGSTOP;
157 * If transition to TASK_STOPPED is pending or in TASK_TRACED, kick
158 * @child in the butt. Note that @resume should be used iff @child
159 * is in TASK_TRACED; otherwise, we might unduly disrupt
160 * TASK_KILLABLE sleeps.
162 if (child->jobctl & JOBCTL_STOP_PENDING || task_is_traced(child))
163 ptrace_signal_wake_up(child, true);
165 spin_unlock(&child->sighand->siglock);
168 /* Ensure that nothing can wake it up, even SIGKILL */
169 static bool ptrace_freeze_traced(struct task_struct *task)
171 bool ret = false;
173 /* Lockless, nobody but us can set this flag */
174 if (task->jobctl & JOBCTL_LISTENING)
175 return ret;
177 spin_lock_irq(&task->sighand->siglock);
178 if (task_is_traced(task) && !__fatal_signal_pending(task)) {
179 task->state = __TASK_TRACED;
180 ret = true;
182 spin_unlock_irq(&task->sighand->siglock);
184 return ret;
187 static void ptrace_unfreeze_traced(struct task_struct *task)
189 if (task->state != __TASK_TRACED)
190 return;
192 WARN_ON(!task->ptrace || task->parent != current);
195 * PTRACE_LISTEN can allow ptrace_trap_notify to wake us up remotely.
196 * Recheck state under the lock to close this race.
198 spin_lock_irq(&task->sighand->siglock);
199 if (task->state == __TASK_TRACED) {
200 if (__fatal_signal_pending(task))
201 wake_up_state(task, __TASK_TRACED);
202 else
203 task->state = TASK_TRACED;
205 spin_unlock_irq(&task->sighand->siglock);
209 * ptrace_check_attach - check whether ptracee is ready for ptrace operation
210 * @child: ptracee to check for
211 * @ignore_state: don't check whether @child is currently %TASK_TRACED
213 * Check whether @child is being ptraced by %current and ready for further
214 * ptrace operations. If @ignore_state is %false, @child also should be in
215 * %TASK_TRACED state and on return the child is guaranteed to be traced
216 * and not executing. If @ignore_state is %true, @child can be in any
217 * state.
219 * CONTEXT:
220 * Grabs and releases tasklist_lock and @child->sighand->siglock.
222 * RETURNS:
223 * 0 on success, -ESRCH if %child is not ready.
225 static int ptrace_check_attach(struct task_struct *child, bool ignore_state)
227 int ret = -ESRCH;
230 * We take the read lock around doing both checks to close a
231 * possible race where someone else was tracing our child and
232 * detached between these two checks. After this locked check,
233 * we are sure that this is our traced child and that can only
234 * be changed by us so it's not changing right after this.
236 read_lock(&tasklist_lock);
237 if (child->ptrace && child->parent == current) {
238 WARN_ON(child->state == __TASK_TRACED);
240 * child->sighand can't be NULL, release_task()
241 * does ptrace_unlink() before __exit_signal().
243 if (ignore_state || ptrace_freeze_traced(child))
244 ret = 0;
246 read_unlock(&tasklist_lock);
248 if (!ret && !ignore_state) {
249 if (!wait_task_inactive(child, __TASK_TRACED)) {
251 * This can only happen if may_ptrace_stop() fails and
252 * ptrace_stop() changes ->state back to TASK_RUNNING,
253 * so we should not worry about leaking __TASK_TRACED.
255 WARN_ON(child->state == __TASK_TRACED);
256 ret = -ESRCH;
260 return ret;
263 static int ptrace_has_cap(struct user_namespace *ns, unsigned int mode)
265 if (mode & PTRACE_MODE_NOAUDIT)
266 return has_ns_capability_noaudit(current, ns, CAP_SYS_PTRACE);
267 else
268 return has_ns_capability(current, ns, CAP_SYS_PTRACE);
271 /* Returns 0 on success, -errno on denial. */
272 static int __ptrace_may_access(struct task_struct *task, unsigned int mode)
274 const struct cred *cred = current_cred(), *tcred;
275 struct mm_struct *mm;
276 kuid_t caller_uid;
277 kgid_t caller_gid;
279 if (!(mode & PTRACE_MODE_FSCREDS) == !(mode & PTRACE_MODE_REALCREDS)) {
280 WARN(1, "denying ptrace access check without PTRACE_MODE_*CREDS\n");
281 return -EPERM;
284 /* May we inspect the given task?
285 * This check is used both for attaching with ptrace
286 * and for allowing access to sensitive information in /proc.
288 * ptrace_attach denies several cases that /proc allows
289 * because setting up the necessary parent/child relationship
290 * or halting the specified task is impossible.
293 /* Don't let security modules deny introspection */
294 if (same_thread_group(task, current))
295 return 0;
296 rcu_read_lock();
297 if (mode & PTRACE_MODE_FSCREDS) {
298 caller_uid = cred->fsuid;
299 caller_gid = cred->fsgid;
300 } else {
302 * Using the euid would make more sense here, but something
303 * in userland might rely on the old behavior, and this
304 * shouldn't be a security problem since
305 * PTRACE_MODE_REALCREDS implies that the caller explicitly
306 * used a syscall that requests access to another process
307 * (and not a filesystem syscall to procfs).
309 caller_uid = cred->uid;
310 caller_gid = cred->gid;
312 tcred = __task_cred(task);
313 if (uid_eq(caller_uid, tcred->euid) &&
314 uid_eq(caller_uid, tcred->suid) &&
315 uid_eq(caller_uid, tcred->uid) &&
316 gid_eq(caller_gid, tcred->egid) &&
317 gid_eq(caller_gid, tcred->sgid) &&
318 gid_eq(caller_gid, tcred->gid))
319 goto ok;
320 if (ptrace_has_cap(tcred->user_ns, mode))
321 goto ok;
322 rcu_read_unlock();
323 return -EPERM;
325 rcu_read_unlock();
326 mm = task->mm;
327 if (mm &&
328 ((get_dumpable(mm) != SUID_DUMP_USER) &&
329 !ptrace_has_cap(mm->user_ns, mode)))
330 return -EPERM;
332 return security_ptrace_access_check(task, mode);
335 bool ptrace_may_access(struct task_struct *task, unsigned int mode)
337 int err;
338 task_lock(task);
339 err = __ptrace_may_access(task, mode);
340 task_unlock(task);
341 return !err;
344 static int ptrace_attach(struct task_struct *task, long request,
345 unsigned long addr,
346 unsigned long flags)
348 bool seize = (request == PTRACE_SEIZE);
349 int retval;
351 retval = -EIO;
352 if (seize) {
353 if (addr != 0)
354 goto out;
355 if (flags & ~(unsigned long)PTRACE_O_MASK)
356 goto out;
357 flags = PT_PTRACED | PT_SEIZED | (flags << PT_OPT_FLAG_SHIFT);
358 } else {
359 flags = PT_PTRACED;
362 audit_ptrace(task);
364 retval = -EPERM;
365 if (unlikely(task->flags & PF_KTHREAD))
366 goto out;
367 if (same_thread_group(task, current))
368 goto out;
371 * Protect exec's credential calculations against our interference;
372 * SUID, SGID and LSM creds get determined differently
373 * under ptrace.
375 retval = -ERESTARTNOINTR;
376 if (mutex_lock_interruptible(&task->signal->cred_guard_mutex))
377 goto out;
379 task_lock(task);
380 retval = __ptrace_may_access(task, PTRACE_MODE_ATTACH_REALCREDS);
381 task_unlock(task);
382 if (retval)
383 goto unlock_creds;
385 write_lock_irq(&tasklist_lock);
386 retval = -EPERM;
387 if (unlikely(task->exit_state))
388 goto unlock_tasklist;
389 if (task->ptrace)
390 goto unlock_tasklist;
392 if (seize)
393 flags |= PT_SEIZED;
394 task->ptrace = flags;
396 ptrace_link(task, current);
398 /* SEIZE doesn't trap tracee on attach */
399 if (!seize)
400 send_sig_info(SIGSTOP, SEND_SIG_FORCED, task);
402 spin_lock(&task->sighand->siglock);
405 * If the task is already STOPPED, set JOBCTL_TRAP_STOP and
406 * TRAPPING, and kick it so that it transits to TRACED. TRAPPING
407 * will be cleared if the child completes the transition or any
408 * event which clears the group stop states happens. We'll wait
409 * for the transition to complete before returning from this
410 * function.
412 * This hides STOPPED -> RUNNING -> TRACED transition from the
413 * attaching thread but a different thread in the same group can
414 * still observe the transient RUNNING state. IOW, if another
415 * thread's WNOHANG wait(2) on the stopped tracee races against
416 * ATTACH, the wait(2) may fail due to the transient RUNNING.
418 * The following task_is_stopped() test is safe as both transitions
419 * in and out of STOPPED are protected by siglock.
421 if (task_is_stopped(task) &&
422 task_set_jobctl_pending(task, JOBCTL_TRAP_STOP | JOBCTL_TRAPPING))
423 signal_wake_up_state(task, __TASK_STOPPED);
425 spin_unlock(&task->sighand->siglock);
427 retval = 0;
428 unlock_tasklist:
429 write_unlock_irq(&tasklist_lock);
430 unlock_creds:
431 mutex_unlock(&task->signal->cred_guard_mutex);
432 out:
433 if (!retval) {
434 wait_on_bit(&task->jobctl, JOBCTL_TRAPPING_BIT,
435 ptrace_trapping_sleep_fn, TASK_UNINTERRUPTIBLE);
436 proc_ptrace_connector(task, PTRACE_ATTACH);
439 return retval;
443 * ptrace_traceme -- helper for PTRACE_TRACEME
445 * Performs checks and sets PT_PTRACED.
446 * Should be used by all ptrace implementations for PTRACE_TRACEME.
448 static int ptrace_traceme(void)
450 int ret = -EPERM;
452 write_lock_irq(&tasklist_lock);
453 /* Are we already being traced? */
454 if (!current->ptrace) {
455 ret = security_ptrace_traceme(current->parent);
457 * Check PF_EXITING to ensure ->real_parent has not passed
458 * exit_ptrace(). Otherwise we don't report the error but
459 * pretend ->real_parent untraces us right after return.
461 if (!ret && !(current->real_parent->flags & PF_EXITING)) {
462 current->ptrace = PT_PTRACED;
463 ptrace_link(current, current->real_parent);
466 write_unlock_irq(&tasklist_lock);
468 return ret;
472 * Called with irqs disabled, returns true if childs should reap themselves.
474 static int ignoring_children(struct sighand_struct *sigh)
476 int ret;
477 spin_lock(&sigh->siglock);
478 ret = (sigh->action[SIGCHLD-1].sa.sa_handler == SIG_IGN) ||
479 (sigh->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT);
480 spin_unlock(&sigh->siglock);
481 return ret;
485 * Called with tasklist_lock held for writing.
486 * Unlink a traced task, and clean it up if it was a traced zombie.
487 * Return true if it needs to be reaped with release_task().
488 * (We can't call release_task() here because we already hold tasklist_lock.)
490 * If it's a zombie, our attachedness prevented normal parent notification
491 * or self-reaping. Do notification now if it would have happened earlier.
492 * If it should reap itself, return true.
494 * If it's our own child, there is no notification to do. But if our normal
495 * children self-reap, then this child was prevented by ptrace and we must
496 * reap it now, in that case we must also wake up sub-threads sleeping in
497 * do_wait().
499 static bool __ptrace_detach(struct task_struct *tracer, struct task_struct *p)
501 bool dead;
503 __ptrace_unlink(p);
505 if (p->exit_state != EXIT_ZOMBIE)
506 return false;
508 dead = !thread_group_leader(p);
510 if (!dead && thread_group_empty(p)) {
511 if (!same_thread_group(p->real_parent, tracer))
512 dead = do_notify_parent(p, p->exit_signal);
513 else if (ignoring_children(tracer->sighand)) {
514 __wake_up_parent(p, tracer);
515 dead = true;
518 /* Mark it as in the process of being reaped. */
519 if (dead)
520 p->exit_state = EXIT_DEAD;
521 return dead;
524 static int ptrace_detach(struct task_struct *child, unsigned int data)
526 bool dead = false;
528 if (!valid_signal(data))
529 return -EIO;
531 /* Architecture-specific hardware disable .. */
532 ptrace_disable(child);
533 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
535 write_lock_irq(&tasklist_lock);
537 * This child can be already killed. Make sure de_thread() or
538 * our sub-thread doing do_wait() didn't do release_task() yet.
540 if (child->ptrace) {
541 child->exit_code = data;
542 dead = __ptrace_detach(current, child);
544 write_unlock_irq(&tasklist_lock);
546 proc_ptrace_connector(child, PTRACE_DETACH);
547 if (unlikely(dead))
548 release_task(child);
550 return 0;
554 * Detach all tasks we were using ptrace on. Called with tasklist held
555 * for writing, and returns with it held too. But note it can release
556 * and reacquire the lock.
558 void exit_ptrace(struct task_struct *tracer)
559 __releases(&tasklist_lock)
560 __acquires(&tasklist_lock)
562 struct task_struct *p, *n;
563 LIST_HEAD(ptrace_dead);
565 if (likely(list_empty(&tracer->ptraced)))
566 return;
568 list_for_each_entry_safe(p, n, &tracer->ptraced, ptrace_entry) {
569 if (unlikely(p->ptrace & PT_EXITKILL))
570 send_sig_info(SIGKILL, SEND_SIG_FORCED, p);
572 if (__ptrace_detach(tracer, p))
573 list_add(&p->ptrace_entry, &ptrace_dead);
576 write_unlock_irq(&tasklist_lock);
577 BUG_ON(!list_empty(&tracer->ptraced));
579 list_for_each_entry_safe(p, n, &ptrace_dead, ptrace_entry) {
580 list_del_init(&p->ptrace_entry);
581 release_task(p);
584 write_lock_irq(&tasklist_lock);
587 int ptrace_readdata(struct task_struct *tsk, unsigned long src, char __user *dst, int len)
589 int copied = 0;
591 while (len > 0) {
592 char buf[128];
593 int this_len, retval;
595 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
596 retval = ptrace_access_vm(tsk, src, buf, this_len, 0);
598 if (!retval) {
599 if (copied)
600 break;
601 return -EIO;
603 if (copy_to_user(dst, buf, retval))
604 return -EFAULT;
605 copied += retval;
606 src += retval;
607 dst += retval;
608 len -= retval;
610 return copied;
613 int ptrace_writedata(struct task_struct *tsk, char __user *src, unsigned long dst, int len)
615 int copied = 0;
617 while (len > 0) {
618 char buf[128];
619 int this_len, retval;
621 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
622 if (copy_from_user(buf, src, this_len))
623 return -EFAULT;
624 retval = ptrace_access_vm(tsk, dst, buf, this_len, 1);
625 if (!retval) {
626 if (copied)
627 break;
628 return -EIO;
630 copied += retval;
631 src += retval;
632 dst += retval;
633 len -= retval;
635 return copied;
638 static int ptrace_setoptions(struct task_struct *child, unsigned long data)
640 unsigned flags;
642 if (data & ~(unsigned long)PTRACE_O_MASK)
643 return -EINVAL;
645 /* Avoid intermediate state when all opts are cleared */
646 flags = child->ptrace;
647 flags &= ~(PTRACE_O_MASK << PT_OPT_FLAG_SHIFT);
648 flags |= (data << PT_OPT_FLAG_SHIFT);
649 child->ptrace = flags;
651 return 0;
654 static int ptrace_getsiginfo(struct task_struct *child, siginfo_t *info)
656 unsigned long flags;
657 int error = -ESRCH;
659 if (lock_task_sighand(child, &flags)) {
660 error = -EINVAL;
661 if (likely(child->last_siginfo != NULL)) {
662 *info = *child->last_siginfo;
663 error = 0;
665 unlock_task_sighand(child, &flags);
667 return error;
670 static int ptrace_setsiginfo(struct task_struct *child, const siginfo_t *info)
672 unsigned long flags;
673 int error = -ESRCH;
675 if (lock_task_sighand(child, &flags)) {
676 error = -EINVAL;
677 if (likely(child->last_siginfo != NULL)) {
678 *child->last_siginfo = *info;
679 error = 0;
681 unlock_task_sighand(child, &flags);
683 return error;
686 static int ptrace_peek_siginfo(struct task_struct *child,
687 unsigned long addr,
688 unsigned long data)
690 struct ptrace_peeksiginfo_args arg;
691 struct sigpending *pending;
692 struct sigqueue *q;
693 int ret, i;
695 ret = copy_from_user(&arg, (void __user *) addr,
696 sizeof(struct ptrace_peeksiginfo_args));
697 if (ret)
698 return -EFAULT;
700 if (arg.flags & ~PTRACE_PEEKSIGINFO_SHARED)
701 return -EINVAL; /* unknown flags */
703 if (arg.nr < 0)
704 return -EINVAL;
706 if (arg.flags & PTRACE_PEEKSIGINFO_SHARED)
707 pending = &child->signal->shared_pending;
708 else
709 pending = &child->pending;
711 for (i = 0; i < arg.nr; ) {
712 siginfo_t info;
713 s32 off = arg.off + i;
715 spin_lock_irq(&child->sighand->siglock);
716 list_for_each_entry(q, &pending->list, list) {
717 if (!off--) {
718 copy_siginfo(&info, &q->info);
719 break;
722 spin_unlock_irq(&child->sighand->siglock);
724 if (off >= 0) /* beyond the end of the list */
725 break;
727 #ifdef CONFIG_COMPAT
728 if (unlikely(is_compat_task())) {
729 compat_siginfo_t __user *uinfo = compat_ptr(data);
731 if (copy_siginfo_to_user32(uinfo, &info) ||
732 __put_user(info.si_code, &uinfo->si_code)) {
733 ret = -EFAULT;
734 break;
737 } else
738 #endif
740 siginfo_t __user *uinfo = (siginfo_t __user *) data;
742 if (copy_siginfo_to_user(uinfo, &info) ||
743 __put_user(info.si_code, &uinfo->si_code)) {
744 ret = -EFAULT;
745 break;
749 data += sizeof(siginfo_t);
750 i++;
752 if (signal_pending(current))
753 break;
755 cond_resched();
758 if (i > 0)
759 return i;
761 return ret;
764 #ifdef PTRACE_SINGLESTEP
765 #define is_singlestep(request) ((request) == PTRACE_SINGLESTEP)
766 #else
767 #define is_singlestep(request) 0
768 #endif
770 #ifdef PTRACE_SINGLEBLOCK
771 #define is_singleblock(request) ((request) == PTRACE_SINGLEBLOCK)
772 #else
773 #define is_singleblock(request) 0
774 #endif
776 #ifdef PTRACE_SYSEMU
777 #define is_sysemu_singlestep(request) ((request) == PTRACE_SYSEMU_SINGLESTEP)
778 #else
779 #define is_sysemu_singlestep(request) 0
780 #endif
782 static int ptrace_resume(struct task_struct *child, long request,
783 unsigned long data)
785 bool need_siglock;
787 if (!valid_signal(data))
788 return -EIO;
790 if (request == PTRACE_SYSCALL)
791 set_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
792 else
793 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
795 #ifdef TIF_SYSCALL_EMU
796 if (request == PTRACE_SYSEMU || request == PTRACE_SYSEMU_SINGLESTEP)
797 set_tsk_thread_flag(child, TIF_SYSCALL_EMU);
798 else
799 clear_tsk_thread_flag(child, TIF_SYSCALL_EMU);
800 #endif
802 if (is_singleblock(request)) {
803 if (unlikely(!arch_has_block_step()))
804 return -EIO;
805 user_enable_block_step(child);
806 } else if (is_singlestep(request) || is_sysemu_singlestep(request)) {
807 if (unlikely(!arch_has_single_step()))
808 return -EIO;
809 user_enable_single_step(child);
810 } else {
811 user_disable_single_step(child);
815 * Change ->exit_code and ->state under siglock to avoid the race
816 * with wait_task_stopped() in between; a non-zero ->exit_code will
817 * wrongly look like another report from tracee.
819 * Note that we need siglock even if ->exit_code == data and/or this
820 * status was not reported yet, the new status must not be cleared by
821 * wait_task_stopped() after resume.
823 * If data == 0 we do not care if wait_task_stopped() reports the old
824 * status and clears the code too; this can't race with the tracee, it
825 * takes siglock after resume.
827 need_siglock = data && !thread_group_empty(current);
828 if (need_siglock)
829 spin_lock_irq(&child->sighand->siglock);
830 child->exit_code = data;
831 wake_up_state(child, __TASK_TRACED);
832 if (need_siglock)
833 spin_unlock_irq(&child->sighand->siglock);
835 return 0;
838 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
840 static const struct user_regset *
841 find_regset(const struct user_regset_view *view, unsigned int type)
843 const struct user_regset *regset;
844 int n;
846 for (n = 0; n < view->n; ++n) {
847 regset = view->regsets + n;
848 if (regset->core_note_type == type)
849 return regset;
852 return NULL;
855 static int ptrace_regset(struct task_struct *task, int req, unsigned int type,
856 struct iovec *kiov)
858 const struct user_regset_view *view = task_user_regset_view(task);
859 const struct user_regset *regset = find_regset(view, type);
860 int regset_no;
862 if (!regset || (kiov->iov_len % regset->size) != 0)
863 return -EINVAL;
865 regset_no = regset - view->regsets;
866 kiov->iov_len = min(kiov->iov_len,
867 (__kernel_size_t) (regset->n * regset->size));
869 if (req == PTRACE_GETREGSET)
870 return copy_regset_to_user(task, view, regset_no, 0,
871 kiov->iov_len, kiov->iov_base);
872 else
873 return copy_regset_from_user(task, view, regset_no, 0,
874 kiov->iov_len, kiov->iov_base);
878 * This is declared in linux/regset.h and defined in machine-dependent
879 * code. We put the export here, near the primary machine-neutral use,
880 * to ensure no machine forgets it.
882 EXPORT_SYMBOL_GPL(task_user_regset_view);
883 #endif
885 int ptrace_request(struct task_struct *child, long request,
886 unsigned long addr, unsigned long data)
888 bool seized = child->ptrace & PT_SEIZED;
889 int ret = -EIO;
890 siginfo_t siginfo, *si;
891 void __user *datavp = (void __user *) data;
892 unsigned long __user *datalp = datavp;
893 unsigned long flags;
895 switch (request) {
896 case PTRACE_PEEKTEXT:
897 case PTRACE_PEEKDATA:
898 return generic_ptrace_peekdata(child, addr, data);
899 case PTRACE_POKETEXT:
900 case PTRACE_POKEDATA:
901 return generic_ptrace_pokedata(child, addr, data);
903 #ifdef PTRACE_OLDSETOPTIONS
904 case PTRACE_OLDSETOPTIONS:
905 #endif
906 case PTRACE_SETOPTIONS:
907 ret = ptrace_setoptions(child, data);
908 break;
909 case PTRACE_GETEVENTMSG:
910 ret = put_user(child->ptrace_message, datalp);
911 break;
913 case PTRACE_PEEKSIGINFO:
914 ret = ptrace_peek_siginfo(child, addr, data);
915 break;
917 case PTRACE_GETSIGINFO:
918 ret = ptrace_getsiginfo(child, &siginfo);
919 if (!ret)
920 ret = copy_siginfo_to_user(datavp, &siginfo);
921 break;
923 case PTRACE_SETSIGINFO:
924 if (copy_from_user(&siginfo, datavp, sizeof siginfo))
925 ret = -EFAULT;
926 else
927 ret = ptrace_setsiginfo(child, &siginfo);
928 break;
930 case PTRACE_GETSIGMASK:
931 if (addr != sizeof(sigset_t)) {
932 ret = -EINVAL;
933 break;
936 if (copy_to_user(datavp, &child->blocked, sizeof(sigset_t)))
937 ret = -EFAULT;
938 else
939 ret = 0;
941 break;
943 case PTRACE_SETSIGMASK: {
944 sigset_t new_set;
946 if (addr != sizeof(sigset_t)) {
947 ret = -EINVAL;
948 break;
951 if (copy_from_user(&new_set, datavp, sizeof(sigset_t))) {
952 ret = -EFAULT;
953 break;
956 sigdelsetmask(&new_set, sigmask(SIGKILL)|sigmask(SIGSTOP));
959 * Every thread does recalc_sigpending() after resume, so
960 * retarget_shared_pending() and recalc_sigpending() are not
961 * called here.
963 spin_lock_irq(&child->sighand->siglock);
964 child->blocked = new_set;
965 spin_unlock_irq(&child->sighand->siglock);
967 ret = 0;
968 break;
971 case PTRACE_INTERRUPT:
973 * Stop tracee without any side-effect on signal or job
974 * control. At least one trap is guaranteed to happen
975 * after this request. If @child is already trapped, the
976 * current trap is not disturbed and another trap will
977 * happen after the current trap is ended with PTRACE_CONT.
979 * The actual trap might not be PTRACE_EVENT_STOP trap but
980 * the pending condition is cleared regardless.
982 if (unlikely(!seized || !lock_task_sighand(child, &flags)))
983 break;
986 * INTERRUPT doesn't disturb existing trap sans one
987 * exception. If ptracer issued LISTEN for the current
988 * STOP, this INTERRUPT should clear LISTEN and re-trap
989 * tracee into STOP.
991 if (likely(task_set_jobctl_pending(child, JOBCTL_TRAP_STOP)))
992 ptrace_signal_wake_up(child, child->jobctl & JOBCTL_LISTENING);
994 unlock_task_sighand(child, &flags);
995 ret = 0;
996 break;
998 case PTRACE_LISTEN:
1000 * Listen for events. Tracee must be in STOP. It's not
1001 * resumed per-se but is not considered to be in TRACED by
1002 * wait(2) or ptrace(2). If an async event (e.g. group
1003 * stop state change) happens, tracee will enter STOP trap
1004 * again. Alternatively, ptracer can issue INTERRUPT to
1005 * finish listening and re-trap tracee into STOP.
1007 if (unlikely(!seized || !lock_task_sighand(child, &flags)))
1008 break;
1010 si = child->last_siginfo;
1011 if (likely(si && (si->si_code >> 8) == PTRACE_EVENT_STOP)) {
1012 child->jobctl |= JOBCTL_LISTENING;
1014 * If NOTIFY is set, it means event happened between
1015 * start of this trap and now. Trigger re-trap.
1017 if (child->jobctl & JOBCTL_TRAP_NOTIFY)
1018 ptrace_signal_wake_up(child, true);
1019 ret = 0;
1021 unlock_task_sighand(child, &flags);
1022 break;
1024 case PTRACE_DETACH: /* detach a process that was attached. */
1025 ret = ptrace_detach(child, data);
1026 break;
1028 #ifdef CONFIG_BINFMT_ELF_FDPIC
1029 case PTRACE_GETFDPIC: {
1030 struct mm_struct *mm = get_task_mm(child);
1031 unsigned long tmp = 0;
1033 ret = -ESRCH;
1034 if (!mm)
1035 break;
1037 switch (addr) {
1038 case PTRACE_GETFDPIC_EXEC:
1039 tmp = mm->context.exec_fdpic_loadmap;
1040 break;
1041 case PTRACE_GETFDPIC_INTERP:
1042 tmp = mm->context.interp_fdpic_loadmap;
1043 break;
1044 default:
1045 break;
1047 mmput(mm);
1049 ret = put_user(tmp, datalp);
1050 break;
1052 #endif
1054 #ifdef PTRACE_SINGLESTEP
1055 case PTRACE_SINGLESTEP:
1056 #endif
1057 #ifdef PTRACE_SINGLEBLOCK
1058 case PTRACE_SINGLEBLOCK:
1059 #endif
1060 #ifdef PTRACE_SYSEMU
1061 case PTRACE_SYSEMU:
1062 case PTRACE_SYSEMU_SINGLESTEP:
1063 #endif
1064 case PTRACE_SYSCALL:
1065 case PTRACE_CONT:
1066 return ptrace_resume(child, request, data);
1068 case PTRACE_KILL:
1069 if (child->exit_state) /* already dead */
1070 return 0;
1071 return ptrace_resume(child, request, SIGKILL);
1073 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
1074 case PTRACE_GETREGSET:
1075 case PTRACE_SETREGSET: {
1076 struct iovec kiov;
1077 struct iovec __user *uiov = datavp;
1079 if (!access_ok(VERIFY_WRITE, uiov, sizeof(*uiov)))
1080 return -EFAULT;
1082 if (__get_user(kiov.iov_base, &uiov->iov_base) ||
1083 __get_user(kiov.iov_len, &uiov->iov_len))
1084 return -EFAULT;
1086 ret = ptrace_regset(child, request, addr, &kiov);
1087 if (!ret)
1088 ret = __put_user(kiov.iov_len, &uiov->iov_len);
1089 break;
1091 #endif
1092 default:
1093 break;
1096 return ret;
1099 static struct task_struct *ptrace_get_task_struct(pid_t pid)
1101 struct task_struct *child;
1103 rcu_read_lock();
1104 child = find_task_by_vpid(pid);
1105 if (child)
1106 get_task_struct(child);
1107 rcu_read_unlock();
1109 if (!child)
1110 return ERR_PTR(-ESRCH);
1111 return child;
1114 #ifndef arch_ptrace_attach
1115 #define arch_ptrace_attach(child) do { } while (0)
1116 #endif
1118 SYSCALL_DEFINE4(ptrace, long, request, long, pid, unsigned long, addr,
1119 unsigned long, data)
1121 struct task_struct *child;
1122 long ret;
1124 if (request == PTRACE_TRACEME) {
1125 ret = ptrace_traceme();
1126 if (!ret)
1127 arch_ptrace_attach(current);
1128 goto out;
1131 child = ptrace_get_task_struct(pid);
1132 if (IS_ERR(child)) {
1133 ret = PTR_ERR(child);
1134 goto out;
1137 if (request == PTRACE_ATTACH || request == PTRACE_SEIZE) {
1138 ret = ptrace_attach(child, request, addr, data);
1140 * Some architectures need to do book-keeping after
1141 * a ptrace attach.
1143 if (!ret)
1144 arch_ptrace_attach(child);
1145 goto out_put_task_struct;
1148 ret = ptrace_check_attach(child, request == PTRACE_KILL ||
1149 request == PTRACE_INTERRUPT);
1150 if (ret < 0)
1151 goto out_put_task_struct;
1153 ret = arch_ptrace(child, request, addr, data);
1154 if (ret || request != PTRACE_DETACH)
1155 ptrace_unfreeze_traced(child);
1157 out_put_task_struct:
1158 put_task_struct(child);
1159 out:
1160 return ret;
1163 int generic_ptrace_peekdata(struct task_struct *tsk, unsigned long addr,
1164 unsigned long data)
1166 unsigned long tmp;
1167 int copied;
1169 copied = ptrace_access_vm(tsk, addr, &tmp, sizeof(tmp), 0);
1170 if (copied != sizeof(tmp))
1171 return -EIO;
1172 return put_user(tmp, (unsigned long __user *)data);
1175 int generic_ptrace_pokedata(struct task_struct *tsk, unsigned long addr,
1176 unsigned long data)
1178 int copied;
1180 copied = ptrace_access_vm(tsk, addr, &data, sizeof(data), 1);
1181 return (copied == sizeof(data)) ? 0 : -EIO;
1184 #if defined CONFIG_COMPAT
1185 #include <linux/compat.h>
1187 int compat_ptrace_request(struct task_struct *child, compat_long_t request,
1188 compat_ulong_t addr, compat_ulong_t data)
1190 compat_ulong_t __user *datap = compat_ptr(data);
1191 compat_ulong_t word;
1192 siginfo_t siginfo;
1193 int ret;
1195 switch (request) {
1196 case PTRACE_PEEKTEXT:
1197 case PTRACE_PEEKDATA:
1198 ret = ptrace_access_vm(child, addr, &word, sizeof(word), 0);
1199 if (ret != sizeof(word))
1200 ret = -EIO;
1201 else
1202 ret = put_user(word, datap);
1203 break;
1205 case PTRACE_POKETEXT:
1206 case PTRACE_POKEDATA:
1207 ret = ptrace_access_vm(child, addr, &data, sizeof(data), 1);
1208 ret = (ret != sizeof(data) ? -EIO : 0);
1209 break;
1211 case PTRACE_GETEVENTMSG:
1212 ret = put_user((compat_ulong_t) child->ptrace_message, datap);
1213 break;
1215 case PTRACE_GETSIGINFO:
1216 ret = ptrace_getsiginfo(child, &siginfo);
1217 if (!ret)
1218 ret = copy_siginfo_to_user32(
1219 (struct compat_siginfo __user *) datap,
1220 &siginfo);
1221 break;
1223 case PTRACE_SETSIGINFO:
1224 memset(&siginfo, 0, sizeof siginfo);
1225 if (copy_siginfo_from_user32(
1226 &siginfo, (struct compat_siginfo __user *) datap))
1227 ret = -EFAULT;
1228 else
1229 ret = ptrace_setsiginfo(child, &siginfo);
1230 break;
1231 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
1232 case PTRACE_GETREGSET:
1233 case PTRACE_SETREGSET:
1235 struct iovec kiov;
1236 struct compat_iovec __user *uiov =
1237 (struct compat_iovec __user *) datap;
1238 compat_uptr_t ptr;
1239 compat_size_t len;
1241 if (!access_ok(VERIFY_WRITE, uiov, sizeof(*uiov)))
1242 return -EFAULT;
1244 if (__get_user(ptr, &uiov->iov_base) ||
1245 __get_user(len, &uiov->iov_len))
1246 return -EFAULT;
1248 kiov.iov_base = compat_ptr(ptr);
1249 kiov.iov_len = len;
1251 ret = ptrace_regset(child, request, addr, &kiov);
1252 if (!ret)
1253 ret = __put_user(kiov.iov_len, &uiov->iov_len);
1254 break;
1256 #endif
1258 default:
1259 ret = ptrace_request(child, request, addr, data);
1262 return ret;
1265 COMPAT_SYSCALL_DEFINE4(ptrace, compat_long_t, request, compat_long_t, pid,
1266 compat_long_t, addr, compat_long_t, data)
1268 struct task_struct *child;
1269 long ret;
1271 if (request == PTRACE_TRACEME) {
1272 ret = ptrace_traceme();
1273 goto out;
1276 child = ptrace_get_task_struct(pid);
1277 if (IS_ERR(child)) {
1278 ret = PTR_ERR(child);
1279 goto out;
1282 if (request == PTRACE_ATTACH || request == PTRACE_SEIZE) {
1283 ret = ptrace_attach(child, request, addr, data);
1285 * Some architectures need to do book-keeping after
1286 * a ptrace attach.
1288 if (!ret)
1289 arch_ptrace_attach(child);
1290 goto out_put_task_struct;
1293 ret = ptrace_check_attach(child, request == PTRACE_KILL ||
1294 request == PTRACE_INTERRUPT);
1295 if (!ret) {
1296 ret = compat_arch_ptrace(child, request, addr, data);
1297 if (ret || request != PTRACE_DETACH)
1298 ptrace_unfreeze_traced(child);
1301 out_put_task_struct:
1302 put_task_struct(child);
1303 out:
1304 return ret;
1306 #endif /* CONFIG_COMPAT */