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