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/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>
29
30
__ptrace_link(struct task_struct * child,struct task_struct * new_parent,const struct cred * ptracer_cred)31 void __ptrace_link(struct task_struct *child, struct task_struct *new_parent,
32 const struct cred *ptracer_cred)
33 {
34 BUG_ON(!list_empty(&child->ptrace_entry));
35 list_add(&child->ptrace_entry, &new_parent->ptraced);
36 child->parent = new_parent;
37 child->ptracer_cred = get_cred(ptracer_cred);
38 }
39
40 /*
41 * ptrace a task: make the debugger its new parent and
42 * move it to the ptrace list.
43 *
44 * Must be called with the tasklist lock write-held.
45 */
ptrace_link(struct task_struct * child,struct task_struct * new_parent)46 static void ptrace_link(struct task_struct *child, struct task_struct *new_parent)
47 {
48 __ptrace_link(child, new_parent, current_cred());
49 }
50
51 /**
52 * __ptrace_unlink - unlink ptracee and restore its execution state
53 * @child: ptracee to be unlinked
54 *
55 * Remove @child from the ptrace list, move it back to the original parent,
56 * and restore the execution state so that it conforms to the group stop
57 * state.
58 *
59 * Unlinking can happen via two paths - explicit PTRACE_DETACH or ptracer
60 * exiting. For PTRACE_DETACH, unless the ptracee has been killed between
61 * ptrace_check_attach() and here, it's guaranteed to be in TASK_TRACED.
62 * If the ptracer is exiting, the ptracee can be in any state.
63 *
64 * After detach, the ptracee should be in a state which conforms to the
65 * group stop. If the group is stopped or in the process of stopping, the
66 * ptracee should be put into TASK_STOPPED; otherwise, it should be woken
67 * up from TASK_TRACED.
68 *
69 * If the ptracee is in TASK_TRACED and needs to be moved to TASK_STOPPED,
70 * it goes through TRACED -> RUNNING -> STOPPED transition which is similar
71 * to but in the opposite direction of what happens while attaching to a
72 * stopped task. However, in this direction, the intermediate RUNNING
73 * state is not hidden even from the current ptracer and if it immediately
74 * re-attaches and performs a WNOHANG wait(2), it may fail.
75 *
76 * CONTEXT:
77 * write_lock_irq(tasklist_lock)
78 */
__ptrace_unlink(struct task_struct * child)79 void __ptrace_unlink(struct task_struct *child)
80 {
81 const struct cred *old_cred;
82 BUG_ON(!child->ptrace);
83
84 child->ptrace = 0;
85 child->parent = child->real_parent;
86 list_del_init(&child->ptrace_entry);
87 old_cred = child->ptracer_cred;
88 child->ptracer_cred = NULL;
89 put_cred(old_cred);
90
91 spin_lock(&child->sighand->siglock);
92
93 /*
94 * Clear all pending traps and TRAPPING. TRAPPING should be
95 * cleared regardless of JOBCTL_STOP_PENDING. Do it explicitly.
96 */
97 task_clear_jobctl_pending(child, JOBCTL_TRAP_MASK);
98 task_clear_jobctl_trapping(child);
99
100 /*
101 * Reinstate JOBCTL_STOP_PENDING if group stop is in effect and
102 * @child isn't dead.
103 */
104 if (!(child->flags & PF_EXITING) &&
105 (child->signal->flags & SIGNAL_STOP_STOPPED ||
106 child->signal->group_stop_count)) {
107 child->jobctl |= JOBCTL_STOP_PENDING;
108
109 /*
110 * This is only possible if this thread was cloned by the
111 * traced task running in the stopped group, set the signal
112 * for the future reports.
113 * FIXME: we should change ptrace_init_task() to handle this
114 * case.
115 */
116 if (!(child->jobctl & JOBCTL_STOP_SIGMASK))
117 child->jobctl |= SIGSTOP;
118 }
119
120 /*
121 * If transition to TASK_STOPPED is pending or in TASK_TRACED, kick
122 * @child in the butt. Note that @resume should be used iff @child
123 * is in TASK_TRACED; otherwise, we might unduly disrupt
124 * TASK_KILLABLE sleeps.
125 */
126 if (child->jobctl & JOBCTL_STOP_PENDING || task_is_traced(child))
127 ptrace_signal_wake_up(child, true);
128
129 spin_unlock(&child->sighand->siglock);
130 }
131
looks_like_a_spurious_pid(struct task_struct * task)132 static bool looks_like_a_spurious_pid(struct task_struct *task)
133 {
134 if (task->exit_code != ((PTRACE_EVENT_EXEC << 8) | SIGTRAP))
135 return false;
136
137 if (task_pid_vnr(task) == task->ptrace_message)
138 return false;
139 /*
140 * The tracee changed its pid but the PTRACE_EVENT_EXEC event
141 * was not wait()'ed, most probably debugger targets the old
142 * leader which was destroyed in de_thread().
143 */
144 return true;
145 }
146
147 /* Ensure that nothing can wake it up, even SIGKILL */
ptrace_freeze_traced(struct task_struct * task)148 static bool ptrace_freeze_traced(struct task_struct *task)
149 {
150 bool ret = false;
151
152 /* Lockless, nobody but us can set this flag */
153 if (task->jobctl & JOBCTL_LISTENING)
154 return ret;
155
156 spin_lock_irq(&task->sighand->siglock);
157 if (task_is_traced(task) && !looks_like_a_spurious_pid(task) &&
158 !__fatal_signal_pending(task)) {
159 task->state = __TASK_TRACED;
160 ret = true;
161 }
162 spin_unlock_irq(&task->sighand->siglock);
163
164 return ret;
165 }
166
ptrace_unfreeze_traced(struct task_struct * task)167 static void ptrace_unfreeze_traced(struct task_struct *task)
168 {
169 if (task->state != __TASK_TRACED)
170 return;
171
172 WARN_ON(!task->ptrace || task->parent != current);
173
174 /*
175 * PTRACE_LISTEN can allow ptrace_trap_notify to wake us up remotely.
176 * Recheck state under the lock to close this race.
177 */
178 spin_lock_irq(&task->sighand->siglock);
179 if (task->state == __TASK_TRACED) {
180 if (__fatal_signal_pending(task))
181 wake_up_state(task, __TASK_TRACED);
182 else
183 task->state = TASK_TRACED;
184 }
185 spin_unlock_irq(&task->sighand->siglock);
186 }
187
188 /**
189 * ptrace_check_attach - check whether ptracee is ready for ptrace operation
190 * @child: ptracee to check for
191 * @ignore_state: don't check whether @child is currently %TASK_TRACED
192 *
193 * Check whether @child is being ptraced by %current and ready for further
194 * ptrace operations. If @ignore_state is %false, @child also should be in
195 * %TASK_TRACED state and on return the child is guaranteed to be traced
196 * and not executing. If @ignore_state is %true, @child can be in any
197 * state.
198 *
199 * CONTEXT:
200 * Grabs and releases tasklist_lock and @child->sighand->siglock.
201 *
202 * RETURNS:
203 * 0 on success, -ESRCH if %child is not ready.
204 */
ptrace_check_attach(struct task_struct * child,bool ignore_state)205 static int ptrace_check_attach(struct task_struct *child, bool ignore_state)
206 {
207 int ret = -ESRCH;
208
209 /*
210 * We take the read lock around doing both checks to close a
211 * possible race where someone else was tracing our child and
212 * detached between these two checks. After this locked check,
213 * we are sure that this is our traced child and that can only
214 * be changed by us so it's not changing right after this.
215 */
216 read_lock(&tasklist_lock);
217 if (child->ptrace && child->parent == current) {
218 WARN_ON(child->state == __TASK_TRACED);
219 /*
220 * child->sighand can't be NULL, release_task()
221 * does ptrace_unlink() before __exit_signal().
222 */
223 if (ignore_state || ptrace_freeze_traced(child))
224 ret = 0;
225 }
226 read_unlock(&tasklist_lock);
227
228 if (!ret && !ignore_state) {
229 if (!wait_task_inactive(child, __TASK_TRACED)) {
230 /*
231 * This can only happen if may_ptrace_stop() fails and
232 * ptrace_stop() changes ->state back to TASK_RUNNING,
233 * so we should not worry about leaking __TASK_TRACED.
234 */
235 WARN_ON(child->state == __TASK_TRACED);
236 ret = -ESRCH;
237 }
238 }
239
240 return ret;
241 }
242
ptrace_has_cap(struct user_namespace * ns,unsigned int mode)243 static int ptrace_has_cap(struct user_namespace *ns, unsigned int mode)
244 {
245 if (mode & PTRACE_MODE_SCHED)
246 return false;
247
248 if (mode & PTRACE_MODE_NOAUDIT)
249 return has_ns_capability_noaudit(current, ns, CAP_SYS_PTRACE);
250 else
251 return has_ns_capability(current, ns, CAP_SYS_PTRACE);
252 }
253
254 /* Returns 0 on success, -errno on denial. */
__ptrace_may_access(struct task_struct * task,unsigned int mode)255 static int __ptrace_may_access(struct task_struct *task, unsigned int mode)
256 {
257 const struct cred *cred = current_cred(), *tcred;
258 struct mm_struct *mm;
259 kuid_t caller_uid;
260 kgid_t caller_gid;
261
262 if (!(mode & PTRACE_MODE_FSCREDS) == !(mode & PTRACE_MODE_REALCREDS)) {
263 WARN(1, "denying ptrace access check without PTRACE_MODE_*CREDS\n");
264 return -EPERM;
265 }
266
267 /* May we inspect the given task?
268 * This check is used both for attaching with ptrace
269 * and for allowing access to sensitive information in /proc.
270 *
271 * ptrace_attach denies several cases that /proc allows
272 * because setting up the necessary parent/child relationship
273 * or halting the specified task is impossible.
274 */
275
276 /* Don't let security modules deny introspection */
277 if (same_thread_group(task, current))
278 return 0;
279 rcu_read_lock();
280 if (mode & PTRACE_MODE_FSCREDS) {
281 caller_uid = cred->fsuid;
282 caller_gid = cred->fsgid;
283 } else {
284 /*
285 * Using the euid would make more sense here, but something
286 * in userland might rely on the old behavior, and this
287 * shouldn't be a security problem since
288 * PTRACE_MODE_REALCREDS implies that the caller explicitly
289 * used a syscall that requests access to another process
290 * (and not a filesystem syscall to procfs).
291 */
292 caller_uid = cred->uid;
293 caller_gid = cred->gid;
294 }
295 tcred = __task_cred(task);
296 if (uid_eq(caller_uid, tcred->euid) &&
297 uid_eq(caller_uid, tcred->suid) &&
298 uid_eq(caller_uid, tcred->uid) &&
299 gid_eq(caller_gid, tcred->egid) &&
300 gid_eq(caller_gid, tcred->sgid) &&
301 gid_eq(caller_gid, tcred->gid))
302 goto ok;
303 if (ptrace_has_cap(tcred->user_ns, mode))
304 goto ok;
305 rcu_read_unlock();
306 return -EPERM;
307 ok:
308 rcu_read_unlock();
309 /*
310 * If a task drops privileges and becomes nondumpable (through a syscall
311 * like setresuid()) while we are trying to access it, we must ensure
312 * that the dumpability is read after the credentials; otherwise,
313 * we may be able to attach to a task that we shouldn't be able to
314 * attach to (as if the task had dropped privileges without becoming
315 * nondumpable).
316 * Pairs with a write barrier in commit_creds().
317 */
318 smp_rmb();
319 mm = task->mm;
320 if (mm &&
321 ((get_dumpable(mm) != SUID_DUMP_USER) &&
322 !ptrace_has_cap(mm->user_ns, mode)))
323 return -EPERM;
324
325 if (mode & PTRACE_MODE_SCHED)
326 return 0;
327 return security_ptrace_access_check(task, mode);
328 }
329
ptrace_may_access_sched(struct task_struct * task,unsigned int mode)330 bool ptrace_may_access_sched(struct task_struct *task, unsigned int mode)
331 {
332 return __ptrace_may_access(task, mode | PTRACE_MODE_SCHED);
333 }
334
ptrace_may_access(struct task_struct * task,unsigned int mode)335 bool ptrace_may_access(struct task_struct *task, unsigned int mode)
336 {
337 int err;
338 task_lock(task);
339 err = __ptrace_may_access(task, mode);
340 task_unlock(task);
341 return !err;
342 }
343
ptrace_attach(struct task_struct * task,long request,unsigned long addr,unsigned long flags)344 static int ptrace_attach(struct task_struct *task, long request,
345 unsigned long addr,
346 unsigned long flags)
347 {
348 bool seize = (request == PTRACE_SEIZE);
349 int retval;
350
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;
360 }
361
362 audit_ptrace(task);
363
364 retval = -EPERM;
365 if (unlikely(task->flags & PF_KTHREAD))
366 goto out;
367 if (same_thread_group(task, current))
368 goto out;
369
370 /*
371 * Protect exec's credential calculations against our interference;
372 * SUID, SGID and LSM creds get determined differently
373 * under ptrace.
374 */
375 retval = -ERESTARTNOINTR;
376 if (mutex_lock_interruptible(&task->signal->cred_guard_mutex))
377 goto out;
378
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;
384
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;
391
392 if (seize)
393 flags |= PT_SEIZED;
394 task->ptrace = flags;
395
396 ptrace_link(task, current);
397
398 /* SEIZE doesn't trap tracee on attach */
399 if (!seize)
400 send_sig_info(SIGSTOP, SEND_SIG_FORCED, task);
401
402 spin_lock(&task->sighand->siglock);
403
404 /*
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.
411 *
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.
417 *
418 * The following task_is_stopped() test is safe as both transitions
419 * in and out of STOPPED are protected by siglock.
420 */
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);
424
425 spin_unlock(&task->sighand->siglock);
426
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 TASK_UNINTERRUPTIBLE);
436 proc_ptrace_connector(task, PTRACE_ATTACH);
437 }
438
439 return retval;
440 }
441
442 /**
443 * ptrace_traceme -- helper for PTRACE_TRACEME
444 *
445 * Performs checks and sets PT_PTRACED.
446 * Should be used by all ptrace implementations for PTRACE_TRACEME.
447 */
ptrace_traceme(void)448 static int ptrace_traceme(void)
449 {
450 int ret = -EPERM;
451
452 write_lock_irq(&tasklist_lock);
453 /* Are we already being traced? */
454 if (!current->ptrace) {
455 ret = security_ptrace_traceme(current->parent);
456 /*
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.
460 */
461 if (!ret && !(current->real_parent->flags & PF_EXITING)) {
462 current->ptrace = PT_PTRACED;
463 ptrace_link(current, current->real_parent);
464 }
465 }
466 write_unlock_irq(&tasklist_lock);
467
468 return ret;
469 }
470
471 /*
472 * Called with irqs disabled, returns true if childs should reap themselves.
473 */
ignoring_children(struct sighand_struct * sigh)474 static int ignoring_children(struct sighand_struct *sigh)
475 {
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;
482 }
483
484 /*
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.)
489 *
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.
493 *
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().
498 */
__ptrace_detach(struct task_struct * tracer,struct task_struct * p)499 static bool __ptrace_detach(struct task_struct *tracer, struct task_struct *p)
500 {
501 bool dead;
502
503 __ptrace_unlink(p);
504
505 if (p->exit_state != EXIT_ZOMBIE)
506 return false;
507
508 dead = !thread_group_leader(p);
509
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;
516 }
517 }
518 /* Mark it as in the process of being reaped. */
519 if (dead)
520 p->exit_state = EXIT_DEAD;
521 return dead;
522 }
523
ptrace_detach(struct task_struct * child,unsigned int data)524 static int ptrace_detach(struct task_struct *child, unsigned int data)
525 {
526 if (!valid_signal(data))
527 return -EIO;
528
529 /* Architecture-specific hardware disable .. */
530 ptrace_disable(child);
531 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
532
533 write_lock_irq(&tasklist_lock);
534 /*
535 * We rely on ptrace_freeze_traced(). It can't be killed and
536 * untraced by another thread, it can't be a zombie.
537 */
538 WARN_ON(!child->ptrace || child->exit_state);
539 /*
540 * tasklist_lock avoids the race with wait_task_stopped(), see
541 * the comment in ptrace_resume().
542 */
543 child->exit_code = data;
544 __ptrace_detach(current, child);
545 write_unlock_irq(&tasklist_lock);
546
547 proc_ptrace_connector(child, PTRACE_DETACH);
548
549 return 0;
550 }
551
552 /*
553 * Detach all tasks we were using ptrace on. Called with tasklist held
554 * for writing.
555 */
exit_ptrace(struct task_struct * tracer,struct list_head * dead)556 void exit_ptrace(struct task_struct *tracer, struct list_head *dead)
557 {
558 struct task_struct *p, *n;
559
560 list_for_each_entry_safe(p, n, &tracer->ptraced, ptrace_entry) {
561 if (unlikely(p->ptrace & PT_EXITKILL))
562 send_sig_info(SIGKILL, SEND_SIG_FORCED, p);
563
564 if (__ptrace_detach(tracer, p))
565 list_add(&p->ptrace_entry, dead);
566 }
567 }
568
ptrace_readdata(struct task_struct * tsk,unsigned long src,char __user * dst,int len)569 int ptrace_readdata(struct task_struct *tsk, unsigned long src, char __user *dst, int len)
570 {
571 int copied = 0;
572
573 while (len > 0) {
574 char buf[128];
575 int this_len, retval;
576
577 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
578 retval = access_process_vm(tsk, src, buf, this_len, 0);
579 if (!retval) {
580 if (copied)
581 break;
582 return -EIO;
583 }
584 if (copy_to_user(dst, buf, retval))
585 return -EFAULT;
586 copied += retval;
587 src += retval;
588 dst += retval;
589 len -= retval;
590 }
591 return copied;
592 }
593
ptrace_writedata(struct task_struct * tsk,char __user * src,unsigned long dst,int len)594 int ptrace_writedata(struct task_struct *tsk, char __user *src, unsigned long dst, int len)
595 {
596 int copied = 0;
597
598 while (len > 0) {
599 char buf[128];
600 int this_len, retval;
601
602 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
603 if (copy_from_user(buf, src, this_len))
604 return -EFAULT;
605 retval = access_process_vm(tsk, dst, buf, this_len, 1);
606 if (!retval) {
607 if (copied)
608 break;
609 return -EIO;
610 }
611 copied += retval;
612 src += retval;
613 dst += retval;
614 len -= retval;
615 }
616 return copied;
617 }
618
ptrace_setoptions(struct task_struct * child,unsigned long data)619 static int ptrace_setoptions(struct task_struct *child, unsigned long data)
620 {
621 unsigned flags;
622
623 if (data & ~(unsigned long)PTRACE_O_MASK)
624 return -EINVAL;
625
626 if (unlikely(data & PTRACE_O_SUSPEND_SECCOMP)) {
627 if (!config_enabled(CONFIG_CHECKPOINT_RESTORE) ||
628 !config_enabled(CONFIG_SECCOMP))
629 return -EINVAL;
630
631 if (!capable(CAP_SYS_ADMIN))
632 return -EPERM;
633
634 if (seccomp_mode(¤t->seccomp) != SECCOMP_MODE_DISABLED ||
635 current->ptrace & PT_SUSPEND_SECCOMP)
636 return -EPERM;
637 }
638
639 /* Avoid intermediate state when all opts are cleared */
640 flags = child->ptrace;
641 flags &= ~(PTRACE_O_MASK << PT_OPT_FLAG_SHIFT);
642 flags |= (data << PT_OPT_FLAG_SHIFT);
643 child->ptrace = flags;
644
645 return 0;
646 }
647
ptrace_getsiginfo(struct task_struct * child,siginfo_t * info)648 static int ptrace_getsiginfo(struct task_struct *child, siginfo_t *info)
649 {
650 unsigned long flags;
651 int error = -ESRCH;
652
653 if (lock_task_sighand(child, &flags)) {
654 error = -EINVAL;
655 if (likely(child->last_siginfo != NULL)) {
656 *info = *child->last_siginfo;
657 error = 0;
658 }
659 unlock_task_sighand(child, &flags);
660 }
661 return error;
662 }
663
ptrace_setsiginfo(struct task_struct * child,const siginfo_t * info)664 static int ptrace_setsiginfo(struct task_struct *child, const siginfo_t *info)
665 {
666 unsigned long flags;
667 int error = -ESRCH;
668
669 if (lock_task_sighand(child, &flags)) {
670 error = -EINVAL;
671 if (likely(child->last_siginfo != NULL)) {
672 *child->last_siginfo = *info;
673 error = 0;
674 }
675 unlock_task_sighand(child, &flags);
676 }
677 return error;
678 }
679
ptrace_peek_siginfo(struct task_struct * child,unsigned long addr,unsigned long data)680 static int ptrace_peek_siginfo(struct task_struct *child,
681 unsigned long addr,
682 unsigned long data)
683 {
684 struct ptrace_peeksiginfo_args arg;
685 struct sigpending *pending;
686 struct sigqueue *q;
687 int ret, i;
688
689 ret = copy_from_user(&arg, (void __user *) addr,
690 sizeof(struct ptrace_peeksiginfo_args));
691 if (ret)
692 return -EFAULT;
693
694 if (arg.flags & ~PTRACE_PEEKSIGINFO_SHARED)
695 return -EINVAL; /* unknown flags */
696
697 if (arg.nr < 0)
698 return -EINVAL;
699
700 /* Ensure arg.off fits in an unsigned long */
701 if (arg.off > ULONG_MAX)
702 return 0;
703
704 if (arg.flags & PTRACE_PEEKSIGINFO_SHARED)
705 pending = &child->signal->shared_pending;
706 else
707 pending = &child->pending;
708
709 for (i = 0; i < arg.nr; ) {
710 siginfo_t info;
711 unsigned long off = arg.off + i;
712 bool found = false;
713
714 spin_lock_irq(&child->sighand->siglock);
715 list_for_each_entry(q, &pending->list, list) {
716 if (!off--) {
717 found = true;
718 copy_siginfo(&info, &q->info);
719 break;
720 }
721 }
722 spin_unlock_irq(&child->sighand->siglock);
723
724 if (!found) /* beyond the end of the list */
725 break;
726
727 #ifdef CONFIG_COMPAT
728 if (unlikely(is_compat_task())) {
729 compat_siginfo_t __user *uinfo = compat_ptr(data);
730
731 if (copy_siginfo_to_user32(uinfo, &info) ||
732 __put_user(info.si_code, &uinfo->si_code)) {
733 ret = -EFAULT;
734 break;
735 }
736
737 } else
738 #endif
739 {
740 siginfo_t __user *uinfo = (siginfo_t __user *) data;
741
742 if (copy_siginfo_to_user(uinfo, &info) ||
743 __put_user(info.si_code, &uinfo->si_code)) {
744 ret = -EFAULT;
745 break;
746 }
747 }
748
749 data += sizeof(siginfo_t);
750 i++;
751
752 if (signal_pending(current))
753 break;
754
755 cond_resched();
756 }
757
758 if (i > 0)
759 return i;
760
761 return ret;
762 }
763
764 #ifdef PTRACE_SINGLESTEP
765 #define is_singlestep(request) ((request) == PTRACE_SINGLESTEP)
766 #else
767 #define is_singlestep(request) 0
768 #endif
769
770 #ifdef PTRACE_SINGLEBLOCK
771 #define is_singleblock(request) ((request) == PTRACE_SINGLEBLOCK)
772 #else
773 #define is_singleblock(request) 0
774 #endif
775
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
781
ptrace_resume(struct task_struct * child,long request,unsigned long data)782 static int ptrace_resume(struct task_struct *child, long request,
783 unsigned long data)
784 {
785 bool need_siglock;
786
787 if (!valid_signal(data))
788 return -EIO;
789
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);
794
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
801
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);
812 }
813
814 /*
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.
818 *
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.
822 *
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.
826 */
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);
834
835 return 0;
836 }
837
838 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
839
840 static const struct user_regset *
find_regset(const struct user_regset_view * view,unsigned int type)841 find_regset(const struct user_regset_view *view, unsigned int type)
842 {
843 const struct user_regset *regset;
844 int n;
845
846 for (n = 0; n < view->n; ++n) {
847 regset = view->regsets + n;
848 if (regset->core_note_type == type)
849 return regset;
850 }
851
852 return NULL;
853 }
854
ptrace_regset(struct task_struct * task,int req,unsigned int type,struct iovec * kiov)855 static int ptrace_regset(struct task_struct *task, int req, unsigned int type,
856 struct iovec *kiov)
857 {
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;
861
862 if (!regset || (kiov->iov_len % regset->size) != 0)
863 return -EINVAL;
864
865 regset_no = regset - view->regsets;
866 kiov->iov_len = min(kiov->iov_len,
867 (__kernel_size_t) (regset->n * regset->size));
868
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);
875 }
876
877 /*
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.
881 */
882 EXPORT_SYMBOL_GPL(task_user_regset_view);
883 #endif
884
ptrace_request(struct task_struct * child,long request,unsigned long addr,unsigned long data)885 int ptrace_request(struct task_struct *child, long request,
886 unsigned long addr, unsigned long data)
887 {
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;
894
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);
902
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;
912
913 case PTRACE_PEEKSIGINFO:
914 ret = ptrace_peek_siginfo(child, addr, data);
915 break;
916
917 case PTRACE_GETSIGINFO:
918 ret = ptrace_getsiginfo(child, &siginfo);
919 if (!ret)
920 ret = copy_siginfo_to_user(datavp, &siginfo);
921 break;
922
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;
929
930 case PTRACE_GETSIGMASK:
931 if (addr != sizeof(sigset_t)) {
932 ret = -EINVAL;
933 break;
934 }
935
936 if (copy_to_user(datavp, &child->blocked, sizeof(sigset_t)))
937 ret = -EFAULT;
938 else
939 ret = 0;
940
941 break;
942
943 case PTRACE_SETSIGMASK: {
944 sigset_t new_set;
945
946 if (addr != sizeof(sigset_t)) {
947 ret = -EINVAL;
948 break;
949 }
950
951 if (copy_from_user(&new_set, datavp, sizeof(sigset_t))) {
952 ret = -EFAULT;
953 break;
954 }
955
956 sigdelsetmask(&new_set, sigmask(SIGKILL)|sigmask(SIGSTOP));
957
958 /*
959 * Every thread does recalc_sigpending() after resume, so
960 * retarget_shared_pending() and recalc_sigpending() are not
961 * called here.
962 */
963 spin_lock_irq(&child->sighand->siglock);
964 child->blocked = new_set;
965 spin_unlock_irq(&child->sighand->siglock);
966
967 ret = 0;
968 break;
969 }
970
971 case PTRACE_INTERRUPT:
972 /*
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.
978 *
979 * The actual trap might not be PTRACE_EVENT_STOP trap but
980 * the pending condition is cleared regardless.
981 */
982 if (unlikely(!seized || !lock_task_sighand(child, &flags)))
983 break;
984
985 /*
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.
990 */
991 if (likely(task_set_jobctl_pending(child, JOBCTL_TRAP_STOP)))
992 ptrace_signal_wake_up(child, child->jobctl & JOBCTL_LISTENING);
993
994 unlock_task_sighand(child, &flags);
995 ret = 0;
996 break;
997
998 case PTRACE_LISTEN:
999 /*
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.
1006 */
1007 if (unlikely(!seized || !lock_task_sighand(child, &flags)))
1008 break;
1009
1010 si = child->last_siginfo;
1011 if (likely(si && (si->si_code >> 8) == PTRACE_EVENT_STOP)) {
1012 child->jobctl |= JOBCTL_LISTENING;
1013 /*
1014 * If NOTIFY is set, it means event happened between
1015 * start of this trap and now. Trigger re-trap.
1016 */
1017 if (child->jobctl & JOBCTL_TRAP_NOTIFY)
1018 ptrace_signal_wake_up(child, true);
1019 ret = 0;
1020 }
1021 unlock_task_sighand(child, &flags);
1022 break;
1023
1024 case PTRACE_DETACH: /* detach a process that was attached. */
1025 ret = ptrace_detach(child, data);
1026 break;
1027
1028 #ifdef CONFIG_BINFMT_ELF_FDPIC
1029 case PTRACE_GETFDPIC: {
1030 struct mm_struct *mm = get_task_mm(child);
1031 unsigned long tmp = 0;
1032
1033 ret = -ESRCH;
1034 if (!mm)
1035 break;
1036
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;
1046 }
1047 mmput(mm);
1048
1049 ret = put_user(tmp, datalp);
1050 break;
1051 }
1052 #endif
1053
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);
1067
1068 case PTRACE_KILL:
1069 if (child->exit_state) /* already dead */
1070 return 0;
1071 return ptrace_resume(child, request, SIGKILL);
1072
1073 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
1074 case PTRACE_GETREGSET:
1075 case PTRACE_SETREGSET: {
1076 struct iovec kiov;
1077 struct iovec __user *uiov = datavp;
1078
1079 if (!access_ok(VERIFY_WRITE, uiov, sizeof(*uiov)))
1080 return -EFAULT;
1081
1082 if (__get_user(kiov.iov_base, &uiov->iov_base) ||
1083 __get_user(kiov.iov_len, &uiov->iov_len))
1084 return -EFAULT;
1085
1086 ret = ptrace_regset(child, request, addr, &kiov);
1087 if (!ret)
1088 ret = __put_user(kiov.iov_len, &uiov->iov_len);
1089 break;
1090 }
1091 #endif
1092
1093 case PTRACE_SECCOMP_GET_FILTER:
1094 ret = seccomp_get_filter(child, addr, datavp);
1095 break;
1096
1097 default:
1098 break;
1099 }
1100
1101 return ret;
1102 }
1103
ptrace_get_task_struct(pid_t pid)1104 static struct task_struct *ptrace_get_task_struct(pid_t pid)
1105 {
1106 struct task_struct *child;
1107
1108 rcu_read_lock();
1109 child = find_task_by_vpid(pid);
1110 if (child)
1111 get_task_struct(child);
1112 rcu_read_unlock();
1113
1114 if (!child)
1115 return ERR_PTR(-ESRCH);
1116 return child;
1117 }
1118
1119 #ifndef arch_ptrace_attach
1120 #define arch_ptrace_attach(child) do { } while (0)
1121 #endif
1122
SYSCALL_DEFINE4(ptrace,long,request,long,pid,unsigned long,addr,unsigned long,data)1123 SYSCALL_DEFINE4(ptrace, long, request, long, pid, unsigned long, addr,
1124 unsigned long, data)
1125 {
1126 struct task_struct *child;
1127 long ret;
1128
1129 if (request == PTRACE_TRACEME) {
1130 ret = ptrace_traceme();
1131 if (!ret)
1132 arch_ptrace_attach(current);
1133 goto out;
1134 }
1135
1136 child = ptrace_get_task_struct(pid);
1137 if (IS_ERR(child)) {
1138 ret = PTR_ERR(child);
1139 goto out;
1140 }
1141
1142 if (request == PTRACE_ATTACH || request == PTRACE_SEIZE) {
1143 ret = ptrace_attach(child, request, addr, data);
1144 /*
1145 * Some architectures need to do book-keeping after
1146 * a ptrace attach.
1147 */
1148 if (!ret)
1149 arch_ptrace_attach(child);
1150 goto out_put_task_struct;
1151 }
1152
1153 ret = ptrace_check_attach(child, request == PTRACE_KILL ||
1154 request == PTRACE_INTERRUPT);
1155 if (ret < 0)
1156 goto out_put_task_struct;
1157
1158 ret = arch_ptrace(child, request, addr, data);
1159 if (ret || request != PTRACE_DETACH)
1160 ptrace_unfreeze_traced(child);
1161
1162 out_put_task_struct:
1163 put_task_struct(child);
1164 out:
1165 return ret;
1166 }
1167
generic_ptrace_peekdata(struct task_struct * tsk,unsigned long addr,unsigned long data)1168 int generic_ptrace_peekdata(struct task_struct *tsk, unsigned long addr,
1169 unsigned long data)
1170 {
1171 unsigned long tmp;
1172 int copied;
1173
1174 copied = access_process_vm(tsk, addr, &tmp, sizeof(tmp), 0);
1175 if (copied != sizeof(tmp))
1176 return -EIO;
1177 return put_user(tmp, (unsigned long __user *)data);
1178 }
1179
generic_ptrace_pokedata(struct task_struct * tsk,unsigned long addr,unsigned long data)1180 int generic_ptrace_pokedata(struct task_struct *tsk, unsigned long addr,
1181 unsigned long data)
1182 {
1183 int copied;
1184
1185 copied = access_process_vm(tsk, addr, &data, sizeof(data), 1);
1186 return (copied == sizeof(data)) ? 0 : -EIO;
1187 }
1188
1189 #if defined CONFIG_COMPAT
1190
compat_ptrace_request(struct task_struct * child,compat_long_t request,compat_ulong_t addr,compat_ulong_t data)1191 int compat_ptrace_request(struct task_struct *child, compat_long_t request,
1192 compat_ulong_t addr, compat_ulong_t data)
1193 {
1194 compat_ulong_t __user *datap = compat_ptr(data);
1195 compat_ulong_t word;
1196 siginfo_t siginfo;
1197 int ret;
1198
1199 switch (request) {
1200 case PTRACE_PEEKTEXT:
1201 case PTRACE_PEEKDATA:
1202 ret = access_process_vm(child, addr, &word, sizeof(word), 0);
1203 if (ret != sizeof(word))
1204 ret = -EIO;
1205 else
1206 ret = put_user(word, datap);
1207 break;
1208
1209 case PTRACE_POKETEXT:
1210 case PTRACE_POKEDATA:
1211 ret = access_process_vm(child, addr, &data, sizeof(data), 1);
1212 ret = (ret != sizeof(data) ? -EIO : 0);
1213 break;
1214
1215 case PTRACE_GETEVENTMSG:
1216 ret = put_user((compat_ulong_t) child->ptrace_message, datap);
1217 break;
1218
1219 case PTRACE_GETSIGINFO:
1220 ret = ptrace_getsiginfo(child, &siginfo);
1221 if (!ret)
1222 ret = copy_siginfo_to_user32(
1223 (struct compat_siginfo __user *) datap,
1224 &siginfo);
1225 break;
1226
1227 case PTRACE_SETSIGINFO:
1228 memset(&siginfo, 0, sizeof siginfo);
1229 if (copy_siginfo_from_user32(
1230 &siginfo, (struct compat_siginfo __user *) datap))
1231 ret = -EFAULT;
1232 else
1233 ret = ptrace_setsiginfo(child, &siginfo);
1234 break;
1235 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
1236 case PTRACE_GETREGSET:
1237 case PTRACE_SETREGSET:
1238 {
1239 struct iovec kiov;
1240 struct compat_iovec __user *uiov =
1241 (struct compat_iovec __user *) datap;
1242 compat_uptr_t ptr;
1243 compat_size_t len;
1244
1245 if (!access_ok(VERIFY_WRITE, uiov, sizeof(*uiov)))
1246 return -EFAULT;
1247
1248 if (__get_user(ptr, &uiov->iov_base) ||
1249 __get_user(len, &uiov->iov_len))
1250 return -EFAULT;
1251
1252 kiov.iov_base = compat_ptr(ptr);
1253 kiov.iov_len = len;
1254
1255 ret = ptrace_regset(child, request, addr, &kiov);
1256 if (!ret)
1257 ret = __put_user(kiov.iov_len, &uiov->iov_len);
1258 break;
1259 }
1260 #endif
1261
1262 default:
1263 ret = ptrace_request(child, request, addr, data);
1264 }
1265
1266 return ret;
1267 }
1268
COMPAT_SYSCALL_DEFINE4(ptrace,compat_long_t,request,compat_long_t,pid,compat_long_t,addr,compat_long_t,data)1269 COMPAT_SYSCALL_DEFINE4(ptrace, compat_long_t, request, compat_long_t, pid,
1270 compat_long_t, addr, compat_long_t, data)
1271 {
1272 struct task_struct *child;
1273 long ret;
1274
1275 if (request == PTRACE_TRACEME) {
1276 ret = ptrace_traceme();
1277 goto out;
1278 }
1279
1280 child = ptrace_get_task_struct(pid);
1281 if (IS_ERR(child)) {
1282 ret = PTR_ERR(child);
1283 goto out;
1284 }
1285
1286 if (request == PTRACE_ATTACH || request == PTRACE_SEIZE) {
1287 ret = ptrace_attach(child, request, addr, data);
1288 /*
1289 * Some architectures need to do book-keeping after
1290 * a ptrace attach.
1291 */
1292 if (!ret)
1293 arch_ptrace_attach(child);
1294 goto out_put_task_struct;
1295 }
1296
1297 ret = ptrace_check_attach(child, request == PTRACE_KILL ||
1298 request == PTRACE_INTERRUPT);
1299 if (!ret) {
1300 ret = compat_arch_ptrace(child, request, addr, data);
1301 if (ret || request != PTRACE_DETACH)
1302 ptrace_unfreeze_traced(child);
1303 }
1304
1305 out_put_task_struct:
1306 put_task_struct(child);
1307 out:
1308 return ret;
1309 }
1310 #endif /* CONFIG_COMPAT */
1311