1 // SPDX-License-Identifier: GPL-2.0-only
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
15 #include <linux/anon_inodes.h>
16 #include <linux/slab.h>
17 #include <linux/sched/autogroup.h>
18 #include <linux/sched/mm.h>
19 #include <linux/sched/user.h>
20 #include <linux/sched/numa_balancing.h>
21 #include <linux/sched/stat.h>
22 #include <linux/sched/task.h>
23 #include <linux/sched/task_stack.h>
24 #include <linux/sched/cputime.h>
25 #include <linux/sched/ext.h>
26 #include <linux/seq_file.h>
27 #include <linux/rtmutex.h>
28 #include <linux/init.h>
29 #include <linux/unistd.h>
30 #include <linux/module.h>
31 #include <linux/vmalloc.h>
32 #include <linux/completion.h>
33 #include <linux/personality.h>
34 #include <linux/mempolicy.h>
35 #include <linux/sem.h>
36 #include <linux/file.h>
37 #include <linux/fdtable.h>
38 #include <linux/iocontext.h>
39 #include <linux/key.h>
40 #include <linux/kmsan.h>
41 #include <linux/binfmts.h>
42 #include <linux/mman.h>
43 #include <linux/mmu_notifier.h>
44 #include <linux/fs.h>
45 #include <linux/mm.h>
46 #include <linux/mm_inline.h>
47 #include <linux/memblock.h>
48 #include <linux/nsproxy.h>
49 #include <linux/ns/ns_common_types.h>
50 #include <linux/capability.h>
51 #include <linux/cpu.h>
52 #include <linux/cgroup.h>
53 #include <linux/security.h>
54 #include <linux/hugetlb.h>
55 #include <linux/seccomp.h>
56 #include <linux/swap.h>
57 #include <linux/syscalls.h>
58 #include <linux/syscall_user_dispatch.h>
59 #include <linux/jiffies.h>
60 #include <linux/futex.h>
61 #include <linux/compat.h>
62 #include <linux/kthread.h>
63 #include <linux/task_io_accounting_ops.h>
64 #include <linux/rcupdate.h>
65 #include <linux/ptrace.h>
66 #include <linux/mount.h>
67 #include <linux/audit.h>
68 #include <linux/memcontrol.h>
69 #include <linux/ftrace.h>
70 #include <linux/proc_fs.h>
71 #include <linux/profile.h>
72 #include <linux/rmap.h>
73 #include <linux/ksm.h>
74 #include <linux/acct.h>
75 #include <linux/userfaultfd_k.h>
76 #include <linux/tsacct_kern.h>
77 #include <linux/cn_proc.h>
78 #include <linux/freezer.h>
79 #include <linux/delayacct.h>
80 #include <linux/taskstats_kern.h>
81 #include <linux/tty.h>
82 #include <linux/fs_struct.h>
83 #include <linux/magic.h>
84 #include <linux/perf_event.h>
85 #include <linux/posix-timers.h>
86 #include <linux/user-return-notifier.h>
87 #include <linux/oom.h>
88 #include <linux/khugepaged.h>
89 #include <linux/signalfd.h>
90 #include <linux/uprobes.h>
91 #include <linux/aio.h>
92 #include <linux/compiler.h>
93 #include <linux/sysctl.h>
94 #include <linux/kcov.h>
95 #include <linux/livepatch.h>
96 #include <linux/thread_info.h>
97 #include <linux/kstack_erase.h>
98 #include <linux/kasan.h>
99 #include <linux/randomize_kstack.h>
100 #include <linux/scs.h>
101 #include <linux/io_uring.h>
102 #include <linux/io_uring_types.h>
103 #include <linux/bpf.h>
104 #include <linux/stackprotector.h>
105 #include <linux/user_events.h>
106 #include <linux/iommu.h>
107 #include <linux/rseq.h>
108 #include <uapi/linux/pidfd.h>
109 #include <linux/pidfs.h>
110 #include <linux/tick.h>
111 #include <linux/unwind_deferred.h>
112 #include <linux/pgalloc.h>
113 #include <linux/uaccess.h>
114
115 #include <asm/mmu_context.h>
116 #include <asm/cacheflush.h>
117 #include <asm/tlbflush.h>
118
119 /* For dup_mmap(). */
120 #include "../mm/internal.h"
121
122 #include <trace/events/sched.h>
123
124 #define CREATE_TRACE_POINTS
125 #include <trace/events/task.h>
126
127 #include <kunit/visibility.h>
128
129 /*
130 * Minimum number of threads to boot the kernel
131 */
132 #define MIN_THREADS 20
133
134 /*
135 * Maximum number of threads
136 */
137 #define MAX_THREADS FUTEX_TID_MASK
138
139 /*
140 * Protected counters by write_lock_irq(&tasklist_lock)
141 */
142 unsigned long total_forks; /* Handle normal Linux uptimes. */
143 int nr_threads; /* The idle threads do not count.. */
144
145 static int max_threads; /* tunable limit on nr_threads */
146
147 #define NAMED_ARRAY_INDEX(x) [x] = __stringify(x)
148
149 static const char * const resident_page_types[] = {
150 NAMED_ARRAY_INDEX(MM_FILEPAGES),
151 NAMED_ARRAY_INDEX(MM_ANONPAGES),
152 NAMED_ARRAY_INDEX(MM_SWAPENTS),
153 NAMED_ARRAY_INDEX(MM_SHMEMPAGES),
154 };
155
156 DEFINE_PER_CPU(unsigned long, process_counts) = 0;
157
158 __cacheline_aligned DEFINE_RWLOCK(tasklist_lock); /* outer */
159
160 #ifdef CONFIG_PROVE_RCU
lockdep_tasklist_lock_is_held(void)161 int lockdep_tasklist_lock_is_held(void)
162 {
163 return lockdep_is_held(&tasklist_lock);
164 }
165 EXPORT_SYMBOL_GPL(lockdep_tasklist_lock_is_held);
166 #endif /* #ifdef CONFIG_PROVE_RCU */
167
nr_processes(void)168 int nr_processes(void)
169 {
170 int cpu;
171 int total = 0;
172
173 for_each_possible_cpu(cpu)
174 total += per_cpu(process_counts, cpu);
175
176 return total;
177 }
178
arch_release_task_struct(struct task_struct * tsk)179 void __weak arch_release_task_struct(struct task_struct *tsk)
180 {
181 }
182
183 static struct kmem_cache *task_struct_cachep;
184
alloc_task_struct_node(int node)185 static inline struct task_struct *alloc_task_struct_node(int node)
186 {
187 return kmem_cache_alloc_node(task_struct_cachep, GFP_KERNEL, node);
188 }
189
free_task_struct(struct task_struct * tsk)190 static inline void free_task_struct(struct task_struct *tsk)
191 {
192 kmem_cache_free(task_struct_cachep, tsk);
193 }
194
195 #ifdef CONFIG_VMAP_STACK
196 /*
197 * vmalloc() is a bit slow, and calling vfree() enough times will force a TLB
198 * flush. Try to minimize the number of calls by caching stacks.
199 */
200 #define NR_CACHED_STACKS 2
201 static DEFINE_PER_CPU(struct vm_struct *, cached_stacks[NR_CACHED_STACKS]);
202 /*
203 * Allocated stacks are cached and later reused by new threads, so memcg
204 * accounting is performed by the code assigning/releasing stacks to tasks.
205 * We need a zeroed memory without __GFP_ACCOUNT.
206 */
207 #define GFP_VMAP_STACK (GFP_KERNEL | __GFP_ZERO)
208
209 struct vm_stack {
210 struct rcu_head rcu;
211 struct vm_struct *stack_vm_area;
212 };
213
alloc_thread_stack_node_from_cache(struct task_struct * tsk,int node)214 static struct vm_struct *alloc_thread_stack_node_from_cache(struct task_struct *tsk, int node)
215 {
216 struct vm_struct *vm_area;
217 unsigned int i;
218
219 /*
220 * If the node has memory, we are guaranteed the stacks are backed by local pages.
221 * Otherwise the pages are arbitrary.
222 *
223 * Note that depending on cpuset it is possible we will get migrated to a different
224 * node immediately after allocating here, so this does *not* guarantee locality for
225 * arbitrary callers.
226 */
227 scoped_guard(preempt) {
228 if (node != NUMA_NO_NODE && numa_node_id() != node)
229 return NULL;
230
231 for (i = 0; i < NR_CACHED_STACKS; i++) {
232 vm_area = this_cpu_xchg(cached_stacks[i], NULL);
233 if (vm_area)
234 return vm_area;
235 }
236 }
237
238 return NULL;
239 }
240
try_release_thread_stack_to_cache(struct vm_struct * vm_area)241 static bool try_release_thread_stack_to_cache(struct vm_struct *vm_area)
242 {
243 unsigned int i;
244 int nid;
245
246 /*
247 * Don't cache stacks if any of the pages don't match the local domain, unless
248 * there is no local memory to begin with.
249 *
250 * Note that lack of local memory does not automatically mean it makes no difference
251 * performance-wise which other domain backs the stack. In this case we are merely
252 * trying to avoid constantly going to vmalloc.
253 */
254 scoped_guard(preempt) {
255 nid = numa_node_id();
256 if (node_state(nid, N_MEMORY)) {
257 for (i = 0; i < vm_area->nr_pages; i++) {
258 struct page *page = vm_area->pages[i];
259 if (page_to_nid(page) != nid)
260 return false;
261 }
262 }
263
264 for (i = 0; i < NR_CACHED_STACKS; i++) {
265 struct vm_struct *tmp = NULL;
266
267 if (this_cpu_try_cmpxchg(cached_stacks[i], &tmp, vm_area))
268 return true;
269 }
270 }
271 return false;
272 }
273
thread_stack_free_rcu(struct rcu_head * rh)274 static void thread_stack_free_rcu(struct rcu_head *rh)
275 {
276 struct vm_stack *vm_stack = container_of(rh, struct vm_stack, rcu);
277 struct vm_struct *vm_area = vm_stack->stack_vm_area;
278
279 if (try_release_thread_stack_to_cache(vm_stack->stack_vm_area))
280 return;
281
282 vfree(vm_area->addr);
283 }
284
thread_stack_delayed_free(struct task_struct * tsk)285 static void thread_stack_delayed_free(struct task_struct *tsk)
286 {
287 struct vm_stack *vm_stack = tsk->stack;
288
289 vm_stack->stack_vm_area = tsk->stack_vm_area;
290 call_rcu(&vm_stack->rcu, thread_stack_free_rcu);
291 }
292
free_vm_stack_cache(unsigned int cpu)293 static int free_vm_stack_cache(unsigned int cpu)
294 {
295 struct vm_struct **cached_vm_stack_areas = per_cpu_ptr(cached_stacks, cpu);
296 int i;
297
298 for (i = 0; i < NR_CACHED_STACKS; i++) {
299 struct vm_struct *vm_area = cached_vm_stack_areas[i];
300
301 if (!vm_area)
302 continue;
303
304 vfree(vm_area->addr);
305 cached_vm_stack_areas[i] = NULL;
306 }
307
308 return 0;
309 }
310
memcg_charge_kernel_stack(struct vm_struct * vm_area)311 static int memcg_charge_kernel_stack(struct vm_struct *vm_area)
312 {
313 int i;
314 int ret;
315 int nr_charged = 0;
316
317 BUG_ON(vm_area->nr_pages != THREAD_SIZE / PAGE_SIZE);
318
319 for (i = 0; i < THREAD_SIZE / PAGE_SIZE; i++) {
320 ret = memcg_kmem_charge_page(vm_area->pages[i], GFP_KERNEL, 0);
321 if (ret)
322 goto err;
323 nr_charged++;
324 }
325 return 0;
326 err:
327 for (i = 0; i < nr_charged; i++)
328 memcg_kmem_uncharge_page(vm_area->pages[i], 0);
329 return ret;
330 }
331
alloc_thread_stack_node(struct task_struct * tsk,int node)332 static int alloc_thread_stack_node(struct task_struct *tsk, int node)
333 {
334 struct vm_struct *vm_area;
335 void *stack;
336
337 vm_area = alloc_thread_stack_node_from_cache(tsk, node);
338 if (vm_area) {
339 if (memcg_charge_kernel_stack(vm_area)) {
340 vfree(vm_area->addr);
341 return -ENOMEM;
342 }
343
344 /* Reset stack metadata. */
345 kasan_unpoison_range(vm_area->addr, THREAD_SIZE);
346
347 stack = kasan_reset_tag(vm_area->addr);
348
349 /* Clear stale pointers from reused stack. */
350 memset(stack, 0, THREAD_SIZE);
351
352 tsk->stack_vm_area = vm_area;
353 tsk->stack = stack;
354 return 0;
355 }
356
357 stack = __vmalloc_node(THREAD_SIZE, THREAD_ALIGN,
358 GFP_VMAP_STACK,
359 node, __builtin_return_address(0));
360 if (!stack)
361 return -ENOMEM;
362
363 vm_area = find_vm_area(stack);
364 if (memcg_charge_kernel_stack(vm_area)) {
365 vfree(stack);
366 return -ENOMEM;
367 }
368 /*
369 * We can't call find_vm_area() in interrupt context, and
370 * free_thread_stack() can be called in interrupt context,
371 * so cache the vm_struct.
372 */
373 tsk->stack_vm_area = vm_area;
374 stack = kasan_reset_tag(stack);
375 tsk->stack = stack;
376 return 0;
377 }
378
free_thread_stack(struct task_struct * tsk)379 static void free_thread_stack(struct task_struct *tsk)
380 {
381 if (!try_release_thread_stack_to_cache(tsk->stack_vm_area))
382 thread_stack_delayed_free(tsk);
383
384 tsk->stack = NULL;
385 tsk->stack_vm_area = NULL;
386 }
387
388 #else /* !CONFIG_VMAP_STACK */
389
390 /*
391 * Allocate pages if THREAD_SIZE is >= PAGE_SIZE, otherwise use a
392 * kmemcache based allocator.
393 */
394 #if THREAD_SIZE >= PAGE_SIZE
395
thread_stack_free_rcu(struct rcu_head * rh)396 static void thread_stack_free_rcu(struct rcu_head *rh)
397 {
398 __free_pages(virt_to_page(rh), THREAD_SIZE_ORDER);
399 }
400
thread_stack_delayed_free(struct task_struct * tsk)401 static void thread_stack_delayed_free(struct task_struct *tsk)
402 {
403 struct rcu_head *rh = tsk->stack;
404
405 call_rcu(rh, thread_stack_free_rcu);
406 }
407
alloc_thread_stack_node(struct task_struct * tsk,int node)408 static int alloc_thread_stack_node(struct task_struct *tsk, int node)
409 {
410 struct page *page = alloc_pages_node(node, THREADINFO_GFP,
411 THREAD_SIZE_ORDER);
412
413 if (likely(page)) {
414 tsk->stack = kasan_reset_tag(page_address(page));
415 return 0;
416 }
417 return -ENOMEM;
418 }
419
free_thread_stack(struct task_struct * tsk)420 static void free_thread_stack(struct task_struct *tsk)
421 {
422 thread_stack_delayed_free(tsk);
423 tsk->stack = NULL;
424 }
425
426 #else /* !(THREAD_SIZE >= PAGE_SIZE) */
427
428 static struct kmem_cache *thread_stack_cache;
429
thread_stack_free_rcu(struct rcu_head * rh)430 static void thread_stack_free_rcu(struct rcu_head *rh)
431 {
432 kmem_cache_free(thread_stack_cache, rh);
433 }
434
thread_stack_delayed_free(struct task_struct * tsk)435 static void thread_stack_delayed_free(struct task_struct *tsk)
436 {
437 struct rcu_head *rh = tsk->stack;
438
439 call_rcu(rh, thread_stack_free_rcu);
440 }
441
alloc_thread_stack_node(struct task_struct * tsk,int node)442 static int alloc_thread_stack_node(struct task_struct *tsk, int node)
443 {
444 unsigned long *stack;
445 stack = kmem_cache_alloc_node(thread_stack_cache, THREADINFO_GFP, node);
446 stack = kasan_reset_tag(stack);
447 tsk->stack = stack;
448 return stack ? 0 : -ENOMEM;
449 }
450
free_thread_stack(struct task_struct * tsk)451 static void free_thread_stack(struct task_struct *tsk)
452 {
453 thread_stack_delayed_free(tsk);
454 tsk->stack = NULL;
455 }
456
thread_stack_cache_init(void)457 void thread_stack_cache_init(void)
458 {
459 thread_stack_cache = kmem_cache_create_usercopy("thread_stack",
460 THREAD_SIZE, THREAD_SIZE, 0, 0,
461 THREAD_SIZE, NULL);
462 BUG_ON(thread_stack_cache == NULL);
463 }
464
465 #endif /* THREAD_SIZE >= PAGE_SIZE */
466 #endif /* CONFIG_VMAP_STACK */
467
468 /* SLAB cache for signal_struct structures (tsk->signal) */
469 static struct kmem_cache *signal_cachep;
470
471 /* SLAB cache for sighand_struct structures (tsk->sighand) */
472 struct kmem_cache *sighand_cachep;
473
474 /* SLAB cache for files_struct structures (tsk->files) */
475 struct kmem_cache *files_cachep;
476
477 /* SLAB cache for fs_struct structures (tsk->fs) */
478 struct kmem_cache *fs_cachep;
479
480 /* SLAB cache for mm_struct structures (tsk->mm) */
481 static struct kmem_cache *mm_cachep;
482
account_kernel_stack(struct task_struct * tsk,int account)483 static void account_kernel_stack(struct task_struct *tsk, int account)
484 {
485 if (IS_ENABLED(CONFIG_VMAP_STACK)) {
486 struct vm_struct *vm_area = task_stack_vm_area(tsk);
487 int i;
488
489 for (i = 0; i < THREAD_SIZE / PAGE_SIZE; i++)
490 mod_lruvec_page_state(vm_area->pages[i], NR_KERNEL_STACK_KB,
491 account * (PAGE_SIZE / 1024));
492 } else {
493 void *stack = task_stack_page(tsk);
494
495 /* All stack pages are in the same node. */
496 mod_lruvec_kmem_state(stack, NR_KERNEL_STACK_KB,
497 account * (THREAD_SIZE / 1024));
498 }
499 }
500
exit_task_stack_account(struct task_struct * tsk)501 void exit_task_stack_account(struct task_struct *tsk)
502 {
503 account_kernel_stack(tsk, -1);
504
505 if (IS_ENABLED(CONFIG_VMAP_STACK)) {
506 struct vm_struct *vm_area;
507 int i;
508
509 vm_area = task_stack_vm_area(tsk);
510 for (i = 0; i < THREAD_SIZE / PAGE_SIZE; i++)
511 memcg_kmem_uncharge_page(vm_area->pages[i], 0);
512 }
513 }
514
release_task_stack(struct task_struct * tsk)515 static void release_task_stack(struct task_struct *tsk)
516 {
517 if (WARN_ON(READ_ONCE(tsk->__state) != TASK_DEAD))
518 return; /* Better to leak the stack than to free prematurely */
519
520 free_thread_stack(tsk);
521 }
522
523 #ifdef CONFIG_THREAD_INFO_IN_TASK
put_task_stack(struct task_struct * tsk)524 void put_task_stack(struct task_struct *tsk)
525 {
526 if (refcount_dec_and_test(&tsk->stack_refcount))
527 release_task_stack(tsk);
528 }
529 #endif
530
free_task(struct task_struct * tsk)531 void free_task(struct task_struct *tsk)
532 {
533 #ifdef CONFIG_SECCOMP
534 WARN_ON_ONCE(tsk->seccomp.filter);
535 #endif
536 release_user_cpus_ptr(tsk);
537 scs_release(tsk);
538
539 #ifndef CONFIG_THREAD_INFO_IN_TASK
540 /*
541 * The task is finally done with both the stack and thread_info,
542 * so free both.
543 */
544 release_task_stack(tsk);
545 #else
546 /*
547 * If the task had a separate stack allocation, it should be gone
548 * by now.
549 */
550 WARN_ON_ONCE(refcount_read(&tsk->stack_refcount) != 0);
551 #endif
552 rt_mutex_debug_task_free(tsk);
553 ftrace_graph_exit_task(tsk);
554 arch_release_task_struct(tsk);
555 if (tsk->flags & PF_KTHREAD)
556 free_kthread_struct(tsk);
557 bpf_task_storage_free(tsk);
558 free_task_struct(tsk);
559 }
560 EXPORT_SYMBOL(free_task);
561
dup_mm_exe_file(struct mm_struct * mm,struct mm_struct * oldmm)562 void dup_mm_exe_file(struct mm_struct *mm, struct mm_struct *oldmm)
563 {
564 struct file *exe_file;
565
566 exe_file = get_mm_exe_file(oldmm);
567 RCU_INIT_POINTER(mm->exe_file, exe_file);
568 /*
569 * We depend on the oldmm having properly denied write access to the
570 * exe_file already.
571 */
572 if (exe_file && exe_file_deny_write_access(exe_file))
573 pr_warn_once("exe_file_deny_write_access() failed in %s\n", __func__);
574 }
575
576 #ifdef CONFIG_MMU
mm_alloc_pgd(struct mm_struct * mm)577 static inline int mm_alloc_pgd(struct mm_struct *mm)
578 {
579 mm->pgd = pgd_alloc(mm);
580 if (unlikely(!mm->pgd))
581 return -ENOMEM;
582 return 0;
583 }
584
mm_free_pgd(struct mm_struct * mm)585 static inline void mm_free_pgd(struct mm_struct *mm)
586 {
587 pgd_free(mm, mm->pgd);
588 }
589 #else
590 #define mm_alloc_pgd(mm) (0)
591 #define mm_free_pgd(mm)
592 #endif /* CONFIG_MMU */
593
594 #ifdef CONFIG_MM_ID
595 static DEFINE_IDA(mm_ida);
596
mm_alloc_id(struct mm_struct * mm)597 static inline int mm_alloc_id(struct mm_struct *mm)
598 {
599 int ret;
600
601 ret = ida_alloc_range(&mm_ida, MM_ID_MIN, MM_ID_MAX, GFP_KERNEL);
602 if (ret < 0)
603 return ret;
604 mm->mm_id = ret;
605 return 0;
606 }
607
mm_free_id(struct mm_struct * mm)608 static inline void mm_free_id(struct mm_struct *mm)
609 {
610 const mm_id_t id = mm->mm_id;
611
612 mm->mm_id = MM_ID_DUMMY;
613 if (id == MM_ID_DUMMY)
614 return;
615 if (WARN_ON_ONCE(id < MM_ID_MIN || id > MM_ID_MAX))
616 return;
617 ida_free(&mm_ida, id);
618 }
619 #else /* !CONFIG_MM_ID */
mm_alloc_id(struct mm_struct * mm)620 static inline int mm_alloc_id(struct mm_struct *mm) { return 0; }
mm_free_id(struct mm_struct * mm)621 static inline void mm_free_id(struct mm_struct *mm) {}
622 #endif /* CONFIG_MM_ID */
623
check_mm(struct mm_struct * mm)624 static void check_mm(struct mm_struct *mm)
625 {
626 int i;
627
628 BUILD_BUG_ON_MSG(ARRAY_SIZE(resident_page_types) != NR_MM_COUNTERS,
629 "Please make sure 'struct resident_page_types[]' is updated as well");
630
631 for (i = 0; i < NR_MM_COUNTERS; i++) {
632 long x = percpu_counter_sum(&mm->rss_stat[i]);
633
634 if (unlikely(x)) {
635 pr_alert("BUG: Bad rss-counter state mm:%p type:%s val:%ld Comm:%s Pid:%d\n",
636 mm, resident_page_types[i], x,
637 current->comm,
638 task_pid_nr(current));
639 }
640 }
641
642 if (mm_pgtables_bytes(mm))
643 pr_alert("BUG: non-zero pgtables_bytes on freeing mm: %ld\n",
644 mm_pgtables_bytes(mm));
645
646 #if defined(CONFIG_TRANSPARENT_HUGEPAGE) && !defined(CONFIG_SPLIT_PMD_PTLOCKS)
647 VM_BUG_ON_MM(mm->pmd_huge_pte, mm);
648 #endif
649 }
650
651 #define allocate_mm() (kmem_cache_alloc(mm_cachep, GFP_KERNEL))
652 #define free_mm(mm) (kmem_cache_free(mm_cachep, (mm)))
653
do_check_lazy_tlb(void * arg)654 static void do_check_lazy_tlb(void *arg)
655 {
656 struct mm_struct *mm = arg;
657
658 WARN_ON_ONCE(current->active_mm == mm);
659 }
660
do_shoot_lazy_tlb(void * arg)661 static void do_shoot_lazy_tlb(void *arg)
662 {
663 struct mm_struct *mm = arg;
664
665 if (current->active_mm == mm) {
666 WARN_ON_ONCE(current->mm);
667 current->active_mm = &init_mm;
668 switch_mm(mm, &init_mm, current);
669 }
670 }
671
cleanup_lazy_tlbs(struct mm_struct * mm)672 static void cleanup_lazy_tlbs(struct mm_struct *mm)
673 {
674 if (!IS_ENABLED(CONFIG_MMU_LAZY_TLB_SHOOTDOWN)) {
675 /*
676 * In this case, lazy tlb mms are refounted and would not reach
677 * __mmdrop until all CPUs have switched away and mmdrop()ed.
678 */
679 return;
680 }
681
682 /*
683 * Lazy mm shootdown does not refcount "lazy tlb mm" usage, rather it
684 * requires lazy mm users to switch to another mm when the refcount
685 * drops to zero, before the mm is freed. This requires IPIs here to
686 * switch kernel threads to init_mm.
687 *
688 * archs that use IPIs to flush TLBs can piggy-back that lazy tlb mm
689 * switch with the final userspace teardown TLB flush which leaves the
690 * mm lazy on this CPU but no others, reducing the need for additional
691 * IPIs here. There are cases where a final IPI is still required here,
692 * such as the final mmdrop being performed on a different CPU than the
693 * one exiting, or kernel threads using the mm when userspace exits.
694 *
695 * IPI overheads have not found to be expensive, but they could be
696 * reduced in a number of possible ways, for example (roughly
697 * increasing order of complexity):
698 * - The last lazy reference created by exit_mm() could instead switch
699 * to init_mm, however it's probable this will run on the same CPU
700 * immediately afterwards, so this may not reduce IPIs much.
701 * - A batch of mms requiring IPIs could be gathered and freed at once.
702 * - CPUs store active_mm where it can be remotely checked without a
703 * lock, to filter out false-positives in the cpumask.
704 * - After mm_users or mm_count reaches zero, switching away from the
705 * mm could clear mm_cpumask to reduce some IPIs, perhaps together
706 * with some batching or delaying of the final IPIs.
707 * - A delayed freeing and RCU-like quiescing sequence based on mm
708 * switching to avoid IPIs completely.
709 */
710 on_each_cpu_mask(mm_cpumask(mm), do_shoot_lazy_tlb, (void *)mm, 1);
711 if (IS_ENABLED(CONFIG_DEBUG_VM_SHOOT_LAZIES))
712 on_each_cpu(do_check_lazy_tlb, (void *)mm, 1);
713 }
714
715 /*
716 * Called when the last reference to the mm
717 * is dropped: either by a lazy thread or by
718 * mmput. Free the page directory and the mm.
719 */
__mmdrop(struct mm_struct * mm)720 void __mmdrop(struct mm_struct *mm)
721 {
722 BUG_ON(mm == &init_mm);
723 WARN_ON_ONCE(mm == current->mm);
724
725 /* Ensure no CPUs are using this as their lazy tlb mm */
726 cleanup_lazy_tlbs(mm);
727
728 WARN_ON_ONCE(mm == current->active_mm);
729 mm_free_pgd(mm);
730 mm_free_id(mm);
731 destroy_context(mm);
732 mmu_notifier_subscriptions_destroy(mm);
733 check_mm(mm);
734 put_user_ns(mm->user_ns);
735 mm_pasid_drop(mm);
736 mm_destroy_cid(mm);
737 percpu_counter_destroy_many(mm->rss_stat, NR_MM_COUNTERS);
738
739 free_mm(mm);
740 }
741 EXPORT_SYMBOL_GPL(__mmdrop);
742
mmdrop_async_fn(struct work_struct * work)743 static void mmdrop_async_fn(struct work_struct *work)
744 {
745 struct mm_struct *mm;
746
747 mm = container_of(work, struct mm_struct, async_put_work);
748 __mmdrop(mm);
749 }
750
mmdrop_async(struct mm_struct * mm)751 static void mmdrop_async(struct mm_struct *mm)
752 {
753 if (unlikely(atomic_dec_and_test(&mm->mm_count))) {
754 INIT_WORK(&mm->async_put_work, mmdrop_async_fn);
755 schedule_work(&mm->async_put_work);
756 }
757 }
758
free_signal_struct(struct signal_struct * sig)759 static inline void free_signal_struct(struct signal_struct *sig)
760 {
761 taskstats_tgid_free(sig);
762 sched_autogroup_exit(sig);
763 /*
764 * __mmdrop is not safe to call from softirq context on x86 due to
765 * pgd_dtor so postpone it to the async context
766 */
767 if (sig->oom_mm)
768 mmdrop_async(sig->oom_mm);
769 kmem_cache_free(signal_cachep, sig);
770 }
771
put_signal_struct(struct signal_struct * sig)772 static inline void put_signal_struct(struct signal_struct *sig)
773 {
774 if (refcount_dec_and_test(&sig->sigcnt))
775 free_signal_struct(sig);
776 }
777
__put_task_struct(struct task_struct * tsk)778 void __put_task_struct(struct task_struct *tsk)
779 {
780 WARN_ON(!tsk->exit_state);
781 WARN_ON(refcount_read(&tsk->usage));
782 WARN_ON(tsk == current);
783
784 unwind_task_free(tsk);
785 io_uring_free(tsk);
786 cgroup_task_free(tsk);
787 task_numa_free(tsk, true);
788 security_task_free(tsk);
789 exit_creds(tsk);
790 delayacct_tsk_free(tsk);
791 put_signal_struct(tsk->signal);
792 sched_core_free(tsk);
793 free_task(tsk);
794 }
795 EXPORT_SYMBOL_GPL(__put_task_struct);
796
__put_task_struct_rcu_cb(struct rcu_head * rhp)797 void __put_task_struct_rcu_cb(struct rcu_head *rhp)
798 {
799 struct task_struct *task = container_of(rhp, struct task_struct, rcu);
800
801 __put_task_struct(task);
802 }
803 EXPORT_SYMBOL_GPL(__put_task_struct_rcu_cb);
804
arch_task_cache_init(void)805 void __init __weak arch_task_cache_init(void) { }
806
807 /*
808 * set_max_threads
809 */
set_max_threads(unsigned int max_threads_suggested)810 static void __init set_max_threads(unsigned int max_threads_suggested)
811 {
812 u64 threads;
813 unsigned long nr_pages = memblock_estimated_nr_free_pages();
814
815 /*
816 * The number of threads shall be limited such that the thread
817 * structures may only consume a small part of the available memory.
818 */
819 if (fls64(nr_pages) + fls64(PAGE_SIZE) > 64)
820 threads = MAX_THREADS;
821 else
822 threads = div64_u64((u64) nr_pages * (u64) PAGE_SIZE,
823 (u64) THREAD_SIZE * 8UL);
824
825 if (threads > max_threads_suggested)
826 threads = max_threads_suggested;
827
828 max_threads = clamp_t(u64, threads, MIN_THREADS, MAX_THREADS);
829 }
830
831 #ifdef CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT
832 /* Initialized by the architecture: */
833 int arch_task_struct_size __read_mostly;
834 #endif
835
task_struct_whitelist(unsigned long * offset,unsigned long * size)836 static void __init task_struct_whitelist(unsigned long *offset, unsigned long *size)
837 {
838 /* Fetch thread_struct whitelist for the architecture. */
839 arch_thread_struct_whitelist(offset, size);
840
841 /*
842 * Handle zero-sized whitelist or empty thread_struct, otherwise
843 * adjust offset to position of thread_struct in task_struct.
844 */
845 if (unlikely(*size == 0))
846 *offset = 0;
847 else
848 *offset += offsetof(struct task_struct, thread);
849 }
850
fork_init(void)851 void __init fork_init(void)
852 {
853 int i;
854 #ifndef ARCH_MIN_TASKALIGN
855 #define ARCH_MIN_TASKALIGN 0
856 #endif
857 int align = max_t(int, L1_CACHE_BYTES, ARCH_MIN_TASKALIGN);
858 unsigned long useroffset, usersize;
859
860 /* create a slab on which task_structs can be allocated */
861 task_struct_whitelist(&useroffset, &usersize);
862 task_struct_cachep = kmem_cache_create_usercopy("task_struct",
863 arch_task_struct_size, align,
864 SLAB_PANIC|SLAB_ACCOUNT,
865 useroffset, usersize, NULL);
866
867 /* do the arch specific task caches init */
868 arch_task_cache_init();
869
870 set_max_threads(MAX_THREADS);
871
872 init_task.signal->rlim[RLIMIT_NPROC].rlim_cur = max_threads/2;
873 init_task.signal->rlim[RLIMIT_NPROC].rlim_max = max_threads/2;
874 init_task.signal->rlim[RLIMIT_SIGPENDING] =
875 init_task.signal->rlim[RLIMIT_NPROC];
876
877 for (i = 0; i < UCOUNT_COUNTS; i++)
878 init_user_ns.ucount_max[i] = max_threads/2;
879
880 set_userns_rlimit_max(&init_user_ns, UCOUNT_RLIMIT_NPROC, RLIM_INFINITY);
881 set_userns_rlimit_max(&init_user_ns, UCOUNT_RLIMIT_MSGQUEUE, RLIM_INFINITY);
882 set_userns_rlimit_max(&init_user_ns, UCOUNT_RLIMIT_SIGPENDING, RLIM_INFINITY);
883 set_userns_rlimit_max(&init_user_ns, UCOUNT_RLIMIT_MEMLOCK, RLIM_INFINITY);
884
885 #ifdef CONFIG_VMAP_STACK
886 cpuhp_setup_state(CPUHP_BP_PREPARE_DYN, "fork:vm_stack_cache",
887 NULL, free_vm_stack_cache);
888 #endif
889
890 scs_init();
891
892 lockdep_init_task(&init_task);
893 uprobes_init();
894 }
895
arch_dup_task_struct(struct task_struct * dst,struct task_struct * src)896 int __weak arch_dup_task_struct(struct task_struct *dst,
897 struct task_struct *src)
898 {
899 *dst = *src;
900 return 0;
901 }
902
set_task_stack_end_magic(struct task_struct * tsk)903 void set_task_stack_end_magic(struct task_struct *tsk)
904 {
905 unsigned long *stackend;
906
907 stackend = end_of_stack(tsk);
908 *stackend = STACK_END_MAGIC; /* for overflow detection */
909 }
910
dup_task_struct(struct task_struct * orig,int node)911 static struct task_struct *dup_task_struct(struct task_struct *orig, int node)
912 {
913 struct task_struct *tsk;
914 int err;
915
916 if (node == NUMA_NO_NODE)
917 node = tsk_fork_get_node(orig);
918 tsk = alloc_task_struct_node(node);
919 if (!tsk)
920 return NULL;
921
922 err = arch_dup_task_struct(tsk, orig);
923 if (err)
924 goto free_tsk;
925
926 err = alloc_thread_stack_node(tsk, node);
927 if (err)
928 goto free_tsk;
929
930 #ifdef CONFIG_THREAD_INFO_IN_TASK
931 refcount_set(&tsk->stack_refcount, 1);
932 #endif
933 account_kernel_stack(tsk, 1);
934
935 err = scs_prepare(tsk, node);
936 if (err)
937 goto free_stack;
938
939 #ifdef CONFIG_SECCOMP
940 /*
941 * We must handle setting up seccomp filters once we're under
942 * the sighand lock in case orig has changed between now and
943 * then. Until then, filter must be NULL to avoid messing up
944 * the usage counts on the error path calling free_task.
945 */
946 tsk->seccomp.filter = NULL;
947 #endif
948
949 setup_thread_stack(tsk, orig);
950 clear_user_return_notifier(tsk);
951 clear_tsk_need_resched(tsk);
952 set_task_stack_end_magic(tsk);
953 clear_syscall_work_syscall_user_dispatch(tsk);
954
955 #ifdef CONFIG_STACKPROTECTOR
956 tsk->stack_canary = get_random_canary();
957 #endif
958 if (orig->cpus_ptr == &orig->cpus_mask)
959 tsk->cpus_ptr = &tsk->cpus_mask;
960 dup_user_cpus_ptr(tsk, orig, node);
961
962 /*
963 * One for the user space visible state that goes away when reaped.
964 * One for the scheduler.
965 */
966 refcount_set(&tsk->rcu_users, 2);
967 /* One for the rcu users */
968 refcount_set(&tsk->usage, 1);
969 #ifdef CONFIG_BLK_DEV_IO_TRACE
970 tsk->btrace_seq = 0;
971 #endif
972 tsk->splice_pipe = NULL;
973 tsk->task_frag.page = NULL;
974 tsk->wake_q.next = NULL;
975 tsk->worker_private = NULL;
976
977 kcov_task_init(tsk);
978 kmsan_task_create(tsk);
979 kmap_local_fork(tsk);
980
981 #ifdef CONFIG_FAULT_INJECTION
982 tsk->fail_nth = 0;
983 #endif
984
985 #ifdef CONFIG_BLK_CGROUP
986 tsk->throttle_disk = NULL;
987 tsk->use_memdelay = 0;
988 #endif
989
990 #ifdef CONFIG_ARCH_HAS_CPU_PASID
991 tsk->pasid_activated = 0;
992 #endif
993
994 #ifdef CONFIG_MEMCG
995 tsk->active_memcg = NULL;
996 #endif
997
998 #ifdef CONFIG_X86_BUS_LOCK_DETECT
999 tsk->reported_split_lock = 0;
1000 #endif
1001
1002 #ifdef CONFIG_SCHED_MM_CID
1003 tsk->mm_cid.cid = MM_CID_UNSET;
1004 tsk->mm_cid.active = 0;
1005 INIT_HLIST_NODE(&tsk->mm_cid.node);
1006 #endif
1007 return tsk;
1008
1009 free_stack:
1010 exit_task_stack_account(tsk);
1011 free_thread_stack(tsk);
1012 free_tsk:
1013 free_task_struct(tsk);
1014 return NULL;
1015 }
1016
1017 __cacheline_aligned_in_smp DEFINE_SPINLOCK(mmlist_lock);
1018
1019 static unsigned long default_dump_filter = MMF_DUMP_FILTER_DEFAULT;
1020
coredump_filter_setup(char * s)1021 static int __init coredump_filter_setup(char *s)
1022 {
1023 default_dump_filter =
1024 (simple_strtoul(s, NULL, 0) << MMF_DUMP_FILTER_SHIFT) &
1025 MMF_DUMP_FILTER_MASK;
1026 return 1;
1027 }
1028
1029 __setup("coredump_filter=", coredump_filter_setup);
1030
1031 #include <linux/init_task.h>
1032
mm_init_aio(struct mm_struct * mm)1033 static void mm_init_aio(struct mm_struct *mm)
1034 {
1035 #ifdef CONFIG_AIO
1036 spin_lock_init(&mm->ioctx_lock);
1037 mm->ioctx_table = NULL;
1038 #endif
1039 }
1040
mm_clear_owner(struct mm_struct * mm,struct task_struct * p)1041 static __always_inline void mm_clear_owner(struct mm_struct *mm,
1042 struct task_struct *p)
1043 {
1044 #ifdef CONFIG_MEMCG
1045 if (mm->owner == p)
1046 WRITE_ONCE(mm->owner, NULL);
1047 #endif
1048 }
1049
mm_init_owner(struct mm_struct * mm,struct task_struct * p)1050 static void mm_init_owner(struct mm_struct *mm, struct task_struct *p)
1051 {
1052 #ifdef CONFIG_MEMCG
1053 mm->owner = p;
1054 #endif
1055 }
1056
mm_init_uprobes_state(struct mm_struct * mm)1057 static void mm_init_uprobes_state(struct mm_struct *mm)
1058 {
1059 #ifdef CONFIG_UPROBES
1060 mm->uprobes_state.xol_area = NULL;
1061 arch_uprobe_init_state(mm);
1062 #endif
1063 }
1064
mmap_init_lock(struct mm_struct * mm)1065 static void mmap_init_lock(struct mm_struct *mm)
1066 {
1067 init_rwsem(&mm->mmap_lock);
1068 mm_lock_seqcount_init(mm);
1069 #ifdef CONFIG_PER_VMA_LOCK
1070 rcuwait_init(&mm->vma_writer_wait);
1071 #endif
1072 }
1073
mm_init(struct mm_struct * mm,struct task_struct * p,struct user_namespace * user_ns)1074 static struct mm_struct *mm_init(struct mm_struct *mm, struct task_struct *p,
1075 struct user_namespace *user_ns)
1076 {
1077 mt_init_flags(&mm->mm_mt, MM_MT_FLAGS);
1078 mt_set_external_lock(&mm->mm_mt, &mm->mmap_lock);
1079 atomic_set(&mm->mm_users, 1);
1080 atomic_set(&mm->mm_count, 1);
1081 seqcount_init(&mm->write_protect_seq);
1082 mmap_init_lock(mm);
1083 INIT_LIST_HEAD(&mm->mmlist);
1084 mm_pgtables_bytes_init(mm);
1085 mm->map_count = 0;
1086 mm->locked_vm = 0;
1087 atomic64_set(&mm->pinned_vm, 0);
1088 memset(&mm->rss_stat, 0, sizeof(mm->rss_stat));
1089 spin_lock_init(&mm->page_table_lock);
1090 spin_lock_init(&mm->arg_lock);
1091 mm_init_cpumask(mm);
1092 mm_init_aio(mm);
1093 mm_init_owner(mm, p);
1094 mm_pasid_init(mm);
1095 RCU_INIT_POINTER(mm->exe_file, NULL);
1096 mmu_notifier_subscriptions_init(mm);
1097 init_tlb_flush_pending(mm);
1098 #if defined(CONFIG_TRANSPARENT_HUGEPAGE) && !defined(CONFIG_SPLIT_PMD_PTLOCKS)
1099 mm->pmd_huge_pte = NULL;
1100 #endif
1101 mm_init_uprobes_state(mm);
1102 hugetlb_count_init(mm);
1103
1104 mm_flags_clear_all(mm);
1105 if (current->mm) {
1106 unsigned long flags = __mm_flags_get_word(current->mm);
1107
1108 __mm_flags_overwrite_word(mm, mmf_init_legacy_flags(flags));
1109 mm->def_flags = current->mm->def_flags & VM_INIT_DEF_MASK;
1110 } else {
1111 __mm_flags_overwrite_word(mm, default_dump_filter);
1112 mm->def_flags = 0;
1113 }
1114
1115 if (futex_mm_init(mm))
1116 goto fail_mm_init;
1117
1118 if (mm_alloc_pgd(mm))
1119 goto fail_nopgd;
1120
1121 if (mm_alloc_id(mm))
1122 goto fail_noid;
1123
1124 if (init_new_context(p, mm))
1125 goto fail_nocontext;
1126
1127 if (mm_alloc_cid(mm, p))
1128 goto fail_cid;
1129
1130 if (percpu_counter_init_many(mm->rss_stat, 0, GFP_KERNEL_ACCOUNT,
1131 NR_MM_COUNTERS))
1132 goto fail_pcpu;
1133
1134 mm->user_ns = get_user_ns(user_ns);
1135 lru_gen_init_mm(mm);
1136 return mm;
1137
1138 fail_pcpu:
1139 mm_destroy_cid(mm);
1140 fail_cid:
1141 destroy_context(mm);
1142 fail_nocontext:
1143 mm_free_id(mm);
1144 fail_noid:
1145 mm_free_pgd(mm);
1146 fail_nopgd:
1147 futex_hash_free(mm);
1148 fail_mm_init:
1149 free_mm(mm);
1150 return NULL;
1151 }
1152
1153 /*
1154 * Allocate and initialize an mm_struct.
1155 */
mm_alloc(void)1156 struct mm_struct *mm_alloc(void)
1157 {
1158 struct mm_struct *mm;
1159
1160 mm = allocate_mm();
1161 if (!mm)
1162 return NULL;
1163
1164 memset(mm, 0, sizeof(*mm));
1165 return mm_init(mm, current, current_user_ns());
1166 }
1167 EXPORT_SYMBOL_IF_KUNIT(mm_alloc);
1168
__mmput(struct mm_struct * mm)1169 static inline void __mmput(struct mm_struct *mm)
1170 {
1171 VM_BUG_ON(atomic_read(&mm->mm_users));
1172
1173 uprobe_clear_state(mm);
1174 exit_aio(mm);
1175 ksm_exit(mm);
1176 khugepaged_exit(mm); /* must run before exit_mmap */
1177 exit_mmap(mm);
1178 mm_put_huge_zero_folio(mm);
1179 set_mm_exe_file(mm, NULL);
1180 if (!list_empty(&mm->mmlist)) {
1181 spin_lock(&mmlist_lock);
1182 list_del(&mm->mmlist);
1183 spin_unlock(&mmlist_lock);
1184 }
1185 if (mm->binfmt)
1186 module_put(mm->binfmt->module);
1187 lru_gen_del_mm(mm);
1188 futex_hash_free(mm);
1189 mmdrop(mm);
1190 }
1191
1192 /*
1193 * Decrement the use count and release all resources for an mm.
1194 */
mmput(struct mm_struct * mm)1195 void mmput(struct mm_struct *mm)
1196 {
1197 might_sleep();
1198
1199 if (atomic_dec_and_test(&mm->mm_users))
1200 __mmput(mm);
1201 }
1202 EXPORT_SYMBOL_GPL(mmput);
1203
1204 #if defined(CONFIG_MMU) || defined(CONFIG_FUTEX_PRIVATE_HASH)
mmput_async_fn(struct work_struct * work)1205 static void mmput_async_fn(struct work_struct *work)
1206 {
1207 struct mm_struct *mm = container_of(work, struct mm_struct,
1208 async_put_work);
1209
1210 __mmput(mm);
1211 }
1212
mmput_async(struct mm_struct * mm)1213 void mmput_async(struct mm_struct *mm)
1214 {
1215 if (atomic_dec_and_test(&mm->mm_users)) {
1216 INIT_WORK(&mm->async_put_work, mmput_async_fn);
1217 schedule_work(&mm->async_put_work);
1218 }
1219 }
1220 EXPORT_SYMBOL_GPL(mmput_async);
1221 #endif
1222
1223 /**
1224 * set_mm_exe_file - change a reference to the mm's executable file
1225 * @mm: The mm to change.
1226 * @new_exe_file: The new file to use.
1227 *
1228 * This changes mm's executable file (shown as symlink /proc/[pid]/exe).
1229 *
1230 * Main users are mmput() and sys_execve(). Callers prevent concurrent
1231 * invocations: in mmput() nobody alive left, in execve it happens before
1232 * the new mm is made visible to anyone.
1233 *
1234 * Can only fail if new_exe_file != NULL.
1235 */
set_mm_exe_file(struct mm_struct * mm,struct file * new_exe_file)1236 int set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file)
1237 {
1238 struct file *old_exe_file;
1239
1240 /*
1241 * It is safe to dereference the exe_file without RCU as
1242 * this function is only called if nobody else can access
1243 * this mm -- see comment above for justification.
1244 */
1245 old_exe_file = rcu_dereference_raw(mm->exe_file);
1246
1247 if (new_exe_file) {
1248 /*
1249 * We expect the caller (i.e., sys_execve) to already denied
1250 * write access, so this is unlikely to fail.
1251 */
1252 if (unlikely(exe_file_deny_write_access(new_exe_file)))
1253 return -EACCES;
1254 get_file(new_exe_file);
1255 }
1256 rcu_assign_pointer(mm->exe_file, new_exe_file);
1257 if (old_exe_file) {
1258 exe_file_allow_write_access(old_exe_file);
1259 fput(old_exe_file);
1260 }
1261 return 0;
1262 }
1263
1264 /**
1265 * replace_mm_exe_file - replace a reference to the mm's executable file
1266 * @mm: The mm to change.
1267 * @new_exe_file: The new file to use.
1268 *
1269 * This changes mm's executable file (shown as symlink /proc/[pid]/exe).
1270 *
1271 * Main user is sys_prctl(PR_SET_MM_MAP/EXE_FILE).
1272 */
replace_mm_exe_file(struct mm_struct * mm,struct file * new_exe_file)1273 int replace_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file)
1274 {
1275 struct vm_area_struct *vma;
1276 struct file *old_exe_file;
1277 int ret = 0;
1278
1279 /* Forbid mm->exe_file change if old file still mapped. */
1280 old_exe_file = get_mm_exe_file(mm);
1281 if (old_exe_file) {
1282 VMA_ITERATOR(vmi, mm, 0);
1283 mmap_read_lock(mm);
1284 for_each_vma(vmi, vma) {
1285 if (!vma->vm_file)
1286 continue;
1287 if (path_equal(&vma->vm_file->f_path,
1288 &old_exe_file->f_path)) {
1289 ret = -EBUSY;
1290 break;
1291 }
1292 }
1293 mmap_read_unlock(mm);
1294 fput(old_exe_file);
1295 if (ret)
1296 return ret;
1297 }
1298
1299 ret = exe_file_deny_write_access(new_exe_file);
1300 if (ret)
1301 return -EACCES;
1302 get_file(new_exe_file);
1303
1304 /* set the new file */
1305 mmap_write_lock(mm);
1306 old_exe_file = rcu_dereference_raw(mm->exe_file);
1307 rcu_assign_pointer(mm->exe_file, new_exe_file);
1308 mmap_write_unlock(mm);
1309
1310 if (old_exe_file) {
1311 exe_file_allow_write_access(old_exe_file);
1312 fput(old_exe_file);
1313 }
1314 return 0;
1315 }
1316
1317 /**
1318 * get_mm_exe_file - acquire a reference to the mm's executable file
1319 * @mm: The mm of interest.
1320 *
1321 * Returns %NULL if mm has no associated executable file.
1322 * User must release file via fput().
1323 */
get_mm_exe_file(struct mm_struct * mm)1324 struct file *get_mm_exe_file(struct mm_struct *mm)
1325 {
1326 struct file *exe_file;
1327
1328 rcu_read_lock();
1329 exe_file = get_file_rcu(&mm->exe_file);
1330 rcu_read_unlock();
1331 return exe_file;
1332 }
1333
1334 /**
1335 * get_task_exe_file - acquire a reference to the task's executable file
1336 * @task: The task.
1337 *
1338 * Returns %NULL if task's mm (if any) has no associated executable file or
1339 * this is a kernel thread with borrowed mm (see the comment above get_task_mm).
1340 * User must release file via fput().
1341 */
get_task_exe_file(struct task_struct * task)1342 struct file *get_task_exe_file(struct task_struct *task)
1343 {
1344 struct file *exe_file = NULL;
1345 struct mm_struct *mm;
1346
1347 if (task->flags & PF_KTHREAD)
1348 return NULL;
1349
1350 task_lock(task);
1351 mm = task->mm;
1352 if (mm)
1353 exe_file = get_mm_exe_file(mm);
1354 task_unlock(task);
1355 return exe_file;
1356 }
1357
1358 /**
1359 * get_task_mm - acquire a reference to the task's mm
1360 * @task: The task.
1361 *
1362 * Returns %NULL if the task has no mm. Checks PF_KTHREAD (meaning
1363 * this kernel workthread has transiently adopted a user mm with kthread_use_mm,
1364 * to do its AIO) is not set and if so returns a reference to it, after
1365 * bumping up the use count. User must release the mm via mmput()
1366 * after use. Typically used by /proc and ptrace.
1367 */
get_task_mm(struct task_struct * task)1368 struct mm_struct *get_task_mm(struct task_struct *task)
1369 {
1370 struct mm_struct *mm;
1371
1372 if (task->flags & PF_KTHREAD)
1373 return NULL;
1374
1375 task_lock(task);
1376 mm = task->mm;
1377 if (mm)
1378 mmget(mm);
1379 task_unlock(task);
1380 return mm;
1381 }
1382 EXPORT_SYMBOL_GPL(get_task_mm);
1383
may_access_mm(struct mm_struct * mm,struct task_struct * task,unsigned int mode)1384 static bool may_access_mm(struct mm_struct *mm, struct task_struct *task, unsigned int mode)
1385 {
1386 if (mm == current->mm)
1387 return true;
1388 if (ptrace_may_access(task, mode))
1389 return true;
1390 if ((mode & PTRACE_MODE_READ) && perfmon_capable())
1391 return true;
1392 return false;
1393 }
1394
mm_access(struct task_struct * task,unsigned int mode)1395 struct mm_struct *mm_access(struct task_struct *task, unsigned int mode)
1396 {
1397 struct mm_struct *mm;
1398 int err;
1399
1400 err = down_read_killable(&task->signal->exec_update_lock);
1401 if (err)
1402 return ERR_PTR(err);
1403
1404 mm = get_task_mm(task);
1405 if (!mm) {
1406 mm = ERR_PTR(-ESRCH);
1407 } else if (!may_access_mm(mm, task, mode)) {
1408 mmput(mm);
1409 mm = ERR_PTR(-EACCES);
1410 }
1411 up_read(&task->signal->exec_update_lock);
1412
1413 return mm;
1414 }
1415
complete_vfork_done(struct task_struct * tsk)1416 static void complete_vfork_done(struct task_struct *tsk)
1417 {
1418 struct completion *vfork;
1419
1420 task_lock(tsk);
1421 vfork = tsk->vfork_done;
1422 if (likely(vfork)) {
1423 tsk->vfork_done = NULL;
1424 complete(vfork);
1425 }
1426 task_unlock(tsk);
1427 }
1428
wait_for_vfork_done(struct task_struct * child,struct completion * vfork)1429 static int wait_for_vfork_done(struct task_struct *child,
1430 struct completion *vfork)
1431 {
1432 unsigned int state = TASK_KILLABLE|TASK_FREEZABLE;
1433 int killed;
1434
1435 cgroup_enter_frozen();
1436 killed = wait_for_completion_state(vfork, state);
1437 cgroup_leave_frozen(false);
1438
1439 if (killed) {
1440 task_lock(child);
1441 child->vfork_done = NULL;
1442 task_unlock(child);
1443 }
1444
1445 put_task_struct(child);
1446 return killed;
1447 }
1448
1449 /* Please note the differences between mmput and mm_release.
1450 * mmput is called whenever we stop holding onto a mm_struct,
1451 * error success whatever.
1452 *
1453 * mm_release is called after a mm_struct has been removed
1454 * from the current process.
1455 *
1456 * This difference is important for error handling, when we
1457 * only half set up a mm_struct for a new process and need to restore
1458 * the old one. Because we mmput the new mm_struct before
1459 * restoring the old one. . .
1460 * Eric Biederman 10 January 1998
1461 */
mm_release(struct task_struct * tsk,struct mm_struct * mm)1462 static void mm_release(struct task_struct *tsk, struct mm_struct *mm)
1463 {
1464 uprobe_free_utask(tsk);
1465
1466 /* Get rid of any cached register state */
1467 deactivate_mm(tsk, mm);
1468
1469 /*
1470 * Signal userspace if we're not exiting with a core dump
1471 * because we want to leave the value intact for debugging
1472 * purposes.
1473 */
1474 if (tsk->clear_child_tid) {
1475 if (atomic_read(&mm->mm_users) > 1) {
1476 /*
1477 * We don't check the error code - if userspace has
1478 * not set up a proper pointer then tough luck.
1479 */
1480 put_user(0, tsk->clear_child_tid);
1481 do_futex(tsk->clear_child_tid, FUTEX_WAKE,
1482 1, NULL, NULL, 0, 0);
1483 }
1484 tsk->clear_child_tid = NULL;
1485 }
1486
1487 /*
1488 * All done, finally we can wake up parent and return this mm to him.
1489 * Also kthread_stop() uses this completion for synchronization.
1490 */
1491 if (tsk->vfork_done)
1492 complete_vfork_done(tsk);
1493 }
1494
exit_mm_release(struct task_struct * tsk,struct mm_struct * mm)1495 void exit_mm_release(struct task_struct *tsk, struct mm_struct *mm)
1496 {
1497 futex_exit_release(tsk);
1498 mm_release(tsk, mm);
1499 }
1500
exec_mm_release(struct task_struct * tsk,struct mm_struct * mm)1501 void exec_mm_release(struct task_struct *tsk, struct mm_struct *mm)
1502 {
1503 futex_exec_release(tsk);
1504 mm_release(tsk, mm);
1505 }
1506
1507 /**
1508 * dup_mm() - duplicates an existing mm structure
1509 * @tsk: the task_struct with which the new mm will be associated.
1510 * @oldmm: the mm to duplicate.
1511 *
1512 * Allocates a new mm structure and duplicates the provided @oldmm structure
1513 * content into it.
1514 *
1515 * Return: the duplicated mm or NULL on failure.
1516 */
dup_mm(struct task_struct * tsk,struct mm_struct * oldmm)1517 static struct mm_struct *dup_mm(struct task_struct *tsk,
1518 struct mm_struct *oldmm)
1519 {
1520 struct mm_struct *mm;
1521 int err;
1522
1523 mm = allocate_mm();
1524 if (!mm)
1525 goto fail_nomem;
1526
1527 memcpy(mm, oldmm, sizeof(*mm));
1528
1529 if (!mm_init(mm, tsk, mm->user_ns))
1530 goto fail_nomem;
1531
1532 uprobe_start_dup_mmap();
1533 err = dup_mmap(mm, oldmm);
1534 if (err)
1535 goto free_pt;
1536 uprobe_end_dup_mmap();
1537
1538 mm->hiwater_rss = get_mm_rss(mm);
1539 mm->hiwater_vm = mm->total_vm;
1540
1541 if (mm->binfmt && !try_module_get(mm->binfmt->module))
1542 goto free_pt;
1543
1544 return mm;
1545
1546 free_pt:
1547 /* don't put binfmt in mmput, we haven't got module yet */
1548 mm->binfmt = NULL;
1549 mm_init_owner(mm, NULL);
1550 mmput(mm);
1551 if (err)
1552 uprobe_end_dup_mmap();
1553
1554 fail_nomem:
1555 return NULL;
1556 }
1557
copy_mm(u64 clone_flags,struct task_struct * tsk)1558 static int copy_mm(u64 clone_flags, struct task_struct *tsk)
1559 {
1560 struct mm_struct *mm, *oldmm;
1561
1562 tsk->min_flt = tsk->maj_flt = 0;
1563 tsk->nvcsw = tsk->nivcsw = 0;
1564 #ifdef CONFIG_DETECT_HUNG_TASK
1565 tsk->last_switch_count = tsk->nvcsw + tsk->nivcsw;
1566 tsk->last_switch_time = 0;
1567 #endif
1568
1569 tsk->mm = NULL;
1570 tsk->active_mm = NULL;
1571
1572 /*
1573 * Are we cloning a kernel thread?
1574 *
1575 * We need to steal a active VM for that..
1576 */
1577 oldmm = current->mm;
1578 if (!oldmm)
1579 return 0;
1580
1581 if (clone_flags & CLONE_VM) {
1582 mmget(oldmm);
1583 mm = oldmm;
1584 } else {
1585 mm = dup_mm(tsk, current->mm);
1586 if (!mm)
1587 return -ENOMEM;
1588 }
1589
1590 tsk->mm = mm;
1591 tsk->active_mm = mm;
1592 return 0;
1593 }
1594
copy_fs(u64 clone_flags,struct task_struct * tsk)1595 static int copy_fs(u64 clone_flags, struct task_struct *tsk)
1596 {
1597 struct fs_struct *fs = current->fs;
1598 if (clone_flags & CLONE_FS) {
1599 /* tsk->fs is already what we want */
1600 read_seqlock_excl(&fs->seq);
1601 /* "users" and "in_exec" locked for check_unsafe_exec() */
1602 if (fs->in_exec) {
1603 read_sequnlock_excl(&fs->seq);
1604 return -EAGAIN;
1605 }
1606 fs->users++;
1607 read_sequnlock_excl(&fs->seq);
1608 return 0;
1609 }
1610 tsk->fs = copy_fs_struct(fs);
1611 if (!tsk->fs)
1612 return -ENOMEM;
1613 return 0;
1614 }
1615
copy_files(u64 clone_flags,struct task_struct * tsk,int no_files)1616 static int copy_files(u64 clone_flags, struct task_struct *tsk,
1617 int no_files)
1618 {
1619 struct files_struct *oldf, *newf;
1620
1621 /*
1622 * A background process may not have any files ...
1623 */
1624 oldf = current->files;
1625 if (!oldf)
1626 return 0;
1627
1628 if (no_files) {
1629 tsk->files = NULL;
1630 return 0;
1631 }
1632
1633 if (clone_flags & CLONE_FILES) {
1634 atomic_inc(&oldf->count);
1635 return 0;
1636 }
1637
1638 newf = dup_fd(oldf, NULL);
1639 if (IS_ERR(newf))
1640 return PTR_ERR(newf);
1641
1642 tsk->files = newf;
1643 return 0;
1644 }
1645
copy_sighand(u64 clone_flags,struct task_struct * tsk)1646 static int copy_sighand(u64 clone_flags, struct task_struct *tsk)
1647 {
1648 struct sighand_struct *sig;
1649
1650 if (clone_flags & CLONE_SIGHAND) {
1651 refcount_inc(¤t->sighand->count);
1652 return 0;
1653 }
1654 sig = kmem_cache_alloc(sighand_cachep, GFP_KERNEL);
1655 RCU_INIT_POINTER(tsk->sighand, sig);
1656 if (!sig)
1657 return -ENOMEM;
1658
1659 refcount_set(&sig->count, 1);
1660 spin_lock_irq(¤t->sighand->siglock);
1661 memcpy(sig->action, current->sighand->action, sizeof(sig->action));
1662 spin_unlock_irq(¤t->sighand->siglock);
1663
1664 /* Reset all signal handler not set to SIG_IGN to SIG_DFL. */
1665 if (clone_flags & CLONE_CLEAR_SIGHAND)
1666 flush_signal_handlers(tsk, 0);
1667
1668 return 0;
1669 }
1670
__cleanup_sighand(struct sighand_struct * sighand)1671 void __cleanup_sighand(struct sighand_struct *sighand)
1672 {
1673 if (refcount_dec_and_test(&sighand->count)) {
1674 signalfd_cleanup(sighand);
1675 /*
1676 * sighand_cachep is SLAB_TYPESAFE_BY_RCU so we can free it
1677 * without an RCU grace period, see __lock_task_sighand().
1678 */
1679 kmem_cache_free(sighand_cachep, sighand);
1680 }
1681 }
1682
1683 /*
1684 * Initialize POSIX timer handling for a thread group.
1685 */
posix_cpu_timers_init_group(struct signal_struct * sig)1686 static void posix_cpu_timers_init_group(struct signal_struct *sig)
1687 {
1688 struct posix_cputimers *pct = &sig->posix_cputimers;
1689 unsigned long cpu_limit;
1690
1691 cpu_limit = READ_ONCE(sig->rlim[RLIMIT_CPU].rlim_cur);
1692 posix_cputimers_group_init(pct, cpu_limit);
1693 }
1694
copy_signal(u64 clone_flags,struct task_struct * tsk)1695 static int copy_signal(u64 clone_flags, struct task_struct *tsk)
1696 {
1697 struct signal_struct *sig;
1698
1699 if (clone_flags & CLONE_THREAD)
1700 return 0;
1701
1702 sig = kmem_cache_zalloc(signal_cachep, GFP_KERNEL);
1703 tsk->signal = sig;
1704 if (!sig)
1705 return -ENOMEM;
1706
1707 sig->nr_threads = 1;
1708 sig->quick_threads = 1;
1709 atomic_set(&sig->live, 1);
1710 refcount_set(&sig->sigcnt, 1);
1711
1712 /* list_add(thread_node, thread_head) without INIT_LIST_HEAD() */
1713 sig->thread_head = (struct list_head)LIST_HEAD_INIT(tsk->thread_node);
1714 tsk->thread_node = (struct list_head)LIST_HEAD_INIT(sig->thread_head);
1715
1716 init_waitqueue_head(&sig->wait_chldexit);
1717 sig->curr_target = tsk;
1718 init_sigpending(&sig->shared_pending);
1719 INIT_HLIST_HEAD(&sig->multiprocess);
1720 seqlock_init(&sig->stats_lock);
1721 prev_cputime_init(&sig->prev_cputime);
1722
1723 #ifdef CONFIG_POSIX_TIMERS
1724 INIT_HLIST_HEAD(&sig->posix_timers);
1725 INIT_HLIST_HEAD(&sig->ignored_posix_timers);
1726 hrtimer_setup(&sig->real_timer, it_real_fn, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1727 #endif
1728
1729 task_lock(current->group_leader);
1730 memcpy(sig->rlim, current->signal->rlim, sizeof sig->rlim);
1731 task_unlock(current->group_leader);
1732
1733 posix_cpu_timers_init_group(sig);
1734
1735 tty_audit_fork(sig);
1736 sched_autogroup_fork(sig);
1737
1738 #ifdef CONFIG_CGROUPS
1739 init_rwsem(&sig->cgroup_threadgroup_rwsem);
1740 #endif
1741
1742 sig->oom_score_adj = current->signal->oom_score_adj;
1743 sig->oom_score_adj_min = current->signal->oom_score_adj_min;
1744
1745 mutex_init(&sig->cred_guard_mutex);
1746 init_rwsem(&sig->exec_update_lock);
1747
1748 return 0;
1749 }
1750
copy_seccomp(struct task_struct * p)1751 static void copy_seccomp(struct task_struct *p)
1752 {
1753 #ifdef CONFIG_SECCOMP
1754 /*
1755 * Must be called with sighand->lock held, which is common to
1756 * all threads in the group. Holding cred_guard_mutex is not
1757 * needed because this new task is not yet running and cannot
1758 * be racing exec.
1759 */
1760 assert_spin_locked(¤t->sighand->siglock);
1761
1762 /* Ref-count the new filter user, and assign it. */
1763 get_seccomp_filter(current);
1764 p->seccomp = current->seccomp;
1765
1766 /*
1767 * Explicitly enable no_new_privs here in case it got set
1768 * between the task_struct being duplicated and holding the
1769 * sighand lock. The seccomp state and nnp must be in sync.
1770 */
1771 if (task_no_new_privs(current))
1772 task_set_no_new_privs(p);
1773
1774 /*
1775 * If the parent gained a seccomp mode after copying thread
1776 * flags and between before we held the sighand lock, we have
1777 * to manually enable the seccomp thread flag here.
1778 */
1779 if (p->seccomp.mode != SECCOMP_MODE_DISABLED)
1780 set_task_syscall_work(p, SECCOMP);
1781 #endif
1782 }
1783
SYSCALL_DEFINE1(set_tid_address,int __user *,tidptr)1784 SYSCALL_DEFINE1(set_tid_address, int __user *, tidptr)
1785 {
1786 current->clear_child_tid = tidptr;
1787
1788 return task_pid_vnr(current);
1789 }
1790
rt_mutex_init_task(struct task_struct * p)1791 static void rt_mutex_init_task(struct task_struct *p)
1792 {
1793 raw_spin_lock_init(&p->pi_lock);
1794 #ifdef CONFIG_RT_MUTEXES
1795 p->pi_waiters = RB_ROOT_CACHED;
1796 p->pi_top_task = NULL;
1797 p->pi_blocked_on = NULL;
1798 #endif
1799 }
1800
init_task_pid_links(struct task_struct * task)1801 static inline void init_task_pid_links(struct task_struct *task)
1802 {
1803 enum pid_type type;
1804
1805 for (type = PIDTYPE_PID; type < PIDTYPE_MAX; ++type)
1806 INIT_HLIST_NODE(&task->pid_links[type]);
1807 }
1808
1809 static inline void
init_task_pid(struct task_struct * task,enum pid_type type,struct pid * pid)1810 init_task_pid(struct task_struct *task, enum pid_type type, struct pid *pid)
1811 {
1812 if (type == PIDTYPE_PID)
1813 task->thread_pid = pid;
1814 else
1815 task->signal->pids[type] = pid;
1816 }
1817
rcu_copy_process(struct task_struct * p)1818 static inline void rcu_copy_process(struct task_struct *p)
1819 {
1820 #ifdef CONFIG_PREEMPT_RCU
1821 p->rcu_read_lock_nesting = 0;
1822 p->rcu_read_unlock_special.s = 0;
1823 p->rcu_blocked_node = NULL;
1824 INIT_LIST_HEAD(&p->rcu_node_entry);
1825 #endif /* #ifdef CONFIG_PREEMPT_RCU */
1826 #ifdef CONFIG_TASKS_RCU
1827 p->rcu_tasks_holdout = false;
1828 INIT_LIST_HEAD(&p->rcu_tasks_holdout_list);
1829 p->rcu_tasks_idle_cpu = -1;
1830 INIT_LIST_HEAD(&p->rcu_tasks_exit_list);
1831 #endif /* #ifdef CONFIG_TASKS_RCU */
1832 #ifdef CONFIG_TASKS_TRACE_RCU
1833 p->trc_reader_nesting = 0;
1834 #endif /* #ifdef CONFIG_TASKS_TRACE_RCU */
1835 }
1836
1837 /**
1838 * pidfd_prepare - allocate a new pidfd_file and reserve a pidfd
1839 * @pid: the struct pid for which to create a pidfd
1840 * @flags: flags of the new @pidfd
1841 * @ret_file: return the new pidfs file
1842 *
1843 * Allocate a new file that stashes @pid and reserve a new pidfd number in the
1844 * caller's file descriptor table. The pidfd is reserved but not installed yet.
1845 *
1846 * The helper verifies that @pid is still in use, without PIDFD_THREAD the
1847 * task identified by @pid must be a thread-group leader.
1848 *
1849 * If this function returns successfully the caller is responsible to either
1850 * call fd_install() passing the returned pidfd and pidfd file as arguments in
1851 * order to install the pidfd into its file descriptor table or they must use
1852 * put_unused_fd() and fput() on the returned pidfd and pidfd file
1853 * respectively.
1854 *
1855 * This function is useful when a pidfd must already be reserved but there
1856 * might still be points of failure afterwards and the caller wants to ensure
1857 * that no pidfd is leaked into its file descriptor table.
1858 *
1859 * Return: On success, a reserved pidfd is returned from the function and a new
1860 * pidfd file is returned in the last argument to the function. On
1861 * error, a negative error code is returned from the function and the
1862 * last argument remains unchanged.
1863 */
pidfd_prepare(struct pid * pid,unsigned int flags,struct file ** ret_file)1864 int pidfd_prepare(struct pid *pid, unsigned int flags, struct file **ret_file)
1865 {
1866 struct file *pidfs_file;
1867
1868 /*
1869 * PIDFD_STALE is only allowed to be passed if the caller knows
1870 * that @pid is already registered in pidfs and thus
1871 * PIDFD_INFO_EXIT information is guaranteed to be available.
1872 */
1873 if (!(flags & PIDFD_STALE)) {
1874 /*
1875 * While holding the pidfd waitqueue lock removing the
1876 * task linkage for the thread-group leader pid
1877 * (PIDTYPE_TGID) isn't possible. Thus, if there's still
1878 * task linkage for PIDTYPE_PID not having thread-group
1879 * leader linkage for the pid means it wasn't a
1880 * thread-group leader in the first place.
1881 */
1882 guard(spinlock_irq)(&pid->wait_pidfd.lock);
1883
1884 /* Task has already been reaped. */
1885 if (!pid_has_task(pid, PIDTYPE_PID))
1886 return -ESRCH;
1887 /*
1888 * If this struct pid isn't used as a thread-group
1889 * leader but the caller requested to create a
1890 * thread-group leader pidfd then report ENOENT.
1891 */
1892 if (!(flags & PIDFD_THREAD) && !pid_has_task(pid, PIDTYPE_TGID))
1893 return -ENOENT;
1894 }
1895
1896 CLASS(get_unused_fd, pidfd)(O_CLOEXEC);
1897 if (pidfd < 0)
1898 return pidfd;
1899
1900 pidfs_file = pidfs_alloc_file(pid, flags | O_RDWR);
1901 if (IS_ERR(pidfs_file))
1902 return PTR_ERR(pidfs_file);
1903
1904 *ret_file = pidfs_file;
1905 return take_fd(pidfd);
1906 }
1907
__delayed_free_task(struct rcu_head * rhp)1908 static void __delayed_free_task(struct rcu_head *rhp)
1909 {
1910 struct task_struct *tsk = container_of(rhp, struct task_struct, rcu);
1911
1912 free_task(tsk);
1913 }
1914
delayed_free_task(struct task_struct * tsk)1915 static __always_inline void delayed_free_task(struct task_struct *tsk)
1916 {
1917 if (IS_ENABLED(CONFIG_MEMCG))
1918 call_rcu(&tsk->rcu, __delayed_free_task);
1919 else
1920 free_task(tsk);
1921 }
1922
copy_oom_score_adj(u64 clone_flags,struct task_struct * tsk)1923 static void copy_oom_score_adj(u64 clone_flags, struct task_struct *tsk)
1924 {
1925 /* Skip if kernel thread */
1926 if (!tsk->mm)
1927 return;
1928
1929 /* Skip if spawning a thread or using vfork */
1930 if ((clone_flags & (CLONE_VM | CLONE_THREAD | CLONE_VFORK)) != CLONE_VM)
1931 return;
1932
1933 /* We need to synchronize with __set_oom_adj */
1934 mutex_lock(&oom_adj_mutex);
1935 mm_flags_set(MMF_MULTIPROCESS, tsk->mm);
1936 /* Update the values in case they were changed after copy_signal */
1937 tsk->signal->oom_score_adj = current->signal->oom_score_adj;
1938 tsk->signal->oom_score_adj_min = current->signal->oom_score_adj_min;
1939 mutex_unlock(&oom_adj_mutex);
1940 }
1941
1942 #ifdef CONFIG_RV
rv_task_fork(struct task_struct * p)1943 static void rv_task_fork(struct task_struct *p)
1944 {
1945 memset(&p->rv, 0, sizeof(p->rv));
1946 }
1947 #else
1948 #define rv_task_fork(p) do {} while (0)
1949 #endif
1950
need_futex_hash_allocate_default(u64 clone_flags)1951 static bool need_futex_hash_allocate_default(u64 clone_flags)
1952 {
1953 if ((clone_flags & (CLONE_THREAD | CLONE_VM)) != (CLONE_THREAD | CLONE_VM))
1954 return false;
1955 return true;
1956 }
1957
1958 /*
1959 * This creates a new process as a copy of the old one,
1960 * but does not actually start it yet.
1961 *
1962 * It copies the registers, and all the appropriate
1963 * parts of the process environment (as per the clone
1964 * flags). The actual kick-off is left to the caller.
1965 */
copy_process(struct pid * pid,int trace,int node,struct kernel_clone_args * args)1966 __latent_entropy struct task_struct *copy_process(
1967 struct pid *pid,
1968 int trace,
1969 int node,
1970 struct kernel_clone_args *args)
1971 {
1972 int pidfd = -1, retval;
1973 struct task_struct *p;
1974 struct multiprocess_signals delayed;
1975 struct file *pidfile = NULL;
1976 const u64 clone_flags = args->flags;
1977 struct nsproxy *nsp = current->nsproxy;
1978
1979 /*
1980 * Don't allow sharing the root directory with processes in a different
1981 * namespace
1982 */
1983 if ((clone_flags & (CLONE_NEWNS|CLONE_FS)) == (CLONE_NEWNS|CLONE_FS))
1984 return ERR_PTR(-EINVAL);
1985
1986 if ((clone_flags & (CLONE_NEWUSER|CLONE_FS)) == (CLONE_NEWUSER|CLONE_FS))
1987 return ERR_PTR(-EINVAL);
1988
1989 /*
1990 * Thread groups must share signals as well, and detached threads
1991 * can only be started up within the thread group.
1992 */
1993 if ((clone_flags & CLONE_THREAD) && !(clone_flags & CLONE_SIGHAND))
1994 return ERR_PTR(-EINVAL);
1995
1996 /*
1997 * Shared signal handlers imply shared VM. By way of the above,
1998 * thread groups also imply shared VM. Blocking this case allows
1999 * for various simplifications in other code.
2000 */
2001 if ((clone_flags & CLONE_SIGHAND) && !(clone_flags & CLONE_VM))
2002 return ERR_PTR(-EINVAL);
2003
2004 /*
2005 * Siblings of global init remain as zombies on exit since they are
2006 * not reaped by their parent (swapper). To solve this and to avoid
2007 * multi-rooted process trees, prevent global and container-inits
2008 * from creating siblings.
2009 */
2010 if ((clone_flags & CLONE_PARENT) &&
2011 current->signal->flags & SIGNAL_UNKILLABLE)
2012 return ERR_PTR(-EINVAL);
2013
2014 /*
2015 * If the new process will be in a different pid or user namespace
2016 * do not allow it to share a thread group with the forking task.
2017 */
2018 if (clone_flags & CLONE_THREAD) {
2019 if ((clone_flags & (CLONE_NEWUSER | CLONE_NEWPID)) ||
2020 (task_active_pid_ns(current) != nsp->pid_ns_for_children))
2021 return ERR_PTR(-EINVAL);
2022 }
2023
2024 if (clone_flags & CLONE_PIDFD) {
2025 /*
2026 * - CLONE_DETACHED is blocked so that we can potentially
2027 * reuse it later for CLONE_PIDFD.
2028 */
2029 if (clone_flags & CLONE_DETACHED)
2030 return ERR_PTR(-EINVAL);
2031 }
2032
2033 if (clone_flags & CLONE_AUTOREAP) {
2034 if (clone_flags & CLONE_THREAD)
2035 return ERR_PTR(-EINVAL);
2036 if (clone_flags & CLONE_PARENT)
2037 return ERR_PTR(-EINVAL);
2038 if (args->exit_signal)
2039 return ERR_PTR(-EINVAL);
2040 }
2041
2042 if ((clone_flags & CLONE_PARENT) && current->signal->autoreap)
2043 return ERR_PTR(-EINVAL);
2044
2045 if (clone_flags & CLONE_NNP) {
2046 if (clone_flags & CLONE_THREAD)
2047 return ERR_PTR(-EINVAL);
2048 }
2049
2050 if (clone_flags & CLONE_PIDFD_AUTOKILL) {
2051 if (!(clone_flags & CLONE_PIDFD))
2052 return ERR_PTR(-EINVAL);
2053 if (!(clone_flags & CLONE_AUTOREAP))
2054 return ERR_PTR(-EINVAL);
2055 if (clone_flags & CLONE_THREAD)
2056 return ERR_PTR(-EINVAL);
2057 /*
2058 * Without CLONE_NNP the child could escalate privileges
2059 * after being spawned, so require CAP_SYS_ADMIN.
2060 * With CLONE_NNP the child can't gain new privileges,
2061 * so allow unprivileged usage.
2062 */
2063 if (!(clone_flags & CLONE_NNP) &&
2064 !ns_capable(current_user_ns(), CAP_SYS_ADMIN))
2065 return ERR_PTR(-EPERM);
2066 }
2067
2068 /*
2069 * Force any signals received before this point to be delivered
2070 * before the fork happens. Collect up signals sent to multiple
2071 * processes that happen during the fork and delay them so that
2072 * they appear to happen after the fork.
2073 */
2074 sigemptyset(&delayed.signal);
2075 INIT_HLIST_NODE(&delayed.node);
2076
2077 spin_lock_irq(¤t->sighand->siglock);
2078 if (!(clone_flags & CLONE_THREAD))
2079 hlist_add_head(&delayed.node, ¤t->signal->multiprocess);
2080 recalc_sigpending();
2081 spin_unlock_irq(¤t->sighand->siglock);
2082 retval = -ERESTARTNOINTR;
2083 if (task_sigpending(current))
2084 goto fork_out;
2085
2086 retval = -ENOMEM;
2087 p = dup_task_struct(current, node);
2088 if (!p)
2089 goto fork_out;
2090 p->flags &= ~PF_KTHREAD;
2091 if (args->kthread)
2092 p->flags |= PF_KTHREAD;
2093 if (args->user_worker) {
2094 /*
2095 * Mark us a user worker, and block any signal that isn't
2096 * fatal or STOP
2097 */
2098 p->flags |= PF_USER_WORKER;
2099 siginitsetinv(&p->blocked, sigmask(SIGKILL)|sigmask(SIGSTOP));
2100 }
2101 if (args->io_thread)
2102 p->flags |= PF_IO_WORKER;
2103
2104 if (args->name)
2105 strscpy_pad(p->comm, args->name, sizeof(p->comm));
2106
2107 p->set_child_tid = (clone_flags & CLONE_CHILD_SETTID) ? args->child_tid : NULL;
2108 /*
2109 * TID is cleared in mm_release() when the task exits
2110 */
2111 p->clear_child_tid = (clone_flags & CLONE_CHILD_CLEARTID) ? args->child_tid : NULL;
2112
2113 ftrace_graph_init_task(p);
2114
2115 rt_mutex_init_task(p);
2116 raw_spin_lock_init(&p->blocked_lock);
2117
2118 lockdep_assert_irqs_enabled();
2119 #ifdef CONFIG_PROVE_LOCKING
2120 DEBUG_LOCKS_WARN_ON(!p->softirqs_enabled);
2121 #endif
2122 retval = copy_creds(p, clone_flags);
2123 if (retval < 0)
2124 goto bad_fork_free;
2125
2126 retval = -EAGAIN;
2127 if (is_rlimit_overlimit(task_ucounts(p), UCOUNT_RLIMIT_NPROC, rlimit(RLIMIT_NPROC))) {
2128 if (p->real_cred->user != INIT_USER &&
2129 !capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN))
2130 goto bad_fork_cleanup_count;
2131 }
2132 current->flags &= ~PF_NPROC_EXCEEDED;
2133
2134 /*
2135 * If multiple threads are within copy_process(), then this check
2136 * triggers too late. This doesn't hurt, the check is only there
2137 * to stop root fork bombs.
2138 */
2139 retval = -EAGAIN;
2140 if (data_race(nr_threads >= max_threads))
2141 goto bad_fork_cleanup_count;
2142
2143 delayacct_tsk_init(p); /* Must remain after dup_task_struct() */
2144 p->flags &= ~(PF_SUPERPRIV | PF_WQ_WORKER | PF_IDLE | PF_NO_SETAFFINITY);
2145 p->flags |= PF_FORKNOEXEC;
2146 INIT_LIST_HEAD(&p->children);
2147 INIT_LIST_HEAD(&p->sibling);
2148 rcu_copy_process(p);
2149 p->vfork_done = NULL;
2150 spin_lock_init(&p->alloc_lock);
2151
2152 init_sigpending(&p->pending);
2153
2154 p->utime = p->stime = p->gtime = 0;
2155 #ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME
2156 p->utimescaled = p->stimescaled = 0;
2157 #endif
2158 prev_cputime_init(&p->prev_cputime);
2159
2160 #ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN
2161 seqcount_init(&p->vtime.seqcount);
2162 p->vtime.starttime = 0;
2163 p->vtime.state = VTIME_INACTIVE;
2164 #endif
2165
2166 #ifdef CONFIG_IO_URING
2167 p->io_uring = NULL;
2168 retval = io_uring_fork(p);
2169 if (unlikely(retval))
2170 goto bad_fork_cleanup_delayacct;
2171 retval = -EAGAIN;
2172 #endif
2173
2174 p->default_timer_slack_ns = current->timer_slack_ns;
2175
2176 #ifdef CONFIG_PSI
2177 p->psi_flags = 0;
2178 #endif
2179
2180 task_io_accounting_init(&p->ioac);
2181 acct_clear_integrals(p);
2182
2183 posix_cputimers_init(&p->posix_cputimers);
2184 tick_dep_init_task(p);
2185
2186 p->io_context = NULL;
2187 audit_set_context(p, NULL);
2188 cgroup_fork(p);
2189 if (args->kthread) {
2190 if (!set_kthread_struct(p))
2191 goto bad_fork_cleanup_delayacct;
2192 }
2193 #ifdef CONFIG_NUMA
2194 p->mempolicy = mpol_dup(p->mempolicy);
2195 if (IS_ERR(p->mempolicy)) {
2196 retval = PTR_ERR(p->mempolicy);
2197 p->mempolicy = NULL;
2198 goto bad_fork_cleanup_delayacct;
2199 }
2200 #endif
2201 #ifdef CONFIG_CPUSETS
2202 p->cpuset_mem_spread_rotor = NUMA_NO_NODE;
2203 seqcount_spinlock_init(&p->mems_allowed_seq, &p->alloc_lock);
2204 #endif
2205 #ifdef CONFIG_TRACE_IRQFLAGS
2206 memset(&p->irqtrace, 0, sizeof(p->irqtrace));
2207 p->irqtrace.hardirq_disable_ip = _THIS_IP_;
2208 p->irqtrace.softirq_enable_ip = _THIS_IP_;
2209 p->softirqs_enabled = 1;
2210 p->softirq_context = 0;
2211 #endif
2212
2213 p->pagefault_disabled = 0;
2214
2215 lockdep_init_task(p);
2216
2217 p->blocked_on = NULL; /* not blocked yet */
2218
2219 #ifdef CONFIG_BCACHE
2220 p->sequential_io = 0;
2221 p->sequential_io_avg = 0;
2222 #endif
2223 #ifdef CONFIG_BPF_SYSCALL
2224 RCU_INIT_POINTER(p->bpf_storage, NULL);
2225 p->bpf_ctx = NULL;
2226 #endif
2227
2228 unwind_task_init(p);
2229
2230 /* Perform scheduler related setup. Assign this task to a CPU. */
2231 retval = sched_fork(clone_flags, p);
2232 if (retval)
2233 goto bad_fork_cleanup_policy;
2234
2235 retval = perf_event_init_task(p, clone_flags);
2236 if (retval)
2237 goto bad_fork_sched_cancel_fork;
2238 retval = audit_alloc(p);
2239 if (retval)
2240 goto bad_fork_cleanup_perf;
2241 /* copy all the process information */
2242 shm_init_task(p);
2243 retval = security_task_alloc(p, clone_flags);
2244 if (retval)
2245 goto bad_fork_cleanup_audit;
2246 retval = copy_semundo(clone_flags, p);
2247 if (retval)
2248 goto bad_fork_cleanup_security;
2249 retval = copy_files(clone_flags, p, args->no_files);
2250 if (retval)
2251 goto bad_fork_cleanup_semundo;
2252 retval = copy_fs(clone_flags, p);
2253 if (retval)
2254 goto bad_fork_cleanup_files;
2255 retval = copy_sighand(clone_flags, p);
2256 if (retval)
2257 goto bad_fork_cleanup_fs;
2258 retval = copy_signal(clone_flags, p);
2259 if (retval)
2260 goto bad_fork_cleanup_sighand;
2261 retval = copy_mm(clone_flags, p);
2262 if (retval)
2263 goto bad_fork_cleanup_signal;
2264 retval = copy_namespaces(clone_flags, p);
2265 if (retval)
2266 goto bad_fork_cleanup_mm;
2267 retval = copy_io(clone_flags, p);
2268 if (retval)
2269 goto bad_fork_cleanup_namespaces;
2270 retval = copy_thread(p, args);
2271 if (retval)
2272 goto bad_fork_cleanup_io;
2273
2274 stackleak_task_init(p);
2275
2276 if (pid != &init_struct_pid) {
2277 pid = alloc_pid(p->nsproxy->pid_ns_for_children, args->set_tid,
2278 args->set_tid_size);
2279 if (IS_ERR(pid)) {
2280 retval = PTR_ERR(pid);
2281 goto bad_fork_cleanup_thread;
2282 }
2283 }
2284
2285 /*
2286 * This has to happen after we've potentially unshared the file
2287 * descriptor table (so that the pidfd doesn't leak into the child
2288 * if the fd table isn't shared).
2289 */
2290 if (clone_flags & CLONE_PIDFD) {
2291 unsigned flags = PIDFD_STALE;
2292
2293 if (clone_flags & CLONE_THREAD)
2294 flags |= PIDFD_THREAD;
2295 if (clone_flags & CLONE_PIDFD_AUTOKILL)
2296 flags |= PIDFD_AUTOKILL;
2297
2298 /*
2299 * Note that no task has been attached to @pid yet indicate
2300 * that via CLONE_PIDFD.
2301 */
2302 retval = pidfd_prepare(pid, flags, &pidfile);
2303 if (retval < 0)
2304 goto bad_fork_free_pid;
2305 pidfd = retval;
2306
2307 retval = put_user(pidfd, args->pidfd);
2308 if (retval)
2309 goto bad_fork_put_pidfd;
2310 }
2311
2312 #ifdef CONFIG_BLOCK
2313 p->plug = NULL;
2314 #endif
2315 futex_init_task(p);
2316
2317 /*
2318 * sigaltstack should be cleared when sharing the same VM
2319 */
2320 if ((clone_flags & (CLONE_VM|CLONE_VFORK)) == CLONE_VM)
2321 sas_ss_reset(p);
2322
2323 /*
2324 * Syscall tracing and stepping should be turned off in the
2325 * child regardless of CLONE_PTRACE.
2326 */
2327 user_disable_single_step(p);
2328 clear_task_syscall_work(p, SYSCALL_TRACE);
2329 #if defined(CONFIG_GENERIC_ENTRY) || defined(TIF_SYSCALL_EMU)
2330 clear_task_syscall_work(p, SYSCALL_EMU);
2331 #endif
2332 clear_tsk_latency_tracing(p);
2333
2334 /* ok, now we should be set up.. */
2335 p->pid = pid_nr(pid);
2336 if (clone_flags & CLONE_THREAD) {
2337 p->group_leader = current->group_leader;
2338 p->tgid = current->tgid;
2339 } else {
2340 p->group_leader = p;
2341 p->tgid = p->pid;
2342 }
2343
2344 p->nr_dirtied = 0;
2345 p->nr_dirtied_pause = 128 >> (PAGE_SHIFT - 10);
2346 p->dirty_paused_when = 0;
2347
2348 p->pdeath_signal = 0;
2349 p->task_works = NULL;
2350 clear_posix_cputimers_work(p);
2351
2352 #ifdef CONFIG_KRETPROBES
2353 p->kretprobe_instances.first = NULL;
2354 #endif
2355 #ifdef CONFIG_RETHOOK
2356 p->rethooks.first = NULL;
2357 #endif
2358
2359 /*
2360 * Ensure that the cgroup subsystem policies allow the new process to be
2361 * forked. It should be noted that the new process's css_set can be changed
2362 * between here and cgroup_post_fork() if an organisation operation is in
2363 * progress.
2364 */
2365 retval = cgroup_can_fork(p, args);
2366 if (retval)
2367 goto bad_fork_put_pidfd;
2368
2369 /*
2370 * Now that the cgroups are pinned, re-clone the parent cgroup and put
2371 * the new task on the correct runqueue. All this *before* the task
2372 * becomes visible.
2373 *
2374 * This isn't part of ->can_fork() because while the re-cloning is
2375 * cgroup specific, it unconditionally needs to place the task on a
2376 * runqueue.
2377 */
2378 retval = sched_cgroup_fork(p, args);
2379 if (retval)
2380 goto bad_fork_cancel_cgroup;
2381
2382 /*
2383 * Allocate a default futex hash for the user process once the first
2384 * thread spawns.
2385 */
2386 if (need_futex_hash_allocate_default(clone_flags)) {
2387 retval = futex_hash_allocate_default();
2388 if (retval)
2389 goto bad_fork_cancel_cgroup;
2390 /*
2391 * If we fail beyond this point we don't free the allocated
2392 * futex hash map. We assume that another thread will be created
2393 * and makes use of it. The hash map will be freed once the main
2394 * thread terminates.
2395 */
2396 }
2397 /*
2398 * From this point on we must avoid any synchronous user-space
2399 * communication until we take the tasklist-lock. In particular, we do
2400 * not want user-space to be able to predict the process start-time by
2401 * stalling fork(2) after we recorded the start_time but before it is
2402 * visible to the system.
2403 */
2404
2405 p->start_time = ktime_get_ns();
2406 p->start_boottime = ktime_get_boottime_ns();
2407
2408 /*
2409 * Make it visible to the rest of the system, but dont wake it up yet.
2410 * Need tasklist lock for parent etc handling!
2411 */
2412 write_lock_irq(&tasklist_lock);
2413
2414 /* CLONE_PARENT re-uses the old parent */
2415 if (clone_flags & (CLONE_PARENT|CLONE_THREAD)) {
2416 p->real_parent = current->real_parent;
2417 p->parent_exec_id = current->parent_exec_id;
2418 if (clone_flags & CLONE_THREAD)
2419 p->exit_signal = -1;
2420 else
2421 p->exit_signal = current->group_leader->exit_signal;
2422 } else {
2423 p->real_parent = current;
2424 p->parent_exec_id = current->self_exec_id;
2425 p->exit_signal = args->exit_signal;
2426 }
2427
2428 klp_copy_process(p);
2429
2430 sched_core_fork(p);
2431
2432 spin_lock(¤t->sighand->siglock);
2433
2434 rv_task_fork(p);
2435
2436 rseq_fork(p, clone_flags);
2437
2438 /* Don't start children in a dying pid namespace */
2439 if (unlikely(!(ns_of_pid(pid)->pid_allocated & PIDNS_ADDING))) {
2440 retval = -ENOMEM;
2441 goto bad_fork_core_free;
2442 }
2443
2444 /* Let kill terminate clone/fork in the middle */
2445 if (fatal_signal_pending(current)) {
2446 retval = -EINTR;
2447 goto bad_fork_core_free;
2448 }
2449
2450 /* No more failure paths after this point. */
2451
2452 /*
2453 * Copy seccomp details explicitly here, in case they were changed
2454 * before holding sighand lock.
2455 */
2456 copy_seccomp(p);
2457
2458 if (clone_flags & CLONE_NNP)
2459 task_set_no_new_privs(p);
2460
2461 init_task_pid_links(p);
2462 if (likely(p->pid)) {
2463 ptrace_init_task(p, (clone_flags & CLONE_PTRACE) || trace);
2464
2465 init_task_pid(p, PIDTYPE_PID, pid);
2466 if (thread_group_leader(p)) {
2467 init_task_pid(p, PIDTYPE_TGID, pid);
2468 init_task_pid(p, PIDTYPE_PGID, task_pgrp(current));
2469 init_task_pid(p, PIDTYPE_SID, task_session(current));
2470
2471 if (is_child_reaper(pid)) {
2472 struct pid_namespace *ns = ns_of_pid(pid);
2473
2474 ASSERT_EXCLUSIVE_WRITER(ns->child_reaper);
2475 WRITE_ONCE(ns->child_reaper, p);
2476 p->signal->flags |= SIGNAL_UNKILLABLE;
2477 }
2478 p->signal->shared_pending.signal = delayed.signal;
2479 p->signal->tty = tty_kref_get(current->signal->tty);
2480 /*
2481 * Inherit has_child_subreaper flag under the same
2482 * tasklist_lock with adding child to the process tree
2483 * for propagate_has_child_subreaper optimization.
2484 */
2485 p->signal->has_child_subreaper = p->real_parent->signal->has_child_subreaper ||
2486 p->real_parent->signal->is_child_subreaper;
2487 if (clone_flags & CLONE_AUTOREAP)
2488 p->signal->autoreap = 1;
2489 list_add_tail(&p->sibling, &p->real_parent->children);
2490 list_add_tail_rcu(&p->tasks, &init_task.tasks);
2491 attach_pid(p, PIDTYPE_TGID);
2492 attach_pid(p, PIDTYPE_PGID);
2493 attach_pid(p, PIDTYPE_SID);
2494 __this_cpu_inc(process_counts);
2495 } else {
2496 current->signal->nr_threads++;
2497 current->signal->quick_threads++;
2498 atomic_inc(¤t->signal->live);
2499 refcount_inc(¤t->signal->sigcnt);
2500 task_join_group_stop(p);
2501 list_add_tail_rcu(&p->thread_node,
2502 &p->signal->thread_head);
2503 }
2504 attach_pid(p, PIDTYPE_PID);
2505 nr_threads++;
2506 }
2507 total_forks++;
2508 hlist_del_init(&delayed.node);
2509 spin_unlock(¤t->sighand->siglock);
2510 syscall_tracepoint_update(p);
2511 write_unlock_irq(&tasklist_lock);
2512
2513 if (pidfile)
2514 fd_install(pidfd, pidfile);
2515
2516 proc_fork_connector(p);
2517 /*
2518 * sched_ext needs @p to be associated with its cgroup in its post_fork
2519 * hook. cgroup_post_fork() should come before sched_post_fork().
2520 */
2521 cgroup_post_fork(p, args);
2522 sched_post_fork(p);
2523 perf_event_fork(p);
2524
2525 trace_task_newtask(p, clone_flags);
2526 uprobe_copy_process(p, clone_flags);
2527 user_events_fork(p, clone_flags);
2528
2529 copy_oom_score_adj(clone_flags, p);
2530
2531 return p;
2532
2533 bad_fork_core_free:
2534 sched_core_free(p);
2535 spin_unlock(¤t->sighand->siglock);
2536 write_unlock_irq(&tasklist_lock);
2537 bad_fork_cancel_cgroup:
2538 cgroup_cancel_fork(p, args);
2539 bad_fork_put_pidfd:
2540 if (clone_flags & CLONE_PIDFD) {
2541 fput(pidfile);
2542 put_unused_fd(pidfd);
2543 }
2544 bad_fork_free_pid:
2545 if (pid != &init_struct_pid)
2546 free_pid(pid);
2547 bad_fork_cleanup_thread:
2548 exit_thread(p);
2549 bad_fork_cleanup_io:
2550 if (p->io_context)
2551 exit_io_context(p);
2552 bad_fork_cleanup_namespaces:
2553 exit_nsproxy_namespaces(p);
2554 bad_fork_cleanup_mm:
2555 if (p->mm) {
2556 mm_clear_owner(p->mm, p);
2557 mmput(p->mm);
2558 }
2559 bad_fork_cleanup_signal:
2560 if (!(clone_flags & CLONE_THREAD))
2561 free_signal_struct(p->signal);
2562 bad_fork_cleanup_sighand:
2563 __cleanup_sighand(p->sighand);
2564 bad_fork_cleanup_fs:
2565 exit_fs(p); /* blocking */
2566 bad_fork_cleanup_files:
2567 exit_files(p); /* blocking */
2568 bad_fork_cleanup_semundo:
2569 exit_sem(p);
2570 bad_fork_cleanup_security:
2571 security_task_free(p);
2572 bad_fork_cleanup_audit:
2573 audit_free(p);
2574 bad_fork_cleanup_perf:
2575 perf_event_free_task(p);
2576 bad_fork_sched_cancel_fork:
2577 sched_cancel_fork(p);
2578 bad_fork_cleanup_policy:
2579 lockdep_free_task(p);
2580 #ifdef CONFIG_NUMA
2581 mpol_put(p->mempolicy);
2582 #endif
2583 bad_fork_cleanup_delayacct:
2584 io_uring_free(p);
2585 delayacct_tsk_free(p);
2586 bad_fork_cleanup_count:
2587 dec_rlimit_ucounts(task_ucounts(p), UCOUNT_RLIMIT_NPROC, 1);
2588 exit_cred_namespaces(p);
2589 exit_creds(p);
2590 bad_fork_free:
2591 WRITE_ONCE(p->__state, TASK_DEAD);
2592 exit_task_stack_account(p);
2593 put_task_stack(p);
2594 delayed_free_task(p);
2595 fork_out:
2596 spin_lock_irq(¤t->sighand->siglock);
2597 hlist_del_init(&delayed.node);
2598 spin_unlock_irq(¤t->sighand->siglock);
2599 return ERR_PTR(retval);
2600 }
2601
init_idle_pids(struct task_struct * idle)2602 static inline void init_idle_pids(struct task_struct *idle)
2603 {
2604 enum pid_type type;
2605
2606 for (type = PIDTYPE_PID; type < PIDTYPE_MAX; ++type) {
2607 INIT_HLIST_NODE(&idle->pid_links[type]); /* not really needed */
2608 init_task_pid(idle, type, &init_struct_pid);
2609 }
2610 }
2611
idle_dummy(void * dummy)2612 static int idle_dummy(void *dummy)
2613 {
2614 /* This function is never called */
2615 return 0;
2616 }
2617
fork_idle(int cpu)2618 struct task_struct * __init fork_idle(int cpu)
2619 {
2620 struct task_struct *task;
2621 struct kernel_clone_args args = {
2622 .flags = CLONE_VM,
2623 .fn = &idle_dummy,
2624 .fn_arg = NULL,
2625 .kthread = 1,
2626 .idle = 1,
2627 };
2628
2629 task = copy_process(&init_struct_pid, 0, cpu_to_node(cpu), &args);
2630 if (!IS_ERR(task)) {
2631 init_idle_pids(task);
2632 init_idle(task, cpu);
2633 }
2634
2635 return task;
2636 }
2637
2638 /*
2639 * This is like kernel_clone(), but shaved down and tailored to just
2640 * creating io_uring workers. It returns a created task, or an error pointer.
2641 * The returned task is inactive, and the caller must fire it up through
2642 * wake_up_new_task(p). All signals are blocked in the created task.
2643 */
create_io_thread(int (* fn)(void *),void * arg,int node)2644 struct task_struct *create_io_thread(int (*fn)(void *), void *arg, int node)
2645 {
2646 unsigned long flags = CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|
2647 CLONE_IO|CLONE_VM|CLONE_UNTRACED;
2648 struct kernel_clone_args args = {
2649 .flags = flags,
2650 .fn = fn,
2651 .fn_arg = arg,
2652 .io_thread = 1,
2653 .user_worker = 1,
2654 };
2655
2656 return copy_process(NULL, 0, node, &args);
2657 }
2658
2659 /*
2660 * Ok, this is the main fork-routine.
2661 *
2662 * It copies the process, and if successful kick-starts
2663 * it and waits for it to finish using the VM if required.
2664 *
2665 * args->exit_signal is expected to be checked for sanity by the caller.
2666 */
kernel_clone(struct kernel_clone_args * args)2667 pid_t kernel_clone(struct kernel_clone_args *args)
2668 {
2669 u64 clone_flags = args->flags;
2670 struct completion vfork;
2671 struct pid *pid;
2672 struct task_struct *p;
2673 int trace = 0;
2674 pid_t nr;
2675
2676 /*
2677 * Creating an empty mount namespace implies creating a new mount
2678 * namespace. Set this before copy_process() so that the
2679 * CLONE_NEWNS|CLONE_FS mutual exclusion check works correctly.
2680 */
2681 if (clone_flags & CLONE_EMPTY_MNTNS) {
2682 clone_flags |= CLONE_NEWNS;
2683 args->flags = clone_flags;
2684 }
2685
2686 /*
2687 * For legacy clone() calls, CLONE_PIDFD uses the parent_tid argument
2688 * to return the pidfd. Hence, CLONE_PIDFD and CLONE_PARENT_SETTID are
2689 * mutually exclusive. With clone3() CLONE_PIDFD has grown a separate
2690 * field in struct clone_args and it still doesn't make sense to have
2691 * them both point at the same memory location. Performing this check
2692 * here has the advantage that we don't need to have a separate helper
2693 * to check for legacy clone().
2694 */
2695 if ((clone_flags & CLONE_PIDFD) &&
2696 (clone_flags & CLONE_PARENT_SETTID) &&
2697 (args->pidfd == args->parent_tid))
2698 return -EINVAL;
2699
2700 /*
2701 * Determine whether and which event to report to ptracer. When
2702 * called from kernel_thread or CLONE_UNTRACED is explicitly
2703 * requested, no event is reported; otherwise, report if the event
2704 * for the type of forking is enabled.
2705 */
2706 if (!(clone_flags & CLONE_UNTRACED)) {
2707 if (clone_flags & CLONE_VFORK)
2708 trace = PTRACE_EVENT_VFORK;
2709 else if (args->exit_signal != SIGCHLD)
2710 trace = PTRACE_EVENT_CLONE;
2711 else
2712 trace = PTRACE_EVENT_FORK;
2713
2714 if (likely(!ptrace_event_enabled(current, trace)))
2715 trace = 0;
2716 }
2717
2718 p = copy_process(NULL, trace, NUMA_NO_NODE, args);
2719 add_latent_entropy();
2720
2721 if (IS_ERR(p))
2722 return PTR_ERR(p);
2723
2724 /*
2725 * Do this prior waking up the new thread - the thread pointer
2726 * might get invalid after that point, if the thread exits quickly.
2727 */
2728 trace_sched_process_fork(current, p);
2729
2730 pid = get_task_pid(p, PIDTYPE_PID);
2731 nr = pid_vnr(pid);
2732
2733 if (clone_flags & CLONE_PARENT_SETTID)
2734 put_user(nr, args->parent_tid);
2735
2736 if (clone_flags & CLONE_VFORK) {
2737 p->vfork_done = &vfork;
2738 init_completion(&vfork);
2739 get_task_struct(p);
2740 }
2741
2742 if (IS_ENABLED(CONFIG_LRU_GEN_WALKS_MMU) && !(clone_flags & CLONE_VM)) {
2743 /* lock the task to synchronize with memcg migration */
2744 task_lock(p);
2745 lru_gen_add_mm(p->mm);
2746 task_unlock(p);
2747 }
2748
2749 wake_up_new_task(p);
2750
2751 /* forking complete and child started to run, tell ptracer */
2752 if (unlikely(trace))
2753 ptrace_event_pid(trace, pid);
2754
2755 if (clone_flags & CLONE_VFORK) {
2756 if (!wait_for_vfork_done(p, &vfork))
2757 ptrace_event_pid(PTRACE_EVENT_VFORK_DONE, pid);
2758 }
2759
2760 put_pid(pid);
2761 return nr;
2762 }
2763
2764 /*
2765 * Create a kernel thread.
2766 */
kernel_thread(int (* fn)(void *),void * arg,const char * name,unsigned long flags)2767 pid_t kernel_thread(int (*fn)(void *), void *arg, const char *name,
2768 unsigned long flags)
2769 {
2770 struct kernel_clone_args args = {
2771 .flags = ((flags | CLONE_VM | CLONE_UNTRACED) & ~CSIGNAL),
2772 .exit_signal = (flags & CSIGNAL),
2773 .fn = fn,
2774 .fn_arg = arg,
2775 .name = name,
2776 .kthread = 1,
2777 };
2778
2779 return kernel_clone(&args);
2780 }
2781
2782 /*
2783 * Create a user mode thread.
2784 */
user_mode_thread(int (* fn)(void *),void * arg,unsigned long flags)2785 pid_t user_mode_thread(int (*fn)(void *), void *arg, unsigned long flags)
2786 {
2787 struct kernel_clone_args args = {
2788 .flags = ((flags | CLONE_VM | CLONE_UNTRACED) & ~CSIGNAL),
2789 .exit_signal = (flags & CSIGNAL),
2790 .fn = fn,
2791 .fn_arg = arg,
2792 };
2793
2794 return kernel_clone(&args);
2795 }
2796
2797 #ifdef __ARCH_WANT_SYS_FORK
SYSCALL_DEFINE0(fork)2798 SYSCALL_DEFINE0(fork)
2799 {
2800 #ifdef CONFIG_MMU
2801 struct kernel_clone_args args = {
2802 .exit_signal = SIGCHLD,
2803 };
2804
2805 return kernel_clone(&args);
2806 #else
2807 /* can not support in nommu mode */
2808 return -EINVAL;
2809 #endif
2810 }
2811 #endif
2812
2813 #ifdef __ARCH_WANT_SYS_VFORK
SYSCALL_DEFINE0(vfork)2814 SYSCALL_DEFINE0(vfork)
2815 {
2816 struct kernel_clone_args args = {
2817 .flags = CLONE_VFORK | CLONE_VM,
2818 .exit_signal = SIGCHLD,
2819 };
2820
2821 return kernel_clone(&args);
2822 }
2823 #endif
2824
2825 #ifdef __ARCH_WANT_SYS_CLONE
2826 #ifdef CONFIG_CLONE_BACKWARDS
SYSCALL_DEFINE5(clone,unsigned long,clone_flags,unsigned long,newsp,int __user *,parent_tidptr,unsigned long,tls,int __user *,child_tidptr)2827 SYSCALL_DEFINE5(clone, unsigned long, clone_flags, unsigned long, newsp,
2828 int __user *, parent_tidptr,
2829 unsigned long, tls,
2830 int __user *, child_tidptr)
2831 #elif defined(CONFIG_CLONE_BACKWARDS2)
2832 SYSCALL_DEFINE5(clone, unsigned long, newsp, unsigned long, clone_flags,
2833 int __user *, parent_tidptr,
2834 int __user *, child_tidptr,
2835 unsigned long, tls)
2836 #elif defined(CONFIG_CLONE_BACKWARDS3)
2837 SYSCALL_DEFINE6(clone, unsigned long, clone_flags, unsigned long, newsp,
2838 int, stack_size,
2839 int __user *, parent_tidptr,
2840 int __user *, child_tidptr,
2841 unsigned long, tls)
2842 #else
2843 SYSCALL_DEFINE5(clone, unsigned long, clone_flags, unsigned long, newsp,
2844 int __user *, parent_tidptr,
2845 int __user *, child_tidptr,
2846 unsigned long, tls)
2847 #endif
2848 {
2849 struct kernel_clone_args args = {
2850 .flags = (lower_32_bits(clone_flags) & ~CSIGNAL),
2851 .pidfd = parent_tidptr,
2852 .child_tid = child_tidptr,
2853 .parent_tid = parent_tidptr,
2854 .exit_signal = (lower_32_bits(clone_flags) & CSIGNAL),
2855 .stack = newsp,
2856 .tls = tls,
2857 };
2858
2859 return kernel_clone(&args);
2860 }
2861 #endif
2862
copy_clone_args_from_user(struct kernel_clone_args * kargs,struct clone_args __user * uargs,size_t usize)2863 static noinline int copy_clone_args_from_user(struct kernel_clone_args *kargs,
2864 struct clone_args __user *uargs,
2865 size_t usize)
2866 {
2867 int err;
2868 struct clone_args args;
2869 pid_t *kset_tid = kargs->set_tid;
2870
2871 BUILD_BUG_ON(offsetofend(struct clone_args, tls) !=
2872 CLONE_ARGS_SIZE_VER0);
2873 BUILD_BUG_ON(offsetofend(struct clone_args, set_tid_size) !=
2874 CLONE_ARGS_SIZE_VER1);
2875 BUILD_BUG_ON(offsetofend(struct clone_args, cgroup) !=
2876 CLONE_ARGS_SIZE_VER2);
2877 BUILD_BUG_ON(sizeof(struct clone_args) != CLONE_ARGS_SIZE_VER2);
2878
2879 if (unlikely(usize > PAGE_SIZE))
2880 return -E2BIG;
2881 if (unlikely(usize < CLONE_ARGS_SIZE_VER0))
2882 return -EINVAL;
2883
2884 err = copy_struct_from_user(&args, sizeof(args), uargs, usize);
2885 if (err)
2886 return err;
2887
2888 if (unlikely(args.set_tid_size > MAX_PID_NS_LEVEL))
2889 return -EINVAL;
2890
2891 if (unlikely(!args.set_tid && args.set_tid_size > 0))
2892 return -EINVAL;
2893
2894 if (unlikely(args.set_tid && args.set_tid_size == 0))
2895 return -EINVAL;
2896
2897 /*
2898 * Verify that higher 32bits of exit_signal are unset and that
2899 * it is a valid signal
2900 */
2901 if (unlikely((args.exit_signal & ~((u64)CSIGNAL)) ||
2902 !valid_signal(args.exit_signal)))
2903 return -EINVAL;
2904
2905 if ((args.flags & CLONE_INTO_CGROUP) &&
2906 (args.cgroup > INT_MAX || usize < CLONE_ARGS_SIZE_VER2))
2907 return -EINVAL;
2908
2909 *kargs = (struct kernel_clone_args){
2910 .flags = args.flags,
2911 .pidfd = u64_to_user_ptr(args.pidfd),
2912 .child_tid = u64_to_user_ptr(args.child_tid),
2913 .parent_tid = u64_to_user_ptr(args.parent_tid),
2914 .exit_signal = args.exit_signal,
2915 .stack = args.stack,
2916 .stack_size = args.stack_size,
2917 .tls = args.tls,
2918 .set_tid_size = args.set_tid_size,
2919 .cgroup = args.cgroup,
2920 };
2921
2922 if (args.set_tid &&
2923 copy_from_user(kset_tid, u64_to_user_ptr(args.set_tid),
2924 (kargs->set_tid_size * sizeof(pid_t))))
2925 return -EFAULT;
2926
2927 kargs->set_tid = kset_tid;
2928
2929 return 0;
2930 }
2931
2932 /**
2933 * clone3_stack_valid - check and prepare stack
2934 * @kargs: kernel clone args
2935 *
2936 * Verify that the stack arguments userspace gave us are sane.
2937 * In addition, set the stack direction for userspace since it's easy for us to
2938 * determine.
2939 */
clone3_stack_valid(struct kernel_clone_args * kargs)2940 static inline bool clone3_stack_valid(struct kernel_clone_args *kargs)
2941 {
2942 if (kargs->stack == 0) {
2943 if (kargs->stack_size > 0)
2944 return false;
2945 } else {
2946 if (kargs->stack_size == 0)
2947 return false;
2948
2949 if (!access_ok((void __user *)kargs->stack, kargs->stack_size))
2950 return false;
2951
2952 #if !defined(CONFIG_STACK_GROWSUP)
2953 kargs->stack += kargs->stack_size;
2954 #endif
2955 }
2956
2957 return true;
2958 }
2959
clone3_args_valid(struct kernel_clone_args * kargs)2960 static bool clone3_args_valid(struct kernel_clone_args *kargs)
2961 {
2962 /* Verify that no unknown flags are passed along. */
2963 if (kargs->flags &
2964 ~(CLONE_LEGACY_FLAGS | CLONE_CLEAR_SIGHAND |
2965 CLONE_INTO_CGROUP | CLONE_AUTOREAP | CLONE_NNP |
2966 CLONE_PIDFD_AUTOKILL | CLONE_EMPTY_MNTNS))
2967 return false;
2968
2969 /*
2970 * - make the CLONE_DETACHED bit reusable for clone3
2971 * - make the CSIGNAL bits reusable for clone3
2972 */
2973 if (kargs->flags & (CLONE_DETACHED | (CSIGNAL & (~CLONE_NEWTIME))))
2974 return false;
2975
2976 if ((kargs->flags & (CLONE_SIGHAND | CLONE_CLEAR_SIGHAND)) ==
2977 (CLONE_SIGHAND | CLONE_CLEAR_SIGHAND))
2978 return false;
2979
2980 if ((kargs->flags & (CLONE_THREAD | CLONE_PARENT)) &&
2981 kargs->exit_signal)
2982 return false;
2983
2984 if (!clone3_stack_valid(kargs))
2985 return false;
2986
2987 return true;
2988 }
2989
2990 /**
2991 * sys_clone3 - create a new process with specific properties
2992 * @uargs: argument structure
2993 * @size: size of @uargs
2994 *
2995 * clone3() is the extensible successor to clone()/clone2().
2996 * It takes a struct as argument that is versioned by its size.
2997 *
2998 * Return: On success, a positive PID for the child process.
2999 * On error, a negative errno number.
3000 */
SYSCALL_DEFINE2(clone3,struct clone_args __user *,uargs,size_t,size)3001 SYSCALL_DEFINE2(clone3, struct clone_args __user *, uargs, size_t, size)
3002 {
3003 int err;
3004
3005 struct kernel_clone_args kargs;
3006 pid_t set_tid[MAX_PID_NS_LEVEL];
3007
3008 #ifdef __ARCH_BROKEN_SYS_CLONE3
3009 #warning clone3() entry point is missing, please fix
3010 return -ENOSYS;
3011 #endif
3012
3013 kargs.set_tid = set_tid;
3014
3015 err = copy_clone_args_from_user(&kargs, uargs, size);
3016 if (err)
3017 return err;
3018
3019 if (!clone3_args_valid(&kargs))
3020 return -EINVAL;
3021
3022 return kernel_clone(&kargs);
3023 }
3024
walk_process_tree(struct task_struct * top,proc_visitor visitor,void * data)3025 void walk_process_tree(struct task_struct *top, proc_visitor visitor, void *data)
3026 {
3027 struct task_struct *leader, *parent, *child;
3028 int res;
3029
3030 read_lock(&tasklist_lock);
3031 leader = top = top->group_leader;
3032 down:
3033 for_each_thread(leader, parent) {
3034 list_for_each_entry(child, &parent->children, sibling) {
3035 res = visitor(child, data);
3036 if (res) {
3037 if (res < 0)
3038 goto out;
3039 leader = child;
3040 goto down;
3041 }
3042 up:
3043 ;
3044 }
3045 }
3046
3047 if (leader != top) {
3048 child = leader;
3049 parent = child->real_parent;
3050 leader = parent->group_leader;
3051 goto up;
3052 }
3053 out:
3054 read_unlock(&tasklist_lock);
3055 }
3056
3057 #ifndef ARCH_MIN_MMSTRUCT_ALIGN
3058 #define ARCH_MIN_MMSTRUCT_ALIGN 0
3059 #endif
3060
sighand_ctor(void * data)3061 static void sighand_ctor(void *data)
3062 {
3063 struct sighand_struct *sighand = data;
3064
3065 spin_lock_init(&sighand->siglock);
3066 init_waitqueue_head(&sighand->signalfd_wqh);
3067 }
3068
mm_cache_init(void)3069 void __init mm_cache_init(void)
3070 {
3071 unsigned int mm_size;
3072
3073 /*
3074 * The mm_cpumask is located at the end of mm_struct, and is
3075 * dynamically sized based on the maximum CPU number this system
3076 * can have, taking hotplug into account (nr_cpu_ids).
3077 */
3078 mm_size = sizeof(struct mm_struct) + cpumask_size() + mm_cid_size();
3079
3080 mm_cachep = kmem_cache_create_usercopy("mm_struct",
3081 mm_size, ARCH_MIN_MMSTRUCT_ALIGN,
3082 SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT,
3083 offsetof(struct mm_struct, saved_auxv),
3084 sizeof_field(struct mm_struct, saved_auxv),
3085 NULL);
3086 }
3087
proc_caches_init(void)3088 void __init proc_caches_init(void)
3089 {
3090 sighand_cachep = kmem_cache_create("sighand_cache",
3091 sizeof(struct sighand_struct), 0,
3092 SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_TYPESAFE_BY_RCU|
3093 SLAB_ACCOUNT, sighand_ctor);
3094 signal_cachep = kmem_cache_create("signal_cache",
3095 sizeof(struct signal_struct), 0,
3096 SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT,
3097 NULL);
3098 files_cachep = kmem_cache_create("files_cache",
3099 sizeof(struct files_struct), 0,
3100 SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT,
3101 NULL);
3102 fs_cachep = kmem_cache_create("fs_cache",
3103 sizeof(struct fs_struct), 0,
3104 SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT,
3105 NULL);
3106 mmap_init();
3107 nsproxy_cache_init();
3108 }
3109
3110 /*
3111 * Check constraints on flags passed to the unshare system call.
3112 */
check_unshare_flags(unsigned long unshare_flags)3113 static int check_unshare_flags(unsigned long unshare_flags)
3114 {
3115 if (unshare_flags & ~(CLONE_THREAD|CLONE_FS|CLONE_SIGHAND|
3116 CLONE_VM|CLONE_FILES|CLONE_SYSVSEM|
3117 CLONE_NS_ALL | UNSHARE_EMPTY_MNTNS))
3118 return -EINVAL;
3119 /*
3120 * Not implemented, but pretend it works if there is nothing
3121 * to unshare. Note that unsharing the address space or the
3122 * signal handlers also need to unshare the signal queues (aka
3123 * CLONE_THREAD).
3124 */
3125 if (unshare_flags & (CLONE_THREAD | CLONE_SIGHAND | CLONE_VM)) {
3126 if (!thread_group_empty(current))
3127 return -EINVAL;
3128 }
3129 if (unshare_flags & (CLONE_SIGHAND | CLONE_VM)) {
3130 if (refcount_read(¤t->sighand->count) > 1)
3131 return -EINVAL;
3132 }
3133 if (unshare_flags & CLONE_VM) {
3134 if (!current_is_single_threaded())
3135 return -EINVAL;
3136 }
3137
3138 return 0;
3139 }
3140
3141 /*
3142 * Unshare the filesystem structure if it is being shared
3143 */
unshare_fs(unsigned long unshare_flags,struct fs_struct ** new_fsp)3144 static int unshare_fs(unsigned long unshare_flags, struct fs_struct **new_fsp)
3145 {
3146 struct fs_struct *fs = current->fs;
3147
3148 if (!(unshare_flags & CLONE_FS) || !fs)
3149 return 0;
3150
3151 /* don't need lock here; in the worst case we'll do useless copy */
3152 if (!(unshare_flags & CLONE_NEWNS) && fs->users == 1)
3153 return 0;
3154
3155 *new_fsp = copy_fs_struct(fs);
3156 if (!*new_fsp)
3157 return -ENOMEM;
3158
3159 return 0;
3160 }
3161
3162 /*
3163 * Unshare file descriptor table if it is being shared
3164 */
unshare_fd(unsigned long unshare_flags,struct files_struct ** new_fdp)3165 static int unshare_fd(unsigned long unshare_flags, struct files_struct **new_fdp)
3166 {
3167 struct files_struct *fd = current->files;
3168
3169 if ((unshare_flags & CLONE_FILES) &&
3170 (fd && atomic_read(&fd->count) > 1)) {
3171 fd = dup_fd(fd, NULL);
3172 if (IS_ERR(fd))
3173 return PTR_ERR(fd);
3174 *new_fdp = fd;
3175 }
3176
3177 return 0;
3178 }
3179
3180 /*
3181 * unshare allows a process to 'unshare' part of the process
3182 * context which was originally shared using clone. copy_*
3183 * functions used by kernel_clone() cannot be used here directly
3184 * because they modify an inactive task_struct that is being
3185 * constructed. Here we are modifying the current, active,
3186 * task_struct.
3187 */
ksys_unshare(unsigned long unshare_flags)3188 int ksys_unshare(unsigned long unshare_flags)
3189 {
3190 struct fs_struct *fs, *new_fs = NULL;
3191 struct files_struct *new_fd = NULL;
3192 struct cred *new_cred = NULL;
3193 struct nsproxy *new_nsproxy = NULL;
3194 int do_sysvsem = 0;
3195 int err;
3196
3197 /*
3198 * If unsharing a user namespace must also unshare the thread group
3199 * and unshare the filesystem root and working directories.
3200 */
3201 if (unshare_flags & CLONE_NEWUSER)
3202 unshare_flags |= CLONE_THREAD | CLONE_FS;
3203 /*
3204 * If unsharing vm, must also unshare signal handlers.
3205 */
3206 if (unshare_flags & CLONE_VM)
3207 unshare_flags |= CLONE_SIGHAND;
3208 /*
3209 * If unsharing a signal handlers, must also unshare the signal queues.
3210 */
3211 if (unshare_flags & CLONE_SIGHAND)
3212 unshare_flags |= CLONE_THREAD;
3213 /*
3214 * If unsharing namespace, must also unshare filesystem information.
3215 */
3216 if (unshare_flags & UNSHARE_EMPTY_MNTNS)
3217 unshare_flags |= CLONE_NEWNS;
3218 if (unshare_flags & CLONE_NEWNS)
3219 unshare_flags |= CLONE_FS;
3220
3221 err = check_unshare_flags(unshare_flags);
3222 if (err)
3223 goto bad_unshare_out;
3224 /*
3225 * CLONE_NEWIPC must also detach from the undolist: after switching
3226 * to a new ipc namespace, the semaphore arrays from the old
3227 * namespace are unreachable.
3228 */
3229 if (unshare_flags & (CLONE_NEWIPC|CLONE_SYSVSEM))
3230 do_sysvsem = 1;
3231 err = unshare_fs(unshare_flags, &new_fs);
3232 if (err)
3233 goto bad_unshare_out;
3234 err = unshare_fd(unshare_flags, &new_fd);
3235 if (err)
3236 goto bad_unshare_cleanup_fs;
3237 err = unshare_userns(unshare_flags, &new_cred);
3238 if (err)
3239 goto bad_unshare_cleanup_fd;
3240 err = unshare_nsproxy_namespaces(unshare_flags, &new_nsproxy,
3241 new_cred, new_fs);
3242 if (err)
3243 goto bad_unshare_cleanup_cred;
3244
3245 if (new_cred) {
3246 err = set_cred_ucounts(new_cred);
3247 if (err)
3248 goto bad_unshare_cleanup_cred;
3249 }
3250
3251 if (new_fs || new_fd || do_sysvsem || new_cred || new_nsproxy) {
3252 if (do_sysvsem) {
3253 /*
3254 * CLONE_SYSVSEM is equivalent to sys_exit().
3255 */
3256 exit_sem(current);
3257 }
3258 if (unshare_flags & CLONE_NEWIPC) {
3259 /* Orphan segments in old ns (see sem above). */
3260 exit_shm(current);
3261 shm_init_task(current);
3262 }
3263
3264 if (new_nsproxy)
3265 switch_task_namespaces(current, new_nsproxy);
3266
3267 task_lock(current);
3268
3269 if (new_fs) {
3270 fs = current->fs;
3271 read_seqlock_excl(&fs->seq);
3272 current->fs = new_fs;
3273 if (--fs->users)
3274 new_fs = NULL;
3275 else
3276 new_fs = fs;
3277 read_sequnlock_excl(&fs->seq);
3278 }
3279
3280 if (new_fd)
3281 swap(current->files, new_fd);
3282
3283 task_unlock(current);
3284
3285 if (new_cred) {
3286 /* Install the new user namespace */
3287 commit_creds(new_cred);
3288 new_cred = NULL;
3289 }
3290 }
3291
3292 perf_event_namespaces(current);
3293
3294 bad_unshare_cleanup_cred:
3295 if (new_cred)
3296 put_cred(new_cred);
3297 bad_unshare_cleanup_fd:
3298 if (new_fd)
3299 put_files_struct(new_fd);
3300
3301 bad_unshare_cleanup_fs:
3302 if (new_fs)
3303 free_fs_struct(new_fs);
3304
3305 bad_unshare_out:
3306 return err;
3307 }
3308
SYSCALL_DEFINE1(unshare,unsigned long,unshare_flags)3309 SYSCALL_DEFINE1(unshare, unsigned long, unshare_flags)
3310 {
3311 return ksys_unshare(unshare_flags);
3312 }
3313
3314 /*
3315 * Helper to unshare the files of the current task.
3316 * We don't want to expose copy_files internals to
3317 * the exec layer of the kernel.
3318 */
3319
unshare_files(void)3320 int unshare_files(void)
3321 {
3322 struct task_struct *task = current;
3323 struct files_struct *old, *copy = NULL;
3324 int error;
3325
3326 error = unshare_fd(CLONE_FILES, ©);
3327 if (error || !copy)
3328 return error;
3329
3330 old = task->files;
3331 task_lock(task);
3332 task->files = copy;
3333 task_unlock(task);
3334 put_files_struct(old);
3335 return 0;
3336 }
3337
sysctl_max_threads(const struct ctl_table * table,int write,void * buffer,size_t * lenp,loff_t * ppos)3338 static int sysctl_max_threads(const struct ctl_table *table, int write,
3339 void *buffer, size_t *lenp, loff_t *ppos)
3340 {
3341 struct ctl_table t;
3342 int ret;
3343 int threads = max_threads;
3344 int min = 1;
3345 int max = MAX_THREADS;
3346
3347 t = *table;
3348 t.data = &threads;
3349 t.extra1 = &min;
3350 t.extra2 = &max;
3351
3352 ret = proc_dointvec_minmax(&t, write, buffer, lenp, ppos);
3353 if (ret || !write)
3354 return ret;
3355
3356 max_threads = threads;
3357
3358 return 0;
3359 }
3360
3361 static const struct ctl_table fork_sysctl_table[] = {
3362 {
3363 .procname = "threads-max",
3364 .data = NULL,
3365 .maxlen = sizeof(int),
3366 .mode = 0644,
3367 .proc_handler = sysctl_max_threads,
3368 },
3369 };
3370
init_fork_sysctl(void)3371 static int __init init_fork_sysctl(void)
3372 {
3373 register_sysctl_init("kernel", fork_sysctl_table);
3374 return 0;
3375 }
3376
3377 subsys_initcall(init_fork_sysctl);
3378