11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * linux/kernel/fork.c 31da177e4SLinus Torvalds * 41da177e4SLinus Torvalds * Copyright (C) 1991, 1992 Linus Torvalds 51da177e4SLinus Torvalds */ 61da177e4SLinus Torvalds 71da177e4SLinus Torvalds /* 81da177e4SLinus Torvalds * 'fork.c' contains the help-routines for the 'fork' system call 91da177e4SLinus Torvalds * (see also entry.S and others). 101da177e4SLinus Torvalds * Fork is rather simple, once you get the hang of it, but the memory 111da177e4SLinus Torvalds * management can be a bitch. See 'mm/memory.c': 'copy_page_range()' 121da177e4SLinus Torvalds */ 131da177e4SLinus Torvalds 141da177e4SLinus Torvalds #include <linux/slab.h> 154eb5aaa3SIngo Molnar #include <linux/sched/autogroup.h> 166e84f315SIngo Molnar #include <linux/sched/mm.h> 17f7ccbae4SIngo Molnar #include <linux/sched/coredump.h> 188703e8a4SIngo Molnar #include <linux/sched/user.h> 196a3827d7SIngo Molnar #include <linux/sched/numa_balancing.h> 2003441a34SIngo Molnar #include <linux/sched/stat.h> 2129930025SIngo Molnar #include <linux/sched/task.h> 2268db0cf1SIngo Molnar #include <linux/sched/task_stack.h> 2332ef5517SIngo Molnar #include <linux/sched/cputime.h> 24037741a6SIngo Molnar #include <linux/rtmutex.h> 251da177e4SLinus Torvalds #include <linux/init.h> 261da177e4SLinus Torvalds #include <linux/unistd.h> 271da177e4SLinus Torvalds #include <linux/module.h> 281da177e4SLinus Torvalds #include <linux/vmalloc.h> 291da177e4SLinus Torvalds #include <linux/completion.h> 301da177e4SLinus Torvalds #include <linux/personality.h> 311da177e4SLinus Torvalds #include <linux/mempolicy.h> 321da177e4SLinus Torvalds #include <linux/sem.h> 331da177e4SLinus Torvalds #include <linux/file.h> 349f3acc31SAl Viro #include <linux/fdtable.h> 35da9cbc87SJens Axboe #include <linux/iocontext.h> 361da177e4SLinus Torvalds #include <linux/key.h> 371da177e4SLinus Torvalds #include <linux/binfmts.h> 381da177e4SLinus Torvalds #include <linux/mman.h> 39cddb8a5cSAndrea Arcangeli #include <linux/mmu_notifier.h> 40133ff0eaSJérôme Glisse #include <linux/hmm.h> 411da177e4SLinus Torvalds #include <linux/fs.h> 42615d6e87SDavidlohr Bueso #include <linux/mm.h> 43615d6e87SDavidlohr Bueso #include <linux/vmacache.h> 44ab516013SSerge E. Hallyn #include <linux/nsproxy.h> 45c59ede7bSRandy.Dunlap #include <linux/capability.h> 461da177e4SLinus Torvalds #include <linux/cpu.h> 47b4f48b63SPaul Menage #include <linux/cgroup.h> 481da177e4SLinus Torvalds #include <linux/security.h> 49a1e78772SMel Gorman #include <linux/hugetlb.h> 50e2cfabdfSWill Drewry #include <linux/seccomp.h> 511da177e4SLinus Torvalds #include <linux/swap.h> 521da177e4SLinus Torvalds #include <linux/syscalls.h> 531da177e4SLinus Torvalds #include <linux/jiffies.h> 541da177e4SLinus Torvalds #include <linux/futex.h> 558141c7f3SLinus Torvalds #include <linux/compat.h> 56207205a2SEric Dumazet #include <linux/kthread.h> 577c3ab738SAndrew Morton #include <linux/task_io_accounting_ops.h> 58ab2af1f5SDipankar Sarma #include <linux/rcupdate.h> 591da177e4SLinus Torvalds #include <linux/ptrace.h> 601da177e4SLinus Torvalds #include <linux/mount.h> 611da177e4SLinus Torvalds #include <linux/audit.h> 6278fb7466SPavel Emelianov #include <linux/memcontrol.h> 63f201ae23SFrederic Weisbecker #include <linux/ftrace.h> 645e2bf014SMike Galbraith #include <linux/proc_fs.h> 651da177e4SLinus Torvalds #include <linux/profile.h> 661da177e4SLinus Torvalds #include <linux/rmap.h> 67f8af4da3SHugh Dickins #include <linux/ksm.h> 681da177e4SLinus Torvalds #include <linux/acct.h> 69893e26e6SPavel Emelyanov #include <linux/userfaultfd_k.h> 708f0ab514SJay Lan #include <linux/tsacct_kern.h> 719f46080cSMatt Helsley #include <linux/cn_proc.h> 72ba96a0c8SRafael J. Wysocki #include <linux/freezer.h> 73ca74e92bSShailabh Nagar #include <linux/delayacct.h> 74ad4ecbcbSShailabh Nagar #include <linux/taskstats_kern.h> 750a425405SArjan van de Ven #include <linux/random.h> 76522ed776SMiloslav Trmac #include <linux/tty.h> 77fd0928dfSJens Axboe #include <linux/blkdev.h> 785ad4e53bSAl Viro #include <linux/fs_struct.h> 797c9f8861SEric Sandeen #include <linux/magic.h> 80d70f2a14SAndrew Morton #include <linux/sched/mm.h> 81cdd6c482SIngo Molnar #include <linux/perf_event.h> 8242c4ab41SStanislaw Gruszka #include <linux/posix-timers.h> 838e7cac79SAvi Kivity #include <linux/user-return-notifier.h> 843d5992d2SYing Han #include <linux/oom.h> 85ba76149fSAndrea Arcangeli #include <linux/khugepaged.h> 86d80e731eSOleg Nesterov #include <linux/signalfd.h> 870326f5a9SSrikar Dronamraju #include <linux/uprobes.h> 88a27bb332SKent Overstreet #include <linux/aio.h> 8952f5684cSGideon Israel Dsouza #include <linux/compiler.h> 9016db3d3fSHeinrich Schuchardt #include <linux/sysctl.h> 915c9a8750SDmitry Vyukov #include <linux/kcov.h> 92d83a7cb3SJosh Poimboeuf #include <linux/livepatch.h> 9348ac3c18SMark Rutland #include <linux/thread_info.h> 94afaef01cSAlexander Popov #include <linux/stackleak.h> 951da177e4SLinus Torvalds 961da177e4SLinus Torvalds #include <asm/pgtable.h> 971da177e4SLinus Torvalds #include <asm/pgalloc.h> 987c0f6ba6SLinus Torvalds #include <linux/uaccess.h> 991da177e4SLinus Torvalds #include <asm/mmu_context.h> 1001da177e4SLinus Torvalds #include <asm/cacheflush.h> 1011da177e4SLinus Torvalds #include <asm/tlbflush.h> 1021da177e4SLinus Torvalds 103ad8d75ffSSteven Rostedt #include <trace/events/sched.h> 104ad8d75ffSSteven Rostedt 10543d2b113SKAMEZAWA Hiroyuki #define CREATE_TRACE_POINTS 10643d2b113SKAMEZAWA Hiroyuki #include <trace/events/task.h> 10743d2b113SKAMEZAWA Hiroyuki 1081da177e4SLinus Torvalds /* 109ac1b398dSHeinrich Schuchardt * Minimum number of threads to boot the kernel 110ac1b398dSHeinrich Schuchardt */ 111ac1b398dSHeinrich Schuchardt #define MIN_THREADS 20 112ac1b398dSHeinrich Schuchardt 113ac1b398dSHeinrich Schuchardt /* 114ac1b398dSHeinrich Schuchardt * Maximum number of threads 115ac1b398dSHeinrich Schuchardt */ 116ac1b398dSHeinrich Schuchardt #define MAX_THREADS FUTEX_TID_MASK 117ac1b398dSHeinrich Schuchardt 118ac1b398dSHeinrich Schuchardt /* 1191da177e4SLinus Torvalds * Protected counters by write_lock_irq(&tasklist_lock) 1201da177e4SLinus Torvalds */ 1211da177e4SLinus Torvalds unsigned long total_forks; /* Handle normal Linux uptimes. */ 1221da177e4SLinus Torvalds int nr_threads; /* The idle threads do not count.. */ 1231da177e4SLinus Torvalds 1241da177e4SLinus Torvalds int max_threads; /* tunable limit on nr_threads */ 1251da177e4SLinus Torvalds 1261da177e4SLinus Torvalds DEFINE_PER_CPU(unsigned long, process_counts) = 0; 1271da177e4SLinus Torvalds 1281da177e4SLinus Torvalds __cacheline_aligned DEFINE_RWLOCK(tasklist_lock); /* outer */ 129db1466b3SPaul E. McKenney 130db1466b3SPaul E. McKenney #ifdef CONFIG_PROVE_RCU 131db1466b3SPaul E. McKenney int lockdep_tasklist_lock_is_held(void) 132db1466b3SPaul E. McKenney { 133db1466b3SPaul E. McKenney return lockdep_is_held(&tasklist_lock); 134db1466b3SPaul E. McKenney } 135db1466b3SPaul E. McKenney EXPORT_SYMBOL_GPL(lockdep_tasklist_lock_is_held); 136db1466b3SPaul E. McKenney #endif /* #ifdef CONFIG_PROVE_RCU */ 1371da177e4SLinus Torvalds 1381da177e4SLinus Torvalds int nr_processes(void) 1391da177e4SLinus Torvalds { 1401da177e4SLinus Torvalds int cpu; 1411da177e4SLinus Torvalds int total = 0; 1421da177e4SLinus Torvalds 1431d510750SIan Campbell for_each_possible_cpu(cpu) 1441da177e4SLinus Torvalds total += per_cpu(process_counts, cpu); 1451da177e4SLinus Torvalds 1461da177e4SLinus Torvalds return total; 1471da177e4SLinus Torvalds } 1481da177e4SLinus Torvalds 149f19b9f74SAkinobu Mita void __weak arch_release_task_struct(struct task_struct *tsk) 150f19b9f74SAkinobu Mita { 151f19b9f74SAkinobu Mita } 152f19b9f74SAkinobu Mita 153f5e10287SThomas Gleixner #ifndef CONFIG_ARCH_TASK_STRUCT_ALLOCATOR 154e18b890bSChristoph Lameter static struct kmem_cache *task_struct_cachep; 15541101809SThomas Gleixner 15641101809SThomas Gleixner static inline struct task_struct *alloc_task_struct_node(int node) 15741101809SThomas Gleixner { 15841101809SThomas Gleixner return kmem_cache_alloc_node(task_struct_cachep, GFP_KERNEL, node); 15941101809SThomas Gleixner } 16041101809SThomas Gleixner 16141101809SThomas Gleixner static inline void free_task_struct(struct task_struct *tsk) 16241101809SThomas Gleixner { 16341101809SThomas Gleixner kmem_cache_free(task_struct_cachep, tsk); 16441101809SThomas Gleixner } 1651da177e4SLinus Torvalds #endif 1661da177e4SLinus Torvalds 167b235beeaSLinus Torvalds #ifndef CONFIG_ARCH_THREAD_STACK_ALLOCATOR 16841101809SThomas Gleixner 1690d15d74aSThomas Gleixner /* 1700d15d74aSThomas Gleixner * Allocate pages if THREAD_SIZE is >= PAGE_SIZE, otherwise use a 1710d15d74aSThomas Gleixner * kmemcache based allocator. 1720d15d74aSThomas Gleixner */ 173ba14a194SAndy Lutomirski # if THREAD_SIZE >= PAGE_SIZE || defined(CONFIG_VMAP_STACK) 174ac496bf4SAndy Lutomirski 175ac496bf4SAndy Lutomirski #ifdef CONFIG_VMAP_STACK 176ac496bf4SAndy Lutomirski /* 177ac496bf4SAndy Lutomirski * vmalloc() is a bit slow, and calling vfree() enough times will force a TLB 178ac496bf4SAndy Lutomirski * flush. Try to minimize the number of calls by caching stacks. 179ac496bf4SAndy Lutomirski */ 180ac496bf4SAndy Lutomirski #define NR_CACHED_STACKS 2 181ac496bf4SAndy Lutomirski static DEFINE_PER_CPU(struct vm_struct *, cached_stacks[NR_CACHED_STACKS]); 18219659c59SHoeun Ryu 18319659c59SHoeun Ryu static int free_vm_stack_cache(unsigned int cpu) 18419659c59SHoeun Ryu { 18519659c59SHoeun Ryu struct vm_struct **cached_vm_stacks = per_cpu_ptr(cached_stacks, cpu); 18619659c59SHoeun Ryu int i; 18719659c59SHoeun Ryu 18819659c59SHoeun Ryu for (i = 0; i < NR_CACHED_STACKS; i++) { 18919659c59SHoeun Ryu struct vm_struct *vm_stack = cached_vm_stacks[i]; 19019659c59SHoeun Ryu 19119659c59SHoeun Ryu if (!vm_stack) 19219659c59SHoeun Ryu continue; 19319659c59SHoeun Ryu 19419659c59SHoeun Ryu vfree(vm_stack->addr); 19519659c59SHoeun Ryu cached_vm_stacks[i] = NULL; 19619659c59SHoeun Ryu } 19719659c59SHoeun Ryu 19819659c59SHoeun Ryu return 0; 19919659c59SHoeun Ryu } 200ac496bf4SAndy Lutomirski #endif 201ac496bf4SAndy Lutomirski 202ba14a194SAndy Lutomirski static unsigned long *alloc_thread_stack_node(struct task_struct *tsk, int node) 203b69c49b7SFUJITA Tomonori { 204ba14a194SAndy Lutomirski #ifdef CONFIG_VMAP_STACK 205ac496bf4SAndy Lutomirski void *stack; 206ac496bf4SAndy Lutomirski int i; 207ac496bf4SAndy Lutomirski 208ac496bf4SAndy Lutomirski for (i = 0; i < NR_CACHED_STACKS; i++) { 209112166f8SChristoph Lameter struct vm_struct *s; 210112166f8SChristoph Lameter 211112166f8SChristoph Lameter s = this_cpu_xchg(cached_stacks[i], NULL); 212ac496bf4SAndy Lutomirski 213ac496bf4SAndy Lutomirski if (!s) 214ac496bf4SAndy Lutomirski continue; 215ac496bf4SAndy Lutomirski 216ca182551SKonstantin Khlebnikov /* Clear stale pointers from reused stack. */ 217ca182551SKonstantin Khlebnikov memset(s->addr, 0, THREAD_SIZE); 218e01e8063SKees Cook 219ac496bf4SAndy Lutomirski tsk->stack_vm_area = s; 220ba4a4574SShakeel Butt tsk->stack = s->addr; 221ac496bf4SAndy Lutomirski return s->addr; 222ac496bf4SAndy Lutomirski } 223ac496bf4SAndy Lutomirski 2249b6f7e16SRoman Gushchin /* 2259b6f7e16SRoman Gushchin * Allocated stacks are cached and later reused by new threads, 2269b6f7e16SRoman Gushchin * so memcg accounting is performed manually on assigning/releasing 2279b6f7e16SRoman Gushchin * stacks to tasks. Drop __GFP_ACCOUNT. 2289b6f7e16SRoman Gushchin */ 22948ac3c18SMark Rutland stack = __vmalloc_node_range(THREAD_SIZE, THREAD_ALIGN, 230ba14a194SAndy Lutomirski VMALLOC_START, VMALLOC_END, 2319b6f7e16SRoman Gushchin THREADINFO_GFP & ~__GFP_ACCOUNT, 232ba14a194SAndy Lutomirski PAGE_KERNEL, 233ac496bf4SAndy Lutomirski 0, node, __builtin_return_address(0)); 234ba14a194SAndy Lutomirski 235ba14a194SAndy Lutomirski /* 236ba14a194SAndy Lutomirski * We can't call find_vm_area() in interrupt context, and 237ba14a194SAndy Lutomirski * free_thread_stack() can be called in interrupt context, 238ba14a194SAndy Lutomirski * so cache the vm_struct. 239ba14a194SAndy Lutomirski */ 2405eed6f1dSRik van Riel if (stack) { 241ba14a194SAndy Lutomirski tsk->stack_vm_area = find_vm_area(stack); 2425eed6f1dSRik van Riel tsk->stack = stack; 2435eed6f1dSRik van Riel } 244ba14a194SAndy Lutomirski return stack; 245ba14a194SAndy Lutomirski #else 2464949148aSVladimir Davydov struct page *page = alloc_pages_node(node, THREADINFO_GFP, 2472889f608SThomas Gleixner THREAD_SIZE_ORDER); 248b6a84016SEric Dumazet 249b6a84016SEric Dumazet return page ? page_address(page) : NULL; 250ba14a194SAndy Lutomirski #endif 251b69c49b7SFUJITA Tomonori } 252b69c49b7SFUJITA Tomonori 253ba14a194SAndy Lutomirski static inline void free_thread_stack(struct task_struct *tsk) 254b69c49b7SFUJITA Tomonori { 255ac496bf4SAndy Lutomirski #ifdef CONFIG_VMAP_STACK 2569b6f7e16SRoman Gushchin struct vm_struct *vm = task_stack_vm_area(tsk); 2579b6f7e16SRoman Gushchin 2589b6f7e16SRoman Gushchin if (vm) { 259ac496bf4SAndy Lutomirski int i; 260ac496bf4SAndy Lutomirski 2619b6f7e16SRoman Gushchin for (i = 0; i < THREAD_SIZE / PAGE_SIZE; i++) { 2629b6f7e16SRoman Gushchin mod_memcg_page_state(vm->pages[i], 2639b6f7e16SRoman Gushchin MEMCG_KERNEL_STACK_KB, 2649b6f7e16SRoman Gushchin -(int)(PAGE_SIZE / 1024)); 2659b6f7e16SRoman Gushchin 2669b6f7e16SRoman Gushchin memcg_kmem_uncharge(vm->pages[i], 0); 2679b6f7e16SRoman Gushchin } 2689b6f7e16SRoman Gushchin 269ac496bf4SAndy Lutomirski for (i = 0; i < NR_CACHED_STACKS; i++) { 270112166f8SChristoph Lameter if (this_cpu_cmpxchg(cached_stacks[i], 271112166f8SChristoph Lameter NULL, tsk->stack_vm_area) != NULL) 272ac496bf4SAndy Lutomirski continue; 273ac496bf4SAndy Lutomirski 274ac496bf4SAndy Lutomirski return; 275ac496bf4SAndy Lutomirski } 276ac496bf4SAndy Lutomirski 2770f110a9bSAndrey Ryabinin vfree_atomic(tsk->stack); 278ac496bf4SAndy Lutomirski return; 279ac496bf4SAndy Lutomirski } 280ac496bf4SAndy Lutomirski #endif 281ac496bf4SAndy Lutomirski 282ba14a194SAndy Lutomirski __free_pages(virt_to_page(tsk->stack), THREAD_SIZE_ORDER); 283b69c49b7SFUJITA Tomonori } 2840d15d74aSThomas Gleixner # else 285b235beeaSLinus Torvalds static struct kmem_cache *thread_stack_cache; 2860d15d74aSThomas Gleixner 2879521d399SMichael Ellerman static unsigned long *alloc_thread_stack_node(struct task_struct *tsk, 2880d15d74aSThomas Gleixner int node) 2890d15d74aSThomas Gleixner { 2905eed6f1dSRik van Riel unsigned long *stack; 2915eed6f1dSRik van Riel stack = kmem_cache_alloc_node(thread_stack_cache, THREADINFO_GFP, node); 2925eed6f1dSRik van Riel tsk->stack = stack; 2935eed6f1dSRik van Riel return stack; 2940d15d74aSThomas Gleixner } 2950d15d74aSThomas Gleixner 296ba14a194SAndy Lutomirski static void free_thread_stack(struct task_struct *tsk) 2970d15d74aSThomas Gleixner { 298ba14a194SAndy Lutomirski kmem_cache_free(thread_stack_cache, tsk->stack); 2990d15d74aSThomas Gleixner } 3000d15d74aSThomas Gleixner 301b235beeaSLinus Torvalds void thread_stack_cache_init(void) 3020d15d74aSThomas Gleixner { 303f9d29946SDavid Windsor thread_stack_cache = kmem_cache_create_usercopy("thread_stack", 304f9d29946SDavid Windsor THREAD_SIZE, THREAD_SIZE, 0, 0, 305f9d29946SDavid Windsor THREAD_SIZE, NULL); 306b235beeaSLinus Torvalds BUG_ON(thread_stack_cache == NULL); 3070d15d74aSThomas Gleixner } 3080d15d74aSThomas Gleixner # endif 309b69c49b7SFUJITA Tomonori #endif 310b69c49b7SFUJITA Tomonori 3111da177e4SLinus Torvalds /* SLAB cache for signal_struct structures (tsk->signal) */ 312e18b890bSChristoph Lameter static struct kmem_cache *signal_cachep; 3131da177e4SLinus Torvalds 3141da177e4SLinus Torvalds /* SLAB cache for sighand_struct structures (tsk->sighand) */ 315e18b890bSChristoph Lameter struct kmem_cache *sighand_cachep; 3161da177e4SLinus Torvalds 3171da177e4SLinus Torvalds /* SLAB cache for files_struct structures (tsk->files) */ 318e18b890bSChristoph Lameter struct kmem_cache *files_cachep; 3191da177e4SLinus Torvalds 3201da177e4SLinus Torvalds /* SLAB cache for fs_struct structures (tsk->fs) */ 321e18b890bSChristoph Lameter struct kmem_cache *fs_cachep; 3221da177e4SLinus Torvalds 3231da177e4SLinus Torvalds /* SLAB cache for vm_area_struct structures */ 3243928d4f5SLinus Torvalds static struct kmem_cache *vm_area_cachep; 3251da177e4SLinus Torvalds 3261da177e4SLinus Torvalds /* SLAB cache for mm_struct structures (tsk->mm) */ 327e18b890bSChristoph Lameter static struct kmem_cache *mm_cachep; 3281da177e4SLinus Torvalds 329490fc053SLinus Torvalds struct vm_area_struct *vm_area_alloc(struct mm_struct *mm) 3303928d4f5SLinus Torvalds { 331a670468fSAndrew Morton struct vm_area_struct *vma; 332490fc053SLinus Torvalds 333a670468fSAndrew Morton vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL); 334027232daSKirill A. Shutemov if (vma) 335027232daSKirill A. Shutemov vma_init(vma, mm); 336490fc053SLinus Torvalds return vma; 3373928d4f5SLinus Torvalds } 3383928d4f5SLinus Torvalds 3393928d4f5SLinus Torvalds struct vm_area_struct *vm_area_dup(struct vm_area_struct *orig) 3403928d4f5SLinus Torvalds { 34195faf699SLinus Torvalds struct vm_area_struct *new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL); 34295faf699SLinus Torvalds 34395faf699SLinus Torvalds if (new) { 34495faf699SLinus Torvalds *new = *orig; 34595faf699SLinus Torvalds INIT_LIST_HEAD(&new->anon_vma_chain); 34695faf699SLinus Torvalds } 34795faf699SLinus Torvalds return new; 3483928d4f5SLinus Torvalds } 3493928d4f5SLinus Torvalds 3503928d4f5SLinus Torvalds void vm_area_free(struct vm_area_struct *vma) 3513928d4f5SLinus Torvalds { 3523928d4f5SLinus Torvalds kmem_cache_free(vm_area_cachep, vma); 3533928d4f5SLinus Torvalds } 3543928d4f5SLinus Torvalds 355ba14a194SAndy Lutomirski static void account_kernel_stack(struct task_struct *tsk, int account) 356c6a7f572SKOSAKI Motohiro { 357ba14a194SAndy Lutomirski void *stack = task_stack_page(tsk); 358ba14a194SAndy Lutomirski struct vm_struct *vm = task_stack_vm_area(tsk); 359ba14a194SAndy Lutomirski 360ba14a194SAndy Lutomirski BUILD_BUG_ON(IS_ENABLED(CONFIG_VMAP_STACK) && PAGE_SIZE % 1024 != 0); 361ba14a194SAndy Lutomirski 362ba14a194SAndy Lutomirski if (vm) { 363ba14a194SAndy Lutomirski int i; 364ba14a194SAndy Lutomirski 365ba14a194SAndy Lutomirski BUG_ON(vm->nr_pages != THREAD_SIZE / PAGE_SIZE); 366ba14a194SAndy Lutomirski 367ba14a194SAndy Lutomirski for (i = 0; i < THREAD_SIZE / PAGE_SIZE; i++) { 368ba14a194SAndy Lutomirski mod_zone_page_state(page_zone(vm->pages[i]), 369ba14a194SAndy Lutomirski NR_KERNEL_STACK_KB, 370ba14a194SAndy Lutomirski PAGE_SIZE / 1024 * account); 371ba14a194SAndy Lutomirski } 372ba14a194SAndy Lutomirski } else { 373ba14a194SAndy Lutomirski /* 374ba14a194SAndy Lutomirski * All stack pages are in the same zone and belong to the 375ba14a194SAndy Lutomirski * same memcg. 376ba14a194SAndy Lutomirski */ 377efdc9490SAndy Lutomirski struct page *first_page = virt_to_page(stack); 378c6a7f572SKOSAKI Motohiro 379efdc9490SAndy Lutomirski mod_zone_page_state(page_zone(first_page), NR_KERNEL_STACK_KB, 380d30dd8beSAndy Lutomirski THREAD_SIZE / 1024 * account); 381efdc9490SAndy Lutomirski 382ed52be7bSJohannes Weiner mod_memcg_page_state(first_page, MEMCG_KERNEL_STACK_KB, 383efdc9490SAndy Lutomirski account * (THREAD_SIZE / 1024)); 384c6a7f572SKOSAKI Motohiro } 385ba14a194SAndy Lutomirski } 386c6a7f572SKOSAKI Motohiro 3879b6f7e16SRoman Gushchin static int memcg_charge_kernel_stack(struct task_struct *tsk) 3889b6f7e16SRoman Gushchin { 3899b6f7e16SRoman Gushchin #ifdef CONFIG_VMAP_STACK 3909b6f7e16SRoman Gushchin struct vm_struct *vm = task_stack_vm_area(tsk); 3919b6f7e16SRoman Gushchin int ret; 3929b6f7e16SRoman Gushchin 3939b6f7e16SRoman Gushchin if (vm) { 3949b6f7e16SRoman Gushchin int i; 3959b6f7e16SRoman Gushchin 3969b6f7e16SRoman Gushchin for (i = 0; i < THREAD_SIZE / PAGE_SIZE; i++) { 3979b6f7e16SRoman Gushchin /* 3989b6f7e16SRoman Gushchin * If memcg_kmem_charge() fails, page->mem_cgroup 3999b6f7e16SRoman Gushchin * pointer is NULL, and both memcg_kmem_uncharge() 4009b6f7e16SRoman Gushchin * and mod_memcg_page_state() in free_thread_stack() 4019b6f7e16SRoman Gushchin * will ignore this page. So it's safe. 4029b6f7e16SRoman Gushchin */ 4039b6f7e16SRoman Gushchin ret = memcg_kmem_charge(vm->pages[i], GFP_KERNEL, 0); 4049b6f7e16SRoman Gushchin if (ret) 4059b6f7e16SRoman Gushchin return ret; 4069b6f7e16SRoman Gushchin 4079b6f7e16SRoman Gushchin mod_memcg_page_state(vm->pages[i], 4089b6f7e16SRoman Gushchin MEMCG_KERNEL_STACK_KB, 4099b6f7e16SRoman Gushchin PAGE_SIZE / 1024); 4109b6f7e16SRoman Gushchin } 4119b6f7e16SRoman Gushchin } 4129b6f7e16SRoman Gushchin #endif 4139b6f7e16SRoman Gushchin return 0; 4149b6f7e16SRoman Gushchin } 4159b6f7e16SRoman Gushchin 41668f24b08SAndy Lutomirski static void release_task_stack(struct task_struct *tsk) 4171da177e4SLinus Torvalds { 418405c0759SAndy Lutomirski if (WARN_ON(tsk->state != TASK_DEAD)) 419405c0759SAndy Lutomirski return; /* Better to leak the stack than to free prematurely */ 420405c0759SAndy Lutomirski 421ba14a194SAndy Lutomirski account_kernel_stack(tsk, -1); 422ba14a194SAndy Lutomirski free_thread_stack(tsk); 42368f24b08SAndy Lutomirski tsk->stack = NULL; 42468f24b08SAndy Lutomirski #ifdef CONFIG_VMAP_STACK 42568f24b08SAndy Lutomirski tsk->stack_vm_area = NULL; 42668f24b08SAndy Lutomirski #endif 42768f24b08SAndy Lutomirski } 42868f24b08SAndy Lutomirski 42968f24b08SAndy Lutomirski #ifdef CONFIG_THREAD_INFO_IN_TASK 43068f24b08SAndy Lutomirski void put_task_stack(struct task_struct *tsk) 43168f24b08SAndy Lutomirski { 43268f24b08SAndy Lutomirski if (atomic_dec_and_test(&tsk->stack_refcount)) 43368f24b08SAndy Lutomirski release_task_stack(tsk); 43468f24b08SAndy Lutomirski } 43568f24b08SAndy Lutomirski #endif 43668f24b08SAndy Lutomirski 43768f24b08SAndy Lutomirski void free_task(struct task_struct *tsk) 43868f24b08SAndy Lutomirski { 43968f24b08SAndy Lutomirski #ifndef CONFIG_THREAD_INFO_IN_TASK 44068f24b08SAndy Lutomirski /* 44168f24b08SAndy Lutomirski * The task is finally done with both the stack and thread_info, 44268f24b08SAndy Lutomirski * so free both. 44368f24b08SAndy Lutomirski */ 44468f24b08SAndy Lutomirski release_task_stack(tsk); 44568f24b08SAndy Lutomirski #else 44668f24b08SAndy Lutomirski /* 44768f24b08SAndy Lutomirski * If the task had a separate stack allocation, it should be gone 44868f24b08SAndy Lutomirski * by now. 44968f24b08SAndy Lutomirski */ 45068f24b08SAndy Lutomirski WARN_ON_ONCE(atomic_read(&tsk->stack_refcount) != 0); 45168f24b08SAndy Lutomirski #endif 45223f78d4aSIngo Molnar rt_mutex_debug_task_free(tsk); 453fb52607aSFrederic Weisbecker ftrace_graph_exit_task(tsk); 454e2cfabdfSWill Drewry put_seccomp_filter(tsk); 455f19b9f74SAkinobu Mita arch_release_task_struct(tsk); 4561da5c46fSOleg Nesterov if (tsk->flags & PF_KTHREAD) 4571da5c46fSOleg Nesterov free_kthread_struct(tsk); 4581da177e4SLinus Torvalds free_task_struct(tsk); 4591da177e4SLinus Torvalds } 4601da177e4SLinus Torvalds EXPORT_SYMBOL(free_task); 4611da177e4SLinus Torvalds 4621da177e4SLinus Torvalds #ifdef CONFIG_MMU 4630766f788SEmese Revfy static __latent_entropy int dup_mmap(struct mm_struct *mm, 4640766f788SEmese Revfy struct mm_struct *oldmm) 4651da177e4SLinus Torvalds { 466297c5eeeSLinus Torvalds struct vm_area_struct *mpnt, *tmp, *prev, **pprev; 4671da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 4681da177e4SLinus Torvalds int retval; 4691da177e4SLinus Torvalds unsigned long charge; 470893e26e6SPavel Emelyanov LIST_HEAD(uf); 4711da177e4SLinus Torvalds 47232cdba1eSOleg Nesterov uprobe_start_dup_mmap(); 4737c051267SMichal Hocko if (down_write_killable(&oldmm->mmap_sem)) { 4747c051267SMichal Hocko retval = -EINTR; 4757c051267SMichal Hocko goto fail_uprobe_end; 4767c051267SMichal Hocko } 477ec8c0446SRalf Baechle flush_cache_dup_mm(oldmm); 478f8ac4ec9SOleg Nesterov uprobe_dup_mmap(oldmm, mm); 479ad339451SIngo Molnar /* 480ad339451SIngo Molnar * Not linked in yet - no deadlock potential: 481ad339451SIngo Molnar */ 482ad339451SIngo Molnar down_write_nested(&mm->mmap_sem, SINGLE_DEPTH_NESTING); 4837ee78232SHugh Dickins 48490f31d0eSKonstantin Khlebnikov /* No ordering required: file already has been exposed. */ 48590f31d0eSKonstantin Khlebnikov RCU_INIT_POINTER(mm->exe_file, get_mm_exe_file(oldmm)); 48690f31d0eSKonstantin Khlebnikov 4874f7d4614SVladimir Davydov mm->total_vm = oldmm->total_vm; 48884638335SKonstantin Khlebnikov mm->data_vm = oldmm->data_vm; 4894f7d4614SVladimir Davydov mm->exec_vm = oldmm->exec_vm; 4904f7d4614SVladimir Davydov mm->stack_vm = oldmm->stack_vm; 4914f7d4614SVladimir Davydov 4921da177e4SLinus Torvalds rb_link = &mm->mm_rb.rb_node; 4931da177e4SLinus Torvalds rb_parent = NULL; 4941da177e4SLinus Torvalds pprev = &mm->mmap; 495f8af4da3SHugh Dickins retval = ksm_fork(mm, oldmm); 496f8af4da3SHugh Dickins if (retval) 497f8af4da3SHugh Dickins goto out; 498ba76149fSAndrea Arcangeli retval = khugepaged_fork(mm, oldmm); 499ba76149fSAndrea Arcangeli if (retval) 500ba76149fSAndrea Arcangeli goto out; 5011da177e4SLinus Torvalds 502297c5eeeSLinus Torvalds prev = NULL; 503fd3e42fcSHugh Dickins for (mpnt = oldmm->mmap; mpnt; mpnt = mpnt->vm_next) { 5041da177e4SLinus Torvalds struct file *file; 5051da177e4SLinus Torvalds 5061da177e4SLinus Torvalds if (mpnt->vm_flags & VM_DONTCOPY) { 50784638335SKonstantin Khlebnikov vm_stat_account(mm, mpnt->vm_flags, -vma_pages(mpnt)); 5081da177e4SLinus Torvalds continue; 5091da177e4SLinus Torvalds } 5101da177e4SLinus Torvalds charge = 0; 511655c79bbSTetsuo Handa /* 512655c79bbSTetsuo Handa * Don't duplicate many vmas if we've been oom-killed (for 513655c79bbSTetsuo Handa * example) 514655c79bbSTetsuo Handa */ 515655c79bbSTetsuo Handa if (fatal_signal_pending(current)) { 516655c79bbSTetsuo Handa retval = -EINTR; 517655c79bbSTetsuo Handa goto out; 518655c79bbSTetsuo Handa } 5191da177e4SLinus Torvalds if (mpnt->vm_flags & VM_ACCOUNT) { 520b2412b7fSHuang Shijie unsigned long len = vma_pages(mpnt); 521b2412b7fSHuang Shijie 522191c5424SAl Viro if (security_vm_enough_memory_mm(oldmm, len)) /* sic */ 5231da177e4SLinus Torvalds goto fail_nomem; 5241da177e4SLinus Torvalds charge = len; 5251da177e4SLinus Torvalds } 5263928d4f5SLinus Torvalds tmp = vm_area_dup(mpnt); 5271da177e4SLinus Torvalds if (!tmp) 5281da177e4SLinus Torvalds goto fail_nomem; 529ef0855d3SOleg Nesterov retval = vma_dup_policy(mpnt, tmp); 530ef0855d3SOleg Nesterov if (retval) 5311da177e4SLinus Torvalds goto fail_nomem_policy; 532a247c3a9SAndrea Arcangeli tmp->vm_mm = mm; 533893e26e6SPavel Emelyanov retval = dup_userfaultfd(tmp, &uf); 534893e26e6SPavel Emelyanov if (retval) 535893e26e6SPavel Emelyanov goto fail_nomem_anon_vma_fork; 536d2cd9edeSRik van Riel if (tmp->vm_flags & VM_WIPEONFORK) { 537d2cd9edeSRik van Riel /* VM_WIPEONFORK gets a clean slate in the child. */ 538d2cd9edeSRik van Riel tmp->anon_vma = NULL; 539d2cd9edeSRik van Riel if (anon_vma_prepare(tmp)) 540d2cd9edeSRik van Riel goto fail_nomem_anon_vma_fork; 541d2cd9edeSRik van Riel } else if (anon_vma_fork(tmp, mpnt)) 5425beb4930SRik van Riel goto fail_nomem_anon_vma_fork; 543893e26e6SPavel Emelyanov tmp->vm_flags &= ~(VM_LOCKED | VM_LOCKONFAULT); 544297c5eeeSLinus Torvalds tmp->vm_next = tmp->vm_prev = NULL; 5451da177e4SLinus Torvalds file = tmp->vm_file; 5461da177e4SLinus Torvalds if (file) { 547496ad9aaSAl Viro struct inode *inode = file_inode(file); 548b88ed205SHugh Dickins struct address_space *mapping = file->f_mapping; 549b88ed205SHugh Dickins 5501da177e4SLinus Torvalds get_file(file); 5511da177e4SLinus Torvalds if (tmp->vm_flags & VM_DENYWRITE) 5521da177e4SLinus Torvalds atomic_dec(&inode->i_writecount); 55383cde9e8SDavidlohr Bueso i_mmap_lock_write(mapping); 554b88ed205SHugh Dickins if (tmp->vm_flags & VM_SHARED) 5554bb5f5d9SDavid Herrmann atomic_inc(&mapping->i_mmap_writable); 556b88ed205SHugh Dickins flush_dcache_mmap_lock(mapping); 557b88ed205SHugh Dickins /* insert tmp into the share list, just after mpnt */ 5589826a516SMichel Lespinasse vma_interval_tree_insert_after(tmp, mpnt, 5599826a516SMichel Lespinasse &mapping->i_mmap); 560b88ed205SHugh Dickins flush_dcache_mmap_unlock(mapping); 56183cde9e8SDavidlohr Bueso i_mmap_unlock_write(mapping); 5621da177e4SLinus Torvalds } 5631da177e4SLinus Torvalds 5641da177e4SLinus Torvalds /* 565a1e78772SMel Gorman * Clear hugetlb-related page reserves for children. This only 566a1e78772SMel Gorman * affects MAP_PRIVATE mappings. Faults generated by the child 567a1e78772SMel Gorman * are not guaranteed to succeed, even if read-only 568a1e78772SMel Gorman */ 569a1e78772SMel Gorman if (is_vm_hugetlb_page(tmp)) 570a1e78772SMel Gorman reset_vma_resv_huge_pages(tmp); 571a1e78772SMel Gorman 572a1e78772SMel Gorman /* 5737ee78232SHugh Dickins * Link in the new vma and copy the page table entries. 5741da177e4SLinus Torvalds */ 5751da177e4SLinus Torvalds *pprev = tmp; 5761da177e4SLinus Torvalds pprev = &tmp->vm_next; 577297c5eeeSLinus Torvalds tmp->vm_prev = prev; 578297c5eeeSLinus Torvalds prev = tmp; 5791da177e4SLinus Torvalds 5801da177e4SLinus Torvalds __vma_link_rb(mm, tmp, rb_link, rb_parent); 5811da177e4SLinus Torvalds rb_link = &tmp->vm_rb.rb_right; 5821da177e4SLinus Torvalds rb_parent = &tmp->vm_rb; 5831da177e4SLinus Torvalds 5841da177e4SLinus Torvalds mm->map_count++; 585d2cd9edeSRik van Riel if (!(tmp->vm_flags & VM_WIPEONFORK)) 5860b0db14cSHugh Dickins retval = copy_page_range(mm, oldmm, mpnt); 5871da177e4SLinus Torvalds 5881da177e4SLinus Torvalds if (tmp->vm_ops && tmp->vm_ops->open) 5891da177e4SLinus Torvalds tmp->vm_ops->open(tmp); 5901da177e4SLinus Torvalds 5911da177e4SLinus Torvalds if (retval) 5921da177e4SLinus Torvalds goto out; 5931da177e4SLinus Torvalds } 594d6dd61c8SJeremy Fitzhardinge /* a new mm has just been created */ 5951ed0cc5aSNadav Amit retval = arch_dup_mmap(oldmm, mm); 5961da177e4SLinus Torvalds out: 5977ee78232SHugh Dickins up_write(&mm->mmap_sem); 598fd3e42fcSHugh Dickins flush_tlb_mm(oldmm); 5991da177e4SLinus Torvalds up_write(&oldmm->mmap_sem); 600893e26e6SPavel Emelyanov dup_userfaultfd_complete(&uf); 6017c051267SMichal Hocko fail_uprobe_end: 60232cdba1eSOleg Nesterov uprobe_end_dup_mmap(); 6031da177e4SLinus Torvalds return retval; 6045beb4930SRik van Riel fail_nomem_anon_vma_fork: 605ef0855d3SOleg Nesterov mpol_put(vma_policy(tmp)); 6061da177e4SLinus Torvalds fail_nomem_policy: 6073928d4f5SLinus Torvalds vm_area_free(tmp); 6081da177e4SLinus Torvalds fail_nomem: 6091da177e4SLinus Torvalds retval = -ENOMEM; 6101da177e4SLinus Torvalds vm_unacct_memory(charge); 6111da177e4SLinus Torvalds goto out; 6121da177e4SLinus Torvalds } 6131da177e4SLinus Torvalds 6141da177e4SLinus Torvalds static inline int mm_alloc_pgd(struct mm_struct *mm) 6151da177e4SLinus Torvalds { 6161da177e4SLinus Torvalds mm->pgd = pgd_alloc(mm); 6171da177e4SLinus Torvalds if (unlikely(!mm->pgd)) 6181da177e4SLinus Torvalds return -ENOMEM; 6191da177e4SLinus Torvalds return 0; 6201da177e4SLinus Torvalds } 6211da177e4SLinus Torvalds 6221da177e4SLinus Torvalds static inline void mm_free_pgd(struct mm_struct *mm) 6231da177e4SLinus Torvalds { 6245e541973SBenjamin Herrenschmidt pgd_free(mm, mm->pgd); 6251da177e4SLinus Torvalds } 6261da177e4SLinus Torvalds #else 62790f31d0eSKonstantin Khlebnikov static int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm) 62890f31d0eSKonstantin Khlebnikov { 62990f31d0eSKonstantin Khlebnikov down_write(&oldmm->mmap_sem); 63090f31d0eSKonstantin Khlebnikov RCU_INIT_POINTER(mm->exe_file, get_mm_exe_file(oldmm)); 63190f31d0eSKonstantin Khlebnikov up_write(&oldmm->mmap_sem); 63290f31d0eSKonstantin Khlebnikov return 0; 63390f31d0eSKonstantin Khlebnikov } 6341da177e4SLinus Torvalds #define mm_alloc_pgd(mm) (0) 6351da177e4SLinus Torvalds #define mm_free_pgd(mm) 6361da177e4SLinus Torvalds #endif /* CONFIG_MMU */ 6371da177e4SLinus Torvalds 638d70f2a14SAndrew Morton static void check_mm(struct mm_struct *mm) 639d70f2a14SAndrew Morton { 640d70f2a14SAndrew Morton int i; 641d70f2a14SAndrew Morton 642d70f2a14SAndrew Morton for (i = 0; i < NR_MM_COUNTERS; i++) { 643d70f2a14SAndrew Morton long x = atomic_long_read(&mm->rss_stat.count[i]); 644d70f2a14SAndrew Morton 645d70f2a14SAndrew Morton if (unlikely(x)) 646d70f2a14SAndrew Morton printk(KERN_ALERT "BUG: Bad rss-counter state " 647d70f2a14SAndrew Morton "mm:%p idx:%d val:%ld\n", mm, i, x); 648d70f2a14SAndrew Morton } 649d70f2a14SAndrew Morton 650d70f2a14SAndrew Morton if (mm_pgtables_bytes(mm)) 651d70f2a14SAndrew Morton pr_alert("BUG: non-zero pgtables_bytes on freeing mm: %ld\n", 652d70f2a14SAndrew Morton mm_pgtables_bytes(mm)); 653d70f2a14SAndrew Morton 654d70f2a14SAndrew Morton #if defined(CONFIG_TRANSPARENT_HUGEPAGE) && !USE_SPLIT_PMD_PTLOCKS 655d70f2a14SAndrew Morton VM_BUG_ON_MM(mm->pmd_huge_pte, mm); 656d70f2a14SAndrew Morton #endif 657d70f2a14SAndrew Morton } 6581da177e4SLinus Torvalds 659e94b1766SChristoph Lameter #define allocate_mm() (kmem_cache_alloc(mm_cachep, GFP_KERNEL)) 6601da177e4SLinus Torvalds #define free_mm(mm) (kmem_cache_free(mm_cachep, (mm))) 6611da177e4SLinus Torvalds 662d70f2a14SAndrew Morton /* 663d70f2a14SAndrew Morton * Called when the last reference to the mm 664d70f2a14SAndrew Morton * is dropped: either by a lazy thread or by 665d70f2a14SAndrew Morton * mmput. Free the page directory and the mm. 666d70f2a14SAndrew Morton */ 667d34bc48fSAndrew Morton void __mmdrop(struct mm_struct *mm) 668d70f2a14SAndrew Morton { 669d70f2a14SAndrew Morton BUG_ON(mm == &init_mm); 6703eda69c9SMark Rutland WARN_ON_ONCE(mm == current->mm); 6713eda69c9SMark Rutland WARN_ON_ONCE(mm == current->active_mm); 672d70f2a14SAndrew Morton mm_free_pgd(mm); 673d70f2a14SAndrew Morton destroy_context(mm); 674d70f2a14SAndrew Morton hmm_mm_destroy(mm); 675d70f2a14SAndrew Morton mmu_notifier_mm_destroy(mm); 676d70f2a14SAndrew Morton check_mm(mm); 677d70f2a14SAndrew Morton put_user_ns(mm->user_ns); 678d70f2a14SAndrew Morton free_mm(mm); 679d70f2a14SAndrew Morton } 680d34bc48fSAndrew Morton EXPORT_SYMBOL_GPL(__mmdrop); 681d70f2a14SAndrew Morton 682d70f2a14SAndrew Morton static void mmdrop_async_fn(struct work_struct *work) 683d70f2a14SAndrew Morton { 684d70f2a14SAndrew Morton struct mm_struct *mm; 685d70f2a14SAndrew Morton 686d70f2a14SAndrew Morton mm = container_of(work, struct mm_struct, async_put_work); 687d70f2a14SAndrew Morton __mmdrop(mm); 688d70f2a14SAndrew Morton } 689d70f2a14SAndrew Morton 690d70f2a14SAndrew Morton static void mmdrop_async(struct mm_struct *mm) 691d70f2a14SAndrew Morton { 692d70f2a14SAndrew Morton if (unlikely(atomic_dec_and_test(&mm->mm_count))) { 693d70f2a14SAndrew Morton INIT_WORK(&mm->async_put_work, mmdrop_async_fn); 694d70f2a14SAndrew Morton schedule_work(&mm->async_put_work); 695d70f2a14SAndrew Morton } 696d70f2a14SAndrew Morton } 697d70f2a14SAndrew Morton 6981da177e4SLinus Torvalds static inline void free_signal_struct(struct signal_struct *sig) 6991da177e4SLinus Torvalds { 7001da177e4SLinus Torvalds taskstats_tgid_free(sig); 7011da177e4SLinus Torvalds sched_autogroup_exit(sig); 7021da177e4SLinus Torvalds /* 7031da177e4SLinus Torvalds * __mmdrop is not safe to call from softirq context on x86 due to 7041da177e4SLinus Torvalds * pgd_dtor so postpone it to the async context 7051da177e4SLinus Torvalds */ 7061da177e4SLinus Torvalds if (sig->oom_mm) 7071da177e4SLinus Torvalds mmdrop_async(sig->oom_mm); 7081da177e4SLinus Torvalds kmem_cache_free(signal_cachep, sig); 7091da177e4SLinus Torvalds } 7101da177e4SLinus Torvalds 7111da177e4SLinus Torvalds static inline void put_signal_struct(struct signal_struct *sig) 7121da177e4SLinus Torvalds { 7131da177e4SLinus Torvalds if (atomic_dec_and_test(&sig->sigcnt)) 7141da177e4SLinus Torvalds free_signal_struct(sig); 7151da177e4SLinus Torvalds } 7161da177e4SLinus Torvalds 7171da177e4SLinus Torvalds void __put_task_struct(struct task_struct *tsk) 7181da177e4SLinus Torvalds { 7191da177e4SLinus Torvalds WARN_ON(!tsk->exit_state); 7201da177e4SLinus Torvalds WARN_ON(atomic_read(&tsk->usage)); 7211da177e4SLinus Torvalds WARN_ON(tsk == current); 7221da177e4SLinus Torvalds 7231da177e4SLinus Torvalds cgroup_free(tsk); 7241da177e4SLinus Torvalds task_numa_free(tsk); 7251da177e4SLinus Torvalds security_task_free(tsk); 7261da177e4SLinus Torvalds exit_creds(tsk); 7271da177e4SLinus Torvalds delayacct_tsk_free(tsk); 7281da177e4SLinus Torvalds put_signal_struct(tsk->signal); 7291da177e4SLinus Torvalds 7301da177e4SLinus Torvalds if (!profile_handoff_task(tsk)) 7311da177e4SLinus Torvalds free_task(tsk); 7321da177e4SLinus Torvalds } 7331da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(__put_task_struct); 7341da177e4SLinus Torvalds 7351da177e4SLinus Torvalds void __init __weak arch_task_cache_init(void) { } 7361da177e4SLinus Torvalds 7371da177e4SLinus Torvalds /* 7381da177e4SLinus Torvalds * set_max_threads 7391da177e4SLinus Torvalds */ 7401da177e4SLinus Torvalds static void set_max_threads(unsigned int max_threads_suggested) 7411da177e4SLinus Torvalds { 7421da177e4SLinus Torvalds u64 threads; 743ca79b0c2SArun KS unsigned long nr_pages = totalram_pages(); 7441da177e4SLinus Torvalds 7451da177e4SLinus Torvalds /* 7461da177e4SLinus Torvalds * The number of threads shall be limited such that the thread 7471da177e4SLinus Torvalds * structures may only consume a small part of the available memory. 7481da177e4SLinus Torvalds */ 7493d6357deSArun KS if (fls64(nr_pages) + fls64(PAGE_SIZE) > 64) 7501da177e4SLinus Torvalds threads = MAX_THREADS; 7511da177e4SLinus Torvalds else 7523d6357deSArun KS threads = div64_u64((u64) nr_pages * (u64) PAGE_SIZE, 7531da177e4SLinus Torvalds (u64) THREAD_SIZE * 8UL); 7541da177e4SLinus Torvalds 7551da177e4SLinus Torvalds if (threads > max_threads_suggested) 7561da177e4SLinus Torvalds threads = max_threads_suggested; 7571da177e4SLinus Torvalds 7581da177e4SLinus Torvalds max_threads = clamp_t(u64, threads, MIN_THREADS, MAX_THREADS); 7591da177e4SLinus Torvalds } 7601da177e4SLinus Torvalds 7611da177e4SLinus Torvalds #ifdef CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT 7621da177e4SLinus Torvalds /* Initialized by the architecture: */ 7631da177e4SLinus Torvalds int arch_task_struct_size __read_mostly; 7641da177e4SLinus Torvalds #endif 7651da177e4SLinus Torvalds 7665905429aSKees Cook static void task_struct_whitelist(unsigned long *offset, unsigned long *size) 7675905429aSKees Cook { 7685905429aSKees Cook /* Fetch thread_struct whitelist for the architecture. */ 7695905429aSKees Cook arch_thread_struct_whitelist(offset, size); 7705905429aSKees Cook 7715905429aSKees Cook /* 7725905429aSKees Cook * Handle zero-sized whitelist or empty thread_struct, otherwise 7735905429aSKees Cook * adjust offset to position of thread_struct in task_struct. 7745905429aSKees Cook */ 7755905429aSKees Cook if (unlikely(*size == 0)) 7765905429aSKees Cook *offset = 0; 7775905429aSKees Cook else 7785905429aSKees Cook *offset += offsetof(struct task_struct, thread); 7795905429aSKees Cook } 7805905429aSKees Cook 7811da177e4SLinus Torvalds void __init fork_init(void) 7821da177e4SLinus Torvalds { 7831da177e4SLinus Torvalds int i; 7841da177e4SLinus Torvalds #ifndef CONFIG_ARCH_TASK_STRUCT_ALLOCATOR 7851da177e4SLinus Torvalds #ifndef ARCH_MIN_TASKALIGN 7861da177e4SLinus Torvalds #define ARCH_MIN_TASKALIGN 0 7871da177e4SLinus Torvalds #endif 7881da177e4SLinus Torvalds int align = max_t(int, L1_CACHE_BYTES, ARCH_MIN_TASKALIGN); 7895905429aSKees Cook unsigned long useroffset, usersize; 7901da177e4SLinus Torvalds 7911da177e4SLinus Torvalds /* create a slab on which task_structs can be allocated */ 7925905429aSKees Cook task_struct_whitelist(&useroffset, &usersize); 7935905429aSKees Cook task_struct_cachep = kmem_cache_create_usercopy("task_struct", 7941da177e4SLinus Torvalds arch_task_struct_size, align, 7955905429aSKees Cook SLAB_PANIC|SLAB_ACCOUNT, 7965905429aSKees Cook useroffset, usersize, NULL); 7971da177e4SLinus Torvalds #endif 7981da177e4SLinus Torvalds 7991da177e4SLinus Torvalds /* do the arch specific task caches init */ 8001da177e4SLinus Torvalds arch_task_cache_init(); 8011da177e4SLinus Torvalds 8021da177e4SLinus Torvalds set_max_threads(MAX_THREADS); 8031da177e4SLinus Torvalds 8041da177e4SLinus Torvalds init_task.signal->rlim[RLIMIT_NPROC].rlim_cur = max_threads/2; 8051da177e4SLinus Torvalds init_task.signal->rlim[RLIMIT_NPROC].rlim_max = max_threads/2; 8061da177e4SLinus Torvalds init_task.signal->rlim[RLIMIT_SIGPENDING] = 8071da177e4SLinus Torvalds init_task.signal->rlim[RLIMIT_NPROC]; 8081da177e4SLinus Torvalds 8091da177e4SLinus Torvalds for (i = 0; i < UCOUNT_COUNTS; i++) { 8101da177e4SLinus Torvalds init_user_ns.ucount_max[i] = max_threads/2; 8111da177e4SLinus Torvalds } 8121da177e4SLinus Torvalds 8131da177e4SLinus Torvalds #ifdef CONFIG_VMAP_STACK 8141da177e4SLinus Torvalds cpuhp_setup_state(CPUHP_BP_PREPARE_DYN, "fork:vm_stack_cache", 8151da177e4SLinus Torvalds NULL, free_vm_stack_cache); 8161da177e4SLinus Torvalds #endif 8171da177e4SLinus Torvalds 8181da177e4SLinus Torvalds lockdep_init_task(&init_task); 8191da177e4SLinus Torvalds } 8201da177e4SLinus Torvalds 8211da177e4SLinus Torvalds int __weak arch_dup_task_struct(struct task_struct *dst, 8221da177e4SLinus Torvalds struct task_struct *src) 8231da177e4SLinus Torvalds { 8241da177e4SLinus Torvalds *dst = *src; 8251da177e4SLinus Torvalds return 0; 8261da177e4SLinus Torvalds } 8271da177e4SLinus Torvalds 8281da177e4SLinus Torvalds void set_task_stack_end_magic(struct task_struct *tsk) 8291da177e4SLinus Torvalds { 8301da177e4SLinus Torvalds unsigned long *stackend; 8311da177e4SLinus Torvalds 8321da177e4SLinus Torvalds stackend = end_of_stack(tsk); 8331da177e4SLinus Torvalds *stackend = STACK_END_MAGIC; /* for overflow detection */ 8341da177e4SLinus Torvalds } 8351da177e4SLinus Torvalds 8361da177e4SLinus Torvalds static struct task_struct *dup_task_struct(struct task_struct *orig, int node) 8371da177e4SLinus Torvalds { 8381da177e4SLinus Torvalds struct task_struct *tsk; 8391da177e4SLinus Torvalds unsigned long *stack; 8400f4991e8SYueHaibing struct vm_struct *stack_vm_area __maybe_unused; 8411da177e4SLinus Torvalds int err; 8421da177e4SLinus Torvalds 8431da177e4SLinus Torvalds if (node == NUMA_NO_NODE) 8441da177e4SLinus Torvalds node = tsk_fork_get_node(orig); 8451da177e4SLinus Torvalds tsk = alloc_task_struct_node(node); 8461da177e4SLinus Torvalds if (!tsk) 8471da177e4SLinus Torvalds return NULL; 8481da177e4SLinus Torvalds 8491da177e4SLinus Torvalds stack = alloc_thread_stack_node(tsk, node); 8501da177e4SLinus Torvalds if (!stack) 8511da177e4SLinus Torvalds goto free_tsk; 8521da177e4SLinus Torvalds 8539b6f7e16SRoman Gushchin if (memcg_charge_kernel_stack(tsk)) 8549b6f7e16SRoman Gushchin goto free_stack; 8559b6f7e16SRoman Gushchin 8561da177e4SLinus Torvalds stack_vm_area = task_stack_vm_area(tsk); 8571da177e4SLinus Torvalds 8581da177e4SLinus Torvalds err = arch_dup_task_struct(tsk, orig); 8591da177e4SLinus Torvalds 8601da177e4SLinus Torvalds /* 8611da177e4SLinus Torvalds * arch_dup_task_struct() clobbers the stack-related fields. Make 8621da177e4SLinus Torvalds * sure they're properly initialized before using any stack-related 8631da177e4SLinus Torvalds * functions again. 8641da177e4SLinus Torvalds */ 8651da177e4SLinus Torvalds tsk->stack = stack; 8661da177e4SLinus Torvalds #ifdef CONFIG_VMAP_STACK 8671da177e4SLinus Torvalds tsk->stack_vm_area = stack_vm_area; 8681da177e4SLinus Torvalds #endif 8691da177e4SLinus Torvalds #ifdef CONFIG_THREAD_INFO_IN_TASK 8701da177e4SLinus Torvalds atomic_set(&tsk->stack_refcount, 1); 8711da177e4SLinus Torvalds #endif 8721da177e4SLinus Torvalds 8731da177e4SLinus Torvalds if (err) 8741da177e4SLinus Torvalds goto free_stack; 8751da177e4SLinus Torvalds 8761da177e4SLinus Torvalds #ifdef CONFIG_SECCOMP 8771da177e4SLinus Torvalds /* 8781da177e4SLinus Torvalds * We must handle setting up seccomp filters once we're under 8791da177e4SLinus Torvalds * the sighand lock in case orig has changed between now and 8801da177e4SLinus Torvalds * then. Until then, filter must be NULL to avoid messing up 8811da177e4SLinus Torvalds * the usage counts on the error path calling free_task. 8821da177e4SLinus Torvalds */ 8831da177e4SLinus Torvalds tsk->seccomp.filter = NULL; 8841da177e4SLinus Torvalds #endif 8851da177e4SLinus Torvalds 8861da177e4SLinus Torvalds setup_thread_stack(tsk, orig); 8871da177e4SLinus Torvalds clear_user_return_notifier(tsk); 8881da177e4SLinus Torvalds clear_tsk_need_resched(tsk); 8891da177e4SLinus Torvalds set_task_stack_end_magic(tsk); 8901da177e4SLinus Torvalds 891050e9baaSLinus Torvalds #ifdef CONFIG_STACKPROTECTOR 8921da177e4SLinus Torvalds tsk->stack_canary = get_random_canary(); 8931da177e4SLinus Torvalds #endif 8941da177e4SLinus Torvalds 8951da177e4SLinus Torvalds /* 8961da177e4SLinus Torvalds * One for us, one for whoever does the "release_task()" (usually 8971da177e4SLinus Torvalds * parent) 8981da177e4SLinus Torvalds */ 8991da177e4SLinus Torvalds atomic_set(&tsk->usage, 2); 9001da177e4SLinus Torvalds #ifdef CONFIG_BLK_DEV_IO_TRACE 9011da177e4SLinus Torvalds tsk->btrace_seq = 0; 9021da177e4SLinus Torvalds #endif 9031da177e4SLinus Torvalds tsk->splice_pipe = NULL; 9041da177e4SLinus Torvalds tsk->task_frag.page = NULL; 9051da177e4SLinus Torvalds tsk->wake_q.next = NULL; 9061da177e4SLinus Torvalds 9071da177e4SLinus Torvalds account_kernel_stack(tsk, 1); 9081da177e4SLinus Torvalds 9091da177e4SLinus Torvalds kcov_task_init(tsk); 9101da177e4SLinus Torvalds 9111da177e4SLinus Torvalds #ifdef CONFIG_FAULT_INJECTION 9121da177e4SLinus Torvalds tsk->fail_nth = 0; 9131da177e4SLinus Torvalds #endif 9141da177e4SLinus Torvalds 9152c323017SJosef Bacik #ifdef CONFIG_BLK_CGROUP 9162c323017SJosef Bacik tsk->throttle_queue = NULL; 9172c323017SJosef Bacik tsk->use_memdelay = 0; 9182c323017SJosef Bacik #endif 9192c323017SJosef Bacik 920d46eb14bSShakeel Butt #ifdef CONFIG_MEMCG 921d46eb14bSShakeel Butt tsk->active_memcg = NULL; 922d46eb14bSShakeel Butt #endif 9231da177e4SLinus Torvalds return tsk; 9241da177e4SLinus Torvalds 9251da177e4SLinus Torvalds free_stack: 9261da177e4SLinus Torvalds free_thread_stack(tsk); 9271da177e4SLinus Torvalds free_tsk: 9281da177e4SLinus Torvalds free_task_struct(tsk); 9291da177e4SLinus Torvalds return NULL; 9301da177e4SLinus Torvalds } 9311da177e4SLinus Torvalds 9321da177e4SLinus Torvalds __cacheline_aligned_in_smp DEFINE_SPINLOCK(mmlist_lock); 9331da177e4SLinus Torvalds 9344cb0e11bSHidehiro Kawai static unsigned long default_dump_filter = MMF_DUMP_FILTER_DEFAULT; 9354cb0e11bSHidehiro Kawai 9364cb0e11bSHidehiro Kawai static int __init coredump_filter_setup(char *s) 9374cb0e11bSHidehiro Kawai { 9384cb0e11bSHidehiro Kawai default_dump_filter = 9394cb0e11bSHidehiro Kawai (simple_strtoul(s, NULL, 0) << MMF_DUMP_FILTER_SHIFT) & 9404cb0e11bSHidehiro Kawai MMF_DUMP_FILTER_MASK; 9414cb0e11bSHidehiro Kawai return 1; 9424cb0e11bSHidehiro Kawai } 9434cb0e11bSHidehiro Kawai 9444cb0e11bSHidehiro Kawai __setup("coredump_filter=", coredump_filter_setup); 9454cb0e11bSHidehiro Kawai 9461da177e4SLinus Torvalds #include <linux/init_task.h> 9471da177e4SLinus Torvalds 948858f0993SAlexey Dobriyan static void mm_init_aio(struct mm_struct *mm) 949858f0993SAlexey Dobriyan { 950858f0993SAlexey Dobriyan #ifdef CONFIG_AIO 951858f0993SAlexey Dobriyan spin_lock_init(&mm->ioctx_lock); 952db446a08SBenjamin LaHaise mm->ioctx_table = NULL; 953858f0993SAlexey Dobriyan #endif 954858f0993SAlexey Dobriyan } 955858f0993SAlexey Dobriyan 95633144e84SVladimir Davydov static void mm_init_owner(struct mm_struct *mm, struct task_struct *p) 95733144e84SVladimir Davydov { 95833144e84SVladimir Davydov #ifdef CONFIG_MEMCG 95933144e84SVladimir Davydov mm->owner = p; 96033144e84SVladimir Davydov #endif 96133144e84SVladimir Davydov } 96233144e84SVladimir Davydov 963355627f5SEric Biggers static void mm_init_uprobes_state(struct mm_struct *mm) 964355627f5SEric Biggers { 965355627f5SEric Biggers #ifdef CONFIG_UPROBES 966355627f5SEric Biggers mm->uprobes_state.xol_area = NULL; 967355627f5SEric Biggers #endif 968355627f5SEric Biggers } 969355627f5SEric Biggers 970bfedb589SEric W. Biederman static struct mm_struct *mm_init(struct mm_struct *mm, struct task_struct *p, 971bfedb589SEric W. Biederman struct user_namespace *user_ns) 9721da177e4SLinus Torvalds { 97341f727fdSVladimir Davydov mm->mmap = NULL; 97441f727fdSVladimir Davydov mm->mm_rb = RB_ROOT; 97541f727fdSVladimir Davydov mm->vmacache_seqnum = 0; 9761da177e4SLinus Torvalds atomic_set(&mm->mm_users, 1); 9771da177e4SLinus Torvalds atomic_set(&mm->mm_count, 1); 9781da177e4SLinus Torvalds init_rwsem(&mm->mmap_sem); 9791da177e4SLinus Torvalds INIT_LIST_HEAD(&mm->mmlist); 980999d9fc1SOleg Nesterov mm->core_state = NULL; 981af5b0f6aSKirill A. Shutemov mm_pgtables_bytes_init(mm); 98241f727fdSVladimir Davydov mm->map_count = 0; 98341f727fdSVladimir Davydov mm->locked_vm = 0; 984*70f8a3caSDavidlohr Bueso atomic64_set(&mm->pinned_vm, 0); 985d559db08SKAMEZAWA Hiroyuki memset(&mm->rss_stat, 0, sizeof(mm->rss_stat)); 9861da177e4SLinus Torvalds spin_lock_init(&mm->page_table_lock); 98788aa7cc6SYang Shi spin_lock_init(&mm->arg_lock); 98841f727fdSVladimir Davydov mm_init_cpumask(mm); 989858f0993SAlexey Dobriyan mm_init_aio(mm); 990cf475ad2SBalbir Singh mm_init_owner(mm, p); 9912b7e8665SEric Biggers RCU_INIT_POINTER(mm->exe_file, NULL); 99241f727fdSVladimir Davydov mmu_notifier_mm_init(mm); 993133ff0eaSJérôme Glisse hmm_mm_init(mm); 99416af97dcSNadav Amit init_tlb_flush_pending(mm); 99541f727fdSVladimir Davydov #if defined(CONFIG_TRANSPARENT_HUGEPAGE) && !USE_SPLIT_PMD_PTLOCKS 99641f727fdSVladimir Davydov mm->pmd_huge_pte = NULL; 99741f727fdSVladimir Davydov #endif 998355627f5SEric Biggers mm_init_uprobes_state(mm); 9991da177e4SLinus Torvalds 1000a0715cc2SAlex Thorlton if (current->mm) { 1001a0715cc2SAlex Thorlton mm->flags = current->mm->flags & MMF_INIT_MASK; 1002a0715cc2SAlex Thorlton mm->def_flags = current->mm->def_flags & VM_INIT_DEF_MASK; 1003a0715cc2SAlex Thorlton } else { 1004a0715cc2SAlex Thorlton mm->flags = default_dump_filter; 10051da177e4SLinus Torvalds mm->def_flags = 0; 1006a0715cc2SAlex Thorlton } 1007a0715cc2SAlex Thorlton 100841f727fdSVladimir Davydov if (mm_alloc_pgd(mm)) 100941f727fdSVladimir Davydov goto fail_nopgd; 101078fb7466SPavel Emelianov 101141f727fdSVladimir Davydov if (init_new_context(p, mm)) 101241f727fdSVladimir Davydov goto fail_nocontext; 101341f727fdSVladimir Davydov 1014bfedb589SEric W. Biederman mm->user_ns = get_user_ns(user_ns); 101541f727fdSVladimir Davydov return mm; 101641f727fdSVladimir Davydov 101741f727fdSVladimir Davydov fail_nocontext: 101841f727fdSVladimir Davydov mm_free_pgd(mm); 101941f727fdSVladimir Davydov fail_nopgd: 10201da177e4SLinus Torvalds free_mm(mm); 10211da177e4SLinus Torvalds return NULL; 10221da177e4SLinus Torvalds } 10231da177e4SLinus Torvalds 10241da177e4SLinus Torvalds /* 10251da177e4SLinus Torvalds * Allocate and initialize an mm_struct. 10261da177e4SLinus Torvalds */ 10271da177e4SLinus Torvalds struct mm_struct *mm_alloc(void) 10281da177e4SLinus Torvalds { 10291da177e4SLinus Torvalds struct mm_struct *mm; 10301da177e4SLinus Torvalds 10311da177e4SLinus Torvalds mm = allocate_mm(); 1032de03c72cSKOSAKI Motohiro if (!mm) 1033de03c72cSKOSAKI Motohiro return NULL; 1034de03c72cSKOSAKI Motohiro 10351da177e4SLinus Torvalds memset(mm, 0, sizeof(*mm)); 1036bfedb589SEric W. Biederman return mm_init(mm, current, current_user_ns()); 10371da177e4SLinus Torvalds } 10381da177e4SLinus Torvalds 1039ec8d7c14SMichal Hocko static inline void __mmput(struct mm_struct *mm) 10401da177e4SLinus Torvalds { 1041ec8d7c14SMichal Hocko VM_BUG_ON(atomic_read(&mm->mm_users)); 10420ae26f1bSAndrew Morton 1043d4b3b638SSrikar Dronamraju uprobe_clear_state(mm); 10441da177e4SLinus Torvalds exit_aio(mm); 10451c2fb7a4SAndrea Arcangeli ksm_exit(mm); 1046ba76149fSAndrea Arcangeli khugepaged_exit(mm); /* must run before exit_mmap */ 10471da177e4SLinus Torvalds exit_mmap(mm); 10486fcb52a5SAaron Lu mm_put_huge_zero_page(mm); 1049925d1c40SMatt Helsley set_mm_exe_file(mm, NULL); 10501da177e4SLinus Torvalds if (!list_empty(&mm->mmlist)) { 10511da177e4SLinus Torvalds spin_lock(&mmlist_lock); 10521da177e4SLinus Torvalds list_del(&mm->mmlist); 10531da177e4SLinus Torvalds spin_unlock(&mmlist_lock); 10541da177e4SLinus Torvalds } 1055801460d0SHiroshi Shimamoto if (mm->binfmt) 1056801460d0SHiroshi Shimamoto module_put(mm->binfmt->module); 10571da177e4SLinus Torvalds mmdrop(mm); 10581da177e4SLinus Torvalds } 1059ec8d7c14SMichal Hocko 1060ec8d7c14SMichal Hocko /* 1061ec8d7c14SMichal Hocko * Decrement the use count and release all resources for an mm. 1062ec8d7c14SMichal Hocko */ 1063ec8d7c14SMichal Hocko void mmput(struct mm_struct *mm) 1064ec8d7c14SMichal Hocko { 1065ec8d7c14SMichal Hocko might_sleep(); 1066ec8d7c14SMichal Hocko 1067ec8d7c14SMichal Hocko if (atomic_dec_and_test(&mm->mm_users)) 1068ec8d7c14SMichal Hocko __mmput(mm); 10691da177e4SLinus Torvalds } 10701da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(mmput); 10711da177e4SLinus Torvalds 1072a1b2289cSSherry Yang #ifdef CONFIG_MMU 1073a1b2289cSSherry Yang static void mmput_async_fn(struct work_struct *work) 1074a1b2289cSSherry Yang { 1075a1b2289cSSherry Yang struct mm_struct *mm = container_of(work, struct mm_struct, 1076a1b2289cSSherry Yang async_put_work); 1077a1b2289cSSherry Yang 1078a1b2289cSSherry Yang __mmput(mm); 1079a1b2289cSSherry Yang } 1080a1b2289cSSherry Yang 1081a1b2289cSSherry Yang void mmput_async(struct mm_struct *mm) 1082a1b2289cSSherry Yang { 1083a1b2289cSSherry Yang if (atomic_dec_and_test(&mm->mm_users)) { 1084a1b2289cSSherry Yang INIT_WORK(&mm->async_put_work, mmput_async_fn); 1085a1b2289cSSherry Yang schedule_work(&mm->async_put_work); 1086a1b2289cSSherry Yang } 1087a1b2289cSSherry Yang } 1088a1b2289cSSherry Yang #endif 1089a1b2289cSSherry Yang 109090f31d0eSKonstantin Khlebnikov /** 109190f31d0eSKonstantin Khlebnikov * set_mm_exe_file - change a reference to the mm's executable file 109290f31d0eSKonstantin Khlebnikov * 109390f31d0eSKonstantin Khlebnikov * This changes mm's executable file (shown as symlink /proc/[pid]/exe). 109490f31d0eSKonstantin Khlebnikov * 10956e399cd1SDavidlohr Bueso * Main users are mmput() and sys_execve(). Callers prevent concurrent 10966e399cd1SDavidlohr Bueso * invocations: in mmput() nobody alive left, in execve task is single 10976e399cd1SDavidlohr Bueso * threaded. sys_prctl(PR_SET_MM_MAP/EXE_FILE) also needs to set the 10986e399cd1SDavidlohr Bueso * mm->exe_file, but does so without using set_mm_exe_file() in order 10996e399cd1SDavidlohr Bueso * to do avoid the need for any locks. 110090f31d0eSKonstantin Khlebnikov */ 110138646013SJiri Slaby void set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file) 110238646013SJiri Slaby { 11036e399cd1SDavidlohr Bueso struct file *old_exe_file; 11046e399cd1SDavidlohr Bueso 11056e399cd1SDavidlohr Bueso /* 11066e399cd1SDavidlohr Bueso * It is safe to dereference the exe_file without RCU as 11076e399cd1SDavidlohr Bueso * this function is only called if nobody else can access 11086e399cd1SDavidlohr Bueso * this mm -- see comment above for justification. 11096e399cd1SDavidlohr Bueso */ 11106e399cd1SDavidlohr Bueso old_exe_file = rcu_dereference_raw(mm->exe_file); 111190f31d0eSKonstantin Khlebnikov 111238646013SJiri Slaby if (new_exe_file) 111338646013SJiri Slaby get_file(new_exe_file); 111490f31d0eSKonstantin Khlebnikov rcu_assign_pointer(mm->exe_file, new_exe_file); 111590f31d0eSKonstantin Khlebnikov if (old_exe_file) 111690f31d0eSKonstantin Khlebnikov fput(old_exe_file); 111738646013SJiri Slaby } 111838646013SJiri Slaby 111990f31d0eSKonstantin Khlebnikov /** 112090f31d0eSKonstantin Khlebnikov * get_mm_exe_file - acquire a reference to the mm's executable file 112190f31d0eSKonstantin Khlebnikov * 112290f31d0eSKonstantin Khlebnikov * Returns %NULL if mm has no associated executable file. 112390f31d0eSKonstantin Khlebnikov * User must release file via fput(). 112490f31d0eSKonstantin Khlebnikov */ 112538646013SJiri Slaby struct file *get_mm_exe_file(struct mm_struct *mm) 112638646013SJiri Slaby { 112738646013SJiri Slaby struct file *exe_file; 112838646013SJiri Slaby 112990f31d0eSKonstantin Khlebnikov rcu_read_lock(); 113090f31d0eSKonstantin Khlebnikov exe_file = rcu_dereference(mm->exe_file); 113190f31d0eSKonstantin Khlebnikov if (exe_file && !get_file_rcu(exe_file)) 113290f31d0eSKonstantin Khlebnikov exe_file = NULL; 113390f31d0eSKonstantin Khlebnikov rcu_read_unlock(); 113438646013SJiri Slaby return exe_file; 113538646013SJiri Slaby } 113611163348SDavidlohr Bueso EXPORT_SYMBOL(get_mm_exe_file); 113738646013SJiri Slaby 11381da177e4SLinus Torvalds /** 1139cd81a917SMateusz Guzik * get_task_exe_file - acquire a reference to the task's executable file 1140cd81a917SMateusz Guzik * 1141cd81a917SMateusz Guzik * Returns %NULL if task's mm (if any) has no associated executable file or 1142cd81a917SMateusz Guzik * this is a kernel thread with borrowed mm (see the comment above get_task_mm). 1143cd81a917SMateusz Guzik * User must release file via fput(). 1144cd81a917SMateusz Guzik */ 1145cd81a917SMateusz Guzik struct file *get_task_exe_file(struct task_struct *task) 1146cd81a917SMateusz Guzik { 1147cd81a917SMateusz Guzik struct file *exe_file = NULL; 1148cd81a917SMateusz Guzik struct mm_struct *mm; 1149cd81a917SMateusz Guzik 1150cd81a917SMateusz Guzik task_lock(task); 1151cd81a917SMateusz Guzik mm = task->mm; 1152cd81a917SMateusz Guzik if (mm) { 1153cd81a917SMateusz Guzik if (!(task->flags & PF_KTHREAD)) 1154cd81a917SMateusz Guzik exe_file = get_mm_exe_file(mm); 1155cd81a917SMateusz Guzik } 1156cd81a917SMateusz Guzik task_unlock(task); 1157cd81a917SMateusz Guzik return exe_file; 1158cd81a917SMateusz Guzik } 1159cd81a917SMateusz Guzik EXPORT_SYMBOL(get_task_exe_file); 1160cd81a917SMateusz Guzik 1161cd81a917SMateusz Guzik /** 11621da177e4SLinus Torvalds * get_task_mm - acquire a reference to the task's mm 11631da177e4SLinus Torvalds * 1164246bb0b1SOleg Nesterov * Returns %NULL if the task has no mm. Checks PF_KTHREAD (meaning 11651da177e4SLinus Torvalds * this kernel workthread has transiently adopted a user mm with use_mm, 11661da177e4SLinus Torvalds * to do its AIO) is not set and if so returns a reference to it, after 11671da177e4SLinus Torvalds * bumping up the use count. User must release the mm via mmput() 11681da177e4SLinus Torvalds * after use. Typically used by /proc and ptrace. 11691da177e4SLinus Torvalds */ 11701da177e4SLinus Torvalds struct mm_struct *get_task_mm(struct task_struct *task) 11711da177e4SLinus Torvalds { 11721da177e4SLinus Torvalds struct mm_struct *mm; 11731da177e4SLinus Torvalds 11741da177e4SLinus Torvalds task_lock(task); 11751da177e4SLinus Torvalds mm = task->mm; 11761da177e4SLinus Torvalds if (mm) { 1177246bb0b1SOleg Nesterov if (task->flags & PF_KTHREAD) 11781da177e4SLinus Torvalds mm = NULL; 11791da177e4SLinus Torvalds else 11803fce371bSVegard Nossum mmget(mm); 11811da177e4SLinus Torvalds } 11821da177e4SLinus Torvalds task_unlock(task); 11831da177e4SLinus Torvalds return mm; 11841da177e4SLinus Torvalds } 11851da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(get_task_mm); 11861da177e4SLinus Torvalds 11878cdb878dSChristopher Yeoh struct mm_struct *mm_access(struct task_struct *task, unsigned int mode) 11888cdb878dSChristopher Yeoh { 11898cdb878dSChristopher Yeoh struct mm_struct *mm; 11908cdb878dSChristopher Yeoh int err; 11918cdb878dSChristopher Yeoh 11928cdb878dSChristopher Yeoh err = mutex_lock_killable(&task->signal->cred_guard_mutex); 11938cdb878dSChristopher Yeoh if (err) 11948cdb878dSChristopher Yeoh return ERR_PTR(err); 11958cdb878dSChristopher Yeoh 11968cdb878dSChristopher Yeoh mm = get_task_mm(task); 11978cdb878dSChristopher Yeoh if (mm && mm != current->mm && 11988cdb878dSChristopher Yeoh !ptrace_may_access(task, mode)) { 11998cdb878dSChristopher Yeoh mmput(mm); 12008cdb878dSChristopher Yeoh mm = ERR_PTR(-EACCES); 12018cdb878dSChristopher Yeoh } 12028cdb878dSChristopher Yeoh mutex_unlock(&task->signal->cred_guard_mutex); 12038cdb878dSChristopher Yeoh 12048cdb878dSChristopher Yeoh return mm; 12058cdb878dSChristopher Yeoh } 12068cdb878dSChristopher Yeoh 120757b59c4aSOleg Nesterov static void complete_vfork_done(struct task_struct *tsk) 1208c415c3b4SOleg Nesterov { 1209d68b46feSOleg Nesterov struct completion *vfork; 1210c415c3b4SOleg Nesterov 1211d68b46feSOleg Nesterov task_lock(tsk); 1212d68b46feSOleg Nesterov vfork = tsk->vfork_done; 1213d68b46feSOleg Nesterov if (likely(vfork)) { 1214c415c3b4SOleg Nesterov tsk->vfork_done = NULL; 1215d68b46feSOleg Nesterov complete(vfork); 1216d68b46feSOleg Nesterov } 1217d68b46feSOleg Nesterov task_unlock(tsk); 1218d68b46feSOleg Nesterov } 1219d68b46feSOleg Nesterov 1220d68b46feSOleg Nesterov static int wait_for_vfork_done(struct task_struct *child, 1221d68b46feSOleg Nesterov struct completion *vfork) 1222d68b46feSOleg Nesterov { 1223d68b46feSOleg Nesterov int killed; 1224d68b46feSOleg Nesterov 1225d68b46feSOleg Nesterov freezer_do_not_count(); 1226d68b46feSOleg Nesterov killed = wait_for_completion_killable(vfork); 1227d68b46feSOleg Nesterov freezer_count(); 1228d68b46feSOleg Nesterov 1229d68b46feSOleg Nesterov if (killed) { 1230d68b46feSOleg Nesterov task_lock(child); 1231d68b46feSOleg Nesterov child->vfork_done = NULL; 1232d68b46feSOleg Nesterov task_unlock(child); 1233d68b46feSOleg Nesterov } 1234d68b46feSOleg Nesterov 1235d68b46feSOleg Nesterov put_task_struct(child); 1236d68b46feSOleg Nesterov return killed; 1237c415c3b4SOleg Nesterov } 1238c415c3b4SOleg Nesterov 12391da177e4SLinus Torvalds /* Please note the differences between mmput and mm_release. 12401da177e4SLinus Torvalds * mmput is called whenever we stop holding onto a mm_struct, 12411da177e4SLinus Torvalds * error success whatever. 12421da177e4SLinus Torvalds * 12431da177e4SLinus Torvalds * mm_release is called after a mm_struct has been removed 12441da177e4SLinus Torvalds * from the current process. 12451da177e4SLinus Torvalds * 12461da177e4SLinus Torvalds * This difference is important for error handling, when we 12471da177e4SLinus Torvalds * only half set up a mm_struct for a new process and need to restore 12481da177e4SLinus Torvalds * the old one. Because we mmput the new mm_struct before 12491da177e4SLinus Torvalds * restoring the old one. . . 12501da177e4SLinus Torvalds * Eric Biederman 10 January 1998 12511da177e4SLinus Torvalds */ 12521da177e4SLinus Torvalds void mm_release(struct task_struct *tsk, struct mm_struct *mm) 12531da177e4SLinus Torvalds { 12548141c7f3SLinus Torvalds /* Get rid of any futexes when releasing the mm */ 12558141c7f3SLinus Torvalds #ifdef CONFIG_FUTEX 1256fc6b177dSPeter Zijlstra if (unlikely(tsk->robust_list)) { 12578141c7f3SLinus Torvalds exit_robust_list(tsk); 1258fc6b177dSPeter Zijlstra tsk->robust_list = NULL; 1259fc6b177dSPeter Zijlstra } 12608141c7f3SLinus Torvalds #ifdef CONFIG_COMPAT 1261fc6b177dSPeter Zijlstra if (unlikely(tsk->compat_robust_list)) { 12628141c7f3SLinus Torvalds compat_exit_robust_list(tsk); 1263fc6b177dSPeter Zijlstra tsk->compat_robust_list = NULL; 1264fc6b177dSPeter Zijlstra } 12658141c7f3SLinus Torvalds #endif 1266322a2c10SThomas Gleixner if (unlikely(!list_empty(&tsk->pi_state_list))) 1267322a2c10SThomas Gleixner exit_pi_state_list(tsk); 12688141c7f3SLinus Torvalds #endif 12698141c7f3SLinus Torvalds 12700326f5a9SSrikar Dronamraju uprobe_free_utask(tsk); 12710326f5a9SSrikar Dronamraju 12721da177e4SLinus Torvalds /* Get rid of any cached register state */ 12731da177e4SLinus Torvalds deactivate_mm(tsk, mm); 12741da177e4SLinus Torvalds 1275fec1d011SRoland McGrath /* 1276735f2770SMichal Hocko * Signal userspace if we're not exiting with a core dump 1277735f2770SMichal Hocko * because we want to leave the value intact for debugging 1278735f2770SMichal Hocko * purposes. 1279fec1d011SRoland McGrath */ 12809c8a8228SEric Dumazet if (tsk->clear_child_tid) { 1281735f2770SMichal Hocko if (!(tsk->signal->flags & SIGNAL_GROUP_COREDUMP) && 12829c8a8228SEric Dumazet atomic_read(&mm->mm_users) > 1) { 12831da177e4SLinus Torvalds /* 12841da177e4SLinus Torvalds * We don't check the error code - if userspace has 12851da177e4SLinus Torvalds * not set up a proper pointer then tough luck. 12861da177e4SLinus Torvalds */ 12879c8a8228SEric Dumazet put_user(0, tsk->clear_child_tid); 12882de0db99SDominik Brodowski do_futex(tsk->clear_child_tid, FUTEX_WAKE, 12892de0db99SDominik Brodowski 1, NULL, NULL, 0, 0); 12909c8a8228SEric Dumazet } 12919c8a8228SEric Dumazet tsk->clear_child_tid = NULL; 12921da177e4SLinus Torvalds } 1293f7505d64SKonstantin Khlebnikov 1294f7505d64SKonstantin Khlebnikov /* 1295f7505d64SKonstantin Khlebnikov * All done, finally we can wake up parent and return this mm to him. 1296f7505d64SKonstantin Khlebnikov * Also kthread_stop() uses this completion for synchronization. 1297f7505d64SKonstantin Khlebnikov */ 1298f7505d64SKonstantin Khlebnikov if (tsk->vfork_done) 1299f7505d64SKonstantin Khlebnikov complete_vfork_done(tsk); 13001da177e4SLinus Torvalds } 13011da177e4SLinus Torvalds 1302a0a7ec30SJANAK DESAI /* 1303a0a7ec30SJANAK DESAI * Allocate a new mm structure and copy contents from the 1304a0a7ec30SJANAK DESAI * mm structure of the passed in task structure. 1305a0a7ec30SJANAK DESAI */ 1306ff252c1fSDaeSeok Youn static struct mm_struct *dup_mm(struct task_struct *tsk) 1307a0a7ec30SJANAK DESAI { 1308a0a7ec30SJANAK DESAI struct mm_struct *mm, *oldmm = current->mm; 1309a0a7ec30SJANAK DESAI int err; 1310a0a7ec30SJANAK DESAI 1311a0a7ec30SJANAK DESAI mm = allocate_mm(); 1312a0a7ec30SJANAK DESAI if (!mm) 1313a0a7ec30SJANAK DESAI goto fail_nomem; 1314a0a7ec30SJANAK DESAI 1315a0a7ec30SJANAK DESAI memcpy(mm, oldmm, sizeof(*mm)); 1316a0a7ec30SJANAK DESAI 1317bfedb589SEric W. Biederman if (!mm_init(mm, tsk, mm->user_ns)) 1318a0a7ec30SJANAK DESAI goto fail_nomem; 1319a0a7ec30SJANAK DESAI 1320a0a7ec30SJANAK DESAI err = dup_mmap(mm, oldmm); 1321a0a7ec30SJANAK DESAI if (err) 1322a0a7ec30SJANAK DESAI goto free_pt; 1323a0a7ec30SJANAK DESAI 1324a0a7ec30SJANAK DESAI mm->hiwater_rss = get_mm_rss(mm); 1325a0a7ec30SJANAK DESAI mm->hiwater_vm = mm->total_vm; 1326a0a7ec30SJANAK DESAI 1327801460d0SHiroshi Shimamoto if (mm->binfmt && !try_module_get(mm->binfmt->module)) 1328801460d0SHiroshi Shimamoto goto free_pt; 1329801460d0SHiroshi Shimamoto 1330a0a7ec30SJANAK DESAI return mm; 1331a0a7ec30SJANAK DESAI 1332a0a7ec30SJANAK DESAI free_pt: 1333801460d0SHiroshi Shimamoto /* don't put binfmt in mmput, we haven't got module yet */ 1334801460d0SHiroshi Shimamoto mm->binfmt = NULL; 1335a0a7ec30SJANAK DESAI mmput(mm); 1336a0a7ec30SJANAK DESAI 1337a0a7ec30SJANAK DESAI fail_nomem: 1338a0a7ec30SJANAK DESAI return NULL; 1339a0a7ec30SJANAK DESAI } 1340a0a7ec30SJANAK DESAI 13411da177e4SLinus Torvalds static int copy_mm(unsigned long clone_flags, struct task_struct *tsk) 13421da177e4SLinus Torvalds { 13431da177e4SLinus Torvalds struct mm_struct *mm, *oldmm; 13441da177e4SLinus Torvalds int retval; 13451da177e4SLinus Torvalds 13461da177e4SLinus Torvalds tsk->min_flt = tsk->maj_flt = 0; 13471da177e4SLinus Torvalds tsk->nvcsw = tsk->nivcsw = 0; 134817406b82SMandeep Singh Baines #ifdef CONFIG_DETECT_HUNG_TASK 134917406b82SMandeep Singh Baines tsk->last_switch_count = tsk->nvcsw + tsk->nivcsw; 1350a2e51445SDmitry Vyukov tsk->last_switch_time = 0; 135117406b82SMandeep Singh Baines #endif 13521da177e4SLinus Torvalds 13531da177e4SLinus Torvalds tsk->mm = NULL; 13541da177e4SLinus Torvalds tsk->active_mm = NULL; 13551da177e4SLinus Torvalds 13561da177e4SLinus Torvalds /* 13571da177e4SLinus Torvalds * Are we cloning a kernel thread? 13581da177e4SLinus Torvalds * 13591da177e4SLinus Torvalds * We need to steal a active VM for that.. 13601da177e4SLinus Torvalds */ 13611da177e4SLinus Torvalds oldmm = current->mm; 13621da177e4SLinus Torvalds if (!oldmm) 13631da177e4SLinus Torvalds return 0; 13641da177e4SLinus Torvalds 1365615d6e87SDavidlohr Bueso /* initialize the new vmacache entries */ 1366615d6e87SDavidlohr Bueso vmacache_flush(tsk); 1367615d6e87SDavidlohr Bueso 13681da177e4SLinus Torvalds if (clone_flags & CLONE_VM) { 13693fce371bSVegard Nossum mmget(oldmm); 13701da177e4SLinus Torvalds mm = oldmm; 13711da177e4SLinus Torvalds goto good_mm; 13721da177e4SLinus Torvalds } 13731da177e4SLinus Torvalds 13741da177e4SLinus Torvalds retval = -ENOMEM; 1375a0a7ec30SJANAK DESAI mm = dup_mm(tsk); 13761da177e4SLinus Torvalds if (!mm) 13771da177e4SLinus Torvalds goto fail_nomem; 13781da177e4SLinus Torvalds 13791da177e4SLinus Torvalds good_mm: 13801da177e4SLinus Torvalds tsk->mm = mm; 13811da177e4SLinus Torvalds tsk->active_mm = mm; 13821da177e4SLinus Torvalds return 0; 13831da177e4SLinus Torvalds 13841da177e4SLinus Torvalds fail_nomem: 13851da177e4SLinus Torvalds return retval; 13861da177e4SLinus Torvalds } 13871da177e4SLinus Torvalds 1388a39bc516SAlexey Dobriyan static int copy_fs(unsigned long clone_flags, struct task_struct *tsk) 13891da177e4SLinus Torvalds { 1390498052bbSAl Viro struct fs_struct *fs = current->fs; 13911da177e4SLinus Torvalds if (clone_flags & CLONE_FS) { 1392498052bbSAl Viro /* tsk->fs is already what we want */ 13932a4419b5SNick Piggin spin_lock(&fs->lock); 1394498052bbSAl Viro if (fs->in_exec) { 13952a4419b5SNick Piggin spin_unlock(&fs->lock); 1396498052bbSAl Viro return -EAGAIN; 1397498052bbSAl Viro } 1398498052bbSAl Viro fs->users++; 13992a4419b5SNick Piggin spin_unlock(&fs->lock); 14001da177e4SLinus Torvalds return 0; 14011da177e4SLinus Torvalds } 1402498052bbSAl Viro tsk->fs = copy_fs_struct(fs); 14031da177e4SLinus Torvalds if (!tsk->fs) 14041da177e4SLinus Torvalds return -ENOMEM; 14051da177e4SLinus Torvalds return 0; 14061da177e4SLinus Torvalds } 14071da177e4SLinus Torvalds 1408a016f338SJANAK DESAI static int copy_files(unsigned long clone_flags, struct task_struct *tsk) 1409a016f338SJANAK DESAI { 1410a016f338SJANAK DESAI struct files_struct *oldf, *newf; 1411a016f338SJANAK DESAI int error = 0; 1412a016f338SJANAK DESAI 1413a016f338SJANAK DESAI /* 1414a016f338SJANAK DESAI * A background process may not have any files ... 1415a016f338SJANAK DESAI */ 1416a016f338SJANAK DESAI oldf = current->files; 1417a016f338SJANAK DESAI if (!oldf) 1418a016f338SJANAK DESAI goto out; 1419a016f338SJANAK DESAI 1420a016f338SJANAK DESAI if (clone_flags & CLONE_FILES) { 1421a016f338SJANAK DESAI atomic_inc(&oldf->count); 1422a016f338SJANAK DESAI goto out; 1423a016f338SJANAK DESAI } 1424a016f338SJANAK DESAI 1425a016f338SJANAK DESAI newf = dup_fd(oldf, &error); 1426a016f338SJANAK DESAI if (!newf) 1427a016f338SJANAK DESAI goto out; 1428a016f338SJANAK DESAI 1429a016f338SJANAK DESAI tsk->files = newf; 1430a016f338SJANAK DESAI error = 0; 1431a016f338SJANAK DESAI out: 1432a016f338SJANAK DESAI return error; 1433a016f338SJANAK DESAI } 1434a016f338SJANAK DESAI 1435fadad878SJens Axboe static int copy_io(unsigned long clone_flags, struct task_struct *tsk) 1436fd0928dfSJens Axboe { 1437fd0928dfSJens Axboe #ifdef CONFIG_BLOCK 1438fd0928dfSJens Axboe struct io_context *ioc = current->io_context; 14396e736be7STejun Heo struct io_context *new_ioc; 1440fd0928dfSJens Axboe 1441fd0928dfSJens Axboe if (!ioc) 1442fd0928dfSJens Axboe return 0; 1443fadad878SJens Axboe /* 1444fadad878SJens Axboe * Share io context with parent, if CLONE_IO is set 1445fadad878SJens Axboe */ 1446fadad878SJens Axboe if (clone_flags & CLONE_IO) { 14473d48749dSTejun Heo ioc_task_link(ioc); 14483d48749dSTejun Heo tsk->io_context = ioc; 1449fadad878SJens Axboe } else if (ioprio_valid(ioc->ioprio)) { 14506e736be7STejun Heo new_ioc = get_task_io_context(tsk, GFP_KERNEL, NUMA_NO_NODE); 14516e736be7STejun Heo if (unlikely(!new_ioc)) 1452fd0928dfSJens Axboe return -ENOMEM; 1453fd0928dfSJens Axboe 14546e736be7STejun Heo new_ioc->ioprio = ioc->ioprio; 145511a3122fSTejun Heo put_io_context(new_ioc); 1456fd0928dfSJens Axboe } 1457fd0928dfSJens Axboe #endif 1458fd0928dfSJens Axboe return 0; 1459fd0928dfSJens Axboe } 1460fd0928dfSJens Axboe 1461a39bc516SAlexey Dobriyan static int copy_sighand(unsigned long clone_flags, struct task_struct *tsk) 14621da177e4SLinus Torvalds { 14631da177e4SLinus Torvalds struct sighand_struct *sig; 14641da177e4SLinus Torvalds 146560348802SZhaolei if (clone_flags & CLONE_SIGHAND) { 14661da177e4SLinus Torvalds atomic_inc(¤t->sighand->count); 14671da177e4SLinus Torvalds return 0; 14681da177e4SLinus Torvalds } 14691da177e4SLinus Torvalds sig = kmem_cache_alloc(sighand_cachep, GFP_KERNEL); 1470e56d0903SIngo Molnar rcu_assign_pointer(tsk->sighand, sig); 14711da177e4SLinus Torvalds if (!sig) 14721da177e4SLinus Torvalds return -ENOMEM; 14739d7fb042SPeter Zijlstra 14741da177e4SLinus Torvalds atomic_set(&sig->count, 1); 147506e62a46SJann Horn spin_lock_irq(¤t->sighand->siglock); 14761da177e4SLinus Torvalds memcpy(sig->action, current->sighand->action, sizeof(sig->action)); 147706e62a46SJann Horn spin_unlock_irq(¤t->sighand->siglock); 14781da177e4SLinus Torvalds return 0; 14791da177e4SLinus Torvalds } 14801da177e4SLinus Torvalds 1481a7e5328aSOleg Nesterov void __cleanup_sighand(struct sighand_struct *sighand) 1482c81addc9SOleg Nesterov { 1483d80e731eSOleg Nesterov if (atomic_dec_and_test(&sighand->count)) { 1484d80e731eSOleg Nesterov signalfd_cleanup(sighand); 1485392809b2SOleg Nesterov /* 14865f0d5a3aSPaul E. McKenney * sighand_cachep is SLAB_TYPESAFE_BY_RCU so we can free it 1487392809b2SOleg Nesterov * without an RCU grace period, see __lock_task_sighand(). 1488392809b2SOleg Nesterov */ 1489c81addc9SOleg Nesterov kmem_cache_free(sighand_cachep, sighand); 1490c81addc9SOleg Nesterov } 1491d80e731eSOleg Nesterov } 1492c81addc9SOleg Nesterov 1493b18b6a9cSNicolas Pitre #ifdef CONFIG_POSIX_TIMERS 1494f06febc9SFrank Mayhar /* 1495f06febc9SFrank Mayhar * Initialize POSIX timer handling for a thread group. 1496f06febc9SFrank Mayhar */ 1497f06febc9SFrank Mayhar static void posix_cpu_timers_init_group(struct signal_struct *sig) 1498f06febc9SFrank Mayhar { 149978d7d407SJiri Slaby unsigned long cpu_limit; 150078d7d407SJiri Slaby 1501316c1608SJason Low cpu_limit = READ_ONCE(sig->rlim[RLIMIT_CPU].rlim_cur); 150278d7d407SJiri Slaby if (cpu_limit != RLIM_INFINITY) { 1503ebd7e7fcSFrederic Weisbecker sig->cputime_expires.prof_exp = cpu_limit * NSEC_PER_SEC; 1504d5c373ebSJason Low sig->cputimer.running = true; 15056279a751SOleg Nesterov } 15066279a751SOleg Nesterov 1507f06febc9SFrank Mayhar /* The timer lists. */ 1508f06febc9SFrank Mayhar INIT_LIST_HEAD(&sig->cpu_timers[0]); 1509f06febc9SFrank Mayhar INIT_LIST_HEAD(&sig->cpu_timers[1]); 1510f06febc9SFrank Mayhar INIT_LIST_HEAD(&sig->cpu_timers[2]); 1511f06febc9SFrank Mayhar } 1512b18b6a9cSNicolas Pitre #else 1513b18b6a9cSNicolas Pitre static inline void posix_cpu_timers_init_group(struct signal_struct *sig) { } 1514b18b6a9cSNicolas Pitre #endif 1515f06febc9SFrank Mayhar 1516a39bc516SAlexey Dobriyan static int copy_signal(unsigned long clone_flags, struct task_struct *tsk) 15171da177e4SLinus Torvalds { 15181da177e4SLinus Torvalds struct signal_struct *sig; 15191da177e4SLinus Torvalds 15204ab6c083SOleg Nesterov if (clone_flags & CLONE_THREAD) 1521490dea45SPeter Zijlstra return 0; 15226279a751SOleg Nesterov 1523a56704efSVeaceslav Falico sig = kmem_cache_zalloc(signal_cachep, GFP_KERNEL); 15241da177e4SLinus Torvalds tsk->signal = sig; 15251da177e4SLinus Torvalds if (!sig) 15261da177e4SLinus Torvalds return -ENOMEM; 15271da177e4SLinus Torvalds 1528b3ac022cSOleg Nesterov sig->nr_threads = 1; 15291da177e4SLinus Torvalds atomic_set(&sig->live, 1); 1530b3ac022cSOleg Nesterov atomic_set(&sig->sigcnt, 1); 15310c740d0aSOleg Nesterov 15320c740d0aSOleg Nesterov /* list_add(thread_node, thread_head) without INIT_LIST_HEAD() */ 15330c740d0aSOleg Nesterov sig->thread_head = (struct list_head)LIST_HEAD_INIT(tsk->thread_node); 15340c740d0aSOleg Nesterov tsk->thread_node = (struct list_head)LIST_HEAD_INIT(sig->thread_head); 15350c740d0aSOleg Nesterov 15361da177e4SLinus Torvalds init_waitqueue_head(&sig->wait_chldexit); 1537db51aeccSOleg Nesterov sig->curr_target = tsk; 15381da177e4SLinus Torvalds init_sigpending(&sig->shared_pending); 1539c3ad2c3bSEric W. Biederman INIT_HLIST_HEAD(&sig->multiprocess); 1540e78c3496SRik van Riel seqlock_init(&sig->stats_lock); 15419d7fb042SPeter Zijlstra prev_cputime_init(&sig->prev_cputime); 15421da177e4SLinus Torvalds 1543baa73d9eSNicolas Pitre #ifdef CONFIG_POSIX_TIMERS 1544b18b6a9cSNicolas Pitre INIT_LIST_HEAD(&sig->posix_timers); 1545c9cb2e3dSThomas Gleixner hrtimer_init(&sig->real_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); 15461da177e4SLinus Torvalds sig->real_timer.function = it_real_fn; 1547baa73d9eSNicolas Pitre #endif 15481da177e4SLinus Torvalds 15491da177e4SLinus Torvalds task_lock(current->group_leader); 15501da177e4SLinus Torvalds memcpy(sig->rlim, current->signal->rlim, sizeof sig->rlim); 15511da177e4SLinus Torvalds task_unlock(current->group_leader); 15521da177e4SLinus Torvalds 15536279a751SOleg Nesterov posix_cpu_timers_init_group(sig); 15546279a751SOleg Nesterov 1555522ed776SMiloslav Trmac tty_audit_fork(sig); 15565091faa4SMike Galbraith sched_autogroup_fork(sig); 1557522ed776SMiloslav Trmac 1558a63d83f4SDavid Rientjes sig->oom_score_adj = current->signal->oom_score_adj; 1559dabb16f6SMandeep Singh Baines sig->oom_score_adj_min = current->signal->oom_score_adj_min; 156028b83c51SKOSAKI Motohiro 15619b1bf12dSKOSAKI Motohiro mutex_init(&sig->cred_guard_mutex); 15629b1bf12dSKOSAKI Motohiro 15631da177e4SLinus Torvalds return 0; 15641da177e4SLinus Torvalds } 15651da177e4SLinus Torvalds 1566dbd95212SKees Cook static void copy_seccomp(struct task_struct *p) 1567dbd95212SKees Cook { 1568dbd95212SKees Cook #ifdef CONFIG_SECCOMP 1569dbd95212SKees Cook /* 1570dbd95212SKees Cook * Must be called with sighand->lock held, which is common to 1571dbd95212SKees Cook * all threads in the group. Holding cred_guard_mutex is not 1572dbd95212SKees Cook * needed because this new task is not yet running and cannot 1573dbd95212SKees Cook * be racing exec. 1574dbd95212SKees Cook */ 157569f6a34bSGuenter Roeck assert_spin_locked(¤t->sighand->siglock); 1576dbd95212SKees Cook 1577dbd95212SKees Cook /* Ref-count the new filter user, and assign it. */ 1578dbd95212SKees Cook get_seccomp_filter(current); 1579dbd95212SKees Cook p->seccomp = current->seccomp; 1580dbd95212SKees Cook 1581dbd95212SKees Cook /* 1582dbd95212SKees Cook * Explicitly enable no_new_privs here in case it got set 1583dbd95212SKees Cook * between the task_struct being duplicated and holding the 1584dbd95212SKees Cook * sighand lock. The seccomp state and nnp must be in sync. 1585dbd95212SKees Cook */ 1586dbd95212SKees Cook if (task_no_new_privs(current)) 1587dbd95212SKees Cook task_set_no_new_privs(p); 1588dbd95212SKees Cook 1589dbd95212SKees Cook /* 1590dbd95212SKees Cook * If the parent gained a seccomp mode after copying thread 1591dbd95212SKees Cook * flags and between before we held the sighand lock, we have 1592dbd95212SKees Cook * to manually enable the seccomp thread flag here. 1593dbd95212SKees Cook */ 1594dbd95212SKees Cook if (p->seccomp.mode != SECCOMP_MODE_DISABLED) 1595dbd95212SKees Cook set_tsk_thread_flag(p, TIF_SECCOMP); 1596dbd95212SKees Cook #endif 1597dbd95212SKees Cook } 1598dbd95212SKees Cook 159917da2bd9SHeiko Carstens SYSCALL_DEFINE1(set_tid_address, int __user *, tidptr) 16001da177e4SLinus Torvalds { 16011da177e4SLinus Torvalds current->clear_child_tid = tidptr; 16021da177e4SLinus Torvalds 1603b488893aSPavel Emelyanov return task_pid_vnr(current); 16041da177e4SLinus Torvalds } 16051da177e4SLinus Torvalds 1606a39bc516SAlexey Dobriyan static void rt_mutex_init_task(struct task_struct *p) 160723f78d4aSIngo Molnar { 16081d615482SThomas Gleixner raw_spin_lock_init(&p->pi_lock); 1609e29e175bSZilvinas Valinskas #ifdef CONFIG_RT_MUTEXES 1610a23ba907SDavidlohr Bueso p->pi_waiters = RB_ROOT_CACHED; 1611e96a7705SXunlei Pang p->pi_top_task = NULL; 161223f78d4aSIngo Molnar p->pi_blocked_on = NULL; 161323f78d4aSIngo Molnar #endif 161423f78d4aSIngo Molnar } 161523f78d4aSIngo Molnar 1616b18b6a9cSNicolas Pitre #ifdef CONFIG_POSIX_TIMERS 16171da177e4SLinus Torvalds /* 1618f06febc9SFrank Mayhar * Initialize POSIX timer handling for a single task. 1619f06febc9SFrank Mayhar */ 1620f06febc9SFrank Mayhar static void posix_cpu_timers_init(struct task_struct *tsk) 1621f06febc9SFrank Mayhar { 162264861634SMartin Schwidefsky tsk->cputime_expires.prof_exp = 0; 162364861634SMartin Schwidefsky tsk->cputime_expires.virt_exp = 0; 1624f06febc9SFrank Mayhar tsk->cputime_expires.sched_exp = 0; 1625f06febc9SFrank Mayhar INIT_LIST_HEAD(&tsk->cpu_timers[0]); 1626f06febc9SFrank Mayhar INIT_LIST_HEAD(&tsk->cpu_timers[1]); 1627f06febc9SFrank Mayhar INIT_LIST_HEAD(&tsk->cpu_timers[2]); 1628f06febc9SFrank Mayhar } 1629b18b6a9cSNicolas Pitre #else 1630b18b6a9cSNicolas Pitre static inline void posix_cpu_timers_init(struct task_struct *tsk) { } 1631b18b6a9cSNicolas Pitre #endif 1632f06febc9SFrank Mayhar 16332c470475SEric W. Biederman static inline void init_task_pid_links(struct task_struct *task) 16342c470475SEric W. Biederman { 16352c470475SEric W. Biederman enum pid_type type; 16362c470475SEric W. Biederman 16372c470475SEric W. Biederman for (type = PIDTYPE_PID; type < PIDTYPE_MAX; ++type) { 16382c470475SEric W. Biederman INIT_HLIST_NODE(&task->pid_links[type]); 16392c470475SEric W. Biederman } 16402c470475SEric W. Biederman } 16412c470475SEric W. Biederman 164281907739SOleg Nesterov static inline void 164381907739SOleg Nesterov init_task_pid(struct task_struct *task, enum pid_type type, struct pid *pid) 164481907739SOleg Nesterov { 16452c470475SEric W. Biederman if (type == PIDTYPE_PID) 16462c470475SEric W. Biederman task->thread_pid = pid; 16472c470475SEric W. Biederman else 16482c470475SEric W. Biederman task->signal->pids[type] = pid; 164981907739SOleg Nesterov } 165081907739SOleg Nesterov 16516bfbaa51SIngo Molnar static inline void rcu_copy_process(struct task_struct *p) 16526bfbaa51SIngo Molnar { 16536bfbaa51SIngo Molnar #ifdef CONFIG_PREEMPT_RCU 16546bfbaa51SIngo Molnar p->rcu_read_lock_nesting = 0; 16556bfbaa51SIngo Molnar p->rcu_read_unlock_special.s = 0; 16566bfbaa51SIngo Molnar p->rcu_blocked_node = NULL; 16576bfbaa51SIngo Molnar INIT_LIST_HEAD(&p->rcu_node_entry); 16586bfbaa51SIngo Molnar #endif /* #ifdef CONFIG_PREEMPT_RCU */ 16596bfbaa51SIngo Molnar #ifdef CONFIG_TASKS_RCU 16606bfbaa51SIngo Molnar p->rcu_tasks_holdout = false; 16616bfbaa51SIngo Molnar INIT_LIST_HEAD(&p->rcu_tasks_holdout_list); 16626bfbaa51SIngo Molnar p->rcu_tasks_idle_cpu = -1; 16636bfbaa51SIngo Molnar #endif /* #ifdef CONFIG_TASKS_RCU */ 16646bfbaa51SIngo Molnar } 16656bfbaa51SIngo Molnar 1666f06febc9SFrank Mayhar /* 16671da177e4SLinus Torvalds * This creates a new process as a copy of the old one, 16681da177e4SLinus Torvalds * but does not actually start it yet. 16691da177e4SLinus Torvalds * 16701da177e4SLinus Torvalds * It copies the registers, and all the appropriate 16711da177e4SLinus Torvalds * parts of the process environment (as per the clone 16721da177e4SLinus Torvalds * flags). The actual kick-off is left to the caller. 16731da177e4SLinus Torvalds */ 16740766f788SEmese Revfy static __latent_entropy struct task_struct *copy_process( 16750766f788SEmese Revfy unsigned long clone_flags, 16761da177e4SLinus Torvalds unsigned long stack_start, 16771da177e4SLinus Torvalds unsigned long stack_size, 16781da177e4SLinus Torvalds int __user *child_tidptr, 167909a05394SRoland McGrath struct pid *pid, 16803033f14aSJosh Triplett int trace, 1681725fc629SAndi Kleen unsigned long tls, 1682725fc629SAndi Kleen int node) 16831da177e4SLinus Torvalds { 16841da177e4SLinus Torvalds int retval; 1685a24efe62SMariusz Kozlowski struct task_struct *p; 1686c3ad2c3bSEric W. Biederman struct multiprocess_signals delayed; 16871da177e4SLinus Torvalds 1688667b6094SMarcos Paulo de Souza /* 1689667b6094SMarcos Paulo de Souza * Don't allow sharing the root directory with processes in a different 1690667b6094SMarcos Paulo de Souza * namespace 1691667b6094SMarcos Paulo de Souza */ 16921da177e4SLinus Torvalds if ((clone_flags & (CLONE_NEWNS|CLONE_FS)) == (CLONE_NEWNS|CLONE_FS)) 16931da177e4SLinus Torvalds return ERR_PTR(-EINVAL); 16941da177e4SLinus Torvalds 1695e66eded8SEric W. Biederman if ((clone_flags & (CLONE_NEWUSER|CLONE_FS)) == (CLONE_NEWUSER|CLONE_FS)) 1696e66eded8SEric W. Biederman return ERR_PTR(-EINVAL); 1697e66eded8SEric W. Biederman 16981da177e4SLinus Torvalds /* 16991da177e4SLinus Torvalds * Thread groups must share signals as well, and detached threads 17001da177e4SLinus Torvalds * can only be started up within the thread group. 17011da177e4SLinus Torvalds */ 17021da177e4SLinus Torvalds if ((clone_flags & CLONE_THREAD) && !(clone_flags & CLONE_SIGHAND)) 17031da177e4SLinus Torvalds return ERR_PTR(-EINVAL); 17041da177e4SLinus Torvalds 17051da177e4SLinus Torvalds /* 17061da177e4SLinus Torvalds * Shared signal handlers imply shared VM. By way of the above, 17071da177e4SLinus Torvalds * thread groups also imply shared VM. Blocking this case allows 17081da177e4SLinus Torvalds * for various simplifications in other code. 17091da177e4SLinus Torvalds */ 17101da177e4SLinus Torvalds if ((clone_flags & CLONE_SIGHAND) && !(clone_flags & CLONE_VM)) 17111da177e4SLinus Torvalds return ERR_PTR(-EINVAL); 17121da177e4SLinus Torvalds 1713123be07bSSukadev Bhattiprolu /* 1714123be07bSSukadev Bhattiprolu * Siblings of global init remain as zombies on exit since they are 1715123be07bSSukadev Bhattiprolu * not reaped by their parent (swapper). To solve this and to avoid 1716123be07bSSukadev Bhattiprolu * multi-rooted process trees, prevent global and container-inits 1717123be07bSSukadev Bhattiprolu * from creating siblings. 1718123be07bSSukadev Bhattiprolu */ 1719123be07bSSukadev Bhattiprolu if ((clone_flags & CLONE_PARENT) && 1720123be07bSSukadev Bhattiprolu current->signal->flags & SIGNAL_UNKILLABLE) 1721123be07bSSukadev Bhattiprolu return ERR_PTR(-EINVAL); 1722123be07bSSukadev Bhattiprolu 17238382fcacSEric W. Biederman /* 172440a0d32dSOleg Nesterov * If the new process will be in a different pid or user namespace 1725faf00da5SEric W. Biederman * do not allow it to share a thread group with the forking task. 17268382fcacSEric W. Biederman */ 1727faf00da5SEric W. Biederman if (clone_flags & CLONE_THREAD) { 172840a0d32dSOleg Nesterov if ((clone_flags & (CLONE_NEWUSER | CLONE_NEWPID)) || 172940a0d32dSOleg Nesterov (task_active_pid_ns(current) != 1730c2b1df2eSAndy Lutomirski current->nsproxy->pid_ns_for_children)) 17318382fcacSEric W. Biederman return ERR_PTR(-EINVAL); 173240a0d32dSOleg Nesterov } 17338382fcacSEric W. Biederman 1734c3ad2c3bSEric W. Biederman /* 1735c3ad2c3bSEric W. Biederman * Force any signals received before this point to be delivered 1736c3ad2c3bSEric W. Biederman * before the fork happens. Collect up signals sent to multiple 1737c3ad2c3bSEric W. Biederman * processes that happen during the fork and delay them so that 1738c3ad2c3bSEric W. Biederman * they appear to happen after the fork. 1739c3ad2c3bSEric W. Biederman */ 1740c3ad2c3bSEric W. Biederman sigemptyset(&delayed.signal); 1741c3ad2c3bSEric W. Biederman INIT_HLIST_NODE(&delayed.node); 1742c3ad2c3bSEric W. Biederman 1743c3ad2c3bSEric W. Biederman spin_lock_irq(¤t->sighand->siglock); 1744c3ad2c3bSEric W. Biederman if (!(clone_flags & CLONE_THREAD)) 1745c3ad2c3bSEric W. Biederman hlist_add_head(&delayed.node, ¤t->signal->multiprocess); 1746c3ad2c3bSEric W. Biederman recalc_sigpending(); 1747c3ad2c3bSEric W. Biederman spin_unlock_irq(¤t->sighand->siglock); 1748c3ad2c3bSEric W. Biederman retval = -ERESTARTNOINTR; 1749c3ad2c3bSEric W. Biederman if (signal_pending(current)) 1750c3ad2c3bSEric W. Biederman goto fork_out; 1751c3ad2c3bSEric W. Biederman 17521da177e4SLinus Torvalds retval = -ENOMEM; 1753725fc629SAndi Kleen p = dup_task_struct(current, node); 17541da177e4SLinus Torvalds if (!p) 17551da177e4SLinus Torvalds goto fork_out; 17561da177e4SLinus Torvalds 17574d6501dcSVegard Nossum /* 17584d6501dcSVegard Nossum * This _must_ happen before we call free_task(), i.e. before we jump 17594d6501dcSVegard Nossum * to any of the bad_fork_* labels. This is to avoid freeing 17604d6501dcSVegard Nossum * p->set_child_tid which is (ab)used as a kthread's data pointer for 17614d6501dcSVegard Nossum * kernel threads (PF_KTHREAD). 17624d6501dcSVegard Nossum */ 17634d6501dcSVegard Nossum p->set_child_tid = (clone_flags & CLONE_CHILD_SETTID) ? child_tidptr : NULL; 17644d6501dcSVegard Nossum /* 17654d6501dcSVegard Nossum * Clear TID on mm_release()? 17664d6501dcSVegard Nossum */ 17674d6501dcSVegard Nossum p->clear_child_tid = (clone_flags & CLONE_CHILD_CLEARTID) ? child_tidptr : NULL; 17684d6501dcSVegard Nossum 1769f7e8b616SSteven Rostedt ftrace_graph_init_task(p); 1770f7e8b616SSteven Rostedt 1771bea493a0SPeter Zijlstra rt_mutex_init_task(p); 1772bea493a0SPeter Zijlstra 1773d12c1a37SIngo Molnar #ifdef CONFIG_PROVE_LOCKING 1774de30a2b3SIngo Molnar DEBUG_LOCKS_WARN_ON(!p->hardirqs_enabled); 1775de30a2b3SIngo Molnar DEBUG_LOCKS_WARN_ON(!p->softirqs_enabled); 1776de30a2b3SIngo Molnar #endif 17771da177e4SLinus Torvalds retval = -EAGAIN; 17783b11a1deSDavid Howells if (atomic_read(&p->real_cred->user->processes) >= 177978d7d407SJiri Slaby task_rlimit(p, RLIMIT_NPROC)) { 1780b57922b6SEric Paris if (p->real_cred->user != INIT_USER && 1781b57922b6SEric Paris !capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) 17821da177e4SLinus Torvalds goto bad_fork_free; 17831da177e4SLinus Torvalds } 178472fa5997SVasiliy Kulikov current->flags &= ~PF_NPROC_EXCEEDED; 17851da177e4SLinus Torvalds 1786f1752eecSDavid Howells retval = copy_creds(p, clone_flags); 1787f1752eecSDavid Howells if (retval < 0) 1788f1752eecSDavid Howells goto bad_fork_free; 17891da177e4SLinus Torvalds 17901da177e4SLinus Torvalds /* 17911da177e4SLinus Torvalds * If multiple threads are within copy_process(), then this check 17921da177e4SLinus Torvalds * triggers too late. This doesn't hurt, the check is only there 17931da177e4SLinus Torvalds * to stop root fork bombs. 17941da177e4SLinus Torvalds */ 179504ec93feSLi Zefan retval = -EAGAIN; 17961da177e4SLinus Torvalds if (nr_threads >= max_threads) 17971da177e4SLinus Torvalds goto bad_fork_cleanup_count; 17981da177e4SLinus Torvalds 1799ca74e92bSShailabh Nagar delayacct_tsk_init(p); /* Must remain after dup_task_struct() */ 1800c1de45caSPeter Zijlstra p->flags &= ~(PF_SUPERPRIV | PF_WQ_WORKER | PF_IDLE); 1801514ddb44SDavid Rientjes p->flags |= PF_FORKNOEXEC; 18021da177e4SLinus Torvalds INIT_LIST_HEAD(&p->children); 18031da177e4SLinus Torvalds INIT_LIST_HEAD(&p->sibling); 1804f41d911fSPaul E. McKenney rcu_copy_process(p); 18051da177e4SLinus Torvalds p->vfork_done = NULL; 18061da177e4SLinus Torvalds spin_lock_init(&p->alloc_lock); 18071da177e4SLinus Torvalds 18081da177e4SLinus Torvalds init_sigpending(&p->pending); 18091da177e4SLinus Torvalds 181064861634SMartin Schwidefsky p->utime = p->stime = p->gtime = 0; 181140565b5aSStanislaw Gruszka #ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME 181264861634SMartin Schwidefsky p->utimescaled = p->stimescaled = 0; 181340565b5aSStanislaw Gruszka #endif 18149d7fb042SPeter Zijlstra prev_cputime_init(&p->prev_cputime); 18159d7fb042SPeter Zijlstra 18166a61671bSFrederic Weisbecker #ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN 1817bac5b6b6SFrederic Weisbecker seqcount_init(&p->vtime.seqcount); 1818bac5b6b6SFrederic Weisbecker p->vtime.starttime = 0; 1819bac5b6b6SFrederic Weisbecker p->vtime.state = VTIME_INACTIVE; 18206a61671bSFrederic Weisbecker #endif 18216a61671bSFrederic Weisbecker 1822a3a2e76cSKAMEZAWA Hiroyuki #if defined(SPLIT_RSS_COUNTING) 1823a3a2e76cSKAMEZAWA Hiroyuki memset(&p->rss_stat, 0, sizeof(p->rss_stat)); 1824a3a2e76cSKAMEZAWA Hiroyuki #endif 1825172ba844SBalbir Singh 18266976675dSArjan van de Ven p->default_timer_slack_ns = current->timer_slack_ns; 18276976675dSArjan van de Ven 1828eb414681SJohannes Weiner #ifdef CONFIG_PSI 1829eb414681SJohannes Weiner p->psi_flags = 0; 1830eb414681SJohannes Weiner #endif 1831eb414681SJohannes Weiner 18325995477aSAndrea Righi task_io_accounting_init(&p->ioac); 18331da177e4SLinus Torvalds acct_clear_integrals(p); 18341da177e4SLinus Torvalds 1835f06febc9SFrank Mayhar posix_cpu_timers_init(p); 18361da177e4SLinus Torvalds 18371da177e4SLinus Torvalds p->io_context = NULL; 1838c0b0ae8aSRichard Guy Briggs audit_set_context(p, NULL); 1839b4f48b63SPaul Menage cgroup_fork(p); 18401da177e4SLinus Torvalds #ifdef CONFIG_NUMA 1841846a16bfSLee Schermerhorn p->mempolicy = mpol_dup(p->mempolicy); 18421da177e4SLinus Torvalds if (IS_ERR(p->mempolicy)) { 18431da177e4SLinus Torvalds retval = PTR_ERR(p->mempolicy); 18441da177e4SLinus Torvalds p->mempolicy = NULL; 1845e8604cb4SLi Zefan goto bad_fork_cleanup_threadgroup_lock; 18461da177e4SLinus Torvalds } 18471da177e4SLinus Torvalds #endif 1848778d3b0fSMichal Hocko #ifdef CONFIG_CPUSETS 1849778d3b0fSMichal Hocko p->cpuset_mem_spread_rotor = NUMA_NO_NODE; 1850778d3b0fSMichal Hocko p->cpuset_slab_spread_rotor = NUMA_NO_NODE; 1851cc9a6c87SMel Gorman seqcount_init(&p->mems_allowed_seq); 1852778d3b0fSMichal Hocko #endif 1853de30a2b3SIngo Molnar #ifdef CONFIG_TRACE_IRQFLAGS 1854de30a2b3SIngo Molnar p->irq_events = 0; 1855de30a2b3SIngo Molnar p->hardirqs_enabled = 0; 1856de30a2b3SIngo Molnar p->hardirq_enable_ip = 0; 1857de30a2b3SIngo Molnar p->hardirq_enable_event = 0; 1858de30a2b3SIngo Molnar p->hardirq_disable_ip = _THIS_IP_; 1859de30a2b3SIngo Molnar p->hardirq_disable_event = 0; 1860de30a2b3SIngo Molnar p->softirqs_enabled = 1; 1861de30a2b3SIngo Molnar p->softirq_enable_ip = _THIS_IP_; 1862de30a2b3SIngo Molnar p->softirq_enable_event = 0; 1863de30a2b3SIngo Molnar p->softirq_disable_ip = 0; 1864de30a2b3SIngo Molnar p->softirq_disable_event = 0; 1865de30a2b3SIngo Molnar p->hardirq_context = 0; 1866de30a2b3SIngo Molnar p->softirq_context = 0; 1867de30a2b3SIngo Molnar #endif 18688bcbde54SDavid Hildenbrand 18698bcbde54SDavid Hildenbrand p->pagefault_disabled = 0; 18708bcbde54SDavid Hildenbrand 1871fbb9ce95SIngo Molnar #ifdef CONFIG_LOCKDEP 1872fbb9ce95SIngo Molnar p->lockdep_depth = 0; /* no locks held yet */ 1873fbb9ce95SIngo Molnar p->curr_chain_key = 0; 1874fbb9ce95SIngo Molnar p->lockdep_recursion = 0; 1875b09be676SByungchul Park lockdep_init_task(p); 1876fbb9ce95SIngo Molnar #endif 18771da177e4SLinus Torvalds 1878408894eeSIngo Molnar #ifdef CONFIG_DEBUG_MUTEXES 1879408894eeSIngo Molnar p->blocked_on = NULL; /* not blocked yet */ 1880408894eeSIngo Molnar #endif 1881cafe5635SKent Overstreet #ifdef CONFIG_BCACHE 1882cafe5635SKent Overstreet p->sequential_io = 0; 1883cafe5635SKent Overstreet p->sequential_io_avg = 0; 1884cafe5635SKent Overstreet #endif 18850f481406SMarkus Metzger 18863c90e6e9SSrivatsa Vaddagiri /* Perform scheduler related setup. Assign this task to a CPU. */ 1887aab03e05SDario Faggioli retval = sched_fork(clone_flags, p); 1888aab03e05SDario Faggioli if (retval) 1889aab03e05SDario Faggioli goto bad_fork_cleanup_policy; 18906ab423e0SPeter Zijlstra 1891cdd6c482SIngo Molnar retval = perf_event_init_task(p); 18926ab423e0SPeter Zijlstra if (retval) 18936ab423e0SPeter Zijlstra goto bad_fork_cleanup_policy; 1894fb0a685cSDaniel Rebelo de Oliveira retval = audit_alloc(p); 1895fb0a685cSDaniel Rebelo de Oliveira if (retval) 18966c72e350SPeter Zijlstra goto bad_fork_cleanup_perf; 18971da177e4SLinus Torvalds /* copy all the process information */ 1898ab602f79SJack Miller shm_init_task(p); 1899e4e55b47STetsuo Handa retval = security_task_alloc(p, clone_flags); 1900fb0a685cSDaniel Rebelo de Oliveira if (retval) 19011da177e4SLinus Torvalds goto bad_fork_cleanup_audit; 1902e4e55b47STetsuo Handa retval = copy_semundo(clone_flags, p); 1903e4e55b47STetsuo Handa if (retval) 1904e4e55b47STetsuo Handa goto bad_fork_cleanup_security; 1905fb0a685cSDaniel Rebelo de Oliveira retval = copy_files(clone_flags, p); 1906fb0a685cSDaniel Rebelo de Oliveira if (retval) 19071da177e4SLinus Torvalds goto bad_fork_cleanup_semundo; 1908fb0a685cSDaniel Rebelo de Oliveira retval = copy_fs(clone_flags, p); 1909fb0a685cSDaniel Rebelo de Oliveira if (retval) 19101da177e4SLinus Torvalds goto bad_fork_cleanup_files; 1911fb0a685cSDaniel Rebelo de Oliveira retval = copy_sighand(clone_flags, p); 1912fb0a685cSDaniel Rebelo de Oliveira if (retval) 19131da177e4SLinus Torvalds goto bad_fork_cleanup_fs; 1914fb0a685cSDaniel Rebelo de Oliveira retval = copy_signal(clone_flags, p); 1915fb0a685cSDaniel Rebelo de Oliveira if (retval) 19161da177e4SLinus Torvalds goto bad_fork_cleanup_sighand; 1917fb0a685cSDaniel Rebelo de Oliveira retval = copy_mm(clone_flags, p); 1918fb0a685cSDaniel Rebelo de Oliveira if (retval) 19191da177e4SLinus Torvalds goto bad_fork_cleanup_signal; 1920fb0a685cSDaniel Rebelo de Oliveira retval = copy_namespaces(clone_flags, p); 1921fb0a685cSDaniel Rebelo de Oliveira if (retval) 1922d84f4f99SDavid Howells goto bad_fork_cleanup_mm; 1923fb0a685cSDaniel Rebelo de Oliveira retval = copy_io(clone_flags, p); 1924fb0a685cSDaniel Rebelo de Oliveira if (retval) 1925fd0928dfSJens Axboe goto bad_fork_cleanup_namespaces; 19263033f14aSJosh Triplett retval = copy_thread_tls(clone_flags, stack_start, stack_size, p, tls); 19271da177e4SLinus Torvalds if (retval) 1928fd0928dfSJens Axboe goto bad_fork_cleanup_io; 19291da177e4SLinus Torvalds 1930afaef01cSAlexander Popov stackleak_task_init(p); 1931afaef01cSAlexander Popov 1932425fb2b4SPavel Emelyanov if (pid != &init_struct_pid) { 1933c2b1df2eSAndy Lutomirski pid = alloc_pid(p->nsproxy->pid_ns_for_children); 193435f71bc0SMichal Hocko if (IS_ERR(pid)) { 193535f71bc0SMichal Hocko retval = PTR_ERR(pid); 19360740aa5fSJiri Slaby goto bad_fork_cleanup_thread; 1937425fb2b4SPavel Emelyanov } 193835f71bc0SMichal Hocko } 1939425fb2b4SPavel Emelyanov 194073c10101SJens Axboe #ifdef CONFIG_BLOCK 194173c10101SJens Axboe p->plug = NULL; 194273c10101SJens Axboe #endif 194342b2dd0aSAlexey Dobriyan #ifdef CONFIG_FUTEX 19448f17d3a5SIngo Molnar p->robust_list = NULL; 19458f17d3a5SIngo Molnar #ifdef CONFIG_COMPAT 19468f17d3a5SIngo Molnar p->compat_robust_list = NULL; 19478f17d3a5SIngo Molnar #endif 1948c87e2837SIngo Molnar INIT_LIST_HEAD(&p->pi_state_list); 1949c87e2837SIngo Molnar p->pi_state_cache = NULL; 195042b2dd0aSAlexey Dobriyan #endif 19511da177e4SLinus Torvalds /* 1952f9a3879aSGOTO Masanori * sigaltstack should be cleared when sharing the same VM 1953f9a3879aSGOTO Masanori */ 1954f9a3879aSGOTO Masanori if ((clone_flags & (CLONE_VM|CLONE_VFORK)) == CLONE_VM) 19552a742138SStas Sergeev sas_ss_reset(p); 1956f9a3879aSGOTO Masanori 1957f9a3879aSGOTO Masanori /* 19586580807dSOleg Nesterov * Syscall tracing and stepping should be turned off in the 19596580807dSOleg Nesterov * child regardless of CLONE_PTRACE. 19601da177e4SLinus Torvalds */ 19616580807dSOleg Nesterov user_disable_single_step(p); 19621da177e4SLinus Torvalds clear_tsk_thread_flag(p, TIF_SYSCALL_TRACE); 1963ed75e8d5SLaurent Vivier #ifdef TIF_SYSCALL_EMU 1964ed75e8d5SLaurent Vivier clear_tsk_thread_flag(p, TIF_SYSCALL_EMU); 1965ed75e8d5SLaurent Vivier #endif 19669745512cSArjan van de Ven clear_all_latency_tracing(p); 19671da177e4SLinus Torvalds 19681da177e4SLinus Torvalds /* ok, now we should be set up.. */ 196918c830dfSOleg Nesterov p->pid = pid_nr(pid); 197018c830dfSOleg Nesterov if (clone_flags & CLONE_THREAD) { 19715f8aadd8SOleg Nesterov p->exit_signal = -1; 197218c830dfSOleg Nesterov p->group_leader = current->group_leader; 197318c830dfSOleg Nesterov p->tgid = current->tgid; 197418c830dfSOleg Nesterov } else { 197518c830dfSOleg Nesterov if (clone_flags & CLONE_PARENT) 19765f8aadd8SOleg Nesterov p->exit_signal = current->group_leader->exit_signal; 19775f8aadd8SOleg Nesterov else 19785f8aadd8SOleg Nesterov p->exit_signal = (clone_flags & CSIGNAL); 197918c830dfSOleg Nesterov p->group_leader = p; 198018c830dfSOleg Nesterov p->tgid = p->pid; 198118c830dfSOleg Nesterov } 19825f8aadd8SOleg Nesterov 19839d823e8fSWu Fengguang p->nr_dirtied = 0; 19849d823e8fSWu Fengguang p->nr_dirtied_pause = 128 >> (PAGE_SHIFT - 10); 198583712358SWu Fengguang p->dirty_paused_when = 0; 19869d823e8fSWu Fengguang 1987bb8cbbfeSOleg Nesterov p->pdeath_signal = 0; 198847e65328SOleg Nesterov INIT_LIST_HEAD(&p->thread_group); 1989158e1645SAl Viro p->task_works = NULL; 19901da177e4SLinus Torvalds 1991780de9ddSIngo Molnar cgroup_threadgroup_change_begin(current); 199218c830dfSOleg Nesterov /* 19937e47682eSAleksa Sarai * Ensure that the cgroup subsystem policies allow the new process to be 19947e47682eSAleksa Sarai * forked. It should be noted the the new process's css_set can be changed 19957e47682eSAleksa Sarai * between here and cgroup_post_fork() if an organisation operation is in 19967e47682eSAleksa Sarai * progress. 19977e47682eSAleksa Sarai */ 1998b53202e6SOleg Nesterov retval = cgroup_can_fork(p); 19997e47682eSAleksa Sarai if (retval) 20007e47682eSAleksa Sarai goto bad_fork_free_pid; 20017e47682eSAleksa Sarai 20027e47682eSAleksa Sarai /* 20037b558513SDavid Herrmann * From this point on we must avoid any synchronous user-space 20047b558513SDavid Herrmann * communication until we take the tasklist-lock. In particular, we do 20057b558513SDavid Herrmann * not want user-space to be able to predict the process start-time by 20067b558513SDavid Herrmann * stalling fork(2) after we recorded the start_time but before it is 20077b558513SDavid Herrmann * visible to the system. 20087b558513SDavid Herrmann */ 20097b558513SDavid Herrmann 20107b558513SDavid Herrmann p->start_time = ktime_get_ns(); 20117b558513SDavid Herrmann p->real_start_time = ktime_get_boot_ns(); 20127b558513SDavid Herrmann 20137b558513SDavid Herrmann /* 201418c830dfSOleg Nesterov * Make it visible to the rest of the system, but dont wake it up yet. 201518c830dfSOleg Nesterov * Need tasklist lock for parent etc handling! 201618c830dfSOleg Nesterov */ 20171da177e4SLinus Torvalds write_lock_irq(&tasklist_lock); 20181da177e4SLinus Torvalds 20191da177e4SLinus Torvalds /* CLONE_PARENT re-uses the old parent */ 20202d5516cbSOleg Nesterov if (clone_flags & (CLONE_PARENT|CLONE_THREAD)) { 20211da177e4SLinus Torvalds p->real_parent = current->real_parent; 20222d5516cbSOleg Nesterov p->parent_exec_id = current->parent_exec_id; 20232d5516cbSOleg Nesterov } else { 20241da177e4SLinus Torvalds p->real_parent = current; 20252d5516cbSOleg Nesterov p->parent_exec_id = current->self_exec_id; 20262d5516cbSOleg Nesterov } 20271da177e4SLinus Torvalds 2028d83a7cb3SJosh Poimboeuf klp_copy_process(p); 2029d83a7cb3SJosh Poimboeuf 20301da177e4SLinus Torvalds spin_lock(¤t->sighand->siglock); 20314a2c7a78SOleg Nesterov 20324a2c7a78SOleg Nesterov /* 2033dbd95212SKees Cook * Copy seccomp details explicitly here, in case they were changed 2034dbd95212SKees Cook * before holding sighand lock. 2035dbd95212SKees Cook */ 2036dbd95212SKees Cook copy_seccomp(p); 2037dbd95212SKees Cook 2038d7822b1eSMathieu Desnoyers rseq_fork(p, clone_flags); 2039d7822b1eSMathieu Desnoyers 20404ca1d3eeSEric W. Biederman /* Don't start children in a dying pid namespace */ 2041e8cfbc24SGargi Sharma if (unlikely(!(ns_of_pid(pid)->pid_allocated & PIDNS_ADDING))) { 20423fd37226SKirill Tkhai retval = -ENOMEM; 20433fd37226SKirill Tkhai goto bad_fork_cancel_cgroup; 20443fd37226SKirill Tkhai } 20454a2c7a78SOleg Nesterov 20467673bf55SEric W. Biederman /* Let kill terminate clone/fork in the middle */ 20477673bf55SEric W. Biederman if (fatal_signal_pending(current)) { 20487673bf55SEric W. Biederman retval = -EINTR; 20497673bf55SEric W. Biederman goto bad_fork_cancel_cgroup; 20507673bf55SEric W. Biederman } 20517673bf55SEric W. Biederman 20521da177e4SLinus Torvalds 20532c470475SEric W. Biederman init_task_pid_links(p); 205473b9ebfeSOleg Nesterov if (likely(p->pid)) { 20554b9d33e6STejun Heo ptrace_init_task(p, (clone_flags & CLONE_PTRACE) || trace); 20561da177e4SLinus Torvalds 205781907739SOleg Nesterov init_task_pid(p, PIDTYPE_PID, pid); 20581da177e4SLinus Torvalds if (thread_group_leader(p)) { 20596883f81aSEric W. Biederman init_task_pid(p, PIDTYPE_TGID, pid); 206081907739SOleg Nesterov init_task_pid(p, PIDTYPE_PGID, task_pgrp(current)); 206181907739SOleg Nesterov init_task_pid(p, PIDTYPE_SID, task_session(current)); 206281907739SOleg Nesterov 20631c4042c2SEric W. Biederman if (is_child_reaper(pid)) { 206417cf22c3SEric W. Biederman ns_of_pid(pid)->child_reaper = p; 20651c4042c2SEric W. Biederman p->signal->flags |= SIGNAL_UNKILLABLE; 20661c4042c2SEric W. Biederman } 2067c3ad2c3bSEric W. Biederman p->signal->shared_pending.signal = delayed.signal; 20689c9f4dedSAlan Cox p->signal->tty = tty_kref_get(current->signal->tty); 2069749860ceSPavel Tikhomirov /* 2070749860ceSPavel Tikhomirov * Inherit has_child_subreaper flag under the same 2071749860ceSPavel Tikhomirov * tasklist_lock with adding child to the process tree 2072749860ceSPavel Tikhomirov * for propagate_has_child_subreaper optimization. 2073749860ceSPavel Tikhomirov */ 2074749860ceSPavel Tikhomirov p->signal->has_child_subreaper = p->real_parent->signal->has_child_subreaper || 2075749860ceSPavel Tikhomirov p->real_parent->signal->is_child_subreaper; 20769cd80bbbSOleg Nesterov list_add_tail(&p->sibling, &p->real_parent->children); 20775e85d4abSEric W. Biederman list_add_tail_rcu(&p->tasks, &init_task.tasks); 20786883f81aSEric W. Biederman attach_pid(p, PIDTYPE_TGID); 207981907739SOleg Nesterov attach_pid(p, PIDTYPE_PGID); 208081907739SOleg Nesterov attach_pid(p, PIDTYPE_SID); 2081909ea964SChristoph Lameter __this_cpu_inc(process_counts); 208280628ca0SOleg Nesterov } else { 208380628ca0SOleg Nesterov current->signal->nr_threads++; 208480628ca0SOleg Nesterov atomic_inc(¤t->signal->live); 208580628ca0SOleg Nesterov atomic_inc(¤t->signal->sigcnt); 2086924de3b8SEric W. Biederman task_join_group_stop(p); 208780628ca0SOleg Nesterov list_add_tail_rcu(&p->thread_group, 208880628ca0SOleg Nesterov &p->group_leader->thread_group); 20890c740d0aSOleg Nesterov list_add_tail_rcu(&p->thread_node, 20900c740d0aSOleg Nesterov &p->signal->thread_head); 20911da177e4SLinus Torvalds } 209281907739SOleg Nesterov attach_pid(p, PIDTYPE_PID); 20931da177e4SLinus Torvalds nr_threads++; 209473b9ebfeSOleg Nesterov } 20951da177e4SLinus Torvalds total_forks++; 2096c3ad2c3bSEric W. Biederman hlist_del_init(&delayed.node); 20973f17da69SOleg Nesterov spin_unlock(¤t->sighand->siglock); 20984af4206bSOleg Nesterov syscall_tracepoint_update(p); 20991da177e4SLinus Torvalds write_unlock_irq(&tasklist_lock); 21004af4206bSOleg Nesterov 2101c13cf856SAndrew Morton proc_fork_connector(p); 2102b53202e6SOleg Nesterov cgroup_post_fork(p); 2103780de9ddSIngo Molnar cgroup_threadgroup_change_end(current); 2104cdd6c482SIngo Molnar perf_event_fork(p); 210543d2b113SKAMEZAWA Hiroyuki 210643d2b113SKAMEZAWA Hiroyuki trace_task_newtask(p, clone_flags); 21073ab67966SOleg Nesterov uprobe_copy_process(p, clone_flags); 210843d2b113SKAMEZAWA Hiroyuki 21091da177e4SLinus Torvalds return p; 21101da177e4SLinus Torvalds 21117e47682eSAleksa Sarai bad_fork_cancel_cgroup: 21123fd37226SKirill Tkhai spin_unlock(¤t->sighand->siglock); 21133fd37226SKirill Tkhai write_unlock_irq(&tasklist_lock); 2114b53202e6SOleg Nesterov cgroup_cancel_fork(p); 2115425fb2b4SPavel Emelyanov bad_fork_free_pid: 2116780de9ddSIngo Molnar cgroup_threadgroup_change_end(current); 2117425fb2b4SPavel Emelyanov if (pid != &init_struct_pid) 2118425fb2b4SPavel Emelyanov free_pid(pid); 21190740aa5fSJiri Slaby bad_fork_cleanup_thread: 21200740aa5fSJiri Slaby exit_thread(p); 2121fd0928dfSJens Axboe bad_fork_cleanup_io: 2122b69f2292SLouis Rilling if (p->io_context) 2123b69f2292SLouis Rilling exit_io_context(p); 2124ab516013SSerge E. Hallyn bad_fork_cleanup_namespaces: 2125444f378bSLinus Torvalds exit_task_namespaces(p); 21261da177e4SLinus Torvalds bad_fork_cleanup_mm: 2127c9f01245SDavid Rientjes if (p->mm) 21281da177e4SLinus Torvalds mmput(p->mm); 21291da177e4SLinus Torvalds bad_fork_cleanup_signal: 21304ab6c083SOleg Nesterov if (!(clone_flags & CLONE_THREAD)) 21311c5354deSMike Galbraith free_signal_struct(p->signal); 21321da177e4SLinus Torvalds bad_fork_cleanup_sighand: 2133a7e5328aSOleg Nesterov __cleanup_sighand(p->sighand); 21341da177e4SLinus Torvalds bad_fork_cleanup_fs: 21351da177e4SLinus Torvalds exit_fs(p); /* blocking */ 21361da177e4SLinus Torvalds bad_fork_cleanup_files: 21371da177e4SLinus Torvalds exit_files(p); /* blocking */ 21381da177e4SLinus Torvalds bad_fork_cleanup_semundo: 21391da177e4SLinus Torvalds exit_sem(p); 2140e4e55b47STetsuo Handa bad_fork_cleanup_security: 2141e4e55b47STetsuo Handa security_task_free(p); 21421da177e4SLinus Torvalds bad_fork_cleanup_audit: 21431da177e4SLinus Torvalds audit_free(p); 21446c72e350SPeter Zijlstra bad_fork_cleanup_perf: 2145cdd6c482SIngo Molnar perf_event_free_task(p); 21466c72e350SPeter Zijlstra bad_fork_cleanup_policy: 2147b09be676SByungchul Park lockdep_free_task(p); 21481da177e4SLinus Torvalds #ifdef CONFIG_NUMA 2149f0be3d32SLee Schermerhorn mpol_put(p->mempolicy); 2150e8604cb4SLi Zefan bad_fork_cleanup_threadgroup_lock: 21511da177e4SLinus Torvalds #endif 215235df17c5SShailabh Nagar delayacct_tsk_free(p); 21531da177e4SLinus Torvalds bad_fork_cleanup_count: 2154d84f4f99SDavid Howells atomic_dec(&p->cred->user->processes); 2155e0e81739SDavid Howells exit_creds(p); 21561da177e4SLinus Torvalds bad_fork_free: 2157405c0759SAndy Lutomirski p->state = TASK_DEAD; 215868f24b08SAndy Lutomirski put_task_stack(p); 21591da177e4SLinus Torvalds free_task(p); 2160fe7d37d1SOleg Nesterov fork_out: 2161c3ad2c3bSEric W. Biederman spin_lock_irq(¤t->sighand->siglock); 2162c3ad2c3bSEric W. Biederman hlist_del_init(&delayed.node); 2163c3ad2c3bSEric W. Biederman spin_unlock_irq(¤t->sighand->siglock); 2164fe7d37d1SOleg Nesterov return ERR_PTR(retval); 21651da177e4SLinus Torvalds } 21661da177e4SLinus Torvalds 21672c470475SEric W. Biederman static inline void init_idle_pids(struct task_struct *idle) 2168f106eee1SOleg Nesterov { 2169f106eee1SOleg Nesterov enum pid_type type; 2170f106eee1SOleg Nesterov 2171f106eee1SOleg Nesterov for (type = PIDTYPE_PID; type < PIDTYPE_MAX; ++type) { 21722c470475SEric W. Biederman INIT_HLIST_NODE(&idle->pid_links[type]); /* not really needed */ 21732c470475SEric W. Biederman init_task_pid(idle, type, &init_struct_pid); 2174f106eee1SOleg Nesterov } 2175f106eee1SOleg Nesterov } 2176f106eee1SOleg Nesterov 21770db0628dSPaul Gortmaker struct task_struct *fork_idle(int cpu) 21781da177e4SLinus Torvalds { 217936c8b586SIngo Molnar struct task_struct *task; 2180725fc629SAndi Kleen task = copy_process(CLONE_VM, 0, 0, NULL, &init_struct_pid, 0, 0, 2181725fc629SAndi Kleen cpu_to_node(cpu)); 2182f106eee1SOleg Nesterov if (!IS_ERR(task)) { 21832c470475SEric W. Biederman init_idle_pids(task); 21841da177e4SLinus Torvalds init_idle(task, cpu); 2185f106eee1SOleg Nesterov } 218673b9ebfeSOleg Nesterov 21871da177e4SLinus Torvalds return task; 21881da177e4SLinus Torvalds } 21891da177e4SLinus Torvalds 21901da177e4SLinus Torvalds /* 21911da177e4SLinus Torvalds * Ok, this is the main fork-routine. 21921da177e4SLinus Torvalds * 21931da177e4SLinus Torvalds * It copies the process, and if successful kick-starts 21941da177e4SLinus Torvalds * it and waits for it to finish using the VM if required. 21951da177e4SLinus Torvalds */ 21963033f14aSJosh Triplett long _do_fork(unsigned long clone_flags, 21971da177e4SLinus Torvalds unsigned long stack_start, 21981da177e4SLinus Torvalds unsigned long stack_size, 21991da177e4SLinus Torvalds int __user *parent_tidptr, 22003033f14aSJosh Triplett int __user *child_tidptr, 22013033f14aSJosh Triplett unsigned long tls) 22021da177e4SLinus Torvalds { 22039f5325aaSMarcos Paulo de Souza struct completion vfork; 22049f5325aaSMarcos Paulo de Souza struct pid *pid; 22051da177e4SLinus Torvalds struct task_struct *p; 22061da177e4SLinus Torvalds int trace = 0; 220792476d7fSEric W. Biederman long nr; 22081da177e4SLinus Torvalds 2209bdff746aSAndrew Morton /* 22104b9d33e6STejun Heo * Determine whether and which event to report to ptracer. When 22114b9d33e6STejun Heo * called from kernel_thread or CLONE_UNTRACED is explicitly 22124b9d33e6STejun Heo * requested, no event is reported; otherwise, report if the event 22134b9d33e6STejun Heo * for the type of forking is enabled. 221409a05394SRoland McGrath */ 2215e80d6661SAl Viro if (!(clone_flags & CLONE_UNTRACED)) { 22164b9d33e6STejun Heo if (clone_flags & CLONE_VFORK) 22174b9d33e6STejun Heo trace = PTRACE_EVENT_VFORK; 22184b9d33e6STejun Heo else if ((clone_flags & CSIGNAL) != SIGCHLD) 22194b9d33e6STejun Heo trace = PTRACE_EVENT_CLONE; 22204b9d33e6STejun Heo else 22214b9d33e6STejun Heo trace = PTRACE_EVENT_FORK; 22224b9d33e6STejun Heo 22234b9d33e6STejun Heo if (likely(!ptrace_event_enabled(current, trace))) 22244b9d33e6STejun Heo trace = 0; 22254b9d33e6STejun Heo } 22261da177e4SLinus Torvalds 222762e791c1SAl Viro p = copy_process(clone_flags, stack_start, stack_size, 2228725fc629SAndi Kleen child_tidptr, NULL, trace, tls, NUMA_NO_NODE); 222938addce8SEmese Revfy add_latent_entropy(); 22309f5325aaSMarcos Paulo de Souza 22319f5325aaSMarcos Paulo de Souza if (IS_ERR(p)) 22329f5325aaSMarcos Paulo de Souza return PTR_ERR(p); 22339f5325aaSMarcos Paulo de Souza 22341da177e4SLinus Torvalds /* 22351da177e4SLinus Torvalds * Do this prior waking up the new thread - the thread pointer 22361da177e4SLinus Torvalds * might get invalid after that point, if the thread exits quickly. 22371da177e4SLinus Torvalds */ 22380a16b607SMathieu Desnoyers trace_sched_process_fork(current, p); 22390a16b607SMathieu Desnoyers 22404e52365fSMatthew Dempsky pid = get_task_pid(p, PIDTYPE_PID); 22414e52365fSMatthew Dempsky nr = pid_vnr(pid); 224230e49c26SPavel Emelyanov 224330e49c26SPavel Emelyanov if (clone_flags & CLONE_PARENT_SETTID) 224430e49c26SPavel Emelyanov put_user(nr, parent_tidptr); 2245a6f5e063SSukadev Bhattiprolu 22461da177e4SLinus Torvalds if (clone_flags & CLONE_VFORK) { 22471da177e4SLinus Torvalds p->vfork_done = &vfork; 22481da177e4SLinus Torvalds init_completion(&vfork); 2249d68b46feSOleg Nesterov get_task_struct(p); 22501da177e4SLinus Torvalds } 22511da177e4SLinus Torvalds 22523e51e3edSSamir Bellabes wake_up_new_task(p); 22531da177e4SLinus Torvalds 22544b9d33e6STejun Heo /* forking complete and child started to run, tell ptracer */ 22554b9d33e6STejun Heo if (unlikely(trace)) 22564e52365fSMatthew Dempsky ptrace_event_pid(trace, pid); 225709a05394SRoland McGrath 22581da177e4SLinus Torvalds if (clone_flags & CLONE_VFORK) { 2259d68b46feSOleg Nesterov if (!wait_for_vfork_done(p, &vfork)) 22604e52365fSMatthew Dempsky ptrace_event_pid(PTRACE_EVENT_VFORK_DONE, pid); 22619f59ce5dSChuck Ebbert } 22624e52365fSMatthew Dempsky 22634e52365fSMatthew Dempsky put_pid(pid); 226492476d7fSEric W. Biederman return nr; 22651da177e4SLinus Torvalds } 22661da177e4SLinus Torvalds 22673033f14aSJosh Triplett #ifndef CONFIG_HAVE_COPY_THREAD_TLS 22683033f14aSJosh Triplett /* For compatibility with architectures that call do_fork directly rather than 22693033f14aSJosh Triplett * using the syscall entry points below. */ 22703033f14aSJosh Triplett long do_fork(unsigned long clone_flags, 22713033f14aSJosh Triplett unsigned long stack_start, 22723033f14aSJosh Triplett unsigned long stack_size, 22733033f14aSJosh Triplett int __user *parent_tidptr, 22743033f14aSJosh Triplett int __user *child_tidptr) 22753033f14aSJosh Triplett { 22763033f14aSJosh Triplett return _do_fork(clone_flags, stack_start, stack_size, 22773033f14aSJosh Triplett parent_tidptr, child_tidptr, 0); 22783033f14aSJosh Triplett } 22793033f14aSJosh Triplett #endif 22803033f14aSJosh Triplett 22812aa3a7f8SAl Viro /* 22822aa3a7f8SAl Viro * Create a kernel thread. 22832aa3a7f8SAl Viro */ 22842aa3a7f8SAl Viro pid_t kernel_thread(int (*fn)(void *), void *arg, unsigned long flags) 22852aa3a7f8SAl Viro { 22863033f14aSJosh Triplett return _do_fork(flags|CLONE_VM|CLONE_UNTRACED, (unsigned long)fn, 22873033f14aSJosh Triplett (unsigned long)arg, NULL, NULL, 0); 22882aa3a7f8SAl Viro } 22892aa3a7f8SAl Viro 2290d2125043SAl Viro #ifdef __ARCH_WANT_SYS_FORK 2291d2125043SAl Viro SYSCALL_DEFINE0(fork) 2292d2125043SAl Viro { 2293d2125043SAl Viro #ifdef CONFIG_MMU 22943033f14aSJosh Triplett return _do_fork(SIGCHLD, 0, 0, NULL, NULL, 0); 2295d2125043SAl Viro #else 2296d2125043SAl Viro /* can not support in nommu mode */ 22975d59e182SDaeseok Youn return -EINVAL; 2298d2125043SAl Viro #endif 2299d2125043SAl Viro } 2300d2125043SAl Viro #endif 2301d2125043SAl Viro 2302d2125043SAl Viro #ifdef __ARCH_WANT_SYS_VFORK 2303d2125043SAl Viro SYSCALL_DEFINE0(vfork) 2304d2125043SAl Viro { 23053033f14aSJosh Triplett return _do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, 0, 23063033f14aSJosh Triplett 0, NULL, NULL, 0); 2307d2125043SAl Viro } 2308d2125043SAl Viro #endif 2309d2125043SAl Viro 2310d2125043SAl Viro #ifdef __ARCH_WANT_SYS_CLONE 2311d2125043SAl Viro #ifdef CONFIG_CLONE_BACKWARDS 2312d2125043SAl Viro SYSCALL_DEFINE5(clone, unsigned long, clone_flags, unsigned long, newsp, 2313d2125043SAl Viro int __user *, parent_tidptr, 23143033f14aSJosh Triplett unsigned long, tls, 2315d2125043SAl Viro int __user *, child_tidptr) 2316d2125043SAl Viro #elif defined(CONFIG_CLONE_BACKWARDS2) 2317d2125043SAl Viro SYSCALL_DEFINE5(clone, unsigned long, newsp, unsigned long, clone_flags, 2318d2125043SAl Viro int __user *, parent_tidptr, 2319d2125043SAl Viro int __user *, child_tidptr, 23203033f14aSJosh Triplett unsigned long, tls) 2321dfa9771aSMichal Simek #elif defined(CONFIG_CLONE_BACKWARDS3) 2322dfa9771aSMichal Simek SYSCALL_DEFINE6(clone, unsigned long, clone_flags, unsigned long, newsp, 2323dfa9771aSMichal Simek int, stack_size, 2324dfa9771aSMichal Simek int __user *, parent_tidptr, 2325dfa9771aSMichal Simek int __user *, child_tidptr, 23263033f14aSJosh Triplett unsigned long, tls) 2327d2125043SAl Viro #else 2328d2125043SAl Viro SYSCALL_DEFINE5(clone, unsigned long, clone_flags, unsigned long, newsp, 2329d2125043SAl Viro int __user *, parent_tidptr, 2330d2125043SAl Viro int __user *, child_tidptr, 23313033f14aSJosh Triplett unsigned long, tls) 2332d2125043SAl Viro #endif 2333d2125043SAl Viro { 23343033f14aSJosh Triplett return _do_fork(clone_flags, newsp, 0, parent_tidptr, child_tidptr, tls); 2335d2125043SAl Viro } 2336d2125043SAl Viro #endif 2337d2125043SAl Viro 23380f1b92cbSOleg Nesterov void walk_process_tree(struct task_struct *top, proc_visitor visitor, void *data) 23390f1b92cbSOleg Nesterov { 23400f1b92cbSOleg Nesterov struct task_struct *leader, *parent, *child; 23410f1b92cbSOleg Nesterov int res; 23420f1b92cbSOleg Nesterov 23430f1b92cbSOleg Nesterov read_lock(&tasklist_lock); 23440f1b92cbSOleg Nesterov leader = top = top->group_leader; 23450f1b92cbSOleg Nesterov down: 23460f1b92cbSOleg Nesterov for_each_thread(leader, parent) { 23470f1b92cbSOleg Nesterov list_for_each_entry(child, &parent->children, sibling) { 23480f1b92cbSOleg Nesterov res = visitor(child, data); 23490f1b92cbSOleg Nesterov if (res) { 23500f1b92cbSOleg Nesterov if (res < 0) 23510f1b92cbSOleg Nesterov goto out; 23520f1b92cbSOleg Nesterov leader = child; 23530f1b92cbSOleg Nesterov goto down; 23540f1b92cbSOleg Nesterov } 23550f1b92cbSOleg Nesterov up: 23560f1b92cbSOleg Nesterov ; 23570f1b92cbSOleg Nesterov } 23580f1b92cbSOleg Nesterov } 23590f1b92cbSOleg Nesterov 23600f1b92cbSOleg Nesterov if (leader != top) { 23610f1b92cbSOleg Nesterov child = leader; 23620f1b92cbSOleg Nesterov parent = child->real_parent; 23630f1b92cbSOleg Nesterov leader = parent->group_leader; 23640f1b92cbSOleg Nesterov goto up; 23650f1b92cbSOleg Nesterov } 23660f1b92cbSOleg Nesterov out: 23670f1b92cbSOleg Nesterov read_unlock(&tasklist_lock); 23680f1b92cbSOleg Nesterov } 23690f1b92cbSOleg Nesterov 23705fd63b30SRavikiran G Thirumalai #ifndef ARCH_MIN_MMSTRUCT_ALIGN 23715fd63b30SRavikiran G Thirumalai #define ARCH_MIN_MMSTRUCT_ALIGN 0 23725fd63b30SRavikiran G Thirumalai #endif 23735fd63b30SRavikiran G Thirumalai 237451cc5068SAlexey Dobriyan static void sighand_ctor(void *data) 2375aa1757f9SOleg Nesterov { 2376aa1757f9SOleg Nesterov struct sighand_struct *sighand = data; 2377aa1757f9SOleg Nesterov 2378aa1757f9SOleg Nesterov spin_lock_init(&sighand->siglock); 2379b8fceee1SDavide Libenzi init_waitqueue_head(&sighand->signalfd_wqh); 2380fba2afaaSDavide Libenzi } 2381aa1757f9SOleg Nesterov 23821da177e4SLinus Torvalds void __init proc_caches_init(void) 23831da177e4SLinus Torvalds { 2384c1a2f7f0SRik van Riel unsigned int mm_size; 2385c1a2f7f0SRik van Riel 23861da177e4SLinus Torvalds sighand_cachep = kmem_cache_create("sighand_cache", 23871da177e4SLinus Torvalds sizeof(struct sighand_struct), 0, 23885f0d5a3aSPaul E. McKenney SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_TYPESAFE_BY_RCU| 238975f296d9SLevin, Alexander (Sasha Levin) SLAB_ACCOUNT, sighand_ctor); 23901da177e4SLinus Torvalds signal_cachep = kmem_cache_create("signal_cache", 23911da177e4SLinus Torvalds sizeof(struct signal_struct), 0, 239275f296d9SLevin, Alexander (Sasha Levin) SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT, 23935d097056SVladimir Davydov NULL); 23941da177e4SLinus Torvalds files_cachep = kmem_cache_create("files_cache", 23951da177e4SLinus Torvalds sizeof(struct files_struct), 0, 239675f296d9SLevin, Alexander (Sasha Levin) SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT, 23975d097056SVladimir Davydov NULL); 23981da177e4SLinus Torvalds fs_cachep = kmem_cache_create("fs_cache", 23991da177e4SLinus Torvalds sizeof(struct fs_struct), 0, 240075f296d9SLevin, Alexander (Sasha Levin) SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT, 24015d097056SVladimir Davydov NULL); 2402c1a2f7f0SRik van Riel 24036345d24dSLinus Torvalds /* 2404c1a2f7f0SRik van Riel * The mm_cpumask is located at the end of mm_struct, and is 2405c1a2f7f0SRik van Riel * dynamically sized based on the maximum CPU number this system 2406c1a2f7f0SRik van Riel * can have, taking hotplug into account (nr_cpu_ids). 24076345d24dSLinus Torvalds */ 2408c1a2f7f0SRik van Riel mm_size = sizeof(struct mm_struct) + cpumask_size(); 2409c1a2f7f0SRik van Riel 241007dcd7feSDavid Windsor mm_cachep = kmem_cache_create_usercopy("mm_struct", 2411c1a2f7f0SRik van Riel mm_size, ARCH_MIN_MMSTRUCT_ALIGN, 241275f296d9SLevin, Alexander (Sasha Levin) SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT, 241307dcd7feSDavid Windsor offsetof(struct mm_struct, saved_auxv), 241407dcd7feSDavid Windsor sizeof_field(struct mm_struct, saved_auxv), 24155d097056SVladimir Davydov NULL); 24165d097056SVladimir Davydov vm_area_cachep = KMEM_CACHE(vm_area_struct, SLAB_PANIC|SLAB_ACCOUNT); 24178feae131SDavid Howells mmap_init(); 241866577193SAl Viro nsproxy_cache_init(); 24191da177e4SLinus Torvalds } 2420cf2e340fSJANAK DESAI 2421cf2e340fSJANAK DESAI /* 24229bfb23fcSOleg Nesterov * Check constraints on flags passed to the unshare system call. 2423cf2e340fSJANAK DESAI */ 24249bfb23fcSOleg Nesterov static int check_unshare_flags(unsigned long unshare_flags) 2425cf2e340fSJANAK DESAI { 24269bfb23fcSOleg Nesterov if (unshare_flags & ~(CLONE_THREAD|CLONE_FS|CLONE_NEWNS|CLONE_SIGHAND| 24279bfb23fcSOleg Nesterov CLONE_VM|CLONE_FILES|CLONE_SYSVSEM| 242850804fe3SEric W. Biederman CLONE_NEWUTS|CLONE_NEWIPC|CLONE_NEWNET| 2429a79a908fSAditya Kali CLONE_NEWUSER|CLONE_NEWPID|CLONE_NEWCGROUP)) 2430cf2e340fSJANAK DESAI return -EINVAL; 24319bfb23fcSOleg Nesterov /* 243212c641abSEric W. Biederman * Not implemented, but pretend it works if there is nothing 243312c641abSEric W. Biederman * to unshare. Note that unsharing the address space or the 243412c641abSEric W. Biederman * signal handlers also need to unshare the signal queues (aka 243512c641abSEric W. Biederman * CLONE_THREAD). 24369bfb23fcSOleg Nesterov */ 24379bfb23fcSOleg Nesterov if (unshare_flags & (CLONE_THREAD | CLONE_SIGHAND | CLONE_VM)) { 243812c641abSEric W. Biederman if (!thread_group_empty(current)) 243912c641abSEric W. Biederman return -EINVAL; 244012c641abSEric W. Biederman } 244112c641abSEric W. Biederman if (unshare_flags & (CLONE_SIGHAND | CLONE_VM)) { 244212c641abSEric W. Biederman if (atomic_read(¤t->sighand->count) > 1) 244312c641abSEric W. Biederman return -EINVAL; 244412c641abSEric W. Biederman } 244512c641abSEric W. Biederman if (unshare_flags & CLONE_VM) { 244612c641abSEric W. Biederman if (!current_is_single_threaded()) 24479bfb23fcSOleg Nesterov return -EINVAL; 24489bfb23fcSOleg Nesterov } 2449cf2e340fSJANAK DESAI 2450cf2e340fSJANAK DESAI return 0; 2451cf2e340fSJANAK DESAI } 2452cf2e340fSJANAK DESAI 2453cf2e340fSJANAK DESAI /* 245499d1419dSJANAK DESAI * Unshare the filesystem structure if it is being shared 2455cf2e340fSJANAK DESAI */ 2456cf2e340fSJANAK DESAI static int unshare_fs(unsigned long unshare_flags, struct fs_struct **new_fsp) 2457cf2e340fSJANAK DESAI { 2458cf2e340fSJANAK DESAI struct fs_struct *fs = current->fs; 2459cf2e340fSJANAK DESAI 2460498052bbSAl Viro if (!(unshare_flags & CLONE_FS) || !fs) 2461498052bbSAl Viro return 0; 2462498052bbSAl Viro 2463498052bbSAl Viro /* don't need lock here; in the worst case we'll do useless copy */ 2464498052bbSAl Viro if (fs->users == 1) 2465498052bbSAl Viro return 0; 2466498052bbSAl Viro 2467498052bbSAl Viro *new_fsp = copy_fs_struct(fs); 246899d1419dSJANAK DESAI if (!*new_fsp) 246999d1419dSJANAK DESAI return -ENOMEM; 2470cf2e340fSJANAK DESAI 2471cf2e340fSJANAK DESAI return 0; 2472cf2e340fSJANAK DESAI } 2473cf2e340fSJANAK DESAI 2474cf2e340fSJANAK DESAI /* 2475a016f338SJANAK DESAI * Unshare file descriptor table if it is being shared 2476cf2e340fSJANAK DESAI */ 2477cf2e340fSJANAK DESAI static int unshare_fd(unsigned long unshare_flags, struct files_struct **new_fdp) 2478cf2e340fSJANAK DESAI { 2479cf2e340fSJANAK DESAI struct files_struct *fd = current->files; 2480a016f338SJANAK DESAI int error = 0; 2481cf2e340fSJANAK DESAI 2482cf2e340fSJANAK DESAI if ((unshare_flags & CLONE_FILES) && 2483a016f338SJANAK DESAI (fd && atomic_read(&fd->count) > 1)) { 2484a016f338SJANAK DESAI *new_fdp = dup_fd(fd, &error); 2485a016f338SJANAK DESAI if (!*new_fdp) 2486a016f338SJANAK DESAI return error; 2487a016f338SJANAK DESAI } 2488cf2e340fSJANAK DESAI 2489cf2e340fSJANAK DESAI return 0; 2490cf2e340fSJANAK DESAI } 2491cf2e340fSJANAK DESAI 2492cf2e340fSJANAK DESAI /* 2493cf2e340fSJANAK DESAI * unshare allows a process to 'unshare' part of the process 2494cf2e340fSJANAK DESAI * context which was originally shared using clone. copy_* 2495cf2e340fSJANAK DESAI * functions used by do_fork() cannot be used here directly 2496cf2e340fSJANAK DESAI * because they modify an inactive task_struct that is being 2497cf2e340fSJANAK DESAI * constructed. Here we are modifying the current, active, 2498cf2e340fSJANAK DESAI * task_struct. 2499cf2e340fSJANAK DESAI */ 25009b32105eSDominik Brodowski int ksys_unshare(unsigned long unshare_flags) 2501cf2e340fSJANAK DESAI { 2502cf2e340fSJANAK DESAI struct fs_struct *fs, *new_fs = NULL; 2503cf2e340fSJANAK DESAI struct files_struct *fd, *new_fd = NULL; 2504b2e0d987SEric W. Biederman struct cred *new_cred = NULL; 2505cf7b708cSPavel Emelyanov struct nsproxy *new_nsproxy = NULL; 25069edff4abSManfred Spraul int do_sysvsem = 0; 25079bfb23fcSOleg Nesterov int err; 2508cf2e340fSJANAK DESAI 250950804fe3SEric W. Biederman /* 2510faf00da5SEric W. Biederman * If unsharing a user namespace must also unshare the thread group 2511faf00da5SEric W. Biederman * and unshare the filesystem root and working directories. 2512b2e0d987SEric W. Biederman */ 2513b2e0d987SEric W. Biederman if (unshare_flags & CLONE_NEWUSER) 2514e66eded8SEric W. Biederman unshare_flags |= CLONE_THREAD | CLONE_FS; 2515b2e0d987SEric W. Biederman /* 251650804fe3SEric W. Biederman * If unsharing vm, must also unshare signal handlers. 251750804fe3SEric W. Biederman */ 251850804fe3SEric W. Biederman if (unshare_flags & CLONE_VM) 251950804fe3SEric W. Biederman unshare_flags |= CLONE_SIGHAND; 25206013f67fSManfred Spraul /* 252112c641abSEric W. Biederman * If unsharing a signal handlers, must also unshare the signal queues. 252212c641abSEric W. Biederman */ 252312c641abSEric W. Biederman if (unshare_flags & CLONE_SIGHAND) 252412c641abSEric W. Biederman unshare_flags |= CLONE_THREAD; 252512c641abSEric W. Biederman /* 25269bfb23fcSOleg Nesterov * If unsharing namespace, must also unshare filesystem information. 25279bfb23fcSOleg Nesterov */ 25289bfb23fcSOleg Nesterov if (unshare_flags & CLONE_NEWNS) 25299bfb23fcSOleg Nesterov unshare_flags |= CLONE_FS; 253050804fe3SEric W. Biederman 253150804fe3SEric W. Biederman err = check_unshare_flags(unshare_flags); 253250804fe3SEric W. Biederman if (err) 253350804fe3SEric W. Biederman goto bad_unshare_out; 25349bfb23fcSOleg Nesterov /* 25356013f67fSManfred Spraul * CLONE_NEWIPC must also detach from the undolist: after switching 25366013f67fSManfred Spraul * to a new ipc namespace, the semaphore arrays from the old 25376013f67fSManfred Spraul * namespace are unreachable. 25386013f67fSManfred Spraul */ 25396013f67fSManfred Spraul if (unshare_flags & (CLONE_NEWIPC|CLONE_SYSVSEM)) 25409edff4abSManfred Spraul do_sysvsem = 1; 2541fb0a685cSDaniel Rebelo de Oliveira err = unshare_fs(unshare_flags, &new_fs); 2542fb0a685cSDaniel Rebelo de Oliveira if (err) 25439bfb23fcSOleg Nesterov goto bad_unshare_out; 2544fb0a685cSDaniel Rebelo de Oliveira err = unshare_fd(unshare_flags, &new_fd); 2545fb0a685cSDaniel Rebelo de Oliveira if (err) 25469bfb23fcSOleg Nesterov goto bad_unshare_cleanup_fs; 2547b2e0d987SEric W. Biederman err = unshare_userns(unshare_flags, &new_cred); 2548fb0a685cSDaniel Rebelo de Oliveira if (err) 25499edff4abSManfred Spraul goto bad_unshare_cleanup_fd; 2550b2e0d987SEric W. Biederman err = unshare_nsproxy_namespaces(unshare_flags, &new_nsproxy, 2551b2e0d987SEric W. Biederman new_cred, new_fs); 2552b2e0d987SEric W. Biederman if (err) 2553b2e0d987SEric W. Biederman goto bad_unshare_cleanup_cred; 2554cf2e340fSJANAK DESAI 2555b2e0d987SEric W. Biederman if (new_fs || new_fd || do_sysvsem || new_cred || new_nsproxy) { 25569edff4abSManfred Spraul if (do_sysvsem) { 25579edff4abSManfred Spraul /* 25589edff4abSManfred Spraul * CLONE_SYSVSEM is equivalent to sys_exit(). 25599edff4abSManfred Spraul */ 25609edff4abSManfred Spraul exit_sem(current); 25619edff4abSManfred Spraul } 2562ab602f79SJack Miller if (unshare_flags & CLONE_NEWIPC) { 2563ab602f79SJack Miller /* Orphan segments in old ns (see sem above). */ 2564ab602f79SJack Miller exit_shm(current); 2565ab602f79SJack Miller shm_init_task(current); 2566ab602f79SJack Miller } 2567ab516013SSerge E. Hallyn 25686f977e6bSAlan Cox if (new_nsproxy) 2569cf7b708cSPavel Emelyanov switch_task_namespaces(current, new_nsproxy); 2570cf2e340fSJANAK DESAI 2571cf7b708cSPavel Emelyanov task_lock(current); 2572cf7b708cSPavel Emelyanov 2573cf2e340fSJANAK DESAI if (new_fs) { 2574cf2e340fSJANAK DESAI fs = current->fs; 25752a4419b5SNick Piggin spin_lock(&fs->lock); 2576cf2e340fSJANAK DESAI current->fs = new_fs; 2577498052bbSAl Viro if (--fs->users) 2578498052bbSAl Viro new_fs = NULL; 2579498052bbSAl Viro else 2580cf2e340fSJANAK DESAI new_fs = fs; 25812a4419b5SNick Piggin spin_unlock(&fs->lock); 2582cf2e340fSJANAK DESAI } 2583cf2e340fSJANAK DESAI 2584cf2e340fSJANAK DESAI if (new_fd) { 2585cf2e340fSJANAK DESAI fd = current->files; 2586cf2e340fSJANAK DESAI current->files = new_fd; 2587cf2e340fSJANAK DESAI new_fd = fd; 2588cf2e340fSJANAK DESAI } 2589cf2e340fSJANAK DESAI 2590cf2e340fSJANAK DESAI task_unlock(current); 2591b2e0d987SEric W. Biederman 2592b2e0d987SEric W. Biederman if (new_cred) { 2593b2e0d987SEric W. Biederman /* Install the new user namespace */ 2594b2e0d987SEric W. Biederman commit_creds(new_cred); 2595b2e0d987SEric W. Biederman new_cred = NULL; 2596b2e0d987SEric W. Biederman } 2597cf2e340fSJANAK DESAI } 2598cf2e340fSJANAK DESAI 2599e4222673SHari Bathini perf_event_namespaces(current); 2600e4222673SHari Bathini 2601b2e0d987SEric W. Biederman bad_unshare_cleanup_cred: 2602b2e0d987SEric W. Biederman if (new_cred) 2603b2e0d987SEric W. Biederman put_cred(new_cred); 2604cf2e340fSJANAK DESAI bad_unshare_cleanup_fd: 2605cf2e340fSJANAK DESAI if (new_fd) 2606cf2e340fSJANAK DESAI put_files_struct(new_fd); 2607cf2e340fSJANAK DESAI 2608cf2e340fSJANAK DESAI bad_unshare_cleanup_fs: 2609cf2e340fSJANAK DESAI if (new_fs) 2610498052bbSAl Viro free_fs_struct(new_fs); 2611cf2e340fSJANAK DESAI 2612cf2e340fSJANAK DESAI bad_unshare_out: 2613cf2e340fSJANAK DESAI return err; 2614cf2e340fSJANAK DESAI } 26153b125388SAl Viro 26169b32105eSDominik Brodowski SYSCALL_DEFINE1(unshare, unsigned long, unshare_flags) 26179b32105eSDominik Brodowski { 26189b32105eSDominik Brodowski return ksys_unshare(unshare_flags); 26199b32105eSDominik Brodowski } 26209b32105eSDominik Brodowski 26213b125388SAl Viro /* 26223b125388SAl Viro * Helper to unshare the files of the current task. 26233b125388SAl Viro * We don't want to expose copy_files internals to 26243b125388SAl Viro * the exec layer of the kernel. 26253b125388SAl Viro */ 26263b125388SAl Viro 26273b125388SAl Viro int unshare_files(struct files_struct **displaced) 26283b125388SAl Viro { 26293b125388SAl Viro struct task_struct *task = current; 263050704516SAl Viro struct files_struct *copy = NULL; 26313b125388SAl Viro int error; 26323b125388SAl Viro 26333b125388SAl Viro error = unshare_fd(CLONE_FILES, ©); 26343b125388SAl Viro if (error || !copy) { 26353b125388SAl Viro *displaced = NULL; 26363b125388SAl Viro return error; 26373b125388SAl Viro } 26383b125388SAl Viro *displaced = task->files; 26393b125388SAl Viro task_lock(task); 26403b125388SAl Viro task->files = copy; 26413b125388SAl Viro task_unlock(task); 26423b125388SAl Viro return 0; 26433b125388SAl Viro } 264416db3d3fSHeinrich Schuchardt 264516db3d3fSHeinrich Schuchardt int sysctl_max_threads(struct ctl_table *table, int write, 264616db3d3fSHeinrich Schuchardt void __user *buffer, size_t *lenp, loff_t *ppos) 264716db3d3fSHeinrich Schuchardt { 264816db3d3fSHeinrich Schuchardt struct ctl_table t; 264916db3d3fSHeinrich Schuchardt int ret; 265016db3d3fSHeinrich Schuchardt int threads = max_threads; 265116db3d3fSHeinrich Schuchardt int min = MIN_THREADS; 265216db3d3fSHeinrich Schuchardt int max = MAX_THREADS; 265316db3d3fSHeinrich Schuchardt 265416db3d3fSHeinrich Schuchardt t = *table; 265516db3d3fSHeinrich Schuchardt t.data = &threads; 265616db3d3fSHeinrich Schuchardt t.extra1 = &min; 265716db3d3fSHeinrich Schuchardt t.extra2 = &max; 265816db3d3fSHeinrich Schuchardt 265916db3d3fSHeinrich Schuchardt ret = proc_dointvec_minmax(&t, write, buffer, lenp, ppos); 266016db3d3fSHeinrich Schuchardt if (ret || !write) 266116db3d3fSHeinrich Schuchardt return ret; 266216db3d3fSHeinrich Schuchardt 266316db3d3fSHeinrich Schuchardt set_max_threads(threads); 266416db3d3fSHeinrich Schuchardt 266516db3d3fSHeinrich Schuchardt return 0; 266616db3d3fSHeinrich Schuchardt } 2667