blob: fb8de6cbf2c78dd6435239213594f1cdc9a4e28b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/exit.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/mm.h>
8#include <linux/slab.h>
9#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/module.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080011#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/completion.h>
13#include <linux/personality.h>
14#include <linux/tty.h>
Kirill Korotaev6b3286e2006-12-08 02:37:56 -080015#include <linux/mnt_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/key.h>
17#include <linux/security.h>
18#include <linux/cpu.h>
19#include <linux/acct.h>
Jay Lan8f0ab512006-09-30 23:28:59 -070020#include <linux/tsacct_kern.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040022#include <linux/fdtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/binfmts.h>
Serge E. Hallynab516012006-10-02 02:18:06 -070024#include <linux/nsproxy.h>
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -080025#include <linux/pid_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/ptrace.h>
27#include <linux/profile.h>
28#include <linux/mount.h>
29#include <linux/proc_fs.h>
Eric W. Biederman49d769d2007-05-09 02:34:33 -070030#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/mempolicy.h>
Shailabh Nagarc7572492006-07-14 00:24:40 -070032#include <linux/taskstats_kern.h>
Shailabh Nagarca74e922006-07-14 00:24:36 -070033#include <linux/delayacct.h>
Rafael J. Wysocki83144182007-07-17 04:03:35 -070034#include <linux/freezer.h>
Paul Menageb4f48b62007-10-18 23:39:33 -070035#include <linux/cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/syscalls.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070037#include <linux/signal.h>
Oleg Nesterov6a14c5c2006-03-28 16:11:18 -080038#include <linux/posix-timers.h>
Matt Helsley9f460802005-11-07 00:59:16 -080039#include <linux/cn_proc.h>
Ingo Molnarde5097c2006-01-09 15:59:21 -080040#include <linux/mutex.h>
Ingo Molnar0771dfe2006-03-27 01:16:22 -080041#include <linux/futex.h>
Ingo Molnar34f192c2006-03-27 01:16:24 -080042#include <linux/compat.h>
Jens Axboeb92ce552006-04-11 13:52:07 +020043#include <linux/pipe_fs_i.h>
Al Virofa84cb92006-03-29 20:30:19 -050044#include <linux/audit.h> /* for audit_free() */
Adrian Bunk83cc5ed2006-06-25 05:47:41 -070045#include <linux/resource.h>
David Howells0d67a462006-08-29 19:05:56 +010046#include <linux/blkdev.h>
Eric Dumazet6eaeeab2007-05-10 22:22:37 -070047#include <linux/task_io_accounting_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#include <asm/uaccess.h>
50#include <asm/unistd.h>
51#include <asm/pgtable.h>
52#include <asm/mmu_context.h>
53
Adrian Bunk408b6642005-05-01 08:59:29 -070054static void exit_mm(struct task_struct * tsk);
55
Oleg Nesterovd839fd42008-04-30 00:53:11 -070056static inline int task_detached(struct task_struct *p)
57{
58 return p->exit_signal == -1;
59}
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static void __unhash_process(struct task_struct *p)
62{
63 nr_threads--;
64 detach_pid(p, PIDTYPE_PID);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 if (thread_group_leader(p)) {
66 detach_pid(p, PIDTYPE_PGID);
67 detach_pid(p, PIDTYPE_SID);
Oleg Nesterovc97d9892006-03-28 16:11:06 -080068
Eric W. Biederman5e85d4a2006-04-18 22:20:16 -070069 list_del_rcu(&p->tasks);
Oleg Nesterov73b9ebf2006-03-28 16:11:07 -080070 __get_cpu_var(process_counts)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 }
Oleg Nesterov47e65322006-03-28 16:11:25 -080072 list_del_rcu(&p->thread_group);
Oleg Nesterovc97d9892006-03-28 16:11:06 -080073 remove_parent(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074}
75
Oleg Nesterov6a14c5c2006-03-28 16:11:18 -080076/*
77 * This function expects the tasklist_lock write-locked.
78 */
79static void __exit_signal(struct task_struct *tsk)
80{
81 struct signal_struct *sig = tsk->signal;
82 struct sighand_struct *sighand;
83
84 BUG_ON(!sig);
85 BUG_ON(!atomic_read(&sig->count));
86
87 rcu_read_lock();
88 sighand = rcu_dereference(tsk->sighand);
89 spin_lock(&sighand->siglock);
90
91 posix_cpu_timers_exit(tsk);
92 if (atomic_dec_and_test(&sig->count))
93 posix_cpu_timers_exit_group(tsk);
94 else {
95 /*
96 * If there is any task waiting for the group exit
97 * then notify it:
98 */
Oleg Nesterov6db840f2007-10-16 23:27:23 -070099 if (sig->group_exit_task && atomic_read(&sig->count) == sig->notify_count)
Oleg Nesterov6a14c5c2006-03-28 16:11:18 -0800100 wake_up_process(sig->group_exit_task);
Oleg Nesterov6db840f2007-10-16 23:27:23 -0700101
Oleg Nesterov6a14c5c2006-03-28 16:11:18 -0800102 if (tsk == sig->curr_target)
103 sig->curr_target = next_thread(tsk);
104 /*
105 * Accumulate here the counters for all threads but the
106 * group leader as they die, so they can be added into
107 * the process-wide totals when those are taken.
108 * The group leader stays around as a zombie as long
109 * as there are other threads. When it gets reaped,
110 * the exit.c code will add its counts into these totals.
111 * We won't ever get here for the group leader, since it
112 * will have been the last reference on the signal_struct.
113 */
114 sig->utime = cputime_add(sig->utime, tsk->utime);
115 sig->stime = cputime_add(sig->stime, tsk->stime);
Laurent Vivier9ac52312007-10-15 17:00:19 +0200116 sig->gtime = cputime_add(sig->gtime, tsk->gtime);
Oleg Nesterov6a14c5c2006-03-28 16:11:18 -0800117 sig->min_flt += tsk->min_flt;
118 sig->maj_flt += tsk->maj_flt;
119 sig->nvcsw += tsk->nvcsw;
120 sig->nivcsw += tsk->nivcsw;
Eric Dumazet6eaeeab2007-05-10 22:22:37 -0700121 sig->inblock += task_io_get_inblock(tsk);
122 sig->oublock += task_io_get_oublock(tsk);
Balbir Singh172ba842007-07-09 18:52:00 +0200123 sig->sum_sched_runtime += tsk->se.sum_exec_runtime;
Oleg Nesterov6a14c5c2006-03-28 16:11:18 -0800124 sig = NULL; /* Marker for below. */
125 }
126
Oleg Nesterov58767002006-03-28 16:11:20 -0800127 __unhash_process(tsk);
128
Oleg Nesterovda7978b2008-05-23 13:04:41 -0700129 /*
130 * Do this under ->siglock, we can race with another thread
131 * doing sigqueue_free() if we have SIGQUEUE_PREALLOC signals.
132 */
133 flush_sigqueue(&tsk->pending);
134
Oleg Nesterov6a14c5c2006-03-28 16:11:18 -0800135 tsk->signal = NULL;
Oleg Nesterova7e53282006-03-28 16:11:27 -0800136 tsk->sighand = NULL;
Oleg Nesterov6a14c5c2006-03-28 16:11:18 -0800137 spin_unlock(&sighand->siglock);
138 rcu_read_unlock();
139
Oleg Nesterova7e53282006-03-28 16:11:27 -0800140 __cleanup_sighand(sighand);
Oleg Nesterov6a14c5c2006-03-28 16:11:18 -0800141 clear_tsk_thread_flag(tsk,TIF_SIGPENDING);
Oleg Nesterov6a14c5c2006-03-28 16:11:18 -0800142 if (sig) {
143 flush_sigqueue(&sig->shared_pending);
Oleg Nesterov093a8e82006-10-28 10:38:51 -0700144 taskstats_tgid_free(sig);
Oleg Nesterov6a14c5c2006-03-28 16:11:18 -0800145 __cleanup_signal(sig);
146 }
147}
148
Eric W. Biederman8c7904a2006-03-31 02:31:37 -0800149static void delayed_put_task_struct(struct rcu_head *rhp)
150{
151 put_task_struct(container_of(rhp, struct task_struct, rcu));
152}
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154void release_task(struct task_struct * p)
155{
Ingo Molnar36c8b582006-07-03 00:25:41 -0700156 struct task_struct *leader;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 int zap_leader;
Oleg Nesterov1f09f972006-03-28 16:11:11 -0800158repeat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 atomic_dec(&p->user->processes);
Pavel Emelyanov60347f62007-10-18 23:40:03 -0700160 proc_flush_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 write_lock_irq(&tasklist_lock);
Oleg Nesterov1f09f972006-03-28 16:11:11 -0800162 ptrace_unlink(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 BUG_ON(!list_empty(&p->ptrace_list) || !list_empty(&p->ptrace_children));
164 __exit_signal(p);
Oleg Nesterov35f5cad2006-03-28 16:11:19 -0800165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 /*
167 * If we are the last non-leader member of the thread
168 * group, and the leader is zombie, then notify the
169 * group leader's parent process. (if it wants notification.)
170 */
171 zap_leader = 0;
172 leader = p->group_leader;
173 if (leader != p && thread_group_empty(leader) && leader->exit_state == EXIT_ZOMBIE) {
Oleg Nesterovd839fd42008-04-30 00:53:11 -0700174 BUG_ON(task_detached(leader));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 do_notify_parent(leader, leader->exit_signal);
176 /*
177 * If we were the last child thread and the leader has
178 * exited already, and the leader's parent ignores SIGCHLD,
179 * then we are the one who should release the leader.
180 *
181 * do_notify_parent() will have marked it self-reaping in
182 * that case.
183 */
Oleg Nesterovd839fd42008-04-30 00:53:11 -0700184 zap_leader = task_detached(leader);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 write_unlock_irq(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 release_thread(p);
Eric W. Biederman8c7904a2006-03-31 02:31:37 -0800189 call_rcu(&p->rcu, delayed_put_task_struct);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 p = leader;
192 if (unlikely(zap_leader))
193 goto repeat;
194}
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196/*
197 * This checks not only the pgrp, but falls back on the pid if no
198 * satisfactory pgrp is found. I dunno - gdb doesn't work correctly
199 * without this...
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -0800200 *
201 * The caller must hold rcu lock or the tasklist lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 */
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -0800203struct pid *session_of_pgrp(struct pid *pgrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
205 struct task_struct *p;
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -0800206 struct pid *sid = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -0800208 p = pid_task(pgrp, PIDTYPE_PGID);
Oleg Nesterov62dfb552006-12-08 02:38:03 -0800209 if (p == NULL)
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -0800210 p = pid_task(pgrp, PIDTYPE_PID);
Oleg Nesterov62dfb552006-12-08 02:38:03 -0800211 if (p != NULL)
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -0800212 sid = task_session(p);
Oleg Nesterov62dfb552006-12-08 02:38:03 -0800213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return sid;
215}
216
217/*
218 * Determine if a process group is "orphaned", according to the POSIX
219 * definition in 2.2.2.52. Orphaned process groups are not to be affected
220 * by terminal-generated stop signals. Newly orphaned process groups are
221 * to receive a SIGHUP and a SIGCONT.
222 *
223 * "I ask you, have you ever known what it is to be an orphan?"
224 */
Eric W. Biederman0475ac02007-02-12 00:52:57 -0800225static int will_become_orphaned_pgrp(struct pid *pgrp, struct task_struct *ignored_task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Eric W. Biederman0475ac02007-02-12 00:52:57 -0800229 do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
Oleg Nesterov05e83df2008-03-02 21:44:42 +0300230 if ((p == ignored_task) ||
231 (p->exit_state && thread_group_empty(p)) ||
232 is_global_init(p->real_parent))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 continue;
Oleg Nesterov05e83df2008-03-02 21:44:42 +0300234
Eric W. Biederman0475ac02007-02-12 00:52:57 -0800235 if (task_pgrp(p->real_parent) != pgrp &&
Oleg Nesterov05e83df2008-03-02 21:44:42 +0300236 task_session(p->real_parent) == task_session(p))
237 return 0;
Eric W. Biederman0475ac02007-02-12 00:52:57 -0800238 } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
Oleg Nesterov05e83df2008-03-02 21:44:42 +0300239
240 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
Eric W. Biederman3e7cd6c2007-02-12 00:52:58 -0800243int is_current_pgrp_orphaned(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 int retval;
246
247 read_lock(&tasklist_lock);
Eric W. Biederman3e7cd6c2007-02-12 00:52:58 -0800248 retval = will_become_orphaned_pgrp(task_pgrp(current), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 read_unlock(&tasklist_lock);
250
251 return retval;
252}
253
Eric W. Biederman0475ac02007-02-12 00:52:57 -0800254static int has_stopped_jobs(struct pid *pgrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 int retval = 0;
257 struct task_struct *p;
258
Eric W. Biederman0475ac02007-02-12 00:52:57 -0800259 do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
Matthew Wilcox338077e2007-12-06 11:09:35 -0500260 if (!task_is_stopped(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 retval = 1;
263 break;
Eric W. Biederman0475ac02007-02-12 00:52:57 -0800264 } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return retval;
266}
267
Oleg Nesterovf49ee502008-03-02 21:44:40 +0300268/*
269 * Check to see if any process groups have become orphaned as
270 * a result of our exiting, and if they have any stopped jobs,
271 * send them a SIGHUP and then a SIGCONT. (POSIX 3.2.2.2)
272 */
273static void
274kill_orphaned_pgrp(struct task_struct *tsk, struct task_struct *parent)
275{
276 struct pid *pgrp = task_pgrp(tsk);
277 struct task_struct *ignored_task = tsk;
278
279 if (!parent)
280 /* exit: our father is in a different pgrp than
281 * we are and we were the only connection outside.
282 */
283 parent = tsk->real_parent;
284 else
285 /* reparent: our child is in a different pgrp than
286 * we are, and it was the only connection outside.
287 */
288 ignored_task = NULL;
289
290 if (task_pgrp(parent) != pgrp &&
291 task_session(parent) == task_session(tsk) &&
292 will_become_orphaned_pgrp(pgrp, ignored_task) &&
293 has_stopped_jobs(pgrp)) {
294 __kill_pgrp_info(SIGHUP, SEND_SIG_PRIV, pgrp);
295 __kill_pgrp_info(SIGCONT, SEND_SIG_PRIV, pgrp);
296 }
297}
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299/**
Eric W. Biederman49d769d2007-05-09 02:34:33 -0700300 * reparent_to_kthreadd - Reparent the calling kernel thread to kthreadd
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 *
302 * If a kernel thread is launched as a result of a system call, or if
Eric W. Biederman49d769d2007-05-09 02:34:33 -0700303 * it ever exits, it should generally reparent itself to kthreadd so it
304 * isn't in the way of other processes and is correctly cleaned up on exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 *
306 * The various task state such as scheduling policy and priority may have
307 * been inherited from a user process, so we reset them to sane values here.
308 *
Eric W. Biederman49d769d2007-05-09 02:34:33 -0700309 * NOTE that reparent_to_kthreadd() gives the caller full capabilities.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 */
Eric W. Biederman49d769d2007-05-09 02:34:33 -0700311static void reparent_to_kthreadd(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
313 write_lock_irq(&tasklist_lock);
314
315 ptrace_unlink(current);
316 /* Reparent to init */
Oleg Nesterov9b678ec2006-03-28 16:11:05 -0800317 remove_parent(current);
Eric W. Biederman49d769d2007-05-09 02:34:33 -0700318 current->real_parent = current->parent = kthreadd_task;
Oleg Nesterov9b678ec2006-03-28 16:11:05 -0800319 add_parent(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 /* Set the exit signal to SIGCHLD so we signal init on exit */
322 current->exit_signal = SIGCHLD;
323
Ingo Molnare05606d2007-07-09 18:51:59 +0200324 if (task_nice(current) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 set_user_nice(current, 0);
326 /* cpus_allowed? */
327 /* rt_priority? */
328 /* signals? */
329 security_task_reparent_to_init(current);
330 memcpy(current->signal->rlim, init_task.signal->rlim,
331 sizeof(current->signal->rlim));
332 atomic_inc(&(INIT_USER->__count));
333 write_unlock_irq(&tasklist_lock);
334 switch_uid(INIT_USER);
335}
336
Oleg Nesterov8520d7c2008-02-08 04:19:09 -0800337void __set_special_pids(struct pid *pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Oren Laadane19f2472006-01-08 01:03:58 -0800339 struct task_struct *curr = current->group_leader;
Oleg Nesterov8520d7c2008-02-08 04:19:09 -0800340 pid_t nr = pid_nr(pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Oleg Nesterov8520d7c2008-02-08 04:19:09 -0800342 if (task_session(curr) != pid) {
Oleg Nesterov7d8da092008-04-30 00:54:27 -0700343 change_pid(curr, PIDTYPE_SID, pid);
Oleg Nesterov8520d7c2008-02-08 04:19:09 -0800344 set_task_session(curr, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
Oleg Nesterov8520d7c2008-02-08 04:19:09 -0800346 if (task_pgrp(curr) != pid) {
Oleg Nesterov7d8da092008-04-30 00:54:27 -0700347 change_pid(curr, PIDTYPE_PGID, pid);
Oleg Nesterov8520d7c2008-02-08 04:19:09 -0800348 set_task_pgrp(curr, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
350}
351
Oleg Nesterov8520d7c2008-02-08 04:19:09 -0800352static void set_special_pids(struct pid *pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
354 write_lock_irq(&tasklist_lock);
Oleg Nesterov8520d7c2008-02-08 04:19:09 -0800355 __set_special_pids(pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 write_unlock_irq(&tasklist_lock);
357}
358
359/*
360 * Let kernel threads use this to say that they
361 * allow a certain signal (since daemonize() will
362 * have disabled all of them by default).
363 */
364int allow_signal(int sig)
365{
Jesper Juhl7ed20e12005-05-01 08:59:14 -0700366 if (!valid_signal(sig) || sig < 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return -EINVAL;
368
369 spin_lock_irq(&current->sighand->siglock);
370 sigdelset(&current->blocked, sig);
371 if (!current->mm) {
372 /* Kernel threads handle their own signals.
373 Let the signal code know it'll be handled, so
374 that they don't get converted to SIGKILL or
375 just silently dropped */
376 current->sighand->action[(sig)-1].sa.sa_handler = (void __user *)2;
377 }
378 recalc_sigpending();
379 spin_unlock_irq(&current->sighand->siglock);
380 return 0;
381}
382
383EXPORT_SYMBOL(allow_signal);
384
385int disallow_signal(int sig)
386{
Jesper Juhl7ed20e12005-05-01 08:59:14 -0700387 if (!valid_signal(sig) || sig < 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return -EINVAL;
389
390 spin_lock_irq(&current->sighand->siglock);
Oleg Nesterov10ab8252007-05-09 02:34:37 -0700391 current->sighand->action[(sig)-1].sa.sa_handler = SIG_IGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 recalc_sigpending();
393 spin_unlock_irq(&current->sighand->siglock);
394 return 0;
395}
396
397EXPORT_SYMBOL(disallow_signal);
398
399/*
400 * Put all the gunge required to become a kernel thread without
401 * attached user resources in one place where it belongs.
402 */
403
404void daemonize(const char *name, ...)
405{
406 va_list args;
407 struct fs_struct *fs;
408 sigset_t blocked;
409
410 va_start(args, name);
411 vsnprintf(current->comm, sizeof(current->comm), name, args);
412 va_end(args);
413
414 /*
415 * If we were started as result of loading a module, close all of the
416 * user space pages. We don't need them, and if we didn't close them
417 * they would be locked into memory.
418 */
419 exit_mm(current);
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700420 /*
421 * We don't want to have TIF_FREEZE set if the system-wide hibernation
422 * or suspend transition begins right now.
423 */
424 current->flags |= PF_NOFREEZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Oleg Nesterov8520d7c2008-02-08 04:19:09 -0800426 if (current->nsproxy != &init_nsproxy) {
427 get_nsproxy(&init_nsproxy);
428 switch_task_namespaces(current, &init_nsproxy);
429 }
Oleg Nesterov297bd422008-02-08 04:19:10 -0800430 set_special_pids(&init_struct_pid);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800431 proc_clear_tty(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 /* Block and flush all signals */
434 sigfillset(&blocked);
435 sigprocmask(SIG_BLOCK, &blocked, NULL);
436 flush_signals(current);
437
438 /* Become as one with the init task */
439
440 exit_fs(current); /* current->fs->count--; */
441 fs = init_task.fs;
442 current->fs = fs;
443 atomic_inc(&fs->count);
Serge E. Hallynab516012006-10-02 02:18:06 -0700444
Daniel Walkerd4c5e412007-10-18 23:39:59 -0700445 exit_files(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 current->files = init_task.files;
447 atomic_inc(&current->files->count);
448
Eric W. Biederman49d769d2007-05-09 02:34:33 -0700449 reparent_to_kthreadd();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
452EXPORT_SYMBOL(daemonize);
453
Arjan van de Ven858119e2006-01-14 13:20:43 -0800454static void close_files(struct files_struct * files)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 int i, j;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700457 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 j = 0;
Dipankar Sarma4fb3a532005-09-16 19:28:13 -0700460
461 /*
462 * It is safe to dereference the fd table without RCU or
463 * ->file_lock because this is the last reference to the
464 * files structure.
465 */
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700466 fdt = files_fdtable(files);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 for (;;) {
468 unsigned long set;
469 i = j * __NFDBITS;
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800470 if (i >= fdt->max_fds)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 break;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700472 set = fdt->open_fds->fds_bits[j++];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 while (set) {
474 if (set & 1) {
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700475 struct file * file = xchg(&fdt->fd[i], NULL);
Ingo Molnar944be0b2007-02-12 00:52:26 -0800476 if (file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 filp_close(file, files);
Ingo Molnar944be0b2007-02-12 00:52:26 -0800478 cond_resched();
479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
481 i++;
482 set >>= 1;
483 }
484 }
485}
486
487struct files_struct *get_files_struct(struct task_struct *task)
488{
489 struct files_struct *files;
490
491 task_lock(task);
492 files = task->files;
493 if (files)
494 atomic_inc(&files->count);
495 task_unlock(task);
496
497 return files;
498}
499
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800500void put_files_struct(struct files_struct *files)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700502 struct fdtable *fdt;
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (atomic_dec_and_test(&files->count)) {
505 close_files(files);
506 /*
507 * Free the fd and fdset arrays if we expanded them.
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700508 * If the fdtable was embedded, pass files for freeing
509 * at the end of the RCU grace period. Otherwise,
510 * you can free files immediately.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 */
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700512 fdt = files_fdtable(files);
Vadim Lobanov4fd45812006-12-10 02:21:17 -0800513 if (fdt != &files->fdtab)
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700514 kmem_cache_free(files_cachep, files);
Vadim Lobanov01b2d932006-12-22 01:10:43 -0800515 free_fdtable(fdt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 }
517}
518
Al Viro3b125382008-04-22 05:31:30 -0400519void reset_files_struct(struct files_struct *files)
Kirill Korotaev3b9b8ab2006-09-29 02:00:05 -0700520{
Al Viro3b125382008-04-22 05:31:30 -0400521 struct task_struct *tsk = current;
Kirill Korotaev3b9b8ab2006-09-29 02:00:05 -0700522 struct files_struct *old;
523
524 old = tsk->files;
525 task_lock(tsk);
526 tsk->files = files;
527 task_unlock(tsk);
528 put_files_struct(old);
529}
Kirill Korotaev3b9b8ab2006-09-29 02:00:05 -0700530
Al Viro1ec7f1d2008-04-22 05:35:42 -0400531void exit_files(struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
533 struct files_struct * files = tsk->files;
534
535 if (files) {
536 task_lock(tsk);
537 tsk->files = NULL;
538 task_unlock(tsk);
539 put_files_struct(files);
540 }
541}
542
Al Viro1ec7f1d2008-04-22 05:35:42 -0400543void put_fs_struct(struct fs_struct *fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
545 /* No need to hold fs->lock if we are killing it */
546 if (atomic_dec_and_test(&fs->count)) {
Jan Blunck6ac08c32008-02-14 19:34:38 -0800547 path_put(&fs->root);
548 path_put(&fs->pwd);
549 if (fs->altroot.dentry)
550 path_put(&fs->altroot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 kmem_cache_free(fs_cachep, fs);
552 }
553}
554
Al Viro1ec7f1d2008-04-22 05:35:42 -0400555void exit_fs(struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
557 struct fs_struct * fs = tsk->fs;
558
559 if (fs) {
560 task_lock(tsk);
561 tsk->fs = NULL;
562 task_unlock(tsk);
Al Viro1ec7f1d2008-04-22 05:35:42 -0400563 put_fs_struct(fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
565}
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567EXPORT_SYMBOL_GPL(exit_fs);
568
Balbir Singhcf475ad2008-04-29 01:00:16 -0700569#ifdef CONFIG_MM_OWNER
570/*
571 * Task p is exiting and it owned mm, lets find a new owner for it
572 */
573static inline int
574mm_need_new_owner(struct mm_struct *mm, struct task_struct *p)
575{
576 /*
577 * If there are other users of the mm and the owner (us) is exiting
578 * we need to find a new owner to take on the responsibility.
579 */
580 if (!mm)
581 return 0;
582 if (atomic_read(&mm->mm_users) <= 1)
583 return 0;
584 if (mm->owner != p)
585 return 0;
586 return 1;
587}
588
589void mm_update_next_owner(struct mm_struct *mm)
590{
591 struct task_struct *c, *g, *p = current;
592
593retry:
594 if (!mm_need_new_owner(mm, p))
595 return;
596
597 read_lock(&tasklist_lock);
598 /*
599 * Search in the children
600 */
601 list_for_each_entry(c, &p->children, sibling) {
602 if (c->mm == mm)
603 goto assign_new_owner;
604 }
605
606 /*
607 * Search in the siblings
608 */
609 list_for_each_entry(c, &p->parent->children, sibling) {
610 if (c->mm == mm)
611 goto assign_new_owner;
612 }
613
614 /*
615 * Search through everything else. We should not get
616 * here often
617 */
618 do_each_thread(g, c) {
619 if (c->mm == mm)
620 goto assign_new_owner;
621 } while_each_thread(g, c);
622
623 read_unlock(&tasklist_lock);
624 return;
625
626assign_new_owner:
627 BUG_ON(c == p);
628 get_task_struct(c);
629 /*
630 * The task_lock protects c->mm from changing.
631 * We always want mm->owner->mm == mm
632 */
633 task_lock(c);
634 /*
635 * Delay read_unlock() till we have the task_lock()
636 * to ensure that c does not slip away underneath us
637 */
638 read_unlock(&tasklist_lock);
639 if (c->mm != mm) {
640 task_unlock(c);
641 put_task_struct(c);
642 goto retry;
643 }
644 cgroup_mm_owner_callbacks(mm->owner, c);
645 mm->owner = c;
646 task_unlock(c);
647 put_task_struct(c);
648}
649#endif /* CONFIG_MM_OWNER */
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651/*
652 * Turn us into a lazy TLB process if we
653 * aren't already..
654 */
Adrian Bunk408b6642005-05-01 08:59:29 -0700655static void exit_mm(struct task_struct * tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
657 struct mm_struct *mm = tsk->mm;
658
659 mm_release(tsk, mm);
660 if (!mm)
661 return;
662 /*
663 * Serialize with any possible pending coredump.
664 * We must hold mmap_sem around checking core_waiters
665 * and clearing tsk->mm. The core-inducing thread
666 * will increment core_waiters for each thread in the
667 * group with ->mm != NULL.
668 */
669 down_read(&mm->mmap_sem);
670 if (mm->core_waiters) {
671 up_read(&mm->mmap_sem);
672 down_write(&mm->mmap_sem);
673 if (!--mm->core_waiters)
674 complete(mm->core_startup_done);
675 up_write(&mm->mmap_sem);
676
677 wait_for_completion(&mm->core_done);
678 down_read(&mm->mmap_sem);
679 }
680 atomic_inc(&mm->mm_count);
Eric Sesterhenn125e1872006-06-23 02:06:06 -0700681 BUG_ON(mm != tsk->active_mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 /* more a memory barrier than a real lock */
683 task_lock(tsk);
684 tsk->mm = NULL;
685 up_read(&mm->mmap_sem);
686 enter_lazy_tlb(mm, current);
Rafael J. Wysocki0c1eecf2007-07-19 01:47:33 -0700687 /* We don't want this task to be frozen prematurely */
688 clear_freeze_flag(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 task_unlock(tsk);
Balbir Singhcf475ad2008-04-29 01:00:16 -0700690 mm_update_next_owner(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 mmput(mm);
692}
693
Ingo Molnar36c8b582006-07-03 00:25:41 -0700694static void
695reparent_thread(struct task_struct *p, struct task_struct *father, int traced)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Oleg Nesterov241ceee2006-12-24 23:30:44 +0300697 if (p->pdeath_signal)
698 /* We already hold the tasklist_lock here. */
699 group_send_sig_info(p->pdeath_signal, SEND_SIG_NOINFO, p);
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 /* Move the child from its dying parent to the new one. */
702 if (unlikely(traced)) {
703 /* Preserve ptrace links if someone else is tracing this child. */
704 list_del_init(&p->ptrace_list);
Oleg Nesterov53b6f9f2008-04-30 00:53:13 -0700705 if (ptrace_reparented(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 list_add(&p->ptrace_list, &p->real_parent->ptrace_children);
707 } else {
708 /* If this child is being traced, then we're the one tracing it
709 * anyway, so let go of it.
710 */
711 p->ptrace = 0;
Oleg Nesterov6ac781b2006-03-28 16:11:09 -0800712 remove_parent(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 p->parent = p->real_parent;
Oleg Nesterov6ac781b2006-03-28 16:11:09 -0800714 add_parent(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Matthew Wilcox338077e2007-12-06 11:09:35 -0500716 if (task_is_traced(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 /*
718 * If it was at a trace stop, turn it into
719 * a normal stop since it's no longer being
720 * traced.
721 */
722 ptrace_untrace(p);
723 }
724 }
725
Eric W. Biedermanb2b2cbc2006-12-21 21:28:40 -0700726 /* If this is a threaded reparent there is no need to
727 * notify anyone anything has happened.
728 */
Oleg Nesterov376e1d22008-04-30 00:53:12 -0700729 if (same_thread_group(p->real_parent, father))
Eric W. Biedermanb2b2cbc2006-12-21 21:28:40 -0700730 return;
731
732 /* We don't want people slaying init. */
Oleg Nesterovd839fd42008-04-30 00:53:11 -0700733 if (!task_detached(p))
Eric W. Biedermanb2b2cbc2006-12-21 21:28:40 -0700734 p->exit_signal = SIGCHLD;
Eric W. Biedermanb2b2cbc2006-12-21 21:28:40 -0700735
736 /* If we'd notified the old parent about this child's death,
737 * also notify the new parent.
738 */
739 if (!traced && p->exit_state == EXIT_ZOMBIE &&
Oleg Nesterovd839fd42008-04-30 00:53:11 -0700740 !task_detached(p) && thread_group_empty(p))
Eric W. Biedermanb2b2cbc2006-12-21 21:28:40 -0700741 do_notify_parent(p, p->exit_signal);
742
Oleg Nesterovf49ee502008-03-02 21:44:40 +0300743 kill_orphaned_pgrp(p, father);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
746/*
747 * When we die, we re-parent all our children.
748 * Try to give them to another thread in our thread
749 * group, and if no such member exists, give it to
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -0800750 * the child reaper process (ie "init") in our pid
751 * space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 */
Oleg Nesterov762a24b2007-10-18 23:40:00 -0700753static void forget_original_parent(struct task_struct *father)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
Matthias Kaehlcke03ff1792007-10-18 23:39:57 -0700755 struct task_struct *p, *n, *reaper = father;
Oleg Nesterov762a24b2007-10-18 23:40:00 -0700756 struct list_head ptrace_dead;
757
758 INIT_LIST_HEAD(&ptrace_dead);
759
760 write_lock_irq(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 do {
763 reaper = next_thread(reaper);
764 if (reaper == father) {
Sukadev Bhattiprolu88f21d82007-10-18 23:39:50 -0700765 reaper = task_child_reaper(father);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 break;
767 }
Oleg Nesterov762a24b2007-10-18 23:40:00 -0700768 } while (reaper->flags & PF_EXITING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 /*
771 * There are only two places where our children can be:
772 *
773 * - in our child list
774 * - in our ptraced child list
775 *
776 * Search them and reparent children.
777 */
Matthias Kaehlcke03ff1792007-10-18 23:39:57 -0700778 list_for_each_entry_safe(p, n, &father->children, sibling) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 int ptrace;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 ptrace = p->ptrace;
782
783 /* if father isn't the real parent, then ptrace must be enabled */
784 BUG_ON(father != p->real_parent && !ptrace);
785
786 if (father == p->real_parent) {
787 /* reparent with a reaper, real father it's us */
Oleg Nesterov84eb6462007-10-16 23:26:49 -0700788 p->real_parent = reaper;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 reparent_thread(p, father, 0);
790 } else {
791 /* reparent ptraced task to its real parent */
792 __ptrace_unlink (p);
Oleg Nesterovd839fd42008-04-30 00:53:11 -0700793 if (p->exit_state == EXIT_ZOMBIE && !task_detached(p) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 thread_group_empty(p))
795 do_notify_parent(p, p->exit_signal);
796 }
797
798 /*
Oleg Nesterovd839fd42008-04-30 00:53:11 -0700799 * if the ptraced child is a detached zombie we must collect
800 * it before we exit, or it will remain zombie forever since
801 * we prevented it from self-reap itself while it was being
802 * traced by us, to be able to see it in wait4.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 */
Oleg Nesterovd839fd42008-04-30 00:53:11 -0700804 if (unlikely(ptrace && p->exit_state == EXIT_ZOMBIE && task_detached(p)))
Oleg Nesterov762a24b2007-10-18 23:40:00 -0700805 list_add(&p->ptrace_list, &ptrace_dead);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 }
Oleg Nesterov762a24b2007-10-18 23:40:00 -0700807
Matthias Kaehlcke03ff1792007-10-18 23:39:57 -0700808 list_for_each_entry_safe(p, n, &father->ptrace_children, ptrace_list) {
Oleg Nesterov84eb6462007-10-16 23:26:49 -0700809 p->real_parent = reaper;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 reparent_thread(p, father, 1);
811 }
Oleg Nesterov762a24b2007-10-18 23:40:00 -0700812
813 write_unlock_irq(&tasklist_lock);
814 BUG_ON(!list_empty(&father->children));
815 BUG_ON(!list_empty(&father->ptrace_children));
816
817 list_for_each_entry_safe(p, n, &ptrace_dead, ptrace_list) {
818 list_del_init(&p->ptrace_list);
819 release_task(p);
820 }
821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
824/*
825 * Send signals to all our closest relatives so that they know
826 * to properly mourn us..
827 */
Oleg Nesterov821c7de2008-03-02 21:44:44 +0300828static void exit_notify(struct task_struct *tsk, int group_dead)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
830 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 /*
833 * This does two things:
834 *
835 * A. Make init inherit all the child processes
836 * B. Check to see if any process groups have become orphaned
837 * as a result of our exiting, and if they have any stopped
838 * jobs, send them a SIGHUP and then a SIGCONT. (POSIX 3.2.2.2)
839 */
Oleg Nesterov762a24b2007-10-18 23:40:00 -0700840 forget_original_parent(tsk);
Pavel Emelyanov2e4a7072007-10-18 23:40:01 -0700841 exit_task_namespaces(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Oleg Nesterov762a24b2007-10-18 23:40:00 -0700843 write_lock_irq(&tasklist_lock);
Oleg Nesterov821c7de2008-03-02 21:44:44 +0300844 if (group_dead)
845 kill_orphaned_pgrp(tsk->group_leader, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Oleg Nesterov24728442007-08-04 01:04:41 +0400847 /* Let father know we died
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 *
849 * Thread signals are configurable, but you aren't going to use
Daniel Walkerd4c5e412007-10-18 23:39:59 -0700850 * that to send signals to arbitary processes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 * That stops right now.
852 *
853 * If the parent exec id doesn't match the exec id we saved
854 * when we started then we know the parent has changed security
855 * domain.
856 *
857 * If our self_exec id doesn't match our parent_exec_id then
858 * we have changed execution domain as these two values started
859 * the same after a fork.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 */
Oleg Nesterovd839fd42008-04-30 00:53:11 -0700861 if (tsk->exit_signal != SIGCHLD && !task_detached(tsk) &&
Oleg Nesterovf49ee502008-03-02 21:44:40 +0300862 (tsk->parent_exec_id != tsk->real_parent->self_exec_id ||
Oleg Nesterovd839fd42008-04-30 00:53:11 -0700863 tsk->self_exec_id != tsk->parent_exec_id) &&
864 !capable(CAP_KILL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 tsk->exit_signal = SIGCHLD;
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 /* If something other than our normal parent is ptracing us, then
868 * send it a SIGCHLD instead of honoring exit_signal. exit_signal
869 * only has special meaning to our real parent.
870 */
Oleg Nesterovd839fd42008-04-30 00:53:11 -0700871 if (!task_detached(tsk) && thread_group_empty(tsk)) {
Oleg Nesterov53b6f9f2008-04-30 00:53:13 -0700872 int signal = ptrace_reparented(tsk) ?
873 SIGCHLD : tsk->exit_signal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 do_notify_parent(tsk, signal);
875 } else if (tsk->ptrace) {
876 do_notify_parent(tsk, SIGCHLD);
877 }
878
879 state = EXIT_ZOMBIE;
Oleg Nesterovd839fd42008-04-30 00:53:11 -0700880 if (task_detached(tsk) && likely(!tsk->ptrace))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 state = EXIT_DEAD;
882 tsk->exit_state = state;
883
Oleg Nesterov2800d8d2008-04-30 00:53:12 -0700884 /* mt-exec, de_thread() is waiting for us */
Oleg Nesterov6db840f2007-10-16 23:27:23 -0700885 if (thread_group_leader(tsk) &&
886 tsk->signal->notify_count < 0 &&
887 tsk->signal->group_exit_task)
888 wake_up_process(tsk->signal->group_exit_task);
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 write_unlock_irq(&tasklist_lock);
891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 /* If the process is dead, release it - nobody will wait for it */
893 if (state == EXIT_DEAD)
894 release_task(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895}
896
Jeff Dikee18eecb2007-07-15 23:38:48 -0700897#ifdef CONFIG_DEBUG_STACK_USAGE
898static void check_stack_usage(void)
899{
900 static DEFINE_SPINLOCK(low_water_lock);
901 static int lowest_to_date = THREAD_SIZE;
Jeff Dikee18eecb2007-07-15 23:38:48 -0700902 unsigned long free;
903
Eric Sandeen7c9f8862008-04-22 16:38:23 -0500904 free = stack_not_used(current);
Jeff Dikee18eecb2007-07-15 23:38:48 -0700905
906 if (free >= lowest_to_date)
907 return;
908
909 spin_lock(&low_water_lock);
910 if (free < lowest_to_date) {
911 printk(KERN_WARNING "%s used greatest stack depth: %lu bytes "
912 "left\n",
913 current->comm, free);
914 lowest_to_date = free;
915 }
916 spin_unlock(&low_water_lock);
917}
918#else
919static inline void check_stack_usage(void) {}
920#endif
921
Oleg Nesterov84eb6462007-10-16 23:26:49 -0700922static inline void exit_child_reaper(struct task_struct *tsk)
923{
Sukadev Bhattiprolu88f21d82007-10-18 23:39:50 -0700924 if (likely(tsk->group_leader != task_child_reaper(tsk)))
Oleg Nesterov84eb6462007-10-16 23:26:49 -0700925 return;
926
Sukadev Bhattiprolu3eb07c82007-10-18 23:40:13 -0700927 if (tsk->nsproxy->pid_ns == &init_pid_ns)
928 panic("Attempted to kill init!");
929
930 /*
931 * @tsk is the last thread in the 'cgroup-init' and is exiting.
932 * Terminate all remaining processes in the namespace and reap them
933 * before exiting @tsk.
934 *
935 * Note that @tsk (last thread of cgroup-init) may not necessarily
936 * be the child-reaper (i.e main thread of cgroup-init) of the
937 * namespace i.e the child_reaper may have already exited.
938 *
939 * Even after a child_reaper exits, we let it inherit orphaned children,
940 * because, pid_ns->child_reaper remains valid as long as there is
941 * at least one living sub-thread in the cgroup init.
942
943 * This living sub-thread of the cgroup-init will be notified when
944 * a child inherited by the 'child-reaper' exits (do_notify_parent()
945 * uses __group_send_sig_info()). Further, when reaping child processes,
946 * do_wait() iterates over children of all living sub threads.
947
948 * i.e even though 'child_reaper' thread is listed as the parent of the
949 * orphaned children, any living sub-thread in the cgroup-init can
950 * perform the role of the child_reaper.
951 */
952 zap_pid_ns_processes(tsk->nsproxy->pid_ns);
Oleg Nesterov84eb6462007-10-16 23:26:49 -0700953}
954
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800955NORET_TYPE void do_exit(long code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
957 struct task_struct *tsk = current;
958 int group_dead;
959
960 profile_task_exit(tsk);
961
Jens Axboe22e2c502005-06-27 10:55:12 +0200962 WARN_ON(atomic_read(&tsk->fs_excl));
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 if (unlikely(in_interrupt()))
965 panic("Aiee, killing interrupt handler!");
966 if (unlikely(!tsk->pid))
967 panic("Attempted to kill the idle task!");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969 if (unlikely(current->ptrace & PT_TRACE_EXIT)) {
970 current->ptrace_message = code;
971 ptrace_notify((PTRACE_EVENT_EXIT << 8) | SIGTRAP);
972 }
973
Alexander Nybergdf164db2005-06-23 00:09:13 -0700974 /*
975 * We're taking recursive faults here in do_exit. Safest is to just
976 * leave this task alone and wait for reboot.
977 */
978 if (unlikely(tsk->flags & PF_EXITING)) {
979 printk(KERN_ALERT
980 "Fixing recursive fault but reboot is needed!\n");
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700981 /*
982 * We can do this unlocked here. The futex code uses
983 * this flag just to verify whether the pi state
984 * cleanup has been done or not. In the worst case it
985 * loops once more. We pretend that the cleanup was
986 * done as there is no way to return. Either the
987 * OWNER_DIED bit is set by now or we push the blocked
988 * task into the wait for ever nirwana as well.
989 */
990 tsk->flags |= PF_EXITPIDONE;
Al Viroafc847b2006-02-28 12:51:55 -0500991 if (tsk->io_context)
992 exit_io_context();
Alexander Nybergdf164db2005-06-23 00:09:13 -0700993 set_current_state(TASK_UNINTERRUPTIBLE);
994 schedule();
995 }
996
Oleg Nesterovd12619b2008-02-08 04:19:12 -0800997 exit_signals(tsk); /* sets PF_EXITING */
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700998 /*
999 * tsk->flags are checked in the futex code to protect against
1000 * an exiting task cleaning up the robust pi futexes.
1001 */
Oleg Nesterovd2ee7192007-10-16 23:26:47 -07001002 smp_mb();
1003 spin_unlock_wait(&tsk->pi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 if (unlikely(in_atomic()))
1006 printk(KERN_INFO "note: %s[%d] exited with preempt_count %d\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001007 current->comm, task_pid_nr(current),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 preempt_count());
1009
1010 acct_update_integrals(tsk);
Hugh Dickins365e9c872005-10-29 18:16:18 -07001011 if (tsk->mm) {
1012 update_hiwater_rss(tsk->mm);
1013 update_hiwater_vm(tsk->mm);
1014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 group_dead = atomic_dec_and_test(&tsk->signal->live);
Andrew Mortonc3068952005-08-04 16:49:32 -07001016 if (group_dead) {
Oleg Nesterov84eb6462007-10-16 23:26:49 -07001017 exit_child_reaper(tsk);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001018 hrtimer_cancel(&tsk->signal->real_timer);
Roland McGrath25f407f2005-10-21 15:03:29 -07001019 exit_itimers(tsk->signal);
Andrew Mortonc3068952005-08-04 16:49:32 -07001020 }
KaiGai Koheif6ec29a2006-06-25 05:49:25 -07001021 acct_collect(code, group_dead);
Alexey Dobriyan42b2dd02007-10-16 23:27:30 -07001022#ifdef CONFIG_FUTEX
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001023 if (unlikely(tsk->robust_list))
1024 exit_robust_list(tsk);
Alexey Dobriyan42b2dd02007-10-16 23:27:30 -07001025#ifdef CONFIG_COMPAT
Ingo Molnar34f192c2006-03-27 01:16:24 -08001026 if (unlikely(tsk->compat_robust_list))
1027 compat_exit_robust_list(tsk);
1028#endif
Alexey Dobriyan42b2dd02007-10-16 23:27:30 -07001029#endif
Miloslav Trmac522ed772007-07-15 23:40:56 -07001030 if (group_dead)
1031 tty_audit_exit();
Al Virofa84cb92006-03-29 20:30:19 -05001032 if (unlikely(tsk->audit_context))
1033 audit_free(tsk);
Oleg Nesterov115085e2006-12-06 20:36:51 -08001034
Jonathan Limf2ab6d82007-08-30 23:56:23 -07001035 tsk->exit_code = code;
Oleg Nesterov115085e2006-12-06 20:36:51 -08001036 taskstats_exit(tsk, group_dead);
Shailabh Nagarc7572492006-07-14 00:24:40 -07001037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 exit_mm(tsk);
1039
KaiGai Kohei0e464812006-06-25 05:49:24 -07001040 if (group_dead)
KaiGai Koheif6ec29a2006-06-25 05:49:25 -07001041 acct_process();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 exit_sem(tsk);
Al Viro1ec7f1d2008-04-22 05:35:42 -04001043 exit_files(tsk);
1044 exit_fs(tsk);
Jeff Dikee18eecb2007-07-15 23:38:48 -07001045 check_stack_usage();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 exit_thread();
Paul Menageb4f48b62007-10-18 23:39:33 -07001047 cgroup_exit(tsk, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 exit_keys(tsk);
1049
1050 if (group_dead && tsk->signal->leader)
1051 disassociate_ctty(1);
1052
Al Viroa1261f542005-11-13 16:06:55 -08001053 module_put(task_thread_info(tsk)->exec_domain->module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 if (tsk->binfmt)
1055 module_put(tsk->binfmt->module);
1056
Matt Helsley9f460802005-11-07 00:59:16 -08001057 proc_exit_connector(tsk);
Oleg Nesterov821c7de2008-03-02 21:44:44 +03001058 exit_notify(tsk, group_dead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059#ifdef CONFIG_NUMA
Lee Schermerhornf0be3d32008-04-28 02:13:08 -07001060 mpol_put(tsk->mempolicy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 tsk->mempolicy = NULL;
1062#endif
Alexey Dobriyan42b2dd02007-10-16 23:27:30 -07001063#ifdef CONFIG_FUTEX
Ingo Molnarde5097c2006-01-09 15:59:21 -08001064 /*
Ingo Molnarc87e2832006-06-27 02:54:58 -07001065 * This must happen late, after the PID is not
1066 * hashed anymore:
1067 */
1068 if (unlikely(!list_empty(&tsk->pi_state_list)))
1069 exit_pi_state_list(tsk);
1070 if (unlikely(current->pi_state_cache))
1071 kfree(current->pi_state_cache);
Alexey Dobriyan42b2dd02007-10-16 23:27:30 -07001072#endif
Ingo Molnarc87e2832006-06-27 02:54:58 -07001073 /*
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07001074 * Make sure we are holding no locks:
Ingo Molnarde5097c2006-01-09 15:59:21 -08001075 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07001076 debug_check_no_locks_held(tsk);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001077 /*
1078 * We can do this unlocked here. The futex code uses this flag
1079 * just to verify whether the pi state cleanup has been done
1080 * or not. In the worst case it loops once more.
1081 */
1082 tsk->flags |= PF_EXITPIDONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Al Viroafc847b2006-02-28 12:51:55 -05001084 if (tsk->io_context)
1085 exit_io_context();
1086
Jens Axboeb92ce552006-04-11 13:52:07 +02001087 if (tsk->splice_pipe)
1088 __free_pipe_info(tsk->splice_pipe);
1089
Coywolf Qi Hunt74072512005-10-30 15:02:47 -08001090 preempt_disable();
Oleg Nesterov55a101f2006-09-29 02:01:10 -07001091 /* causes final put_task_struct in finish_task_switch(). */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07001092 tsk->state = TASK_DEAD;
Coywolf Qi Hunt74072512005-10-30 15:02:47 -08001093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 schedule();
1095 BUG();
1096 /* Avoid "noreturn function does return". */
Alan Cox54306cf2006-09-29 02:00:42 -07001097 for (;;)
1098 cpu_relax(); /* For when BUG is null */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099}
1100
Russ Anderson012914d2005-04-23 00:08:00 -07001101EXPORT_SYMBOL_GPL(do_exit);
1102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103NORET_TYPE void complete_and_exit(struct completion *comp, long code)
1104{
1105 if (comp)
1106 complete(comp);
Oleg Nesterov55a101f2006-09-29 02:01:10 -07001107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 do_exit(code);
1109}
1110
1111EXPORT_SYMBOL(complete_and_exit);
1112
1113asmlinkage long sys_exit(int error_code)
1114{
1115 do_exit((error_code&0xff)<<8);
1116}
1117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118/*
1119 * Take down every thread in the group. This is called by fatal signals
1120 * as well as by sys_exit_group (below).
1121 */
1122NORET_TYPE void
1123do_group_exit(int exit_code)
1124{
Oleg Nesterovbfc4b082008-04-30 00:52:36 -07001125 struct signal_struct *sig = current->signal;
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 BUG_ON(exit_code & 0x80); /* core dumps don't get here */
1128
Oleg Nesterovbfc4b082008-04-30 00:52:36 -07001129 if (signal_group_exit(sig))
1130 exit_code = sig->group_exit_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 else if (!thread_group_empty(current)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 struct sighand_struct *const sighand = current->sighand;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 spin_lock_irq(&sighand->siglock);
Oleg Nesteroved5d2ca2008-02-04 22:27:24 -08001134 if (signal_group_exit(sig))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 /* Another thread got here before we took the lock. */
1136 exit_code = sig->group_exit_code;
1137 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 sig->group_exit_code = exit_code;
Oleg Nesteroved5d2ca2008-02-04 22:27:24 -08001139 sig->flags = SIGNAL_GROUP_EXIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 zap_other_threads(current);
1141 }
1142 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 }
1144
1145 do_exit(exit_code);
1146 /* NOTREACHED */
1147}
1148
1149/*
1150 * this kills every thread in the thread group. Note that any externally
1151 * wait4()-ing process will get the correct exit code - even if this
1152 * thread is not the thread group leader.
1153 */
1154asmlinkage void sys_exit_group(int error_code)
1155{
1156 do_group_exit((error_code & 0xff) << 8);
1157}
1158
Eric W. Biederman161550d2008-02-08 04:19:14 -08001159static struct pid *task_pid_type(struct task_struct *task, enum pid_type type)
1160{
1161 struct pid *pid = NULL;
1162 if (type == PIDTYPE_PID)
1163 pid = task->pids[type].pid;
1164 else if (type < PIDTYPE_MAX)
1165 pid = task->group_leader->pids[type].pid;
1166 return pid;
1167}
1168
1169static int eligible_child(enum pid_type type, struct pid *pid, int options,
1170 struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171{
Roland McGrath73243282007-05-06 14:50:20 -07001172 int err;
1173
Eric W. Biederman161550d2008-02-08 04:19:14 -08001174 if (type < PIDTYPE_MAX) {
1175 if (task_pid_type(p, type) != pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 return 0;
1177 }
1178
1179 /*
1180 * Do not consider detached threads that are
1181 * not ptraced:
1182 */
Oleg Nesterovd839fd42008-04-30 00:53:11 -07001183 if (task_detached(p) && !p->ptrace)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 return 0;
1185
1186 /* Wait for all children (clone and not) if __WALL is set;
1187 * otherwise, wait for clone children *only* if __WCLONE is
1188 * set; otherwise, wait for non-clone children *only*. (Note:
1189 * A "clone" child here is one that reports to its parent
1190 * using a signal other than SIGCHLD.) */
1191 if (((p->exit_signal != SIGCHLD) ^ ((options & __WCLONE) != 0))
1192 && !(options & __WALL))
1193 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Roland McGrath73243282007-05-06 14:50:20 -07001195 err = security_task_wait(p);
Oleg Nesterovf2cc3eb2008-02-08 04:19:06 -08001196 if (likely(!err))
1197 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Eric W. Biederman161550d2008-02-08 04:19:14 -08001199 if (type != PIDTYPE_PID)
Oleg Nesterovf2cc3eb2008-02-08 04:19:06 -08001200 return 0;
1201 /* This child was explicitly requested, abort */
1202 read_unlock(&tasklist_lock);
1203 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204}
1205
Ingo Molnar36c8b582006-07-03 00:25:41 -07001206static int wait_noreap_copyout(struct task_struct *p, pid_t pid, uid_t uid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 int why, int status,
1208 struct siginfo __user *infop,
1209 struct rusage __user *rusagep)
1210{
1211 int retval = rusagep ? getrusage(p, RUSAGE_BOTH, rusagep) : 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07001212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 put_task_struct(p);
1214 if (!retval)
1215 retval = put_user(SIGCHLD, &infop->si_signo);
1216 if (!retval)
1217 retval = put_user(0, &infop->si_errno);
1218 if (!retval)
1219 retval = put_user((short)why, &infop->si_code);
1220 if (!retval)
1221 retval = put_user(pid, &infop->si_pid);
1222 if (!retval)
1223 retval = put_user(uid, &infop->si_uid);
1224 if (!retval)
1225 retval = put_user(status, &infop->si_status);
1226 if (!retval)
1227 retval = pid;
1228 return retval;
1229}
1230
1231/*
1232 * Handle sys_wait4 work for one task in state EXIT_ZOMBIE. We hold
1233 * read_lock(&tasklist_lock) on entry. If we return zero, we still hold
1234 * the lock and this task is uninteresting. If we return nonzero, we have
1235 * released the lock and the system call should return.
1236 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001237static int wait_task_zombie(struct task_struct *p, int noreap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 struct siginfo __user *infop,
1239 int __user *stat_addr, struct rusage __user *ru)
1240{
1241 unsigned long state;
Oleg Nesterov2f4e6e22007-10-16 23:26:58 -07001242 int retval, status, traced;
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -08001243 pid_t pid = task_pid_vnr(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245 if (unlikely(noreap)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 uid_t uid = p->uid;
1247 int exit_code = p->exit_code;
1248 int why, status;
1249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 get_task_struct(p);
1251 read_unlock(&tasklist_lock);
1252 if ((exit_code & 0x7f) == 0) {
1253 why = CLD_EXITED;
1254 status = exit_code >> 8;
1255 } else {
1256 why = (exit_code & 0x80) ? CLD_DUMPED : CLD_KILLED;
1257 status = exit_code & 0x7f;
1258 }
1259 return wait_noreap_copyout(p, pid, uid, why,
1260 status, infop, ru);
1261 }
1262
1263 /*
1264 * Try to move the task's state to DEAD
1265 * only one thread is allowed to do this:
1266 */
1267 state = xchg(&p->exit_state, EXIT_DEAD);
1268 if (state != EXIT_ZOMBIE) {
1269 BUG_ON(state != EXIT_DEAD);
1270 return 0;
1271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Oleg Nesterov53b6f9f2008-04-30 00:53:13 -07001273 traced = ptrace_reparented(p);
Oleg Nesterov2f4e6e22007-10-16 23:26:58 -07001274
1275 if (likely(!traced)) {
Jesper Juhl3795e162006-01-09 20:54:39 -08001276 struct signal_struct *psig;
1277 struct signal_struct *sig;
1278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 /*
1280 * The resource counters for the group leader are in its
1281 * own task_struct. Those for dead threads in the group
1282 * are in its signal_struct, as are those for the child
1283 * processes it has previously reaped. All these
1284 * accumulate in the parent's signal_struct c* fields.
1285 *
1286 * We don't bother to take a lock here to protect these
1287 * p->signal fields, because they are only touched by
1288 * __exit_signal, which runs with tasklist_lock
1289 * write-locked anyway, and so is excluded here. We do
1290 * need to protect the access to p->parent->signal fields,
1291 * as other threads in the parent group can be right
1292 * here reaping other children at the same time.
1293 */
1294 spin_lock_irq(&p->parent->sighand->siglock);
Jesper Juhl3795e162006-01-09 20:54:39 -08001295 psig = p->parent->signal;
1296 sig = p->signal;
1297 psig->cutime =
1298 cputime_add(psig->cutime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 cputime_add(p->utime,
Jesper Juhl3795e162006-01-09 20:54:39 -08001300 cputime_add(sig->utime,
1301 sig->cutime)));
1302 psig->cstime =
1303 cputime_add(psig->cstime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 cputime_add(p->stime,
Jesper Juhl3795e162006-01-09 20:54:39 -08001305 cputime_add(sig->stime,
1306 sig->cstime)));
Laurent Vivier9ac52312007-10-15 17:00:19 +02001307 psig->cgtime =
1308 cputime_add(psig->cgtime,
1309 cputime_add(p->gtime,
1310 cputime_add(sig->gtime,
1311 sig->cgtime)));
Jesper Juhl3795e162006-01-09 20:54:39 -08001312 psig->cmin_flt +=
1313 p->min_flt + sig->min_flt + sig->cmin_flt;
1314 psig->cmaj_flt +=
1315 p->maj_flt + sig->maj_flt + sig->cmaj_flt;
1316 psig->cnvcsw +=
1317 p->nvcsw + sig->nvcsw + sig->cnvcsw;
1318 psig->cnivcsw +=
1319 p->nivcsw + sig->nivcsw + sig->cnivcsw;
Eric Dumazet6eaeeab2007-05-10 22:22:37 -07001320 psig->cinblock +=
1321 task_io_get_inblock(p) +
1322 sig->inblock + sig->cinblock;
1323 psig->coublock +=
1324 task_io_get_oublock(p) +
1325 sig->oublock + sig->coublock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 spin_unlock_irq(&p->parent->sighand->siglock);
1327 }
1328
1329 /*
1330 * Now we are sure this task is interesting, and no other
1331 * thread can reap it because we set its state to EXIT_DEAD.
1332 */
1333 read_unlock(&tasklist_lock);
1334
1335 retval = ru ? getrusage(p, RUSAGE_BOTH, ru) : 0;
1336 status = (p->signal->flags & SIGNAL_GROUP_EXIT)
1337 ? p->signal->group_exit_code : p->exit_code;
1338 if (!retval && stat_addr)
1339 retval = put_user(status, stat_addr);
1340 if (!retval && infop)
1341 retval = put_user(SIGCHLD, &infop->si_signo);
1342 if (!retval && infop)
1343 retval = put_user(0, &infop->si_errno);
1344 if (!retval && infop) {
1345 int why;
1346
1347 if ((status & 0x7f) == 0) {
1348 why = CLD_EXITED;
1349 status >>= 8;
1350 } else {
1351 why = (status & 0x80) ? CLD_DUMPED : CLD_KILLED;
1352 status &= 0x7f;
1353 }
1354 retval = put_user((short)why, &infop->si_code);
1355 if (!retval)
1356 retval = put_user(status, &infop->si_status);
1357 }
1358 if (!retval && infop)
Oleg Nesterov3a515e42008-02-08 04:19:07 -08001359 retval = put_user(pid, &infop->si_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 if (!retval && infop)
1361 retval = put_user(p->uid, &infop->si_uid);
Oleg Nesterov2f4e6e22007-10-16 23:26:58 -07001362 if (!retval)
Oleg Nesterov3a515e42008-02-08 04:19:07 -08001363 retval = pid;
Oleg Nesterov2f4e6e22007-10-16 23:26:58 -07001364
1365 if (traced) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 write_lock_irq(&tasklist_lock);
Oleg Nesterov2f4e6e22007-10-16 23:26:58 -07001367 /* We dropped tasklist, ptracer could die and untrace */
1368 ptrace_unlink(p);
1369 /*
1370 * If this is not a detached task, notify the parent.
1371 * If it's still not detached after that, don't release
1372 * it now.
1373 */
Oleg Nesterovd839fd42008-04-30 00:53:11 -07001374 if (!task_detached(p)) {
Oleg Nesterov2f4e6e22007-10-16 23:26:58 -07001375 do_notify_parent(p, p->exit_signal);
Oleg Nesterovd839fd42008-04-30 00:53:11 -07001376 if (!task_detached(p)) {
Oleg Nesterov2f4e6e22007-10-16 23:26:58 -07001377 p->exit_state = EXIT_ZOMBIE;
1378 p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 }
1380 }
1381 write_unlock_irq(&tasklist_lock);
1382 }
1383 if (p != NULL)
1384 release_task(p);
Oleg Nesterov2f4e6e22007-10-16 23:26:58 -07001385
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 return retval;
1387}
1388
1389/*
1390 * Handle sys_wait4 work for one task in state TASK_STOPPED. We hold
1391 * read_lock(&tasklist_lock) on entry. If we return zero, we still hold
1392 * the lock and this task is uninteresting. If we return nonzero, we have
1393 * released the lock and the system call should return.
1394 */
Oleg Nesterov1bad95c2008-02-08 04:19:03 -08001395static int wait_task_stopped(struct task_struct *p,
Ingo Molnar36c8b582006-07-03 00:25:41 -07001396 int noreap, struct siginfo __user *infop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 int __user *stat_addr, struct rusage __user *ru)
1398{
Oleg Nesterovee7c82d2008-02-08 04:19:01 -08001399 int retval, exit_code, why;
1400 uid_t uid = 0; /* unneeded, required by compiler */
Oleg Nesterovc8950782007-11-28 16:21:24 -08001401 pid_t pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
Oleg Nesterovee7c82d2008-02-08 04:19:01 -08001403 exit_code = 0;
1404 spin_lock_irq(&p->sighand->siglock);
1405
1406 if (unlikely(!task_is_stopped_or_traced(p)))
1407 goto unlock_sig;
1408
Oleg Nesterov1bad95c2008-02-08 04:19:03 -08001409 if (!(p->ptrace & PT_PTRACED) && p->signal->group_stop_count > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 /*
1411 * A group stop is in progress and this is the group leader.
1412 * We won't report until all threads have stopped.
1413 */
Oleg Nesterovee7c82d2008-02-08 04:19:01 -08001414 goto unlock_sig;
1415
1416 exit_code = p->exit_code;
1417 if (!exit_code)
1418 goto unlock_sig;
1419
1420 if (!noreap)
1421 p->exit_code = 0;
1422
1423 uid = p->uid;
1424unlock_sig:
1425 spin_unlock_irq(&p->sighand->siglock);
1426 if (!exit_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 return 0;
1428
1429 /*
1430 * Now we are pretty sure this task is interesting.
1431 * Make sure it doesn't get reaped out from under us while we
1432 * give up the lock and then examine it below. We don't want to
1433 * keep holding onto the tasklist_lock while we call getrusage and
1434 * possibly take page faults for user memory.
1435 */
1436 get_task_struct(p);
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -08001437 pid = task_pid_vnr(p);
Oleg Nesterovee7c82d2008-02-08 04:19:01 -08001438 why = (p->ptrace & PT_PTRACED) ? CLD_TRAPPED : CLD_STOPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 read_unlock(&tasklist_lock);
1440
Oleg Nesterovee7c82d2008-02-08 04:19:01 -08001441 if (unlikely(noreap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 return wait_noreap_copyout(p, pid, uid,
Scott James Remnante6ceb322007-11-28 16:22:07 -08001443 why, exit_code,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 infop, ru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446 retval = ru ? getrusage(p, RUSAGE_BOTH, ru) : 0;
1447 if (!retval && stat_addr)
1448 retval = put_user((exit_code << 8) | 0x7f, stat_addr);
1449 if (!retval && infop)
1450 retval = put_user(SIGCHLD, &infop->si_signo);
1451 if (!retval && infop)
1452 retval = put_user(0, &infop->si_errno);
1453 if (!retval && infop)
Roland McGrath6efcae462008-03-08 11:41:22 -08001454 retval = put_user((short)why, &infop->si_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 if (!retval && infop)
1456 retval = put_user(exit_code, &infop->si_status);
1457 if (!retval && infop)
Oleg Nesterovc8950782007-11-28 16:21:24 -08001458 retval = put_user(pid, &infop->si_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 if (!retval && infop)
Oleg Nesterovee7c82d2008-02-08 04:19:01 -08001460 retval = put_user(uid, &infop->si_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 if (!retval)
Oleg Nesterovc8950782007-11-28 16:21:24 -08001462 retval = pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 put_task_struct(p);
1464
1465 BUG_ON(!retval);
1466 return retval;
1467}
1468
1469/*
1470 * Handle do_wait work for one task in a live, non-stopped state.
1471 * read_lock(&tasklist_lock) on entry. If we return zero, we still hold
1472 * the lock and this task is uninteresting. If we return nonzero, we have
1473 * released the lock and the system call should return.
1474 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001475static int wait_task_continued(struct task_struct *p, int noreap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 struct siginfo __user *infop,
1477 int __user *stat_addr, struct rusage __user *ru)
1478{
1479 int retval;
1480 pid_t pid;
1481 uid_t uid;
1482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 if (!(p->signal->flags & SIGNAL_STOP_CONTINUED))
1484 return 0;
1485
1486 spin_lock_irq(&p->sighand->siglock);
1487 /* Re-check with the lock held. */
1488 if (!(p->signal->flags & SIGNAL_STOP_CONTINUED)) {
1489 spin_unlock_irq(&p->sighand->siglock);
1490 return 0;
1491 }
1492 if (!noreap)
1493 p->signal->flags &= ~SIGNAL_STOP_CONTINUED;
1494 spin_unlock_irq(&p->sighand->siglock);
1495
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -08001496 pid = task_pid_vnr(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 uid = p->uid;
1498 get_task_struct(p);
1499 read_unlock(&tasklist_lock);
1500
1501 if (!infop) {
1502 retval = ru ? getrusage(p, RUSAGE_BOTH, ru) : 0;
1503 put_task_struct(p);
1504 if (!retval && stat_addr)
1505 retval = put_user(0xffff, stat_addr);
1506 if (!retval)
Oleg Nesterov3a515e42008-02-08 04:19:07 -08001507 retval = pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 } else {
1509 retval = wait_noreap_copyout(p, pid, uid,
1510 CLD_CONTINUED, SIGCONT,
1511 infop, ru);
1512 BUG_ON(retval == 0);
1513 }
1514
1515 return retval;
1516}
1517
Eric W. Biederman161550d2008-02-08 04:19:14 -08001518static long do_wait(enum pid_type type, struct pid *pid, int options,
1519 struct siginfo __user *infop, int __user *stat_addr,
1520 struct rusage __user *ru)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521{
1522 DECLARE_WAITQUEUE(wait, current);
1523 struct task_struct *tsk;
1524 int flag, retval;
1525
1526 add_wait_queue(&current->signal->wait_chldexit,&wait);
1527repeat:
Eric W. Biederman161550d2008-02-08 04:19:14 -08001528 /* If there is nothing that can match our critier just get out */
1529 retval = -ECHILD;
1530 if ((type < PIDTYPE_MAX) && (!pid || hlist_empty(&pid->tasks[type])))
1531 goto end;
1532
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 /*
1534 * We will set this flag if we see any child that might later
1535 * match our criteria, even if we are not able to reap it yet.
1536 */
Oleg Nesterovf2cc3eb2008-02-08 04:19:06 -08001537 flag = retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 current->state = TASK_INTERRUPTIBLE;
1539 read_lock(&tasklist_lock);
1540 tsk = current;
1541 do {
1542 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Matthias Kaehlcke03ff1792007-10-18 23:39:57 -07001544 list_for_each_entry(p, &tsk->children, sibling) {
Eric W. Biederman161550d2008-02-08 04:19:14 -08001545 int ret = eligible_child(type, pid, options, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 if (!ret)
1547 continue;
1548
Roland McGrath73243282007-05-06 14:50:20 -07001549 if (unlikely(ret < 0)) {
Oleg Nesterovf2cc3eb2008-02-08 04:19:06 -08001550 retval = ret;
1551 } else if (task_is_stopped_or_traced(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 /*
1553 * It's stopped now, so it might later
1554 * continue, exit, or stop again.
1555 */
1556 flag = 1;
Oleg Nesterov34a17382008-02-08 04:18:59 -08001557 if (!(p->ptrace & PT_PTRACED) &&
1558 !(options & WUNTRACED))
1559 continue;
Matthew Wilcox338077e2007-12-06 11:09:35 -05001560
Oleg Nesterov1bad95c2008-02-08 04:19:03 -08001561 retval = wait_task_stopped(p,
Matthew Wilcox338077e2007-12-06 11:09:35 -05001562 (options & WNOWAIT), infop,
1563 stat_addr, ru);
Oleg Nesterov96fabbf2008-02-08 04:19:04 -08001564 } else if (p->exit_state == EXIT_ZOMBIE &&
1565 !delay_group_leader(p)) {
Matthew Wilcox338077e2007-12-06 11:09:35 -05001566 /*
Oleg Nesterov96fabbf2008-02-08 04:19:04 -08001567 * We don't reap group leaders with subthreads.
Matthew Wilcox338077e2007-12-06 11:09:35 -05001568 */
Matthew Wilcox338077e2007-12-06 11:09:35 -05001569 if (!likely(options & WEXITED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 continue;
Matthew Wilcox338077e2007-12-06 11:09:35 -05001571 retval = wait_task_zombie(p,
1572 (options & WNOWAIT), infop,
1573 stat_addr, ru);
Oleg Nesterov0a76fe82008-02-06 01:37:06 -08001574 } else if (p->exit_state != EXIT_DEAD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 /*
1576 * It's running now, so it might later
1577 * exit, stop, or stop and then continue.
1578 */
1579 flag = 1;
1580 if (!unlikely(options & WCONTINUED))
1581 continue;
Matthew Wilcox338077e2007-12-06 11:09:35 -05001582 retval = wait_task_continued(p,
1583 (options & WNOWAIT), infop,
1584 stat_addr, ru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 }
Oleg Nesterov9cbab812008-02-08 04:19:02 -08001586 if (retval != 0) /* tasklist_lock released */
1587 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 }
1589 if (!flag) {
Matthias Kaehlcke03ff1792007-10-18 23:39:57 -07001590 list_for_each_entry(p, &tsk->ptrace_children,
Oleg Nesterovf2cc3eb2008-02-08 04:19:06 -08001591 ptrace_list) {
Eric W. Biederman161550d2008-02-08 04:19:14 -08001592 flag = eligible_child(type, pid, options, p);
Oleg Nesterovf2cc3eb2008-02-08 04:19:06 -08001593 if (!flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 continue;
Oleg Nesterovf2cc3eb2008-02-08 04:19:06 -08001595 if (likely(flag > 0))
1596 break;
1597 retval = flag;
1598 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 }
1600 }
1601 if (options & __WNOTHREAD)
1602 break;
1603 tsk = next_thread(tsk);
Eric Sesterhenn125e1872006-06-23 02:06:06 -07001604 BUG_ON(tsk->signal != current->signal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 } while (tsk != current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 read_unlock(&tasklist_lock);
Oleg Nesterovf2cc3eb2008-02-08 04:19:06 -08001607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 if (flag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 if (options & WNOHANG)
1610 goto end;
1611 retval = -ERESTARTSYS;
1612 if (signal_pending(current))
1613 goto end;
1614 schedule();
1615 goto repeat;
1616 }
1617 retval = -ECHILD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618end:
1619 current->state = TASK_RUNNING;
1620 remove_wait_queue(&current->signal->wait_chldexit,&wait);
1621 if (infop) {
1622 if (retval > 0)
Oleg Nesterov9cbab812008-02-08 04:19:02 -08001623 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 else {
1625 /*
1626 * For a WNOHANG return, clear out all the fields
1627 * we would set so the user can easily tell the
1628 * difference.
1629 */
1630 if (!retval)
1631 retval = put_user(0, &infop->si_signo);
1632 if (!retval)
1633 retval = put_user(0, &infop->si_errno);
1634 if (!retval)
1635 retval = put_user(0, &infop->si_code);
1636 if (!retval)
1637 retval = put_user(0, &infop->si_pid);
1638 if (!retval)
1639 retval = put_user(0, &infop->si_uid);
1640 if (!retval)
1641 retval = put_user(0, &infop->si_status);
1642 }
1643 }
1644 return retval;
1645}
1646
Eric W. Biederman161550d2008-02-08 04:19:14 -08001647asmlinkage long sys_waitid(int which, pid_t upid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 struct siginfo __user *infop, int options,
1649 struct rusage __user *ru)
1650{
Eric W. Biederman161550d2008-02-08 04:19:14 -08001651 struct pid *pid = NULL;
1652 enum pid_type type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 long ret;
1654
1655 if (options & ~(WNOHANG|WNOWAIT|WEXITED|WSTOPPED|WCONTINUED))
1656 return -EINVAL;
1657 if (!(options & (WEXITED|WSTOPPED|WCONTINUED)))
1658 return -EINVAL;
1659
1660 switch (which) {
1661 case P_ALL:
Eric W. Biederman161550d2008-02-08 04:19:14 -08001662 type = PIDTYPE_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 break;
1664 case P_PID:
Eric W. Biederman161550d2008-02-08 04:19:14 -08001665 type = PIDTYPE_PID;
1666 if (upid <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 return -EINVAL;
1668 break;
1669 case P_PGID:
Eric W. Biederman161550d2008-02-08 04:19:14 -08001670 type = PIDTYPE_PGID;
1671 if (upid <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 break;
1674 default:
1675 return -EINVAL;
1676 }
1677
Eric W. Biederman161550d2008-02-08 04:19:14 -08001678 if (type < PIDTYPE_MAX)
1679 pid = find_get_pid(upid);
1680 ret = do_wait(type, pid, options, infop, NULL, ru);
1681 put_pid(pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
1683 /* avoid REGPARM breakage on x86: */
Roland McGrath54a01512008-04-10 15:37:38 -07001684 asmlinkage_protect(5, ret, which, upid, infop, options, ru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 return ret;
1686}
1687
Eric W. Biederman161550d2008-02-08 04:19:14 -08001688asmlinkage long sys_wait4(pid_t upid, int __user *stat_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 int options, struct rusage __user *ru)
1690{
Eric W. Biederman161550d2008-02-08 04:19:14 -08001691 struct pid *pid = NULL;
1692 enum pid_type type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 long ret;
1694
1695 if (options & ~(WNOHANG|WUNTRACED|WCONTINUED|
1696 __WNOTHREAD|__WCLONE|__WALL))
1697 return -EINVAL;
Eric W. Biederman161550d2008-02-08 04:19:14 -08001698
1699 if (upid == -1)
1700 type = PIDTYPE_MAX;
1701 else if (upid < 0) {
1702 type = PIDTYPE_PGID;
1703 pid = find_get_pid(-upid);
1704 } else if (upid == 0) {
1705 type = PIDTYPE_PGID;
1706 pid = get_pid(task_pgrp(current));
1707 } else /* upid > 0 */ {
1708 type = PIDTYPE_PID;
1709 pid = find_get_pid(upid);
1710 }
1711
1712 ret = do_wait(type, pid, options | WEXITED, NULL, stat_addr, ru);
1713 put_pid(pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
1715 /* avoid REGPARM breakage on x86: */
Roland McGrath54a01512008-04-10 15:37:38 -07001716 asmlinkage_protect(4, ret, upid, stat_addr, options, ru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 return ret;
1718}
1719
1720#ifdef __ARCH_WANT_SYS_WAITPID
1721
1722/*
1723 * sys_waitpid() remains for compatibility. waitpid() should be
1724 * implemented by calling sys_wait4() from libc.a.
1725 */
1726asmlinkage long sys_waitpid(pid_t pid, int __user *stat_addr, int options)
1727{
1728 return sys_wait4(pid, stat_addr, options, NULL);
1729}
1730
1731#endif