diff options
Diffstat (limited to 'kernel/exit.c')
-rw-r--r-- | kernel/exit.c | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/kernel/exit.c b/kernel/exit.c index 2d8be7ebb0f7..c7422ca92038 100644 --- a/kernel/exit.c +++ b/kernel/exit.c | |||
@@ -46,12 +46,18 @@ | |||
46 | #include <linux/blkdev.h> | 46 | #include <linux/blkdev.h> |
47 | #include <linux/task_io_accounting_ops.h> | 47 | #include <linux/task_io_accounting_ops.h> |
48 | #include <linux/tracehook.h> | 48 | #include <linux/tracehook.h> |
49 | #include <linux/init_task.h> | ||
49 | #include <trace/sched.h> | 50 | #include <trace/sched.h> |
50 | 51 | ||
51 | #include <asm/uaccess.h> | 52 | #include <asm/uaccess.h> |
52 | #include <asm/unistd.h> | 53 | #include <asm/unistd.h> |
53 | #include <asm/pgtable.h> | 54 | #include <asm/pgtable.h> |
54 | #include <asm/mmu_context.h> | 55 | #include <asm/mmu_context.h> |
56 | #include "cred-internals.h" | ||
57 | |||
58 | DEFINE_TRACE(sched_process_free); | ||
59 | DEFINE_TRACE(sched_process_exit); | ||
60 | DEFINE_TRACE(sched_process_wait); | ||
55 | 61 | ||
56 | static void exit_mm(struct task_struct * tsk); | 62 | static void exit_mm(struct task_struct * tsk); |
57 | 63 | ||
@@ -164,7 +170,10 @@ void release_task(struct task_struct * p) | |||
164 | int zap_leader; | 170 | int zap_leader; |
165 | repeat: | 171 | repeat: |
166 | tracehook_prepare_release_task(p); | 172 | tracehook_prepare_release_task(p); |
167 | atomic_dec(&p->user->processes); | 173 | /* don't need to get the RCU readlock here - the process is dead and |
174 | * can't be modifying its own credentials */ | ||
175 | atomic_dec(&__task_cred(p)->user->processes); | ||
176 | |||
168 | proc_flush_task(p); | 177 | proc_flush_task(p); |
169 | write_lock_irq(&tasklist_lock); | 178 | write_lock_irq(&tasklist_lock); |
170 | tracehook_finish_release_task(p); | 179 | tracehook_finish_release_task(p); |
@@ -339,12 +348,12 @@ static void reparent_to_kthreadd(void) | |||
339 | /* cpus_allowed? */ | 348 | /* cpus_allowed? */ |
340 | /* rt_priority? */ | 349 | /* rt_priority? */ |
341 | /* signals? */ | 350 | /* signals? */ |
342 | security_task_reparent_to_init(current); | ||
343 | memcpy(current->signal->rlim, init_task.signal->rlim, | 351 | memcpy(current->signal->rlim, init_task.signal->rlim, |
344 | sizeof(current->signal->rlim)); | 352 | sizeof(current->signal->rlim)); |
345 | atomic_inc(&(INIT_USER->__count)); | 353 | |
354 | atomic_inc(&init_cred.usage); | ||
355 | commit_creds(&init_cred); | ||
346 | write_unlock_irq(&tasklist_lock); | 356 | write_unlock_irq(&tasklist_lock); |
347 | switch_uid(INIT_USER); | ||
348 | } | 357 | } |
349 | 358 | ||
350 | void __set_special_pids(struct pid *pid) | 359 | void __set_special_pids(struct pid *pid) |
@@ -1078,7 +1087,6 @@ NORET_TYPE void do_exit(long code) | |||
1078 | check_stack_usage(); | 1087 | check_stack_usage(); |
1079 | exit_thread(); | 1088 | exit_thread(); |
1080 | cgroup_exit(tsk, 1); | 1089 | cgroup_exit(tsk, 1); |
1081 | exit_keys(tsk); | ||
1082 | 1090 | ||
1083 | if (group_dead && tsk->signal->leader) | 1091 | if (group_dead && tsk->signal->leader) |
1084 | disassociate_ctty(1); | 1092 | disassociate_ctty(1); |
@@ -1123,7 +1131,6 @@ NORET_TYPE void do_exit(long code) | |||
1123 | preempt_disable(); | 1131 | preempt_disable(); |
1124 | /* causes final put_task_struct in finish_task_switch(). */ | 1132 | /* causes final put_task_struct in finish_task_switch(). */ |
1125 | tsk->state = TASK_DEAD; | 1133 | tsk->state = TASK_DEAD; |
1126 | |||
1127 | schedule(); | 1134 | schedule(); |
1128 | BUG(); | 1135 | BUG(); |
1129 | /* Avoid "noreturn function does return". */ | 1136 | /* Avoid "noreturn function does return". */ |
@@ -1263,12 +1270,12 @@ static int wait_task_zombie(struct task_struct *p, int options, | |||
1263 | unsigned long state; | 1270 | unsigned long state; |
1264 | int retval, status, traced; | 1271 | int retval, status, traced; |
1265 | pid_t pid = task_pid_vnr(p); | 1272 | pid_t pid = task_pid_vnr(p); |
1273 | uid_t uid = __task_cred(p)->uid; | ||
1266 | 1274 | ||
1267 | if (!likely(options & WEXITED)) | 1275 | if (!likely(options & WEXITED)) |
1268 | return 0; | 1276 | return 0; |
1269 | 1277 | ||
1270 | if (unlikely(options & WNOWAIT)) { | 1278 | if (unlikely(options & WNOWAIT)) { |
1271 | uid_t uid = p->uid; | ||
1272 | int exit_code = p->exit_code; | 1279 | int exit_code = p->exit_code; |
1273 | int why, status; | 1280 | int why, status; |
1274 | 1281 | ||
@@ -1389,7 +1396,7 @@ static int wait_task_zombie(struct task_struct *p, int options, | |||
1389 | if (!retval && infop) | 1396 | if (!retval && infop) |
1390 | retval = put_user(pid, &infop->si_pid); | 1397 | retval = put_user(pid, &infop->si_pid); |
1391 | if (!retval && infop) | 1398 | if (!retval && infop) |
1392 | retval = put_user(p->uid, &infop->si_uid); | 1399 | retval = put_user(uid, &infop->si_uid); |
1393 | if (!retval) | 1400 | if (!retval) |
1394 | retval = pid; | 1401 | retval = pid; |
1395 | 1402 | ||
@@ -1454,7 +1461,8 @@ static int wait_task_stopped(int ptrace, struct task_struct *p, | |||
1454 | if (!unlikely(options & WNOWAIT)) | 1461 | if (!unlikely(options & WNOWAIT)) |
1455 | p->exit_code = 0; | 1462 | p->exit_code = 0; |
1456 | 1463 | ||
1457 | uid = p->uid; | 1464 | /* don't need the RCU readlock here as we're holding a spinlock */ |
1465 | uid = __task_cred(p)->uid; | ||
1458 | unlock_sig: | 1466 | unlock_sig: |
1459 | spin_unlock_irq(&p->sighand->siglock); | 1467 | spin_unlock_irq(&p->sighand->siglock); |
1460 | if (!exit_code) | 1468 | if (!exit_code) |
@@ -1528,10 +1536,10 @@ static int wait_task_continued(struct task_struct *p, int options, | |||
1528 | } | 1536 | } |
1529 | if (!unlikely(options & WNOWAIT)) | 1537 | if (!unlikely(options & WNOWAIT)) |
1530 | p->signal->flags &= ~SIGNAL_STOP_CONTINUED; | 1538 | p->signal->flags &= ~SIGNAL_STOP_CONTINUED; |
1539 | uid = __task_cred(p)->uid; | ||
1531 | spin_unlock_irq(&p->sighand->siglock); | 1540 | spin_unlock_irq(&p->sighand->siglock); |
1532 | 1541 | ||
1533 | pid = task_pid_vnr(p); | 1542 | pid = task_pid_vnr(p); |
1534 | uid = p->uid; | ||
1535 | get_task_struct(p); | 1543 | get_task_struct(p); |
1536 | read_unlock(&tasklist_lock); | 1544 | read_unlock(&tasklist_lock); |
1537 | 1545 | ||