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