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