usb: gadget: Allow to build multiple legacy gadgets
[profile/mobile/platform/kernel/linux-3.10-sc7730.git] / kernel / exit.c
1 /*
2  *  linux/kernel/exit.c
3  *
4  *  Copyright (C) 1991, 1992  Linus Torvalds
5  */
6
7 #include <linux/mm.h>
8 #include <linux/slab.h>
9 #include <linux/interrupt.h>
10 #include <linux/module.h>
11 #include <linux/capability.h>
12 #include <linux/completion.h>
13 #include <linux/personality.h>
14 #include <linux/tty.h>
15 #include <linux/iocontext.h>
16 #include <linux/key.h>
17 #include <linux/security.h>
18 #include <linux/cpu.h>
19 #include <linux/acct.h>
20 #include <linux/tsacct_kern.h>
21 #include <linux/file.h>
22 #include <linux/fdtable.h>
23 #include <linux/freezer.h>
24 #include <linux/binfmts.h>
25 #include <linux/nsproxy.h>
26 #include <linux/pid_namespace.h>
27 #include <linux/ptrace.h>
28 #include <linux/profile.h>
29 #include <linux/mount.h>
30 #include <linux/proc_fs.h>
31 #include <linux/kthread.h>
32 #include <linux/mempolicy.h>
33 #include <linux/taskstats_kern.h>
34 #include <linux/delayacct.h>
35 #include <linux/cgroup.h>
36 #include <linux/syscalls.h>
37 #include <linux/signal.h>
38 #include <linux/posix-timers.h>
39 #include <linux/cn_proc.h>
40 #include <linux/mutex.h>
41 #include <linux/futex.h>
42 #include <linux/pipe_fs_i.h>
43 #include <linux/audit.h> /* for audit_free() */
44 #include <linux/resource.h>
45 #include <linux/blkdev.h>
46 #include <linux/task_io_accounting_ops.h>
47 #include <linux/tracehook.h>
48 #include <linux/fs_struct.h>
49 #include <linux/init_task.h>
50 #include <linux/perf_event.h>
51 #include <trace/events/sched.h>
52 #include <linux/hw_breakpoint.h>
53 #include <linux/oom.h>
54 #include <linux/writeback.h>
55 #include <linux/shm.h>
56
57 #include <asm/uaccess.h>
58 #include <asm/unistd.h>
59 #include <asm/pgtable.h>
60 #include <asm/mmu_context.h>
61
62 #if defined(CONFIG_SYSTEM_LOAD_ANALYZER)
63 #include <linux/load_analyzer.h>
64 #endif
65
66 static void exit_mm(struct task_struct * tsk);
67
68 static void __unhash_process(struct task_struct *p, bool group_dead)
69 {
70         nr_threads--;
71         detach_pid(p, PIDTYPE_PID);
72         if (group_dead) {
73                 detach_pid(p, PIDTYPE_PGID);
74                 detach_pid(p, PIDTYPE_SID);
75
76                 list_del_rcu(&p->tasks);
77                 list_del_init(&p->sibling);
78                 __this_cpu_dec(process_counts);
79         }
80         list_del_rcu(&p->thread_group);
81         list_del_rcu(&p->thread_node);
82 }
83
84 /*
85  * This function expects the tasklist_lock write-locked.
86  */
87 static void __exit_signal(struct task_struct *tsk)
88 {
89         struct signal_struct *sig = tsk->signal;
90         bool group_dead = thread_group_leader(tsk);
91         struct sighand_struct *sighand;
92         struct tty_struct *uninitialized_var(tty);
93         cputime_t utime, stime;
94
95         sighand = rcu_dereference_check(tsk->sighand,
96                                         lockdep_tasklist_lock_is_held());
97         spin_lock(&sighand->siglock);
98
99         posix_cpu_timers_exit(tsk);
100         if (group_dead) {
101                 posix_cpu_timers_exit_group(tsk);
102                 tty = sig->tty;
103                 sig->tty = NULL;
104         } else {
105                 /*
106                  * This can only happen if the caller is de_thread().
107                  * FIXME: this is the temporary hack, we should teach
108                  * posix-cpu-timers to handle this case correctly.
109                  */
110                 if (unlikely(has_group_leader_pid(tsk)))
111                         posix_cpu_timers_exit_group(tsk);
112
113                 /*
114                  * If there is any task waiting for the group exit
115                  * then notify it:
116                  */
117                 if (sig->notify_count > 0 && !--sig->notify_count)
118                         wake_up_process(sig->group_exit_task);
119
120                 if (tsk == sig->curr_target)
121                         sig->curr_target = next_thread(tsk);
122                 /*
123                  * Accumulate here the counters for all threads but the
124                  * group leader as they die, so they can be added into
125                  * the process-wide totals when those are taken.
126                  * The group leader stays around as a zombie as long
127                  * as there are other threads.  When it gets reaped,
128                  * the exit.c code will add its counts into these totals.
129                  * We won't ever get here for the group leader, since it
130                  * will have been the last reference on the signal_struct.
131                  */
132                 task_cputime(tsk, &utime, &stime);
133                 sig->utime += utime;
134                 sig->stime += stime;
135                 sig->gtime += task_gtime(tsk);
136                 sig->min_flt += tsk->min_flt;
137                 sig->maj_flt += tsk->maj_flt;
138                 sig->nvcsw += tsk->nvcsw;
139                 sig->nivcsw += tsk->nivcsw;
140                 sig->inblock += task_io_get_inblock(tsk);
141                 sig->oublock += task_io_get_oublock(tsk);
142                 task_io_accounting_add(&sig->ioac, &tsk->ioac);
143                 sig->sum_sched_runtime += tsk->se.sum_exec_runtime;
144         }
145
146         sig->nr_threads--;
147         __unhash_process(tsk, group_dead);
148
149         /*
150          * Do this under ->siglock, we can race with another thread
151          * doing sigqueue_free() if we have SIGQUEUE_PREALLOC signals.
152          */
153         flush_sigqueue(&tsk->pending);
154         tsk->sighand = NULL;
155         spin_unlock(&sighand->siglock);
156
157         __cleanup_sighand(sighand);
158         clear_tsk_thread_flag(tsk,TIF_SIGPENDING);
159         if (group_dead) {
160                 flush_sigqueue(&sig->shared_pending);
161                 tty_kref_put(tty);
162         }
163 }
164
165 static void delayed_put_task_struct(struct rcu_head *rhp)
166 {
167         struct task_struct *tsk = container_of(rhp, struct task_struct, rcu);
168
169         perf_event_delayed_put(tsk);
170         trace_sched_process_free(tsk);
171         put_task_struct(tsk);
172 }
173
174
175 void release_task(struct task_struct * p)
176 {
177         struct task_struct *leader;
178         int zap_leader;
179 repeat:
180         /* don't need to get the RCU readlock here - the process is dead and
181          * can't be modifying its own credentials. But shut RCU-lockdep up */
182         rcu_read_lock();
183         atomic_dec(&__task_cred(p)->user->processes);
184         rcu_read_unlock();
185
186         proc_flush_task(p);
187
188         write_lock_irq(&tasklist_lock);
189         ptrace_release_task(p);
190         __exit_signal(p);
191
192         /*
193          * If we are the last non-leader member of the thread
194          * group, and the leader is zombie, then notify the
195          * group leader's parent process. (if it wants notification.)
196          */
197         zap_leader = 0;
198         leader = p->group_leader;
199         if (leader != p && thread_group_empty(leader) && leader->exit_state == EXIT_ZOMBIE) {
200                 /*
201                  * If we were the last child thread and the leader has
202                  * exited already, and the leader's parent ignores SIGCHLD,
203                  * then we are the one who should release the leader.
204                  */
205                 zap_leader = do_notify_parent(leader, leader->exit_signal);
206                 if (zap_leader)
207                         leader->exit_state = EXIT_DEAD;
208         }
209
210         write_unlock_irq(&tasklist_lock);
211         release_thread(p);
212         call_rcu(&p->rcu, delayed_put_task_struct);
213
214         p = leader;
215         if (unlikely(zap_leader))
216                 goto repeat;
217 }
218
219 /*
220  * This checks not only the pgrp, but falls back on the pid if no
221  * satisfactory pgrp is found. I dunno - gdb doesn't work correctly
222  * without this...
223  *
224  * The caller must hold rcu lock or the tasklist lock.
225  */
226 struct pid *session_of_pgrp(struct pid *pgrp)
227 {
228         struct task_struct *p;
229         struct pid *sid = NULL;
230
231         p = pid_task(pgrp, PIDTYPE_PGID);
232         if (p == NULL)
233                 p = pid_task(pgrp, PIDTYPE_PID);
234         if (p != NULL)
235                 sid = task_session(p);
236
237         return sid;
238 }
239
240 /*
241  * Determine if a process group is "orphaned", according to the POSIX
242  * definition in 2.2.2.52.  Orphaned process groups are not to be affected
243  * by terminal-generated stop signals.  Newly orphaned process groups are
244  * to receive a SIGHUP and a SIGCONT.
245  *
246  * "I ask you, have you ever known what it is to be an orphan?"
247  */
248 static int will_become_orphaned_pgrp(struct pid *pgrp, struct task_struct *ignored_task)
249 {
250         struct task_struct *p;
251
252         do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
253                 if ((p == ignored_task) ||
254                     (p->exit_state && thread_group_empty(p)) ||
255                     is_global_init(p->real_parent))
256                         continue;
257
258                 if (task_pgrp(p->real_parent) != pgrp &&
259                     task_session(p->real_parent) == task_session(p))
260                         return 0;
261         } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
262
263         return 1;
264 }
265
266 int is_current_pgrp_orphaned(void)
267 {
268         int retval;
269
270         read_lock(&tasklist_lock);
271         retval = will_become_orphaned_pgrp(task_pgrp(current), NULL);
272         read_unlock(&tasklist_lock);
273
274         return retval;
275 }
276
277 static bool has_stopped_jobs(struct pid *pgrp)
278 {
279         struct task_struct *p;
280
281         do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
282                 if (p->signal->flags & SIGNAL_STOP_STOPPED)
283                         return true;
284         } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
285
286         return false;
287 }
288
289 /*
290  * Check to see if any process groups have become orphaned as
291  * a result of our exiting, and if they have any stopped jobs,
292  * send them a SIGHUP and then a SIGCONT. (POSIX 3.2.2.2)
293  */
294 static void
295 kill_orphaned_pgrp(struct task_struct *tsk, struct task_struct *parent)
296 {
297         struct pid *pgrp = task_pgrp(tsk);
298         struct task_struct *ignored_task = tsk;
299
300         if (!parent)
301                  /* exit: our father is in a different pgrp than
302                   * we are and we were the only connection outside.
303                   */
304                 parent = tsk->real_parent;
305         else
306                 /* reparent: our child is in a different pgrp than
307                  * we are, and it was the only connection outside.
308                  */
309                 ignored_task = NULL;
310
311         if (task_pgrp(parent) != pgrp &&
312             task_session(parent) == task_session(tsk) &&
313             will_become_orphaned_pgrp(pgrp, ignored_task) &&
314             has_stopped_jobs(pgrp)) {
315                 __kill_pgrp_info(SIGHUP, SEND_SIG_PRIV, pgrp);
316                 __kill_pgrp_info(SIGCONT, SEND_SIG_PRIV, pgrp);
317         }
318 }
319
320 void __set_special_pids(struct pid *pid)
321 {
322         struct task_struct *curr = current->group_leader;
323
324         if (task_session(curr) != pid)
325                 change_pid(curr, PIDTYPE_SID, pid);
326
327         if (task_pgrp(curr) != pid)
328                 change_pid(curr, PIDTYPE_PGID, pid);
329 }
330
331 /*
332  * Let kernel threads use this to say that they allow a certain signal.
333  * Must not be used if kthread was cloned with CLONE_SIGHAND.
334  */
335 int allow_signal(int sig)
336 {
337         if (!valid_signal(sig) || sig < 1)
338                 return -EINVAL;
339
340         spin_lock_irq(&current->sighand->siglock);
341         /* This is only needed for daemonize()'ed kthreads */
342         sigdelset(&current->blocked, sig);
343         /*
344          * Kernel threads handle their own signals. Let the signal code
345          * know it'll be handled, so that they don't get converted to
346          * SIGKILL or just silently dropped.
347          */
348         current->sighand->action[(sig)-1].sa.sa_handler = (void __user *)2;
349         recalc_sigpending();
350         spin_unlock_irq(&current->sighand->siglock);
351         return 0;
352 }
353
354 EXPORT_SYMBOL(allow_signal);
355
356 int disallow_signal(int sig)
357 {
358         if (!valid_signal(sig) || sig < 1)
359                 return -EINVAL;
360
361         spin_lock_irq(&current->sighand->siglock);
362         current->sighand->action[(sig)-1].sa.sa_handler = SIG_IGN;
363         recalc_sigpending();
364         spin_unlock_irq(&current->sighand->siglock);
365         return 0;
366 }
367
368 EXPORT_SYMBOL(disallow_signal);
369
370 #ifdef CONFIG_MM_OWNER
371 /*
372  * A task is exiting.   If it owned this mm, find a new owner for the mm.
373  */
374 void mm_update_next_owner(struct mm_struct *mm)
375 {
376         struct task_struct *c, *g, *p = current;
377
378 retry:
379         /*
380          * If the exiting or execing task is not the owner, it's
381          * someone else's problem.
382          */
383         if (mm->owner != p)
384                 return;
385         /*
386          * The current owner is exiting/execing and there are no other
387          * candidates.  Do not leave the mm pointing to a possibly
388          * freed task structure.
389          */
390         if (atomic_read(&mm->mm_users) <= 1) {
391                 mm->owner = NULL;
392                 return;
393         }
394
395         read_lock(&tasklist_lock);
396         /*
397          * Search in the children
398          */
399         list_for_each_entry(c, &p->children, sibling) {
400                 if (c->mm == mm)
401                         goto assign_new_owner;
402         }
403
404         /*
405          * Search in the siblings
406          */
407         list_for_each_entry(c, &p->real_parent->children, sibling) {
408                 if (c->mm == mm)
409                         goto assign_new_owner;
410         }
411
412         /*
413          * Search through everything else. We should not get
414          * here often
415          */
416         do_each_thread(g, c) {
417                 if (c->mm == mm)
418                         goto assign_new_owner;
419         } while_each_thread(g, c);
420
421         read_unlock(&tasklist_lock);
422         /*
423          * We found no owner yet mm_users > 1: this implies that we are
424          * most likely racing with swapoff (try_to_unuse()) or /proc or
425          * ptrace or page migration (get_task_mm()).  Mark owner as NULL.
426          */
427         mm->owner = NULL;
428         return;
429
430 assign_new_owner:
431         BUG_ON(c == p);
432         get_task_struct(c);
433         /*
434          * The task_lock protects c->mm from changing.
435          * We always want mm->owner->mm == mm
436          */
437         task_lock(c);
438         /*
439          * Delay read_unlock() till we have the task_lock()
440          * to ensure that c does not slip away underneath us
441          */
442         read_unlock(&tasklist_lock);
443         if (c->mm != mm) {
444                 task_unlock(c);
445                 put_task_struct(c);
446                 goto retry;
447         }
448         mm->owner = c;
449         task_unlock(c);
450         put_task_struct(c);
451 }
452 #endif /* CONFIG_MM_OWNER */
453
454 /*
455  * Turn us into a lazy TLB process if we
456  * aren't already..
457  */
458 static void exit_mm(struct task_struct * tsk)
459 {
460         struct mm_struct *mm = tsk->mm;
461         struct core_state *core_state;
462
463         mm_release(tsk, mm);
464         if (!mm)
465                 return;
466         sync_mm_rss(mm);
467         /*
468          * Serialize with any possible pending coredump.
469          * We must hold mmap_sem around checking core_state
470          * and clearing tsk->mm.  The core-inducing thread
471          * will increment ->nr_threads for each thread in the
472          * group with ->mm != NULL.
473          */
474         down_read(&mm->mmap_sem);
475         core_state = mm->core_state;
476         if (core_state) {
477                 struct core_thread self;
478                 up_read(&mm->mmap_sem);
479
480                 self.task = tsk;
481                 self.next = xchg(&core_state->dumper.next, &self);
482                 /*
483                  * Implies mb(), the result of xchg() must be visible
484                  * to core_state->dumper.
485                  */
486                 if (atomic_dec_and_test(&core_state->nr_threads))
487                         complete(&core_state->startup);
488
489                 for (;;) {
490                         set_task_state(tsk, TASK_UNINTERRUPTIBLE);
491                         if (!self.task) /* see coredump_finish() */
492                                 break;
493                         freezable_schedule();
494                 }
495                 __set_task_state(tsk, TASK_RUNNING);
496                 down_read(&mm->mmap_sem);
497         }
498         atomic_inc(&mm->mm_count);
499         BUG_ON(mm != tsk->active_mm);
500         /* more a memory barrier than a real lock */
501         task_lock(tsk);
502         tsk->mm = NULL;
503         up_read(&mm->mmap_sem);
504         enter_lazy_tlb(mm, current);
505         task_unlock(tsk);
506         mm_update_next_owner(mm);
507         mmput(mm);
508 }
509
510 /*
511  * When we die, we re-parent all our children, and try to:
512  * 1. give them to another thread in our thread group, if such a member exists
513  * 2. give it to the first ancestor process which prctl'd itself as a
514  *    child_subreaper for its children (like a service manager)
515  * 3. give it to the init process (PID 1) in our pid namespace
516  */
517 static struct task_struct *find_new_reaper(struct task_struct *father)
518         __releases(&tasklist_lock)
519         __acquires(&tasklist_lock)
520 {
521         struct pid_namespace *pid_ns = task_active_pid_ns(father);
522         struct task_struct *thread;
523
524         thread = father;
525         while_each_thread(father, thread) {
526                 if (thread->flags & PF_EXITING)
527                         continue;
528                 if (unlikely(pid_ns->child_reaper == father))
529                         pid_ns->child_reaper = thread;
530                 return thread;
531         }
532
533         if (unlikely(pid_ns->child_reaper == father)) {
534                 write_unlock_irq(&tasklist_lock);
535                 if (unlikely(pid_ns == &init_pid_ns)) {
536                         panic("Attempted to kill init! exitcode=0x%08x\n",
537                                 father->signal->group_exit_code ?:
538                                         father->exit_code);
539                 }
540
541                 zap_pid_ns_processes(pid_ns);
542                 write_lock_irq(&tasklist_lock);
543         } else if (father->signal->has_child_subreaper) {
544                 struct task_struct *reaper;
545
546                 /*
547                  * Find the first ancestor marked as child_subreaper.
548                  * Note that the code below checks same_thread_group(reaper,
549                  * pid_ns->child_reaper).  This is what we need to DTRT in a
550                  * PID namespace. However we still need the check above, see
551                  * http://marc.info/?l=linux-kernel&m=131385460420380
552                  */
553                 for (reaper = father->real_parent;
554                      reaper != &init_task;
555                      reaper = reaper->real_parent) {
556                         if (same_thread_group(reaper, pid_ns->child_reaper))
557                                 break;
558                         if (!reaper->signal->is_child_subreaper)
559                                 continue;
560                         thread = reaper;
561                         do {
562                                 if (!(thread->flags & PF_EXITING))
563                                         return reaper;
564                         } while_each_thread(reaper, thread);
565                 }
566         }
567
568         return pid_ns->child_reaper;
569 }
570
571 /*
572 * Any that need to be release_task'd are put on the @dead list.
573  */
574 static void reparent_leader(struct task_struct *father, struct task_struct *p,
575                                 struct list_head *dead)
576 {
577         list_move_tail(&p->sibling, &p->real_parent->children);
578         /*
579          * If this is a threaded reparent there is no need to
580          * notify anyone anything has happened.
581          */
582         if (same_thread_group(p->real_parent, father))
583                 return;
584
585         /*
586          * We don't want people slaying init.
587          *
588          * Note: we do this even if it is EXIT_DEAD, wait_task_zombie()
589          * can change ->exit_state to EXIT_ZOMBIE. If this is the final
590          * state, do_notify_parent() was already called and ->exit_signal
591          * doesn't matter.
592          */
593         p->exit_signal = SIGCHLD;
594
595         if (p->exit_state == EXIT_DEAD)
596                 return;
597
598         /* If it has exited notify the new parent about this child's death. */
599         if (!p->ptrace &&
600             p->exit_state == EXIT_ZOMBIE && thread_group_empty(p)) {
601                 if (do_notify_parent(p, p->exit_signal)) {
602                         p->exit_state = EXIT_DEAD;
603                         list_move_tail(&p->sibling, dead);
604                 }
605         }
606
607         kill_orphaned_pgrp(p, father);
608 }
609
610 static void forget_original_parent(struct task_struct *father)
611 {
612         struct task_struct *p, *n, *reaper;
613         LIST_HEAD(dead_children);
614
615         write_lock_irq(&tasklist_lock);
616         /*
617          * Note that exit_ptrace() and find_new_reaper() might
618          * drop tasklist_lock and reacquire it.
619          */
620         exit_ptrace(father);
621         reaper = find_new_reaper(father);
622
623         list_for_each_entry_safe(p, n, &father->children, sibling) {
624                 struct task_struct *t = p;
625                 do {
626                         t->real_parent = reaper;
627                         if (t->parent == father) {
628                                 BUG_ON(t->ptrace);
629                                 t->parent = t->real_parent;
630                         }
631                         if (t->pdeath_signal)
632                                 group_send_sig_info(t->pdeath_signal,
633                                                     SEND_SIG_NOINFO, t);
634                 } while_each_thread(p, t);
635                 reparent_leader(father, p, &dead_children);
636         }
637         write_unlock_irq(&tasklist_lock);
638
639         BUG_ON(!list_empty(&father->children));
640
641         list_for_each_entry_safe(p, n, &dead_children, sibling) {
642                 list_del_init(&p->sibling);
643                 release_task(p);
644         }
645 }
646
647 /*
648  * Send signals to all our closest relatives so that they know
649  * to properly mourn us..
650  */
651 static void exit_notify(struct task_struct *tsk, int group_dead)
652 {
653         bool autoreap;
654
655         /*
656          * This does two things:
657          *
658          * A.  Make init inherit all the child processes
659          * B.  Check to see if any process groups have become orphaned
660          *      as a result of our exiting, and if they have any stopped
661          *      jobs, send them a SIGHUP and then a SIGCONT.  (POSIX 3.2.2.2)
662          */
663         forget_original_parent(tsk);
664
665         write_lock_irq(&tasklist_lock);
666         if (group_dead)
667                 kill_orphaned_pgrp(tsk->group_leader, NULL);
668
669         if (unlikely(tsk->ptrace)) {
670                 int sig = thread_group_leader(tsk) &&
671                                 thread_group_empty(tsk) &&
672                                 !ptrace_reparented(tsk) ?
673                         tsk->exit_signal : SIGCHLD;
674                 autoreap = do_notify_parent(tsk, sig);
675         } else if (thread_group_leader(tsk)) {
676                 autoreap = thread_group_empty(tsk) &&
677                         do_notify_parent(tsk, tsk->exit_signal);
678         } else {
679                 autoreap = true;
680         }
681
682         tsk->exit_state = autoreap ? EXIT_DEAD : EXIT_ZOMBIE;
683
684         /* mt-exec, de_thread() is waiting for group leader */
685         if (unlikely(tsk->signal->notify_count < 0))
686                 wake_up_process(tsk->signal->group_exit_task);
687         write_unlock_irq(&tasklist_lock);
688
689         /* If the process is dead, release it - nobody will wait for it */
690         if (autoreap)
691                 release_task(tsk);
692 }
693
694 #ifdef CONFIG_DEBUG_STACK_USAGE
695 static void check_stack_usage(void)
696 {
697         static DEFINE_SPINLOCK(low_water_lock);
698         static int lowest_to_date = THREAD_SIZE;
699         unsigned long free;
700
701         free = stack_not_used(current);
702
703         if (free >= lowest_to_date)
704                 return;
705
706         spin_lock(&low_water_lock);
707         if (free < lowest_to_date) {
708                 printk(KERN_WARNING "%s (%d) used greatest stack depth: "
709                                 "%lu bytes left\n",
710                                 current->comm, task_pid_nr(current), free);
711                 lowest_to_date = free;
712         }
713         spin_unlock(&low_water_lock);
714 }
715 #else
716 static inline void check_stack_usage(void) {}
717 #endif
718
719 void do_exit(long code)
720 {
721         struct task_struct *tsk = current;
722         int group_dead;
723
724 #if defined(CONFIG_SYSTEM_LOAD_ANALYZER)
725         store_killed_task(tsk);
726 #endif
727
728         profile_task_exit(tsk);
729
730         WARN_ON(blk_needs_flush_plug(tsk));
731
732         if (unlikely(in_interrupt()))
733                 panic("Aiee, killing interrupt handler!");
734         if (unlikely(!tsk->pid))
735                 panic("Attempted to kill the idle task!");
736
737         /*
738          * If do_exit is called because this processes oopsed, it's possible
739          * that get_fs() was left as KERNEL_DS, so reset it to USER_DS before
740          * continuing. Amongst other possible reasons, this is to prevent
741          * mm_release()->clear_child_tid() from writing to a user-controlled
742          * kernel address.
743          */
744         set_fs(USER_DS);
745
746         ptrace_event(PTRACE_EVENT_EXIT, code);
747
748         validate_creds_for_do_exit(tsk);
749
750         /*
751          * We're taking recursive faults here in do_exit. Safest is to just
752          * leave this task alone and wait for reboot.
753          */
754         if (unlikely(tsk->flags & PF_EXITING)) {
755                 printk(KERN_ALERT
756                         "Fixing recursive fault but reboot is needed!\n");
757                 /*
758                  * We can do this unlocked here. The futex code uses
759                  * this flag just to verify whether the pi state
760                  * cleanup has been done or not. In the worst case it
761                  * loops once more. We pretend that the cleanup was
762                  * done as there is no way to return. Either the
763                  * OWNER_DIED bit is set by now or we push the blocked
764                  * task into the wait for ever nirwana as well.
765                  */
766                 tsk->flags |= PF_EXITPIDONE;
767                 set_current_state(TASK_UNINTERRUPTIBLE);
768                 schedule();
769         }
770
771         exit_signals(tsk);  /* sets PF_EXITING */
772         /*
773          * tsk->flags are checked in the futex code to protect against
774          * an exiting task cleaning up the robust pi futexes.
775          */
776         smp_mb();
777         raw_spin_unlock_wait(&tsk->pi_lock);
778
779         if (unlikely(in_atomic()))
780                 printk(KERN_INFO "note: %s[%d] exited with preempt_count %d\n",
781                                 current->comm, task_pid_nr(current),
782                                 preempt_count());
783
784         acct_update_integrals(tsk);
785         /* sync mm's RSS info before statistics gathering */
786         if (tsk->mm)
787                 sync_mm_rss(tsk->mm);
788         group_dead = atomic_dec_and_test(&tsk->signal->live);
789         if (group_dead) {
790                 hrtimer_cancel(&tsk->signal->real_timer);
791                 exit_itimers(tsk->signal);
792                 if (tsk->mm)
793                         setmax_mm_hiwater_rss(&tsk->signal->maxrss, tsk->mm);
794         }
795         acct_collect(code, group_dead);
796         if (group_dead)
797                 tty_audit_exit();
798         audit_free(tsk);
799
800         tsk->exit_code = code;
801         taskstats_exit(tsk, group_dead);
802
803         exit_mm(tsk);
804
805         if (group_dead)
806                 acct_process();
807         trace_sched_process_exit(tsk);
808
809         exit_sem(tsk);
810         exit_shm(tsk);
811         exit_files(tsk);
812         exit_fs(tsk);
813         if (group_dead)
814                 disassociate_ctty(1);
815         exit_task_namespaces(tsk);
816         exit_task_work(tsk);
817         check_stack_usage();
818         exit_thread();
819
820         /*
821          * Flush inherited counters to the parent - before the parent
822          * gets woken up by child-exit notifications.
823          *
824          * because of cgroup mode, must be called before cgroup_exit()
825          */
826         perf_event_exit_task(tsk);
827
828         cgroup_exit(tsk, 1);
829
830         module_put(task_thread_info(tsk)->exec_domain->module);
831
832         proc_exit_connector(tsk);
833         /*
834          * FIXME: do that only when needed, using sched_exit tracepoint
835          */
836         ptrace_put_breakpoints(tsk);
837
838         exit_notify(tsk, group_dead);
839 #ifdef CONFIG_NUMA
840         task_lock(tsk);
841         mpol_put(tsk->mempolicy);
842         tsk->mempolicy = NULL;
843         task_unlock(tsk);
844 #endif
845 #ifdef CONFIG_FUTEX
846         if (unlikely(current->pi_state_cache))
847                 kfree(current->pi_state_cache);
848 #endif
849         /*
850          * Make sure we are holding no locks:
851          */
852         debug_check_no_locks_held();
853         /*
854          * We can do this unlocked here. The futex code uses this flag
855          * just to verify whether the pi state cleanup has been done
856          * or not. In the worst case it loops once more.
857          */
858         tsk->flags |= PF_EXITPIDONE;
859
860         if (tsk->io_context)
861                 exit_io_context(tsk);
862
863         if (tsk->splice_pipe)
864                 free_pipe_info(tsk->splice_pipe);
865
866         if (tsk->task_frag.page)
867                 put_page(tsk->task_frag.page);
868
869         validate_creds_for_do_exit(tsk);
870
871         preempt_disable();
872         if (tsk->nr_dirtied)
873                 __this_cpu_add(dirty_throttle_leaks, tsk->nr_dirtied);
874         exit_rcu();
875
876         /*
877          * The setting of TASK_RUNNING by try_to_wake_up() may be delayed
878          * when the following two conditions become true.
879          *   - There is race condition of mmap_sem (It is acquired by
880          *     exit_mm()), and
881          *   - SMI occurs before setting TASK_RUNINNG.
882          *     (or hypervisor of virtual machine switches to other guest)
883          *  As a result, we may become TASK_RUNNING after becoming TASK_DEAD
884          *
885          * To avoid it, we have to wait for releasing tsk->pi_lock which
886          * is held by try_to_wake_up()
887          */
888         smp_mb();
889         raw_spin_unlock_wait(&tsk->pi_lock);
890
891         /* causes final put_task_struct in finish_task_switch(). */
892         tsk->state = TASK_DEAD;
893         tsk->flags |= PF_NOFREEZE;      /* tell freezer to ignore us */
894         schedule();
895         BUG();
896         /* Avoid "noreturn function does return".  */
897         for (;;)
898                 cpu_relax();    /* For when BUG is null */
899 }
900
901 EXPORT_SYMBOL_GPL(do_exit);
902
903 void complete_and_exit(struct completion *comp, long code)
904 {
905         if (comp)
906                 complete(comp);
907
908         do_exit(code);
909 }
910
911 EXPORT_SYMBOL(complete_and_exit);
912
913 SYSCALL_DEFINE1(exit, int, error_code)
914 {
915         do_exit((error_code&0xff)<<8);
916 }
917
918 /*
919  * Take down every thread in the group.  This is called by fatal signals
920  * as well as by sys_exit_group (below).
921  */
922 void
923 do_group_exit(int exit_code)
924 {
925         struct signal_struct *sig = current->signal;
926
927         BUG_ON(exit_code & 0x80); /* core dumps don't get here */
928
929         if (signal_group_exit(sig))
930                 exit_code = sig->group_exit_code;
931         else if (!thread_group_empty(current)) {
932                 struct sighand_struct *const sighand = current->sighand;
933                 spin_lock_irq(&sighand->siglock);
934                 if (signal_group_exit(sig))
935                         /* Another thread got here before we took the lock.  */
936                         exit_code = sig->group_exit_code;
937                 else {
938                         sig->group_exit_code = exit_code;
939                         sig->flags = SIGNAL_GROUP_EXIT;
940                         zap_other_threads(current);
941                 }
942                 spin_unlock_irq(&sighand->siglock);
943         }
944
945         do_exit(exit_code);
946         /* NOTREACHED */
947 }
948
949 /*
950  * this kills every thread in the thread group. Note that any externally
951  * wait4()-ing process will get the correct exit code - even if this
952  * thread is not the thread group leader.
953  */
954 SYSCALL_DEFINE1(exit_group, int, error_code)
955 {
956         do_group_exit((error_code & 0xff) << 8);
957         /* NOTREACHED */
958         return 0;
959 }
960
961 struct wait_opts {
962         enum pid_type           wo_type;
963         int                     wo_flags;
964         struct pid              *wo_pid;
965
966         struct siginfo __user   *wo_info;
967         int __user              *wo_stat;
968         struct rusage __user    *wo_rusage;
969
970         wait_queue_t            child_wait;
971         int                     notask_error;
972 };
973
974 static inline
975 struct pid *task_pid_type(struct task_struct *task, enum pid_type type)
976 {
977         if (type != PIDTYPE_PID)
978                 task = task->group_leader;
979         return task->pids[type].pid;
980 }
981
982 static int eligible_pid(struct wait_opts *wo, struct task_struct *p)
983 {
984         return  wo->wo_type == PIDTYPE_MAX ||
985                 task_pid_type(p, wo->wo_type) == wo->wo_pid;
986 }
987
988 static int eligible_child(struct wait_opts *wo, struct task_struct *p)
989 {
990         if (!eligible_pid(wo, p))
991                 return 0;
992         /* Wait for all children (clone and not) if __WALL is set;
993          * otherwise, wait for clone children *only* if __WCLONE is
994          * set; otherwise, wait for non-clone children *only*.  (Note:
995          * A "clone" child here is one that reports to its parent
996          * using a signal other than SIGCHLD.) */
997         if (((p->exit_signal != SIGCHLD) ^ !!(wo->wo_flags & __WCLONE))
998             && !(wo->wo_flags & __WALL))
999                 return 0;
1000
1001         return 1;
1002 }
1003
1004 static int wait_noreap_copyout(struct wait_opts *wo, struct task_struct *p,
1005                                 pid_t pid, uid_t uid, int why, int status)
1006 {
1007         struct siginfo __user *infop;
1008         int retval = wo->wo_rusage
1009                 ? getrusage(p, RUSAGE_BOTH, wo->wo_rusage) : 0;
1010
1011         put_task_struct(p);
1012         infop = wo->wo_info;
1013         if (infop) {
1014                 if (!retval)
1015                         retval = put_user(SIGCHLD, &infop->si_signo);
1016                 if (!retval)
1017                         retval = put_user(0, &infop->si_errno);
1018                 if (!retval)
1019                         retval = put_user((short)why, &infop->si_code);
1020                 if (!retval)
1021                         retval = put_user(pid, &infop->si_pid);
1022                 if (!retval)
1023                         retval = put_user(uid, &infop->si_uid);
1024                 if (!retval)
1025                         retval = put_user(status, &infop->si_status);
1026         }
1027         if (!retval)
1028                 retval = pid;
1029         return retval;
1030 }
1031
1032 /*
1033  * Handle sys_wait4 work for one task in state EXIT_ZOMBIE.  We hold
1034  * read_lock(&tasklist_lock) on entry.  If we return zero, we still hold
1035  * the lock and this task is uninteresting.  If we return nonzero, we have
1036  * released the lock and the system call should return.
1037  */
1038 static int wait_task_zombie(struct wait_opts *wo, struct task_struct *p)
1039 {
1040         unsigned long state;
1041         int retval, status, traced;
1042         pid_t pid = task_pid_vnr(p);
1043         uid_t uid = from_kuid_munged(current_user_ns(), task_uid(p));
1044         struct siginfo __user *infop;
1045
1046         if (!likely(wo->wo_flags & WEXITED))
1047                 return 0;
1048
1049         if (unlikely(wo->wo_flags & WNOWAIT)) {
1050                 int exit_code = p->exit_code;
1051                 int why;
1052
1053                 get_task_struct(p);
1054                 read_unlock(&tasklist_lock);
1055                 if ((exit_code & 0x7f) == 0) {
1056                         why = CLD_EXITED;
1057                         status = exit_code >> 8;
1058                 } else {
1059                         why = (exit_code & 0x80) ? CLD_DUMPED : CLD_KILLED;
1060                         status = exit_code & 0x7f;
1061                 }
1062                 return wait_noreap_copyout(wo, p, pid, uid, why, status);
1063         }
1064
1065         /*
1066          * Try to move the task's state to DEAD
1067          * only one thread is allowed to do this:
1068          */
1069         state = xchg(&p->exit_state, EXIT_DEAD);
1070         if (state != EXIT_ZOMBIE) {
1071                 BUG_ON(state != EXIT_DEAD);
1072                 return 0;
1073         }
1074
1075         traced = ptrace_reparented(p);
1076         /*
1077          * It can be ptraced but not reparented, check
1078          * thread_group_leader() to filter out sub-threads.
1079          */
1080         if (likely(!traced) && thread_group_leader(p)) {
1081                 struct signal_struct *psig;
1082                 struct signal_struct *sig;
1083                 unsigned long maxrss;
1084                 cputime_t tgutime, tgstime;
1085
1086                 /*
1087                  * The resource counters for the group leader are in its
1088                  * own task_struct.  Those for dead threads in the group
1089                  * are in its signal_struct, as are those for the child
1090                  * processes it has previously reaped.  All these
1091                  * accumulate in the parent's signal_struct c* fields.
1092                  *
1093                  * We don't bother to take a lock here to protect these
1094                  * p->signal fields, because they are only touched by
1095                  * __exit_signal, which runs with tasklist_lock
1096                  * write-locked anyway, and so is excluded here.  We do
1097                  * need to protect the access to parent->signal fields,
1098                  * as other threads in the parent group can be right
1099                  * here reaping other children at the same time.
1100                  *
1101                  * We use thread_group_cputime_adjusted() to get times for the thread
1102                  * group, which consolidates times for all threads in the
1103                  * group including the group leader.
1104                  */
1105                 thread_group_cputime_adjusted(p, &tgutime, &tgstime);
1106                 spin_lock_irq(&p->real_parent->sighand->siglock);
1107                 psig = p->real_parent->signal;
1108                 sig = p->signal;
1109                 psig->cutime += tgutime + sig->cutime;
1110                 psig->cstime += tgstime + sig->cstime;
1111                 psig->cgtime += task_gtime(p) + sig->gtime + sig->cgtime;
1112                 psig->cmin_flt +=
1113                         p->min_flt + sig->min_flt + sig->cmin_flt;
1114                 psig->cmaj_flt +=
1115                         p->maj_flt + sig->maj_flt + sig->cmaj_flt;
1116                 psig->cnvcsw +=
1117                         p->nvcsw + sig->nvcsw + sig->cnvcsw;
1118                 psig->cnivcsw +=
1119                         p->nivcsw + sig->nivcsw + sig->cnivcsw;
1120                 psig->cinblock +=
1121                         task_io_get_inblock(p) +
1122                         sig->inblock + sig->cinblock;
1123                 psig->coublock +=
1124                         task_io_get_oublock(p) +
1125                         sig->oublock + sig->coublock;
1126                 maxrss = max(sig->maxrss, sig->cmaxrss);
1127                 if (psig->cmaxrss < maxrss)
1128                         psig->cmaxrss = maxrss;
1129                 task_io_accounting_add(&psig->ioac, &p->ioac);
1130                 task_io_accounting_add(&psig->ioac, &sig->ioac);
1131                 spin_unlock_irq(&p->real_parent->sighand->siglock);
1132         }
1133
1134         /*
1135          * Now we are sure this task is interesting, and no other
1136          * thread can reap it because we set its state to EXIT_DEAD.
1137          */
1138         read_unlock(&tasklist_lock);
1139
1140         retval = wo->wo_rusage
1141                 ? getrusage(p, RUSAGE_BOTH, wo->wo_rusage) : 0;
1142         status = (p->signal->flags & SIGNAL_GROUP_EXIT)
1143                 ? p->signal->group_exit_code : p->exit_code;
1144         if (!retval && wo->wo_stat)
1145                 retval = put_user(status, wo->wo_stat);
1146
1147         infop = wo->wo_info;
1148         if (!retval && infop)
1149                 retval = put_user(SIGCHLD, &infop->si_signo);
1150         if (!retval && infop)
1151                 retval = put_user(0, &infop->si_errno);
1152         if (!retval && infop) {
1153                 int why;
1154
1155                 if ((status & 0x7f) == 0) {
1156                         why = CLD_EXITED;
1157                         status >>= 8;
1158                 } else {
1159                         why = (status & 0x80) ? CLD_DUMPED : CLD_KILLED;
1160                         status &= 0x7f;
1161                 }
1162                 retval = put_user((short)why, &infop->si_code);
1163                 if (!retval)
1164                         retval = put_user(status, &infop->si_status);
1165         }
1166         if (!retval && infop)
1167                 retval = put_user(pid, &infop->si_pid);
1168         if (!retval && infop)
1169                 retval = put_user(uid, &infop->si_uid);
1170         if (!retval)
1171                 retval = pid;
1172
1173         if (traced) {
1174                 write_lock_irq(&tasklist_lock);
1175                 /* We dropped tasklist, ptracer could die and untrace */
1176                 ptrace_unlink(p);
1177                 /*
1178                  * If this is not a sub-thread, notify the parent.
1179                  * If parent wants a zombie, don't release it now.
1180                  */
1181                 if (thread_group_leader(p) &&
1182                     !do_notify_parent(p, p->exit_signal)) {
1183                         p->exit_state = EXIT_ZOMBIE;
1184                         p = NULL;
1185                 }
1186                 write_unlock_irq(&tasklist_lock);
1187         }
1188         if (p != NULL)
1189                 release_task(p);
1190
1191         return retval;
1192 }
1193
1194 static int *task_stopped_code(struct task_struct *p, bool ptrace)
1195 {
1196         if (ptrace) {
1197                 if (task_is_stopped_or_traced(p) &&
1198                     !(p->jobctl & JOBCTL_LISTENING))
1199                         return &p->exit_code;
1200         } else {
1201                 if (p->signal->flags & SIGNAL_STOP_STOPPED)
1202                         return &p->signal->group_exit_code;
1203         }
1204         return NULL;
1205 }
1206
1207 /**
1208  * wait_task_stopped - Wait for %TASK_STOPPED or %TASK_TRACED
1209  * @wo: wait options
1210  * @ptrace: is the wait for ptrace
1211  * @p: task to wait for
1212  *
1213  * Handle sys_wait4() work for %p in state %TASK_STOPPED or %TASK_TRACED.
1214  *
1215  * CONTEXT:
1216  * read_lock(&tasklist_lock), which is released if return value is
1217  * non-zero.  Also, grabs and releases @p->sighand->siglock.
1218  *
1219  * RETURNS:
1220  * 0 if wait condition didn't exist and search for other wait conditions
1221  * should continue.  Non-zero return, -errno on failure and @p's pid on
1222  * success, implies that tasklist_lock is released and wait condition
1223  * search should terminate.
1224  */
1225 static int wait_task_stopped(struct wait_opts *wo,
1226                                 int ptrace, struct task_struct *p)
1227 {
1228         struct siginfo __user *infop;
1229         int retval, exit_code, *p_code, why;
1230         uid_t uid = 0; /* unneeded, required by compiler */
1231         pid_t pid;
1232
1233         /*
1234          * Traditionally we see ptrace'd stopped tasks regardless of options.
1235          */
1236         if (!ptrace && !(wo->wo_flags & WUNTRACED))
1237                 return 0;
1238
1239         if (!task_stopped_code(p, ptrace))
1240                 return 0;
1241
1242         exit_code = 0;
1243         spin_lock_irq(&p->sighand->siglock);
1244
1245         p_code = task_stopped_code(p, ptrace);
1246         if (unlikely(!p_code))
1247                 goto unlock_sig;
1248
1249         exit_code = *p_code;
1250         if (!exit_code)
1251                 goto unlock_sig;
1252
1253         if (!unlikely(wo->wo_flags & WNOWAIT))
1254                 *p_code = 0;
1255
1256         uid = from_kuid_munged(current_user_ns(), task_uid(p));
1257 unlock_sig:
1258         spin_unlock_irq(&p->sighand->siglock);
1259         if (!exit_code)
1260                 return 0;
1261
1262         /*
1263          * Now we are pretty sure this task is interesting.
1264          * Make sure it doesn't get reaped out from under us while we
1265          * give up the lock and then examine it below.  We don't want to
1266          * keep holding onto the tasklist_lock while we call getrusage and
1267          * possibly take page faults for user memory.
1268          */
1269         get_task_struct(p);
1270         pid = task_pid_vnr(p);
1271         why = ptrace ? CLD_TRAPPED : CLD_STOPPED;
1272         read_unlock(&tasklist_lock);
1273
1274         if (unlikely(wo->wo_flags & WNOWAIT))
1275                 return wait_noreap_copyout(wo, p, pid, uid, why, exit_code);
1276
1277         retval = wo->wo_rusage
1278                 ? getrusage(p, RUSAGE_BOTH, wo->wo_rusage) : 0;
1279         if (!retval && wo->wo_stat)
1280                 retval = put_user((exit_code << 8) | 0x7f, wo->wo_stat);
1281
1282         infop = wo->wo_info;
1283         if (!retval && infop)
1284                 retval = put_user(SIGCHLD, &infop->si_signo);
1285         if (!retval && infop)
1286                 retval = put_user(0, &infop->si_errno);
1287         if (!retval && infop)
1288                 retval = put_user((short)why, &infop->si_code);
1289         if (!retval && infop)
1290                 retval = put_user(exit_code, &infop->si_status);
1291         if (!retval && infop)
1292                 retval = put_user(pid, &infop->si_pid);
1293         if (!retval && infop)
1294                 retval = put_user(uid, &infop->si_uid);
1295         if (!retval)
1296                 retval = pid;
1297         put_task_struct(p);
1298
1299         BUG_ON(!retval);
1300         return retval;
1301 }
1302
1303 /*
1304  * Handle do_wait work for one task in a live, non-stopped state.
1305  * read_lock(&tasklist_lock) on entry.  If we return zero, we still hold
1306  * the lock and this task is uninteresting.  If we return nonzero, we have
1307  * released the lock and the system call should return.
1308  */
1309 static int wait_task_continued(struct wait_opts *wo, struct task_struct *p)
1310 {
1311         int retval;
1312         pid_t pid;
1313         uid_t uid;
1314
1315         if (!unlikely(wo->wo_flags & WCONTINUED))
1316                 return 0;
1317
1318         if (!(p->signal->flags & SIGNAL_STOP_CONTINUED))
1319                 return 0;
1320
1321         spin_lock_irq(&p->sighand->siglock);
1322         /* Re-check with the lock held.  */
1323         if (!(p->signal->flags & SIGNAL_STOP_CONTINUED)) {
1324                 spin_unlock_irq(&p->sighand->siglock);
1325                 return 0;
1326         }
1327         if (!unlikely(wo->wo_flags & WNOWAIT))
1328                 p->signal->flags &= ~SIGNAL_STOP_CONTINUED;
1329         uid = from_kuid_munged(current_user_ns(), task_uid(p));
1330         spin_unlock_irq(&p->sighand->siglock);
1331
1332         pid = task_pid_vnr(p);
1333         get_task_struct(p);
1334         read_unlock(&tasklist_lock);
1335
1336         if (!wo->wo_info) {
1337                 retval = wo->wo_rusage
1338                         ? getrusage(p, RUSAGE_BOTH, wo->wo_rusage) : 0;
1339                 put_task_struct(p);
1340                 if (!retval && wo->wo_stat)
1341                         retval = put_user(0xffff, wo->wo_stat);
1342                 if (!retval)
1343                         retval = pid;
1344         } else {
1345                 retval = wait_noreap_copyout(wo, p, pid, uid,
1346                                              CLD_CONTINUED, SIGCONT);
1347                 BUG_ON(retval == 0);
1348         }
1349
1350         return retval;
1351 }
1352
1353 /*
1354  * Consider @p for a wait by @parent.
1355  *
1356  * -ECHILD should be in ->notask_error before the first call.
1357  * Returns nonzero for a final return, when we have unlocked tasklist_lock.
1358  * Returns zero if the search for a child should continue;
1359  * then ->notask_error is 0 if @p is an eligible child,
1360  * or another error from security_task_wait(), or still -ECHILD.
1361  */
1362 static int wait_consider_task(struct wait_opts *wo, int ptrace,
1363                                 struct task_struct *p)
1364 {
1365         int ret = eligible_child(wo, p);
1366         if (!ret)
1367                 return ret;
1368
1369         ret = security_task_wait(p);
1370         if (unlikely(ret < 0)) {
1371                 /*
1372                  * If we have not yet seen any eligible child,
1373                  * then let this error code replace -ECHILD.
1374                  * A permission error will give the user a clue
1375                  * to look for security policy problems, rather
1376                  * than for mysterious wait bugs.
1377                  */
1378                 if (wo->notask_error)
1379                         wo->notask_error = ret;
1380                 return 0;
1381         }
1382
1383         /* dead body doesn't have much to contribute */
1384         if (unlikely(p->exit_state == EXIT_DEAD)) {
1385                 /*
1386                  * But do not ignore this task until the tracer does
1387                  * wait_task_zombie()->do_notify_parent().
1388                  */
1389                 if (likely(!ptrace) && unlikely(ptrace_reparented(p)))
1390                         wo->notask_error = 0;
1391                 return 0;
1392         }
1393
1394         /* slay zombie? */
1395         if (p->exit_state == EXIT_ZOMBIE) {
1396                 /*
1397                  * A zombie ptracee is only visible to its ptracer.
1398                  * Notification and reaping will be cascaded to the real
1399                  * parent when the ptracer detaches.
1400                  */
1401                 if (likely(!ptrace) && unlikely(p->ptrace)) {
1402                         /* it will become visible, clear notask_error */
1403                         wo->notask_error = 0;
1404                         return 0;
1405                 }
1406
1407                 /* we don't reap group leaders with subthreads */
1408                 if (!delay_group_leader(p))
1409                         return wait_task_zombie(wo, p);
1410
1411                 /*
1412                  * Allow access to stopped/continued state via zombie by
1413                  * falling through.  Clearing of notask_error is complex.
1414                  *
1415                  * When !@ptrace:
1416                  *
1417                  * If WEXITED is set, notask_error should naturally be
1418                  * cleared.  If not, subset of WSTOPPED|WCONTINUED is set,
1419                  * so, if there are live subthreads, there are events to
1420                  * wait for.  If all subthreads are dead, it's still safe
1421                  * to clear - this function will be called again in finite
1422                  * amount time once all the subthreads are released and
1423                  * will then return without clearing.
1424                  *
1425                  * When @ptrace:
1426                  *
1427                  * Stopped state is per-task and thus can't change once the
1428                  * target task dies.  Only continued and exited can happen.
1429                  * Clear notask_error if WCONTINUED | WEXITED.
1430                  */
1431                 if (likely(!ptrace) || (wo->wo_flags & (WCONTINUED | WEXITED)))
1432                         wo->notask_error = 0;
1433         } else {
1434                 /*
1435                  * If @p is ptraced by a task in its real parent's group,
1436                  * hide group stop/continued state when looking at @p as
1437                  * the real parent; otherwise, a single stop can be
1438                  * reported twice as group and ptrace stops.
1439                  *
1440                  * If a ptracer wants to distinguish the two events for its
1441                  * own children, it should create a separate process which
1442                  * takes the role of real parent.
1443                  */
1444                 if (likely(!ptrace) && p->ptrace && !ptrace_reparented(p))
1445                         return 0;
1446
1447                 /*
1448                  * @p is alive and it's gonna stop, continue or exit, so
1449                  * there always is something to wait for.
1450                  */
1451                 wo->notask_error = 0;
1452         }
1453
1454         /*
1455          * Wait for stopped.  Depending on @ptrace, different stopped state
1456          * is used and the two don't interact with each other.
1457          */
1458         ret = wait_task_stopped(wo, ptrace, p);
1459         if (ret)
1460                 return ret;
1461
1462         /*
1463          * Wait for continued.  There's only one continued state and the
1464          * ptracer can consume it which can confuse the real parent.  Don't
1465          * use WCONTINUED from ptracer.  You don't need or want it.
1466          */
1467         return wait_task_continued(wo, p);
1468 }
1469
1470 /*
1471  * Do the work of do_wait() for one thread in the group, @tsk.
1472  *
1473  * -ECHILD should be in ->notask_error before the first call.
1474  * Returns nonzero for a final return, when we have unlocked tasklist_lock.
1475  * Returns zero if the search for a child should continue; then
1476  * ->notask_error is 0 if there were any eligible children,
1477  * or another error from security_task_wait(), or still -ECHILD.
1478  */
1479 static int do_wait_thread(struct wait_opts *wo, struct task_struct *tsk)
1480 {
1481         struct task_struct *p;
1482
1483         list_for_each_entry(p, &tsk->children, sibling) {
1484                 int ret = wait_consider_task(wo, 0, p);
1485                 if (ret)
1486                         return ret;
1487         }
1488
1489         return 0;
1490 }
1491
1492 static int ptrace_do_wait(struct wait_opts *wo, struct task_struct *tsk)
1493 {
1494         struct task_struct *p;
1495
1496         list_for_each_entry(p, &tsk->ptraced, ptrace_entry) {
1497                 int ret = wait_consider_task(wo, 1, p);
1498                 if (ret)
1499                         return ret;
1500         }
1501
1502         return 0;
1503 }
1504
1505 static int child_wait_callback(wait_queue_t *wait, unsigned mode,
1506                                 int sync, void *key)
1507 {
1508         struct wait_opts *wo = container_of(wait, struct wait_opts,
1509                                                 child_wait);
1510         struct task_struct *p = key;
1511
1512         if (!eligible_pid(wo, p))
1513                 return 0;
1514
1515         if ((wo->wo_flags & __WNOTHREAD) && wait->private != p->parent)
1516                 return 0;
1517
1518         return default_wake_function(wait, mode, sync, key);
1519 }
1520
1521 void __wake_up_parent(struct task_struct *p, struct task_struct *parent)
1522 {
1523         __wake_up_sync_key(&parent->signal->wait_chldexit,
1524                                 TASK_INTERRUPTIBLE, 1, p);
1525 }
1526
1527 static long do_wait(struct wait_opts *wo)
1528 {
1529         struct task_struct *tsk;
1530         int retval;
1531
1532         trace_sched_process_wait(wo->wo_pid);
1533
1534         init_waitqueue_func_entry(&wo->child_wait, child_wait_callback);
1535         wo->child_wait.private = current;
1536         add_wait_queue(&current->signal->wait_chldexit, &wo->child_wait);
1537 repeat:
1538         /*
1539          * If there is nothing that can match our critiera just get out.
1540          * We will clear ->notask_error to zero if we see any child that
1541          * might later match our criteria, even if we are not able to reap
1542          * it yet.
1543          */
1544         wo->notask_error = -ECHILD;
1545         if ((wo->wo_type < PIDTYPE_MAX) &&
1546            (!wo->wo_pid || hlist_empty(&wo->wo_pid->tasks[wo->wo_type])))
1547                 goto notask;
1548
1549         set_current_state(TASK_INTERRUPTIBLE);
1550         read_lock(&tasklist_lock);
1551         tsk = current;
1552         do {
1553                 retval = do_wait_thread(wo, tsk);
1554                 if (retval)
1555                         goto end;
1556
1557                 retval = ptrace_do_wait(wo, tsk);
1558                 if (retval)
1559                         goto end;
1560
1561                 if (wo->wo_flags & __WNOTHREAD)
1562                         break;
1563         } while_each_thread(current, tsk);
1564         read_unlock(&tasklist_lock);
1565
1566 notask:
1567         retval = wo->notask_error;
1568         if (!retval && !(wo->wo_flags & WNOHANG)) {
1569                 retval = -ERESTARTSYS;
1570                 if (!signal_pending(current)) {
1571                         schedule();
1572                         goto repeat;
1573                 }
1574         }
1575 end:
1576         __set_current_state(TASK_RUNNING);
1577         remove_wait_queue(&current->signal->wait_chldexit, &wo->child_wait);
1578         return retval;
1579 }
1580
1581 SYSCALL_DEFINE5(waitid, int, which, pid_t, upid, struct siginfo __user *,
1582                 infop, int, options, struct rusage __user *, ru)
1583 {
1584         struct wait_opts wo;
1585         struct pid *pid = NULL;
1586         enum pid_type type;
1587         long ret;
1588
1589         if (options & ~(WNOHANG|WNOWAIT|WEXITED|WSTOPPED|WCONTINUED))
1590                 return -EINVAL;
1591         if (!(options & (WEXITED|WSTOPPED|WCONTINUED)))
1592                 return -EINVAL;
1593
1594         switch (which) {
1595         case P_ALL:
1596                 type = PIDTYPE_MAX;
1597                 break;
1598         case P_PID:
1599                 type = PIDTYPE_PID;
1600                 if (upid <= 0)
1601                         return -EINVAL;
1602                 break;
1603         case P_PGID:
1604                 type = PIDTYPE_PGID;
1605                 if (upid <= 0)
1606                         return -EINVAL;
1607                 break;
1608         default:
1609                 return -EINVAL;
1610         }
1611
1612         if (type < PIDTYPE_MAX)
1613                 pid = find_get_pid(upid);
1614
1615         wo.wo_type      = type;
1616         wo.wo_pid       = pid;
1617         wo.wo_flags     = options;
1618         wo.wo_info      = infop;
1619         wo.wo_stat      = NULL;
1620         wo.wo_rusage    = ru;
1621         ret = do_wait(&wo);
1622
1623         if (ret > 0) {
1624                 ret = 0;
1625         } else if (infop) {
1626                 /*
1627                  * For a WNOHANG return, clear out all the fields
1628                  * we would set so the user can easily tell the
1629                  * difference.
1630                  */
1631                 if (!ret)
1632                         ret = put_user(0, &infop->si_signo);
1633                 if (!ret)
1634                         ret = put_user(0, &infop->si_errno);
1635                 if (!ret)
1636                         ret = put_user(0, &infop->si_code);
1637                 if (!ret)
1638                         ret = put_user(0, &infop->si_pid);
1639                 if (!ret)
1640                         ret = put_user(0, &infop->si_uid);
1641                 if (!ret)
1642                         ret = put_user(0, &infop->si_status);
1643         }
1644
1645         put_pid(pid);
1646         return ret;
1647 }
1648
1649 SYSCALL_DEFINE4(wait4, pid_t, upid, int __user *, stat_addr,
1650                 int, options, struct rusage __user *, ru)
1651 {
1652         struct wait_opts wo;
1653         struct pid *pid = NULL;
1654         enum pid_type type;
1655         long ret;
1656
1657         if (options & ~(WNOHANG|WUNTRACED|WCONTINUED|
1658                         __WNOTHREAD|__WCLONE|__WALL))
1659                 return -EINVAL;
1660
1661         if (upid == -1)
1662                 type = PIDTYPE_MAX;
1663         else if (upid < 0) {
1664                 type = PIDTYPE_PGID;
1665                 pid = find_get_pid(-upid);
1666         } else if (upid == 0) {
1667                 type = PIDTYPE_PGID;
1668                 pid = get_task_pid(current, PIDTYPE_PGID);
1669         } else /* upid > 0 */ {
1670                 type = PIDTYPE_PID;
1671                 pid = find_get_pid(upid);
1672         }
1673
1674         wo.wo_type      = type;
1675         wo.wo_pid       = pid;
1676         wo.wo_flags     = options | WEXITED;
1677         wo.wo_info      = NULL;
1678         wo.wo_stat      = stat_addr;
1679         wo.wo_rusage    = ru;
1680         ret = do_wait(&wo);
1681         put_pid(pid);
1682
1683         return ret;
1684 }
1685
1686 #ifdef __ARCH_WANT_SYS_WAITPID
1687
1688 /*
1689  * sys_waitpid() remains for compatibility. waitpid() should be
1690  * implemented by calling sys_wait4() from libc.a.
1691  */
1692 SYSCALL_DEFINE3(waitpid, pid_t, pid, int __user *, stat_addr, int, options)
1693 {
1694         return sys_wait4(pid, stat_addr, options, NULL);
1695 }
1696
1697 #endif