]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - kernel/fork.c
sched/core: Free the stack early if CONFIG_THREAD_INFO_IN_TASK
[mirror_ubuntu-bionic-kernel.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>
1da177e4
LT
20#include <linux/personality.h>
21#include <linux/mempolicy.h>
22#include <linux/sem.h>
23#include <linux/file.h>
9f3acc31 24#include <linux/fdtable.h>
da9cbc87 25#include <linux/iocontext.h>
1da177e4
LT
26#include <linux/key.h>
27#include <linux/binfmts.h>
28#include <linux/mman.h>
cddb8a5c 29#include <linux/mmu_notifier.h>
1da177e4 30#include <linux/fs.h>
615d6e87
DB
31#include <linux/mm.h>
32#include <linux/vmacache.h>
ab516013 33#include <linux/nsproxy.h>
c59ede7b 34#include <linux/capability.h>
1da177e4 35#include <linux/cpu.h>
b4f48b63 36#include <linux/cgroup.h>
1da177e4 37#include <linux/security.h>
a1e78772 38#include <linux/hugetlb.h>
e2cfabdf 39#include <linux/seccomp.h>
1da177e4
LT
40#include <linux/swap.h>
41#include <linux/syscalls.h>
42#include <linux/jiffies.h>
43#include <linux/futex.h>
8141c7f3 44#include <linux/compat.h>
207205a2 45#include <linux/kthread.h>
7c3ab738 46#include <linux/task_io_accounting_ops.h>
ab2af1f5 47#include <linux/rcupdate.h>
1da177e4
LT
48#include <linux/ptrace.h>
49#include <linux/mount.h>
50#include <linux/audit.h>
78fb7466 51#include <linux/memcontrol.h>
f201ae23 52#include <linux/ftrace.h>
5e2bf014 53#include <linux/proc_fs.h>
1da177e4
LT
54#include <linux/profile.h>
55#include <linux/rmap.h>
f8af4da3 56#include <linux/ksm.h>
1da177e4 57#include <linux/acct.h>
8f0ab514 58#include <linux/tsacct_kern.h>
9f46080c 59#include <linux/cn_proc.h>
ba96a0c8 60#include <linux/freezer.h>
ca74e92b 61#include <linux/delayacct.h>
ad4ecbcb 62#include <linux/taskstats_kern.h>
0a425405 63#include <linux/random.h>
522ed776 64#include <linux/tty.h>
fd0928df 65#include <linux/blkdev.h>
5ad4e53b 66#include <linux/fs_struct.h>
7c9f8861 67#include <linux/magic.h>
cdd6c482 68#include <linux/perf_event.h>
42c4ab41 69#include <linux/posix-timers.h>
8e7cac79 70#include <linux/user-return-notifier.h>
3d5992d2 71#include <linux/oom.h>
ba76149f 72#include <linux/khugepaged.h>
d80e731e 73#include <linux/signalfd.h>
0326f5a9 74#include <linux/uprobes.h>
a27bb332 75#include <linux/aio.h>
52f5684c 76#include <linux/compiler.h>
16db3d3f 77#include <linux/sysctl.h>
5c9a8750 78#include <linux/kcov.h>
1da177e4
LT
79
80#include <asm/pgtable.h>
81#include <asm/pgalloc.h>
82#include <asm/uaccess.h>
83#include <asm/mmu_context.h>
84#include <asm/cacheflush.h>
85#include <asm/tlbflush.h>
86
ad8d75ff
SR
87#include <trace/events/sched.h>
88
43d2b113
KH
89#define CREATE_TRACE_POINTS
90#include <trace/events/task.h>
91
ac1b398d
HS
92/*
93 * Minimum number of threads to boot the kernel
94 */
95#define MIN_THREADS 20
96
97/*
98 * Maximum number of threads
99 */
100#define MAX_THREADS FUTEX_TID_MASK
101
1da177e4
LT
102/*
103 * Protected counters by write_lock_irq(&tasklist_lock)
104 */
105unsigned long total_forks; /* Handle normal Linux uptimes. */
fb0a685c 106int nr_threads; /* The idle threads do not count.. */
1da177e4
LT
107
108int max_threads; /* tunable limit on nr_threads */
109
110DEFINE_PER_CPU(unsigned long, process_counts) = 0;
111
c59923a1 112__cacheline_aligned DEFINE_RWLOCK(tasklist_lock); /* outer */
db1466b3
PM
113
114#ifdef CONFIG_PROVE_RCU
115int lockdep_tasklist_lock_is_held(void)
116{
117 return lockdep_is_held(&tasklist_lock);
118}
119EXPORT_SYMBOL_GPL(lockdep_tasklist_lock_is_held);
120#endif /* #ifdef CONFIG_PROVE_RCU */
1da177e4
LT
121
122int nr_processes(void)
123{
124 int cpu;
125 int total = 0;
126
1d510750 127 for_each_possible_cpu(cpu)
1da177e4
LT
128 total += per_cpu(process_counts, cpu);
129
130 return total;
131}
132
f19b9f74
AM
133void __weak arch_release_task_struct(struct task_struct *tsk)
134{
135}
136
f5e10287 137#ifndef CONFIG_ARCH_TASK_STRUCT_ALLOCATOR
e18b890b 138static struct kmem_cache *task_struct_cachep;
41101809
TG
139
140static inline struct task_struct *alloc_task_struct_node(int node)
141{
142 return kmem_cache_alloc_node(task_struct_cachep, GFP_KERNEL, node);
143}
144
41101809
TG
145static inline void free_task_struct(struct task_struct *tsk)
146{
41101809
TG
147 kmem_cache_free(task_struct_cachep, tsk);
148}
1da177e4
LT
149#endif
150
b235beea 151void __weak arch_release_thread_stack(unsigned long *stack)
f19b9f74
AM
152{
153}
154
b235beea 155#ifndef CONFIG_ARCH_THREAD_STACK_ALLOCATOR
41101809 156
0d15d74a
TG
157/*
158 * Allocate pages if THREAD_SIZE is >= PAGE_SIZE, otherwise use a
159 * kmemcache based allocator.
160 */
ba14a194
AL
161# if THREAD_SIZE >= PAGE_SIZE || defined(CONFIG_VMAP_STACK)
162static unsigned long *alloc_thread_stack_node(struct task_struct *tsk, int node)
b69c49b7 163{
ba14a194
AL
164#ifdef CONFIG_VMAP_STACK
165 void *stack = __vmalloc_node_range(THREAD_SIZE, THREAD_SIZE,
166 VMALLOC_START, VMALLOC_END,
167 THREADINFO_GFP | __GFP_HIGHMEM,
168 PAGE_KERNEL,
169 0, node,
170 __builtin_return_address(0));
171
172 /*
173 * We can't call find_vm_area() in interrupt context, and
174 * free_thread_stack() can be called in interrupt context,
175 * so cache the vm_struct.
176 */
177 if (stack)
178 tsk->stack_vm_area = find_vm_area(stack);
179 return stack;
180#else
4949148a
VD
181 struct page *page = alloc_pages_node(node, THREADINFO_GFP,
182 THREAD_SIZE_ORDER);
b6a84016
ED
183
184 return page ? page_address(page) : NULL;
ba14a194 185#endif
b69c49b7
FT
186}
187
ba14a194 188static inline void free_thread_stack(struct task_struct *tsk)
b69c49b7 189{
ba14a194
AL
190 if (task_stack_vm_area(tsk))
191 vfree(tsk->stack);
192 else
193 __free_pages(virt_to_page(tsk->stack), THREAD_SIZE_ORDER);
b69c49b7 194}
0d15d74a 195# else
b235beea 196static struct kmem_cache *thread_stack_cache;
0d15d74a 197
9521d399 198static unsigned long *alloc_thread_stack_node(struct task_struct *tsk,
0d15d74a
TG
199 int node)
200{
b235beea 201 return kmem_cache_alloc_node(thread_stack_cache, THREADINFO_GFP, node);
0d15d74a
TG
202}
203
ba14a194 204static void free_thread_stack(struct task_struct *tsk)
0d15d74a 205{
ba14a194 206 kmem_cache_free(thread_stack_cache, tsk->stack);
0d15d74a
TG
207}
208
b235beea 209void thread_stack_cache_init(void)
0d15d74a 210{
b235beea 211 thread_stack_cache = kmem_cache_create("thread_stack", THREAD_SIZE,
0d15d74a 212 THREAD_SIZE, 0, NULL);
b235beea 213 BUG_ON(thread_stack_cache == NULL);
0d15d74a
TG
214}
215# endif
b69c49b7
FT
216#endif
217
1da177e4 218/* SLAB cache for signal_struct structures (tsk->signal) */
e18b890b 219static struct kmem_cache *signal_cachep;
1da177e4
LT
220
221/* SLAB cache for sighand_struct structures (tsk->sighand) */
e18b890b 222struct kmem_cache *sighand_cachep;
1da177e4
LT
223
224/* SLAB cache for files_struct structures (tsk->files) */
e18b890b 225struct kmem_cache *files_cachep;
1da177e4
LT
226
227/* SLAB cache for fs_struct structures (tsk->fs) */
e18b890b 228struct kmem_cache *fs_cachep;
1da177e4
LT
229
230/* SLAB cache for vm_area_struct structures */
e18b890b 231struct kmem_cache *vm_area_cachep;
1da177e4
LT
232
233/* SLAB cache for mm_struct structures (tsk->mm) */
e18b890b 234static struct kmem_cache *mm_cachep;
1da177e4 235
ba14a194 236static void account_kernel_stack(struct task_struct *tsk, int account)
c6a7f572 237{
ba14a194
AL
238 void *stack = task_stack_page(tsk);
239 struct vm_struct *vm = task_stack_vm_area(tsk);
240
241 BUILD_BUG_ON(IS_ENABLED(CONFIG_VMAP_STACK) && PAGE_SIZE % 1024 != 0);
242
243 if (vm) {
244 int i;
245
246 BUG_ON(vm->nr_pages != THREAD_SIZE / PAGE_SIZE);
247
248 for (i = 0; i < THREAD_SIZE / PAGE_SIZE; i++) {
249 mod_zone_page_state(page_zone(vm->pages[i]),
250 NR_KERNEL_STACK_KB,
251 PAGE_SIZE / 1024 * account);
252 }
253
254 /* All stack pages belong to the same memcg. */
255 memcg_kmem_update_page_stat(vm->pages[0], MEMCG_KERNEL_STACK_KB,
256 account * (THREAD_SIZE / 1024));
257 } else {
258 /*
259 * All stack pages are in the same zone and belong to the
260 * same memcg.
261 */
262 struct page *first_page = virt_to_page(stack);
263
264 mod_zone_page_state(page_zone(first_page), NR_KERNEL_STACK_KB,
265 THREAD_SIZE / 1024 * account);
266
267 memcg_kmem_update_page_stat(first_page, MEMCG_KERNEL_STACK_KB,
268 account * (THREAD_SIZE / 1024));
269 }
c6a7f572
KM
270}
271
68f24b08 272static void release_task_stack(struct task_struct *tsk)
1da177e4 273{
ba14a194 274 account_kernel_stack(tsk, -1);
b235beea 275 arch_release_thread_stack(tsk->stack);
ba14a194 276 free_thread_stack(tsk);
68f24b08
AL
277 tsk->stack = NULL;
278#ifdef CONFIG_VMAP_STACK
279 tsk->stack_vm_area = NULL;
280#endif
281}
282
283#ifdef CONFIG_THREAD_INFO_IN_TASK
284void put_task_stack(struct task_struct *tsk)
285{
286 if (atomic_dec_and_test(&tsk->stack_refcount))
287 release_task_stack(tsk);
288}
289#endif
290
291void free_task(struct task_struct *tsk)
292{
293#ifndef CONFIG_THREAD_INFO_IN_TASK
294 /*
295 * The task is finally done with both the stack and thread_info,
296 * so free both.
297 */
298 release_task_stack(tsk);
299#else
300 /*
301 * If the task had a separate stack allocation, it should be gone
302 * by now.
303 */
304 WARN_ON_ONCE(atomic_read(&tsk->stack_refcount) != 0);
305#endif
23f78d4a 306 rt_mutex_debug_task_free(tsk);
fb52607a 307 ftrace_graph_exit_task(tsk);
e2cfabdf 308 put_seccomp_filter(tsk);
f19b9f74 309 arch_release_task_struct(tsk);
1da177e4
LT
310 free_task_struct(tsk);
311}
312EXPORT_SYMBOL(free_task);
313
ea6d290c
ON
314static inline void free_signal_struct(struct signal_struct *sig)
315{
97101eb4 316 taskstats_tgid_free(sig);
1c5354de 317 sched_autogroup_exit(sig);
ea6d290c
ON
318 kmem_cache_free(signal_cachep, sig);
319}
320
321static inline void put_signal_struct(struct signal_struct *sig)
322{
1c5354de 323 if (atomic_dec_and_test(&sig->sigcnt))
ea6d290c
ON
324 free_signal_struct(sig);
325}
326
158d9ebd 327void __put_task_struct(struct task_struct *tsk)
1da177e4 328{
270f722d 329 WARN_ON(!tsk->exit_state);
1da177e4
LT
330 WARN_ON(atomic_read(&tsk->usage));
331 WARN_ON(tsk == current);
332
2e91fa7f 333 cgroup_free(tsk);
156654f4 334 task_numa_free(tsk);
1a2a4d06 335 security_task_free(tsk);
e0e81739 336 exit_creds(tsk);
35df17c5 337 delayacct_tsk_free(tsk);
ea6d290c 338 put_signal_struct(tsk->signal);
1da177e4
LT
339
340 if (!profile_handoff_task(tsk))
341 free_task(tsk);
342}
77c100c8 343EXPORT_SYMBOL_GPL(__put_task_struct);
1da177e4 344
6c0a9fa6 345void __init __weak arch_task_cache_init(void) { }
61c4628b 346
ff691f6e
HS
347/*
348 * set_max_threads
349 */
16db3d3f 350static void set_max_threads(unsigned int max_threads_suggested)
ff691f6e 351{
ac1b398d 352 u64 threads;
ff691f6e
HS
353
354 /*
ac1b398d
HS
355 * The number of threads shall be limited such that the thread
356 * structures may only consume a small part of the available memory.
ff691f6e 357 */
ac1b398d
HS
358 if (fls64(totalram_pages) + fls64(PAGE_SIZE) > 64)
359 threads = MAX_THREADS;
360 else
361 threads = div64_u64((u64) totalram_pages * (u64) PAGE_SIZE,
362 (u64) THREAD_SIZE * 8UL);
363
16db3d3f
HS
364 if (threads > max_threads_suggested)
365 threads = max_threads_suggested;
366
ac1b398d 367 max_threads = clamp_t(u64, threads, MIN_THREADS, MAX_THREADS);
ff691f6e
HS
368}
369
5aaeb5c0
IM
370#ifdef CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT
371/* Initialized by the architecture: */
372int arch_task_struct_size __read_mostly;
373#endif
0c8c0f03 374
ff691f6e 375void __init fork_init(void)
1da177e4 376{
f5e10287 377#ifndef CONFIG_ARCH_TASK_STRUCT_ALLOCATOR
1da177e4
LT
378#ifndef ARCH_MIN_TASKALIGN
379#define ARCH_MIN_TASKALIGN L1_CACHE_BYTES
380#endif
381 /* create a slab on which task_structs can be allocated */
5d097056
VD
382 task_struct_cachep = kmem_cache_create("task_struct",
383 arch_task_struct_size, ARCH_MIN_TASKALIGN,
384 SLAB_PANIC|SLAB_NOTRACK|SLAB_ACCOUNT, NULL);
1da177e4
LT
385#endif
386
61c4628b
SS
387 /* do the arch specific task caches init */
388 arch_task_cache_init();
389
16db3d3f 390 set_max_threads(MAX_THREADS);
1da177e4
LT
391
392 init_task.signal->rlim[RLIMIT_NPROC].rlim_cur = max_threads/2;
393 init_task.signal->rlim[RLIMIT_NPROC].rlim_max = max_threads/2;
394 init_task.signal->rlim[RLIMIT_SIGPENDING] =
395 init_task.signal->rlim[RLIMIT_NPROC];
396}
397
52f5684c 398int __weak arch_dup_task_struct(struct task_struct *dst,
61c4628b
SS
399 struct task_struct *src)
400{
401 *dst = *src;
402 return 0;
403}
404
d4311ff1
AT
405void set_task_stack_end_magic(struct task_struct *tsk)
406{
407 unsigned long *stackend;
408
409 stackend = end_of_stack(tsk);
410 *stackend = STACK_END_MAGIC; /* for overflow detection */
411}
412
725fc629 413static struct task_struct *dup_task_struct(struct task_struct *orig, int node)
1da177e4
LT
414{
415 struct task_struct *tsk;
b235beea 416 unsigned long *stack;
ba14a194 417 struct vm_struct *stack_vm_area;
3e26c149 418 int err;
1da177e4 419
725fc629
AK
420 if (node == NUMA_NO_NODE)
421 node = tsk_fork_get_node(orig);
504f52b5 422 tsk = alloc_task_struct_node(node);
1da177e4
LT
423 if (!tsk)
424 return NULL;
425
b235beea
LT
426 stack = alloc_thread_stack_node(tsk, node);
427 if (!stack)
f19b9f74 428 goto free_tsk;
1da177e4 429
ba14a194
AL
430 stack_vm_area = task_stack_vm_area(tsk);
431
fb0a685c 432 err = arch_dup_task_struct(tsk, orig);
ba14a194
AL
433
434 /*
435 * arch_dup_task_struct() clobbers the stack-related fields. Make
436 * sure they're properly initialized before using any stack-related
437 * functions again.
438 */
439 tsk->stack = stack;
440#ifdef CONFIG_VMAP_STACK
441 tsk->stack_vm_area = stack_vm_area;
442#endif
68f24b08
AL
443#ifdef CONFIG_THREAD_INFO_IN_TASK
444 atomic_set(&tsk->stack_refcount, 1);
445#endif
ba14a194 446
164c33c6 447 if (err)
b235beea 448 goto free_stack;
164c33c6 449
dbd95212
KC
450#ifdef CONFIG_SECCOMP
451 /*
452 * We must handle setting up seccomp filters once we're under
453 * the sighand lock in case orig has changed between now and
454 * then. Until then, filter must be NULL to avoid messing up
455 * the usage counts on the error path calling free_task.
456 */
457 tsk->seccomp.filter = NULL;
458#endif
87bec58a
AM
459
460 setup_thread_stack(tsk, orig);
8e7cac79 461 clear_user_return_notifier(tsk);
f26f9aff 462 clear_tsk_need_resched(tsk);
d4311ff1 463 set_task_stack_end_magic(tsk);
1da177e4 464
0a425405
AV
465#ifdef CONFIG_CC_STACKPROTECTOR
466 tsk->stack_canary = get_random_int();
467#endif
468
fb0a685c
DRO
469 /*
470 * One for us, one for whoever does the "release_task()" (usually
471 * parent)
472 */
473 atomic_set(&tsk->usage, 2);
6c5c9341 474#ifdef CONFIG_BLK_DEV_IO_TRACE
2056a782 475 tsk->btrace_seq = 0;
6c5c9341 476#endif
a0aa7f68 477 tsk->splice_pipe = NULL;
5640f768 478 tsk->task_frag.page = NULL;
093e5840 479 tsk->wake_q.next = NULL;
c6a7f572 480
ba14a194 481 account_kernel_stack(tsk, 1);
c6a7f572 482
5c9a8750
DV
483 kcov_task_init(tsk);
484
1da177e4 485 return tsk;
61c4628b 486
b235beea 487free_stack:
ba14a194 488 free_thread_stack(tsk);
f19b9f74 489free_tsk:
61c4628b
SS
490 free_task_struct(tsk);
491 return NULL;
1da177e4
LT
492}
493
494#ifdef CONFIG_MMU
a39bc516 495static int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm)
1da177e4 496{
297c5eee 497 struct vm_area_struct *mpnt, *tmp, *prev, **pprev;
1da177e4
LT
498 struct rb_node **rb_link, *rb_parent;
499 int retval;
500 unsigned long charge;
1da177e4 501
32cdba1e 502 uprobe_start_dup_mmap();
7c051267
MH
503 if (down_write_killable(&oldmm->mmap_sem)) {
504 retval = -EINTR;
505 goto fail_uprobe_end;
506 }
ec8c0446 507 flush_cache_dup_mm(oldmm);
f8ac4ec9 508 uprobe_dup_mmap(oldmm, mm);
ad339451
IM
509 /*
510 * Not linked in yet - no deadlock potential:
511 */
512 down_write_nested(&mm->mmap_sem, SINGLE_DEPTH_NESTING);
7ee78232 513
90f31d0e
KK
514 /* No ordering required: file already has been exposed. */
515 RCU_INIT_POINTER(mm->exe_file, get_mm_exe_file(oldmm));
516
4f7d4614 517 mm->total_vm = oldmm->total_vm;
84638335 518 mm->data_vm = oldmm->data_vm;
4f7d4614
VD
519 mm->exec_vm = oldmm->exec_vm;
520 mm->stack_vm = oldmm->stack_vm;
521
1da177e4
LT
522 rb_link = &mm->mm_rb.rb_node;
523 rb_parent = NULL;
524 pprev = &mm->mmap;
f8af4da3 525 retval = ksm_fork(mm, oldmm);
ba76149f
AA
526 if (retval)
527 goto out;
528 retval = khugepaged_fork(mm, oldmm);
f8af4da3
HD
529 if (retval)
530 goto out;
1da177e4 531
297c5eee 532 prev = NULL;
fd3e42fc 533 for (mpnt = oldmm->mmap; mpnt; mpnt = mpnt->vm_next) {
1da177e4
LT
534 struct file *file;
535
536 if (mpnt->vm_flags & VM_DONTCOPY) {
84638335 537 vm_stat_account(mm, mpnt->vm_flags, -vma_pages(mpnt));
1da177e4
LT
538 continue;
539 }
540 charge = 0;
541 if (mpnt->vm_flags & VM_ACCOUNT) {
b2412b7f
HS
542 unsigned long len = vma_pages(mpnt);
543
191c5424 544 if (security_vm_enough_memory_mm(oldmm, len)) /* sic */
1da177e4
LT
545 goto fail_nomem;
546 charge = len;
547 }
e94b1766 548 tmp = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
1da177e4
LT
549 if (!tmp)
550 goto fail_nomem;
551 *tmp = *mpnt;
5beb4930 552 INIT_LIST_HEAD(&tmp->anon_vma_chain);
ef0855d3
ON
553 retval = vma_dup_policy(mpnt, tmp);
554 if (retval)
1da177e4 555 goto fail_nomem_policy;
a247c3a9 556 tmp->vm_mm = mm;
5beb4930
RR
557 if (anon_vma_fork(tmp, mpnt))
558 goto fail_nomem_anon_vma_fork;
de60f5f1
EM
559 tmp->vm_flags &=
560 ~(VM_LOCKED|VM_LOCKONFAULT|VM_UFFD_MISSING|VM_UFFD_WP);
297c5eee 561 tmp->vm_next = tmp->vm_prev = NULL;
745f234b 562 tmp->vm_userfaultfd_ctx = NULL_VM_UFFD_CTX;
1da177e4
LT
563 file = tmp->vm_file;
564 if (file) {
496ad9aa 565 struct inode *inode = file_inode(file);
b88ed205
HD
566 struct address_space *mapping = file->f_mapping;
567
1da177e4
LT
568 get_file(file);
569 if (tmp->vm_flags & VM_DENYWRITE)
570 atomic_dec(&inode->i_writecount);
83cde9e8 571 i_mmap_lock_write(mapping);
b88ed205 572 if (tmp->vm_flags & VM_SHARED)
4bb5f5d9 573 atomic_inc(&mapping->i_mmap_writable);
b88ed205
HD
574 flush_dcache_mmap_lock(mapping);
575 /* insert tmp into the share list, just after mpnt */
27ba0644
KS
576 vma_interval_tree_insert_after(tmp, mpnt,
577 &mapping->i_mmap);
b88ed205 578 flush_dcache_mmap_unlock(mapping);
83cde9e8 579 i_mmap_unlock_write(mapping);
1da177e4
LT
580 }
581
a1e78772
MG
582 /*
583 * Clear hugetlb-related page reserves for children. This only
584 * affects MAP_PRIVATE mappings. Faults generated by the child
585 * are not guaranteed to succeed, even if read-only
586 */
587 if (is_vm_hugetlb_page(tmp))
588 reset_vma_resv_huge_pages(tmp);
589
1da177e4 590 /*
7ee78232 591 * Link in the new vma and copy the page table entries.
1da177e4 592 */
1da177e4
LT
593 *pprev = tmp;
594 pprev = &tmp->vm_next;
297c5eee
LT
595 tmp->vm_prev = prev;
596 prev = tmp;
1da177e4
LT
597
598 __vma_link_rb(mm, tmp, rb_link, rb_parent);
599 rb_link = &tmp->vm_rb.rb_right;
600 rb_parent = &tmp->vm_rb;
601
602 mm->map_count++;
0b0db14c 603 retval = copy_page_range(mm, oldmm, mpnt);
1da177e4
LT
604
605 if (tmp->vm_ops && tmp->vm_ops->open)
606 tmp->vm_ops->open(tmp);
607
608 if (retval)
609 goto out;
610 }
d6dd61c8
JF
611 /* a new mm has just been created */
612 arch_dup_mmap(oldmm, mm);
1da177e4 613 retval = 0;
1da177e4 614out:
7ee78232 615 up_write(&mm->mmap_sem);
fd3e42fc 616 flush_tlb_mm(oldmm);
1da177e4 617 up_write(&oldmm->mmap_sem);
7c051267 618fail_uprobe_end:
32cdba1e 619 uprobe_end_dup_mmap();
1da177e4 620 return retval;
5beb4930 621fail_nomem_anon_vma_fork:
ef0855d3 622 mpol_put(vma_policy(tmp));
1da177e4
LT
623fail_nomem_policy:
624 kmem_cache_free(vm_area_cachep, tmp);
625fail_nomem:
626 retval = -ENOMEM;
627 vm_unacct_memory(charge);
628 goto out;
629}
630
fb0a685c 631static inline int mm_alloc_pgd(struct mm_struct *mm)
1da177e4
LT
632{
633 mm->pgd = pgd_alloc(mm);
634 if (unlikely(!mm->pgd))
635 return -ENOMEM;
636 return 0;
637}
638
fb0a685c 639static inline void mm_free_pgd(struct mm_struct *mm)
1da177e4 640{
5e541973 641 pgd_free(mm, mm->pgd);
1da177e4
LT
642}
643#else
90f31d0e
KK
644static int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm)
645{
646 down_write(&oldmm->mmap_sem);
647 RCU_INIT_POINTER(mm->exe_file, get_mm_exe_file(oldmm));
648 up_write(&oldmm->mmap_sem);
649 return 0;
650}
1da177e4
LT
651#define mm_alloc_pgd(mm) (0)
652#define mm_free_pgd(mm)
653#endif /* CONFIG_MMU */
654
23ff4440 655__cacheline_aligned_in_smp DEFINE_SPINLOCK(mmlist_lock);
1da177e4 656
e94b1766 657#define allocate_mm() (kmem_cache_alloc(mm_cachep, GFP_KERNEL))
1da177e4
LT
658#define free_mm(mm) (kmem_cache_free(mm_cachep, (mm)))
659
4cb0e11b
HK
660static unsigned long default_dump_filter = MMF_DUMP_FILTER_DEFAULT;
661
662static int __init coredump_filter_setup(char *s)
663{
664 default_dump_filter =
665 (simple_strtoul(s, NULL, 0) << MMF_DUMP_FILTER_SHIFT) &
666 MMF_DUMP_FILTER_MASK;
667 return 1;
668}
669
670__setup("coredump_filter=", coredump_filter_setup);
671
1da177e4
LT
672#include <linux/init_task.h>
673
858f0993
AD
674static void mm_init_aio(struct mm_struct *mm)
675{
676#ifdef CONFIG_AIO
677 spin_lock_init(&mm->ioctx_lock);
db446a08 678 mm->ioctx_table = NULL;
858f0993
AD
679#endif
680}
681
33144e84
VD
682static void mm_init_owner(struct mm_struct *mm, struct task_struct *p)
683{
684#ifdef CONFIG_MEMCG
685 mm->owner = p;
686#endif
687}
688
fb0a685c 689static struct mm_struct *mm_init(struct mm_struct *mm, struct task_struct *p)
1da177e4 690{
41f727fd
VD
691 mm->mmap = NULL;
692 mm->mm_rb = RB_ROOT;
693 mm->vmacache_seqnum = 0;
1da177e4
LT
694 atomic_set(&mm->mm_users, 1);
695 atomic_set(&mm->mm_count, 1);
696 init_rwsem(&mm->mmap_sem);
697 INIT_LIST_HEAD(&mm->mmlist);
999d9fc1 698 mm->core_state = NULL;
e1f56c89 699 atomic_long_set(&mm->nr_ptes, 0);
2d2f5119 700 mm_nr_pmds_init(mm);
41f727fd
VD
701 mm->map_count = 0;
702 mm->locked_vm = 0;
ce65cefa 703 mm->pinned_vm = 0;
d559db08 704 memset(&mm->rss_stat, 0, sizeof(mm->rss_stat));
1da177e4 705 spin_lock_init(&mm->page_table_lock);
41f727fd 706 mm_init_cpumask(mm);
858f0993 707 mm_init_aio(mm);
cf475ad2 708 mm_init_owner(mm, p);
41f727fd 709 mmu_notifier_mm_init(mm);
20841405 710 clear_tlb_flush_pending(mm);
41f727fd
VD
711#if defined(CONFIG_TRANSPARENT_HUGEPAGE) && !USE_SPLIT_PMD_PTLOCKS
712 mm->pmd_huge_pte = NULL;
713#endif
1da177e4 714
a0715cc2
AT
715 if (current->mm) {
716 mm->flags = current->mm->flags & MMF_INIT_MASK;
717 mm->def_flags = current->mm->def_flags & VM_INIT_DEF_MASK;
718 } else {
719 mm->flags = default_dump_filter;
1da177e4 720 mm->def_flags = 0;
a0715cc2
AT
721 }
722
41f727fd
VD
723 if (mm_alloc_pgd(mm))
724 goto fail_nopgd;
725
726 if (init_new_context(p, mm))
727 goto fail_nocontext;
78fb7466 728
41f727fd
VD
729 return mm;
730
731fail_nocontext:
732 mm_free_pgd(mm);
733fail_nopgd:
1da177e4
LT
734 free_mm(mm);
735 return NULL;
736}
737
c3f0327f
KK
738static void check_mm(struct mm_struct *mm)
739{
740 int i;
741
742 for (i = 0; i < NR_MM_COUNTERS; i++) {
743 long x = atomic_long_read(&mm->rss_stat.count[i]);
744
745 if (unlikely(x))
746 printk(KERN_ALERT "BUG: Bad rss-counter state "
747 "mm:%p idx:%d val:%ld\n", mm, i, x);
748 }
b30fe6c7
KS
749
750 if (atomic_long_read(&mm->nr_ptes))
751 pr_alert("BUG: non-zero nr_ptes on freeing mm: %ld\n",
752 atomic_long_read(&mm->nr_ptes));
753 if (mm_nr_pmds(mm))
754 pr_alert("BUG: non-zero nr_pmds on freeing mm: %ld\n",
755 mm_nr_pmds(mm));
756
e009bb30 757#if defined(CONFIG_TRANSPARENT_HUGEPAGE) && !USE_SPLIT_PMD_PTLOCKS
96dad67f 758 VM_BUG_ON_MM(mm->pmd_huge_pte, mm);
c3f0327f
KK
759#endif
760}
761
1da177e4
LT
762/*
763 * Allocate and initialize an mm_struct.
764 */
fb0a685c 765struct mm_struct *mm_alloc(void)
1da177e4 766{
fb0a685c 767 struct mm_struct *mm;
1da177e4
LT
768
769 mm = allocate_mm();
de03c72c
KM
770 if (!mm)
771 return NULL;
772
773 memset(mm, 0, sizeof(*mm));
6345d24d 774 return mm_init(mm, current);
1da177e4
LT
775}
776
777/*
778 * Called when the last reference to the mm
779 * is dropped: either by a lazy thread or by
780 * mmput. Free the page directory and the mm.
781 */
7ad5b3a5 782void __mmdrop(struct mm_struct *mm)
1da177e4
LT
783{
784 BUG_ON(mm == &init_mm);
785 mm_free_pgd(mm);
786 destroy_context(mm);
cddb8a5c 787 mmu_notifier_mm_destroy(mm);
c3f0327f 788 check_mm(mm);
1da177e4
LT
789 free_mm(mm);
790}
6d4e4c4f 791EXPORT_SYMBOL_GPL(__mmdrop);
1da177e4 792
ec8d7c14
MH
793static inline void __mmput(struct mm_struct *mm)
794{
795 VM_BUG_ON(atomic_read(&mm->mm_users));
796
797 uprobe_clear_state(mm);
798 exit_aio(mm);
799 ksm_exit(mm);
800 khugepaged_exit(mm); /* must run before exit_mmap */
801 exit_mmap(mm);
802 set_mm_exe_file(mm, NULL);
803 if (!list_empty(&mm->mmlist)) {
804 spin_lock(&mmlist_lock);
805 list_del(&mm->mmlist);
806 spin_unlock(&mmlist_lock);
807 }
808 if (mm->binfmt)
809 module_put(mm->binfmt->module);
810 mmdrop(mm);
811}
812
1da177e4
LT
813/*
814 * Decrement the use count and release all resources for an mm.
815 */
816void mmput(struct mm_struct *mm)
817{
0ae26f1b
AM
818 might_sleep();
819
ec8d7c14
MH
820 if (atomic_dec_and_test(&mm->mm_users))
821 __mmput(mm);
822}
823EXPORT_SYMBOL_GPL(mmput);
824
7ef949d7 825#ifdef CONFIG_MMU
ec8d7c14
MH
826static void mmput_async_fn(struct work_struct *work)
827{
828 struct mm_struct *mm = container_of(work, struct mm_struct, async_put_work);
829 __mmput(mm);
830}
831
832void mmput_async(struct mm_struct *mm)
833{
1da177e4 834 if (atomic_dec_and_test(&mm->mm_users)) {
ec8d7c14
MH
835 INIT_WORK(&mm->async_put_work, mmput_async_fn);
836 schedule_work(&mm->async_put_work);
1da177e4
LT
837 }
838}
7ef949d7 839#endif
1da177e4 840
90f31d0e
KK
841/**
842 * set_mm_exe_file - change a reference to the mm's executable file
843 *
844 * This changes mm's executable file (shown as symlink /proc/[pid]/exe).
845 *
6e399cd1
DB
846 * Main users are mmput() and sys_execve(). Callers prevent concurrent
847 * invocations: in mmput() nobody alive left, in execve task is single
848 * threaded. sys_prctl(PR_SET_MM_MAP/EXE_FILE) also needs to set the
849 * mm->exe_file, but does so without using set_mm_exe_file() in order
850 * to do avoid the need for any locks.
90f31d0e 851 */
38646013
JS
852void set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file)
853{
6e399cd1
DB
854 struct file *old_exe_file;
855
856 /*
857 * It is safe to dereference the exe_file without RCU as
858 * this function is only called if nobody else can access
859 * this mm -- see comment above for justification.
860 */
861 old_exe_file = rcu_dereference_raw(mm->exe_file);
90f31d0e 862
38646013
JS
863 if (new_exe_file)
864 get_file(new_exe_file);
90f31d0e
KK
865 rcu_assign_pointer(mm->exe_file, new_exe_file);
866 if (old_exe_file)
867 fput(old_exe_file);
38646013
JS
868}
869
90f31d0e
KK
870/**
871 * get_mm_exe_file - acquire a reference to the mm's executable file
872 *
873 * Returns %NULL if mm has no associated executable file.
874 * User must release file via fput().
875 */
38646013
JS
876struct file *get_mm_exe_file(struct mm_struct *mm)
877{
878 struct file *exe_file;
879
90f31d0e
KK
880 rcu_read_lock();
881 exe_file = rcu_dereference(mm->exe_file);
882 if (exe_file && !get_file_rcu(exe_file))
883 exe_file = NULL;
884 rcu_read_unlock();
38646013
JS
885 return exe_file;
886}
11163348 887EXPORT_SYMBOL(get_mm_exe_file);
38646013 888
cd81a917
MG
889/**
890 * get_task_exe_file - acquire a reference to the task's executable file
891 *
892 * Returns %NULL if task's mm (if any) has no associated executable file or
893 * this is a kernel thread with borrowed mm (see the comment above get_task_mm).
894 * User must release file via fput().
895 */
896struct file *get_task_exe_file(struct task_struct *task)
897{
898 struct file *exe_file = NULL;
899 struct mm_struct *mm;
900
901 task_lock(task);
902 mm = task->mm;
903 if (mm) {
904 if (!(task->flags & PF_KTHREAD))
905 exe_file = get_mm_exe_file(mm);
906 }
907 task_unlock(task);
908 return exe_file;
909}
910EXPORT_SYMBOL(get_task_exe_file);
38646013 911
1da177e4
LT
912/**
913 * get_task_mm - acquire a reference to the task's mm
914 *
246bb0b1 915 * Returns %NULL if the task has no mm. Checks PF_KTHREAD (meaning
1da177e4
LT
916 * this kernel workthread has transiently adopted a user mm with use_mm,
917 * to do its AIO) is not set and if so returns a reference to it, after
918 * bumping up the use count. User must release the mm via mmput()
919 * after use. Typically used by /proc and ptrace.
920 */
921struct mm_struct *get_task_mm(struct task_struct *task)
922{
923 struct mm_struct *mm;
924
925 task_lock(task);
926 mm = task->mm;
927 if (mm) {
246bb0b1 928 if (task->flags & PF_KTHREAD)
1da177e4
LT
929 mm = NULL;
930 else
931 atomic_inc(&mm->mm_users);
932 }
933 task_unlock(task);
934 return mm;
935}
936EXPORT_SYMBOL_GPL(get_task_mm);
937
8cdb878d
CY
938struct mm_struct *mm_access(struct task_struct *task, unsigned int mode)
939{
940 struct mm_struct *mm;
941 int err;
942
943 err = mutex_lock_killable(&task->signal->cred_guard_mutex);
944 if (err)
945 return ERR_PTR(err);
946
947 mm = get_task_mm(task);
948 if (mm && mm != current->mm &&
949 !ptrace_may_access(task, mode)) {
950 mmput(mm);
951 mm = ERR_PTR(-EACCES);
952 }
953 mutex_unlock(&task->signal->cred_guard_mutex);
954
955 return mm;
956}
957
57b59c4a 958static void complete_vfork_done(struct task_struct *tsk)
c415c3b4 959{
d68b46fe 960 struct completion *vfork;
c415c3b4 961
d68b46fe
ON
962 task_lock(tsk);
963 vfork = tsk->vfork_done;
964 if (likely(vfork)) {
965 tsk->vfork_done = NULL;
966 complete(vfork);
967 }
968 task_unlock(tsk);
969}
970
971static int wait_for_vfork_done(struct task_struct *child,
972 struct completion *vfork)
973{
974 int killed;
975
976 freezer_do_not_count();
977 killed = wait_for_completion_killable(vfork);
978 freezer_count();
979
980 if (killed) {
981 task_lock(child);
982 child->vfork_done = NULL;
983 task_unlock(child);
984 }
985
986 put_task_struct(child);
987 return killed;
c415c3b4
ON
988}
989
1da177e4
LT
990/* Please note the differences between mmput and mm_release.
991 * mmput is called whenever we stop holding onto a mm_struct,
992 * error success whatever.
993 *
994 * mm_release is called after a mm_struct has been removed
995 * from the current process.
996 *
997 * This difference is important for error handling, when we
998 * only half set up a mm_struct for a new process and need to restore
999 * the old one. Because we mmput the new mm_struct before
1000 * restoring the old one. . .
1001 * Eric Biederman 10 January 1998
1002 */
1003void mm_release(struct task_struct *tsk, struct mm_struct *mm)
1004{
8141c7f3
LT
1005 /* Get rid of any futexes when releasing the mm */
1006#ifdef CONFIG_FUTEX
fc6b177d 1007 if (unlikely(tsk->robust_list)) {
8141c7f3 1008 exit_robust_list(tsk);
fc6b177d
PZ
1009 tsk->robust_list = NULL;
1010 }
8141c7f3 1011#ifdef CONFIG_COMPAT
fc6b177d 1012 if (unlikely(tsk->compat_robust_list)) {
8141c7f3 1013 compat_exit_robust_list(tsk);
fc6b177d
PZ
1014 tsk->compat_robust_list = NULL;
1015 }
8141c7f3 1016#endif
322a2c10
TG
1017 if (unlikely(!list_empty(&tsk->pi_state_list)))
1018 exit_pi_state_list(tsk);
8141c7f3
LT
1019#endif
1020
0326f5a9
SD
1021 uprobe_free_utask(tsk);
1022
1da177e4
LT
1023 /* Get rid of any cached register state */
1024 deactivate_mm(tsk, mm);
1025
fec1d011 1026 /*
735f2770
MH
1027 * Signal userspace if we're not exiting with a core dump
1028 * because we want to leave the value intact for debugging
1029 * purposes.
fec1d011 1030 */
9c8a8228 1031 if (tsk->clear_child_tid) {
735f2770 1032 if (!(tsk->signal->flags & SIGNAL_GROUP_COREDUMP) &&
9c8a8228
ED
1033 atomic_read(&mm->mm_users) > 1) {
1034 /*
1035 * We don't check the error code - if userspace has
1036 * not set up a proper pointer then tough luck.
1037 */
1038 put_user(0, tsk->clear_child_tid);
1039 sys_futex(tsk->clear_child_tid, FUTEX_WAKE,
1040 1, NULL, NULL, 0);
1041 }
1da177e4 1042 tsk->clear_child_tid = NULL;
1da177e4 1043 }
f7505d64
KK
1044
1045 /*
1046 * All done, finally we can wake up parent and return this mm to him.
1047 * Also kthread_stop() uses this completion for synchronization.
1048 */
1049 if (tsk->vfork_done)
1050 complete_vfork_done(tsk);
1da177e4
LT
1051}
1052
a0a7ec30
JD
1053/*
1054 * Allocate a new mm structure and copy contents from the
1055 * mm structure of the passed in task structure.
1056 */
ff252c1f 1057static struct mm_struct *dup_mm(struct task_struct *tsk)
a0a7ec30
JD
1058{
1059 struct mm_struct *mm, *oldmm = current->mm;
1060 int err;
1061
a0a7ec30
JD
1062 mm = allocate_mm();
1063 if (!mm)
1064 goto fail_nomem;
1065
1066 memcpy(mm, oldmm, sizeof(*mm));
1067
78fb7466 1068 if (!mm_init(mm, tsk))
a0a7ec30
JD
1069 goto fail_nomem;
1070
a0a7ec30
JD
1071 err = dup_mmap(mm, oldmm);
1072 if (err)
1073 goto free_pt;
1074
1075 mm->hiwater_rss = get_mm_rss(mm);
1076 mm->hiwater_vm = mm->total_vm;
1077
801460d0
HS
1078 if (mm->binfmt && !try_module_get(mm->binfmt->module))
1079 goto free_pt;
1080
a0a7ec30
JD
1081 return mm;
1082
1083free_pt:
801460d0
HS
1084 /* don't put binfmt in mmput, we haven't got module yet */
1085 mm->binfmt = NULL;
a0a7ec30
JD
1086 mmput(mm);
1087
1088fail_nomem:
1089 return NULL;
a0a7ec30
JD
1090}
1091
fb0a685c 1092static int copy_mm(unsigned long clone_flags, struct task_struct *tsk)
1da177e4 1093{
fb0a685c 1094 struct mm_struct *mm, *oldmm;
1da177e4
LT
1095 int retval;
1096
1097 tsk->min_flt = tsk->maj_flt = 0;
1098 tsk->nvcsw = tsk->nivcsw = 0;
17406b82
MSB
1099#ifdef CONFIG_DETECT_HUNG_TASK
1100 tsk->last_switch_count = tsk->nvcsw + tsk->nivcsw;
1101#endif
1da177e4
LT
1102
1103 tsk->mm = NULL;
1104 tsk->active_mm = NULL;
1105
1106 /*
1107 * Are we cloning a kernel thread?
1108 *
1109 * We need to steal a active VM for that..
1110 */
1111 oldmm = current->mm;
1112 if (!oldmm)
1113 return 0;
1114
615d6e87
DB
1115 /* initialize the new vmacache entries */
1116 vmacache_flush(tsk);
1117
1da177e4
LT
1118 if (clone_flags & CLONE_VM) {
1119 atomic_inc(&oldmm->mm_users);
1120 mm = oldmm;
1da177e4
LT
1121 goto good_mm;
1122 }
1123
1124 retval = -ENOMEM;
a0a7ec30 1125 mm = dup_mm(tsk);
1da177e4
LT
1126 if (!mm)
1127 goto fail_nomem;
1128
1da177e4
LT
1129good_mm:
1130 tsk->mm = mm;
1131 tsk->active_mm = mm;
1132 return 0;
1133
1da177e4
LT
1134fail_nomem:
1135 return retval;
1da177e4
LT
1136}
1137
a39bc516 1138static int copy_fs(unsigned long clone_flags, struct task_struct *tsk)
1da177e4 1139{
498052bb 1140 struct fs_struct *fs = current->fs;
1da177e4 1141 if (clone_flags & CLONE_FS) {
498052bb 1142 /* tsk->fs is already what we want */
2a4419b5 1143 spin_lock(&fs->lock);
498052bb 1144 if (fs->in_exec) {
2a4419b5 1145 spin_unlock(&fs->lock);
498052bb
AV
1146 return -EAGAIN;
1147 }
1148 fs->users++;
2a4419b5 1149 spin_unlock(&fs->lock);
1da177e4
LT
1150 return 0;
1151 }
498052bb 1152 tsk->fs = copy_fs_struct(fs);
1da177e4
LT
1153 if (!tsk->fs)
1154 return -ENOMEM;
1155 return 0;
1156}
1157
fb0a685c 1158static int copy_files(unsigned long clone_flags, struct task_struct *tsk)
a016f338
JD
1159{
1160 struct files_struct *oldf, *newf;
1161 int error = 0;
1162
1163 /*
1164 * A background process may not have any files ...
1165 */
1166 oldf = current->files;
1167 if (!oldf)
1168 goto out;
1169
1170 if (clone_flags & CLONE_FILES) {
1171 atomic_inc(&oldf->count);
1172 goto out;
1173 }
1174
a016f338
JD
1175 newf = dup_fd(oldf, &error);
1176 if (!newf)
1177 goto out;
1178
1179 tsk->files = newf;
1180 error = 0;
1181out:
1182 return error;
1183}
1184
fadad878 1185static int copy_io(unsigned long clone_flags, struct task_struct *tsk)
fd0928df
JA
1186{
1187#ifdef CONFIG_BLOCK
1188 struct io_context *ioc = current->io_context;
6e736be7 1189 struct io_context *new_ioc;
fd0928df
JA
1190
1191 if (!ioc)
1192 return 0;
fadad878
JA
1193 /*
1194 * Share io context with parent, if CLONE_IO is set
1195 */
1196 if (clone_flags & CLONE_IO) {
3d48749d
TH
1197 ioc_task_link(ioc);
1198 tsk->io_context = ioc;
fadad878 1199 } else if (ioprio_valid(ioc->ioprio)) {
6e736be7
TH
1200 new_ioc = get_task_io_context(tsk, GFP_KERNEL, NUMA_NO_NODE);
1201 if (unlikely(!new_ioc))
fd0928df
JA
1202 return -ENOMEM;
1203
6e736be7 1204 new_ioc->ioprio = ioc->ioprio;
11a3122f 1205 put_io_context(new_ioc);
fd0928df
JA
1206 }
1207#endif
1208 return 0;
1209}
1210
a39bc516 1211static int copy_sighand(unsigned long clone_flags, struct task_struct *tsk)
1da177e4
LT
1212{
1213 struct sighand_struct *sig;
1214
60348802 1215 if (clone_flags & CLONE_SIGHAND) {
1da177e4
LT
1216 atomic_inc(&current->sighand->count);
1217 return 0;
1218 }
1219 sig = kmem_cache_alloc(sighand_cachep, GFP_KERNEL);
e56d0903 1220 rcu_assign_pointer(tsk->sighand, sig);
1da177e4
LT
1221 if (!sig)
1222 return -ENOMEM;
9d7fb042 1223
1da177e4
LT
1224 atomic_set(&sig->count, 1);
1225 memcpy(sig->action, current->sighand->action, sizeof(sig->action));
1226 return 0;
1227}
1228
a7e5328a 1229void __cleanup_sighand(struct sighand_struct *sighand)
c81addc9 1230{
d80e731e
ON
1231 if (atomic_dec_and_test(&sighand->count)) {
1232 signalfd_cleanup(sighand);
392809b2
ON
1233 /*
1234 * sighand_cachep is SLAB_DESTROY_BY_RCU so we can free it
1235 * without an RCU grace period, see __lock_task_sighand().
1236 */
c81addc9 1237 kmem_cache_free(sighand_cachep, sighand);
d80e731e 1238 }
c81addc9
ON
1239}
1240
f06febc9
FM
1241/*
1242 * Initialize POSIX timer handling for a thread group.
1243 */
1244static void posix_cpu_timers_init_group(struct signal_struct *sig)
1245{
78d7d407
JS
1246 unsigned long cpu_limit;
1247
316c1608 1248 cpu_limit = READ_ONCE(sig->rlim[RLIMIT_CPU].rlim_cur);
78d7d407
JS
1249 if (cpu_limit != RLIM_INFINITY) {
1250 sig->cputime_expires.prof_exp = secs_to_cputime(cpu_limit);
d5c373eb 1251 sig->cputimer.running = true;
6279a751
ON
1252 }
1253
f06febc9
FM
1254 /* The timer lists. */
1255 INIT_LIST_HEAD(&sig->cpu_timers[0]);
1256 INIT_LIST_HEAD(&sig->cpu_timers[1]);
1257 INIT_LIST_HEAD(&sig->cpu_timers[2]);
1258}
1259
a39bc516 1260static int copy_signal(unsigned long clone_flags, struct task_struct *tsk)
1da177e4
LT
1261{
1262 struct signal_struct *sig;
1da177e4 1263
4ab6c083 1264 if (clone_flags & CLONE_THREAD)
490dea45 1265 return 0;
490dea45 1266
a56704ef 1267 sig = kmem_cache_zalloc(signal_cachep, GFP_KERNEL);
1da177e4
LT
1268 tsk->signal = sig;
1269 if (!sig)
1270 return -ENOMEM;
1271
b3ac022c 1272 sig->nr_threads = 1;
1da177e4 1273 atomic_set(&sig->live, 1);
b3ac022c 1274 atomic_set(&sig->sigcnt, 1);
0c740d0a
ON
1275
1276 /* list_add(thread_node, thread_head) without INIT_LIST_HEAD() */
1277 sig->thread_head = (struct list_head)LIST_HEAD_INIT(tsk->thread_node);
1278 tsk->thread_node = (struct list_head)LIST_HEAD_INIT(sig->thread_head);
1279
1da177e4 1280 init_waitqueue_head(&sig->wait_chldexit);
db51aecc 1281 sig->curr_target = tsk;
1da177e4
LT
1282 init_sigpending(&sig->shared_pending);
1283 INIT_LIST_HEAD(&sig->posix_timers);
e78c3496 1284 seqlock_init(&sig->stats_lock);
9d7fb042 1285 prev_cputime_init(&sig->prev_cputime);
1da177e4 1286
c9cb2e3d 1287 hrtimer_init(&sig->real_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1da177e4 1288 sig->real_timer.function = it_real_fn;
1da177e4 1289
1da177e4
LT
1290 task_lock(current->group_leader);
1291 memcpy(sig->rlim, current->signal->rlim, sizeof sig->rlim);
1292 task_unlock(current->group_leader);
1293
6279a751
ON
1294 posix_cpu_timers_init_group(sig);
1295
522ed776 1296 tty_audit_fork(sig);
5091faa4 1297 sched_autogroup_fork(sig);
522ed776 1298
a63d83f4 1299 sig->oom_score_adj = current->signal->oom_score_adj;
dabb16f6 1300 sig->oom_score_adj_min = current->signal->oom_score_adj_min;
28b83c51 1301
ebec18a6
LP
1302 sig->has_child_subreaper = current->signal->has_child_subreaper ||
1303 current->signal->is_child_subreaper;
1304
9b1bf12d
KM
1305 mutex_init(&sig->cred_guard_mutex);
1306
1da177e4
LT
1307 return 0;
1308}
1309
dbd95212
KC
1310static void copy_seccomp(struct task_struct *p)
1311{
1312#ifdef CONFIG_SECCOMP
1313 /*
1314 * Must be called with sighand->lock held, which is common to
1315 * all threads in the group. Holding cred_guard_mutex is not
1316 * needed because this new task is not yet running and cannot
1317 * be racing exec.
1318 */
69f6a34b 1319 assert_spin_locked(&current->sighand->siglock);
dbd95212
KC
1320
1321 /* Ref-count the new filter user, and assign it. */
1322 get_seccomp_filter(current);
1323 p->seccomp = current->seccomp;
1324
1325 /*
1326 * Explicitly enable no_new_privs here in case it got set
1327 * between the task_struct being duplicated and holding the
1328 * sighand lock. The seccomp state and nnp must be in sync.
1329 */
1330 if (task_no_new_privs(current))
1331 task_set_no_new_privs(p);
1332
1333 /*
1334 * If the parent gained a seccomp mode after copying thread
1335 * flags and between before we held the sighand lock, we have
1336 * to manually enable the seccomp thread flag here.
1337 */
1338 if (p->seccomp.mode != SECCOMP_MODE_DISABLED)
1339 set_tsk_thread_flag(p, TIF_SECCOMP);
1340#endif
1341}
1342
17da2bd9 1343SYSCALL_DEFINE1(set_tid_address, int __user *, tidptr)
1da177e4
LT
1344{
1345 current->clear_child_tid = tidptr;
1346
b488893a 1347 return task_pid_vnr(current);
1da177e4
LT
1348}
1349
a39bc516 1350static void rt_mutex_init_task(struct task_struct *p)
23f78d4a 1351{
1d615482 1352 raw_spin_lock_init(&p->pi_lock);
e29e175b 1353#ifdef CONFIG_RT_MUTEXES
fb00aca4
PZ
1354 p->pi_waiters = RB_ROOT;
1355 p->pi_waiters_leftmost = NULL;
23f78d4a 1356 p->pi_blocked_on = NULL;
23f78d4a
IM
1357#endif
1358}
1359
f06febc9
FM
1360/*
1361 * Initialize POSIX timer handling for a single task.
1362 */
1363static void posix_cpu_timers_init(struct task_struct *tsk)
1364{
64861634
MS
1365 tsk->cputime_expires.prof_exp = 0;
1366 tsk->cputime_expires.virt_exp = 0;
f06febc9
FM
1367 tsk->cputime_expires.sched_exp = 0;
1368 INIT_LIST_HEAD(&tsk->cpu_timers[0]);
1369 INIT_LIST_HEAD(&tsk->cpu_timers[1]);
1370 INIT_LIST_HEAD(&tsk->cpu_timers[2]);
1371}
1372
81907739
ON
1373static inline void
1374init_task_pid(struct task_struct *task, enum pid_type type, struct pid *pid)
1375{
1376 task->pids[type].pid = pid;
1377}
1378
1da177e4
LT
1379/*
1380 * This creates a new process as a copy of the old one,
1381 * but does not actually start it yet.
1382 *
1383 * It copies the registers, and all the appropriate
1384 * parts of the process environment (as per the clone
1385 * flags). The actual kick-off is left to the caller.
1386 */
36c8b586
IM
1387static struct task_struct *copy_process(unsigned long clone_flags,
1388 unsigned long stack_start,
36c8b586 1389 unsigned long stack_size,
36c8b586 1390 int __user *child_tidptr,
09a05394 1391 struct pid *pid,
3033f14a 1392 int trace,
725fc629
AK
1393 unsigned long tls,
1394 int node)
1da177e4
LT
1395{
1396 int retval;
a24efe62 1397 struct task_struct *p;
1da177e4
LT
1398
1399 if ((clone_flags & (CLONE_NEWNS|CLONE_FS)) == (CLONE_NEWNS|CLONE_FS))
1400 return ERR_PTR(-EINVAL);
1401
e66eded8
EB
1402 if ((clone_flags & (CLONE_NEWUSER|CLONE_FS)) == (CLONE_NEWUSER|CLONE_FS))
1403 return ERR_PTR(-EINVAL);
1404
1da177e4
LT
1405 /*
1406 * Thread groups must share signals as well, and detached threads
1407 * can only be started up within the thread group.
1408 */
1409 if ((clone_flags & CLONE_THREAD) && !(clone_flags & CLONE_SIGHAND))
1410 return ERR_PTR(-EINVAL);
1411
1412 /*
1413 * Shared signal handlers imply shared VM. By way of the above,
1414 * thread groups also imply shared VM. Blocking this case allows
1415 * for various simplifications in other code.
1416 */
1417 if ((clone_flags & CLONE_SIGHAND) && !(clone_flags & CLONE_VM))
1418 return ERR_PTR(-EINVAL);
1419
123be07b
SB
1420 /*
1421 * Siblings of global init remain as zombies on exit since they are
1422 * not reaped by their parent (swapper). To solve this and to avoid
1423 * multi-rooted process trees, prevent global and container-inits
1424 * from creating siblings.
1425 */
1426 if ((clone_flags & CLONE_PARENT) &&
1427 current->signal->flags & SIGNAL_UNKILLABLE)
1428 return ERR_PTR(-EINVAL);
1429
8382fcac 1430 /*
40a0d32d 1431 * If the new process will be in a different pid or user namespace
faf00da5 1432 * do not allow it to share a thread group with the forking task.
8382fcac 1433 */
faf00da5 1434 if (clone_flags & CLONE_THREAD) {
40a0d32d
ON
1435 if ((clone_flags & (CLONE_NEWUSER | CLONE_NEWPID)) ||
1436 (task_active_pid_ns(current) !=
1437 current->nsproxy->pid_ns_for_children))
1438 return ERR_PTR(-EINVAL);
1439 }
8382fcac 1440
1da177e4
LT
1441 retval = security_task_create(clone_flags);
1442 if (retval)
1443 goto fork_out;
1444
1445 retval = -ENOMEM;
725fc629 1446 p = dup_task_struct(current, node);
1da177e4
LT
1447 if (!p)
1448 goto fork_out;
1449
f7e8b616
SR
1450 ftrace_graph_init_task(p);
1451
bea493a0
PZ
1452 rt_mutex_init_task(p);
1453
d12c1a37 1454#ifdef CONFIG_PROVE_LOCKING
de30a2b3
IM
1455 DEBUG_LOCKS_WARN_ON(!p->hardirqs_enabled);
1456 DEBUG_LOCKS_WARN_ON(!p->softirqs_enabled);
1457#endif
1da177e4 1458 retval = -EAGAIN;
3b11a1de 1459 if (atomic_read(&p->real_cred->user->processes) >=
78d7d407 1460 task_rlimit(p, RLIMIT_NPROC)) {
b57922b6
EP
1461 if (p->real_cred->user != INIT_USER &&
1462 !capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN))
1da177e4
LT
1463 goto bad_fork_free;
1464 }
72fa5997 1465 current->flags &= ~PF_NPROC_EXCEEDED;
1da177e4 1466
f1752eec
DH
1467 retval = copy_creds(p, clone_flags);
1468 if (retval < 0)
1469 goto bad_fork_free;
1da177e4
LT
1470
1471 /*
1472 * If multiple threads are within copy_process(), then this check
1473 * triggers too late. This doesn't hurt, the check is only there
1474 * to stop root fork bombs.
1475 */
04ec93fe 1476 retval = -EAGAIN;
1da177e4
LT
1477 if (nr_threads >= max_threads)
1478 goto bad_fork_cleanup_count;
1479
ca74e92b 1480 delayacct_tsk_init(p); /* Must remain after dup_task_struct() */
514ddb44
DR
1481 p->flags &= ~(PF_SUPERPRIV | PF_WQ_WORKER);
1482 p->flags |= PF_FORKNOEXEC;
1da177e4
LT
1483 INIT_LIST_HEAD(&p->children);
1484 INIT_LIST_HEAD(&p->sibling);
f41d911f 1485 rcu_copy_process(p);
1da177e4
LT
1486 p->vfork_done = NULL;
1487 spin_lock_init(&p->alloc_lock);
1da177e4 1488
1da177e4
LT
1489 init_sigpending(&p->pending);
1490
64861634
MS
1491 p->utime = p->stime = p->gtime = 0;
1492 p->utimescaled = p->stimescaled = 0;
9d7fb042
PZ
1493 prev_cputime_init(&p->prev_cputime);
1494
6a61671b 1495#ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN
b7ce2277 1496 seqcount_init(&p->vtime_seqcount);
6a61671b 1497 p->vtime_snap = 0;
7098c1ea 1498 p->vtime_snap_whence = VTIME_INACTIVE;
6a61671b
FW
1499#endif
1500
a3a2e76c
KH
1501#if defined(SPLIT_RSS_COUNTING)
1502 memset(&p->rss_stat, 0, sizeof(p->rss_stat));
1503#endif
172ba844 1504
6976675d
AV
1505 p->default_timer_slack_ns = current->timer_slack_ns;
1506
5995477a 1507 task_io_accounting_init(&p->ioac);
1da177e4
LT
1508 acct_clear_integrals(p);
1509
f06febc9 1510 posix_cpu_timers_init(p);
1da177e4 1511
ccbf62d8 1512 p->start_time = ktime_get_ns();
57e0be04 1513 p->real_start_time = ktime_get_boot_ns();
1da177e4 1514 p->io_context = NULL;
1da177e4 1515 p->audit_context = NULL;
b4f48b63 1516 cgroup_fork(p);
1da177e4 1517#ifdef CONFIG_NUMA
846a16bf 1518 p->mempolicy = mpol_dup(p->mempolicy);
fb0a685c
DRO
1519 if (IS_ERR(p->mempolicy)) {
1520 retval = PTR_ERR(p->mempolicy);
1521 p->mempolicy = NULL;
e8604cb4 1522 goto bad_fork_cleanup_threadgroup_lock;
fb0a685c 1523 }
1da177e4 1524#endif
778d3b0f
MH
1525#ifdef CONFIG_CPUSETS
1526 p->cpuset_mem_spread_rotor = NUMA_NO_NODE;
1527 p->cpuset_slab_spread_rotor = NUMA_NO_NODE;
cc9a6c87 1528 seqcount_init(&p->mems_allowed_seq);
778d3b0f 1529#endif
de30a2b3
IM
1530#ifdef CONFIG_TRACE_IRQFLAGS
1531 p->irq_events = 0;
1532 p->hardirqs_enabled = 0;
1533 p->hardirq_enable_ip = 0;
1534 p->hardirq_enable_event = 0;
1535 p->hardirq_disable_ip = _THIS_IP_;
1536 p->hardirq_disable_event = 0;
1537 p->softirqs_enabled = 1;
1538 p->softirq_enable_ip = _THIS_IP_;
1539 p->softirq_enable_event = 0;
1540 p->softirq_disable_ip = 0;
1541 p->softirq_disable_event = 0;
1542 p->hardirq_context = 0;
1543 p->softirq_context = 0;
1544#endif
8bcbde54
DH
1545
1546 p->pagefault_disabled = 0;
1547
fbb9ce95
IM
1548#ifdef CONFIG_LOCKDEP
1549 p->lockdep_depth = 0; /* no locks held yet */
1550 p->curr_chain_key = 0;
1551 p->lockdep_recursion = 0;
1552#endif
1da177e4 1553
408894ee
IM
1554#ifdef CONFIG_DEBUG_MUTEXES
1555 p->blocked_on = NULL; /* not blocked yet */
1556#endif
cafe5635
KO
1557#ifdef CONFIG_BCACHE
1558 p->sequential_io = 0;
1559 p->sequential_io_avg = 0;
1560#endif
0f481406 1561
3c90e6e9 1562 /* Perform scheduler related setup. Assign this task to a CPU. */
aab03e05
DF
1563 retval = sched_fork(clone_flags, p);
1564 if (retval)
1565 goto bad_fork_cleanup_policy;
6ab423e0 1566
cdd6c482 1567 retval = perf_event_init_task(p);
6ab423e0
PZ
1568 if (retval)
1569 goto bad_fork_cleanup_policy;
fb0a685c
DRO
1570 retval = audit_alloc(p);
1571 if (retval)
6c72e350 1572 goto bad_fork_cleanup_perf;
1da177e4 1573 /* copy all the process information */
ab602f79 1574 shm_init_task(p);
fb0a685c
DRO
1575 retval = copy_semundo(clone_flags, p);
1576 if (retval)
1da177e4 1577 goto bad_fork_cleanup_audit;
fb0a685c
DRO
1578 retval = copy_files(clone_flags, p);
1579 if (retval)
1da177e4 1580 goto bad_fork_cleanup_semundo;
fb0a685c
DRO
1581 retval = copy_fs(clone_flags, p);
1582 if (retval)
1da177e4 1583 goto bad_fork_cleanup_files;
fb0a685c
DRO
1584 retval = copy_sighand(clone_flags, p);
1585 if (retval)
1da177e4 1586 goto bad_fork_cleanup_fs;
fb0a685c
DRO
1587 retval = copy_signal(clone_flags, p);
1588 if (retval)
1da177e4 1589 goto bad_fork_cleanup_sighand;
fb0a685c
DRO
1590 retval = copy_mm(clone_flags, p);
1591 if (retval)
1da177e4 1592 goto bad_fork_cleanup_signal;
fb0a685c
DRO
1593 retval = copy_namespaces(clone_flags, p);
1594 if (retval)
d84f4f99 1595 goto bad_fork_cleanup_mm;
fb0a685c
DRO
1596 retval = copy_io(clone_flags, p);
1597 if (retval)
fd0928df 1598 goto bad_fork_cleanup_namespaces;
3033f14a 1599 retval = copy_thread_tls(clone_flags, stack_start, stack_size, p, tls);
1da177e4 1600 if (retval)
fd0928df 1601 goto bad_fork_cleanup_io;
1da177e4 1602
425fb2b4 1603 if (pid != &init_struct_pid) {
c2b1df2e 1604 pid = alloc_pid(p->nsproxy->pid_ns_for_children);
35f71bc0
MH
1605 if (IS_ERR(pid)) {
1606 retval = PTR_ERR(pid);
0740aa5f 1607 goto bad_fork_cleanup_thread;
35f71bc0 1608 }
425fb2b4
PE
1609 }
1610
1da177e4
LT
1611 p->set_child_tid = (clone_flags & CLONE_CHILD_SETTID) ? child_tidptr : NULL;
1612 /*
1613 * Clear TID on mm_release()?
1614 */
fb0a685c 1615 p->clear_child_tid = (clone_flags & CLONE_CHILD_CLEARTID) ? child_tidptr : NULL;
73c10101
JA
1616#ifdef CONFIG_BLOCK
1617 p->plug = NULL;
1618#endif
42b2dd0a 1619#ifdef CONFIG_FUTEX
8f17d3a5
IM
1620 p->robust_list = NULL;
1621#ifdef CONFIG_COMPAT
1622 p->compat_robust_list = NULL;
1623#endif
c87e2837
IM
1624 INIT_LIST_HEAD(&p->pi_state_list);
1625 p->pi_state_cache = NULL;
42b2dd0a 1626#endif
f9a3879a
GM
1627 /*
1628 * sigaltstack should be cleared when sharing the same VM
1629 */
1630 if ((clone_flags & (CLONE_VM|CLONE_VFORK)) == CLONE_VM)
2a742138 1631 sas_ss_reset(p);
f9a3879a 1632
1da177e4 1633 /*
6580807d
ON
1634 * Syscall tracing and stepping should be turned off in the
1635 * child regardless of CLONE_PTRACE.
1da177e4 1636 */
6580807d 1637 user_disable_single_step(p);
1da177e4 1638 clear_tsk_thread_flag(p, TIF_SYSCALL_TRACE);
ed75e8d5
LV
1639#ifdef TIF_SYSCALL_EMU
1640 clear_tsk_thread_flag(p, TIF_SYSCALL_EMU);
1641#endif
9745512c 1642 clear_all_latency_tracing(p);
1da177e4 1643
1da177e4 1644 /* ok, now we should be set up.. */
18c830df
ON
1645 p->pid = pid_nr(pid);
1646 if (clone_flags & CLONE_THREAD) {
5f8aadd8 1647 p->exit_signal = -1;
18c830df
ON
1648 p->group_leader = current->group_leader;
1649 p->tgid = current->tgid;
1650 } else {
1651 if (clone_flags & CLONE_PARENT)
1652 p->exit_signal = current->group_leader->exit_signal;
1653 else
1654 p->exit_signal = (clone_flags & CSIGNAL);
1655 p->group_leader = p;
1656 p->tgid = p->pid;
1657 }
5f8aadd8 1658
9d823e8f
WF
1659 p->nr_dirtied = 0;
1660 p->nr_dirtied_pause = 128 >> (PAGE_SHIFT - 10);
83712358 1661 p->dirty_paused_when = 0;
9d823e8f 1662
bb8cbbfe 1663 p->pdeath_signal = 0;
47e65328 1664 INIT_LIST_HEAD(&p->thread_group);
158e1645 1665 p->task_works = NULL;
1da177e4 1666
568ac888 1667 threadgroup_change_begin(current);
7e47682e
AS
1668 /*
1669 * Ensure that the cgroup subsystem policies allow the new process to be
1670 * forked. It should be noted the the new process's css_set can be changed
1671 * between here and cgroup_post_fork() if an organisation operation is in
1672 * progress.
1673 */
b53202e6 1674 retval = cgroup_can_fork(p);
7e47682e
AS
1675 if (retval)
1676 goto bad_fork_free_pid;
1677
18c830df
ON
1678 /*
1679 * Make it visible to the rest of the system, but dont wake it up yet.
1680 * Need tasklist lock for parent etc handling!
1681 */
1da177e4
LT
1682 write_lock_irq(&tasklist_lock);
1683
1da177e4 1684 /* CLONE_PARENT re-uses the old parent */
2d5516cb 1685 if (clone_flags & (CLONE_PARENT|CLONE_THREAD)) {
1da177e4 1686 p->real_parent = current->real_parent;
2d5516cb
ON
1687 p->parent_exec_id = current->parent_exec_id;
1688 } else {
1da177e4 1689 p->real_parent = current;
2d5516cb
ON
1690 p->parent_exec_id = current->self_exec_id;
1691 }
1da177e4 1692
3f17da69 1693 spin_lock(&current->sighand->siglock);
4a2c7a78 1694
dbd95212
KC
1695 /*
1696 * Copy seccomp details explicitly here, in case they were changed
1697 * before holding sighand lock.
1698 */
1699 copy_seccomp(p);
1700
4a2c7a78
ON
1701 /*
1702 * Process group and session signals need to be delivered to just the
1703 * parent before the fork or both the parent and the child after the
1704 * fork. Restart if a signal comes in before we add the new process to
1705 * it's process group.
1706 * A fatal signal pending means that current will exit, so the new
1707 * thread can't slip out of an OOM kill (or normal SIGKILL).
fb0a685c 1708 */
23ff4440 1709 recalc_sigpending();
4a2c7a78
ON
1710 if (signal_pending(current)) {
1711 spin_unlock(&current->sighand->siglock);
1712 write_unlock_irq(&tasklist_lock);
1713 retval = -ERESTARTNOINTR;
7e47682e 1714 goto bad_fork_cancel_cgroup;
4a2c7a78
ON
1715 }
1716
73b9ebfe 1717 if (likely(p->pid)) {
4b9d33e6 1718 ptrace_init_task(p, (clone_flags & CLONE_PTRACE) || trace);
73b9ebfe 1719
81907739 1720 init_task_pid(p, PIDTYPE_PID, pid);
73b9ebfe 1721 if (thread_group_leader(p)) {
81907739
ON
1722 init_task_pid(p, PIDTYPE_PGID, task_pgrp(current));
1723 init_task_pid(p, PIDTYPE_SID, task_session(current));
1724
1c4042c2 1725 if (is_child_reaper(pid)) {
17cf22c3 1726 ns_of_pid(pid)->child_reaper = p;
1c4042c2
EB
1727 p->signal->flags |= SIGNAL_UNKILLABLE;
1728 }
73b9ebfe 1729
fea9d175 1730 p->signal->leader_pid = pid;
9c9f4ded 1731 p->signal->tty = tty_kref_get(current->signal->tty);
9cd80bbb 1732 list_add_tail(&p->sibling, &p->real_parent->children);
5e85d4ab 1733 list_add_tail_rcu(&p->tasks, &init_task.tasks);
81907739
ON
1734 attach_pid(p, PIDTYPE_PGID);
1735 attach_pid(p, PIDTYPE_SID);
909ea964 1736 __this_cpu_inc(process_counts);
80628ca0
ON
1737 } else {
1738 current->signal->nr_threads++;
1739 atomic_inc(&current->signal->live);
1740 atomic_inc(&current->signal->sigcnt);
80628ca0
ON
1741 list_add_tail_rcu(&p->thread_group,
1742 &p->group_leader->thread_group);
0c740d0a
ON
1743 list_add_tail_rcu(&p->thread_node,
1744 &p->signal->thread_head);
73b9ebfe 1745 }
81907739 1746 attach_pid(p, PIDTYPE_PID);
73b9ebfe 1747 nr_threads++;
1da177e4
LT
1748 }
1749
1da177e4 1750 total_forks++;
3f17da69 1751 spin_unlock(&current->sighand->siglock);
4af4206b 1752 syscall_tracepoint_update(p);
1da177e4 1753 write_unlock_irq(&tasklist_lock);
4af4206b 1754
c13cf856 1755 proc_fork_connector(p);
b53202e6 1756 cgroup_post_fork(p);
c9e75f04 1757 threadgroup_change_end(current);
cdd6c482 1758 perf_event_fork(p);
43d2b113
KH
1759
1760 trace_task_newtask(p, clone_flags);
3ab67966 1761 uprobe_copy_process(p, clone_flags);
43d2b113 1762
1da177e4
LT
1763 return p;
1764
7e47682e 1765bad_fork_cancel_cgroup:
b53202e6 1766 cgroup_cancel_fork(p);
425fb2b4 1767bad_fork_free_pid:
568ac888 1768 threadgroup_change_end(current);
425fb2b4
PE
1769 if (pid != &init_struct_pid)
1770 free_pid(pid);
0740aa5f
JS
1771bad_fork_cleanup_thread:
1772 exit_thread(p);
fd0928df 1773bad_fork_cleanup_io:
b69f2292
LR
1774 if (p->io_context)
1775 exit_io_context(p);
ab516013 1776bad_fork_cleanup_namespaces:
444f378b 1777 exit_task_namespaces(p);
1da177e4 1778bad_fork_cleanup_mm:
c9f01245 1779 if (p->mm)
1da177e4
LT
1780 mmput(p->mm);
1781bad_fork_cleanup_signal:
4ab6c083 1782 if (!(clone_flags & CLONE_THREAD))
1c5354de 1783 free_signal_struct(p->signal);
1da177e4 1784bad_fork_cleanup_sighand:
a7e5328a 1785 __cleanup_sighand(p->sighand);
1da177e4
LT
1786bad_fork_cleanup_fs:
1787 exit_fs(p); /* blocking */
1788bad_fork_cleanup_files:
1789 exit_files(p); /* blocking */
1790bad_fork_cleanup_semundo:
1791 exit_sem(p);
1792bad_fork_cleanup_audit:
1793 audit_free(p);
6c72e350 1794bad_fork_cleanup_perf:
cdd6c482 1795 perf_event_free_task(p);
6c72e350 1796bad_fork_cleanup_policy:
1da177e4 1797#ifdef CONFIG_NUMA
f0be3d32 1798 mpol_put(p->mempolicy);
e8604cb4 1799bad_fork_cleanup_threadgroup_lock:
1da177e4 1800#endif
35df17c5 1801 delayacct_tsk_free(p);
1da177e4 1802bad_fork_cleanup_count:
d84f4f99 1803 atomic_dec(&p->cred->user->processes);
e0e81739 1804 exit_creds(p);
1da177e4 1805bad_fork_free:
68f24b08 1806 put_task_stack(p);
1da177e4 1807 free_task(p);
fe7d37d1
ON
1808fork_out:
1809 return ERR_PTR(retval);
1da177e4
LT
1810}
1811
f106eee1
ON
1812static inline void init_idle_pids(struct pid_link *links)
1813{
1814 enum pid_type type;
1815
1816 for (type = PIDTYPE_PID; type < PIDTYPE_MAX; ++type) {
1817 INIT_HLIST_NODE(&links[type].node); /* not really needed */
1818 links[type].pid = &init_struct_pid;
1819 }
1820}
1821
0db0628d 1822struct task_struct *fork_idle(int cpu)
1da177e4 1823{
36c8b586 1824 struct task_struct *task;
725fc629
AK
1825 task = copy_process(CLONE_VM, 0, 0, NULL, &init_struct_pid, 0, 0,
1826 cpu_to_node(cpu));
f106eee1
ON
1827 if (!IS_ERR(task)) {
1828 init_idle_pids(task->pids);
753ca4f3 1829 init_idle(task, cpu);
f106eee1 1830 }
73b9ebfe 1831
1da177e4
LT
1832 return task;
1833}
1834
1da177e4
LT
1835/*
1836 * Ok, this is the main fork-routine.
1837 *
1838 * It copies the process, and if successful kick-starts
1839 * it and waits for it to finish using the VM if required.
1840 */
3033f14a 1841long _do_fork(unsigned long clone_flags,
1da177e4 1842 unsigned long stack_start,
1da177e4
LT
1843 unsigned long stack_size,
1844 int __user *parent_tidptr,
3033f14a
JT
1845 int __user *child_tidptr,
1846 unsigned long tls)
1da177e4
LT
1847{
1848 struct task_struct *p;
1849 int trace = 0;
92476d7f 1850 long nr;
1da177e4 1851
09a05394 1852 /*
4b9d33e6
TH
1853 * Determine whether and which event to report to ptracer. When
1854 * called from kernel_thread or CLONE_UNTRACED is explicitly
1855 * requested, no event is reported; otherwise, report if the event
1856 * for the type of forking is enabled.
09a05394 1857 */
e80d6661 1858 if (!(clone_flags & CLONE_UNTRACED)) {
4b9d33e6
TH
1859 if (clone_flags & CLONE_VFORK)
1860 trace = PTRACE_EVENT_VFORK;
1861 else if ((clone_flags & CSIGNAL) != SIGCHLD)
1862 trace = PTRACE_EVENT_CLONE;
1863 else
1864 trace = PTRACE_EVENT_FORK;
1865
1866 if (likely(!ptrace_event_enabled(current, trace)))
1867 trace = 0;
1868 }
1da177e4 1869
62e791c1 1870 p = copy_process(clone_flags, stack_start, stack_size,
725fc629 1871 child_tidptr, NULL, trace, tls, NUMA_NO_NODE);
1da177e4
LT
1872 /*
1873 * Do this prior waking up the new thread - the thread pointer
1874 * might get invalid after that point, if the thread exits quickly.
1875 */
1876 if (!IS_ERR(p)) {
1877 struct completion vfork;
4e52365f 1878 struct pid *pid;
1da177e4 1879
0a16b607
MD
1880 trace_sched_process_fork(current, p);
1881
4e52365f
MD
1882 pid = get_task_pid(p, PIDTYPE_PID);
1883 nr = pid_vnr(pid);
30e49c26
PE
1884
1885 if (clone_flags & CLONE_PARENT_SETTID)
1886 put_user(nr, parent_tidptr);
a6f5e063 1887
1da177e4
LT
1888 if (clone_flags & CLONE_VFORK) {
1889 p->vfork_done = &vfork;
1890 init_completion(&vfork);
d68b46fe 1891 get_task_struct(p);
1da177e4
LT
1892 }
1893
3e51e3ed 1894 wake_up_new_task(p);
1da177e4 1895
4b9d33e6
TH
1896 /* forking complete and child started to run, tell ptracer */
1897 if (unlikely(trace))
4e52365f 1898 ptrace_event_pid(trace, pid);
09a05394 1899
1da177e4 1900 if (clone_flags & CLONE_VFORK) {
d68b46fe 1901 if (!wait_for_vfork_done(p, &vfork))
4e52365f 1902 ptrace_event_pid(PTRACE_EVENT_VFORK_DONE, pid);
1da177e4 1903 }
4e52365f
MD
1904
1905 put_pid(pid);
1da177e4 1906 } else {
92476d7f 1907 nr = PTR_ERR(p);
1da177e4 1908 }
92476d7f 1909 return nr;
1da177e4
LT
1910}
1911
3033f14a
JT
1912#ifndef CONFIG_HAVE_COPY_THREAD_TLS
1913/* For compatibility with architectures that call do_fork directly rather than
1914 * using the syscall entry points below. */
1915long do_fork(unsigned long clone_flags,
1916 unsigned long stack_start,
1917 unsigned long stack_size,
1918 int __user *parent_tidptr,
1919 int __user *child_tidptr)
1920{
1921 return _do_fork(clone_flags, stack_start, stack_size,
1922 parent_tidptr, child_tidptr, 0);
1923}
1924#endif
1925
2aa3a7f8
AV
1926/*
1927 * Create a kernel thread.
1928 */
1929pid_t kernel_thread(int (*fn)(void *), void *arg, unsigned long flags)
1930{
3033f14a
JT
1931 return _do_fork(flags|CLONE_VM|CLONE_UNTRACED, (unsigned long)fn,
1932 (unsigned long)arg, NULL, NULL, 0);
2aa3a7f8 1933}
2aa3a7f8 1934
d2125043
AV
1935#ifdef __ARCH_WANT_SYS_FORK
1936SYSCALL_DEFINE0(fork)
1937{
1938#ifdef CONFIG_MMU
3033f14a 1939 return _do_fork(SIGCHLD, 0, 0, NULL, NULL, 0);
d2125043
AV
1940#else
1941 /* can not support in nommu mode */
5d59e182 1942 return -EINVAL;
d2125043
AV
1943#endif
1944}
1945#endif
1946
1947#ifdef __ARCH_WANT_SYS_VFORK
1948SYSCALL_DEFINE0(vfork)
1949{
3033f14a
JT
1950 return _do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, 0,
1951 0, NULL, NULL, 0);
d2125043
AV
1952}
1953#endif
1954
1955#ifdef __ARCH_WANT_SYS_CLONE
1956#ifdef CONFIG_CLONE_BACKWARDS
1957SYSCALL_DEFINE5(clone, unsigned long, clone_flags, unsigned long, newsp,
1958 int __user *, parent_tidptr,
3033f14a 1959 unsigned long, tls,
d2125043
AV
1960 int __user *, child_tidptr)
1961#elif defined(CONFIG_CLONE_BACKWARDS2)
1962SYSCALL_DEFINE5(clone, unsigned long, newsp, unsigned long, clone_flags,
1963 int __user *, parent_tidptr,
1964 int __user *, child_tidptr,
3033f14a 1965 unsigned long, tls)
dfa9771a
MS
1966#elif defined(CONFIG_CLONE_BACKWARDS3)
1967SYSCALL_DEFINE6(clone, unsigned long, clone_flags, unsigned long, newsp,
1968 int, stack_size,
1969 int __user *, parent_tidptr,
1970 int __user *, child_tidptr,
3033f14a 1971 unsigned long, tls)
d2125043
AV
1972#else
1973SYSCALL_DEFINE5(clone, unsigned long, clone_flags, unsigned long, newsp,
1974 int __user *, parent_tidptr,
1975 int __user *, child_tidptr,
3033f14a 1976 unsigned long, tls)
d2125043
AV
1977#endif
1978{
3033f14a 1979 return _do_fork(clone_flags, newsp, 0, parent_tidptr, child_tidptr, tls);
d2125043
AV
1980}
1981#endif
1982
5fd63b30
RT
1983#ifndef ARCH_MIN_MMSTRUCT_ALIGN
1984#define ARCH_MIN_MMSTRUCT_ALIGN 0
1985#endif
1986
51cc5068 1987static void sighand_ctor(void *data)
aa1757f9
ON
1988{
1989 struct sighand_struct *sighand = data;
1990
a35afb83 1991 spin_lock_init(&sighand->siglock);
b8fceee1 1992 init_waitqueue_head(&sighand->signalfd_wqh);
aa1757f9
ON
1993}
1994
1da177e4
LT
1995void __init proc_caches_init(void)
1996{
1997 sighand_cachep = kmem_cache_create("sighand_cache",
1998 sizeof(struct sighand_struct), 0,
2dff4405 1999 SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_DESTROY_BY_RCU|
5d097056 2000 SLAB_NOTRACK|SLAB_ACCOUNT, sighand_ctor);
1da177e4
LT
2001 signal_cachep = kmem_cache_create("signal_cache",
2002 sizeof(struct signal_struct), 0,
5d097056
VD
2003 SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_NOTRACK|SLAB_ACCOUNT,
2004 NULL);
20c2df83 2005 files_cachep = kmem_cache_create("files_cache",
1da177e4 2006 sizeof(struct files_struct), 0,
5d097056
VD
2007 SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_NOTRACK|SLAB_ACCOUNT,
2008 NULL);
20c2df83 2009 fs_cachep = kmem_cache_create("fs_cache",
1da177e4 2010 sizeof(struct fs_struct), 0,
5d097056
VD
2011 SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_NOTRACK|SLAB_ACCOUNT,
2012 NULL);
6345d24d
LT
2013 /*
2014 * FIXME! The "sizeof(struct mm_struct)" currently includes the
2015 * whole struct cpumask for the OFFSTACK case. We could change
2016 * this to *only* allocate as much of it as required by the
2017 * maximum number of CPU's we can ever have. The cpumask_allocation
2018 * is at the end of the structure, exactly for that reason.
2019 */
1da177e4 2020 mm_cachep = kmem_cache_create("mm_struct",
5fd63b30 2021 sizeof(struct mm_struct), ARCH_MIN_MMSTRUCT_ALIGN,
5d097056
VD
2022 SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_NOTRACK|SLAB_ACCOUNT,
2023 NULL);
2024 vm_area_cachep = KMEM_CACHE(vm_area_struct, SLAB_PANIC|SLAB_ACCOUNT);
8feae131 2025 mmap_init();
66577193 2026 nsproxy_cache_init();
1da177e4 2027}
cf2e340f 2028
cf2e340f 2029/*
9bfb23fc 2030 * Check constraints on flags passed to the unshare system call.
cf2e340f 2031 */
9bfb23fc 2032static int check_unshare_flags(unsigned long unshare_flags)
cf2e340f 2033{
9bfb23fc
ON
2034 if (unshare_flags & ~(CLONE_THREAD|CLONE_FS|CLONE_NEWNS|CLONE_SIGHAND|
2035 CLONE_VM|CLONE_FILES|CLONE_SYSVSEM|
50804fe3 2036 CLONE_NEWUTS|CLONE_NEWIPC|CLONE_NEWNET|
a79a908f 2037 CLONE_NEWUSER|CLONE_NEWPID|CLONE_NEWCGROUP))
9bfb23fc 2038 return -EINVAL;
cf2e340f 2039 /*
12c641ab
EB
2040 * Not implemented, but pretend it works if there is nothing
2041 * to unshare. Note that unsharing the address space or the
2042 * signal handlers also need to unshare the signal queues (aka
2043 * CLONE_THREAD).
cf2e340f 2044 */
9bfb23fc 2045 if (unshare_flags & (CLONE_THREAD | CLONE_SIGHAND | CLONE_VM)) {
12c641ab
EB
2046 if (!thread_group_empty(current))
2047 return -EINVAL;
2048 }
2049 if (unshare_flags & (CLONE_SIGHAND | CLONE_VM)) {
2050 if (atomic_read(&current->sighand->count) > 1)
2051 return -EINVAL;
2052 }
2053 if (unshare_flags & CLONE_VM) {
2054 if (!current_is_single_threaded())
9bfb23fc
ON
2055 return -EINVAL;
2056 }
cf2e340f
JD
2057
2058 return 0;
2059}
2060
2061/*
99d1419d 2062 * Unshare the filesystem structure if it is being shared
cf2e340f
JD
2063 */
2064static int unshare_fs(unsigned long unshare_flags, struct fs_struct **new_fsp)
2065{
2066 struct fs_struct *fs = current->fs;
2067
498052bb
AV
2068 if (!(unshare_flags & CLONE_FS) || !fs)
2069 return 0;
2070
2071 /* don't need lock here; in the worst case we'll do useless copy */
2072 if (fs->users == 1)
2073 return 0;
2074
2075 *new_fsp = copy_fs_struct(fs);
2076 if (!*new_fsp)
2077 return -ENOMEM;
cf2e340f
JD
2078
2079 return 0;
2080}
2081
cf2e340f 2082/*
a016f338 2083 * Unshare file descriptor table if it is being shared
cf2e340f
JD
2084 */
2085static int unshare_fd(unsigned long unshare_flags, struct files_struct **new_fdp)
2086{
2087 struct files_struct *fd = current->files;
a016f338 2088 int error = 0;
cf2e340f
JD
2089
2090 if ((unshare_flags & CLONE_FILES) &&
a016f338
JD
2091 (fd && atomic_read(&fd->count) > 1)) {
2092 *new_fdp = dup_fd(fd, &error);
2093 if (!*new_fdp)
2094 return error;
2095 }
cf2e340f
JD
2096
2097 return 0;
2098}
2099
cf2e340f
JD
2100/*
2101 * unshare allows a process to 'unshare' part of the process
2102 * context which was originally shared using clone. copy_*
2103 * functions used by do_fork() cannot be used here directly
2104 * because they modify an inactive task_struct that is being
2105 * constructed. Here we are modifying the current, active,
2106 * task_struct.
2107 */
6559eed8 2108SYSCALL_DEFINE1(unshare, unsigned long, unshare_flags)
cf2e340f 2109{
cf2e340f 2110 struct fs_struct *fs, *new_fs = NULL;
cf2e340f 2111 struct files_struct *fd, *new_fd = NULL;
b2e0d987 2112 struct cred *new_cred = NULL;
cf7b708c 2113 struct nsproxy *new_nsproxy = NULL;
9edff4ab 2114 int do_sysvsem = 0;
9bfb23fc 2115 int err;
cf2e340f 2116
b2e0d987 2117 /*
faf00da5
EB
2118 * If unsharing a user namespace must also unshare the thread group
2119 * and unshare the filesystem root and working directories.
b2e0d987
EB
2120 */
2121 if (unshare_flags & CLONE_NEWUSER)
e66eded8 2122 unshare_flags |= CLONE_THREAD | CLONE_FS;
50804fe3
EB
2123 /*
2124 * If unsharing vm, must also unshare signal handlers.
2125 */
2126 if (unshare_flags & CLONE_VM)
2127 unshare_flags |= CLONE_SIGHAND;
12c641ab
EB
2128 /*
2129 * If unsharing a signal handlers, must also unshare the signal queues.
2130 */
2131 if (unshare_flags & CLONE_SIGHAND)
2132 unshare_flags |= CLONE_THREAD;
9bfb23fc
ON
2133 /*
2134 * If unsharing namespace, must also unshare filesystem information.
2135 */
2136 if (unshare_flags & CLONE_NEWNS)
2137 unshare_flags |= CLONE_FS;
50804fe3
EB
2138
2139 err = check_unshare_flags(unshare_flags);
2140 if (err)
2141 goto bad_unshare_out;
6013f67f
MS
2142 /*
2143 * CLONE_NEWIPC must also detach from the undolist: after switching
2144 * to a new ipc namespace, the semaphore arrays from the old
2145 * namespace are unreachable.
2146 */
2147 if (unshare_flags & (CLONE_NEWIPC|CLONE_SYSVSEM))
9edff4ab 2148 do_sysvsem = 1;
fb0a685c
DRO
2149 err = unshare_fs(unshare_flags, &new_fs);
2150 if (err)
9bfb23fc 2151 goto bad_unshare_out;
fb0a685c
DRO
2152 err = unshare_fd(unshare_flags, &new_fd);
2153 if (err)
9bfb23fc 2154 goto bad_unshare_cleanup_fs;
b2e0d987 2155 err = unshare_userns(unshare_flags, &new_cred);
fb0a685c 2156 if (err)
9edff4ab 2157 goto bad_unshare_cleanup_fd;
b2e0d987
EB
2158 err = unshare_nsproxy_namespaces(unshare_flags, &new_nsproxy,
2159 new_cred, new_fs);
2160 if (err)
2161 goto bad_unshare_cleanup_cred;
c0b2fc31 2162
b2e0d987 2163 if (new_fs || new_fd || do_sysvsem || new_cred || new_nsproxy) {
9edff4ab
MS
2164 if (do_sysvsem) {
2165 /*
2166 * CLONE_SYSVSEM is equivalent to sys_exit().
2167 */
2168 exit_sem(current);
2169 }
ab602f79
JM
2170 if (unshare_flags & CLONE_NEWIPC) {
2171 /* Orphan segments in old ns (see sem above). */
2172 exit_shm(current);
2173 shm_init_task(current);
2174 }
ab516013 2175
6f977e6b 2176 if (new_nsproxy)
cf7b708c 2177 switch_task_namespaces(current, new_nsproxy);
cf2e340f 2178
cf7b708c
PE
2179 task_lock(current);
2180
cf2e340f
JD
2181 if (new_fs) {
2182 fs = current->fs;
2a4419b5 2183 spin_lock(&fs->lock);
cf2e340f 2184 current->fs = new_fs;
498052bb
AV
2185 if (--fs->users)
2186 new_fs = NULL;
2187 else
2188 new_fs = fs;
2a4419b5 2189 spin_unlock(&fs->lock);
cf2e340f
JD
2190 }
2191
cf2e340f
JD
2192 if (new_fd) {
2193 fd = current->files;
2194 current->files = new_fd;
2195 new_fd = fd;
2196 }
2197
2198 task_unlock(current);
b2e0d987
EB
2199
2200 if (new_cred) {
2201 /* Install the new user namespace */
2202 commit_creds(new_cred);
2203 new_cred = NULL;
2204 }
cf2e340f
JD
2205 }
2206
b2e0d987
EB
2207bad_unshare_cleanup_cred:
2208 if (new_cred)
2209 put_cred(new_cred);
cf2e340f
JD
2210bad_unshare_cleanup_fd:
2211 if (new_fd)
2212 put_files_struct(new_fd);
2213
cf2e340f
JD
2214bad_unshare_cleanup_fs:
2215 if (new_fs)
498052bb 2216 free_fs_struct(new_fs);
cf2e340f 2217
cf2e340f
JD
2218bad_unshare_out:
2219 return err;
2220}
3b125388
AV
2221
2222/*
2223 * Helper to unshare the files of the current task.
2224 * We don't want to expose copy_files internals to
2225 * the exec layer of the kernel.
2226 */
2227
2228int unshare_files(struct files_struct **displaced)
2229{
2230 struct task_struct *task = current;
50704516 2231 struct files_struct *copy = NULL;
3b125388
AV
2232 int error;
2233
2234 error = unshare_fd(CLONE_FILES, &copy);
2235 if (error || !copy) {
2236 *displaced = NULL;
2237 return error;
2238 }
2239 *displaced = task->files;
2240 task_lock(task);
2241 task->files = copy;
2242 task_unlock(task);
2243 return 0;
2244}
16db3d3f
HS
2245
2246int sysctl_max_threads(struct ctl_table *table, int write,
2247 void __user *buffer, size_t *lenp, loff_t *ppos)
2248{
2249 struct ctl_table t;
2250 int ret;
2251 int threads = max_threads;
2252 int min = MIN_THREADS;
2253 int max = MAX_THREADS;
2254
2255 t = *table;
2256 t.data = &threads;
2257 t.extra1 = &min;
2258 t.extra2 = &max;
2259
2260 ret = proc_dointvec_minmax(&t, write, buffer, lenp, ppos);
2261 if (ret || !write)
2262 return ret;
2263
2264 set_max_threads(threads);
2265
2266 return 0;
2267}