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