]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - kernel/ptrace.c
ptrace: take into account saved_sigmask in PTRACE{GET,SET}SIGMASK
[mirror_ubuntu-bionic-kernel.git] / kernel / ptrace.c
1 /*
2 * linux/kernel/ptrace.c
3 *
4 * (C) Copyright 1999 Linus Torvalds
5 *
6 * Common interfaces for "ptrace()" which we do not want
7 * to continually duplicate across every architecture.
8 */
9
10 #include <linux/capability.h>
11 #include <linux/export.h>
12 #include <linux/sched.h>
13 #include <linux/sched/mm.h>
14 #include <linux/sched/coredump.h>
15 #include <linux/sched/task.h>
16 #include <linux/errno.h>
17 #include <linux/mm.h>
18 #include <linux/highmem.h>
19 #include <linux/pagemap.h>
20 #include <linux/ptrace.h>
21 #include <linux/security.h>
22 #include <linux/signal.h>
23 #include <linux/uio.h>
24 #include <linux/audit.h>
25 #include <linux/pid_namespace.h>
26 #include <linux/syscalls.h>
27 #include <linux/uaccess.h>
28 #include <linux/regset.h>
29 #include <linux/hw_breakpoint.h>
30 #include <linux/cn_proc.h>
31 #include <linux/compat.h>
32 #include <linux/sched/signal.h>
33
34 /*
35 * Access another process' address space via ptrace.
36 * Source/target buffer must be kernel space,
37 * Do not walk the page table directly, use get_user_pages
38 */
39 int ptrace_access_vm(struct task_struct *tsk, unsigned long addr,
40 void *buf, int len, unsigned int gup_flags)
41 {
42 struct mm_struct *mm;
43 int ret;
44
45 mm = get_task_mm(tsk);
46 if (!mm)
47 return 0;
48
49 if (!tsk->ptrace ||
50 (current != tsk->parent) ||
51 ((get_dumpable(mm) != SUID_DUMP_USER) &&
52 !ptracer_capable(tsk, mm->user_ns))) {
53 mmput(mm);
54 return 0;
55 }
56
57 ret = __access_remote_vm(tsk, mm, addr, buf, len, gup_flags);
58 mmput(mm);
59
60 return ret;
61 }
62
63
64 void __ptrace_link(struct task_struct *child, struct task_struct *new_parent,
65 const struct cred *ptracer_cred)
66 {
67 BUG_ON(!list_empty(&child->ptrace_entry));
68 list_add(&child->ptrace_entry, &new_parent->ptraced);
69 child->parent = new_parent;
70 child->ptracer_cred = get_cred(ptracer_cred);
71 }
72
73 /*
74 * ptrace a task: make the debugger its new parent and
75 * move it to the ptrace list.
76 *
77 * Must be called with the tasklist lock write-held.
78 */
79 static void ptrace_link(struct task_struct *child, struct task_struct *new_parent)
80 {
81 __ptrace_link(child, new_parent, current_cred());
82 }
83
84 /**
85 * __ptrace_unlink - unlink ptracee and restore its execution state
86 * @child: ptracee to be unlinked
87 *
88 * Remove @child from the ptrace list, move it back to the original parent,
89 * and restore the execution state so that it conforms to the group stop
90 * state.
91 *
92 * Unlinking can happen via two paths - explicit PTRACE_DETACH or ptracer
93 * exiting. For PTRACE_DETACH, unless the ptracee has been killed between
94 * ptrace_check_attach() and here, it's guaranteed to be in TASK_TRACED.
95 * If the ptracer is exiting, the ptracee can be in any state.
96 *
97 * After detach, the ptracee should be in a state which conforms to the
98 * group stop. If the group is stopped or in the process of stopping, the
99 * ptracee should be put into TASK_STOPPED; otherwise, it should be woken
100 * up from TASK_TRACED.
101 *
102 * If the ptracee is in TASK_TRACED and needs to be moved to TASK_STOPPED,
103 * it goes through TRACED -> RUNNING -> STOPPED transition which is similar
104 * to but in the opposite direction of what happens while attaching to a
105 * stopped task. However, in this direction, the intermediate RUNNING
106 * state is not hidden even from the current ptracer and if it immediately
107 * re-attaches and performs a WNOHANG wait(2), it may fail.
108 *
109 * CONTEXT:
110 * write_lock_irq(tasklist_lock)
111 */
112 void __ptrace_unlink(struct task_struct *child)
113 {
114 const struct cred *old_cred;
115 BUG_ON(!child->ptrace);
116
117 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
118
119 child->parent = child->real_parent;
120 list_del_init(&child->ptrace_entry);
121 old_cred = child->ptracer_cred;
122 child->ptracer_cred = NULL;
123 put_cred(old_cred);
124
125 spin_lock(&child->sighand->siglock);
126 child->ptrace = 0;
127 /*
128 * Clear all pending traps and TRAPPING. TRAPPING should be
129 * cleared regardless of JOBCTL_STOP_PENDING. Do it explicitly.
130 */
131 task_clear_jobctl_pending(child, JOBCTL_TRAP_MASK);
132 task_clear_jobctl_trapping(child);
133
134 /*
135 * Reinstate JOBCTL_STOP_PENDING if group stop is in effect and
136 * @child isn't dead.
137 */
138 if (!(child->flags & PF_EXITING) &&
139 (child->signal->flags & SIGNAL_STOP_STOPPED ||
140 child->signal->group_stop_count)) {
141 child->jobctl |= JOBCTL_STOP_PENDING;
142
143 /*
144 * This is only possible if this thread was cloned by the
145 * traced task running in the stopped group, set the signal
146 * for the future reports.
147 * FIXME: we should change ptrace_init_task() to handle this
148 * case.
149 */
150 if (!(child->jobctl & JOBCTL_STOP_SIGMASK))
151 child->jobctl |= SIGSTOP;
152 }
153
154 /*
155 * If transition to TASK_STOPPED is pending or in TASK_TRACED, kick
156 * @child in the butt. Note that @resume should be used iff @child
157 * is in TASK_TRACED; otherwise, we might unduly disrupt
158 * TASK_KILLABLE sleeps.
159 */
160 if (child->jobctl & JOBCTL_STOP_PENDING || task_is_traced(child))
161 ptrace_signal_wake_up(child, true);
162
163 spin_unlock(&child->sighand->siglock);
164 }
165
166 /* Ensure that nothing can wake it up, even SIGKILL */
167 static bool ptrace_freeze_traced(struct task_struct *task)
168 {
169 bool ret = false;
170
171 /* Lockless, nobody but us can set this flag */
172 if (task->jobctl & JOBCTL_LISTENING)
173 return ret;
174
175 spin_lock_irq(&task->sighand->siglock);
176 if (task_is_traced(task) && !__fatal_signal_pending(task)) {
177 task->state = __TASK_TRACED;
178 ret = true;
179 }
180 spin_unlock_irq(&task->sighand->siglock);
181
182 return ret;
183 }
184
185 static void ptrace_unfreeze_traced(struct task_struct *task)
186 {
187 if (task->state != __TASK_TRACED)
188 return;
189
190 WARN_ON(!task->ptrace || task->parent != current);
191
192 /*
193 * PTRACE_LISTEN can allow ptrace_trap_notify to wake us up remotely.
194 * Recheck state under the lock to close this race.
195 */
196 spin_lock_irq(&task->sighand->siglock);
197 if (task->state == __TASK_TRACED) {
198 if (__fatal_signal_pending(task))
199 wake_up_state(task, __TASK_TRACED);
200 else
201 task->state = TASK_TRACED;
202 }
203 spin_unlock_irq(&task->sighand->siglock);
204 }
205
206 /**
207 * ptrace_check_attach - check whether ptracee is ready for ptrace operation
208 * @child: ptracee to check for
209 * @ignore_state: don't check whether @child is currently %TASK_TRACED
210 *
211 * Check whether @child is being ptraced by %current and ready for further
212 * ptrace operations. If @ignore_state is %false, @child also should be in
213 * %TASK_TRACED state and on return the child is guaranteed to be traced
214 * and not executing. If @ignore_state is %true, @child can be in any
215 * state.
216 *
217 * CONTEXT:
218 * Grabs and releases tasklist_lock and @child->sighand->siglock.
219 *
220 * RETURNS:
221 * 0 on success, -ESRCH if %child is not ready.
222 */
223 static int ptrace_check_attach(struct task_struct *child, bool ignore_state)
224 {
225 int ret = -ESRCH;
226
227 /*
228 * We take the read lock around doing both checks to close a
229 * possible race where someone else was tracing our child and
230 * detached between these two checks. After this locked check,
231 * we are sure that this is our traced child and that can only
232 * be changed by us so it's not changing right after this.
233 */
234 read_lock(&tasklist_lock);
235 if (child->ptrace && child->parent == current) {
236 WARN_ON(child->state == __TASK_TRACED);
237 /*
238 * child->sighand can't be NULL, release_task()
239 * does ptrace_unlink() before __exit_signal().
240 */
241 if (ignore_state || ptrace_freeze_traced(child))
242 ret = 0;
243 }
244 read_unlock(&tasklist_lock);
245
246 if (!ret && !ignore_state) {
247 if (!wait_task_inactive(child, __TASK_TRACED)) {
248 /*
249 * This can only happen if may_ptrace_stop() fails and
250 * ptrace_stop() changes ->state back to TASK_RUNNING,
251 * so we should not worry about leaking __TASK_TRACED.
252 */
253 WARN_ON(child->state == __TASK_TRACED);
254 ret = -ESRCH;
255 }
256 }
257
258 return ret;
259 }
260
261 static int ptrace_has_cap(struct user_namespace *ns, unsigned int mode)
262 {
263 if (mode & PTRACE_MODE_NOAUDIT)
264 return has_ns_capability_noaudit(current, ns, CAP_SYS_PTRACE);
265 else
266 return has_ns_capability(current, ns, CAP_SYS_PTRACE);
267 }
268
269 /* Returns 0 on success, -errno on denial. */
270 static int __ptrace_may_access(struct task_struct *task, unsigned int mode)
271 {
272 const struct cred *cred = current_cred(), *tcred;
273 struct mm_struct *mm;
274 kuid_t caller_uid;
275 kgid_t caller_gid;
276
277 if (!(mode & PTRACE_MODE_FSCREDS) == !(mode & PTRACE_MODE_REALCREDS)) {
278 WARN(1, "denying ptrace access check without PTRACE_MODE_*CREDS\n");
279 return -EPERM;
280 }
281
282 /* May we inspect the given task?
283 * This check is used both for attaching with ptrace
284 * and for allowing access to sensitive information in /proc.
285 *
286 * ptrace_attach denies several cases that /proc allows
287 * because setting up the necessary parent/child relationship
288 * or halting the specified task is impossible.
289 */
290
291 /* Don't let security modules deny introspection */
292 if (same_thread_group(task, current))
293 return 0;
294 rcu_read_lock();
295 if (mode & PTRACE_MODE_FSCREDS) {
296 caller_uid = cred->fsuid;
297 caller_gid = cred->fsgid;
298 } else {
299 /*
300 * Using the euid would make more sense here, but something
301 * in userland might rely on the old behavior, and this
302 * shouldn't be a security problem since
303 * PTRACE_MODE_REALCREDS implies that the caller explicitly
304 * used a syscall that requests access to another process
305 * (and not a filesystem syscall to procfs).
306 */
307 caller_uid = cred->uid;
308 caller_gid = cred->gid;
309 }
310 tcred = __task_cred(task);
311 if (uid_eq(caller_uid, tcred->euid) &&
312 uid_eq(caller_uid, tcred->suid) &&
313 uid_eq(caller_uid, tcred->uid) &&
314 gid_eq(caller_gid, tcred->egid) &&
315 gid_eq(caller_gid, tcred->sgid) &&
316 gid_eq(caller_gid, tcred->gid))
317 goto ok;
318 if (ptrace_has_cap(tcred->user_ns, mode))
319 goto ok;
320 rcu_read_unlock();
321 return -EPERM;
322 ok:
323 rcu_read_unlock();
324 mm = task->mm;
325 if (mm &&
326 ((get_dumpable(mm) != SUID_DUMP_USER) &&
327 !ptrace_has_cap(mm->user_ns, mode)))
328 return -EPERM;
329
330 return security_ptrace_access_check(task, mode);
331 }
332
333 bool ptrace_may_access(struct task_struct *task, unsigned int mode)
334 {
335 int err;
336 task_lock(task);
337 err = __ptrace_may_access(task, mode);
338 task_unlock(task);
339 return !err;
340 }
341
342 static int ptrace_attach(struct task_struct *task, long request,
343 unsigned long addr,
344 unsigned long flags)
345 {
346 bool seize = (request == PTRACE_SEIZE);
347 int retval;
348
349 retval = -EIO;
350 if (seize) {
351 if (addr != 0)
352 goto out;
353 if (flags & ~(unsigned long)PTRACE_O_MASK)
354 goto out;
355 flags = PT_PTRACED | PT_SEIZED | (flags << PT_OPT_FLAG_SHIFT);
356 } else {
357 flags = PT_PTRACED;
358 }
359
360 audit_ptrace(task);
361
362 retval = -EPERM;
363 if (unlikely(task->flags & PF_KTHREAD))
364 goto out;
365 if (same_thread_group(task, current))
366 goto out;
367
368 /*
369 * Protect exec's credential calculations against our interference;
370 * SUID, SGID and LSM creds get determined differently
371 * under ptrace.
372 */
373 retval = -ERESTARTNOINTR;
374 if (mutex_lock_interruptible(&task->signal->cred_guard_mutex))
375 goto out;
376
377 task_lock(task);
378 retval = __ptrace_may_access(task, PTRACE_MODE_ATTACH_REALCREDS);
379 task_unlock(task);
380 if (retval)
381 goto unlock_creds;
382
383 write_lock_irq(&tasklist_lock);
384 retval = -EPERM;
385 if (unlikely(task->exit_state))
386 goto unlock_tasklist;
387 if (task->ptrace)
388 goto unlock_tasklist;
389
390 if (seize)
391 flags |= PT_SEIZED;
392 task->ptrace = flags;
393
394 ptrace_link(task, current);
395
396 /* SEIZE doesn't trap tracee on attach */
397 if (!seize)
398 send_sig_info(SIGSTOP, SEND_SIG_FORCED, task);
399
400 spin_lock(&task->sighand->siglock);
401
402 /*
403 * If the task is already STOPPED, set JOBCTL_TRAP_STOP and
404 * TRAPPING, and kick it so that it transits to TRACED. TRAPPING
405 * will be cleared if the child completes the transition or any
406 * event which clears the group stop states happens. We'll wait
407 * for the transition to complete before returning from this
408 * function.
409 *
410 * This hides STOPPED -> RUNNING -> TRACED transition from the
411 * attaching thread but a different thread in the same group can
412 * still observe the transient RUNNING state. IOW, if another
413 * thread's WNOHANG wait(2) on the stopped tracee races against
414 * ATTACH, the wait(2) may fail due to the transient RUNNING.
415 *
416 * The following task_is_stopped() test is safe as both transitions
417 * in and out of STOPPED are protected by siglock.
418 */
419 if (task_is_stopped(task) &&
420 task_set_jobctl_pending(task, JOBCTL_TRAP_STOP | JOBCTL_TRAPPING))
421 signal_wake_up_state(task, __TASK_STOPPED);
422
423 spin_unlock(&task->sighand->siglock);
424
425 retval = 0;
426 unlock_tasklist:
427 write_unlock_irq(&tasklist_lock);
428 unlock_creds:
429 mutex_unlock(&task->signal->cred_guard_mutex);
430 out:
431 if (!retval) {
432 /*
433 * We do not bother to change retval or clear JOBCTL_TRAPPING
434 * if wait_on_bit() was interrupted by SIGKILL. The tracer will
435 * not return to user-mode, it will exit and clear this bit in
436 * __ptrace_unlink() if it wasn't already cleared by the tracee;
437 * and until then nobody can ptrace this task.
438 */
439 wait_on_bit(&task->jobctl, JOBCTL_TRAPPING_BIT, TASK_KILLABLE);
440 proc_ptrace_connector(task, PTRACE_ATTACH);
441 }
442
443 return retval;
444 }
445
446 /**
447 * ptrace_traceme -- helper for PTRACE_TRACEME
448 *
449 * Performs checks and sets PT_PTRACED.
450 * Should be used by all ptrace implementations for PTRACE_TRACEME.
451 */
452 static int ptrace_traceme(void)
453 {
454 int ret = -EPERM;
455
456 write_lock_irq(&tasklist_lock);
457 /* Are we already being traced? */
458 if (!current->ptrace) {
459 ret = security_ptrace_traceme(current->parent);
460 /*
461 * Check PF_EXITING to ensure ->real_parent has not passed
462 * exit_ptrace(). Otherwise we don't report the error but
463 * pretend ->real_parent untraces us right after return.
464 */
465 if (!ret && !(current->real_parent->flags & PF_EXITING)) {
466 current->ptrace = PT_PTRACED;
467 ptrace_link(current, current->real_parent);
468 }
469 }
470 write_unlock_irq(&tasklist_lock);
471
472 return ret;
473 }
474
475 /*
476 * Called with irqs disabled, returns true if childs should reap themselves.
477 */
478 static int ignoring_children(struct sighand_struct *sigh)
479 {
480 int ret;
481 spin_lock(&sigh->siglock);
482 ret = (sigh->action[SIGCHLD-1].sa.sa_handler == SIG_IGN) ||
483 (sigh->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT);
484 spin_unlock(&sigh->siglock);
485 return ret;
486 }
487
488 /*
489 * Called with tasklist_lock held for writing.
490 * Unlink a traced task, and clean it up if it was a traced zombie.
491 * Return true if it needs to be reaped with release_task().
492 * (We can't call release_task() here because we already hold tasklist_lock.)
493 *
494 * If it's a zombie, our attachedness prevented normal parent notification
495 * or self-reaping. Do notification now if it would have happened earlier.
496 * If it should reap itself, return true.
497 *
498 * If it's our own child, there is no notification to do. But if our normal
499 * children self-reap, then this child was prevented by ptrace and we must
500 * reap it now, in that case we must also wake up sub-threads sleeping in
501 * do_wait().
502 */
503 static bool __ptrace_detach(struct task_struct *tracer, struct task_struct *p)
504 {
505 bool dead;
506
507 __ptrace_unlink(p);
508
509 if (p->exit_state != EXIT_ZOMBIE)
510 return false;
511
512 dead = !thread_group_leader(p);
513
514 if (!dead && thread_group_empty(p)) {
515 if (!same_thread_group(p->real_parent, tracer))
516 dead = do_notify_parent(p, p->exit_signal);
517 else if (ignoring_children(tracer->sighand)) {
518 __wake_up_parent(p, tracer);
519 dead = true;
520 }
521 }
522 /* Mark it as in the process of being reaped. */
523 if (dead)
524 p->exit_state = EXIT_DEAD;
525 return dead;
526 }
527
528 static int ptrace_detach(struct task_struct *child, unsigned int data)
529 {
530 if (!valid_signal(data))
531 return -EIO;
532
533 /* Architecture-specific hardware disable .. */
534 ptrace_disable(child);
535
536 write_lock_irq(&tasklist_lock);
537 /*
538 * We rely on ptrace_freeze_traced(). It can't be killed and
539 * untraced by another thread, it can't be a zombie.
540 */
541 WARN_ON(!child->ptrace || child->exit_state);
542 /*
543 * tasklist_lock avoids the race with wait_task_stopped(), see
544 * the comment in ptrace_resume().
545 */
546 child->exit_code = data;
547 __ptrace_detach(current, child);
548 write_unlock_irq(&tasklist_lock);
549
550 proc_ptrace_connector(child, PTRACE_DETACH);
551
552 return 0;
553 }
554
555 /*
556 * Detach all tasks we were using ptrace on. Called with tasklist held
557 * for writing.
558 */
559 void exit_ptrace(struct task_struct *tracer, struct list_head *dead)
560 {
561 struct task_struct *p, *n;
562
563 list_for_each_entry_safe(p, n, &tracer->ptraced, ptrace_entry) {
564 if (unlikely(p->ptrace & PT_EXITKILL))
565 send_sig_info(SIGKILL, SEND_SIG_FORCED, p);
566
567 if (__ptrace_detach(tracer, p))
568 list_add(&p->ptrace_entry, dead);
569 }
570 }
571
572 int ptrace_readdata(struct task_struct *tsk, unsigned long src, char __user *dst, int len)
573 {
574 int copied = 0;
575
576 while (len > 0) {
577 char buf[128];
578 int this_len, retval;
579
580 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
581 retval = ptrace_access_vm(tsk, src, buf, this_len, FOLL_FORCE);
582
583 if (!retval) {
584 if (copied)
585 break;
586 return -EIO;
587 }
588 if (copy_to_user(dst, buf, retval))
589 return -EFAULT;
590 copied += retval;
591 src += retval;
592 dst += retval;
593 len -= retval;
594 }
595 return copied;
596 }
597
598 int ptrace_writedata(struct task_struct *tsk, char __user *src, unsigned long dst, int len)
599 {
600 int copied = 0;
601
602 while (len > 0) {
603 char buf[128];
604 int this_len, retval;
605
606 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
607 if (copy_from_user(buf, src, this_len))
608 return -EFAULT;
609 retval = ptrace_access_vm(tsk, dst, buf, this_len,
610 FOLL_FORCE | FOLL_WRITE);
611 if (!retval) {
612 if (copied)
613 break;
614 return -EIO;
615 }
616 copied += retval;
617 src += retval;
618 dst += retval;
619 len -= retval;
620 }
621 return copied;
622 }
623
624 static int ptrace_setoptions(struct task_struct *child, unsigned long data)
625 {
626 unsigned flags;
627
628 if (data & ~(unsigned long)PTRACE_O_MASK)
629 return -EINVAL;
630
631 if (unlikely(data & PTRACE_O_SUSPEND_SECCOMP)) {
632 if (!IS_ENABLED(CONFIG_CHECKPOINT_RESTORE) ||
633 !IS_ENABLED(CONFIG_SECCOMP))
634 return -EINVAL;
635
636 if (!capable(CAP_SYS_ADMIN))
637 return -EPERM;
638
639 if (seccomp_mode(&current->seccomp) != SECCOMP_MODE_DISABLED ||
640 current->ptrace & PT_SUSPEND_SECCOMP)
641 return -EPERM;
642 }
643
644 /* Avoid intermediate state when all opts are cleared */
645 flags = child->ptrace;
646 flags &= ~(PTRACE_O_MASK << PT_OPT_FLAG_SHIFT);
647 flags |= (data << PT_OPT_FLAG_SHIFT);
648 child->ptrace = flags;
649
650 return 0;
651 }
652
653 static int ptrace_getsiginfo(struct task_struct *child, siginfo_t *info)
654 {
655 unsigned long flags;
656 int error = -ESRCH;
657
658 if (lock_task_sighand(child, &flags)) {
659 error = -EINVAL;
660 if (likely(child->last_siginfo != NULL)) {
661 *info = *child->last_siginfo;
662 error = 0;
663 }
664 unlock_task_sighand(child, &flags);
665 }
666 return error;
667 }
668
669 static int ptrace_setsiginfo(struct task_struct *child, const siginfo_t *info)
670 {
671 unsigned long flags;
672 int error = -ESRCH;
673
674 if (lock_task_sighand(child, &flags)) {
675 error = -EINVAL;
676 if (likely(child->last_siginfo != NULL)) {
677 *child->last_siginfo = *info;
678 error = 0;
679 }
680 unlock_task_sighand(child, &flags);
681 }
682 return error;
683 }
684
685 static int ptrace_peek_siginfo(struct task_struct *child,
686 unsigned long addr,
687 unsigned long data)
688 {
689 struct ptrace_peeksiginfo_args arg;
690 struct sigpending *pending;
691 struct sigqueue *q;
692 int ret, i;
693
694 ret = copy_from_user(&arg, (void __user *) addr,
695 sizeof(struct ptrace_peeksiginfo_args));
696 if (ret)
697 return -EFAULT;
698
699 if (arg.flags & ~PTRACE_PEEKSIGINFO_SHARED)
700 return -EINVAL; /* unknown flags */
701
702 if (arg.nr < 0)
703 return -EINVAL;
704
705 if (arg.flags & PTRACE_PEEKSIGINFO_SHARED)
706 pending = &child->signal->shared_pending;
707 else
708 pending = &child->pending;
709
710 for (i = 0; i < arg.nr; ) {
711 siginfo_t info;
712 s32 off = arg.off + i;
713
714 spin_lock_irq(&child->sighand->siglock);
715 list_for_each_entry(q, &pending->list, list) {
716 if (!off--) {
717 copy_siginfo(&info, &q->info);
718 break;
719 }
720 }
721 spin_unlock_irq(&child->sighand->siglock);
722
723 if (off >= 0) /* beyond the end of the list */
724 break;
725
726 #ifdef CONFIG_COMPAT
727 if (unlikely(in_compat_syscall())) {
728 compat_siginfo_t __user *uinfo = compat_ptr(data);
729
730 if (copy_siginfo_to_user32(uinfo, &info)) {
731 ret = -EFAULT;
732 break;
733 }
734
735 } else
736 #endif
737 {
738 siginfo_t __user *uinfo = (siginfo_t __user *) data;
739
740 if (copy_siginfo_to_user(uinfo, &info)) {
741 ret = -EFAULT;
742 break;
743 }
744 }
745
746 data += sizeof(siginfo_t);
747 i++;
748
749 if (signal_pending(current))
750 break;
751
752 cond_resched();
753 }
754
755 if (i > 0)
756 return i;
757
758 return ret;
759 }
760
761 #ifdef PTRACE_SINGLESTEP
762 #define is_singlestep(request) ((request) == PTRACE_SINGLESTEP)
763 #else
764 #define is_singlestep(request) 0
765 #endif
766
767 #ifdef PTRACE_SINGLEBLOCK
768 #define is_singleblock(request) ((request) == PTRACE_SINGLEBLOCK)
769 #else
770 #define is_singleblock(request) 0
771 #endif
772
773 #ifdef PTRACE_SYSEMU
774 #define is_sysemu_singlestep(request) ((request) == PTRACE_SYSEMU_SINGLESTEP)
775 #else
776 #define is_sysemu_singlestep(request) 0
777 #endif
778
779 static int ptrace_resume(struct task_struct *child, long request,
780 unsigned long data)
781 {
782 bool need_siglock;
783
784 if (!valid_signal(data))
785 return -EIO;
786
787 if (request == PTRACE_SYSCALL)
788 set_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
789 else
790 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
791
792 #ifdef TIF_SYSCALL_EMU
793 if (request == PTRACE_SYSEMU || request == PTRACE_SYSEMU_SINGLESTEP)
794 set_tsk_thread_flag(child, TIF_SYSCALL_EMU);
795 else
796 clear_tsk_thread_flag(child, TIF_SYSCALL_EMU);
797 #endif
798
799 if (is_singleblock(request)) {
800 if (unlikely(!arch_has_block_step()))
801 return -EIO;
802 user_enable_block_step(child);
803 } else if (is_singlestep(request) || is_sysemu_singlestep(request)) {
804 if (unlikely(!arch_has_single_step()))
805 return -EIO;
806 user_enable_single_step(child);
807 } else {
808 user_disable_single_step(child);
809 }
810
811 /*
812 * Change ->exit_code and ->state under siglock to avoid the race
813 * with wait_task_stopped() in between; a non-zero ->exit_code will
814 * wrongly look like another report from tracee.
815 *
816 * Note that we need siglock even if ->exit_code == data and/or this
817 * status was not reported yet, the new status must not be cleared by
818 * wait_task_stopped() after resume.
819 *
820 * If data == 0 we do not care if wait_task_stopped() reports the old
821 * status and clears the code too; this can't race with the tracee, it
822 * takes siglock after resume.
823 */
824 need_siglock = data && !thread_group_empty(current);
825 if (need_siglock)
826 spin_lock_irq(&child->sighand->siglock);
827 child->exit_code = data;
828 wake_up_state(child, __TASK_TRACED);
829 if (need_siglock)
830 spin_unlock_irq(&child->sighand->siglock);
831
832 return 0;
833 }
834
835 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
836
837 static const struct user_regset *
838 find_regset(const struct user_regset_view *view, unsigned int type)
839 {
840 const struct user_regset *regset;
841 int n;
842
843 for (n = 0; n < view->n; ++n) {
844 regset = view->regsets + n;
845 if (regset->core_note_type == type)
846 return regset;
847 }
848
849 return NULL;
850 }
851
852 static int ptrace_regset(struct task_struct *task, int req, unsigned int type,
853 struct iovec *kiov)
854 {
855 const struct user_regset_view *view = task_user_regset_view(task);
856 const struct user_regset *regset = find_regset(view, type);
857 int regset_no;
858
859 if (!regset || (kiov->iov_len % regset->size) != 0)
860 return -EINVAL;
861
862 regset_no = regset - view->regsets;
863 kiov->iov_len = min(kiov->iov_len,
864 (__kernel_size_t) (regset->n * regset->size));
865
866 if (req == PTRACE_GETREGSET)
867 return copy_regset_to_user(task, view, regset_no, 0,
868 kiov->iov_len, kiov->iov_base);
869 else
870 return copy_regset_from_user(task, view, regset_no, 0,
871 kiov->iov_len, kiov->iov_base);
872 }
873
874 /*
875 * This is declared in linux/regset.h and defined in machine-dependent
876 * code. We put the export here, near the primary machine-neutral use,
877 * to ensure no machine forgets it.
878 */
879 EXPORT_SYMBOL_GPL(task_user_regset_view);
880 #endif
881
882 int ptrace_request(struct task_struct *child, long request,
883 unsigned long addr, unsigned long data)
884 {
885 bool seized = child->ptrace & PT_SEIZED;
886 int ret = -EIO;
887 siginfo_t siginfo, *si;
888 void __user *datavp = (void __user *) data;
889 unsigned long __user *datalp = datavp;
890 unsigned long flags;
891
892 switch (request) {
893 case PTRACE_PEEKTEXT:
894 case PTRACE_PEEKDATA:
895 return generic_ptrace_peekdata(child, addr, data);
896 case PTRACE_POKETEXT:
897 case PTRACE_POKEDATA:
898 return generic_ptrace_pokedata(child, addr, data);
899
900 #ifdef PTRACE_OLDSETOPTIONS
901 case PTRACE_OLDSETOPTIONS:
902 #endif
903 case PTRACE_SETOPTIONS:
904 ret = ptrace_setoptions(child, data);
905 break;
906 case PTRACE_GETEVENTMSG:
907 ret = put_user(child->ptrace_message, datalp);
908 break;
909
910 case PTRACE_PEEKSIGINFO:
911 ret = ptrace_peek_siginfo(child, addr, data);
912 break;
913
914 case PTRACE_GETSIGINFO:
915 ret = ptrace_getsiginfo(child, &siginfo);
916 if (!ret)
917 ret = copy_siginfo_to_user(datavp, &siginfo);
918 break;
919
920 case PTRACE_SETSIGINFO:
921 if (copy_from_user(&siginfo, datavp, sizeof siginfo))
922 ret = -EFAULT;
923 else
924 ret = ptrace_setsiginfo(child, &siginfo);
925 break;
926
927 case PTRACE_GETSIGMASK: {
928 sigset_t *mask;
929
930 if (addr != sizeof(sigset_t)) {
931 ret = -EINVAL;
932 break;
933 }
934
935 if (test_tsk_restore_sigmask(child))
936 mask = &child->saved_sigmask;
937 else
938 mask = &child->blocked;
939
940 if (copy_to_user(datavp, mask, sizeof(sigset_t)))
941 ret = -EFAULT;
942 else
943 ret = 0;
944
945 break;
946 }
947
948 case PTRACE_SETSIGMASK: {
949 sigset_t new_set;
950
951 if (addr != sizeof(sigset_t)) {
952 ret = -EINVAL;
953 break;
954 }
955
956 if (copy_from_user(&new_set, datavp, sizeof(sigset_t))) {
957 ret = -EFAULT;
958 break;
959 }
960
961 sigdelsetmask(&new_set, sigmask(SIGKILL)|sigmask(SIGSTOP));
962
963 /*
964 * Every thread does recalc_sigpending() after resume, so
965 * retarget_shared_pending() and recalc_sigpending() are not
966 * called here.
967 */
968 spin_lock_irq(&child->sighand->siglock);
969 child->blocked = new_set;
970 spin_unlock_irq(&child->sighand->siglock);
971
972 clear_tsk_restore_sigmask(child);
973
974 ret = 0;
975 break;
976 }
977
978 case PTRACE_INTERRUPT:
979 /*
980 * Stop tracee without any side-effect on signal or job
981 * control. At least one trap is guaranteed to happen
982 * after this request. If @child is already trapped, the
983 * current trap is not disturbed and another trap will
984 * happen after the current trap is ended with PTRACE_CONT.
985 *
986 * The actual trap might not be PTRACE_EVENT_STOP trap but
987 * the pending condition is cleared regardless.
988 */
989 if (unlikely(!seized || !lock_task_sighand(child, &flags)))
990 break;
991
992 /*
993 * INTERRUPT doesn't disturb existing trap sans one
994 * exception. If ptracer issued LISTEN for the current
995 * STOP, this INTERRUPT should clear LISTEN and re-trap
996 * tracee into STOP.
997 */
998 if (likely(task_set_jobctl_pending(child, JOBCTL_TRAP_STOP)))
999 ptrace_signal_wake_up(child, child->jobctl & JOBCTL_LISTENING);
1000
1001 unlock_task_sighand(child, &flags);
1002 ret = 0;
1003 break;
1004
1005 case PTRACE_LISTEN:
1006 /*
1007 * Listen for events. Tracee must be in STOP. It's not
1008 * resumed per-se but is not considered to be in TRACED by
1009 * wait(2) or ptrace(2). If an async event (e.g. group
1010 * stop state change) happens, tracee will enter STOP trap
1011 * again. Alternatively, ptracer can issue INTERRUPT to
1012 * finish listening and re-trap tracee into STOP.
1013 */
1014 if (unlikely(!seized || !lock_task_sighand(child, &flags)))
1015 break;
1016
1017 si = child->last_siginfo;
1018 if (likely(si && (si->si_code >> 8) == PTRACE_EVENT_STOP)) {
1019 child->jobctl |= JOBCTL_LISTENING;
1020 /*
1021 * If NOTIFY is set, it means event happened between
1022 * start of this trap and now. Trigger re-trap.
1023 */
1024 if (child->jobctl & JOBCTL_TRAP_NOTIFY)
1025 ptrace_signal_wake_up(child, true);
1026 ret = 0;
1027 }
1028 unlock_task_sighand(child, &flags);
1029 break;
1030
1031 case PTRACE_DETACH: /* detach a process that was attached. */
1032 ret = ptrace_detach(child, data);
1033 break;
1034
1035 #ifdef CONFIG_BINFMT_ELF_FDPIC
1036 case PTRACE_GETFDPIC: {
1037 struct mm_struct *mm = get_task_mm(child);
1038 unsigned long tmp = 0;
1039
1040 ret = -ESRCH;
1041 if (!mm)
1042 break;
1043
1044 switch (addr) {
1045 case PTRACE_GETFDPIC_EXEC:
1046 tmp = mm->context.exec_fdpic_loadmap;
1047 break;
1048 case PTRACE_GETFDPIC_INTERP:
1049 tmp = mm->context.interp_fdpic_loadmap;
1050 break;
1051 default:
1052 break;
1053 }
1054 mmput(mm);
1055
1056 ret = put_user(tmp, datalp);
1057 break;
1058 }
1059 #endif
1060
1061 #ifdef PTRACE_SINGLESTEP
1062 case PTRACE_SINGLESTEP:
1063 #endif
1064 #ifdef PTRACE_SINGLEBLOCK
1065 case PTRACE_SINGLEBLOCK:
1066 #endif
1067 #ifdef PTRACE_SYSEMU
1068 case PTRACE_SYSEMU:
1069 case PTRACE_SYSEMU_SINGLESTEP:
1070 #endif
1071 case PTRACE_SYSCALL:
1072 case PTRACE_CONT:
1073 return ptrace_resume(child, request, data);
1074
1075 case PTRACE_KILL:
1076 if (child->exit_state) /* already dead */
1077 return 0;
1078 return ptrace_resume(child, request, SIGKILL);
1079
1080 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
1081 case PTRACE_GETREGSET:
1082 case PTRACE_SETREGSET: {
1083 struct iovec kiov;
1084 struct iovec __user *uiov = datavp;
1085
1086 if (!access_ok(VERIFY_WRITE, uiov, sizeof(*uiov)))
1087 return -EFAULT;
1088
1089 if (__get_user(kiov.iov_base, &uiov->iov_base) ||
1090 __get_user(kiov.iov_len, &uiov->iov_len))
1091 return -EFAULT;
1092
1093 ret = ptrace_regset(child, request, addr, &kiov);
1094 if (!ret)
1095 ret = __put_user(kiov.iov_len, &uiov->iov_len);
1096 break;
1097 }
1098 #endif
1099
1100 case PTRACE_SECCOMP_GET_FILTER:
1101 ret = seccomp_get_filter(child, addr, datavp);
1102 break;
1103
1104 default:
1105 break;
1106 }
1107
1108 return ret;
1109 }
1110
1111 static struct task_struct *ptrace_get_task_struct(pid_t pid)
1112 {
1113 struct task_struct *child;
1114
1115 rcu_read_lock();
1116 child = find_task_by_vpid(pid);
1117 if (child)
1118 get_task_struct(child);
1119 rcu_read_unlock();
1120
1121 if (!child)
1122 return ERR_PTR(-ESRCH);
1123 return child;
1124 }
1125
1126 #ifndef arch_ptrace_attach
1127 #define arch_ptrace_attach(child) do { } while (0)
1128 #endif
1129
1130 SYSCALL_DEFINE4(ptrace, long, request, long, pid, unsigned long, addr,
1131 unsigned long, data)
1132 {
1133 struct task_struct *child;
1134 long ret;
1135
1136 if (request == PTRACE_TRACEME) {
1137 ret = ptrace_traceme();
1138 if (!ret)
1139 arch_ptrace_attach(current);
1140 goto out;
1141 }
1142
1143 child = ptrace_get_task_struct(pid);
1144 if (IS_ERR(child)) {
1145 ret = PTR_ERR(child);
1146 goto out;
1147 }
1148
1149 if (request == PTRACE_ATTACH || request == PTRACE_SEIZE) {
1150 ret = ptrace_attach(child, request, addr, data);
1151 /*
1152 * Some architectures need to do book-keeping after
1153 * a ptrace attach.
1154 */
1155 if (!ret)
1156 arch_ptrace_attach(child);
1157 goto out_put_task_struct;
1158 }
1159
1160 ret = ptrace_check_attach(child, request == PTRACE_KILL ||
1161 request == PTRACE_INTERRUPT);
1162 if (ret < 0)
1163 goto out_put_task_struct;
1164
1165 ret = arch_ptrace(child, request, addr, data);
1166 if (ret || request != PTRACE_DETACH)
1167 ptrace_unfreeze_traced(child);
1168
1169 out_put_task_struct:
1170 put_task_struct(child);
1171 out:
1172 return ret;
1173 }
1174
1175 int generic_ptrace_peekdata(struct task_struct *tsk, unsigned long addr,
1176 unsigned long data)
1177 {
1178 unsigned long tmp;
1179 int copied;
1180
1181 copied = ptrace_access_vm(tsk, addr, &tmp, sizeof(tmp), FOLL_FORCE);
1182 if (copied != sizeof(tmp))
1183 return -EIO;
1184 return put_user(tmp, (unsigned long __user *)data);
1185 }
1186
1187 int generic_ptrace_pokedata(struct task_struct *tsk, unsigned long addr,
1188 unsigned long data)
1189 {
1190 int copied;
1191
1192 copied = ptrace_access_vm(tsk, addr, &data, sizeof(data),
1193 FOLL_FORCE | FOLL_WRITE);
1194 return (copied == sizeof(data)) ? 0 : -EIO;
1195 }
1196
1197 #if defined CONFIG_COMPAT
1198
1199 int compat_ptrace_request(struct task_struct *child, compat_long_t request,
1200 compat_ulong_t addr, compat_ulong_t data)
1201 {
1202 compat_ulong_t __user *datap = compat_ptr(data);
1203 compat_ulong_t word;
1204 siginfo_t siginfo;
1205 int ret;
1206
1207 switch (request) {
1208 case PTRACE_PEEKTEXT:
1209 case PTRACE_PEEKDATA:
1210 ret = ptrace_access_vm(child, addr, &word, sizeof(word),
1211 FOLL_FORCE);
1212 if (ret != sizeof(word))
1213 ret = -EIO;
1214 else
1215 ret = put_user(word, datap);
1216 break;
1217
1218 case PTRACE_POKETEXT:
1219 case PTRACE_POKEDATA:
1220 ret = ptrace_access_vm(child, addr, &data, sizeof(data),
1221 FOLL_FORCE | FOLL_WRITE);
1222 ret = (ret != sizeof(data) ? -EIO : 0);
1223 break;
1224
1225 case PTRACE_GETEVENTMSG:
1226 ret = put_user((compat_ulong_t) child->ptrace_message, datap);
1227 break;
1228
1229 case PTRACE_GETSIGINFO:
1230 ret = ptrace_getsiginfo(child, &siginfo);
1231 if (!ret)
1232 ret = copy_siginfo_to_user32(
1233 (struct compat_siginfo __user *) datap,
1234 &siginfo);
1235 break;
1236
1237 case PTRACE_SETSIGINFO:
1238 memset(&siginfo, 0, sizeof siginfo);
1239 if (copy_siginfo_from_user32(
1240 &siginfo, (struct compat_siginfo __user *) datap))
1241 ret = -EFAULT;
1242 else
1243 ret = ptrace_setsiginfo(child, &siginfo);
1244 break;
1245 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
1246 case PTRACE_GETREGSET:
1247 case PTRACE_SETREGSET:
1248 {
1249 struct iovec kiov;
1250 struct compat_iovec __user *uiov =
1251 (struct compat_iovec __user *) datap;
1252 compat_uptr_t ptr;
1253 compat_size_t len;
1254
1255 if (!access_ok(VERIFY_WRITE, uiov, sizeof(*uiov)))
1256 return -EFAULT;
1257
1258 if (__get_user(ptr, &uiov->iov_base) ||
1259 __get_user(len, &uiov->iov_len))
1260 return -EFAULT;
1261
1262 kiov.iov_base = compat_ptr(ptr);
1263 kiov.iov_len = len;
1264
1265 ret = ptrace_regset(child, request, addr, &kiov);
1266 if (!ret)
1267 ret = __put_user(kiov.iov_len, &uiov->iov_len);
1268 break;
1269 }
1270 #endif
1271
1272 default:
1273 ret = ptrace_request(child, request, addr, data);
1274 }
1275
1276 return ret;
1277 }
1278
1279 COMPAT_SYSCALL_DEFINE4(ptrace, compat_long_t, request, compat_long_t, pid,
1280 compat_long_t, addr, compat_long_t, data)
1281 {
1282 struct task_struct *child;
1283 long ret;
1284
1285 if (request == PTRACE_TRACEME) {
1286 ret = ptrace_traceme();
1287 goto out;
1288 }
1289
1290 child = ptrace_get_task_struct(pid);
1291 if (IS_ERR(child)) {
1292 ret = PTR_ERR(child);
1293 goto out;
1294 }
1295
1296 if (request == PTRACE_ATTACH || request == PTRACE_SEIZE) {
1297 ret = ptrace_attach(child, request, addr, data);
1298 /*
1299 * Some architectures need to do book-keeping after
1300 * a ptrace attach.
1301 */
1302 if (!ret)
1303 arch_ptrace_attach(child);
1304 goto out_put_task_struct;
1305 }
1306
1307 ret = ptrace_check_attach(child, request == PTRACE_KILL ||
1308 request == PTRACE_INTERRUPT);
1309 if (!ret) {
1310 ret = compat_arch_ptrace(child, request, addr, data);
1311 if (ret || request != PTRACE_DETACH)
1312 ptrace_unfreeze_traced(child);
1313 }
1314
1315 out_put_task_struct:
1316 put_task_struct(child);
1317 out:
1318 return ret;
1319 }
1320 #endif /* CONFIG_COMPAT */