net: fix ifindex collision during namespace removal
[linux/fpc-iii.git] / kernel / ptrace.c
blobea3370e205fb955c86b295ef1592d0d25cfb99e3
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, unsigned int gup_flags)
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, gup_flags);
54 mmput(mm);
56 return ret;
60 void __ptrace_link(struct task_struct *child, struct task_struct *new_parent,
61 const struct cred *ptracer_cred)
63 BUG_ON(!list_empty(&child->ptrace_entry));
64 list_add(&child->ptrace_entry, &new_parent->ptraced);
65 child->parent = new_parent;
66 child->ptracer_cred = get_cred(ptracer_cred);
70 * ptrace a task: make the debugger its new parent and
71 * move it to the ptrace list.
73 * Must be called with the tasklist lock write-held.
75 static void ptrace_link(struct task_struct *child, struct task_struct *new_parent)
77 __ptrace_link(child, new_parent, current_cred());
80 /**
81 * __ptrace_unlink - unlink ptracee and restore its execution state
82 * @child: ptracee to be unlinked
84 * Remove @child from the ptrace list, move it back to the original parent,
85 * and restore the execution state so that it conforms to the group stop
86 * state.
88 * Unlinking can happen via two paths - explicit PTRACE_DETACH or ptracer
89 * exiting. For PTRACE_DETACH, unless the ptracee has been killed between
90 * ptrace_check_attach() and here, it's guaranteed to be in TASK_TRACED.
91 * If the ptracer is exiting, the ptracee can be in any state.
93 * After detach, the ptracee should be in a state which conforms to the
94 * group stop. If the group is stopped or in the process of stopping, the
95 * ptracee should be put into TASK_STOPPED; otherwise, it should be woken
96 * up from TASK_TRACED.
98 * If the ptracee is in TASK_TRACED and needs to be moved to TASK_STOPPED,
99 * it goes through TRACED -> RUNNING -> STOPPED transition which is similar
100 * to but in the opposite direction of what happens while attaching to a
101 * stopped task. However, in this direction, the intermediate RUNNING
102 * state is not hidden even from the current ptracer and if it immediately
103 * re-attaches and performs a WNOHANG wait(2), it may fail.
105 * CONTEXT:
106 * write_lock_irq(tasklist_lock)
108 void __ptrace_unlink(struct task_struct *child)
110 const struct cred *old_cred;
111 BUG_ON(!child->ptrace);
113 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
115 child->parent = child->real_parent;
116 list_del_init(&child->ptrace_entry);
117 old_cred = child->ptracer_cred;
118 child->ptracer_cred = NULL;
119 put_cred(old_cred);
121 spin_lock(&child->sighand->siglock);
122 child->ptrace = 0;
124 * Clear all pending traps and TRAPPING. TRAPPING should be
125 * cleared regardless of JOBCTL_STOP_PENDING. Do it explicitly.
127 task_clear_jobctl_pending(child, JOBCTL_TRAP_MASK);
128 task_clear_jobctl_trapping(child);
131 * Reinstate JOBCTL_STOP_PENDING if group stop is in effect and
132 * @child isn't dead.
134 if (!(child->flags & PF_EXITING) &&
135 (child->signal->flags & SIGNAL_STOP_STOPPED ||
136 child->signal->group_stop_count)) {
137 child->jobctl |= JOBCTL_STOP_PENDING;
140 * This is only possible if this thread was cloned by the
141 * traced task running in the stopped group, set the signal
142 * for the future reports.
143 * FIXME: we should change ptrace_init_task() to handle this
144 * case.
146 if (!(child->jobctl & JOBCTL_STOP_SIGMASK))
147 child->jobctl |= SIGSTOP;
151 * If transition to TASK_STOPPED is pending or in TASK_TRACED, kick
152 * @child in the butt. Note that @resume should be used iff @child
153 * is in TASK_TRACED; otherwise, we might unduly disrupt
154 * TASK_KILLABLE sleeps.
156 if (child->jobctl & JOBCTL_STOP_PENDING || task_is_traced(child))
157 ptrace_signal_wake_up(child, true);
159 spin_unlock(&child->sighand->siglock);
162 /* Ensure that nothing can wake it up, even SIGKILL */
163 static bool ptrace_freeze_traced(struct task_struct *task)
165 bool ret = false;
167 /* Lockless, nobody but us can set this flag */
168 if (task->jobctl & JOBCTL_LISTENING)
169 return ret;
171 spin_lock_irq(&task->sighand->siglock);
172 if (task_is_traced(task) && !__fatal_signal_pending(task)) {
173 task->state = __TASK_TRACED;
174 ret = true;
176 spin_unlock_irq(&task->sighand->siglock);
178 return ret;
181 static void ptrace_unfreeze_traced(struct task_struct *task)
183 if (task->state != __TASK_TRACED)
184 return;
186 WARN_ON(!task->ptrace || task->parent != current);
189 * PTRACE_LISTEN can allow ptrace_trap_notify to wake us up remotely.
190 * Recheck state under the lock to close this race.
192 spin_lock_irq(&task->sighand->siglock);
193 if (task->state == __TASK_TRACED) {
194 if (__fatal_signal_pending(task))
195 wake_up_state(task, __TASK_TRACED);
196 else
197 task->state = TASK_TRACED;
199 spin_unlock_irq(&task->sighand->siglock);
203 * ptrace_check_attach - check whether ptracee is ready for ptrace operation
204 * @child: ptracee to check for
205 * @ignore_state: don't check whether @child is currently %TASK_TRACED
207 * Check whether @child is being ptraced by %current and ready for further
208 * ptrace operations. If @ignore_state is %false, @child also should be in
209 * %TASK_TRACED state and on return the child is guaranteed to be traced
210 * and not executing. If @ignore_state is %true, @child can be in any
211 * state.
213 * CONTEXT:
214 * Grabs and releases tasklist_lock and @child->sighand->siglock.
216 * RETURNS:
217 * 0 on success, -ESRCH if %child is not ready.
219 static int ptrace_check_attach(struct task_struct *child, bool ignore_state)
221 int ret = -ESRCH;
224 * We take the read lock around doing both checks to close a
225 * possible race where someone else was tracing our child and
226 * detached between these two checks. After this locked check,
227 * we are sure that this is our traced child and that can only
228 * be changed by us so it's not changing right after this.
230 read_lock(&tasklist_lock);
231 if (child->ptrace && child->parent == current) {
232 WARN_ON(child->state == __TASK_TRACED);
234 * child->sighand can't be NULL, release_task()
235 * does ptrace_unlink() before __exit_signal().
237 if (ignore_state || ptrace_freeze_traced(child))
238 ret = 0;
240 read_unlock(&tasklist_lock);
242 if (!ret && !ignore_state) {
243 if (!wait_task_inactive(child, __TASK_TRACED)) {
245 * This can only happen if may_ptrace_stop() fails and
246 * ptrace_stop() changes ->state back to TASK_RUNNING,
247 * so we should not worry about leaking __TASK_TRACED.
249 WARN_ON(child->state == __TASK_TRACED);
250 ret = -ESRCH;
254 return ret;
257 static int ptrace_has_cap(struct user_namespace *ns, unsigned int mode)
259 if (mode & PTRACE_MODE_SCHED)
260 return false;
262 if (mode & PTRACE_MODE_NOAUDIT)
263 return has_ns_capability_noaudit(current, ns, CAP_SYS_PTRACE);
264 else
265 return has_ns_capability(current, ns, CAP_SYS_PTRACE);
268 /* Returns 0 on success, -errno on denial. */
269 static int __ptrace_may_access(struct task_struct *task, unsigned int mode)
271 const struct cred *cred = current_cred(), *tcred;
272 struct mm_struct *mm;
273 kuid_t caller_uid;
274 kgid_t caller_gid;
276 if (!(mode & PTRACE_MODE_FSCREDS) == !(mode & PTRACE_MODE_REALCREDS)) {
277 WARN(1, "denying ptrace access check without PTRACE_MODE_*CREDS\n");
278 return -EPERM;
281 /* May we inspect the given task?
282 * This check is used both for attaching with ptrace
283 * and for allowing access to sensitive information in /proc.
285 * ptrace_attach denies several cases that /proc allows
286 * because setting up the necessary parent/child relationship
287 * or halting the specified task is impossible.
290 /* Don't let security modules deny introspection */
291 if (same_thread_group(task, current))
292 return 0;
293 rcu_read_lock();
294 if (mode & PTRACE_MODE_FSCREDS) {
295 caller_uid = cred->fsuid;
296 caller_gid = cred->fsgid;
297 } else {
299 * Using the euid would make more sense here, but something
300 * in userland might rely on the old behavior, and this
301 * shouldn't be a security problem since
302 * PTRACE_MODE_REALCREDS implies that the caller explicitly
303 * used a syscall that requests access to another process
304 * (and not a filesystem syscall to procfs).
306 caller_uid = cred->uid;
307 caller_gid = cred->gid;
309 tcred = __task_cred(task);
310 if (uid_eq(caller_uid, tcred->euid) &&
311 uid_eq(caller_uid, tcred->suid) &&
312 uid_eq(caller_uid, tcred->uid) &&
313 gid_eq(caller_gid, tcred->egid) &&
314 gid_eq(caller_gid, tcred->sgid) &&
315 gid_eq(caller_gid, tcred->gid))
316 goto ok;
317 if (ptrace_has_cap(tcred->user_ns, mode))
318 goto ok;
319 rcu_read_unlock();
320 return -EPERM;
322 rcu_read_unlock();
324 * If a task drops privileges and becomes nondumpable (through a syscall
325 * like setresuid()) while we are trying to access it, we must ensure
326 * that the dumpability is read after the credentials; otherwise,
327 * we may be able to attach to a task that we shouldn't be able to
328 * attach to (as if the task had dropped privileges without becoming
329 * nondumpable).
330 * Pairs with a write barrier in commit_creds().
332 smp_rmb();
333 mm = task->mm;
334 if (mm &&
335 ((get_dumpable(mm) != SUID_DUMP_USER) &&
336 !ptrace_has_cap(mm->user_ns, mode)))
337 return -EPERM;
339 if (mode & PTRACE_MODE_SCHED)
340 return 0;
341 return security_ptrace_access_check(task, mode);
344 bool ptrace_may_access_sched(struct task_struct *task, unsigned int mode)
346 return __ptrace_may_access(task, mode | PTRACE_MODE_SCHED);
349 bool ptrace_may_access(struct task_struct *task, unsigned int mode)
351 int err;
352 task_lock(task);
353 err = __ptrace_may_access(task, mode);
354 task_unlock(task);
355 return !err;
358 static int ptrace_attach(struct task_struct *task, long request,
359 unsigned long addr,
360 unsigned long flags)
362 bool seize = (request == PTRACE_SEIZE);
363 int retval;
365 retval = -EIO;
366 if (seize) {
367 if (addr != 0)
368 goto out;
369 if (flags & ~(unsigned long)PTRACE_O_MASK)
370 goto out;
371 flags = PT_PTRACED | PT_SEIZED | (flags << PT_OPT_FLAG_SHIFT);
372 } else {
373 flags = PT_PTRACED;
376 audit_ptrace(task);
378 retval = -EPERM;
379 if (unlikely(task->flags & PF_KTHREAD))
380 goto out;
381 if (same_thread_group(task, current))
382 goto out;
385 * Protect exec's credential calculations against our interference;
386 * SUID, SGID and LSM creds get determined differently
387 * under ptrace.
389 retval = -ERESTARTNOINTR;
390 if (mutex_lock_interruptible(&task->signal->cred_guard_mutex))
391 goto out;
393 task_lock(task);
394 retval = __ptrace_may_access(task, PTRACE_MODE_ATTACH_REALCREDS);
395 task_unlock(task);
396 if (retval)
397 goto unlock_creds;
399 write_lock_irq(&tasklist_lock);
400 retval = -EPERM;
401 if (unlikely(task->exit_state))
402 goto unlock_tasklist;
403 if (task->ptrace)
404 goto unlock_tasklist;
406 if (seize)
407 flags |= PT_SEIZED;
408 task->ptrace = flags;
410 ptrace_link(task, current);
412 /* SEIZE doesn't trap tracee on attach */
413 if (!seize)
414 send_sig_info(SIGSTOP, SEND_SIG_FORCED, task);
416 spin_lock(&task->sighand->siglock);
419 * If the task is already STOPPED, set JOBCTL_TRAP_STOP and
420 * TRAPPING, and kick it so that it transits to TRACED. TRAPPING
421 * will be cleared if the child completes the transition or any
422 * event which clears the group stop states happens. We'll wait
423 * for the transition to complete before returning from this
424 * function.
426 * This hides STOPPED -> RUNNING -> TRACED transition from the
427 * attaching thread but a different thread in the same group can
428 * still observe the transient RUNNING state. IOW, if another
429 * thread's WNOHANG wait(2) on the stopped tracee races against
430 * ATTACH, the wait(2) may fail due to the transient RUNNING.
432 * The following task_is_stopped() test is safe as both transitions
433 * in and out of STOPPED are protected by siglock.
435 if (task_is_stopped(task) &&
436 task_set_jobctl_pending(task, JOBCTL_TRAP_STOP | JOBCTL_TRAPPING))
437 signal_wake_up_state(task, __TASK_STOPPED);
439 spin_unlock(&task->sighand->siglock);
441 retval = 0;
442 unlock_tasklist:
443 write_unlock_irq(&tasklist_lock);
444 unlock_creds:
445 mutex_unlock(&task->signal->cred_guard_mutex);
446 out:
447 if (!retval) {
449 * We do not bother to change retval or clear JOBCTL_TRAPPING
450 * if wait_on_bit() was interrupted by SIGKILL. The tracer will
451 * not return to user-mode, it will exit and clear this bit in
452 * __ptrace_unlink() if it wasn't already cleared by the tracee;
453 * and until then nobody can ptrace this task.
455 wait_on_bit(&task->jobctl, JOBCTL_TRAPPING_BIT, TASK_KILLABLE);
456 proc_ptrace_connector(task, PTRACE_ATTACH);
459 return retval;
463 * ptrace_traceme -- helper for PTRACE_TRACEME
465 * Performs checks and sets PT_PTRACED.
466 * Should be used by all ptrace implementations for PTRACE_TRACEME.
468 static int ptrace_traceme(void)
470 int ret = -EPERM;
472 write_lock_irq(&tasklist_lock);
473 /* Are we already being traced? */
474 if (!current->ptrace) {
475 ret = security_ptrace_traceme(current->parent);
477 * Check PF_EXITING to ensure ->real_parent has not passed
478 * exit_ptrace(). Otherwise we don't report the error but
479 * pretend ->real_parent untraces us right after return.
481 if (!ret && !(current->real_parent->flags & PF_EXITING)) {
482 current->ptrace = PT_PTRACED;
483 ptrace_link(current, current->real_parent);
486 write_unlock_irq(&tasklist_lock);
488 return ret;
492 * Called with irqs disabled, returns true if childs should reap themselves.
494 static int ignoring_children(struct sighand_struct *sigh)
496 int ret;
497 spin_lock(&sigh->siglock);
498 ret = (sigh->action[SIGCHLD-1].sa.sa_handler == SIG_IGN) ||
499 (sigh->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT);
500 spin_unlock(&sigh->siglock);
501 return ret;
505 * Called with tasklist_lock held for writing.
506 * Unlink a traced task, and clean it up if it was a traced zombie.
507 * Return true if it needs to be reaped with release_task().
508 * (We can't call release_task() here because we already hold tasklist_lock.)
510 * If it's a zombie, our attachedness prevented normal parent notification
511 * or self-reaping. Do notification now if it would have happened earlier.
512 * If it should reap itself, return true.
514 * If it's our own child, there is no notification to do. But if our normal
515 * children self-reap, then this child was prevented by ptrace and we must
516 * reap it now, in that case we must also wake up sub-threads sleeping in
517 * do_wait().
519 static bool __ptrace_detach(struct task_struct *tracer, struct task_struct *p)
521 bool dead;
523 __ptrace_unlink(p);
525 if (p->exit_state != EXIT_ZOMBIE)
526 return false;
528 dead = !thread_group_leader(p);
530 if (!dead && thread_group_empty(p)) {
531 if (!same_thread_group(p->real_parent, tracer))
532 dead = do_notify_parent(p, p->exit_signal);
533 else if (ignoring_children(tracer->sighand)) {
534 __wake_up_parent(p, tracer);
535 dead = true;
538 /* Mark it as in the process of being reaped. */
539 if (dead)
540 p->exit_state = EXIT_DEAD;
541 return dead;
544 static int ptrace_detach(struct task_struct *child, unsigned int data)
546 if (!valid_signal(data))
547 return -EIO;
549 /* Architecture-specific hardware disable .. */
550 ptrace_disable(child);
552 write_lock_irq(&tasklist_lock);
554 * We rely on ptrace_freeze_traced(). It can't be killed and
555 * untraced by another thread, it can't be a zombie.
557 WARN_ON(!child->ptrace || child->exit_state);
559 * tasklist_lock avoids the race with wait_task_stopped(), see
560 * the comment in ptrace_resume().
562 child->exit_code = data;
563 __ptrace_detach(current, child);
564 write_unlock_irq(&tasklist_lock);
566 proc_ptrace_connector(child, PTRACE_DETACH);
568 return 0;
572 * Detach all tasks we were using ptrace on. Called with tasklist held
573 * for writing.
575 void exit_ptrace(struct task_struct *tracer, struct list_head *dead)
577 struct task_struct *p, *n;
579 list_for_each_entry_safe(p, n, &tracer->ptraced, ptrace_entry) {
580 if (unlikely(p->ptrace & PT_EXITKILL))
581 send_sig_info(SIGKILL, SEND_SIG_FORCED, p);
583 if (__ptrace_detach(tracer, p))
584 list_add(&p->ptrace_entry, dead);
588 int ptrace_readdata(struct task_struct *tsk, unsigned long src, char __user *dst, int len)
590 int copied = 0;
592 while (len > 0) {
593 char buf[128];
594 int this_len, retval;
596 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
597 retval = ptrace_access_vm(tsk, src, buf, this_len, FOLL_FORCE);
599 if (!retval) {
600 if (copied)
601 break;
602 return -EIO;
604 if (copy_to_user(dst, buf, retval))
605 return -EFAULT;
606 copied += retval;
607 src += retval;
608 dst += retval;
609 len -= retval;
611 return copied;
614 int ptrace_writedata(struct task_struct *tsk, char __user *src, unsigned long dst, int len)
616 int copied = 0;
618 while (len > 0) {
619 char buf[128];
620 int this_len, retval;
622 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
623 if (copy_from_user(buf, src, this_len))
624 return -EFAULT;
625 retval = ptrace_access_vm(tsk, dst, buf, this_len,
626 FOLL_FORCE | FOLL_WRITE);
627 if (!retval) {
628 if (copied)
629 break;
630 return -EIO;
632 copied += retval;
633 src += retval;
634 dst += retval;
635 len -= retval;
637 return copied;
640 static int ptrace_setoptions(struct task_struct *child, unsigned long data)
642 unsigned flags;
644 if (data & ~(unsigned long)PTRACE_O_MASK)
645 return -EINVAL;
647 if (unlikely(data & PTRACE_O_SUSPEND_SECCOMP)) {
648 if (!IS_ENABLED(CONFIG_CHECKPOINT_RESTORE) ||
649 !IS_ENABLED(CONFIG_SECCOMP))
650 return -EINVAL;
652 if (!capable(CAP_SYS_ADMIN))
653 return -EPERM;
655 if (seccomp_mode(&current->seccomp) != SECCOMP_MODE_DISABLED ||
656 current->ptrace & PT_SUSPEND_SECCOMP)
657 return -EPERM;
660 /* Avoid intermediate state when all opts are cleared */
661 flags = child->ptrace;
662 flags &= ~(PTRACE_O_MASK << PT_OPT_FLAG_SHIFT);
663 flags |= (data << PT_OPT_FLAG_SHIFT);
664 child->ptrace = flags;
666 return 0;
669 static int ptrace_getsiginfo(struct task_struct *child, siginfo_t *info)
671 unsigned long flags;
672 int error = -ESRCH;
674 if (lock_task_sighand(child, &flags)) {
675 error = -EINVAL;
676 if (likely(child->last_siginfo != NULL)) {
677 *info = *child->last_siginfo;
678 error = 0;
680 unlock_task_sighand(child, &flags);
682 return error;
685 static int ptrace_setsiginfo(struct task_struct *child, const siginfo_t *info)
687 unsigned long flags;
688 int error = -ESRCH;
690 if (lock_task_sighand(child, &flags)) {
691 error = -EINVAL;
692 if (likely(child->last_siginfo != NULL)) {
693 *child->last_siginfo = *info;
694 error = 0;
696 unlock_task_sighand(child, &flags);
698 return error;
701 static int ptrace_peek_siginfo(struct task_struct *child,
702 unsigned long addr,
703 unsigned long data)
705 struct ptrace_peeksiginfo_args arg;
706 struct sigpending *pending;
707 struct sigqueue *q;
708 int ret, i;
710 ret = copy_from_user(&arg, (void __user *) addr,
711 sizeof(struct ptrace_peeksiginfo_args));
712 if (ret)
713 return -EFAULT;
715 if (arg.flags & ~PTRACE_PEEKSIGINFO_SHARED)
716 return -EINVAL; /* unknown flags */
718 if (arg.nr < 0)
719 return -EINVAL;
721 /* Ensure arg.off fits in an unsigned long */
722 if (arg.off > ULONG_MAX)
723 return 0;
725 if (arg.flags & PTRACE_PEEKSIGINFO_SHARED)
726 pending = &child->signal->shared_pending;
727 else
728 pending = &child->pending;
730 for (i = 0; i < arg.nr; ) {
731 siginfo_t info;
732 unsigned long off = arg.off + i;
733 bool found = false;
735 spin_lock_irq(&child->sighand->siglock);
736 list_for_each_entry(q, &pending->list, list) {
737 if (!off--) {
738 found = true;
739 copy_siginfo(&info, &q->info);
740 break;
743 spin_unlock_irq(&child->sighand->siglock);
745 if (!found) /* beyond the end of the list */
746 break;
748 #ifdef CONFIG_COMPAT
749 if (unlikely(in_compat_syscall())) {
750 compat_siginfo_t __user *uinfo = compat_ptr(data);
752 if (copy_siginfo_to_user32(uinfo, &info) ||
753 __put_user(info.si_code, &uinfo->si_code)) {
754 ret = -EFAULT;
755 break;
758 } else
759 #endif
761 siginfo_t __user *uinfo = (siginfo_t __user *) data;
763 if (copy_siginfo_to_user(uinfo, &info) ||
764 __put_user(info.si_code, &uinfo->si_code)) {
765 ret = -EFAULT;
766 break;
770 data += sizeof(siginfo_t);
771 i++;
773 if (signal_pending(current))
774 break;
776 cond_resched();
779 if (i > 0)
780 return i;
782 return ret;
785 #ifdef PTRACE_SINGLESTEP
786 #define is_singlestep(request) ((request) == PTRACE_SINGLESTEP)
787 #else
788 #define is_singlestep(request) 0
789 #endif
791 #ifdef PTRACE_SINGLEBLOCK
792 #define is_singleblock(request) ((request) == PTRACE_SINGLEBLOCK)
793 #else
794 #define is_singleblock(request) 0
795 #endif
797 #ifdef PTRACE_SYSEMU
798 #define is_sysemu_singlestep(request) ((request) == PTRACE_SYSEMU_SINGLESTEP)
799 #else
800 #define is_sysemu_singlestep(request) 0
801 #endif
803 static int ptrace_resume(struct task_struct *child, long request,
804 unsigned long data)
806 bool need_siglock;
808 if (!valid_signal(data))
809 return -EIO;
811 if (request == PTRACE_SYSCALL)
812 set_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
813 else
814 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
816 #ifdef TIF_SYSCALL_EMU
817 if (request == PTRACE_SYSEMU || request == PTRACE_SYSEMU_SINGLESTEP)
818 set_tsk_thread_flag(child, TIF_SYSCALL_EMU);
819 else
820 clear_tsk_thread_flag(child, TIF_SYSCALL_EMU);
821 #endif
823 if (is_singleblock(request)) {
824 if (unlikely(!arch_has_block_step()))
825 return -EIO;
826 user_enable_block_step(child);
827 } else if (is_singlestep(request) || is_sysemu_singlestep(request)) {
828 if (unlikely(!arch_has_single_step()))
829 return -EIO;
830 user_enable_single_step(child);
831 } else {
832 user_disable_single_step(child);
836 * Change ->exit_code and ->state under siglock to avoid the race
837 * with wait_task_stopped() in between; a non-zero ->exit_code will
838 * wrongly look like another report from tracee.
840 * Note that we need siglock even if ->exit_code == data and/or this
841 * status was not reported yet, the new status must not be cleared by
842 * wait_task_stopped() after resume.
844 * If data == 0 we do not care if wait_task_stopped() reports the old
845 * status and clears the code too; this can't race with the tracee, it
846 * takes siglock after resume.
848 need_siglock = data && !thread_group_empty(current);
849 if (need_siglock)
850 spin_lock_irq(&child->sighand->siglock);
851 child->exit_code = data;
852 wake_up_state(child, __TASK_TRACED);
853 if (need_siglock)
854 spin_unlock_irq(&child->sighand->siglock);
856 return 0;
859 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
861 static const struct user_regset *
862 find_regset(const struct user_regset_view *view, unsigned int type)
864 const struct user_regset *regset;
865 int n;
867 for (n = 0; n < view->n; ++n) {
868 regset = view->regsets + n;
869 if (regset->core_note_type == type)
870 return regset;
873 return NULL;
876 static int ptrace_regset(struct task_struct *task, int req, unsigned int type,
877 struct iovec *kiov)
879 const struct user_regset_view *view = task_user_regset_view(task);
880 const struct user_regset *regset = find_regset(view, type);
881 int regset_no;
883 if (!regset || (kiov->iov_len % regset->size) != 0)
884 return -EINVAL;
886 regset_no = regset - view->regsets;
887 kiov->iov_len = min(kiov->iov_len,
888 (__kernel_size_t) (regset->n * regset->size));
890 if (req == PTRACE_GETREGSET)
891 return copy_regset_to_user(task, view, regset_no, 0,
892 kiov->iov_len, kiov->iov_base);
893 else
894 return copy_regset_from_user(task, view, regset_no, 0,
895 kiov->iov_len, kiov->iov_base);
899 * This is declared in linux/regset.h and defined in machine-dependent
900 * code. We put the export here, near the primary machine-neutral use,
901 * to ensure no machine forgets it.
903 EXPORT_SYMBOL_GPL(task_user_regset_view);
904 #endif
906 int ptrace_request(struct task_struct *child, long request,
907 unsigned long addr, unsigned long data)
909 bool seized = child->ptrace & PT_SEIZED;
910 int ret = -EIO;
911 siginfo_t siginfo, *si;
912 void __user *datavp = (void __user *) data;
913 unsigned long __user *datalp = datavp;
914 unsigned long flags;
916 switch (request) {
917 case PTRACE_PEEKTEXT:
918 case PTRACE_PEEKDATA:
919 return generic_ptrace_peekdata(child, addr, data);
920 case PTRACE_POKETEXT:
921 case PTRACE_POKEDATA:
922 return generic_ptrace_pokedata(child, addr, data);
924 #ifdef PTRACE_OLDSETOPTIONS
925 case PTRACE_OLDSETOPTIONS:
926 #endif
927 case PTRACE_SETOPTIONS:
928 ret = ptrace_setoptions(child, data);
929 break;
930 case PTRACE_GETEVENTMSG:
931 ret = put_user(child->ptrace_message, datalp);
932 break;
934 case PTRACE_PEEKSIGINFO:
935 ret = ptrace_peek_siginfo(child, addr, data);
936 break;
938 case PTRACE_GETSIGINFO:
939 ret = ptrace_getsiginfo(child, &siginfo);
940 if (!ret)
941 ret = copy_siginfo_to_user(datavp, &siginfo);
942 break;
944 case PTRACE_SETSIGINFO:
945 if (copy_from_user(&siginfo, datavp, sizeof siginfo))
946 ret = -EFAULT;
947 else
948 ret = ptrace_setsiginfo(child, &siginfo);
949 break;
951 case PTRACE_GETSIGMASK:
952 if (addr != sizeof(sigset_t)) {
953 ret = -EINVAL;
954 break;
957 if (copy_to_user(datavp, &child->blocked, sizeof(sigset_t)))
958 ret = -EFAULT;
959 else
960 ret = 0;
962 break;
964 case PTRACE_SETSIGMASK: {
965 sigset_t new_set;
967 if (addr != sizeof(sigset_t)) {
968 ret = -EINVAL;
969 break;
972 if (copy_from_user(&new_set, datavp, sizeof(sigset_t))) {
973 ret = -EFAULT;
974 break;
977 sigdelsetmask(&new_set, sigmask(SIGKILL)|sigmask(SIGSTOP));
980 * Every thread does recalc_sigpending() after resume, so
981 * retarget_shared_pending() and recalc_sigpending() are not
982 * called here.
984 spin_lock_irq(&child->sighand->siglock);
985 child->blocked = new_set;
986 spin_unlock_irq(&child->sighand->siglock);
988 ret = 0;
989 break;
992 case PTRACE_INTERRUPT:
994 * Stop tracee without any side-effect on signal or job
995 * control. At least one trap is guaranteed to happen
996 * after this request. If @child is already trapped, the
997 * current trap is not disturbed and another trap will
998 * happen after the current trap is ended with PTRACE_CONT.
1000 * The actual trap might not be PTRACE_EVENT_STOP trap but
1001 * the pending condition is cleared regardless.
1003 if (unlikely(!seized || !lock_task_sighand(child, &flags)))
1004 break;
1007 * INTERRUPT doesn't disturb existing trap sans one
1008 * exception. If ptracer issued LISTEN for the current
1009 * STOP, this INTERRUPT should clear LISTEN and re-trap
1010 * tracee into STOP.
1012 if (likely(task_set_jobctl_pending(child, JOBCTL_TRAP_STOP)))
1013 ptrace_signal_wake_up(child, child->jobctl & JOBCTL_LISTENING);
1015 unlock_task_sighand(child, &flags);
1016 ret = 0;
1017 break;
1019 case PTRACE_LISTEN:
1021 * Listen for events. Tracee must be in STOP. It's not
1022 * resumed per-se but is not considered to be in TRACED by
1023 * wait(2) or ptrace(2). If an async event (e.g. group
1024 * stop state change) happens, tracee will enter STOP trap
1025 * again. Alternatively, ptracer can issue INTERRUPT to
1026 * finish listening and re-trap tracee into STOP.
1028 if (unlikely(!seized || !lock_task_sighand(child, &flags)))
1029 break;
1031 si = child->last_siginfo;
1032 if (likely(si && (si->si_code >> 8) == PTRACE_EVENT_STOP)) {
1033 child->jobctl |= JOBCTL_LISTENING;
1035 * If NOTIFY is set, it means event happened between
1036 * start of this trap and now. Trigger re-trap.
1038 if (child->jobctl & JOBCTL_TRAP_NOTIFY)
1039 ptrace_signal_wake_up(child, true);
1040 ret = 0;
1042 unlock_task_sighand(child, &flags);
1043 break;
1045 case PTRACE_DETACH: /* detach a process that was attached. */
1046 ret = ptrace_detach(child, data);
1047 break;
1049 #ifdef CONFIG_BINFMT_ELF_FDPIC
1050 case PTRACE_GETFDPIC: {
1051 struct mm_struct *mm = get_task_mm(child);
1052 unsigned long tmp = 0;
1054 ret = -ESRCH;
1055 if (!mm)
1056 break;
1058 switch (addr) {
1059 case PTRACE_GETFDPIC_EXEC:
1060 tmp = mm->context.exec_fdpic_loadmap;
1061 break;
1062 case PTRACE_GETFDPIC_INTERP:
1063 tmp = mm->context.interp_fdpic_loadmap;
1064 break;
1065 default:
1066 break;
1068 mmput(mm);
1070 ret = put_user(tmp, datalp);
1071 break;
1073 #endif
1075 #ifdef PTRACE_SINGLESTEP
1076 case PTRACE_SINGLESTEP:
1077 #endif
1078 #ifdef PTRACE_SINGLEBLOCK
1079 case PTRACE_SINGLEBLOCK:
1080 #endif
1081 #ifdef PTRACE_SYSEMU
1082 case PTRACE_SYSEMU:
1083 case PTRACE_SYSEMU_SINGLESTEP:
1084 #endif
1085 case PTRACE_SYSCALL:
1086 case PTRACE_CONT:
1087 return ptrace_resume(child, request, data);
1089 case PTRACE_KILL:
1090 if (child->exit_state) /* already dead */
1091 return 0;
1092 return ptrace_resume(child, request, SIGKILL);
1094 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
1095 case PTRACE_GETREGSET:
1096 case PTRACE_SETREGSET: {
1097 struct iovec kiov;
1098 struct iovec __user *uiov = datavp;
1100 if (!access_ok(VERIFY_WRITE, uiov, sizeof(*uiov)))
1101 return -EFAULT;
1103 if (__get_user(kiov.iov_base, &uiov->iov_base) ||
1104 __get_user(kiov.iov_len, &uiov->iov_len))
1105 return -EFAULT;
1107 ret = ptrace_regset(child, request, addr, &kiov);
1108 if (!ret)
1109 ret = __put_user(kiov.iov_len, &uiov->iov_len);
1110 break;
1112 #endif
1114 case PTRACE_SECCOMP_GET_FILTER:
1115 ret = seccomp_get_filter(child, addr, datavp);
1116 break;
1118 default:
1119 break;
1122 return ret;
1125 static struct task_struct *ptrace_get_task_struct(pid_t pid)
1127 struct task_struct *child;
1129 rcu_read_lock();
1130 child = find_task_by_vpid(pid);
1131 if (child)
1132 get_task_struct(child);
1133 rcu_read_unlock();
1135 if (!child)
1136 return ERR_PTR(-ESRCH);
1137 return child;
1140 #ifndef arch_ptrace_attach
1141 #define arch_ptrace_attach(child) do { } while (0)
1142 #endif
1144 SYSCALL_DEFINE4(ptrace, long, request, long, pid, unsigned long, addr,
1145 unsigned long, data)
1147 struct task_struct *child;
1148 long ret;
1150 if (request == PTRACE_TRACEME) {
1151 ret = ptrace_traceme();
1152 if (!ret)
1153 arch_ptrace_attach(current);
1154 goto out;
1157 child = ptrace_get_task_struct(pid);
1158 if (IS_ERR(child)) {
1159 ret = PTR_ERR(child);
1160 goto out;
1163 if (request == PTRACE_ATTACH || request == PTRACE_SEIZE) {
1164 ret = ptrace_attach(child, request, addr, data);
1166 * Some architectures need to do book-keeping after
1167 * a ptrace attach.
1169 if (!ret)
1170 arch_ptrace_attach(child);
1171 goto out_put_task_struct;
1174 ret = ptrace_check_attach(child, request == PTRACE_KILL ||
1175 request == PTRACE_INTERRUPT);
1176 if (ret < 0)
1177 goto out_put_task_struct;
1179 ret = arch_ptrace(child, request, addr, data);
1180 if (ret || request != PTRACE_DETACH)
1181 ptrace_unfreeze_traced(child);
1183 out_put_task_struct:
1184 put_task_struct(child);
1185 out:
1186 return ret;
1189 int generic_ptrace_peekdata(struct task_struct *tsk, unsigned long addr,
1190 unsigned long data)
1192 unsigned long tmp;
1193 int copied;
1195 copied = ptrace_access_vm(tsk, addr, &tmp, sizeof(tmp), FOLL_FORCE);
1196 if (copied != sizeof(tmp))
1197 return -EIO;
1198 return put_user(tmp, (unsigned long __user *)data);
1201 int generic_ptrace_pokedata(struct task_struct *tsk, unsigned long addr,
1202 unsigned long data)
1204 int copied;
1206 copied = ptrace_access_vm(tsk, addr, &data, sizeof(data),
1207 FOLL_FORCE | FOLL_WRITE);
1208 return (copied == sizeof(data)) ? 0 : -EIO;
1211 #if defined CONFIG_COMPAT
1213 int compat_ptrace_request(struct task_struct *child, compat_long_t request,
1214 compat_ulong_t addr, compat_ulong_t data)
1216 compat_ulong_t __user *datap = compat_ptr(data);
1217 compat_ulong_t word;
1218 siginfo_t siginfo;
1219 int ret;
1221 switch (request) {
1222 case PTRACE_PEEKTEXT:
1223 case PTRACE_PEEKDATA:
1224 ret = ptrace_access_vm(child, addr, &word, sizeof(word),
1225 FOLL_FORCE);
1226 if (ret != sizeof(word))
1227 ret = -EIO;
1228 else
1229 ret = put_user(word, datap);
1230 break;
1232 case PTRACE_POKETEXT:
1233 case PTRACE_POKEDATA:
1234 ret = ptrace_access_vm(child, addr, &data, sizeof(data),
1235 FOLL_FORCE | FOLL_WRITE);
1236 ret = (ret != sizeof(data) ? -EIO : 0);
1237 break;
1239 case PTRACE_GETEVENTMSG:
1240 ret = put_user((compat_ulong_t) child->ptrace_message, datap);
1241 break;
1243 case PTRACE_GETSIGINFO:
1244 ret = ptrace_getsiginfo(child, &siginfo);
1245 if (!ret)
1246 ret = copy_siginfo_to_user32(
1247 (struct compat_siginfo __user *) datap,
1248 &siginfo);
1249 break;
1251 case PTRACE_SETSIGINFO:
1252 memset(&siginfo, 0, sizeof siginfo);
1253 if (copy_siginfo_from_user32(
1254 &siginfo, (struct compat_siginfo __user *) datap))
1255 ret = -EFAULT;
1256 else
1257 ret = ptrace_setsiginfo(child, &siginfo);
1258 break;
1259 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
1260 case PTRACE_GETREGSET:
1261 case PTRACE_SETREGSET:
1263 struct iovec kiov;
1264 struct compat_iovec __user *uiov =
1265 (struct compat_iovec __user *) datap;
1266 compat_uptr_t ptr;
1267 compat_size_t len;
1269 if (!access_ok(VERIFY_WRITE, uiov, sizeof(*uiov)))
1270 return -EFAULT;
1272 if (__get_user(ptr, &uiov->iov_base) ||
1273 __get_user(len, &uiov->iov_len))
1274 return -EFAULT;
1276 kiov.iov_base = compat_ptr(ptr);
1277 kiov.iov_len = len;
1279 ret = ptrace_regset(child, request, addr, &kiov);
1280 if (!ret)
1281 ret = __put_user(kiov.iov_len, &uiov->iov_len);
1282 break;
1284 #endif
1286 default:
1287 ret = ptrace_request(child, request, addr, data);
1290 return ret;
1293 COMPAT_SYSCALL_DEFINE4(ptrace, compat_long_t, request, compat_long_t, pid,
1294 compat_long_t, addr, compat_long_t, data)
1296 struct task_struct *child;
1297 long ret;
1299 if (request == PTRACE_TRACEME) {
1300 ret = ptrace_traceme();
1301 goto out;
1304 child = ptrace_get_task_struct(pid);
1305 if (IS_ERR(child)) {
1306 ret = PTR_ERR(child);
1307 goto out;
1310 if (request == PTRACE_ATTACH || request == PTRACE_SEIZE) {
1311 ret = ptrace_attach(child, request, addr, data);
1313 * Some architectures need to do book-keeping after
1314 * a ptrace attach.
1316 if (!ret)
1317 arch_ptrace_attach(child);
1318 goto out_put_task_struct;
1321 ret = ptrace_check_attach(child, request == PTRACE_KILL ||
1322 request == PTRACE_INTERRUPT);
1323 if (!ret) {
1324 ret = compat_arch_ptrace(child, request, addr, data);
1325 if (ret || request != PTRACE_DETACH)
1326 ptrace_unfreeze_traced(child);
1329 out_put_task_struct:
1330 put_task_struct(child);
1331 out:
1332 return ret;
1334 #endif /* CONFIG_COMPAT */