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