ptrace: mv send-SIGSTOP from do_fork() to ptrace_init_task()
[pandora-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/module.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/audit.h>
21 #include <linux/pid_namespace.h>
22 #include <linux/syscalls.h>
23 #include <linux/uaccess.h>
24 #include <linux/regset.h>
25 #include <linux/hw_breakpoint.h>
26
27
28 static int ptrace_trapping_sleep_fn(void *flags)
29 {
30         schedule();
31         return 0;
32 }
33
34 /*
35  * ptrace a task: make the debugger its new parent and
36  * move it to the ptrace list.
37  *
38  * Must be called with the tasklist lock write-held.
39  */
40 void __ptrace_link(struct task_struct *child, struct task_struct *new_parent)
41 {
42         BUG_ON(!list_empty(&child->ptrace_entry));
43         list_add(&child->ptrace_entry, &new_parent->ptraced);
44         child->parent = new_parent;
45 }
46
47 /**
48  * __ptrace_unlink - unlink ptracee and restore its execution state
49  * @child: ptracee to be unlinked
50  *
51  * Remove @child from the ptrace list, move it back to the original parent,
52  * and restore the execution state so that it conforms to the group stop
53  * state.
54  *
55  * Unlinking can happen via two paths - explicit PTRACE_DETACH or ptracer
56  * exiting.  For PTRACE_DETACH, unless the ptracee has been killed between
57  * ptrace_check_attach() and here, it's guaranteed to be in TASK_TRACED.
58  * If the ptracer is exiting, the ptracee can be in any state.
59  *
60  * After detach, the ptracee should be in a state which conforms to the
61  * group stop.  If the group is stopped or in the process of stopping, the
62  * ptracee should be put into TASK_STOPPED; otherwise, it should be woken
63  * up from TASK_TRACED.
64  *
65  * If the ptracee is in TASK_TRACED and needs to be moved to TASK_STOPPED,
66  * it goes through TRACED -> RUNNING -> STOPPED transition which is similar
67  * to but in the opposite direction of what happens while attaching to a
68  * stopped task.  However, in this direction, the intermediate RUNNING
69  * state is not hidden even from the current ptracer and if it immediately
70  * re-attaches and performs a WNOHANG wait(2), it may fail.
71  *
72  * CONTEXT:
73  * write_lock_irq(tasklist_lock)
74  */
75 void __ptrace_unlink(struct task_struct *child)
76 {
77         BUG_ON(!child->ptrace);
78
79         child->ptrace = 0;
80         child->parent = child->real_parent;
81         list_del_init(&child->ptrace_entry);
82
83         spin_lock(&child->sighand->siglock);
84
85         /*
86          * Clear all pending traps and TRAPPING.  TRAPPING should be
87          * cleared regardless of JOBCTL_STOP_PENDING.  Do it explicitly.
88          */
89         task_clear_jobctl_pending(child, JOBCTL_TRAP_MASK);
90         task_clear_jobctl_trapping(child);
91
92         /*
93          * Reinstate JOBCTL_STOP_PENDING if group stop is in effect and
94          * @child isn't dead.
95          */
96         if (!(child->flags & PF_EXITING) &&
97             (child->signal->flags & SIGNAL_STOP_STOPPED ||
98              child->signal->group_stop_count))
99                 child->jobctl |= JOBCTL_STOP_PENDING;
100
101         /*
102          * If transition to TASK_STOPPED is pending or in TASK_TRACED, kick
103          * @child in the butt.  Note that @resume should be used iff @child
104          * is in TASK_TRACED; otherwise, we might unduly disrupt
105          * TASK_KILLABLE sleeps.
106          */
107         if (child->jobctl & JOBCTL_STOP_PENDING || task_is_traced(child))
108                 signal_wake_up(child, task_is_traced(child));
109
110         spin_unlock(&child->sighand->siglock);
111 }
112
113 /**
114  * ptrace_check_attach - check whether ptracee is ready for ptrace operation
115  * @child: ptracee to check for
116  * @ignore_state: don't check whether @child is currently %TASK_TRACED
117  *
118  * Check whether @child is being ptraced by %current and ready for further
119  * ptrace operations.  If @ignore_state is %false, @child also should be in
120  * %TASK_TRACED state and on return the child is guaranteed to be traced
121  * and not executing.  If @ignore_state is %true, @child can be in any
122  * state.
123  *
124  * CONTEXT:
125  * Grabs and releases tasklist_lock and @child->sighand->siglock.
126  *
127  * RETURNS:
128  * 0 on success, -ESRCH if %child is not ready.
129  */
130 int ptrace_check_attach(struct task_struct *child, bool ignore_state)
131 {
132         int ret = -ESRCH;
133
134         /*
135          * We take the read lock around doing both checks to close a
136          * possible race where someone else was tracing our child and
137          * detached between these two checks.  After this locked check,
138          * we are sure that this is our traced child and that can only
139          * be changed by us so it's not changing right after this.
140          */
141         read_lock(&tasklist_lock);
142         if ((child->ptrace & PT_PTRACED) && child->parent == current) {
143                 /*
144                  * child->sighand can't be NULL, release_task()
145                  * does ptrace_unlink() before __exit_signal().
146                  */
147                 spin_lock_irq(&child->sighand->siglock);
148                 WARN_ON_ONCE(task_is_stopped(child));
149                 if (ignore_state || (task_is_traced(child) &&
150                                      !(child->jobctl & JOBCTL_LISTENING)))
151                         ret = 0;
152                 spin_unlock_irq(&child->sighand->siglock);
153         }
154         read_unlock(&tasklist_lock);
155
156         if (!ret && !ignore_state)
157                 ret = wait_task_inactive(child, TASK_TRACED) ? 0 : -ESRCH;
158
159         /* All systems go.. */
160         return ret;
161 }
162
163 int __ptrace_may_access(struct task_struct *task, unsigned int mode)
164 {
165         const struct cred *cred = current_cred(), *tcred;
166
167         /* May we inspect the given task?
168          * This check is used both for attaching with ptrace
169          * and for allowing access to sensitive information in /proc.
170          *
171          * ptrace_attach denies several cases that /proc allows
172          * because setting up the necessary parent/child relationship
173          * or halting the specified task is impossible.
174          */
175         int dumpable = 0;
176         /* Don't let security modules deny introspection */
177         if (task == current)
178                 return 0;
179         rcu_read_lock();
180         tcred = __task_cred(task);
181         if (cred->user->user_ns == tcred->user->user_ns &&
182             (cred->uid == tcred->euid &&
183              cred->uid == tcred->suid &&
184              cred->uid == tcred->uid  &&
185              cred->gid == tcred->egid &&
186              cred->gid == tcred->sgid &&
187              cred->gid == tcred->gid))
188                 goto ok;
189         if (ns_capable(tcred->user->user_ns, CAP_SYS_PTRACE))
190                 goto ok;
191         rcu_read_unlock();
192         return -EPERM;
193 ok:
194         rcu_read_unlock();
195         smp_rmb();
196         if (task->mm)
197                 dumpable = get_dumpable(task->mm);
198         if (!dumpable && !task_ns_capable(task, CAP_SYS_PTRACE))
199                 return -EPERM;
200
201         return security_ptrace_access_check(task, mode);
202 }
203
204 bool ptrace_may_access(struct task_struct *task, unsigned int mode)
205 {
206         int err;
207         task_lock(task);
208         err = __ptrace_may_access(task, mode);
209         task_unlock(task);
210         return !err;
211 }
212
213 static int ptrace_attach(struct task_struct *task, long request,
214                          unsigned long flags)
215 {
216         bool seize = (request == PTRACE_SEIZE);
217         int retval;
218
219         /*
220          * SEIZE will enable new ptrace behaviors which will be implemented
221          * gradually.  SEIZE_DEVEL is used to prevent applications
222          * expecting full SEIZE behaviors trapping on kernel commits which
223          * are still in the process of implementing them.
224          *
225          * Only test programs for new ptrace behaviors being implemented
226          * should set SEIZE_DEVEL.  If unset, SEIZE will fail with -EIO.
227          *
228          * Once SEIZE behaviors are completely implemented, this flag and
229          * the following test will be removed.
230          */
231         retval = -EIO;
232         if (seize && !(flags & PTRACE_SEIZE_DEVEL))
233                 goto out;
234
235         audit_ptrace(task);
236
237         retval = -EPERM;
238         if (unlikely(task->flags & PF_KTHREAD))
239                 goto out;
240         if (same_thread_group(task, current))
241                 goto out;
242
243         /*
244          * Protect exec's credential calculations against our interference;
245          * interference; SUID, SGID and LSM creds get determined differently
246          * under ptrace.
247          */
248         retval = -ERESTARTNOINTR;
249         if (mutex_lock_interruptible(&task->signal->cred_guard_mutex))
250                 goto out;
251
252         task_lock(task);
253         retval = __ptrace_may_access(task, PTRACE_MODE_ATTACH);
254         task_unlock(task);
255         if (retval)
256                 goto unlock_creds;
257
258         write_lock_irq(&tasklist_lock);
259         retval = -EPERM;
260         if (unlikely(task->exit_state))
261                 goto unlock_tasklist;
262         if (task->ptrace)
263                 goto unlock_tasklist;
264
265         task->ptrace = PT_PTRACED;
266         if (seize)
267                 task->ptrace |= PT_SEIZED;
268         if (task_ns_capable(task, CAP_SYS_PTRACE))
269                 task->ptrace |= PT_PTRACE_CAP;
270
271         __ptrace_link(task, current);
272
273         /* SEIZE doesn't trap tracee on attach */
274         if (!seize)
275                 send_sig_info(SIGSTOP, SEND_SIG_FORCED, task);
276
277         spin_lock(&task->sighand->siglock);
278
279         /*
280          * If the task is already STOPPED, set JOBCTL_TRAP_STOP and
281          * TRAPPING, and kick it so that it transits to TRACED.  TRAPPING
282          * will be cleared if the child completes the transition or any
283          * event which clears the group stop states happens.  We'll wait
284          * for the transition to complete before returning from this
285          * function.
286          *
287          * This hides STOPPED -> RUNNING -> TRACED transition from the
288          * attaching thread but a different thread in the same group can
289          * still observe the transient RUNNING state.  IOW, if another
290          * thread's WNOHANG wait(2) on the stopped tracee races against
291          * ATTACH, the wait(2) may fail due to the transient RUNNING.
292          *
293          * The following task_is_stopped() test is safe as both transitions
294          * in and out of STOPPED are protected by siglock.
295          */
296         if (task_is_stopped(task) &&
297             task_set_jobctl_pending(task, JOBCTL_TRAP_STOP | JOBCTL_TRAPPING))
298                 signal_wake_up(task, 1);
299
300         spin_unlock(&task->sighand->siglock);
301
302         retval = 0;
303 unlock_tasklist:
304         write_unlock_irq(&tasklist_lock);
305 unlock_creds:
306         mutex_unlock(&task->signal->cred_guard_mutex);
307 out:
308         if (!retval)
309                 wait_on_bit(&task->jobctl, JOBCTL_TRAPPING_BIT,
310                             ptrace_trapping_sleep_fn, TASK_UNINTERRUPTIBLE);
311         return retval;
312 }
313
314 /**
315  * ptrace_traceme  --  helper for PTRACE_TRACEME
316  *
317  * Performs checks and sets PT_PTRACED.
318  * Should be used by all ptrace implementations for PTRACE_TRACEME.
319  */
320 static int ptrace_traceme(void)
321 {
322         int ret = -EPERM;
323
324         write_lock_irq(&tasklist_lock);
325         /* Are we already being traced? */
326         if (!current->ptrace) {
327                 ret = security_ptrace_traceme(current->parent);
328                 /*
329                  * Check PF_EXITING to ensure ->real_parent has not passed
330                  * exit_ptrace(). Otherwise we don't report the error but
331                  * pretend ->real_parent untraces us right after return.
332                  */
333                 if (!ret && !(current->real_parent->flags & PF_EXITING)) {
334                         current->ptrace = PT_PTRACED;
335                         __ptrace_link(current, current->real_parent);
336                 }
337         }
338         write_unlock_irq(&tasklist_lock);
339
340         return ret;
341 }
342
343 /*
344  * Called with irqs disabled, returns true if childs should reap themselves.
345  */
346 static int ignoring_children(struct sighand_struct *sigh)
347 {
348         int ret;
349         spin_lock(&sigh->siglock);
350         ret = (sigh->action[SIGCHLD-1].sa.sa_handler == SIG_IGN) ||
351               (sigh->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT);
352         spin_unlock(&sigh->siglock);
353         return ret;
354 }
355
356 /*
357  * Called with tasklist_lock held for writing.
358  * Unlink a traced task, and clean it up if it was a traced zombie.
359  * Return true if it needs to be reaped with release_task().
360  * (We can't call release_task() here because we already hold tasklist_lock.)
361  *
362  * If it's a zombie, our attachedness prevented normal parent notification
363  * or self-reaping.  Do notification now if it would have happened earlier.
364  * If it should reap itself, return true.
365  *
366  * If it's our own child, there is no notification to do. But if our normal
367  * children self-reap, then this child was prevented by ptrace and we must
368  * reap it now, in that case we must also wake up sub-threads sleeping in
369  * do_wait().
370  */
371 static bool __ptrace_detach(struct task_struct *tracer, struct task_struct *p)
372 {
373         bool dead;
374
375         __ptrace_unlink(p);
376
377         if (p->exit_state != EXIT_ZOMBIE)
378                 return false;
379
380         dead = !thread_group_leader(p);
381
382         if (!dead && thread_group_empty(p)) {
383                 if (!same_thread_group(p->real_parent, tracer))
384                         dead = do_notify_parent(p, p->exit_signal);
385                 else if (ignoring_children(tracer->sighand)) {
386                         __wake_up_parent(p, tracer);
387                         dead = true;
388                 }
389         }
390         /* Mark it as in the process of being reaped. */
391         if (dead)
392                 p->exit_state = EXIT_DEAD;
393         return dead;
394 }
395
396 static int ptrace_detach(struct task_struct *child, unsigned int data)
397 {
398         bool dead = false;
399
400         if (!valid_signal(data))
401                 return -EIO;
402
403         /* Architecture-specific hardware disable .. */
404         ptrace_disable(child);
405         clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
406
407         write_lock_irq(&tasklist_lock);
408         /*
409          * This child can be already killed. Make sure de_thread() or
410          * our sub-thread doing do_wait() didn't do release_task() yet.
411          */
412         if (child->ptrace) {
413                 child->exit_code = data;
414                 dead = __ptrace_detach(current, child);
415         }
416         write_unlock_irq(&tasklist_lock);
417
418         if (unlikely(dead))
419                 release_task(child);
420
421         return 0;
422 }
423
424 /*
425  * Detach all tasks we were using ptrace on. Called with tasklist held
426  * for writing, and returns with it held too. But note it can release
427  * and reacquire the lock.
428  */
429 void exit_ptrace(struct task_struct *tracer)
430         __releases(&tasklist_lock)
431         __acquires(&tasklist_lock)
432 {
433         struct task_struct *p, *n;
434         LIST_HEAD(ptrace_dead);
435
436         if (likely(list_empty(&tracer->ptraced)))
437                 return;
438
439         list_for_each_entry_safe(p, n, &tracer->ptraced, ptrace_entry) {
440                 if (__ptrace_detach(tracer, p))
441                         list_add(&p->ptrace_entry, &ptrace_dead);
442         }
443
444         write_unlock_irq(&tasklist_lock);
445         BUG_ON(!list_empty(&tracer->ptraced));
446
447         list_for_each_entry_safe(p, n, &ptrace_dead, ptrace_entry) {
448                 list_del_init(&p->ptrace_entry);
449                 release_task(p);
450         }
451
452         write_lock_irq(&tasklist_lock);
453 }
454
455 int ptrace_readdata(struct task_struct *tsk, unsigned long src, char __user *dst, int len)
456 {
457         int copied = 0;
458
459         while (len > 0) {
460                 char buf[128];
461                 int this_len, retval;
462
463                 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
464                 retval = access_process_vm(tsk, src, buf, this_len, 0);
465                 if (!retval) {
466                         if (copied)
467                                 break;
468                         return -EIO;
469                 }
470                 if (copy_to_user(dst, buf, retval))
471                         return -EFAULT;
472                 copied += retval;
473                 src += retval;
474                 dst += retval;
475                 len -= retval;
476         }
477         return copied;
478 }
479
480 int ptrace_writedata(struct task_struct *tsk, char __user *src, unsigned long dst, int len)
481 {
482         int copied = 0;
483
484         while (len > 0) {
485                 char buf[128];
486                 int this_len, retval;
487
488                 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
489                 if (copy_from_user(buf, src, this_len))
490                         return -EFAULT;
491                 retval = access_process_vm(tsk, dst, buf, this_len, 1);
492                 if (!retval) {
493                         if (copied)
494                                 break;
495                         return -EIO;
496                 }
497                 copied += retval;
498                 src += retval;
499                 dst += retval;
500                 len -= retval;
501         }
502         return copied;
503 }
504
505 static int ptrace_setoptions(struct task_struct *child, unsigned long data)
506 {
507         child->ptrace &= ~PT_TRACE_MASK;
508
509         if (data & PTRACE_O_TRACESYSGOOD)
510                 child->ptrace |= PT_TRACESYSGOOD;
511
512         if (data & PTRACE_O_TRACEFORK)
513                 child->ptrace |= PT_TRACE_FORK;
514
515         if (data & PTRACE_O_TRACEVFORK)
516                 child->ptrace |= PT_TRACE_VFORK;
517
518         if (data & PTRACE_O_TRACECLONE)
519                 child->ptrace |= PT_TRACE_CLONE;
520
521         if (data & PTRACE_O_TRACEEXEC)
522                 child->ptrace |= PT_TRACE_EXEC;
523
524         if (data & PTRACE_O_TRACEVFORKDONE)
525                 child->ptrace |= PT_TRACE_VFORK_DONE;
526
527         if (data & PTRACE_O_TRACEEXIT)
528                 child->ptrace |= PT_TRACE_EXIT;
529
530         return (data & ~PTRACE_O_MASK) ? -EINVAL : 0;
531 }
532
533 static int ptrace_getsiginfo(struct task_struct *child, siginfo_t *info)
534 {
535         unsigned long flags;
536         int error = -ESRCH;
537
538         if (lock_task_sighand(child, &flags)) {
539                 error = -EINVAL;
540                 if (likely(child->last_siginfo != NULL)) {
541                         *info = *child->last_siginfo;
542                         error = 0;
543                 }
544                 unlock_task_sighand(child, &flags);
545         }
546         return error;
547 }
548
549 static int ptrace_setsiginfo(struct task_struct *child, const siginfo_t *info)
550 {
551         unsigned long flags;
552         int error = -ESRCH;
553
554         if (lock_task_sighand(child, &flags)) {
555                 error = -EINVAL;
556                 if (likely(child->last_siginfo != NULL)) {
557                         *child->last_siginfo = *info;
558                         error = 0;
559                 }
560                 unlock_task_sighand(child, &flags);
561         }
562         return error;
563 }
564
565
566 #ifdef PTRACE_SINGLESTEP
567 #define is_singlestep(request)          ((request) == PTRACE_SINGLESTEP)
568 #else
569 #define is_singlestep(request)          0
570 #endif
571
572 #ifdef PTRACE_SINGLEBLOCK
573 #define is_singleblock(request)         ((request) == PTRACE_SINGLEBLOCK)
574 #else
575 #define is_singleblock(request)         0
576 #endif
577
578 #ifdef PTRACE_SYSEMU
579 #define is_sysemu_singlestep(request)   ((request) == PTRACE_SYSEMU_SINGLESTEP)
580 #else
581 #define is_sysemu_singlestep(request)   0
582 #endif
583
584 static int ptrace_resume(struct task_struct *child, long request,
585                          unsigned long data)
586 {
587         if (!valid_signal(data))
588                 return -EIO;
589
590         if (request == PTRACE_SYSCALL)
591                 set_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
592         else
593                 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
594
595 #ifdef TIF_SYSCALL_EMU
596         if (request == PTRACE_SYSEMU || request == PTRACE_SYSEMU_SINGLESTEP)
597                 set_tsk_thread_flag(child, TIF_SYSCALL_EMU);
598         else
599                 clear_tsk_thread_flag(child, TIF_SYSCALL_EMU);
600 #endif
601
602         if (is_singleblock(request)) {
603                 if (unlikely(!arch_has_block_step()))
604                         return -EIO;
605                 user_enable_block_step(child);
606         } else if (is_singlestep(request) || is_sysemu_singlestep(request)) {
607                 if (unlikely(!arch_has_single_step()))
608                         return -EIO;
609                 user_enable_single_step(child);
610         } else {
611                 user_disable_single_step(child);
612         }
613
614         child->exit_code = data;
615         wake_up_state(child, __TASK_TRACED);
616
617         return 0;
618 }
619
620 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
621
622 static const struct user_regset *
623 find_regset(const struct user_regset_view *view, unsigned int type)
624 {
625         const struct user_regset *regset;
626         int n;
627
628         for (n = 0; n < view->n; ++n) {
629                 regset = view->regsets + n;
630                 if (regset->core_note_type == type)
631                         return regset;
632         }
633
634         return NULL;
635 }
636
637 static int ptrace_regset(struct task_struct *task, int req, unsigned int type,
638                          struct iovec *kiov)
639 {
640         const struct user_regset_view *view = task_user_regset_view(task);
641         const struct user_regset *regset = find_regset(view, type);
642         int regset_no;
643
644         if (!regset || (kiov->iov_len % regset->size) != 0)
645                 return -EINVAL;
646
647         regset_no = regset - view->regsets;
648         kiov->iov_len = min(kiov->iov_len,
649                             (__kernel_size_t) (regset->n * regset->size));
650
651         if (req == PTRACE_GETREGSET)
652                 return copy_regset_to_user(task, view, regset_no, 0,
653                                            kiov->iov_len, kiov->iov_base);
654         else
655                 return copy_regset_from_user(task, view, regset_no, 0,
656                                              kiov->iov_len, kiov->iov_base);
657 }
658
659 #endif
660
661 int ptrace_request(struct task_struct *child, long request,
662                    unsigned long addr, unsigned long data)
663 {
664         bool seized = child->ptrace & PT_SEIZED;
665         int ret = -EIO;
666         siginfo_t siginfo, *si;
667         void __user *datavp = (void __user *) data;
668         unsigned long __user *datalp = datavp;
669         unsigned long flags;
670
671         switch (request) {
672         case PTRACE_PEEKTEXT:
673         case PTRACE_PEEKDATA:
674                 return generic_ptrace_peekdata(child, addr, data);
675         case PTRACE_POKETEXT:
676         case PTRACE_POKEDATA:
677                 return generic_ptrace_pokedata(child, addr, data);
678
679 #ifdef PTRACE_OLDSETOPTIONS
680         case PTRACE_OLDSETOPTIONS:
681 #endif
682         case PTRACE_SETOPTIONS:
683                 ret = ptrace_setoptions(child, data);
684                 break;
685         case PTRACE_GETEVENTMSG:
686                 ret = put_user(child->ptrace_message, datalp);
687                 break;
688
689         case PTRACE_GETSIGINFO:
690                 ret = ptrace_getsiginfo(child, &siginfo);
691                 if (!ret)
692                         ret = copy_siginfo_to_user(datavp, &siginfo);
693                 break;
694
695         case PTRACE_SETSIGINFO:
696                 if (copy_from_user(&siginfo, datavp, sizeof siginfo))
697                         ret = -EFAULT;
698                 else
699                         ret = ptrace_setsiginfo(child, &siginfo);
700                 break;
701
702         case PTRACE_INTERRUPT:
703                 /*
704                  * Stop tracee without any side-effect on signal or job
705                  * control.  At least one trap is guaranteed to happen
706                  * after this request.  If @child is already trapped, the
707                  * current trap is not disturbed and another trap will
708                  * happen after the current trap is ended with PTRACE_CONT.
709                  *
710                  * The actual trap might not be PTRACE_EVENT_STOP trap but
711                  * the pending condition is cleared regardless.
712                  */
713                 if (unlikely(!seized || !lock_task_sighand(child, &flags)))
714                         break;
715
716                 /*
717                  * INTERRUPT doesn't disturb existing trap sans one
718                  * exception.  If ptracer issued LISTEN for the current
719                  * STOP, this INTERRUPT should clear LISTEN and re-trap
720                  * tracee into STOP.
721                  */
722                 if (likely(task_set_jobctl_pending(child, JOBCTL_TRAP_STOP)))
723                         signal_wake_up(child, child->jobctl & JOBCTL_LISTENING);
724
725                 unlock_task_sighand(child, &flags);
726                 ret = 0;
727                 break;
728
729         case PTRACE_LISTEN:
730                 /*
731                  * Listen for events.  Tracee must be in STOP.  It's not
732                  * resumed per-se but is not considered to be in TRACED by
733                  * wait(2) or ptrace(2).  If an async event (e.g. group
734                  * stop state change) happens, tracee will enter STOP trap
735                  * again.  Alternatively, ptracer can issue INTERRUPT to
736                  * finish listening and re-trap tracee into STOP.
737                  */
738                 if (unlikely(!seized || !lock_task_sighand(child, &flags)))
739                         break;
740
741                 si = child->last_siginfo;
742                 if (unlikely(!si || si->si_code >> 8 != PTRACE_EVENT_STOP))
743                         break;
744
745                 child->jobctl |= JOBCTL_LISTENING;
746
747                 /*
748                  * If NOTIFY is set, it means event happened between start
749                  * of this trap and now.  Trigger re-trap immediately.
750                  */
751                 if (child->jobctl & JOBCTL_TRAP_NOTIFY)
752                         signal_wake_up(child, true);
753
754                 unlock_task_sighand(child, &flags);
755                 ret = 0;
756                 break;
757
758         case PTRACE_DETACH:      /* detach a process that was attached. */
759                 ret = ptrace_detach(child, data);
760                 break;
761
762 #ifdef CONFIG_BINFMT_ELF_FDPIC
763         case PTRACE_GETFDPIC: {
764                 struct mm_struct *mm = get_task_mm(child);
765                 unsigned long tmp = 0;
766
767                 ret = -ESRCH;
768                 if (!mm)
769                         break;
770
771                 switch (addr) {
772                 case PTRACE_GETFDPIC_EXEC:
773                         tmp = mm->context.exec_fdpic_loadmap;
774                         break;
775                 case PTRACE_GETFDPIC_INTERP:
776                         tmp = mm->context.interp_fdpic_loadmap;
777                         break;
778                 default:
779                         break;
780                 }
781                 mmput(mm);
782
783                 ret = put_user(tmp, datalp);
784                 break;
785         }
786 #endif
787
788 #ifdef PTRACE_SINGLESTEP
789         case PTRACE_SINGLESTEP:
790 #endif
791 #ifdef PTRACE_SINGLEBLOCK
792         case PTRACE_SINGLEBLOCK:
793 #endif
794 #ifdef PTRACE_SYSEMU
795         case PTRACE_SYSEMU:
796         case PTRACE_SYSEMU_SINGLESTEP:
797 #endif
798         case PTRACE_SYSCALL:
799         case PTRACE_CONT:
800                 return ptrace_resume(child, request, data);
801
802         case PTRACE_KILL:
803                 if (child->exit_state)  /* already dead */
804                         return 0;
805                 return ptrace_resume(child, request, SIGKILL);
806
807 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
808         case PTRACE_GETREGSET:
809         case PTRACE_SETREGSET:
810         {
811                 struct iovec kiov;
812                 struct iovec __user *uiov = datavp;
813
814                 if (!access_ok(VERIFY_WRITE, uiov, sizeof(*uiov)))
815                         return -EFAULT;
816
817                 if (__get_user(kiov.iov_base, &uiov->iov_base) ||
818                     __get_user(kiov.iov_len, &uiov->iov_len))
819                         return -EFAULT;
820
821                 ret = ptrace_regset(child, request, addr, &kiov);
822                 if (!ret)
823                         ret = __put_user(kiov.iov_len, &uiov->iov_len);
824                 break;
825         }
826 #endif
827         default:
828                 break;
829         }
830
831         return ret;
832 }
833
834 static struct task_struct *ptrace_get_task_struct(pid_t pid)
835 {
836         struct task_struct *child;
837
838         rcu_read_lock();
839         child = find_task_by_vpid(pid);
840         if (child)
841                 get_task_struct(child);
842         rcu_read_unlock();
843
844         if (!child)
845                 return ERR_PTR(-ESRCH);
846         return child;
847 }
848
849 #ifndef arch_ptrace_attach
850 #define arch_ptrace_attach(child)       do { } while (0)
851 #endif
852
853 SYSCALL_DEFINE4(ptrace, long, request, long, pid, unsigned long, addr,
854                 unsigned long, data)
855 {
856         struct task_struct *child;
857         long ret;
858
859         if (request == PTRACE_TRACEME) {
860                 ret = ptrace_traceme();
861                 if (!ret)
862                         arch_ptrace_attach(current);
863                 goto out;
864         }
865
866         child = ptrace_get_task_struct(pid);
867         if (IS_ERR(child)) {
868                 ret = PTR_ERR(child);
869                 goto out;
870         }
871
872         if (request == PTRACE_ATTACH || request == PTRACE_SEIZE) {
873                 ret = ptrace_attach(child, request, data);
874                 /*
875                  * Some architectures need to do book-keeping after
876                  * a ptrace attach.
877                  */
878                 if (!ret)
879                         arch_ptrace_attach(child);
880                 goto out_put_task_struct;
881         }
882
883         ret = ptrace_check_attach(child, request == PTRACE_KILL ||
884                                   request == PTRACE_INTERRUPT);
885         if (ret < 0)
886                 goto out_put_task_struct;
887
888         ret = arch_ptrace(child, request, addr, data);
889
890  out_put_task_struct:
891         put_task_struct(child);
892  out:
893         return ret;
894 }
895
896 int generic_ptrace_peekdata(struct task_struct *tsk, unsigned long addr,
897                             unsigned long data)
898 {
899         unsigned long tmp;
900         int copied;
901
902         copied = access_process_vm(tsk, addr, &tmp, sizeof(tmp), 0);
903         if (copied != sizeof(tmp))
904                 return -EIO;
905         return put_user(tmp, (unsigned long __user *)data);
906 }
907
908 int generic_ptrace_pokedata(struct task_struct *tsk, unsigned long addr,
909                             unsigned long data)
910 {
911         int copied;
912
913         copied = access_process_vm(tsk, addr, &data, sizeof(data), 1);
914         return (copied == sizeof(data)) ? 0 : -EIO;
915 }
916
917 #if defined CONFIG_COMPAT
918 #include <linux/compat.h>
919
920 int compat_ptrace_request(struct task_struct *child, compat_long_t request,
921                           compat_ulong_t addr, compat_ulong_t data)
922 {
923         compat_ulong_t __user *datap = compat_ptr(data);
924         compat_ulong_t word;
925         siginfo_t siginfo;
926         int ret;
927
928         switch (request) {
929         case PTRACE_PEEKTEXT:
930         case PTRACE_PEEKDATA:
931                 ret = access_process_vm(child, addr, &word, sizeof(word), 0);
932                 if (ret != sizeof(word))
933                         ret = -EIO;
934                 else
935                         ret = put_user(word, datap);
936                 break;
937
938         case PTRACE_POKETEXT:
939         case PTRACE_POKEDATA:
940                 ret = access_process_vm(child, addr, &data, sizeof(data), 1);
941                 ret = (ret != sizeof(data) ? -EIO : 0);
942                 break;
943
944         case PTRACE_GETEVENTMSG:
945                 ret = put_user((compat_ulong_t) child->ptrace_message, datap);
946                 break;
947
948         case PTRACE_GETSIGINFO:
949                 ret = ptrace_getsiginfo(child, &siginfo);
950                 if (!ret)
951                         ret = copy_siginfo_to_user32(
952                                 (struct compat_siginfo __user *) datap,
953                                 &siginfo);
954                 break;
955
956         case PTRACE_SETSIGINFO:
957                 memset(&siginfo, 0, sizeof siginfo);
958                 if (copy_siginfo_from_user32(
959                             &siginfo, (struct compat_siginfo __user *) datap))
960                         ret = -EFAULT;
961                 else
962                         ret = ptrace_setsiginfo(child, &siginfo);
963                 break;
964 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
965         case PTRACE_GETREGSET:
966         case PTRACE_SETREGSET:
967         {
968                 struct iovec kiov;
969                 struct compat_iovec __user *uiov =
970                         (struct compat_iovec __user *) datap;
971                 compat_uptr_t ptr;
972                 compat_size_t len;
973
974                 if (!access_ok(VERIFY_WRITE, uiov, sizeof(*uiov)))
975                         return -EFAULT;
976
977                 if (__get_user(ptr, &uiov->iov_base) ||
978                     __get_user(len, &uiov->iov_len))
979                         return -EFAULT;
980
981                 kiov.iov_base = compat_ptr(ptr);
982                 kiov.iov_len = len;
983
984                 ret = ptrace_regset(child, request, addr, &kiov);
985                 if (!ret)
986                         ret = __put_user(kiov.iov_len, &uiov->iov_len);
987                 break;
988         }
989 #endif
990
991         default:
992                 ret = ptrace_request(child, request, addr, data);
993         }
994
995         return ret;
996 }
997
998 asmlinkage long compat_sys_ptrace(compat_long_t request, compat_long_t pid,
999                                   compat_long_t addr, compat_long_t data)
1000 {
1001         struct task_struct *child;
1002         long ret;
1003
1004         if (request == PTRACE_TRACEME) {
1005                 ret = ptrace_traceme();
1006                 goto out;
1007         }
1008
1009         child = ptrace_get_task_struct(pid);
1010         if (IS_ERR(child)) {
1011                 ret = PTR_ERR(child);
1012                 goto out;
1013         }
1014
1015         if (request == PTRACE_ATTACH || request == PTRACE_SEIZE) {
1016                 ret = ptrace_attach(child, request, data);
1017                 /*
1018                  * Some architectures need to do book-keeping after
1019                  * a ptrace attach.
1020                  */
1021                 if (!ret)
1022                         arch_ptrace_attach(child);
1023                 goto out_put_task_struct;
1024         }
1025
1026         ret = ptrace_check_attach(child, request == PTRACE_KILL ||
1027                                   request == PTRACE_INTERRUPT);
1028         if (!ret)
1029                 ret = compat_arch_ptrace(child, request, addr, data);
1030
1031  out_put_task_struct:
1032         put_task_struct(child);
1033  out:
1034         return ret;
1035 }
1036 #endif  /* CONFIG_COMPAT */
1037
1038 #ifdef CONFIG_HAVE_HW_BREAKPOINT
1039 int ptrace_get_breakpoints(struct task_struct *tsk)
1040 {
1041         if (atomic_inc_not_zero(&tsk->ptrace_bp_refcnt))
1042                 return 0;
1043
1044         return -1;
1045 }
1046
1047 void ptrace_put_breakpoints(struct task_struct *tsk)
1048 {
1049         if (atomic_dec_and_test(&tsk->ptrace_bp_refcnt))
1050                 flush_ptrace_hw_breakpoint(tsk);
1051 }
1052 #endif /* CONFIG_HAVE_HW_BREAKPOINT */