]> bbs.cooldavid.org Git - net-next-2.6.git/blame - kernel/fork.c
Merge branches 'tracing/profiling', 'tracing/options' and 'tracing/urgent' into traci...
[net-next-2.6.git] / kernel / fork.c
CommitLineData
1da177e4
LT
1/*
2 * linux/kernel/fork.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/*
8 * 'fork.c' contains the help-routines for the 'fork' system call
9 * (see also entry.S and others).
10 * Fork is rather simple, once you get the hang of it, but the memory
11 * management can be a bitch. See 'mm/memory.c': 'copy_page_range()'
12 */
13
1da177e4
LT
14#include <linux/slab.h>
15#include <linux/init.h>
16#include <linux/unistd.h>
1da177e4
LT
17#include <linux/module.h>
18#include <linux/vmalloc.h>
19#include <linux/completion.h>
6b3286ed 20#include <linux/mnt_namespace.h>
1da177e4
LT
21#include <linux/personality.h>
22#include <linux/mempolicy.h>
23#include <linux/sem.h>
24#include <linux/file.h>
9f3acc31 25#include <linux/fdtable.h>
da9cbc87 26#include <linux/iocontext.h>
1da177e4
LT
27#include <linux/key.h>
28#include <linux/binfmts.h>
29#include <linux/mman.h>
cddb8a5c 30#include <linux/mmu_notifier.h>
1da177e4 31#include <linux/fs.h>
ab516013 32#include <linux/nsproxy.h>
c59ede7b 33#include <linux/capability.h>
1da177e4 34#include <linux/cpu.h>
b4f48b63 35#include <linux/cgroup.h>
1da177e4 36#include <linux/security.h>
a1e78772 37#include <linux/hugetlb.h>
1da177e4
LT
38#include <linux/swap.h>
39#include <linux/syscalls.h>
40#include <linux/jiffies.h>
09a05394 41#include <linux/tracehook.h>
1da177e4 42#include <linux/futex.h>
8141c7f3 43#include <linux/compat.h>
7c3ab738 44#include <linux/task_io_accounting_ops.h>
ab2af1f5 45#include <linux/rcupdate.h>
1da177e4
LT
46#include <linux/ptrace.h>
47#include <linux/mount.h>
48#include <linux/audit.h>
78fb7466 49#include <linux/memcontrol.h>
1da177e4
LT
50#include <linux/profile.h>
51#include <linux/rmap.h>
52#include <linux/acct.h>
8f0ab514 53#include <linux/tsacct_kern.h>
9f46080c 54#include <linux/cn_proc.h>
ba96a0c8 55#include <linux/freezer.h>
ca74e92b 56#include <linux/delayacct.h>
ad4ecbcb 57#include <linux/taskstats_kern.h>
0a425405 58#include <linux/random.h>
522ed776 59#include <linux/tty.h>
6f4e6433 60#include <linux/proc_fs.h>
fd0928df 61#include <linux/blkdev.h>
0a16b607 62#include <trace/sched.h>
1da177e4
LT
63
64#include <asm/pgtable.h>
65#include <asm/pgalloc.h>
66#include <asm/uaccess.h>
67#include <asm/mmu_context.h>
68#include <asm/cacheflush.h>
69#include <asm/tlbflush.h>
70
71/*
72 * Protected counters by write_lock_irq(&tasklist_lock)
73 */
74unsigned long total_forks; /* Handle normal Linux uptimes. */
75int nr_threads; /* The idle threads do not count.. */
76
77int max_threads; /* tunable limit on nr_threads */
78
79DEFINE_PER_CPU(unsigned long, process_counts) = 0;
80
c59923a1 81__cacheline_aligned DEFINE_RWLOCK(tasklist_lock); /* outer */
1da177e4 82
7e066fb8
MD
83DEFINE_TRACE(sched_process_fork);
84
1da177e4
LT
85int nr_processes(void)
86{
87 int cpu;
88 int total = 0;
89
90 for_each_online_cpu(cpu)
91 total += per_cpu(process_counts, cpu);
92
93 return total;
94}
95
96#ifndef __HAVE_ARCH_TASK_STRUCT_ALLOCATOR
97# define alloc_task_struct() kmem_cache_alloc(task_struct_cachep, GFP_KERNEL)
98# define free_task_struct(tsk) kmem_cache_free(task_struct_cachep, (tsk))
e18b890b 99static struct kmem_cache *task_struct_cachep;
1da177e4
LT
100#endif
101
b69c49b7
FT
102#ifndef __HAVE_ARCH_THREAD_INFO_ALLOCATOR
103static inline struct thread_info *alloc_thread_info(struct task_struct *tsk)
104{
105#ifdef CONFIG_DEBUG_STACK_USAGE
106 gfp_t mask = GFP_KERNEL | __GFP_ZERO;
107#else
108 gfp_t mask = GFP_KERNEL;
109#endif
110 return (struct thread_info *)__get_free_pages(mask, THREAD_SIZE_ORDER);
111}
112
113static inline void free_thread_info(struct thread_info *ti)
114{
115 free_pages((unsigned long)ti, THREAD_SIZE_ORDER);
116}
117#endif
118
1da177e4 119/* SLAB cache for signal_struct structures (tsk->signal) */
e18b890b 120static struct kmem_cache *signal_cachep;
1da177e4
LT
121
122/* SLAB cache for sighand_struct structures (tsk->sighand) */
e18b890b 123struct kmem_cache *sighand_cachep;
1da177e4
LT
124
125/* SLAB cache for files_struct structures (tsk->files) */
e18b890b 126struct kmem_cache *files_cachep;
1da177e4
LT
127
128/* SLAB cache for fs_struct structures (tsk->fs) */
e18b890b 129struct kmem_cache *fs_cachep;
1da177e4
LT
130
131/* SLAB cache for vm_area_struct structures */
e18b890b 132struct kmem_cache *vm_area_cachep;
1da177e4
LT
133
134/* SLAB cache for mm_struct structures (tsk->mm) */
e18b890b 135static struct kmem_cache *mm_cachep;
1da177e4
LT
136
137void free_task(struct task_struct *tsk)
138{
3e26c149 139 prop_local_destroy_single(&tsk->dirties);
f7e4217b 140 free_thread_info(tsk->stack);
23f78d4a 141 rt_mutex_debug_task_free(tsk);
1da177e4
LT
142 free_task_struct(tsk);
143}
144EXPORT_SYMBOL(free_task);
145
158d9ebd 146void __put_task_struct(struct task_struct *tsk)
1da177e4 147{
270f722d 148 WARN_ON(!tsk->exit_state);
1da177e4
LT
149 WARN_ON(atomic_read(&tsk->usage));
150 WARN_ON(tsk == current);
151
1da177e4
LT
152 security_task_free(tsk);
153 free_uid(tsk->user);
154 put_group_info(tsk->group_info);
35df17c5 155 delayacct_tsk_free(tsk);
1da177e4
LT
156
157 if (!profile_handoff_task(tsk))
158 free_task(tsk);
159}
160
2adee9b3
SS
161/*
162 * macro override instead of weak attribute alias, to workaround
163 * gcc 4.1.0 and 4.1.1 bugs with weak attribute and empty functions.
164 */
165#ifndef arch_task_cache_init
166#define arch_task_cache_init()
167#endif
61c4628b 168
1da177e4
LT
169void __init fork_init(unsigned long mempages)
170{
171#ifndef __HAVE_ARCH_TASK_STRUCT_ALLOCATOR
172#ifndef ARCH_MIN_TASKALIGN
173#define ARCH_MIN_TASKALIGN L1_CACHE_BYTES
174#endif
175 /* create a slab on which task_structs can be allocated */
176 task_struct_cachep =
177 kmem_cache_create("task_struct", sizeof(struct task_struct),
20c2df83 178 ARCH_MIN_TASKALIGN, SLAB_PANIC, NULL);
1da177e4
LT
179#endif
180
61c4628b
SS
181 /* do the arch specific task caches init */
182 arch_task_cache_init();
183
1da177e4
LT
184 /*
185 * The default maximum number of threads is set to a safe
186 * value: the thread structures can take up at most half
187 * of memory.
188 */
189 max_threads = mempages / (8 * THREAD_SIZE / PAGE_SIZE);
190
191 /*
192 * we need to allow at least 20 threads to boot a system
193 */
194 if(max_threads < 20)
195 max_threads = 20;
196
197 init_task.signal->rlim[RLIMIT_NPROC].rlim_cur = max_threads/2;
198 init_task.signal->rlim[RLIMIT_NPROC].rlim_max = max_threads/2;
199 init_task.signal->rlim[RLIMIT_SIGPENDING] =
200 init_task.signal->rlim[RLIMIT_NPROC];
201}
202
61c4628b
SS
203int __attribute__((weak)) arch_dup_task_struct(struct task_struct *dst,
204 struct task_struct *src)
205{
206 *dst = *src;
207 return 0;
208}
209
1da177e4
LT
210static struct task_struct *dup_task_struct(struct task_struct *orig)
211{
212 struct task_struct *tsk;
213 struct thread_info *ti;
3e26c149 214 int err;
1da177e4
LT
215
216 prepare_to_copy(orig);
217
218 tsk = alloc_task_struct();
219 if (!tsk)
220 return NULL;
221
222 ti = alloc_thread_info(tsk);
223 if (!ti) {
224 free_task_struct(tsk);
225 return NULL;
226 }
227
61c4628b
SS
228 err = arch_dup_task_struct(tsk, orig);
229 if (err)
230 goto out;
231
f7e4217b 232 tsk->stack = ti;
3e26c149
PZ
233
234 err = prop_local_init_single(&tsk->dirties);
61c4628b
SS
235 if (err)
236 goto out;
3e26c149 237
10ebffde 238 setup_thread_stack(tsk, orig);
1da177e4 239
0a425405
AV
240#ifdef CONFIG_CC_STACKPROTECTOR
241 tsk->stack_canary = get_random_int();
242#endif
243
1da177e4
LT
244 /* One for us, one for whoever does the "release_task()" (usually parent) */
245 atomic_set(&tsk->usage,2);
4b5d37ac 246 atomic_set(&tsk->fs_excl, 0);
6c5c9341 247#ifdef CONFIG_BLK_DEV_IO_TRACE
2056a782 248 tsk->btrace_seq = 0;
6c5c9341 249#endif
a0aa7f68 250 tsk->splice_pipe = NULL;
1da177e4 251 return tsk;
61c4628b
SS
252
253out:
254 free_thread_info(ti);
255 free_task_struct(tsk);
256 return NULL;
1da177e4
LT
257}
258
259#ifdef CONFIG_MMU
a39bc516 260static int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm)
1da177e4 261{
fd3e42fc 262 struct vm_area_struct *mpnt, *tmp, **pprev;
1da177e4
LT
263 struct rb_node **rb_link, *rb_parent;
264 int retval;
265 unsigned long charge;
266 struct mempolicy *pol;
267
268 down_write(&oldmm->mmap_sem);
ec8c0446 269 flush_cache_dup_mm(oldmm);
ad339451
IM
270 /*
271 * Not linked in yet - no deadlock potential:
272 */
273 down_write_nested(&mm->mmap_sem, SINGLE_DEPTH_NESTING);
7ee78232 274
1da177e4
LT
275 mm->locked_vm = 0;
276 mm->mmap = NULL;
277 mm->mmap_cache = NULL;
278 mm->free_area_cache = oldmm->mmap_base;
1363c3cd 279 mm->cached_hole_size = ~0UL;
1da177e4 280 mm->map_count = 0;
1da177e4
LT
281 cpus_clear(mm->cpu_vm_mask);
282 mm->mm_rb = RB_ROOT;
283 rb_link = &mm->mm_rb.rb_node;
284 rb_parent = NULL;
285 pprev = &mm->mmap;
286
fd3e42fc 287 for (mpnt = oldmm->mmap; mpnt; mpnt = mpnt->vm_next) {
1da177e4
LT
288 struct file *file;
289
290 if (mpnt->vm_flags & VM_DONTCOPY) {
3b6bfcdb
HD
291 long pages = vma_pages(mpnt);
292 mm->total_vm -= pages;
ab50b8ed 293 vm_stat_account(mm, mpnt->vm_flags, mpnt->vm_file,
3b6bfcdb 294 -pages);
1da177e4
LT
295 continue;
296 }
297 charge = 0;
298 if (mpnt->vm_flags & VM_ACCOUNT) {
299 unsigned int len = (mpnt->vm_end - mpnt->vm_start) >> PAGE_SHIFT;
300 if (security_vm_enough_memory(len))
301 goto fail_nomem;
302 charge = len;
303 }
e94b1766 304 tmp = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
1da177e4
LT
305 if (!tmp)
306 goto fail_nomem;
307 *tmp = *mpnt;
846a16bf 308 pol = mpol_dup(vma_policy(mpnt));
1da177e4
LT
309 retval = PTR_ERR(pol);
310 if (IS_ERR(pol))
311 goto fail_nomem_policy;
312 vma_set_policy(tmp, pol);
313 tmp->vm_flags &= ~VM_LOCKED;
314 tmp->vm_mm = mm;
315 tmp->vm_next = NULL;
316 anon_vma_link(tmp);
317 file = tmp->vm_file;
318 if (file) {
f3a43f3f 319 struct inode *inode = file->f_path.dentry->d_inode;
1da177e4
LT
320 get_file(file);
321 if (tmp->vm_flags & VM_DENYWRITE)
322 atomic_dec(&inode->i_writecount);
23ff4440 323
1da177e4
LT
324 /* insert tmp into the share list, just after mpnt */
325 spin_lock(&file->f_mapping->i_mmap_lock);
326 tmp->vm_truncate_count = mpnt->vm_truncate_count;
327 flush_dcache_mmap_lock(file->f_mapping);
328 vma_prio_tree_add(tmp, mpnt);
329 flush_dcache_mmap_unlock(file->f_mapping);
330 spin_unlock(&file->f_mapping->i_mmap_lock);
331 }
332
a1e78772
MG
333 /*
334 * Clear hugetlb-related page reserves for children. This only
335 * affects MAP_PRIVATE mappings. Faults generated by the child
336 * are not guaranteed to succeed, even if read-only
337 */
338 if (is_vm_hugetlb_page(tmp))
339 reset_vma_resv_huge_pages(tmp);
340
1da177e4 341 /*
7ee78232 342 * Link in the new vma and copy the page table entries.
1da177e4 343 */
1da177e4
LT
344 *pprev = tmp;
345 pprev = &tmp->vm_next;
346
347 __vma_link_rb(mm, tmp, rb_link, rb_parent);
348 rb_link = &tmp->vm_rb.rb_right;
349 rb_parent = &tmp->vm_rb;
350
351 mm->map_count++;
0b0db14c 352 retval = copy_page_range(mm, oldmm, mpnt);
1da177e4
LT
353
354 if (tmp->vm_ops && tmp->vm_ops->open)
355 tmp->vm_ops->open(tmp);
356
357 if (retval)
358 goto out;
359 }
d6dd61c8
JF
360 /* a new mm has just been created */
361 arch_dup_mmap(oldmm, mm);
1da177e4 362 retval = 0;
1da177e4 363out:
7ee78232 364 up_write(&mm->mmap_sem);
fd3e42fc 365 flush_tlb_mm(oldmm);
1da177e4
LT
366 up_write(&oldmm->mmap_sem);
367 return retval;
368fail_nomem_policy:
369 kmem_cache_free(vm_area_cachep, tmp);
370fail_nomem:
371 retval = -ENOMEM;
372 vm_unacct_memory(charge);
373 goto out;
374}
375
376static inline int mm_alloc_pgd(struct mm_struct * mm)
377{
378 mm->pgd = pgd_alloc(mm);
379 if (unlikely(!mm->pgd))
380 return -ENOMEM;
381 return 0;
382}
383
384static inline void mm_free_pgd(struct mm_struct * mm)
385{
5e541973 386 pgd_free(mm, mm->pgd);
1da177e4
LT
387}
388#else
389#define dup_mmap(mm, oldmm) (0)
390#define mm_alloc_pgd(mm) (0)
391#define mm_free_pgd(mm)
392#endif /* CONFIG_MMU */
393
23ff4440 394__cacheline_aligned_in_smp DEFINE_SPINLOCK(mmlist_lock);
1da177e4 395
e94b1766 396#define allocate_mm() (kmem_cache_alloc(mm_cachep, GFP_KERNEL))
1da177e4
LT
397#define free_mm(mm) (kmem_cache_free(mm_cachep, (mm)))
398
399#include <linux/init_task.h>
400
78fb7466 401static struct mm_struct * mm_init(struct mm_struct * mm, struct task_struct *p)
1da177e4
LT
402{
403 atomic_set(&mm->mm_users, 1);
404 atomic_set(&mm->mm_count, 1);
405 init_rwsem(&mm->mmap_sem);
406 INIT_LIST_HEAD(&mm->mmlist);
3cb4a0bb
KH
407 mm->flags = (current->mm) ? current->mm->flags
408 : MMF_DUMP_FILTER_DEFAULT;
999d9fc1 409 mm->core_state = NULL;
1da177e4 410 mm->nr_ptes = 0;
4294621f 411 set_mm_counter(mm, file_rss, 0);
404351e6 412 set_mm_counter(mm, anon_rss, 0);
1da177e4
LT
413 spin_lock_init(&mm->page_table_lock);
414 rwlock_init(&mm->ioctx_list_lock);
415 mm->ioctx_list = NULL;
1da177e4 416 mm->free_area_cache = TASK_UNMAPPED_BASE;
1363c3cd 417 mm->cached_hole_size = ~0UL;
cf475ad2 418 mm_init_owner(mm, p);
1da177e4
LT
419
420 if (likely(!mm_alloc_pgd(mm))) {
421 mm->def_flags = 0;
cddb8a5c 422 mmu_notifier_mm_init(mm);
1da177e4
LT
423 return mm;
424 }
78fb7466 425
1da177e4
LT
426 free_mm(mm);
427 return NULL;
428}
429
430/*
431 * Allocate and initialize an mm_struct.
432 */
433struct mm_struct * mm_alloc(void)
434{
435 struct mm_struct * mm;
436
437 mm = allocate_mm();
438 if (mm) {
439 memset(mm, 0, sizeof(*mm));
78fb7466 440 mm = mm_init(mm, current);
1da177e4
LT
441 }
442 return mm;
443}
444
445/*
446 * Called when the last reference to the mm
447 * is dropped: either by a lazy thread or by
448 * mmput. Free the page directory and the mm.
449 */
7ad5b3a5 450void __mmdrop(struct mm_struct *mm)
1da177e4
LT
451{
452 BUG_ON(mm == &init_mm);
453 mm_free_pgd(mm);
454 destroy_context(mm);
cddb8a5c 455 mmu_notifier_mm_destroy(mm);
1da177e4
LT
456 free_mm(mm);
457}
6d4e4c4f 458EXPORT_SYMBOL_GPL(__mmdrop);
1da177e4
LT
459
460/*
461 * Decrement the use count and release all resources for an mm.
462 */
463void mmput(struct mm_struct *mm)
464{
0ae26f1b
AM
465 might_sleep();
466
1da177e4
LT
467 if (atomic_dec_and_test(&mm->mm_users)) {
468 exit_aio(mm);
469 exit_mmap(mm);
925d1c40 470 set_mm_exe_file(mm, NULL);
1da177e4
LT
471 if (!list_empty(&mm->mmlist)) {
472 spin_lock(&mmlist_lock);
473 list_del(&mm->mmlist);
474 spin_unlock(&mmlist_lock);
475 }
476 put_swap_token(mm);
477 mmdrop(mm);
478 }
479}
480EXPORT_SYMBOL_GPL(mmput);
481
482/**
483 * get_task_mm - acquire a reference to the task's mm
484 *
246bb0b1 485 * Returns %NULL if the task has no mm. Checks PF_KTHREAD (meaning
1da177e4
LT
486 * this kernel workthread has transiently adopted a user mm with use_mm,
487 * to do its AIO) is not set and if so returns a reference to it, after
488 * bumping up the use count. User must release the mm via mmput()
489 * after use. Typically used by /proc and ptrace.
490 */
491struct mm_struct *get_task_mm(struct task_struct *task)
492{
493 struct mm_struct *mm;
494
495 task_lock(task);
496 mm = task->mm;
497 if (mm) {
246bb0b1 498 if (task->flags & PF_KTHREAD)
1da177e4
LT
499 mm = NULL;
500 else
501 atomic_inc(&mm->mm_users);
502 }
503 task_unlock(task);
504 return mm;
505}
506EXPORT_SYMBOL_GPL(get_task_mm);
507
508/* Please note the differences between mmput and mm_release.
509 * mmput is called whenever we stop holding onto a mm_struct,
510 * error success whatever.
511 *
512 * mm_release is called after a mm_struct has been removed
513 * from the current process.
514 *
515 * This difference is important for error handling, when we
516 * only half set up a mm_struct for a new process and need to restore
517 * the old one. Because we mmput the new mm_struct before
518 * restoring the old one. . .
519 * Eric Biederman 10 January 1998
520 */
521void mm_release(struct task_struct *tsk, struct mm_struct *mm)
522{
523 struct completion *vfork_done = tsk->vfork_done;
524
8141c7f3
LT
525 /* Get rid of any futexes when releasing the mm */
526#ifdef CONFIG_FUTEX
527 if (unlikely(tsk->robust_list))
528 exit_robust_list(tsk);
529#ifdef CONFIG_COMPAT
530 if (unlikely(tsk->compat_robust_list))
531 compat_exit_robust_list(tsk);
532#endif
533#endif
534
1da177e4
LT
535 /* Get rid of any cached register state */
536 deactivate_mm(tsk, mm);
537
538 /* notify parent sleeping on vfork() */
539 if (vfork_done) {
540 tsk->vfork_done = NULL;
541 complete(vfork_done);
542 }
fec1d011
RM
543
544 /*
545 * If we're exiting normally, clear a user-space tid field if
546 * requested. We leave this alone when dying by signal, to leave
547 * the value intact in a core dump, and to save the unnecessary
548 * trouble otherwise. Userland only wants this done for a sys_exit.
549 */
550 if (tsk->clear_child_tid
551 && !(tsk->flags & PF_SIGNALED)
552 && atomic_read(&mm->mm_users) > 1) {
1da177e4
LT
553 u32 __user * tidptr = tsk->clear_child_tid;
554 tsk->clear_child_tid = NULL;
555
556 /*
557 * We don't check the error code - if userspace has
558 * not set up a proper pointer then tough luck.
559 */
560 put_user(0, tidptr);
561 sys_futex(tidptr, FUTEX_WAKE, 1, NULL, NULL, 0);
562 }
563}
564
a0a7ec30
JD
565/*
566 * Allocate a new mm structure and copy contents from the
567 * mm structure of the passed in task structure.
568 */
402b0862 569struct mm_struct *dup_mm(struct task_struct *tsk)
a0a7ec30
JD
570{
571 struct mm_struct *mm, *oldmm = current->mm;
572 int err;
573
574 if (!oldmm)
575 return NULL;
576
577 mm = allocate_mm();
578 if (!mm)
579 goto fail_nomem;
580
581 memcpy(mm, oldmm, sizeof(*mm));
582
7602bdf2
AC
583 /* Initializing for Swap token stuff */
584 mm->token_priority = 0;
585 mm->last_interval = 0;
586
78fb7466 587 if (!mm_init(mm, tsk))
a0a7ec30
JD
588 goto fail_nomem;
589
590 if (init_new_context(tsk, mm))
591 goto fail_nocontext;
592
925d1c40
MH
593 dup_mm_exe_file(oldmm, mm);
594
a0a7ec30
JD
595 err = dup_mmap(mm, oldmm);
596 if (err)
597 goto free_pt;
598
599 mm->hiwater_rss = get_mm_rss(mm);
600 mm->hiwater_vm = mm->total_vm;
601
602 return mm;
603
604free_pt:
605 mmput(mm);
606
607fail_nomem:
608 return NULL;
609
610fail_nocontext:
611 /*
612 * If init_new_context() failed, we cannot use mmput() to free the mm
613 * because it calls destroy_context()
614 */
615 mm_free_pgd(mm);
616 free_mm(mm);
617 return NULL;
618}
619
1da177e4
LT
620static int copy_mm(unsigned long clone_flags, struct task_struct * tsk)
621{
622 struct mm_struct * mm, *oldmm;
623 int retval;
624
625 tsk->min_flt = tsk->maj_flt = 0;
626 tsk->nvcsw = tsk->nivcsw = 0;
627
628 tsk->mm = NULL;
629 tsk->active_mm = NULL;
630
631 /*
632 * Are we cloning a kernel thread?
633 *
634 * We need to steal a active VM for that..
635 */
636 oldmm = current->mm;
637 if (!oldmm)
638 return 0;
639
640 if (clone_flags & CLONE_VM) {
641 atomic_inc(&oldmm->mm_users);
642 mm = oldmm;
1da177e4
LT
643 goto good_mm;
644 }
645
646 retval = -ENOMEM;
a0a7ec30 647 mm = dup_mm(tsk);
1da177e4
LT
648 if (!mm)
649 goto fail_nomem;
650
1da177e4 651good_mm:
7602bdf2
AC
652 /* Initializing for Swap token stuff */
653 mm->token_priority = 0;
654 mm->last_interval = 0;
655
1da177e4
LT
656 tsk->mm = mm;
657 tsk->active_mm = mm;
658 return 0;
659
1da177e4
LT
660fail_nomem:
661 return retval;
1da177e4
LT
662}
663
a39bc516 664static struct fs_struct *__copy_fs_struct(struct fs_struct *old)
1da177e4
LT
665{
666 struct fs_struct *fs = kmem_cache_alloc(fs_cachep, GFP_KERNEL);
667 /* We don't need to lock fs - think why ;-) */
668 if (fs) {
669 atomic_set(&fs->count, 1);
670 rwlock_init(&fs->lock);
671 fs->umask = old->umask;
672 read_lock(&old->lock);
6ac08c39
JB
673 fs->root = old->root;
674 path_get(&old->root);
675 fs->pwd = old->pwd;
676 path_get(&old->pwd);
1da177e4
LT
677 read_unlock(&old->lock);
678 }
679 return fs;
680}
681
682struct fs_struct *copy_fs_struct(struct fs_struct *old)
683{
684 return __copy_fs_struct(old);
685}
686
687EXPORT_SYMBOL_GPL(copy_fs_struct);
688
a39bc516 689static int copy_fs(unsigned long clone_flags, struct task_struct *tsk)
1da177e4
LT
690{
691 if (clone_flags & CLONE_FS) {
692 atomic_inc(&current->fs->count);
693 return 0;
694 }
695 tsk->fs = __copy_fs_struct(current->fs);
696 if (!tsk->fs)
697 return -ENOMEM;
698 return 0;
699}
700
a016f338
JD
701static int copy_files(unsigned long clone_flags, struct task_struct * tsk)
702{
703 struct files_struct *oldf, *newf;
704 int error = 0;
705
706 /*
707 * A background process may not have any files ...
708 */
709 oldf = current->files;
710 if (!oldf)
711 goto out;
712
713 if (clone_flags & CLONE_FILES) {
714 atomic_inc(&oldf->count);
715 goto out;
716 }
717
a016f338
JD
718 newf = dup_fd(oldf, &error);
719 if (!newf)
720 goto out;
721
722 tsk->files = newf;
723 error = 0;
724out:
725 return error;
726}
727
fadad878 728static int copy_io(unsigned long clone_flags, struct task_struct *tsk)
fd0928df
JA
729{
730#ifdef CONFIG_BLOCK
731 struct io_context *ioc = current->io_context;
732
733 if (!ioc)
734 return 0;
fadad878
JA
735 /*
736 * Share io context with parent, if CLONE_IO is set
737 */
738 if (clone_flags & CLONE_IO) {
739 tsk->io_context = ioc_task_link(ioc);
740 if (unlikely(!tsk->io_context))
741 return -ENOMEM;
742 } else if (ioprio_valid(ioc->ioprio)) {
fd0928df
JA
743 tsk->io_context = alloc_io_context(GFP_KERNEL, -1);
744 if (unlikely(!tsk->io_context))
745 return -ENOMEM;
746
fd0928df
JA
747 tsk->io_context->ioprio = ioc->ioprio;
748 }
749#endif
750 return 0;
751}
752
a39bc516 753static int copy_sighand(unsigned long clone_flags, struct task_struct *tsk)
1da177e4
LT
754{
755 struct sighand_struct *sig;
756
757 if (clone_flags & (CLONE_SIGHAND | CLONE_THREAD)) {
758 atomic_inc(&current->sighand->count);
759 return 0;
760 }
761 sig = kmem_cache_alloc(sighand_cachep, GFP_KERNEL);
e56d0903 762 rcu_assign_pointer(tsk->sighand, sig);
1da177e4
LT
763 if (!sig)
764 return -ENOMEM;
1da177e4
LT
765 atomic_set(&sig->count, 1);
766 memcpy(sig->action, current->sighand->action, sizeof(sig->action));
767 return 0;
768}
769
a7e5328a 770void __cleanup_sighand(struct sighand_struct *sighand)
c81addc9 771{
c81addc9
ON
772 if (atomic_dec_and_test(&sighand->count))
773 kmem_cache_free(sighand_cachep, sighand);
774}
775
f06febc9
FM
776
777/*
778 * Initialize POSIX timer handling for a thread group.
779 */
780static void posix_cpu_timers_init_group(struct signal_struct *sig)
781{
782 /* Thread group counters. */
783 thread_group_cputime_init(sig);
784
785 /* Expiration times and increments. */
786 sig->it_virt_expires = cputime_zero;
787 sig->it_virt_incr = cputime_zero;
788 sig->it_prof_expires = cputime_zero;
789 sig->it_prof_incr = cputime_zero;
790
791 /* Cached expiration times. */
792 sig->cputime_expires.prof_exp = cputime_zero;
793 sig->cputime_expires.virt_exp = cputime_zero;
794 sig->cputime_expires.sched_exp = 0;
795
796 /* The timer lists. */
797 INIT_LIST_HEAD(&sig->cpu_timers[0]);
798 INIT_LIST_HEAD(&sig->cpu_timers[1]);
799 INIT_LIST_HEAD(&sig->cpu_timers[2]);
800}
801
a39bc516 802static int copy_signal(unsigned long clone_flags, struct task_struct *tsk)
1da177e4
LT
803{
804 struct signal_struct *sig;
805 int ret;
806
807 if (clone_flags & CLONE_THREAD) {
bb34d92f 808 ret = thread_group_cputime_clone_thread(current);
f06febc9
FM
809 if (likely(!ret)) {
810 atomic_inc(&current->signal->count);
811 atomic_inc(&current->signal->live);
812 }
813 return ret;
1da177e4
LT
814 }
815 sig = kmem_cache_alloc(signal_cachep, GFP_KERNEL);
816 tsk->signal = sig;
817 if (!sig)
818 return -ENOMEM;
819
820 ret = copy_thread_group_keys(tsk);
821 if (ret < 0) {
822 kmem_cache_free(signal_cachep, sig);
823 return ret;
824 }
825
826 atomic_set(&sig->count, 1);
827 atomic_set(&sig->live, 1);
828 init_waitqueue_head(&sig->wait_chldexit);
829 sig->flags = 0;
830 sig->group_exit_code = 0;
831 sig->group_exit_task = NULL;
832 sig->group_stop_count = 0;
db51aecc 833 sig->curr_target = tsk;
1da177e4
LT
834 init_sigpending(&sig->shared_pending);
835 INIT_LIST_HEAD(&sig->posix_timers);
836
c9cb2e3d 837 hrtimer_init(&sig->real_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
2ff678b8 838 sig->it_real_incr.tv64 = 0;
1da177e4 839 sig->real_timer.function = it_real_fn;
1da177e4 840
1da177e4 841 sig->leader = 0; /* session leadership doesn't inherit */
ab521dc0 842 sig->tty_old_pgrp = NULL;
9c9f4ded 843 sig->tty = NULL;
1da177e4 844
f06febc9 845 sig->cutime = sig->cstime = cputime_zero;
9ac52315
LV
846 sig->gtime = cputime_zero;
847 sig->cgtime = cputime_zero;
1da177e4
LT
848 sig->nvcsw = sig->nivcsw = sig->cnvcsw = sig->cnivcsw = 0;
849 sig->min_flt = sig->maj_flt = sig->cmin_flt = sig->cmaj_flt = 0;
6eaeeaba 850 sig->inblock = sig->oublock = sig->cinblock = sig->coublock = 0;
5995477a 851 task_io_accounting_init(&sig->ioac);
ad4ecbcb 852 taskstats_tgid_init(sig);
1da177e4
LT
853
854 task_lock(current->group_leader);
855 memcpy(sig->rlim, current->signal->rlim, sizeof sig->rlim);
856 task_unlock(current->group_leader);
857
f06febc9
FM
858 posix_cpu_timers_init_group(sig);
859
0e464814 860 acct_init_pacct(&sig->pacct);
1da177e4 861
522ed776
MT
862 tty_audit_fork(sig);
863
1da177e4
LT
864 return 0;
865}
866
6b3934ef
ON
867void __cleanup_signal(struct signal_struct *sig)
868{
f06febc9 869 thread_group_cputime_free(sig);
6b3934ef 870 exit_thread_group_keys(sig);
9c9f4ded 871 tty_kref_put(sig->tty);
6b3934ef
ON
872 kmem_cache_free(signal_cachep, sig);
873}
874
a39bc516 875static void cleanup_signal(struct task_struct *tsk)
6b3934ef
ON
876{
877 struct signal_struct *sig = tsk->signal;
878
879 atomic_dec(&sig->live);
880
881 if (atomic_dec_and_test(&sig->count))
882 __cleanup_signal(sig);
883}
884
a39bc516 885static void copy_flags(unsigned long clone_flags, struct task_struct *p)
1da177e4
LT
886{
887 unsigned long new_flags = p->flags;
888
83144186 889 new_flags &= ~PF_SUPERPRIV;
1da177e4 890 new_flags |= PF_FORKNOEXEC;
09a05394 891 new_flags |= PF_STARTING;
1da177e4 892 p->flags = new_flags;
2e131895 893 clear_freeze_flag(p);
1da177e4
LT
894}
895
896asmlinkage long sys_set_tid_address(int __user *tidptr)
897{
898 current->clear_child_tid = tidptr;
899
b488893a 900 return task_pid_vnr(current);
1da177e4
LT
901}
902
a39bc516 903static void rt_mutex_init_task(struct task_struct *p)
23f78d4a 904{
23f78d4a 905 spin_lock_init(&p->pi_lock);
e29e175b 906#ifdef CONFIG_RT_MUTEXES
23f78d4a
IM
907 plist_head_init(&p->pi_waiters, &p->pi_lock);
908 p->pi_blocked_on = NULL;
23f78d4a
IM
909#endif
910}
911
cf475ad2
BS
912#ifdef CONFIG_MM_OWNER
913void mm_init_owner(struct mm_struct *mm, struct task_struct *p)
914{
915 mm->owner = p;
916}
917#endif /* CONFIG_MM_OWNER */
918
f06febc9
FM
919/*
920 * Initialize POSIX timer handling for a single task.
921 */
922static void posix_cpu_timers_init(struct task_struct *tsk)
923{
924 tsk->cputime_expires.prof_exp = cputime_zero;
925 tsk->cputime_expires.virt_exp = cputime_zero;
926 tsk->cputime_expires.sched_exp = 0;
927 INIT_LIST_HEAD(&tsk->cpu_timers[0]);
928 INIT_LIST_HEAD(&tsk->cpu_timers[1]);
929 INIT_LIST_HEAD(&tsk->cpu_timers[2]);
930}
931
1da177e4
LT
932/*
933 * This creates a new process as a copy of the old one,
934 * but does not actually start it yet.
935 *
936 * It copies the registers, and all the appropriate
937 * parts of the process environment (as per the clone
938 * flags). The actual kick-off is left to the caller.
939 */
36c8b586
IM
940static struct task_struct *copy_process(unsigned long clone_flags,
941 unsigned long stack_start,
942 struct pt_regs *regs,
943 unsigned long stack_size,
36c8b586 944 int __user *child_tidptr,
09a05394
RM
945 struct pid *pid,
946 int trace)
1da177e4
LT
947{
948 int retval;
a24efe62 949 struct task_struct *p;
b4f48b63 950 int cgroup_callbacks_done = 0;
1da177e4
LT
951
952 if ((clone_flags & (CLONE_NEWNS|CLONE_FS)) == (CLONE_NEWNS|CLONE_FS))
953 return ERR_PTR(-EINVAL);
954
955 /*
956 * Thread groups must share signals as well, and detached threads
957 * can only be started up within the thread group.
958 */
959 if ((clone_flags & CLONE_THREAD) && !(clone_flags & CLONE_SIGHAND))
960 return ERR_PTR(-EINVAL);
961
962 /*
963 * Shared signal handlers imply shared VM. By way of the above,
964 * thread groups also imply shared VM. Blocking this case allows
965 * for various simplifications in other code.
966 */
967 if ((clone_flags & CLONE_SIGHAND) && !(clone_flags & CLONE_VM))
968 return ERR_PTR(-EINVAL);
969
970 retval = security_task_create(clone_flags);
971 if (retval)
972 goto fork_out;
973
974 retval = -ENOMEM;
975 p = dup_task_struct(current);
976 if (!p)
977 goto fork_out;
978
bea493a0
PZ
979 rt_mutex_init_task(p);
980
d12c1a37 981#ifdef CONFIG_PROVE_LOCKING
de30a2b3
IM
982 DEBUG_LOCKS_WARN_ON(!p->hardirqs_enabled);
983 DEBUG_LOCKS_WARN_ON(!p->softirqs_enabled);
984#endif
1da177e4
LT
985 retval = -EAGAIN;
986 if (atomic_read(&p->user->processes) >=
987 p->signal->rlim[RLIMIT_NPROC].rlim_cur) {
988 if (!capable(CAP_SYS_ADMIN) && !capable(CAP_SYS_RESOURCE) &&
acce292c 989 p->user != current->nsproxy->user_ns->root_user)
1da177e4
LT
990 goto bad_fork_free;
991 }
992
993 atomic_inc(&p->user->__count);
994 atomic_inc(&p->user->processes);
995 get_group_info(p->group_info);
996
997 /*
998 * If multiple threads are within copy_process(), then this check
999 * triggers too late. This doesn't hurt, the check is only there
1000 * to stop root fork bombs.
1001 */
1002 if (nr_threads >= max_threads)
1003 goto bad_fork_cleanup_count;
1004
a1261f54 1005 if (!try_module_get(task_thread_info(p)->exec_domain->module))
1da177e4
LT
1006 goto bad_fork_cleanup_count;
1007
1008 if (p->binfmt && !try_module_get(p->binfmt->module))
1009 goto bad_fork_cleanup_put_domain;
1010
1011 p->did_exec = 0;
ca74e92b 1012 delayacct_tsk_init(p); /* Must remain after dup_task_struct() */
1da177e4 1013 copy_flags(clone_flags, p);
1da177e4
LT
1014 INIT_LIST_HEAD(&p->children);
1015 INIT_LIST_HEAD(&p->sibling);
e260be67
PM
1016#ifdef CONFIG_PREEMPT_RCU
1017 p->rcu_read_lock_nesting = 0;
1018 p->rcu_flipctr_idx = 0;
1019#endif /* #ifdef CONFIG_PREEMPT_RCU */
1da177e4
LT
1020 p->vfork_done = NULL;
1021 spin_lock_init(&p->alloc_lock);
1da177e4
LT
1022
1023 clear_tsk_thread_flag(p, TIF_SIGPENDING);
1024 init_sigpending(&p->pending);
1025
1026 p->utime = cputime_zero;
1027 p->stime = cputime_zero;
9ac52315 1028 p->gtime = cputime_zero;
c66f08be
MN
1029 p->utimescaled = cputime_zero;
1030 p->stimescaled = cputime_zero;
73a2bcb0 1031 p->prev_utime = cputime_zero;
9301899b 1032 p->prev_stime = cputime_zero;
172ba844 1033
6976675d
AV
1034 p->default_timer_slack_ns = current->timer_slack_ns;
1035
82a1fcb9
IM
1036#ifdef CONFIG_DETECT_SOFTLOCKUP
1037 p->last_switch_count = 0;
1038 p->last_switch_timestamp = 0;
1039#endif
1040
5995477a 1041 task_io_accounting_init(&p->ioac);
1da177e4
LT
1042 acct_clear_integrals(p);
1043
f06febc9 1044 posix_cpu_timers_init(p);
1da177e4
LT
1045
1046 p->lock_depth = -1; /* -1 = no lock */
1047 do_posix_clock_monotonic_gettime(&p->start_time);
924b42d5
TJ
1048 p->real_start_time = p->start_time;
1049 monotonic_to_bootbased(&p->real_start_time);
57c521ce 1050#ifdef CONFIG_SECURITY
1da177e4 1051 p->security = NULL;
57c521ce 1052#endif
3b7391de 1053 p->cap_bset = current->cap_bset;
1da177e4 1054 p->io_context = NULL;
1da177e4 1055 p->audit_context = NULL;
b4f48b63 1056 cgroup_fork(p);
1da177e4 1057#ifdef CONFIG_NUMA
846a16bf 1058 p->mempolicy = mpol_dup(p->mempolicy);
1da177e4
LT
1059 if (IS_ERR(p->mempolicy)) {
1060 retval = PTR_ERR(p->mempolicy);
1061 p->mempolicy = NULL;
b4f48b63 1062 goto bad_fork_cleanup_cgroup;
1da177e4 1063 }
c61afb18 1064 mpol_fix_fork_child_flag(p);
1da177e4 1065#endif
de30a2b3
IM
1066#ifdef CONFIG_TRACE_IRQFLAGS
1067 p->irq_events = 0;
b36e4758
RK
1068#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
1069 p->hardirqs_enabled = 1;
1070#else
de30a2b3 1071 p->hardirqs_enabled = 0;
b36e4758 1072#endif
de30a2b3
IM
1073 p->hardirq_enable_ip = 0;
1074 p->hardirq_enable_event = 0;
1075 p->hardirq_disable_ip = _THIS_IP_;
1076 p->hardirq_disable_event = 0;
1077 p->softirqs_enabled = 1;
1078 p->softirq_enable_ip = _THIS_IP_;
1079 p->softirq_enable_event = 0;
1080 p->softirq_disable_ip = 0;
1081 p->softirq_disable_event = 0;
1082 p->hardirq_context = 0;
1083 p->softirq_context = 0;
1084#endif
fbb9ce95
IM
1085#ifdef CONFIG_LOCKDEP
1086 p->lockdep_depth = 0; /* no locks held yet */
1087 p->curr_chain_key = 0;
1088 p->lockdep_recursion = 0;
1089#endif
1da177e4 1090
408894ee
IM
1091#ifdef CONFIG_DEBUG_MUTEXES
1092 p->blocked_on = NULL; /* not blocked yet */
1093#endif
1094
3c90e6e9
SV
1095 /* Perform scheduler related setup. Assign this task to a CPU. */
1096 sched_fork(p, clone_flags);
1097
1da177e4
LT
1098 if ((retval = security_task_alloc(p)))
1099 goto bad_fork_cleanup_policy;
1100 if ((retval = audit_alloc(p)))
1101 goto bad_fork_cleanup_security;
1102 /* copy all the process information */
1103 if ((retval = copy_semundo(clone_flags, p)))
1104 goto bad_fork_cleanup_audit;
1105 if ((retval = copy_files(clone_flags, p)))
1106 goto bad_fork_cleanup_semundo;
1107 if ((retval = copy_fs(clone_flags, p)))
1108 goto bad_fork_cleanup_files;
1109 if ((retval = copy_sighand(clone_flags, p)))
1110 goto bad_fork_cleanup_fs;
1111 if ((retval = copy_signal(clone_flags, p)))
1112 goto bad_fork_cleanup_sighand;
1113 if ((retval = copy_mm(clone_flags, p)))
1114 goto bad_fork_cleanup_signal;
1115 if ((retval = copy_keys(clone_flags, p)))
1116 goto bad_fork_cleanup_mm;
ab516013 1117 if ((retval = copy_namespaces(clone_flags, p)))
1da177e4 1118 goto bad_fork_cleanup_keys;
fadad878 1119 if ((retval = copy_io(clone_flags, p)))
fd0928df 1120 goto bad_fork_cleanup_namespaces;
1da177e4
LT
1121 retval = copy_thread(0, clone_flags, stack_start, stack_size, p, regs);
1122 if (retval)
fd0928df 1123 goto bad_fork_cleanup_io;
1da177e4 1124
425fb2b4
PE
1125 if (pid != &init_struct_pid) {
1126 retval = -ENOMEM;
1127 pid = alloc_pid(task_active_pid_ns(p));
1128 if (!pid)
fd0928df 1129 goto bad_fork_cleanup_io;
6f4e6433
PE
1130
1131 if (clone_flags & CLONE_NEWPID) {
1132 retval = pid_ns_prepare_proc(task_active_pid_ns(p));
1133 if (retval < 0)
1134 goto bad_fork_free_pid;
1135 }
425fb2b4
PE
1136 }
1137
1138 p->pid = pid_nr(pid);
1139 p->tgid = p->pid;
1140 if (clone_flags & CLONE_THREAD)
1141 p->tgid = current->tgid;
1142
e885dcde
SH
1143 if (current->nsproxy != p->nsproxy) {
1144 retval = ns_cgroup_clone(p, pid);
1145 if (retval)
1146 goto bad_fork_free_pid;
1147 }
1148
1da177e4
LT
1149 p->set_child_tid = (clone_flags & CLONE_CHILD_SETTID) ? child_tidptr : NULL;
1150 /*
1151 * Clear TID on mm_release()?
1152 */
1153 p->clear_child_tid = (clone_flags & CLONE_CHILD_CLEARTID) ? child_tidptr: NULL;
42b2dd0a 1154#ifdef CONFIG_FUTEX
8f17d3a5
IM
1155 p->robust_list = NULL;
1156#ifdef CONFIG_COMPAT
1157 p->compat_robust_list = NULL;
1158#endif
c87e2837
IM
1159 INIT_LIST_HEAD(&p->pi_state_list);
1160 p->pi_state_cache = NULL;
42b2dd0a 1161#endif
f9a3879a
GM
1162 /*
1163 * sigaltstack should be cleared when sharing the same VM
1164 */
1165 if ((clone_flags & (CLONE_VM|CLONE_VFORK)) == CLONE_VM)
1166 p->sas_ss_sp = p->sas_ss_size = 0;
1167
1da177e4
LT
1168 /*
1169 * Syscall tracing should be turned off in the child regardless
1170 * of CLONE_PTRACE.
1171 */
1172 clear_tsk_thread_flag(p, TIF_SYSCALL_TRACE);
ed75e8d5
LV
1173#ifdef TIF_SYSCALL_EMU
1174 clear_tsk_thread_flag(p, TIF_SYSCALL_EMU);
1175#endif
9745512c 1176 clear_all_latency_tracing(p);
1da177e4
LT
1177
1178 /* Our parent execution domain becomes current domain
1179 These must match for thread signalling to apply */
1da177e4
LT
1180 p->parent_exec_id = p->self_exec_id;
1181
1182 /* ok, now we should be set up.. */
1183 p->exit_signal = (clone_flags & CLONE_THREAD) ? -1 : (clone_flags & CSIGNAL);
1184 p->pdeath_signal = 0;
1185 p->exit_state = 0;
1186
1da177e4
LT
1187 /*
1188 * Ok, make it visible to the rest of the system.
1189 * We dont wake it up yet.
1190 */
1191 p->group_leader = p;
47e65328 1192 INIT_LIST_HEAD(&p->thread_group);
1da177e4 1193
b4f48b63
PM
1194 /* Now that the task is set up, run cgroup callbacks if
1195 * necessary. We need to run them before the task is visible
1196 * on the tasklist. */
1197 cgroup_fork_callbacks(p);
1198 cgroup_callbacks_done = 1;
1199
1da177e4
LT
1200 /* Need tasklist lock for parent etc handling! */
1201 write_lock_irq(&tasklist_lock);
1202
1203 /*
476d139c
NP
1204 * The task hasn't been attached yet, so its cpus_allowed mask will
1205 * not be changed, nor will its assigned CPU.
1206 *
1207 * The cpus_allowed mask of the parent may have changed after it was
1208 * copied first time - so re-copy it here, then check the child's CPU
1209 * to ensure it is on a valid CPU (and if not, just force it back to
1210 * parent's CPU). This avoids alot of nasty races.
1da177e4
LT
1211 */
1212 p->cpus_allowed = current->cpus_allowed;
6f505b16 1213 p->rt.nr_cpus_allowed = current->rt.nr_cpus_allowed;
26ff6ad9
SV
1214 if (unlikely(!cpu_isset(task_cpu(p), p->cpus_allowed) ||
1215 !cpu_online(task_cpu(p))))
476d139c 1216 set_task_cpu(p, smp_processor_id());
1da177e4 1217
1da177e4
LT
1218 /* CLONE_PARENT re-uses the old parent */
1219 if (clone_flags & (CLONE_PARENT|CLONE_THREAD))
1220 p->real_parent = current->real_parent;
1221 else
1222 p->real_parent = current;
1da177e4 1223
3f17da69 1224 spin_lock(&current->sighand->siglock);
4a2c7a78
ON
1225
1226 /*
1227 * Process group and session signals need to be delivered to just the
1228 * parent before the fork or both the parent and the child after the
1229 * fork. Restart if a signal comes in before we add the new process to
1230 * it's process group.
1231 * A fatal signal pending means that current will exit, so the new
1232 * thread can't slip out of an OOM kill (or normal SIGKILL).
1233 */
23ff4440 1234 recalc_sigpending();
4a2c7a78
ON
1235 if (signal_pending(current)) {
1236 spin_unlock(&current->sighand->siglock);
1237 write_unlock_irq(&tasklist_lock);
1238 retval = -ERESTARTNOINTR;
425fb2b4 1239 goto bad_fork_free_pid;
4a2c7a78
ON
1240 }
1241
1da177e4 1242 if (clone_flags & CLONE_THREAD) {
1da177e4 1243 p->group_leader = current->group_leader;
47e65328 1244 list_add_tail_rcu(&p->thread_group, &p->group_leader->thread_group);
1da177e4
LT
1245 }
1246
73b9ebfe 1247 if (likely(p->pid)) {
f470021a 1248 list_add_tail(&p->sibling, &p->real_parent->children);
09a05394 1249 tracehook_finish_clone(p, clone_flags, trace);
73b9ebfe
ON
1250
1251 if (thread_group_leader(p)) {
5cd17569 1252 if (clone_flags & CLONE_NEWPID)
30e49c26 1253 p->nsproxy->pid_ns->child_reaper = p;
73b9ebfe 1254
fea9d175 1255 p->signal->leader_pid = pid;
9c9f4ded
AC
1256 tty_kref_put(p->signal->tty);
1257 p->signal->tty = tty_kref_get(current->signal->tty);
5cd17569
EB
1258 set_task_pgrp(p, task_pgrp_nr(current));
1259 set_task_session(p, task_session_nr(current));
1260 attach_pid(p, PIDTYPE_PGID, task_pgrp(current));
1261 attach_pid(p, PIDTYPE_SID, task_session(current));
5e85d4ab 1262 list_add_tail_rcu(&p->tasks, &init_task.tasks);
1da177e4 1263 __get_cpu_var(process_counts)++;
73b9ebfe 1264 }
85868995 1265 attach_pid(p, PIDTYPE_PID, pid);
73b9ebfe 1266 nr_threads++;
1da177e4
LT
1267 }
1268
1da177e4 1269 total_forks++;
3f17da69 1270 spin_unlock(&current->sighand->siglock);
1da177e4 1271 write_unlock_irq(&tasklist_lock);
c13cf856 1272 proc_fork_connector(p);
817929ec 1273 cgroup_post_fork(p);
1da177e4
LT
1274 return p;
1275
425fb2b4
PE
1276bad_fork_free_pid:
1277 if (pid != &init_struct_pid)
1278 free_pid(pid);
fd0928df
JA
1279bad_fork_cleanup_io:
1280 put_io_context(p->io_context);
ab516013 1281bad_fork_cleanup_namespaces:
444f378b 1282 exit_task_namespaces(p);
1da177e4
LT
1283bad_fork_cleanup_keys:
1284 exit_keys(p);
1285bad_fork_cleanup_mm:
1286 if (p->mm)
1287 mmput(p->mm);
1288bad_fork_cleanup_signal:
6b3934ef 1289 cleanup_signal(p);
1da177e4 1290bad_fork_cleanup_sighand:
a7e5328a 1291 __cleanup_sighand(p->sighand);
1da177e4
LT
1292bad_fork_cleanup_fs:
1293 exit_fs(p); /* blocking */
1294bad_fork_cleanup_files:
1295 exit_files(p); /* blocking */
1296bad_fork_cleanup_semundo:
1297 exit_sem(p);
1298bad_fork_cleanup_audit:
1299 audit_free(p);
1300bad_fork_cleanup_security:
1301 security_task_free(p);
1302bad_fork_cleanup_policy:
1303#ifdef CONFIG_NUMA
f0be3d32 1304 mpol_put(p->mempolicy);
b4f48b63 1305bad_fork_cleanup_cgroup:
1da177e4 1306#endif
b4f48b63 1307 cgroup_exit(p, cgroup_callbacks_done);
35df17c5 1308 delayacct_tsk_free(p);
1da177e4
LT
1309 if (p->binfmt)
1310 module_put(p->binfmt->module);
1311bad_fork_cleanup_put_domain:
a1261f54 1312 module_put(task_thread_info(p)->exec_domain->module);
1da177e4
LT
1313bad_fork_cleanup_count:
1314 put_group_info(p->group_info);
1315 atomic_dec(&p->user->processes);
1316 free_uid(p->user);
1317bad_fork_free:
1318 free_task(p);
fe7d37d1
ON
1319fork_out:
1320 return ERR_PTR(retval);
1da177e4
LT
1321}
1322
6b2fb3c6 1323noinline struct pt_regs * __cpuinit __attribute__((weak)) idle_regs(struct pt_regs *regs)
1da177e4
LT
1324{
1325 memset(regs, 0, sizeof(struct pt_regs));
1326 return regs;
1327}
1328
9abcf40b 1329struct task_struct * __cpuinit fork_idle(int cpu)
1da177e4 1330{
36c8b586 1331 struct task_struct *task;
1da177e4
LT
1332 struct pt_regs regs;
1333
30e49c26 1334 task = copy_process(CLONE_VM, 0, idle_regs(&regs), 0, NULL,
09a05394 1335 &init_struct_pid, 0);
753ca4f3
AM
1336 if (!IS_ERR(task))
1337 init_idle(task, cpu);
73b9ebfe 1338
1da177e4
LT
1339 return task;
1340}
1341
1da177e4
LT
1342/*
1343 * Ok, this is the main fork-routine.
1344 *
1345 * It copies the process, and if successful kick-starts
1346 * it and waits for it to finish using the VM if required.
1347 */
1348long do_fork(unsigned long clone_flags,
1349 unsigned long stack_start,
1350 struct pt_regs *regs,
1351 unsigned long stack_size,
1352 int __user *parent_tidptr,
1353 int __user *child_tidptr)
1354{
1355 struct task_struct *p;
1356 int trace = 0;
92476d7f 1357 long nr;
1da177e4 1358
bdff746a
AM
1359 /*
1360 * We hope to recycle these flags after 2.6.26
1361 */
1362 if (unlikely(clone_flags & CLONE_STOPPED)) {
1363 static int __read_mostly count = 100;
1364
1365 if (count > 0 && printk_ratelimit()) {
1366 char comm[TASK_COMM_LEN];
1367
1368 count--;
1369 printk(KERN_INFO "fork(): process `%s' used deprecated "
1370 "clone flags 0x%lx\n",
1371 get_task_comm(comm, current),
1372 clone_flags & CLONE_STOPPED);
1373 }
1374 }
1375
09a05394
RM
1376 /*
1377 * When called from kernel_thread, don't do user tracing stuff.
1378 */
1379 if (likely(user_mode(regs)))
1380 trace = tracehook_prepare_clone(clone_flags);
1da177e4 1381
a6f5e063 1382 p = copy_process(clone_flags, stack_start, regs, stack_size,
09a05394 1383 child_tidptr, NULL, trace);
1da177e4
LT
1384 /*
1385 * Do this prior waking up the new thread - the thread pointer
1386 * might get invalid after that point, if the thread exits quickly.
1387 */
1388 if (!IS_ERR(p)) {
1389 struct completion vfork;
1390
0a16b607
MD
1391 trace_sched_process_fork(current, p);
1392
6c5f3e7b 1393 nr = task_pid_vnr(p);
30e49c26
PE
1394
1395 if (clone_flags & CLONE_PARENT_SETTID)
1396 put_user(nr, parent_tidptr);
a6f5e063 1397
1da177e4
LT
1398 if (clone_flags & CLONE_VFORK) {
1399 p->vfork_done = &vfork;
1400 init_completion(&vfork);
1401 }
1402
09a05394
RM
1403 tracehook_report_clone(trace, regs, clone_flags, nr, p);
1404
1405 /*
1406 * We set PF_STARTING at creation in case tracing wants to
1407 * use this to distinguish a fully live task from one that
1408 * hasn't gotten to tracehook_report_clone() yet. Now we
1409 * clear it and set the child going.
1410 */
1411 p->flags &= ~PF_STARTING;
1412
1413 if (unlikely(clone_flags & CLONE_STOPPED)) {
1da177e4
LT
1414 /*
1415 * We'll start up with an immediate SIGSTOP.
1416 */
1417 sigaddset(&p->pending.signal, SIGSTOP);
1418 set_tsk_thread_flag(p, TIF_SIGPENDING);
d9ae90ac 1419 __set_task_state(p, TASK_STOPPED);
09a05394
RM
1420 } else {
1421 wake_up_new_task(p, clone_flags);
1da177e4
LT
1422 }
1423
09a05394
RM
1424 tracehook_report_clone_complete(trace, regs,
1425 clone_flags, nr, p);
1426
1da177e4 1427 if (clone_flags & CLONE_VFORK) {
ba96a0c8 1428 freezer_do_not_count();
1da177e4 1429 wait_for_completion(&vfork);
ba96a0c8 1430 freezer_count();
daded34b 1431 tracehook_report_vfork_done(p, nr);
1da177e4
LT
1432 }
1433 } else {
92476d7f 1434 nr = PTR_ERR(p);
1da177e4 1435 }
92476d7f 1436 return nr;
1da177e4
LT
1437}
1438
5fd63b30
RT
1439#ifndef ARCH_MIN_MMSTRUCT_ALIGN
1440#define ARCH_MIN_MMSTRUCT_ALIGN 0
1441#endif
1442
51cc5068 1443static void sighand_ctor(void *data)
aa1757f9
ON
1444{
1445 struct sighand_struct *sighand = data;
1446
a35afb83 1447 spin_lock_init(&sighand->siglock);
b8fceee1 1448 init_waitqueue_head(&sighand->signalfd_wqh);
aa1757f9
ON
1449}
1450
1da177e4
LT
1451void __init proc_caches_init(void)
1452{
1453 sighand_cachep = kmem_cache_create("sighand_cache",
1454 sizeof(struct sighand_struct), 0,
aa1757f9 1455 SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_DESTROY_BY_RCU,
20c2df83 1456 sighand_ctor);
1da177e4
LT
1457 signal_cachep = kmem_cache_create("signal_cache",
1458 sizeof(struct signal_struct), 0,
20c2df83
PM
1459 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
1460 files_cachep = kmem_cache_create("files_cache",
1da177e4 1461 sizeof(struct files_struct), 0,
20c2df83
PM
1462 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
1463 fs_cachep = kmem_cache_create("fs_cache",
1da177e4 1464 sizeof(struct fs_struct), 0,
20c2df83 1465 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
1da177e4
LT
1466 vm_area_cachep = kmem_cache_create("vm_area_struct",
1467 sizeof(struct vm_area_struct), 0,
20c2df83 1468 SLAB_PANIC, NULL);
1da177e4 1469 mm_cachep = kmem_cache_create("mm_struct",
5fd63b30 1470 sizeof(struct mm_struct), ARCH_MIN_MMSTRUCT_ALIGN,
20c2df83 1471 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
1da177e4 1472}
cf2e340f 1473
cf2e340f
JD
1474/*
1475 * Check constraints on flags passed to the unshare system call and
1476 * force unsharing of additional process context as appropriate.
1477 */
a39bc516 1478static void check_unshare_flags(unsigned long *flags_ptr)
cf2e340f
JD
1479{
1480 /*
1481 * If unsharing a thread from a thread group, must also
1482 * unshare vm.
1483 */
1484 if (*flags_ptr & CLONE_THREAD)
1485 *flags_ptr |= CLONE_VM;
1486
1487 /*
1488 * If unsharing vm, must also unshare signal handlers.
1489 */
1490 if (*flags_ptr & CLONE_VM)
1491 *flags_ptr |= CLONE_SIGHAND;
1492
1493 /*
1494 * If unsharing signal handlers and the task was created
1495 * using CLONE_THREAD, then must unshare the thread
1496 */
1497 if ((*flags_ptr & CLONE_SIGHAND) &&
1498 (atomic_read(&current->signal->count) > 1))
1499 *flags_ptr |= CLONE_THREAD;
1500
1501 /*
1502 * If unsharing namespace, must also unshare filesystem information.
1503 */
1504 if (*flags_ptr & CLONE_NEWNS)
1505 *flags_ptr |= CLONE_FS;
1506}
1507
1508/*
1509 * Unsharing of tasks created with CLONE_THREAD is not supported yet
1510 */
1511static int unshare_thread(unsigned long unshare_flags)
1512{
1513 if (unshare_flags & CLONE_THREAD)
1514 return -EINVAL;
1515
1516 return 0;
1517}
1518
1519/*
99d1419d 1520 * Unshare the filesystem structure if it is being shared
cf2e340f
JD
1521 */
1522static int unshare_fs(unsigned long unshare_flags, struct fs_struct **new_fsp)
1523{
1524 struct fs_struct *fs = current->fs;
1525
1526 if ((unshare_flags & CLONE_FS) &&
99d1419d
JD
1527 (fs && atomic_read(&fs->count) > 1)) {
1528 *new_fsp = __copy_fs_struct(current->fs);
1529 if (!*new_fsp)
1530 return -ENOMEM;
1531 }
cf2e340f
JD
1532
1533 return 0;
1534}
1535
cf2e340f 1536/*
dae3c5a0 1537 * Unsharing of sighand is not supported yet
cf2e340f
JD
1538 */
1539static int unshare_sighand(unsigned long unshare_flags, struct sighand_struct **new_sighp)
1540{
1541 struct sighand_struct *sigh = current->sighand;
1542
dae3c5a0 1543 if ((unshare_flags & CLONE_SIGHAND) && atomic_read(&sigh->count) > 1)
cf2e340f
JD
1544 return -EINVAL;
1545 else
1546 return 0;
1547}
1548
1549/*
a0a7ec30 1550 * Unshare vm if it is being shared
cf2e340f
JD
1551 */
1552static int unshare_vm(unsigned long unshare_flags, struct mm_struct **new_mmp)
1553{
1554 struct mm_struct *mm = current->mm;
1555
1556 if ((unshare_flags & CLONE_VM) &&
a0a7ec30 1557 (mm && atomic_read(&mm->mm_users) > 1)) {
2d61b867 1558 return -EINVAL;
a0a7ec30 1559 }
cf2e340f
JD
1560
1561 return 0;
cf2e340f
JD
1562}
1563
1564/*
a016f338 1565 * Unshare file descriptor table if it is being shared
cf2e340f
JD
1566 */
1567static int unshare_fd(unsigned long unshare_flags, struct files_struct **new_fdp)
1568{
1569 struct files_struct *fd = current->files;
a016f338 1570 int error = 0;
cf2e340f
JD
1571
1572 if ((unshare_flags & CLONE_FILES) &&
a016f338
JD
1573 (fd && atomic_read(&fd->count) > 1)) {
1574 *new_fdp = dup_fd(fd, &error);
1575 if (!*new_fdp)
1576 return error;
1577 }
cf2e340f
JD
1578
1579 return 0;
1580}
1581
cf2e340f
JD
1582/*
1583 * unshare allows a process to 'unshare' part of the process
1584 * context which was originally shared using clone. copy_*
1585 * functions used by do_fork() cannot be used here directly
1586 * because they modify an inactive task_struct that is being
1587 * constructed. Here we are modifying the current, active,
1588 * task_struct.
1589 */
1590asmlinkage long sys_unshare(unsigned long unshare_flags)
1591{
1592 int err = 0;
1593 struct fs_struct *fs, *new_fs = NULL;
dae3c5a0 1594 struct sighand_struct *new_sigh = NULL;
cf2e340f
JD
1595 struct mm_struct *mm, *new_mm = NULL, *active_mm = NULL;
1596 struct files_struct *fd, *new_fd = NULL;
cf7b708c 1597 struct nsproxy *new_nsproxy = NULL;
9edff4ab 1598 int do_sysvsem = 0;
cf2e340f
JD
1599
1600 check_unshare_flags(&unshare_flags);
1601
06f9d4f9
EB
1602 /* Return -EINVAL for all unsupported flags */
1603 err = -EINVAL;
1604 if (unshare_flags & ~(CLONE_THREAD|CLONE_FS|CLONE_NEWNS|CLONE_SIGHAND|
25b21cb2 1605 CLONE_VM|CLONE_FILES|CLONE_SYSVSEM|
9dd776b6
EB
1606 CLONE_NEWUTS|CLONE_NEWIPC|CLONE_NEWUSER|
1607 CLONE_NEWNET))
06f9d4f9
EB
1608 goto bad_unshare_out;
1609
6013f67f
MS
1610 /*
1611 * CLONE_NEWIPC must also detach from the undolist: after switching
1612 * to a new ipc namespace, the semaphore arrays from the old
1613 * namespace are unreachable.
1614 */
1615 if (unshare_flags & (CLONE_NEWIPC|CLONE_SYSVSEM))
9edff4ab 1616 do_sysvsem = 1;
cf2e340f
JD
1617 if ((err = unshare_thread(unshare_flags)))
1618 goto bad_unshare_out;
1619 if ((err = unshare_fs(unshare_flags, &new_fs)))
1620 goto bad_unshare_cleanup_thread;
cf2e340f 1621 if ((err = unshare_sighand(unshare_flags, &new_sigh)))
e3222c4e 1622 goto bad_unshare_cleanup_fs;
cf2e340f
JD
1623 if ((err = unshare_vm(unshare_flags, &new_mm)))
1624 goto bad_unshare_cleanup_sigh;
1625 if ((err = unshare_fd(unshare_flags, &new_fd)))
1626 goto bad_unshare_cleanup_vm;
e3222c4e
BP
1627 if ((err = unshare_nsproxy_namespaces(unshare_flags, &new_nsproxy,
1628 new_fs)))
9edff4ab 1629 goto bad_unshare_cleanup_fd;
c0b2fc31 1630
9edff4ab
MS
1631 if (new_fs || new_mm || new_fd || do_sysvsem || new_nsproxy) {
1632 if (do_sysvsem) {
1633 /*
1634 * CLONE_SYSVSEM is equivalent to sys_exit().
1635 */
1636 exit_sem(current);
1637 }
ab516013 1638
c0b2fc31 1639 if (new_nsproxy) {
cf7b708c
PE
1640 switch_task_namespaces(current, new_nsproxy);
1641 new_nsproxy = NULL;
c0b2fc31 1642 }
cf2e340f 1643
cf7b708c
PE
1644 task_lock(current);
1645
cf2e340f
JD
1646 if (new_fs) {
1647 fs = current->fs;
1648 current->fs = new_fs;
1649 new_fs = fs;
1650 }
1651
cf2e340f
JD
1652 if (new_mm) {
1653 mm = current->mm;
1654 active_mm = current->active_mm;
1655 current->mm = new_mm;
1656 current->active_mm = new_mm;
1657 activate_mm(active_mm, new_mm);
1658 new_mm = mm;
1659 }
1660
1661 if (new_fd) {
1662 fd = current->files;
1663 current->files = new_fd;
1664 new_fd = fd;
1665 }
1666
1667 task_unlock(current);
1668 }
1669
c0b2fc31 1670 if (new_nsproxy)
444f378b 1671 put_nsproxy(new_nsproxy);
c0b2fc31 1672
cf2e340f
JD
1673bad_unshare_cleanup_fd:
1674 if (new_fd)
1675 put_files_struct(new_fd);
1676
1677bad_unshare_cleanup_vm:
1678 if (new_mm)
1679 mmput(new_mm);
1680
1681bad_unshare_cleanup_sigh:
1682 if (new_sigh)
1683 if (atomic_dec_and_test(&new_sigh->count))
1684 kmem_cache_free(sighand_cachep, new_sigh);
1685
cf2e340f
JD
1686bad_unshare_cleanup_fs:
1687 if (new_fs)
1688 put_fs_struct(new_fs);
1689
1690bad_unshare_cleanup_thread:
1691bad_unshare_out:
1692 return err;
1693}
3b125388
AV
1694
1695/*
1696 * Helper to unshare the files of the current task.
1697 * We don't want to expose copy_files internals to
1698 * the exec layer of the kernel.
1699 */
1700
1701int unshare_files(struct files_struct **displaced)
1702{
1703 struct task_struct *task = current;
50704516 1704 struct files_struct *copy = NULL;
3b125388
AV
1705 int error;
1706
1707 error = unshare_fd(CLONE_FILES, &copy);
1708 if (error || !copy) {
1709 *displaced = NULL;
1710 return error;
1711 }
1712 *displaced = task->files;
1713 task_lock(task);
1714 task->files = copy;
1715 task_unlock(task);
1716 return 0;
1717}