This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / kernel / exit.c
1 /*
2  *  linux/kernel/exit.c
3  *
4  *  Copyright (C) 1991, 1992  Linus Torvalds
5  */
6
7 #include <linux/config.h>
8 #include <linux/mm.h>
9 #include <linux/slab.h>
10 #include <linux/interrupt.h>
11 #include <linux/smp_lock.h>
12 #include <linux/module.h>
13 #include <linux/completion.h>
14 #include <linux/personality.h>
15 #include <linux/tty.h>
16 #include <linux/namespace.h>
17 #include <linux/security.h>
18 #include <linux/acct.h>
19 #include <linux/file.h>
20 #include <linux/binfmts.h>
21 #include <linux/ptrace.h>
22 #include <linux/profile.h>
23 #include <linux/mount.h>
24 #include <linux/proc_fs.h>
25 #include <linux/mempolicy.h>
26 #include <linux/ckrm.h>
27 #include <linux/ckrm_tsk.h>
28 #include <linux/vs_limit.h>
29
30 #include <asm/uaccess.h>
31 #include <asm/unistd.h>
32 #include <asm/pgtable.h>
33 #include <asm/mmu_context.h>
34
35 extern void sem_exit (void);
36 extern struct task_struct *child_reaper;
37
38 int getrusage(struct task_struct *, int, struct rusage __user *);
39
40 static void __unhash_process(struct task_struct *p)
41 {
42         nr_threads--;
43         /* tasklist_lock is held, is this sufficient? */
44         if (p->vx_info) {
45                 atomic_dec(&p->vx_info->cacct.nr_threads);
46                 vx_nproc_dec(p->vx_info);
47                 // atomic_dec(&p->vx_info->limit.res[RLIMIT_NPROC]);
48         }
49         detach_pid(p, PIDTYPE_PID);
50         detach_pid(p, PIDTYPE_TGID);
51         if (thread_group_leader(p)) {
52                 detach_pid(p, PIDTYPE_PGID);
53                 detach_pid(p, PIDTYPE_SID);
54                 if (p->pid)
55                         __get_cpu_var(process_counts)--;
56         }
57
58         REMOVE_LINKS(p);
59 }
60
61 void release_task(struct task_struct * p)
62 {
63         int zap_leader;
64         task_t *leader;
65         struct dentry *proc_dentry;
66
67 repeat: 
68         BUG_ON(p->state < TASK_ZOMBIE);
69  
70         atomic_dec(&p->user->processes);
71         spin_lock(&p->proc_lock);
72         proc_dentry = proc_pid_unhash(p);
73         write_lock_irq(&tasklist_lock);
74         if (unlikely(p->ptrace))
75                 __ptrace_unlink(p);
76         BUG_ON(!list_empty(&p->ptrace_list) || !list_empty(&p->ptrace_children));
77         __exit_signal(p);
78         __exit_sighand(p);
79         __unhash_process(p);
80
81         /*
82          * If we are the last non-leader member of the thread
83          * group, and the leader is zombie, then notify the
84          * group leader's parent process. (if it wants notification.)
85          */
86         zap_leader = 0;
87         leader = p->group_leader;
88         if (leader != p && thread_group_empty(leader) && leader->state == TASK_ZOMBIE) {
89                 BUG_ON(leader->exit_signal == -1);
90                 do_notify_parent(leader, leader->exit_signal);
91                 /*
92                  * If we were the last child thread and the leader has
93                  * exited already, and the leader's parent ignores SIGCHLD,
94                  * then we are the one who should release the leader.
95                  *
96                  * do_notify_parent() will have marked it self-reaping in
97                  * that case.
98                  */
99                 zap_leader = (leader->exit_signal == -1);
100         }
101
102         p->parent->cutime += p->utime + p->cutime;
103         p->parent->cstime += p->stime + p->cstime;
104         p->parent->cmin_flt += p->min_flt + p->cmin_flt;
105         p->parent->cmaj_flt += p->maj_flt + p->cmaj_flt;
106         p->parent->cnvcsw += p->nvcsw + p->cnvcsw;
107         p->parent->cnivcsw += p->nivcsw + p->cnivcsw;
108         sched_exit(p);
109         write_unlock_irq(&tasklist_lock);
110         spin_unlock(&p->proc_lock);
111         dput(proc_dentry);
112         release_thread(p);
113         put_task_struct(p);
114
115         p = leader;
116         if (unlikely(zap_leader))
117                 goto repeat;
118 }
119
120 /* we are using it only for SMP init */
121
122 void unhash_process(struct task_struct *p)
123 {
124         struct dentry *proc_dentry;
125
126         spin_lock(&p->proc_lock);
127         proc_dentry = proc_pid_unhash(p);
128         write_lock_irq(&tasklist_lock);
129         __unhash_process(p);
130         write_unlock_irq(&tasklist_lock);
131         spin_unlock(&p->proc_lock);
132         proc_pid_flush(proc_dentry);
133 }
134
135 /*
136  * This checks not only the pgrp, but falls back on the pid if no
137  * satisfactory pgrp is found. I dunno - gdb doesn't work correctly
138  * without this...
139  */
140 int session_of_pgrp(int pgrp)
141 {
142         struct task_struct *p;
143         struct list_head *l;
144         struct pid *pid;
145         int sid = -1;
146
147         read_lock(&tasklist_lock);
148         for_each_task_pid(pgrp, PIDTYPE_PGID, p, l, pid)
149                 if (p->signal->session > 0) {
150                         sid = p->signal->session;
151                         goto out;
152                 }
153         p = find_task_by_pid(pgrp);
154         if (p)
155                 sid = p->signal->session;
156 out:
157         read_unlock(&tasklist_lock);
158         
159         return sid;
160 }
161
162 /*
163  * Determine if a process group is "orphaned", according to the POSIX
164  * definition in 2.2.2.52.  Orphaned process groups are not to be affected
165  * by terminal-generated stop signals.  Newly orphaned process groups are
166  * to receive a SIGHUP and a SIGCONT.
167  *
168  * "I ask you, have you ever known what it is to be an orphan?"
169  */
170 static int will_become_orphaned_pgrp(int pgrp, task_t *ignored_task)
171 {
172         struct task_struct *p;
173         struct list_head *l;
174         struct pid *pid;
175         int ret = 1;
176
177         for_each_task_pid(pgrp, PIDTYPE_PGID, p, l, pid) {
178                 if (p == ignored_task
179                                 || p->state >= TASK_ZOMBIE 
180                                 || p->real_parent->pid == 1)
181                         continue;
182                 if (process_group(p->real_parent) != pgrp
183                             && p->real_parent->signal->session == p->signal->session) {
184                         ret = 0;
185                         break;
186                 }
187         }
188         return ret;     /* (sighing) "Often!" */
189 }
190
191 int is_orphaned_pgrp(int pgrp)
192 {
193         int retval;
194
195         read_lock(&tasklist_lock);
196         retval = will_become_orphaned_pgrp(pgrp, NULL);
197         read_unlock(&tasklist_lock);
198
199         return retval;
200 }
201
202 static inline int has_stopped_jobs(int pgrp)
203 {
204         int retval = 0;
205         struct task_struct *p;
206         struct list_head *l;
207         struct pid *pid;
208
209         for_each_task_pid(pgrp, PIDTYPE_PGID, p, l, pid) {
210                 if (p->state != TASK_STOPPED)
211                         continue;
212
213                 /* If p is stopped by a debugger on a signal that won't
214                    stop it, then don't count p as stopped.  This isn't
215                    perfect but it's a good approximation.  */
216                 if (unlikely (p->ptrace)
217                     && p->exit_code != SIGSTOP
218                     && p->exit_code != SIGTSTP
219                     && p->exit_code != SIGTTOU
220                     && p->exit_code != SIGTTIN)
221                         continue;
222
223                 retval = 1;
224                 break;
225         }
226         return retval;
227 }
228
229 /**
230  * reparent_to_init() - Reparent the calling kernel thread to the init task.
231  *
232  * If a kernel thread is launched as a result of a system call, or if
233  * it ever exits, it should generally reparent itself to init so that
234  * it is correctly cleaned up on exit.
235  *
236  * The various task state such as scheduling policy and priority may have
237  * been inherited from a user process, so we reset them to sane values here.
238  *
239  * NOTE that reparent_to_init() gives the caller full capabilities.
240  */
241 void reparent_to_init(void)
242 {
243         write_lock_irq(&tasklist_lock);
244
245         ptrace_unlink(current);
246         /* Reparent to init */
247         REMOVE_LINKS(current);
248         /* FIXME handle vchild_reaper/initpid */
249         current->parent = child_reaper;
250         current->real_parent = child_reaper;
251         SET_LINKS(current);
252
253         /* Set the exit signal to SIGCHLD so we signal init on exit */
254         current->exit_signal = SIGCHLD;
255
256         if ((current->policy == SCHED_NORMAL) && (task_nice(current) < 0))
257                 set_user_nice(current, 0);
258         /* cpus_allowed? */
259         /* rt_priority? */
260         /* signals? */
261         security_task_reparent_to_init(current);
262         memcpy(current->rlim, init_task.rlim, sizeof(*(current->rlim)));
263         atomic_inc(&(INIT_USER->__count));
264         switch_uid(INIT_USER);
265
266         write_unlock_irq(&tasklist_lock);
267 }
268
269 void __set_special_pids(pid_t session, pid_t pgrp)
270 {
271         struct task_struct *curr = current;
272
273         if (curr->signal->session != session) {
274                 detach_pid(curr, PIDTYPE_SID);
275                 curr->signal->session = session;
276                 attach_pid(curr, PIDTYPE_SID, session);
277         }
278         if (process_group(curr) != pgrp) {
279                 detach_pid(curr, PIDTYPE_PGID);
280                 curr->signal->pgrp = pgrp;
281                 attach_pid(curr, PIDTYPE_PGID, pgrp);
282         }
283 }
284
285 void set_special_pids(pid_t session, pid_t pgrp)
286 {
287         write_lock_irq(&tasklist_lock);
288         __set_special_pids(session, pgrp);
289         write_unlock_irq(&tasklist_lock);
290 }
291
292 /*
293  * Let kernel threads use this to say that they
294  * allow a certain signal (since daemonize() will
295  * have disabled all of them by default).
296  */
297 int allow_signal(int sig)
298 {
299         if (sig < 1 || sig > _NSIG)
300                 return -EINVAL;
301
302         spin_lock_irq(&current->sighand->siglock);
303         sigdelset(&current->blocked, sig);
304         if (!current->mm) {
305                 /* Kernel threads handle their own signals.
306                    Let the signal code know it'll be handled, so
307                    that they don't get converted to SIGKILL or
308                    just silently dropped */
309                 current->sighand->action[(sig)-1].sa.sa_handler = (void __user *)2;
310         }
311         recalc_sigpending();
312         spin_unlock_irq(&current->sighand->siglock);
313         return 0;
314 }
315
316 EXPORT_SYMBOL(allow_signal);
317
318 int disallow_signal(int sig)
319 {
320         if (sig < 1 || sig > _NSIG)
321                 return -EINVAL;
322
323         spin_lock_irq(&current->sighand->siglock);
324         sigaddset(&current->blocked, sig);
325         recalc_sigpending();
326         spin_unlock_irq(&current->sighand->siglock);
327         return 0;
328 }
329
330 EXPORT_SYMBOL(disallow_signal);
331
332 /*
333  *      Put all the gunge required to become a kernel thread without
334  *      attached user resources in one place where it belongs.
335  */
336
337 void daemonize(const char *name, ...)
338 {
339         va_list args;
340         struct fs_struct *fs;
341         sigset_t blocked;
342
343         va_start(args, name);
344         vsnprintf(current->comm, sizeof(current->comm), name, args);
345         va_end(args);
346
347         /*
348          * If we were started as result of loading a module, close all of the
349          * user space pages.  We don't need them, and if we didn't close them
350          * they would be locked into memory.
351          */
352         exit_mm(current);
353
354         set_special_pids(1, 1);
355         current->signal->tty = NULL;
356
357         /* Block and flush all signals */
358         sigfillset(&blocked);
359         sigprocmask(SIG_BLOCK, &blocked, NULL);
360         flush_signals(current);
361
362         /* Become as one with the init task */
363
364         exit_fs(current);       /* current->fs->count--; */
365         fs = init_task.fs;
366         current->fs = fs;
367         atomic_inc(&fs->count);
368         exit_files(current);
369         current->files = init_task.files;
370         atomic_inc(&current->files->count);
371
372         reparent_to_init();
373 }
374
375 EXPORT_SYMBOL(daemonize);
376
377 static inline void close_files(struct files_struct * files)
378 {
379         int i, j;
380
381         j = 0;
382         for (;;) {
383                 unsigned long set;
384                 i = j * __NFDBITS;
385                 if (i >= files->max_fdset || i >= files->max_fds)
386                         break;
387                 set = files->open_fds->fds_bits[j++];
388                 while (set) {
389                         if (set & 1) {
390                                 struct file * file = xchg(&files->fd[i], NULL);
391                                 if (file) {
392                                         filp_close(file, files);
393                                         cond_resched();
394                                 }
395                                 vx_openfd_dec(fd);
396                         }
397                         i++;
398                         set >>= 1;
399                 }
400         }
401 }
402
403 struct files_struct *get_files_struct(struct task_struct *task)
404 {
405         struct files_struct *files;
406
407         task_lock(task);
408         files = task->files;
409         if (files)
410                 atomic_inc(&files->count);
411         task_unlock(task);
412
413         return files;
414 }
415
416 void fastcall put_files_struct(struct files_struct *files)
417 {
418         if (atomic_dec_and_test(&files->count)) {
419                 close_files(files);
420                 /*
421                  * Free the fd and fdset arrays if we expanded them.
422                  */
423                 if (files->fd != &files->fd_array[0])
424                         free_fd_array(files->fd, files->max_fds);
425                 if (files->max_fdset > __FD_SETSIZE) {
426                         free_fdset(files->open_fds, files->max_fdset);
427                         free_fdset(files->close_on_exec, files->max_fdset);
428                 }
429                 kmem_cache_free(files_cachep, files);
430         }
431 }
432
433 EXPORT_SYMBOL(put_files_struct);
434
435 static inline void __exit_files(struct task_struct *tsk)
436 {
437         struct files_struct * files = tsk->files;
438
439         if (files) {
440                 task_lock(tsk);
441                 tsk->files = NULL;
442                 task_unlock(tsk);
443                 put_files_struct(files);
444         }
445 }
446
447 void exit_files(struct task_struct *tsk)
448 {
449         __exit_files(tsk);
450 }
451
452 static inline void __put_fs_struct(struct fs_struct *fs)
453 {
454         /* No need to hold fs->lock if we are killing it */
455         if (atomic_dec_and_test(&fs->count)) {
456                 dput(fs->root);
457                 mntput(fs->rootmnt);
458                 dput(fs->pwd);
459                 mntput(fs->pwdmnt);
460                 if (fs->altroot) {
461                         dput(fs->altroot);
462                         mntput(fs->altrootmnt);
463                 }
464                 kmem_cache_free(fs_cachep, fs);
465         }
466 }
467
468 void put_fs_struct(struct fs_struct *fs)
469 {
470         __put_fs_struct(fs);
471 }
472
473 static inline void __exit_fs(struct task_struct *tsk)
474 {
475         struct fs_struct * fs = tsk->fs;
476
477         if (fs) {
478                 task_lock(tsk);
479                 tsk->fs = NULL;
480                 task_unlock(tsk);
481                 __put_fs_struct(fs);
482         }
483 }
484
485 void exit_fs(struct task_struct *tsk)
486 {
487         __exit_fs(tsk);
488 }
489
490 EXPORT_SYMBOL_GPL(exit_fs);
491
492 /*
493  * Turn us into a lazy TLB process if we
494  * aren't already..
495  */
496 static inline void __exit_mm(struct task_struct * tsk)
497 {
498         struct mm_struct *mm = tsk->mm;
499
500         mm_release(tsk, mm);
501         if (!mm)
502                 return;
503         /*
504          * Serialize with any possible pending coredump.
505          * We must hold mmap_sem around checking core_waiters
506          * and clearing tsk->mm.  The core-inducing thread
507          * will increment core_waiters for each thread in the
508          * group with ->mm != NULL.
509          */
510         down_read(&mm->mmap_sem);
511         if (mm->core_waiters) {
512                 up_read(&mm->mmap_sem);
513                 down_write(&mm->mmap_sem);
514                 if (!--mm->core_waiters)
515                         complete(mm->core_startup_done);
516                 up_write(&mm->mmap_sem);
517
518                 wait_for_completion(&mm->core_done);
519                 down_read(&mm->mmap_sem);
520         }
521         atomic_inc(&mm->mm_count);
522         if (mm != tsk->active_mm) BUG();
523         /* more a memory barrier than a real lock */
524         task_lock(tsk);
525         tsk->mm = NULL;
526         up_read(&mm->mmap_sem);
527         enter_lazy_tlb(mm, current);
528         task_unlock(tsk);
529         mmput(mm);
530 }
531
532 void exit_mm(struct task_struct *tsk)
533 {
534         __exit_mm(tsk);
535 }
536
537 EXPORT_SYMBOL(exit_mm);
538
539 static inline void choose_new_parent(task_t *p, task_t *reaper, task_t *child_reaper)
540 {
541         /*
542          * Make sure we're not reparenting to ourselves and that
543          * the parent is not a zombie.
544          */
545         if (p == reaper || reaper->state >= TASK_ZOMBIE)
546                 p->real_parent = child_reaper;
547         else
548                 p->real_parent = reaper;
549         if (p->parent == p->real_parent)
550                 BUG();
551 }
552
553 static inline void reparent_thread(task_t *p, task_t *father, int traced)
554 {
555         /* We don't want people slaying init.  */
556         if (p->exit_signal != -1)
557                 p->exit_signal = SIGCHLD;
558         p->self_exec_id++;
559
560         if (p->pdeath_signal)
561                 /* We already hold the tasklist_lock here.  */
562                 group_send_sig_info(p->pdeath_signal, (void *) 0, p);
563
564         /* Move the child from its dying parent to the new one.  */
565         if (unlikely(traced)) {
566                 /* Preserve ptrace links if someone else is tracing this child.  */
567                 list_del_init(&p->ptrace_list);
568                 if (p->parent != p->real_parent)
569                         list_add(&p->ptrace_list, &p->real_parent->ptrace_children);
570         } else {
571                 /* If this child is being traced, then we're the one tracing it
572                  * anyway, so let go of it.
573                  */
574                 p->ptrace = 0;
575                 list_del_init(&p->sibling);
576                 p->parent = p->real_parent;
577                 list_add_tail(&p->sibling, &p->parent->children);
578
579                 /* If we'd notified the old parent about this child's death,
580                  * also notify the new parent.
581                  */
582                 if (p->state == TASK_ZOMBIE && p->exit_signal != -1 &&
583                     thread_group_empty(p))
584                         do_notify_parent(p, p->exit_signal);
585         }
586
587         /*
588          * process group orphan check
589          * Case ii: Our child is in a different pgrp
590          * than we are, and it was the only connection
591          * outside, so the child pgrp is now orphaned.
592          */
593         if ((process_group(p) != process_group(father)) &&
594             (p->signal->session == father->signal->session)) {
595                 int pgrp = process_group(p);
596
597                 if (will_become_orphaned_pgrp(pgrp, NULL) && has_stopped_jobs(pgrp)) {
598                         __kill_pg_info(SIGHUP, (void *)1, pgrp);
599                         __kill_pg_info(SIGCONT, (void *)1, pgrp);
600                 }
601         }
602 }
603
604 /*
605  * When we die, we re-parent all our children.
606  * Try to give them to another thread in our thread
607  * group, and if no such member exists, give it to
608  * the global child reaper process (ie "init")
609  */
610 static inline void forget_original_parent(struct task_struct * father,
611                                           struct list_head *to_release)
612 {
613         struct task_struct *p, *reaper = father;
614         struct list_head *_p, *_n;
615
616         /* FIXME handle vchild_reaper/initpid */
617         reaper = father->group_leader;
618         if (reaper == father)
619                 reaper = child_reaper;
620
621         /*
622          * There are only two places where our children can be:
623          *
624          * - in our child list
625          * - in our ptraced child list
626          *
627          * Search them and reparent children.
628          */
629         list_for_each_safe(_p, _n, &father->children) {
630                 int ptrace;
631                 p = list_entry(_p,struct task_struct,sibling);
632
633                 ptrace = p->ptrace;
634
635                 /* if father isn't the real parent, then ptrace must be enabled */
636                 BUG_ON(father != p->real_parent && !ptrace);
637
638                 if (father == p->real_parent) {
639                         /* reparent with a reaper, real father it's us */
640                         choose_new_parent(p, reaper, child_reaper);
641                         reparent_thread(p, father, 0);
642                 } else {
643                         /* reparent ptraced task to its real parent */
644                         __ptrace_unlink (p);
645                         if (p->state == TASK_ZOMBIE && p->exit_signal != -1 &&
646                             thread_group_empty(p))
647                                 do_notify_parent(p, p->exit_signal);
648                 }
649
650                 /*
651                  * if the ptraced child is a zombie with exit_signal == -1
652                  * we must collect it before we exit, or it will remain
653                  * zombie forever since we prevented it from self-reap itself
654                  * while it was being traced by us, to be able to see it in wait4.
655                  */
656                 if (unlikely(ptrace && p->state == TASK_ZOMBIE && p->exit_signal == -1))
657                         list_add(&p->ptrace_list, to_release);
658         }
659         list_for_each_safe(_p, _n, &father->ptrace_children) {
660                 p = list_entry(_p,struct task_struct,ptrace_list);
661                 choose_new_parent(p, reaper, child_reaper);
662                 reparent_thread(p, father, 1);
663         }
664 }
665
666 /*
667  * Send signals to all our closest relatives so that they know
668  * to properly mourn us..
669  */
670 static void exit_notify(struct task_struct *tsk)
671 {
672         int state;
673         struct task_struct *t;
674         struct list_head ptrace_dead, *_p, *_n;
675
676         ckrm_cb_exit(tsk);
677
678         if (signal_pending(tsk) && !tsk->signal->group_exit
679             && !thread_group_empty(tsk)) {
680                 /*
681                  * This occurs when there was a race between our exit
682                  * syscall and a group signal choosing us as the one to
683                  * wake up.  It could be that we are the only thread
684                  * alerted to check for pending signals, but another thread
685                  * should be woken now to take the signal since we will not.
686                  * Now we'll wake all the threads in the group just to make
687                  * sure someone gets all the pending signals.
688                  */
689                 read_lock(&tasklist_lock);
690                 spin_lock_irq(&tsk->sighand->siglock);
691                 for (t = next_thread(tsk); t != tsk; t = next_thread(t))
692                         if (!signal_pending(t) && !(t->flags & PF_EXITING)) {
693                                 recalc_sigpending_tsk(t);
694                                 if (signal_pending(t))
695                                         signal_wake_up(t, 0);
696                         }
697                 spin_unlock_irq(&tsk->sighand->siglock);
698                 read_unlock(&tasklist_lock);
699         }
700
701         write_lock_irq(&tasklist_lock);
702
703         /*
704          * This does two things:
705          *
706          * A.  Make init inherit all the child processes
707          * B.  Check to see if any process groups have become orphaned
708          *      as a result of our exiting, and if they have any stopped
709          *      jobs, send them a SIGHUP and then a SIGCONT.  (POSIX 3.2.2.2)
710          */
711
712         INIT_LIST_HEAD(&ptrace_dead);
713         forget_original_parent(tsk, &ptrace_dead);
714         BUG_ON(!list_empty(&tsk->children));
715         BUG_ON(!list_empty(&tsk->ptrace_children));
716
717         /*
718          * Check to see if any process groups have become orphaned
719          * as a result of our exiting, and if they have any stopped
720          * jobs, send them a SIGHUP and then a SIGCONT.  (POSIX 3.2.2.2)
721          *
722          * Case i: Our father is in a different pgrp than we are
723          * and we were the only connection outside, so our pgrp
724          * is about to become orphaned.
725          */
726          
727         t = tsk->real_parent;
728         
729         if ((process_group(t) != process_group(tsk)) &&
730             (t->signal->session == tsk->signal->session) &&
731             will_become_orphaned_pgrp(process_group(tsk), tsk) &&
732             has_stopped_jobs(process_group(tsk))) {
733                 __kill_pg_info(SIGHUP, (void *)1, process_group(tsk));
734                 __kill_pg_info(SIGCONT, (void *)1, process_group(tsk));
735         }
736
737         /* Let father know we died 
738          *
739          * Thread signals are configurable, but you aren't going to use
740          * that to send signals to arbitary processes. 
741          * That stops right now.
742          *
743          * If the parent exec id doesn't match the exec id we saved
744          * when we started then we know the parent has changed security
745          * domain.
746          *
747          * If our self_exec id doesn't match our parent_exec_id then
748          * we have changed execution domain as these two values started
749          * the same after a fork.
750          *      
751          */
752         
753         if (tsk->exit_signal != SIGCHLD && tsk->exit_signal != -1 &&
754             ( tsk->parent_exec_id != t->self_exec_id  ||
755               tsk->self_exec_id != tsk->parent_exec_id)
756             && !capable(CAP_KILL))
757                 tsk->exit_signal = SIGCHLD;
758
759
760         /* If something other than our normal parent is ptracing us, then
761          * send it a SIGCHLD instead of honoring exit_signal.  exit_signal
762          * only has special meaning to our real parent.
763          */
764         if (tsk->exit_signal != -1 && thread_group_empty(tsk)) {
765                 int signal = tsk->parent == tsk->real_parent ? tsk->exit_signal : SIGCHLD;
766                 do_notify_parent(tsk, signal);
767         } else if (tsk->ptrace) {
768                 do_notify_parent(tsk, SIGCHLD);
769         }
770
771         state = TASK_ZOMBIE;
772         if (tsk->exit_signal == -1 && tsk->ptrace == 0)
773                 state = TASK_DEAD;
774         tsk->state = state;
775         tsk->flags |= PF_DEAD;
776
777         /*
778          * Clear these here so that update_process_times() won't try to deliver
779          * itimer, profile or rlimit signals to this task while it is in late exit.
780          */
781         tsk->it_virt_value = 0;
782         tsk->it_prof_value = 0;
783         tsk->rlim[RLIMIT_CPU].rlim_cur = RLIM_INFINITY;
784
785         /*
786          * In the preemption case it must be impossible for the task
787          * to get runnable again, so use "_raw_" unlock to keep
788          * preempt_count elevated until we schedule().
789          *
790          * To avoid deadlock on SMP, interrupts must be unmasked.  If we
791          * don't, subsequently called functions (e.g, wait_task_inactive()
792          * via release_task()) will spin, with interrupt flags
793          * unwittingly blocked, until the other task sleeps.  That task
794          * may itself be waiting for smp_call_function() to answer and
795          * complete, and with interrupts blocked that will never happen.
796          */
797         _raw_write_unlock(&tasklist_lock);
798         local_irq_enable();
799
800         list_for_each_safe(_p, _n, &ptrace_dead) {
801                 list_del_init(_p);
802                 t = list_entry(_p,struct task_struct,ptrace_list);
803                 release_task(t);
804         }
805
806         /* If the process is dead, release it - nobody will wait for it */
807         if (state == TASK_DEAD)
808                 release_task(tsk);
809
810 }
811
812 asmlinkage NORET_TYPE void do_exit(long code)
813 {
814         struct task_struct *tsk = current;
815
816         if (unlikely(in_interrupt()))
817                 panic("Aiee, killing interrupt handler!");
818         if (unlikely(!tsk->pid))
819                 panic("Attempted to kill the idle task!");
820         if (unlikely(tsk->pid == 1))
821                 panic("Attempted to kill init!");
822         if (tsk->io_context)
823                 exit_io_context();
824         tsk->flags |= PF_EXITING;
825         del_timer_sync(&tsk->real_timer);
826
827         if (unlikely(in_atomic()))
828                 printk(KERN_INFO "note: %s[%d] exited with preempt_count %d\n",
829                                 current->comm, current->pid,
830                                 preempt_count());
831
832         profile_exit_task(tsk);
833  
834         if (unlikely(current->ptrace & PT_TRACE_EXIT)) {
835                 current->ptrace_message = code;
836                 ptrace_notify((PTRACE_EVENT_EXIT << 8) | SIGTRAP);
837         }
838
839         acct_process(code);
840         __exit_mm(tsk);
841
842         exit_sem(tsk);
843         __exit_files(tsk);
844         __exit_fs(tsk);
845         exit_namespace(tsk);
846         exit_thread();
847
848         if (tsk->signal->leader)
849                 disassociate_ctty(1);
850
851         module_put(tsk->thread_info->exec_domain->module);
852         if (tsk->binfmt)
853                 module_put(tsk->binfmt->module);
854
855         tsk->exit_code = code;
856 #ifdef CONFIG_CKRM_TYPE_TASKCLASS
857         numtasks_put_ref(tsk->taskclass);
858 #endif
859         exit_notify(tsk);
860 #ifdef CONFIG_NUMA
861         mpol_free(tsk->mempolicy);
862         tsk->mempolicy = NULL;
863 #endif
864         schedule();
865         BUG();
866         /* Avoid "noreturn function does return".  */
867         for (;;) ;
868 }
869
870 NORET_TYPE void complete_and_exit(struct completion *comp, long code)
871 {
872         if (comp)
873                 complete(comp);
874         
875         do_exit(code);
876 }
877
878 EXPORT_SYMBOL(complete_and_exit);
879
880 asmlinkage long sys_exit(int error_code)
881 {
882         do_exit((error_code&0xff)<<8);
883 }
884
885 task_t fastcall *next_thread(const task_t *p)
886 {
887         const struct pid_link *link = p->pids + PIDTYPE_TGID;
888         const struct list_head *tmp, *head = &link->pidptr->task_list;
889
890 #ifdef CONFIG_SMP
891         if (!p->sighand)
892                 BUG();
893         if (!spin_is_locked(&p->sighand->siglock) &&
894                                 !rwlock_is_locked(&tasklist_lock))
895                 BUG();
896 #endif
897         tmp = link->pid_chain.next;
898         if (tmp == head)
899                 tmp = head->next;
900
901         return pid_task(tmp, PIDTYPE_TGID);
902 }
903
904 EXPORT_SYMBOL(next_thread);
905
906 /*
907  * Take down every thread in the group.  This is called by fatal signals
908  * as well as by sys_exit_group (below).
909  */
910 NORET_TYPE void
911 do_group_exit(int exit_code)
912 {
913         BUG_ON(exit_code & 0x80); /* core dumps don't get here */
914
915         if (current->signal->group_exit)
916                 exit_code = current->signal->group_exit_code;
917         else if (!thread_group_empty(current)) {
918                 struct signal_struct *const sig = current->signal;
919                 struct sighand_struct *const sighand = current->sighand;
920                 read_lock(&tasklist_lock);
921                 spin_lock_irq(&sighand->siglock);
922                 if (sig->group_exit)
923                         /* Another thread got here before we took the lock.  */
924                         exit_code = sig->group_exit_code;
925                 else {
926                         sig->group_exit = 1;
927                         sig->group_exit_code = exit_code;
928                         zap_other_threads(current);
929                 }
930                 spin_unlock_irq(&sighand->siglock);
931                 read_unlock(&tasklist_lock);
932         }
933
934         do_exit(exit_code);
935         /* NOTREACHED */
936 }
937
938 /*
939  * this kills every thread in the thread group. Note that any externally
940  * wait4()-ing process will get the correct exit code - even if this
941  * thread is not the thread group leader.
942  */
943 asmlinkage void sys_exit_group(int error_code)
944 {
945         do_group_exit((error_code & 0xff) << 8);
946 }
947
948 static int eligible_child(pid_t pid, int options, task_t *p)
949 {
950         if (pid > 0) {
951                 if (p->pid != pid)
952                         return 0;
953         } else if (!pid) {
954                 if (process_group(p) != process_group(current))
955                         return 0;
956         } else if (pid != -1) {
957                 if (process_group(p) != -pid)
958                         return 0;
959         }
960
961         /*
962          * Do not consider detached threads that are
963          * not ptraced:
964          */
965         if (p->exit_signal == -1 && !p->ptrace)
966                 return 0;
967
968         /* Wait for all children (clone and not) if __WALL is set;
969          * otherwise, wait for clone children *only* if __WCLONE is
970          * set; otherwise, wait for non-clone children *only*.  (Note:
971          * A "clone" child here is one that reports to its parent
972          * using a signal other than SIGCHLD.) */
973         if (((p->exit_signal != SIGCHLD) ^ ((options & __WCLONE) != 0))
974             && !(options & __WALL))
975                 return 0;
976         /*
977          * Do not consider thread group leaders that are
978          * in a non-empty thread group:
979          */
980         if (current->tgid != p->tgid && delay_group_leader(p))
981                 return 2;
982
983         if (security_task_wait(p))
984                 return 0;
985
986         return 1;
987 }
988
989 /*
990  * Handle sys_wait4 work for one task in state TASK_ZOMBIE.  We hold
991  * read_lock(&tasklist_lock) on entry.  If we return zero, we still hold
992  * the lock and this task is uninteresting.  If we return nonzero, we have
993  * released the lock and the system call should return.
994  */
995 static int wait_task_zombie(task_t *p, unsigned int __user *stat_addr, struct rusage __user *ru)
996 {
997         unsigned long state;
998         int retval;
999
1000         /*
1001          * Try to move the task's state to DEAD
1002          * only one thread is allowed to do this:
1003          */
1004         state = xchg(&p->state, TASK_DEAD);
1005         if (state != TASK_ZOMBIE) {
1006                 BUG_ON(state != TASK_DEAD);
1007                 return 0;
1008         }
1009         if (unlikely(p->exit_signal == -1 && p->ptrace == 0))
1010                 /*
1011                  * This can only happen in a race with a ptraced thread
1012                  * dying on another processor.
1013                  */
1014                 return 0;
1015
1016         /*
1017          * Now we are sure this task is interesting, and no other
1018          * thread can reap it because we set its state to TASK_DEAD.
1019          */
1020         read_unlock(&tasklist_lock);
1021
1022         retval = ru ? getrusage(p, RUSAGE_BOTH, ru) : 0;
1023         if (!retval && stat_addr) {
1024                 if (p->signal->group_exit)
1025                         retval = put_user(p->signal->group_exit_code, stat_addr);
1026                 else
1027                         retval = put_user(p->exit_code, stat_addr);
1028         }
1029         if (retval) {
1030                 p->state = TASK_ZOMBIE;
1031                 return retval;
1032         }
1033         retval = p->pid;
1034         if (p->real_parent != p->parent) {
1035                 write_lock_irq(&tasklist_lock);
1036                 /* Double-check with lock held.  */
1037                 if (p->real_parent != p->parent) {
1038                         __ptrace_unlink(p);
1039                         p->state = TASK_ZOMBIE;
1040                         /* If this is a detached thread, this is where it goes away.  */
1041                         if (p->exit_signal == -1) {
1042                                 /* release_task takes the lock itself.  */
1043                                 write_unlock_irq(&tasklist_lock);
1044                                 release_task (p);
1045                         }
1046                         else {
1047                                 do_notify_parent(p, p->exit_signal);
1048                                 write_unlock_irq(&tasklist_lock);
1049                         }
1050                         p = NULL;
1051                 }
1052                 else
1053                         write_unlock_irq(&tasklist_lock);
1054         }
1055         if (p != NULL)
1056                 release_task(p);
1057         BUG_ON(!retval);
1058         return retval;
1059 }
1060
1061 /*
1062  * Handle sys_wait4 work for one task in state TASK_STOPPED.  We hold
1063  * read_lock(&tasklist_lock) on entry.  If we return zero, we still hold
1064  * the lock and this task is uninteresting.  If we return nonzero, we have
1065  * released the lock and the system call should return.
1066  */
1067 static int wait_task_stopped(task_t *p, int delayed_group_leader,
1068                              unsigned int __user *stat_addr,
1069                              struct rusage __user *ru)
1070 {
1071         int retval, exit_code;
1072
1073         if (!p->exit_code)
1074                 return 0;
1075         if (delayed_group_leader && !(p->ptrace & PT_PTRACED) &&
1076             p->signal && p->signal->group_stop_count > 0)
1077                 /*
1078                  * A group stop is in progress and this is the group leader.
1079                  * We won't report until all threads have stopped.
1080                  */
1081                 return 0;
1082
1083         /*
1084          * Now we are pretty sure this task is interesting.
1085          * Make sure it doesn't get reaped out from under us while we
1086          * give up the lock and then examine it below.  We don't want to
1087          * keep holding onto the tasklist_lock while we call getrusage and
1088          * possibly take page faults for user memory.
1089          */
1090         get_task_struct(p);
1091         read_unlock(&tasklist_lock);
1092         write_lock_irq(&tasklist_lock);
1093
1094         /*
1095          * This uses xchg to be atomic with the thread resuming and setting
1096          * it.  It must also be done with the write lock held to prevent a
1097          * race with the TASK_ZOMBIE case.
1098          */
1099         exit_code = xchg(&p->exit_code, 0);
1100         if (unlikely(p->state > TASK_STOPPED)) {
1101                 /*
1102                  * The task resumed and then died.  Let the next iteration
1103                  * catch it in TASK_ZOMBIE.  Note that exit_code might
1104                  * already be zero here if it resumed and did _exit(0).
1105                  * The task itself is dead and won't touch exit_code again;
1106                  * other processors in this function are locked out.
1107                  */
1108                 p->exit_code = exit_code;
1109                 exit_code = 0;
1110         }
1111         if (unlikely(exit_code == 0)) {
1112                 /*
1113                  * Another thread in this function got to it first, or it
1114                  * resumed, or it resumed and then died.
1115                  */
1116                 write_unlock_irq(&tasklist_lock);
1117                 put_task_struct(p);
1118                 read_lock(&tasklist_lock);
1119                 return 0;
1120         }
1121
1122         /* move to end of parent's list to avoid starvation */
1123         remove_parent(p);
1124         add_parent(p, p->parent);
1125
1126         write_unlock_irq(&tasklist_lock);
1127
1128         retval = ru ? getrusage(p, RUSAGE_BOTH, ru) : 0;
1129         if (!retval && stat_addr)
1130                 retval = put_user((exit_code << 8) | 0x7f, stat_addr);
1131         if (!retval)
1132                 retval = p->pid;
1133         put_task_struct(p);
1134
1135         BUG_ON(!retval);
1136         return retval;
1137 }
1138
1139 asmlinkage long sys_wait4(pid_t pid,unsigned int __user *stat_addr, int options, struct rusage __user *ru)
1140 {
1141         DECLARE_WAITQUEUE(wait, current);
1142         struct task_struct *tsk;
1143         int flag, retval;
1144
1145         if (options & ~(WNOHANG|WUNTRACED|__WNOTHREAD|__WCLONE|__WALL))
1146                 return -EINVAL;
1147
1148         add_wait_queue(&current->wait_chldexit,&wait);
1149 repeat:
1150         flag = 0;
1151         current->state = TASK_INTERRUPTIBLE;
1152         read_lock(&tasklist_lock);
1153         tsk = current;
1154         do {
1155                 struct task_struct *p;
1156                 struct list_head *_p;
1157                 int ret;
1158
1159                 list_for_each(_p,&tsk->children) {
1160                         p = list_entry(_p,struct task_struct,sibling);
1161
1162                         ret = eligible_child(pid, options, p);
1163                         if (!ret)
1164                                 continue;
1165                         flag = 1;
1166
1167                         switch (p->state) {
1168                         case TASK_STOPPED:
1169                                 if (!(options & WUNTRACED) &&
1170                                     !(p->ptrace & PT_PTRACED))
1171                                         continue;
1172                                 retval = wait_task_stopped(p, ret == 2,
1173                                                            stat_addr, ru);
1174                                 if (retval != 0) /* He released the lock.  */
1175                                         goto end_wait4;
1176                                 break;
1177                         case TASK_ZOMBIE:
1178                                 /*
1179                                  * Eligible but we cannot release it yet:
1180                                  */
1181                                 if (ret == 2)
1182                                         continue;
1183                                 retval = wait_task_zombie(p, stat_addr, ru);
1184                                 if (retval != 0) /* He released the lock.  */
1185                                         goto end_wait4;
1186                                 break;
1187                         }
1188                 }
1189                 if (!flag) {
1190                         list_for_each (_p,&tsk->ptrace_children) {
1191                                 p = list_entry(_p,struct task_struct,ptrace_list);
1192                                 if (!eligible_child(pid, options, p))
1193                                         continue;
1194                                 flag = 1;
1195                                 break;
1196                         }
1197                 }
1198                 if (options & __WNOTHREAD)
1199                         break;
1200                 tsk = next_thread(tsk);
1201                 if (tsk->signal != current->signal)
1202                         BUG();
1203         } while (tsk != current);
1204         read_unlock(&tasklist_lock);
1205         if (flag) {
1206                 retval = 0;
1207                 if (options & WNOHANG)
1208                         goto end_wait4;
1209                 retval = -ERESTARTSYS;
1210                 if (signal_pending(current))
1211                         goto end_wait4;
1212                 schedule();
1213                 goto repeat;
1214         }
1215         retval = -ECHILD;
1216 end_wait4:
1217         current->state = TASK_RUNNING;
1218         remove_wait_queue(&current->wait_chldexit,&wait);
1219         return retval;
1220 }
1221
1222 #ifdef __ARCH_WANT_SYS_WAITPID
1223
1224 /*
1225  * sys_waitpid() remains for compatibility. waitpid() should be
1226  * implemented by calling sys_wait4() from libc.a.
1227  */
1228 asmlinkage long sys_waitpid(pid_t pid, unsigned __user *stat_addr, int options)
1229 {
1230         return sys_wait4(pid, stat_addr, options, NULL);
1231 }
1232
1233 #endif