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