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> 94*afaef01cSAlexander 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 void __weak arch_release_thread_stack(unsigned long *stack) 168f19b9f74SAkinobu Mita { 169f19b9f74SAkinobu Mita } 170f19b9f74SAkinobu Mita 171b235beeaSLinus Torvalds #ifndef CONFIG_ARCH_THREAD_STACK_ALLOCATOR 17241101809SThomas Gleixner 1730d15d74aSThomas Gleixner /* 1740d15d74aSThomas Gleixner * Allocate pages if THREAD_SIZE is >= PAGE_SIZE, otherwise use a 1750d15d74aSThomas Gleixner * kmemcache based allocator. 1760d15d74aSThomas Gleixner */ 177ba14a194SAndy Lutomirski # if THREAD_SIZE >= PAGE_SIZE || defined(CONFIG_VMAP_STACK) 178ac496bf4SAndy Lutomirski 179ac496bf4SAndy Lutomirski #ifdef CONFIG_VMAP_STACK 180ac496bf4SAndy Lutomirski /* 181ac496bf4SAndy Lutomirski * vmalloc() is a bit slow, and calling vfree() enough times will force a TLB 182ac496bf4SAndy Lutomirski * flush. Try to minimize the number of calls by caching stacks. 183ac496bf4SAndy Lutomirski */ 184ac496bf4SAndy Lutomirski #define NR_CACHED_STACKS 2 185ac496bf4SAndy Lutomirski static DEFINE_PER_CPU(struct vm_struct *, cached_stacks[NR_CACHED_STACKS]); 18619659c59SHoeun Ryu 18719659c59SHoeun Ryu static int free_vm_stack_cache(unsigned int cpu) 18819659c59SHoeun Ryu { 18919659c59SHoeun Ryu struct vm_struct **cached_vm_stacks = per_cpu_ptr(cached_stacks, cpu); 19019659c59SHoeun Ryu int i; 19119659c59SHoeun Ryu 19219659c59SHoeun Ryu for (i = 0; i < NR_CACHED_STACKS; i++) { 19319659c59SHoeun Ryu struct vm_struct *vm_stack = cached_vm_stacks[i]; 19419659c59SHoeun Ryu 19519659c59SHoeun Ryu if (!vm_stack) 19619659c59SHoeun Ryu continue; 19719659c59SHoeun Ryu 19819659c59SHoeun Ryu vfree(vm_stack->addr); 19919659c59SHoeun Ryu cached_vm_stacks[i] = NULL; 20019659c59SHoeun Ryu } 20119659c59SHoeun Ryu 20219659c59SHoeun Ryu return 0; 20319659c59SHoeun Ryu } 204ac496bf4SAndy Lutomirski #endif 205ac496bf4SAndy Lutomirski 206ba14a194SAndy Lutomirski static unsigned long *alloc_thread_stack_node(struct task_struct *tsk, int node) 207b69c49b7SFUJITA Tomonori { 208ba14a194SAndy Lutomirski #ifdef CONFIG_VMAP_STACK 209ac496bf4SAndy Lutomirski void *stack; 210ac496bf4SAndy Lutomirski int i; 211ac496bf4SAndy Lutomirski 212ac496bf4SAndy Lutomirski for (i = 0; i < NR_CACHED_STACKS; i++) { 213112166f8SChristoph Lameter struct vm_struct *s; 214112166f8SChristoph Lameter 215112166f8SChristoph Lameter s = this_cpu_xchg(cached_stacks[i], NULL); 216ac496bf4SAndy Lutomirski 217ac496bf4SAndy Lutomirski if (!s) 218ac496bf4SAndy Lutomirski continue; 219ac496bf4SAndy Lutomirski 220ca182551SKonstantin Khlebnikov /* Clear stale pointers from reused stack. */ 221ca182551SKonstantin Khlebnikov memset(s->addr, 0, THREAD_SIZE); 222e01e8063SKees Cook 223ac496bf4SAndy Lutomirski tsk->stack_vm_area = s; 224ac496bf4SAndy Lutomirski return s->addr; 225ac496bf4SAndy Lutomirski } 226ac496bf4SAndy Lutomirski 22748ac3c18SMark Rutland stack = __vmalloc_node_range(THREAD_SIZE, THREAD_ALIGN, 228ba14a194SAndy Lutomirski VMALLOC_START, VMALLOC_END, 22919809c2dSMichal Hocko THREADINFO_GFP, 230ba14a194SAndy Lutomirski PAGE_KERNEL, 231ac496bf4SAndy Lutomirski 0, node, __builtin_return_address(0)); 232ba14a194SAndy Lutomirski 233ba14a194SAndy Lutomirski /* 234ba14a194SAndy Lutomirski * We can't call find_vm_area() in interrupt context, and 235ba14a194SAndy Lutomirski * free_thread_stack() can be called in interrupt context, 236ba14a194SAndy Lutomirski * so cache the vm_struct. 237ba14a194SAndy Lutomirski */ 238ba14a194SAndy Lutomirski if (stack) 239ba14a194SAndy Lutomirski tsk->stack_vm_area = find_vm_area(stack); 240ba14a194SAndy Lutomirski return stack; 241ba14a194SAndy Lutomirski #else 2424949148aSVladimir Davydov struct page *page = alloc_pages_node(node, THREADINFO_GFP, 2432889f608SThomas Gleixner THREAD_SIZE_ORDER); 244b6a84016SEric Dumazet 245b6a84016SEric Dumazet return page ? page_address(page) : NULL; 246ba14a194SAndy Lutomirski #endif 247b69c49b7SFUJITA Tomonori } 248b69c49b7SFUJITA Tomonori 249ba14a194SAndy Lutomirski static inline void free_thread_stack(struct task_struct *tsk) 250b69c49b7SFUJITA Tomonori { 251ac496bf4SAndy Lutomirski #ifdef CONFIG_VMAP_STACK 252ac496bf4SAndy Lutomirski if (task_stack_vm_area(tsk)) { 253ac496bf4SAndy Lutomirski int i; 254ac496bf4SAndy Lutomirski 255ac496bf4SAndy Lutomirski for (i = 0; i < NR_CACHED_STACKS; i++) { 256112166f8SChristoph Lameter if (this_cpu_cmpxchg(cached_stacks[i], 257112166f8SChristoph Lameter NULL, tsk->stack_vm_area) != NULL) 258ac496bf4SAndy Lutomirski continue; 259ac496bf4SAndy Lutomirski 260ac496bf4SAndy Lutomirski return; 261ac496bf4SAndy Lutomirski } 262ac496bf4SAndy Lutomirski 2630f110a9bSAndrey Ryabinin vfree_atomic(tsk->stack); 264ac496bf4SAndy Lutomirski return; 265ac496bf4SAndy Lutomirski } 266ac496bf4SAndy Lutomirski #endif 267ac496bf4SAndy Lutomirski 268ba14a194SAndy Lutomirski __free_pages(virt_to_page(tsk->stack), THREAD_SIZE_ORDER); 269b69c49b7SFUJITA Tomonori } 2700d15d74aSThomas Gleixner # else 271b235beeaSLinus Torvalds static struct kmem_cache *thread_stack_cache; 2720d15d74aSThomas Gleixner 2739521d399SMichael Ellerman static unsigned long *alloc_thread_stack_node(struct task_struct *tsk, 2740d15d74aSThomas Gleixner int node) 2750d15d74aSThomas Gleixner { 276b235beeaSLinus Torvalds return kmem_cache_alloc_node(thread_stack_cache, THREADINFO_GFP, node); 2770d15d74aSThomas Gleixner } 2780d15d74aSThomas Gleixner 279ba14a194SAndy Lutomirski static void free_thread_stack(struct task_struct *tsk) 2800d15d74aSThomas Gleixner { 281ba14a194SAndy Lutomirski kmem_cache_free(thread_stack_cache, tsk->stack); 2820d15d74aSThomas Gleixner } 2830d15d74aSThomas Gleixner 284b235beeaSLinus Torvalds void thread_stack_cache_init(void) 2850d15d74aSThomas Gleixner { 286f9d29946SDavid Windsor thread_stack_cache = kmem_cache_create_usercopy("thread_stack", 287f9d29946SDavid Windsor THREAD_SIZE, THREAD_SIZE, 0, 0, 288f9d29946SDavid Windsor THREAD_SIZE, NULL); 289b235beeaSLinus Torvalds BUG_ON(thread_stack_cache == NULL); 2900d15d74aSThomas Gleixner } 2910d15d74aSThomas Gleixner # endif 292b69c49b7SFUJITA Tomonori #endif 293b69c49b7SFUJITA Tomonori 2941da177e4SLinus Torvalds /* SLAB cache for signal_struct structures (tsk->signal) */ 295e18b890bSChristoph Lameter static struct kmem_cache *signal_cachep; 2961da177e4SLinus Torvalds 2971da177e4SLinus Torvalds /* SLAB cache for sighand_struct structures (tsk->sighand) */ 298e18b890bSChristoph Lameter struct kmem_cache *sighand_cachep; 2991da177e4SLinus Torvalds 3001da177e4SLinus Torvalds /* SLAB cache for files_struct structures (tsk->files) */ 301e18b890bSChristoph Lameter struct kmem_cache *files_cachep; 3021da177e4SLinus Torvalds 3031da177e4SLinus Torvalds /* SLAB cache for fs_struct structures (tsk->fs) */ 304e18b890bSChristoph Lameter struct kmem_cache *fs_cachep; 3051da177e4SLinus Torvalds 3061da177e4SLinus Torvalds /* SLAB cache for vm_area_struct structures */ 3073928d4f5SLinus Torvalds static struct kmem_cache *vm_area_cachep; 3081da177e4SLinus Torvalds 3091da177e4SLinus Torvalds /* SLAB cache for mm_struct structures (tsk->mm) */ 310e18b890bSChristoph Lameter static struct kmem_cache *mm_cachep; 3111da177e4SLinus Torvalds 312490fc053SLinus Torvalds struct vm_area_struct *vm_area_alloc(struct mm_struct *mm) 3133928d4f5SLinus Torvalds { 314a670468fSAndrew Morton struct vm_area_struct *vma; 315490fc053SLinus Torvalds 316a670468fSAndrew Morton vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL); 317027232daSKirill A. Shutemov if (vma) 318027232daSKirill A. Shutemov vma_init(vma, mm); 319490fc053SLinus Torvalds return vma; 3203928d4f5SLinus Torvalds } 3213928d4f5SLinus Torvalds 3223928d4f5SLinus Torvalds struct vm_area_struct *vm_area_dup(struct vm_area_struct *orig) 3233928d4f5SLinus Torvalds { 32495faf699SLinus Torvalds struct vm_area_struct *new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL); 32595faf699SLinus Torvalds 32695faf699SLinus Torvalds if (new) { 32795faf699SLinus Torvalds *new = *orig; 32895faf699SLinus Torvalds INIT_LIST_HEAD(&new->anon_vma_chain); 32995faf699SLinus Torvalds } 33095faf699SLinus Torvalds return new; 3313928d4f5SLinus Torvalds } 3323928d4f5SLinus Torvalds 3333928d4f5SLinus Torvalds void vm_area_free(struct vm_area_struct *vma) 3343928d4f5SLinus Torvalds { 3353928d4f5SLinus Torvalds kmem_cache_free(vm_area_cachep, vma); 3363928d4f5SLinus Torvalds } 3373928d4f5SLinus Torvalds 338ba14a194SAndy Lutomirski static void account_kernel_stack(struct task_struct *tsk, int account) 339c6a7f572SKOSAKI Motohiro { 340ba14a194SAndy Lutomirski void *stack = task_stack_page(tsk); 341ba14a194SAndy Lutomirski struct vm_struct *vm = task_stack_vm_area(tsk); 342ba14a194SAndy Lutomirski 343ba14a194SAndy Lutomirski BUILD_BUG_ON(IS_ENABLED(CONFIG_VMAP_STACK) && PAGE_SIZE % 1024 != 0); 344ba14a194SAndy Lutomirski 345ba14a194SAndy Lutomirski if (vm) { 346ba14a194SAndy Lutomirski int i; 347ba14a194SAndy Lutomirski 348ba14a194SAndy Lutomirski BUG_ON(vm->nr_pages != THREAD_SIZE / PAGE_SIZE); 349ba14a194SAndy Lutomirski 350ba14a194SAndy Lutomirski for (i = 0; i < THREAD_SIZE / PAGE_SIZE; i++) { 351ba14a194SAndy Lutomirski mod_zone_page_state(page_zone(vm->pages[i]), 352ba14a194SAndy Lutomirski NR_KERNEL_STACK_KB, 353ba14a194SAndy Lutomirski PAGE_SIZE / 1024 * account); 354ba14a194SAndy Lutomirski } 355ba14a194SAndy Lutomirski 356ba14a194SAndy Lutomirski /* All stack pages belong to the same memcg. */ 357ed52be7bSJohannes Weiner mod_memcg_page_state(vm->pages[0], MEMCG_KERNEL_STACK_KB, 358ba14a194SAndy Lutomirski account * (THREAD_SIZE / 1024)); 359ba14a194SAndy Lutomirski } else { 360ba14a194SAndy Lutomirski /* 361ba14a194SAndy Lutomirski * All stack pages are in the same zone and belong to the 362ba14a194SAndy Lutomirski * same memcg. 363ba14a194SAndy Lutomirski */ 364efdc9490SAndy Lutomirski struct page *first_page = virt_to_page(stack); 365c6a7f572SKOSAKI Motohiro 366efdc9490SAndy Lutomirski mod_zone_page_state(page_zone(first_page), NR_KERNEL_STACK_KB, 367d30dd8beSAndy Lutomirski THREAD_SIZE / 1024 * account); 368efdc9490SAndy Lutomirski 369ed52be7bSJohannes Weiner mod_memcg_page_state(first_page, MEMCG_KERNEL_STACK_KB, 370efdc9490SAndy Lutomirski account * (THREAD_SIZE / 1024)); 371c6a7f572SKOSAKI Motohiro } 372ba14a194SAndy Lutomirski } 373c6a7f572SKOSAKI Motohiro 37468f24b08SAndy Lutomirski static void release_task_stack(struct task_struct *tsk) 3751da177e4SLinus Torvalds { 376405c0759SAndy Lutomirski if (WARN_ON(tsk->state != TASK_DEAD)) 377405c0759SAndy Lutomirski return; /* Better to leak the stack than to free prematurely */ 378405c0759SAndy Lutomirski 379ba14a194SAndy Lutomirski account_kernel_stack(tsk, -1); 380b235beeaSLinus Torvalds arch_release_thread_stack(tsk->stack); 381ba14a194SAndy Lutomirski free_thread_stack(tsk); 38268f24b08SAndy Lutomirski tsk->stack = NULL; 38368f24b08SAndy Lutomirski #ifdef CONFIG_VMAP_STACK 38468f24b08SAndy Lutomirski tsk->stack_vm_area = NULL; 38568f24b08SAndy Lutomirski #endif 38668f24b08SAndy Lutomirski } 38768f24b08SAndy Lutomirski 38868f24b08SAndy Lutomirski #ifdef CONFIG_THREAD_INFO_IN_TASK 38968f24b08SAndy Lutomirski void put_task_stack(struct task_struct *tsk) 39068f24b08SAndy Lutomirski { 39168f24b08SAndy Lutomirski if (atomic_dec_and_test(&tsk->stack_refcount)) 39268f24b08SAndy Lutomirski release_task_stack(tsk); 39368f24b08SAndy Lutomirski } 39468f24b08SAndy Lutomirski #endif 39568f24b08SAndy Lutomirski 39668f24b08SAndy Lutomirski void free_task(struct task_struct *tsk) 39768f24b08SAndy Lutomirski { 39868f24b08SAndy Lutomirski #ifndef CONFIG_THREAD_INFO_IN_TASK 39968f24b08SAndy Lutomirski /* 40068f24b08SAndy Lutomirski * The task is finally done with both the stack and thread_info, 40168f24b08SAndy Lutomirski * so free both. 40268f24b08SAndy Lutomirski */ 40368f24b08SAndy Lutomirski release_task_stack(tsk); 40468f24b08SAndy Lutomirski #else 40568f24b08SAndy Lutomirski /* 40668f24b08SAndy Lutomirski * If the task had a separate stack allocation, it should be gone 40768f24b08SAndy Lutomirski * by now. 40868f24b08SAndy Lutomirski */ 40968f24b08SAndy Lutomirski WARN_ON_ONCE(atomic_read(&tsk->stack_refcount) != 0); 41068f24b08SAndy Lutomirski #endif 41123f78d4aSIngo Molnar rt_mutex_debug_task_free(tsk); 412fb52607aSFrederic Weisbecker ftrace_graph_exit_task(tsk); 413e2cfabdfSWill Drewry put_seccomp_filter(tsk); 414f19b9f74SAkinobu Mita arch_release_task_struct(tsk); 4151da5c46fSOleg Nesterov if (tsk->flags & PF_KTHREAD) 4161da5c46fSOleg Nesterov free_kthread_struct(tsk); 4171da177e4SLinus Torvalds free_task_struct(tsk); 4181da177e4SLinus Torvalds } 4191da177e4SLinus Torvalds EXPORT_SYMBOL(free_task); 4201da177e4SLinus Torvalds 4211da177e4SLinus Torvalds #ifdef CONFIG_MMU 4220766f788SEmese Revfy static __latent_entropy int dup_mmap(struct mm_struct *mm, 4230766f788SEmese Revfy struct mm_struct *oldmm) 4241da177e4SLinus Torvalds { 425297c5eeeSLinus Torvalds struct vm_area_struct *mpnt, *tmp, *prev, **pprev; 4261da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 4271da177e4SLinus Torvalds int retval; 4281da177e4SLinus Torvalds unsigned long charge; 429893e26e6SPavel Emelyanov LIST_HEAD(uf); 4301da177e4SLinus Torvalds 43132cdba1eSOleg Nesterov uprobe_start_dup_mmap(); 4327c051267SMichal Hocko if (down_write_killable(&oldmm->mmap_sem)) { 4337c051267SMichal Hocko retval = -EINTR; 4347c051267SMichal Hocko goto fail_uprobe_end; 4357c051267SMichal Hocko } 436ec8c0446SRalf Baechle flush_cache_dup_mm(oldmm); 437f8ac4ec9SOleg Nesterov uprobe_dup_mmap(oldmm, mm); 438ad339451SIngo Molnar /* 439ad339451SIngo Molnar * Not linked in yet - no deadlock potential: 440ad339451SIngo Molnar */ 441ad339451SIngo Molnar down_write_nested(&mm->mmap_sem, SINGLE_DEPTH_NESTING); 4427ee78232SHugh Dickins 44390f31d0eSKonstantin Khlebnikov /* No ordering required: file already has been exposed. */ 44490f31d0eSKonstantin Khlebnikov RCU_INIT_POINTER(mm->exe_file, get_mm_exe_file(oldmm)); 44590f31d0eSKonstantin Khlebnikov 4464f7d4614SVladimir Davydov mm->total_vm = oldmm->total_vm; 44784638335SKonstantin Khlebnikov mm->data_vm = oldmm->data_vm; 4484f7d4614SVladimir Davydov mm->exec_vm = oldmm->exec_vm; 4494f7d4614SVladimir Davydov mm->stack_vm = oldmm->stack_vm; 4504f7d4614SVladimir Davydov 4511da177e4SLinus Torvalds rb_link = &mm->mm_rb.rb_node; 4521da177e4SLinus Torvalds rb_parent = NULL; 4531da177e4SLinus Torvalds pprev = &mm->mmap; 454f8af4da3SHugh Dickins retval = ksm_fork(mm, oldmm); 455f8af4da3SHugh Dickins if (retval) 456f8af4da3SHugh Dickins goto out; 457ba76149fSAndrea Arcangeli retval = khugepaged_fork(mm, oldmm); 458ba76149fSAndrea Arcangeli if (retval) 459ba76149fSAndrea Arcangeli goto out; 4601da177e4SLinus Torvalds 461297c5eeeSLinus Torvalds prev = NULL; 462fd3e42fcSHugh Dickins for (mpnt = oldmm->mmap; mpnt; mpnt = mpnt->vm_next) { 4631da177e4SLinus Torvalds struct file *file; 4641da177e4SLinus Torvalds 4651da177e4SLinus Torvalds if (mpnt->vm_flags & VM_DONTCOPY) { 46684638335SKonstantin Khlebnikov vm_stat_account(mm, mpnt->vm_flags, -vma_pages(mpnt)); 4671da177e4SLinus Torvalds continue; 4681da177e4SLinus Torvalds } 4691da177e4SLinus Torvalds charge = 0; 470655c79bbSTetsuo Handa /* 471655c79bbSTetsuo Handa * Don't duplicate many vmas if we've been oom-killed (for 472655c79bbSTetsuo Handa * example) 473655c79bbSTetsuo Handa */ 474655c79bbSTetsuo Handa if (fatal_signal_pending(current)) { 475655c79bbSTetsuo Handa retval = -EINTR; 476655c79bbSTetsuo Handa goto out; 477655c79bbSTetsuo Handa } 4781da177e4SLinus Torvalds if (mpnt->vm_flags & VM_ACCOUNT) { 479b2412b7fSHuang Shijie unsigned long len = vma_pages(mpnt); 480b2412b7fSHuang Shijie 481191c5424SAl Viro if (security_vm_enough_memory_mm(oldmm, len)) /* sic */ 4821da177e4SLinus Torvalds goto fail_nomem; 4831da177e4SLinus Torvalds charge = len; 4841da177e4SLinus Torvalds } 4853928d4f5SLinus Torvalds tmp = vm_area_dup(mpnt); 4861da177e4SLinus Torvalds if (!tmp) 4871da177e4SLinus Torvalds goto fail_nomem; 488ef0855d3SOleg Nesterov retval = vma_dup_policy(mpnt, tmp); 489ef0855d3SOleg Nesterov if (retval) 4901da177e4SLinus Torvalds goto fail_nomem_policy; 491a247c3a9SAndrea Arcangeli tmp->vm_mm = mm; 492893e26e6SPavel Emelyanov retval = dup_userfaultfd(tmp, &uf); 493893e26e6SPavel Emelyanov if (retval) 494893e26e6SPavel Emelyanov goto fail_nomem_anon_vma_fork; 495d2cd9edeSRik van Riel if (tmp->vm_flags & VM_WIPEONFORK) { 496d2cd9edeSRik van Riel /* VM_WIPEONFORK gets a clean slate in the child. */ 497d2cd9edeSRik van Riel tmp->anon_vma = NULL; 498d2cd9edeSRik van Riel if (anon_vma_prepare(tmp)) 499d2cd9edeSRik van Riel goto fail_nomem_anon_vma_fork; 500d2cd9edeSRik van Riel } else if (anon_vma_fork(tmp, mpnt)) 5015beb4930SRik van Riel goto fail_nomem_anon_vma_fork; 502893e26e6SPavel Emelyanov tmp->vm_flags &= ~(VM_LOCKED | VM_LOCKONFAULT); 503297c5eeeSLinus Torvalds tmp->vm_next = tmp->vm_prev = NULL; 5041da177e4SLinus Torvalds file = tmp->vm_file; 5051da177e4SLinus Torvalds if (file) { 506496ad9aaSAl Viro struct inode *inode = file_inode(file); 507b88ed205SHugh Dickins struct address_space *mapping = file->f_mapping; 508b88ed205SHugh Dickins 5091da177e4SLinus Torvalds get_file(file); 5101da177e4SLinus Torvalds if (tmp->vm_flags & VM_DENYWRITE) 5111da177e4SLinus Torvalds atomic_dec(&inode->i_writecount); 51283cde9e8SDavidlohr Bueso i_mmap_lock_write(mapping); 513b88ed205SHugh Dickins if (tmp->vm_flags & VM_SHARED) 5144bb5f5d9SDavid Herrmann atomic_inc(&mapping->i_mmap_writable); 515b88ed205SHugh Dickins flush_dcache_mmap_lock(mapping); 516b88ed205SHugh Dickins /* insert tmp into the share list, just after mpnt */ 5179826a516SMichel Lespinasse vma_interval_tree_insert_after(tmp, mpnt, 5189826a516SMichel Lespinasse &mapping->i_mmap); 519b88ed205SHugh Dickins flush_dcache_mmap_unlock(mapping); 52083cde9e8SDavidlohr Bueso i_mmap_unlock_write(mapping); 5211da177e4SLinus Torvalds } 5221da177e4SLinus Torvalds 5231da177e4SLinus Torvalds /* 524a1e78772SMel Gorman * Clear hugetlb-related page reserves for children. This only 525a1e78772SMel Gorman * affects MAP_PRIVATE mappings. Faults generated by the child 526a1e78772SMel Gorman * are not guaranteed to succeed, even if read-only 527a1e78772SMel Gorman */ 528a1e78772SMel Gorman if (is_vm_hugetlb_page(tmp)) 529a1e78772SMel Gorman reset_vma_resv_huge_pages(tmp); 530a1e78772SMel Gorman 531a1e78772SMel Gorman /* 5327ee78232SHugh Dickins * Link in the new vma and copy the page table entries. 5331da177e4SLinus Torvalds */ 5341da177e4SLinus Torvalds *pprev = tmp; 5351da177e4SLinus Torvalds pprev = &tmp->vm_next; 536297c5eeeSLinus Torvalds tmp->vm_prev = prev; 537297c5eeeSLinus Torvalds prev = tmp; 5381da177e4SLinus Torvalds 5391da177e4SLinus Torvalds __vma_link_rb(mm, tmp, rb_link, rb_parent); 5401da177e4SLinus Torvalds rb_link = &tmp->vm_rb.rb_right; 5411da177e4SLinus Torvalds rb_parent = &tmp->vm_rb; 5421da177e4SLinus Torvalds 5431da177e4SLinus Torvalds mm->map_count++; 544d2cd9edeSRik van Riel if (!(tmp->vm_flags & VM_WIPEONFORK)) 5450b0db14cSHugh Dickins retval = copy_page_range(mm, oldmm, mpnt); 5461da177e4SLinus Torvalds 5471da177e4SLinus Torvalds if (tmp->vm_ops && tmp->vm_ops->open) 5481da177e4SLinus Torvalds tmp->vm_ops->open(tmp); 5491da177e4SLinus Torvalds 5501da177e4SLinus Torvalds if (retval) 5511da177e4SLinus Torvalds goto out; 5521da177e4SLinus Torvalds } 553d6dd61c8SJeremy Fitzhardinge /* a new mm has just been created */ 554d70f2a14SAndrew Morton arch_dup_mmap(oldmm, mm); 555d70f2a14SAndrew Morton retval = 0; 5561da177e4SLinus Torvalds out: 5577ee78232SHugh Dickins up_write(&mm->mmap_sem); 558fd3e42fcSHugh Dickins flush_tlb_mm(oldmm); 5591da177e4SLinus Torvalds up_write(&oldmm->mmap_sem); 560893e26e6SPavel Emelyanov dup_userfaultfd_complete(&uf); 5617c051267SMichal Hocko fail_uprobe_end: 56232cdba1eSOleg Nesterov uprobe_end_dup_mmap(); 5631da177e4SLinus Torvalds return retval; 5645beb4930SRik van Riel fail_nomem_anon_vma_fork: 565ef0855d3SOleg Nesterov mpol_put(vma_policy(tmp)); 5661da177e4SLinus Torvalds fail_nomem_policy: 5673928d4f5SLinus Torvalds vm_area_free(tmp); 5681da177e4SLinus Torvalds fail_nomem: 5691da177e4SLinus Torvalds retval = -ENOMEM; 5701da177e4SLinus Torvalds vm_unacct_memory(charge); 5711da177e4SLinus Torvalds goto out; 5721da177e4SLinus Torvalds } 5731da177e4SLinus Torvalds 5741da177e4SLinus Torvalds static inline int mm_alloc_pgd(struct mm_struct *mm) 5751da177e4SLinus Torvalds { 5761da177e4SLinus Torvalds mm->pgd = pgd_alloc(mm); 5771da177e4SLinus Torvalds if (unlikely(!mm->pgd)) 5781da177e4SLinus Torvalds return -ENOMEM; 5791da177e4SLinus Torvalds return 0; 5801da177e4SLinus Torvalds } 5811da177e4SLinus Torvalds 5821da177e4SLinus Torvalds static inline void mm_free_pgd(struct mm_struct *mm) 5831da177e4SLinus Torvalds { 5845e541973SBenjamin Herrenschmidt pgd_free(mm, mm->pgd); 5851da177e4SLinus Torvalds } 5861da177e4SLinus Torvalds #else 58790f31d0eSKonstantin Khlebnikov static int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm) 58890f31d0eSKonstantin Khlebnikov { 58990f31d0eSKonstantin Khlebnikov down_write(&oldmm->mmap_sem); 59090f31d0eSKonstantin Khlebnikov RCU_INIT_POINTER(mm->exe_file, get_mm_exe_file(oldmm)); 59190f31d0eSKonstantin Khlebnikov up_write(&oldmm->mmap_sem); 59290f31d0eSKonstantin Khlebnikov return 0; 59390f31d0eSKonstantin Khlebnikov } 5941da177e4SLinus Torvalds #define mm_alloc_pgd(mm) (0) 5951da177e4SLinus Torvalds #define mm_free_pgd(mm) 5961da177e4SLinus Torvalds #endif /* CONFIG_MMU */ 5971da177e4SLinus Torvalds 598d70f2a14SAndrew Morton static void check_mm(struct mm_struct *mm) 599d70f2a14SAndrew Morton { 600d70f2a14SAndrew Morton int i; 601d70f2a14SAndrew Morton 602d70f2a14SAndrew Morton for (i = 0; i < NR_MM_COUNTERS; i++) { 603d70f2a14SAndrew Morton long x = atomic_long_read(&mm->rss_stat.count[i]); 604d70f2a14SAndrew Morton 605d70f2a14SAndrew Morton if (unlikely(x)) 606d70f2a14SAndrew Morton printk(KERN_ALERT "BUG: Bad rss-counter state " 607d70f2a14SAndrew Morton "mm:%p idx:%d val:%ld\n", mm, i, x); 608d70f2a14SAndrew Morton } 609d70f2a14SAndrew Morton 610d70f2a14SAndrew Morton if (mm_pgtables_bytes(mm)) 611d70f2a14SAndrew Morton pr_alert("BUG: non-zero pgtables_bytes on freeing mm: %ld\n", 612d70f2a14SAndrew Morton mm_pgtables_bytes(mm)); 613d70f2a14SAndrew Morton 614d70f2a14SAndrew Morton #if defined(CONFIG_TRANSPARENT_HUGEPAGE) && !USE_SPLIT_PMD_PTLOCKS 615d70f2a14SAndrew Morton VM_BUG_ON_MM(mm->pmd_huge_pte, mm); 616d70f2a14SAndrew Morton #endif 617d70f2a14SAndrew Morton } 6181da177e4SLinus Torvalds 619e94b1766SChristoph Lameter #define allocate_mm() (kmem_cache_alloc(mm_cachep, GFP_KERNEL)) 6201da177e4SLinus Torvalds #define free_mm(mm) (kmem_cache_free(mm_cachep, (mm))) 6211da177e4SLinus Torvalds 622d70f2a14SAndrew Morton /* 623d70f2a14SAndrew Morton * Called when the last reference to the mm 624d70f2a14SAndrew Morton * is dropped: either by a lazy thread or by 625d70f2a14SAndrew Morton * mmput. Free the page directory and the mm. 626d70f2a14SAndrew Morton */ 627d34bc48fSAndrew Morton void __mmdrop(struct mm_struct *mm) 628d70f2a14SAndrew Morton { 629d70f2a14SAndrew Morton BUG_ON(mm == &init_mm); 6303eda69c9SMark Rutland WARN_ON_ONCE(mm == current->mm); 6313eda69c9SMark Rutland WARN_ON_ONCE(mm == current->active_mm); 632d70f2a14SAndrew Morton mm_free_pgd(mm); 633d70f2a14SAndrew Morton destroy_context(mm); 634d70f2a14SAndrew Morton hmm_mm_destroy(mm); 635d70f2a14SAndrew Morton mmu_notifier_mm_destroy(mm); 636d70f2a14SAndrew Morton check_mm(mm); 637d70f2a14SAndrew Morton put_user_ns(mm->user_ns); 638d70f2a14SAndrew Morton free_mm(mm); 639d70f2a14SAndrew Morton } 640d34bc48fSAndrew Morton EXPORT_SYMBOL_GPL(__mmdrop); 641d70f2a14SAndrew Morton 642d70f2a14SAndrew Morton static void mmdrop_async_fn(struct work_struct *work) 643d70f2a14SAndrew Morton { 644d70f2a14SAndrew Morton struct mm_struct *mm; 645d70f2a14SAndrew Morton 646d70f2a14SAndrew Morton mm = container_of(work, struct mm_struct, async_put_work); 647d70f2a14SAndrew Morton __mmdrop(mm); 648d70f2a14SAndrew Morton } 649d70f2a14SAndrew Morton 650d70f2a14SAndrew Morton static void mmdrop_async(struct mm_struct *mm) 651d70f2a14SAndrew Morton { 652d70f2a14SAndrew Morton if (unlikely(atomic_dec_and_test(&mm->mm_count))) { 653d70f2a14SAndrew Morton INIT_WORK(&mm->async_put_work, mmdrop_async_fn); 654d70f2a14SAndrew Morton schedule_work(&mm->async_put_work); 655d70f2a14SAndrew Morton } 656d70f2a14SAndrew Morton } 657d70f2a14SAndrew Morton 6581da177e4SLinus Torvalds static inline void free_signal_struct(struct signal_struct *sig) 6591da177e4SLinus Torvalds { 6601da177e4SLinus Torvalds taskstats_tgid_free(sig); 6611da177e4SLinus Torvalds sched_autogroup_exit(sig); 6621da177e4SLinus Torvalds /* 6631da177e4SLinus Torvalds * __mmdrop is not safe to call from softirq context on x86 due to 6641da177e4SLinus Torvalds * pgd_dtor so postpone it to the async context 6651da177e4SLinus Torvalds */ 6661da177e4SLinus Torvalds if (sig->oom_mm) 6671da177e4SLinus Torvalds mmdrop_async(sig->oom_mm); 6681da177e4SLinus Torvalds kmem_cache_free(signal_cachep, sig); 6691da177e4SLinus Torvalds } 6701da177e4SLinus Torvalds 6711da177e4SLinus Torvalds static inline void put_signal_struct(struct signal_struct *sig) 6721da177e4SLinus Torvalds { 6731da177e4SLinus Torvalds if (atomic_dec_and_test(&sig->sigcnt)) 6741da177e4SLinus Torvalds free_signal_struct(sig); 6751da177e4SLinus Torvalds } 6761da177e4SLinus Torvalds 6771da177e4SLinus Torvalds void __put_task_struct(struct task_struct *tsk) 6781da177e4SLinus Torvalds { 6791da177e4SLinus Torvalds WARN_ON(!tsk->exit_state); 6801da177e4SLinus Torvalds WARN_ON(atomic_read(&tsk->usage)); 6811da177e4SLinus Torvalds WARN_ON(tsk == current); 6821da177e4SLinus Torvalds 6831da177e4SLinus Torvalds cgroup_free(tsk); 6841da177e4SLinus Torvalds task_numa_free(tsk); 6851da177e4SLinus Torvalds security_task_free(tsk); 6861da177e4SLinus Torvalds exit_creds(tsk); 6871da177e4SLinus Torvalds delayacct_tsk_free(tsk); 6881da177e4SLinus Torvalds put_signal_struct(tsk->signal); 6891da177e4SLinus Torvalds 6901da177e4SLinus Torvalds if (!profile_handoff_task(tsk)) 6911da177e4SLinus Torvalds free_task(tsk); 6921da177e4SLinus Torvalds } 6931da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(__put_task_struct); 6941da177e4SLinus Torvalds 6951da177e4SLinus Torvalds void __init __weak arch_task_cache_init(void) { } 6961da177e4SLinus Torvalds 6971da177e4SLinus Torvalds /* 6981da177e4SLinus Torvalds * set_max_threads 6991da177e4SLinus Torvalds */ 7001da177e4SLinus Torvalds static void set_max_threads(unsigned int max_threads_suggested) 7011da177e4SLinus Torvalds { 7021da177e4SLinus Torvalds u64 threads; 7031da177e4SLinus Torvalds 7041da177e4SLinus Torvalds /* 7051da177e4SLinus Torvalds * The number of threads shall be limited such that the thread 7061da177e4SLinus Torvalds * structures may only consume a small part of the available memory. 7071da177e4SLinus Torvalds */ 7081da177e4SLinus Torvalds if (fls64(totalram_pages) + fls64(PAGE_SIZE) > 64) 7091da177e4SLinus Torvalds threads = MAX_THREADS; 7101da177e4SLinus Torvalds else 7111da177e4SLinus Torvalds threads = div64_u64((u64) totalram_pages * (u64) PAGE_SIZE, 7121da177e4SLinus Torvalds (u64) THREAD_SIZE * 8UL); 7131da177e4SLinus Torvalds 7141da177e4SLinus Torvalds if (threads > max_threads_suggested) 7151da177e4SLinus Torvalds threads = max_threads_suggested; 7161da177e4SLinus Torvalds 7171da177e4SLinus Torvalds max_threads = clamp_t(u64, threads, MIN_THREADS, MAX_THREADS); 7181da177e4SLinus Torvalds } 7191da177e4SLinus Torvalds 7201da177e4SLinus Torvalds #ifdef CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT 7211da177e4SLinus Torvalds /* Initialized by the architecture: */ 7221da177e4SLinus Torvalds int arch_task_struct_size __read_mostly; 7231da177e4SLinus Torvalds #endif 7241da177e4SLinus Torvalds 7255905429aSKees Cook static void task_struct_whitelist(unsigned long *offset, unsigned long *size) 7265905429aSKees Cook { 7275905429aSKees Cook /* Fetch thread_struct whitelist for the architecture. */ 7285905429aSKees Cook arch_thread_struct_whitelist(offset, size); 7295905429aSKees Cook 7305905429aSKees Cook /* 7315905429aSKees Cook * Handle zero-sized whitelist or empty thread_struct, otherwise 7325905429aSKees Cook * adjust offset to position of thread_struct in task_struct. 7335905429aSKees Cook */ 7345905429aSKees Cook if (unlikely(*size == 0)) 7355905429aSKees Cook *offset = 0; 7365905429aSKees Cook else 7375905429aSKees Cook *offset += offsetof(struct task_struct, thread); 7385905429aSKees Cook } 7395905429aSKees Cook 7401da177e4SLinus Torvalds void __init fork_init(void) 7411da177e4SLinus Torvalds { 7421da177e4SLinus Torvalds int i; 7431da177e4SLinus Torvalds #ifndef CONFIG_ARCH_TASK_STRUCT_ALLOCATOR 7441da177e4SLinus Torvalds #ifndef ARCH_MIN_TASKALIGN 7451da177e4SLinus Torvalds #define ARCH_MIN_TASKALIGN 0 7461da177e4SLinus Torvalds #endif 7471da177e4SLinus Torvalds int align = max_t(int, L1_CACHE_BYTES, ARCH_MIN_TASKALIGN); 7485905429aSKees Cook unsigned long useroffset, usersize; 7491da177e4SLinus Torvalds 7501da177e4SLinus Torvalds /* create a slab on which task_structs can be allocated */ 7515905429aSKees Cook task_struct_whitelist(&useroffset, &usersize); 7525905429aSKees Cook task_struct_cachep = kmem_cache_create_usercopy("task_struct", 7531da177e4SLinus Torvalds arch_task_struct_size, align, 7545905429aSKees Cook SLAB_PANIC|SLAB_ACCOUNT, 7555905429aSKees Cook useroffset, usersize, NULL); 7561da177e4SLinus Torvalds #endif 7571da177e4SLinus Torvalds 7581da177e4SLinus Torvalds /* do the arch specific task caches init */ 7591da177e4SLinus Torvalds arch_task_cache_init(); 7601da177e4SLinus Torvalds 7611da177e4SLinus Torvalds set_max_threads(MAX_THREADS); 7621da177e4SLinus Torvalds 7631da177e4SLinus Torvalds init_task.signal->rlim[RLIMIT_NPROC].rlim_cur = max_threads/2; 7641da177e4SLinus Torvalds init_task.signal->rlim[RLIMIT_NPROC].rlim_max = max_threads/2; 7651da177e4SLinus Torvalds init_task.signal->rlim[RLIMIT_SIGPENDING] = 7661da177e4SLinus Torvalds init_task.signal->rlim[RLIMIT_NPROC]; 7671da177e4SLinus Torvalds 7681da177e4SLinus Torvalds for (i = 0; i < UCOUNT_COUNTS; i++) { 7691da177e4SLinus Torvalds init_user_ns.ucount_max[i] = max_threads/2; 7701da177e4SLinus Torvalds } 7711da177e4SLinus Torvalds 7721da177e4SLinus Torvalds #ifdef CONFIG_VMAP_STACK 7731da177e4SLinus Torvalds cpuhp_setup_state(CPUHP_BP_PREPARE_DYN, "fork:vm_stack_cache", 7741da177e4SLinus Torvalds NULL, free_vm_stack_cache); 7751da177e4SLinus Torvalds #endif 7761da177e4SLinus Torvalds 7771da177e4SLinus Torvalds lockdep_init_task(&init_task); 7781da177e4SLinus Torvalds } 7791da177e4SLinus Torvalds 7801da177e4SLinus Torvalds int __weak arch_dup_task_struct(struct task_struct *dst, 7811da177e4SLinus Torvalds struct task_struct *src) 7821da177e4SLinus Torvalds { 7831da177e4SLinus Torvalds *dst = *src; 7841da177e4SLinus Torvalds return 0; 7851da177e4SLinus Torvalds } 7861da177e4SLinus Torvalds 7871da177e4SLinus Torvalds void set_task_stack_end_magic(struct task_struct *tsk) 7881da177e4SLinus Torvalds { 7891da177e4SLinus Torvalds unsigned long *stackend; 7901da177e4SLinus Torvalds 7911da177e4SLinus Torvalds stackend = end_of_stack(tsk); 7921da177e4SLinus Torvalds *stackend = STACK_END_MAGIC; /* for overflow detection */ 7931da177e4SLinus Torvalds } 7941da177e4SLinus Torvalds 7951da177e4SLinus Torvalds static struct task_struct *dup_task_struct(struct task_struct *orig, int node) 7961da177e4SLinus Torvalds { 7971da177e4SLinus Torvalds struct task_struct *tsk; 7981da177e4SLinus Torvalds unsigned long *stack; 7991da177e4SLinus Torvalds struct vm_struct *stack_vm_area; 8001da177e4SLinus Torvalds int err; 8011da177e4SLinus Torvalds 8021da177e4SLinus Torvalds if (node == NUMA_NO_NODE) 8031da177e4SLinus Torvalds node = tsk_fork_get_node(orig); 8041da177e4SLinus Torvalds tsk = alloc_task_struct_node(node); 8051da177e4SLinus Torvalds if (!tsk) 8061da177e4SLinus Torvalds return NULL; 8071da177e4SLinus Torvalds 8081da177e4SLinus Torvalds stack = alloc_thread_stack_node(tsk, node); 8091da177e4SLinus Torvalds if (!stack) 8101da177e4SLinus Torvalds goto free_tsk; 8111da177e4SLinus Torvalds 8121da177e4SLinus Torvalds stack_vm_area = task_stack_vm_area(tsk); 8131da177e4SLinus Torvalds 8141da177e4SLinus Torvalds err = arch_dup_task_struct(tsk, orig); 8151da177e4SLinus Torvalds 8161da177e4SLinus Torvalds /* 8171da177e4SLinus Torvalds * arch_dup_task_struct() clobbers the stack-related fields. Make 8181da177e4SLinus Torvalds * sure they're properly initialized before using any stack-related 8191da177e4SLinus Torvalds * functions again. 8201da177e4SLinus Torvalds */ 8211da177e4SLinus Torvalds tsk->stack = stack; 8221da177e4SLinus Torvalds #ifdef CONFIG_VMAP_STACK 8231da177e4SLinus Torvalds tsk->stack_vm_area = stack_vm_area; 8241da177e4SLinus Torvalds #endif 8251da177e4SLinus Torvalds #ifdef CONFIG_THREAD_INFO_IN_TASK 8261da177e4SLinus Torvalds atomic_set(&tsk->stack_refcount, 1); 8271da177e4SLinus Torvalds #endif 8281da177e4SLinus Torvalds 8291da177e4SLinus Torvalds if (err) 8301da177e4SLinus Torvalds goto free_stack; 8311da177e4SLinus Torvalds 8321da177e4SLinus Torvalds #ifdef CONFIG_SECCOMP 8331da177e4SLinus Torvalds /* 8341da177e4SLinus Torvalds * We must handle setting up seccomp filters once we're under 8351da177e4SLinus Torvalds * the sighand lock in case orig has changed between now and 8361da177e4SLinus Torvalds * then. Until then, filter must be NULL to avoid messing up 8371da177e4SLinus Torvalds * the usage counts on the error path calling free_task. 8381da177e4SLinus Torvalds */ 8391da177e4SLinus Torvalds tsk->seccomp.filter = NULL; 8401da177e4SLinus Torvalds #endif 8411da177e4SLinus Torvalds 8421da177e4SLinus Torvalds setup_thread_stack(tsk, orig); 8431da177e4SLinus Torvalds clear_user_return_notifier(tsk); 8441da177e4SLinus Torvalds clear_tsk_need_resched(tsk); 8451da177e4SLinus Torvalds set_task_stack_end_magic(tsk); 8461da177e4SLinus Torvalds 847050e9baaSLinus Torvalds #ifdef CONFIG_STACKPROTECTOR 8481da177e4SLinus Torvalds tsk->stack_canary = get_random_canary(); 8491da177e4SLinus Torvalds #endif 8501da177e4SLinus Torvalds 8511da177e4SLinus Torvalds /* 8521da177e4SLinus Torvalds * One for us, one for whoever does the "release_task()" (usually 8531da177e4SLinus Torvalds * parent) 8541da177e4SLinus Torvalds */ 8551da177e4SLinus Torvalds atomic_set(&tsk->usage, 2); 8561da177e4SLinus Torvalds #ifdef CONFIG_BLK_DEV_IO_TRACE 8571da177e4SLinus Torvalds tsk->btrace_seq = 0; 8581da177e4SLinus Torvalds #endif 8591da177e4SLinus Torvalds tsk->splice_pipe = NULL; 8601da177e4SLinus Torvalds tsk->task_frag.page = NULL; 8611da177e4SLinus Torvalds tsk->wake_q.next = NULL; 8621da177e4SLinus Torvalds 8631da177e4SLinus Torvalds account_kernel_stack(tsk, 1); 8641da177e4SLinus Torvalds 8651da177e4SLinus Torvalds kcov_task_init(tsk); 8661da177e4SLinus Torvalds 8671da177e4SLinus Torvalds #ifdef CONFIG_FAULT_INJECTION 8681da177e4SLinus Torvalds tsk->fail_nth = 0; 8691da177e4SLinus Torvalds #endif 8701da177e4SLinus Torvalds 8712c323017SJosef Bacik #ifdef CONFIG_BLK_CGROUP 8722c323017SJosef Bacik tsk->throttle_queue = NULL; 8732c323017SJosef Bacik tsk->use_memdelay = 0; 8742c323017SJosef Bacik #endif 8752c323017SJosef Bacik 876d46eb14bSShakeel Butt #ifdef CONFIG_MEMCG 877d46eb14bSShakeel Butt tsk->active_memcg = NULL; 878d46eb14bSShakeel Butt #endif 8791da177e4SLinus Torvalds return tsk; 8801da177e4SLinus Torvalds 8811da177e4SLinus Torvalds free_stack: 8821da177e4SLinus Torvalds free_thread_stack(tsk); 8831da177e4SLinus Torvalds free_tsk: 8841da177e4SLinus Torvalds free_task_struct(tsk); 8851da177e4SLinus Torvalds return NULL; 8861da177e4SLinus Torvalds } 8871da177e4SLinus Torvalds 8881da177e4SLinus Torvalds __cacheline_aligned_in_smp DEFINE_SPINLOCK(mmlist_lock); 8891da177e4SLinus Torvalds 8904cb0e11bSHidehiro Kawai static unsigned long default_dump_filter = MMF_DUMP_FILTER_DEFAULT; 8914cb0e11bSHidehiro Kawai 8924cb0e11bSHidehiro Kawai static int __init coredump_filter_setup(char *s) 8934cb0e11bSHidehiro Kawai { 8944cb0e11bSHidehiro Kawai default_dump_filter = 8954cb0e11bSHidehiro Kawai (simple_strtoul(s, NULL, 0) << MMF_DUMP_FILTER_SHIFT) & 8964cb0e11bSHidehiro Kawai MMF_DUMP_FILTER_MASK; 8974cb0e11bSHidehiro Kawai return 1; 8984cb0e11bSHidehiro Kawai } 8994cb0e11bSHidehiro Kawai 9004cb0e11bSHidehiro Kawai __setup("coredump_filter=", coredump_filter_setup); 9014cb0e11bSHidehiro Kawai 9021da177e4SLinus Torvalds #include <linux/init_task.h> 9031da177e4SLinus Torvalds 904858f0993SAlexey Dobriyan static void mm_init_aio(struct mm_struct *mm) 905858f0993SAlexey Dobriyan { 906858f0993SAlexey Dobriyan #ifdef CONFIG_AIO 907858f0993SAlexey Dobriyan spin_lock_init(&mm->ioctx_lock); 908db446a08SBenjamin LaHaise mm->ioctx_table = NULL; 909858f0993SAlexey Dobriyan #endif 910858f0993SAlexey Dobriyan } 911858f0993SAlexey Dobriyan 91233144e84SVladimir Davydov static void mm_init_owner(struct mm_struct *mm, struct task_struct *p) 91333144e84SVladimir Davydov { 91433144e84SVladimir Davydov #ifdef CONFIG_MEMCG 91533144e84SVladimir Davydov mm->owner = p; 91633144e84SVladimir Davydov #endif 91733144e84SVladimir Davydov } 91833144e84SVladimir Davydov 919355627f5SEric Biggers static void mm_init_uprobes_state(struct mm_struct *mm) 920355627f5SEric Biggers { 921355627f5SEric Biggers #ifdef CONFIG_UPROBES 922355627f5SEric Biggers mm->uprobes_state.xol_area = NULL; 923355627f5SEric Biggers #endif 924355627f5SEric Biggers } 925355627f5SEric Biggers 926bfedb589SEric W. Biederman static struct mm_struct *mm_init(struct mm_struct *mm, struct task_struct *p, 927bfedb589SEric W. Biederman struct user_namespace *user_ns) 9281da177e4SLinus Torvalds { 92941f727fdSVladimir Davydov mm->mmap = NULL; 93041f727fdSVladimir Davydov mm->mm_rb = RB_ROOT; 93141f727fdSVladimir Davydov mm->vmacache_seqnum = 0; 9321da177e4SLinus Torvalds atomic_set(&mm->mm_users, 1); 9331da177e4SLinus Torvalds atomic_set(&mm->mm_count, 1); 9341da177e4SLinus Torvalds init_rwsem(&mm->mmap_sem); 9351da177e4SLinus Torvalds INIT_LIST_HEAD(&mm->mmlist); 936999d9fc1SOleg Nesterov mm->core_state = NULL; 937af5b0f6aSKirill A. Shutemov mm_pgtables_bytes_init(mm); 93841f727fdSVladimir Davydov mm->map_count = 0; 93941f727fdSVladimir Davydov mm->locked_vm = 0; 940ce65cefaSVladimir Davydov mm->pinned_vm = 0; 941d559db08SKAMEZAWA Hiroyuki memset(&mm->rss_stat, 0, sizeof(mm->rss_stat)); 9421da177e4SLinus Torvalds spin_lock_init(&mm->page_table_lock); 94388aa7cc6SYang Shi spin_lock_init(&mm->arg_lock); 94441f727fdSVladimir Davydov mm_init_cpumask(mm); 945858f0993SAlexey Dobriyan mm_init_aio(mm); 946cf475ad2SBalbir Singh mm_init_owner(mm, p); 9472b7e8665SEric Biggers RCU_INIT_POINTER(mm->exe_file, NULL); 94841f727fdSVladimir Davydov mmu_notifier_mm_init(mm); 949133ff0eaSJérôme Glisse hmm_mm_init(mm); 95016af97dcSNadav Amit init_tlb_flush_pending(mm); 95141f727fdSVladimir Davydov #if defined(CONFIG_TRANSPARENT_HUGEPAGE) && !USE_SPLIT_PMD_PTLOCKS 95241f727fdSVladimir Davydov mm->pmd_huge_pte = NULL; 95341f727fdSVladimir Davydov #endif 954355627f5SEric Biggers mm_init_uprobes_state(mm); 9551da177e4SLinus Torvalds 956a0715cc2SAlex Thorlton if (current->mm) { 957a0715cc2SAlex Thorlton mm->flags = current->mm->flags & MMF_INIT_MASK; 958a0715cc2SAlex Thorlton mm->def_flags = current->mm->def_flags & VM_INIT_DEF_MASK; 959a0715cc2SAlex Thorlton } else { 960a0715cc2SAlex Thorlton mm->flags = default_dump_filter; 9611da177e4SLinus Torvalds mm->def_flags = 0; 962a0715cc2SAlex Thorlton } 963a0715cc2SAlex Thorlton 96441f727fdSVladimir Davydov if (mm_alloc_pgd(mm)) 96541f727fdSVladimir Davydov goto fail_nopgd; 96678fb7466SPavel Emelianov 96741f727fdSVladimir Davydov if (init_new_context(p, mm)) 96841f727fdSVladimir Davydov goto fail_nocontext; 96941f727fdSVladimir Davydov 970bfedb589SEric W. Biederman mm->user_ns = get_user_ns(user_ns); 97141f727fdSVladimir Davydov return mm; 97241f727fdSVladimir Davydov 97341f727fdSVladimir Davydov fail_nocontext: 97441f727fdSVladimir Davydov mm_free_pgd(mm); 97541f727fdSVladimir Davydov fail_nopgd: 9761da177e4SLinus Torvalds free_mm(mm); 9771da177e4SLinus Torvalds return NULL; 9781da177e4SLinus Torvalds } 9791da177e4SLinus Torvalds 9801da177e4SLinus Torvalds /* 9811da177e4SLinus Torvalds * Allocate and initialize an mm_struct. 9821da177e4SLinus Torvalds */ 9831da177e4SLinus Torvalds struct mm_struct *mm_alloc(void) 9841da177e4SLinus Torvalds { 9851da177e4SLinus Torvalds struct mm_struct *mm; 9861da177e4SLinus Torvalds 9871da177e4SLinus Torvalds mm = allocate_mm(); 988de03c72cSKOSAKI Motohiro if (!mm) 989de03c72cSKOSAKI Motohiro return NULL; 990de03c72cSKOSAKI Motohiro 9911da177e4SLinus Torvalds memset(mm, 0, sizeof(*mm)); 992bfedb589SEric W. Biederman return mm_init(mm, current, current_user_ns()); 9931da177e4SLinus Torvalds } 9941da177e4SLinus Torvalds 995ec8d7c14SMichal Hocko static inline void __mmput(struct mm_struct *mm) 9961da177e4SLinus Torvalds { 997ec8d7c14SMichal Hocko VM_BUG_ON(atomic_read(&mm->mm_users)); 9980ae26f1bSAndrew Morton 999d4b3b638SSrikar Dronamraju uprobe_clear_state(mm); 10001da177e4SLinus Torvalds exit_aio(mm); 10011c2fb7a4SAndrea Arcangeli ksm_exit(mm); 1002ba76149fSAndrea Arcangeli khugepaged_exit(mm); /* must run before exit_mmap */ 10031da177e4SLinus Torvalds exit_mmap(mm); 10046fcb52a5SAaron Lu mm_put_huge_zero_page(mm); 1005925d1c40SMatt Helsley set_mm_exe_file(mm, NULL); 10061da177e4SLinus Torvalds if (!list_empty(&mm->mmlist)) { 10071da177e4SLinus Torvalds spin_lock(&mmlist_lock); 10081da177e4SLinus Torvalds list_del(&mm->mmlist); 10091da177e4SLinus Torvalds spin_unlock(&mmlist_lock); 10101da177e4SLinus Torvalds } 1011801460d0SHiroshi Shimamoto if (mm->binfmt) 1012801460d0SHiroshi Shimamoto module_put(mm->binfmt->module); 10131da177e4SLinus Torvalds mmdrop(mm); 10141da177e4SLinus Torvalds } 1015ec8d7c14SMichal Hocko 1016ec8d7c14SMichal Hocko /* 1017ec8d7c14SMichal Hocko * Decrement the use count and release all resources for an mm. 1018ec8d7c14SMichal Hocko */ 1019ec8d7c14SMichal Hocko void mmput(struct mm_struct *mm) 1020ec8d7c14SMichal Hocko { 1021ec8d7c14SMichal Hocko might_sleep(); 1022ec8d7c14SMichal Hocko 1023ec8d7c14SMichal Hocko if (atomic_dec_and_test(&mm->mm_users)) 1024ec8d7c14SMichal Hocko __mmput(mm); 10251da177e4SLinus Torvalds } 10261da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(mmput); 10271da177e4SLinus Torvalds 1028a1b2289cSSherry Yang #ifdef CONFIG_MMU 1029a1b2289cSSherry Yang static void mmput_async_fn(struct work_struct *work) 1030a1b2289cSSherry Yang { 1031a1b2289cSSherry Yang struct mm_struct *mm = container_of(work, struct mm_struct, 1032a1b2289cSSherry Yang async_put_work); 1033a1b2289cSSherry Yang 1034a1b2289cSSherry Yang __mmput(mm); 1035a1b2289cSSherry Yang } 1036a1b2289cSSherry Yang 1037a1b2289cSSherry Yang void mmput_async(struct mm_struct *mm) 1038a1b2289cSSherry Yang { 1039a1b2289cSSherry Yang if (atomic_dec_and_test(&mm->mm_users)) { 1040a1b2289cSSherry Yang INIT_WORK(&mm->async_put_work, mmput_async_fn); 1041a1b2289cSSherry Yang schedule_work(&mm->async_put_work); 1042a1b2289cSSherry Yang } 1043a1b2289cSSherry Yang } 1044a1b2289cSSherry Yang #endif 1045a1b2289cSSherry Yang 104690f31d0eSKonstantin Khlebnikov /** 104790f31d0eSKonstantin Khlebnikov * set_mm_exe_file - change a reference to the mm's executable file 104890f31d0eSKonstantin Khlebnikov * 104990f31d0eSKonstantin Khlebnikov * This changes mm's executable file (shown as symlink /proc/[pid]/exe). 105090f31d0eSKonstantin Khlebnikov * 10516e399cd1SDavidlohr Bueso * Main users are mmput() and sys_execve(). Callers prevent concurrent 10526e399cd1SDavidlohr Bueso * invocations: in mmput() nobody alive left, in execve task is single 10536e399cd1SDavidlohr Bueso * threaded. sys_prctl(PR_SET_MM_MAP/EXE_FILE) also needs to set the 10546e399cd1SDavidlohr Bueso * mm->exe_file, but does so without using set_mm_exe_file() in order 10556e399cd1SDavidlohr Bueso * to do avoid the need for any locks. 105690f31d0eSKonstantin Khlebnikov */ 105738646013SJiri Slaby void set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file) 105838646013SJiri Slaby { 10596e399cd1SDavidlohr Bueso struct file *old_exe_file; 10606e399cd1SDavidlohr Bueso 10616e399cd1SDavidlohr Bueso /* 10626e399cd1SDavidlohr Bueso * It is safe to dereference the exe_file without RCU as 10636e399cd1SDavidlohr Bueso * this function is only called if nobody else can access 10646e399cd1SDavidlohr Bueso * this mm -- see comment above for justification. 10656e399cd1SDavidlohr Bueso */ 10666e399cd1SDavidlohr Bueso old_exe_file = rcu_dereference_raw(mm->exe_file); 106790f31d0eSKonstantin Khlebnikov 106838646013SJiri Slaby if (new_exe_file) 106938646013SJiri Slaby get_file(new_exe_file); 107090f31d0eSKonstantin Khlebnikov rcu_assign_pointer(mm->exe_file, new_exe_file); 107190f31d0eSKonstantin Khlebnikov if (old_exe_file) 107290f31d0eSKonstantin Khlebnikov fput(old_exe_file); 107338646013SJiri Slaby } 107438646013SJiri Slaby 107590f31d0eSKonstantin Khlebnikov /** 107690f31d0eSKonstantin Khlebnikov * get_mm_exe_file - acquire a reference to the mm's executable file 107790f31d0eSKonstantin Khlebnikov * 107890f31d0eSKonstantin Khlebnikov * Returns %NULL if mm has no associated executable file. 107990f31d0eSKonstantin Khlebnikov * User must release file via fput(). 108090f31d0eSKonstantin Khlebnikov */ 108138646013SJiri Slaby struct file *get_mm_exe_file(struct mm_struct *mm) 108238646013SJiri Slaby { 108338646013SJiri Slaby struct file *exe_file; 108438646013SJiri Slaby 108590f31d0eSKonstantin Khlebnikov rcu_read_lock(); 108690f31d0eSKonstantin Khlebnikov exe_file = rcu_dereference(mm->exe_file); 108790f31d0eSKonstantin Khlebnikov if (exe_file && !get_file_rcu(exe_file)) 108890f31d0eSKonstantin Khlebnikov exe_file = NULL; 108990f31d0eSKonstantin Khlebnikov rcu_read_unlock(); 109038646013SJiri Slaby return exe_file; 109138646013SJiri Slaby } 109211163348SDavidlohr Bueso EXPORT_SYMBOL(get_mm_exe_file); 109338646013SJiri Slaby 10941da177e4SLinus Torvalds /** 1095cd81a917SMateusz Guzik * get_task_exe_file - acquire a reference to the task's executable file 1096cd81a917SMateusz Guzik * 1097cd81a917SMateusz Guzik * Returns %NULL if task's mm (if any) has no associated executable file or 1098cd81a917SMateusz Guzik * this is a kernel thread with borrowed mm (see the comment above get_task_mm). 1099cd81a917SMateusz Guzik * User must release file via fput(). 1100cd81a917SMateusz Guzik */ 1101cd81a917SMateusz Guzik struct file *get_task_exe_file(struct task_struct *task) 1102cd81a917SMateusz Guzik { 1103cd81a917SMateusz Guzik struct file *exe_file = NULL; 1104cd81a917SMateusz Guzik struct mm_struct *mm; 1105cd81a917SMateusz Guzik 1106cd81a917SMateusz Guzik task_lock(task); 1107cd81a917SMateusz Guzik mm = task->mm; 1108cd81a917SMateusz Guzik if (mm) { 1109cd81a917SMateusz Guzik if (!(task->flags & PF_KTHREAD)) 1110cd81a917SMateusz Guzik exe_file = get_mm_exe_file(mm); 1111cd81a917SMateusz Guzik } 1112cd81a917SMateusz Guzik task_unlock(task); 1113cd81a917SMateusz Guzik return exe_file; 1114cd81a917SMateusz Guzik } 1115cd81a917SMateusz Guzik EXPORT_SYMBOL(get_task_exe_file); 1116cd81a917SMateusz Guzik 1117cd81a917SMateusz Guzik /** 11181da177e4SLinus Torvalds * get_task_mm - acquire a reference to the task's mm 11191da177e4SLinus Torvalds * 1120246bb0b1SOleg Nesterov * Returns %NULL if the task has no mm. Checks PF_KTHREAD (meaning 11211da177e4SLinus Torvalds * this kernel workthread has transiently adopted a user mm with use_mm, 11221da177e4SLinus Torvalds * to do its AIO) is not set and if so returns a reference to it, after 11231da177e4SLinus Torvalds * bumping up the use count. User must release the mm via mmput() 11241da177e4SLinus Torvalds * after use. Typically used by /proc and ptrace. 11251da177e4SLinus Torvalds */ 11261da177e4SLinus Torvalds struct mm_struct *get_task_mm(struct task_struct *task) 11271da177e4SLinus Torvalds { 11281da177e4SLinus Torvalds struct mm_struct *mm; 11291da177e4SLinus Torvalds 11301da177e4SLinus Torvalds task_lock(task); 11311da177e4SLinus Torvalds mm = task->mm; 11321da177e4SLinus Torvalds if (mm) { 1133246bb0b1SOleg Nesterov if (task->flags & PF_KTHREAD) 11341da177e4SLinus Torvalds mm = NULL; 11351da177e4SLinus Torvalds else 11363fce371bSVegard Nossum mmget(mm); 11371da177e4SLinus Torvalds } 11381da177e4SLinus Torvalds task_unlock(task); 11391da177e4SLinus Torvalds return mm; 11401da177e4SLinus Torvalds } 11411da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(get_task_mm); 11421da177e4SLinus Torvalds 11438cdb878dSChristopher Yeoh struct mm_struct *mm_access(struct task_struct *task, unsigned int mode) 11448cdb878dSChristopher Yeoh { 11458cdb878dSChristopher Yeoh struct mm_struct *mm; 11468cdb878dSChristopher Yeoh int err; 11478cdb878dSChristopher Yeoh 11488cdb878dSChristopher Yeoh err = mutex_lock_killable(&task->signal->cred_guard_mutex); 11498cdb878dSChristopher Yeoh if (err) 11508cdb878dSChristopher Yeoh return ERR_PTR(err); 11518cdb878dSChristopher Yeoh 11528cdb878dSChristopher Yeoh mm = get_task_mm(task); 11538cdb878dSChristopher Yeoh if (mm && mm != current->mm && 11548cdb878dSChristopher Yeoh !ptrace_may_access(task, mode)) { 11558cdb878dSChristopher Yeoh mmput(mm); 11568cdb878dSChristopher Yeoh mm = ERR_PTR(-EACCES); 11578cdb878dSChristopher Yeoh } 11588cdb878dSChristopher Yeoh mutex_unlock(&task->signal->cred_guard_mutex); 11598cdb878dSChristopher Yeoh 11608cdb878dSChristopher Yeoh return mm; 11618cdb878dSChristopher Yeoh } 11628cdb878dSChristopher Yeoh 116357b59c4aSOleg Nesterov static void complete_vfork_done(struct task_struct *tsk) 1164c415c3b4SOleg Nesterov { 1165d68b46feSOleg Nesterov struct completion *vfork; 1166c415c3b4SOleg Nesterov 1167d68b46feSOleg Nesterov task_lock(tsk); 1168d68b46feSOleg Nesterov vfork = tsk->vfork_done; 1169d68b46feSOleg Nesterov if (likely(vfork)) { 1170c415c3b4SOleg Nesterov tsk->vfork_done = NULL; 1171d68b46feSOleg Nesterov complete(vfork); 1172d68b46feSOleg Nesterov } 1173d68b46feSOleg Nesterov task_unlock(tsk); 1174d68b46feSOleg Nesterov } 1175d68b46feSOleg Nesterov 1176d68b46feSOleg Nesterov static int wait_for_vfork_done(struct task_struct *child, 1177d68b46feSOleg Nesterov struct completion *vfork) 1178d68b46feSOleg Nesterov { 1179d68b46feSOleg Nesterov int killed; 1180d68b46feSOleg Nesterov 1181d68b46feSOleg Nesterov freezer_do_not_count(); 1182d68b46feSOleg Nesterov killed = wait_for_completion_killable(vfork); 1183d68b46feSOleg Nesterov freezer_count(); 1184d68b46feSOleg Nesterov 1185d68b46feSOleg Nesterov if (killed) { 1186d68b46feSOleg Nesterov task_lock(child); 1187d68b46feSOleg Nesterov child->vfork_done = NULL; 1188d68b46feSOleg Nesterov task_unlock(child); 1189d68b46feSOleg Nesterov } 1190d68b46feSOleg Nesterov 1191d68b46feSOleg Nesterov put_task_struct(child); 1192d68b46feSOleg Nesterov return killed; 1193c415c3b4SOleg Nesterov } 1194c415c3b4SOleg Nesterov 11951da177e4SLinus Torvalds /* Please note the differences between mmput and mm_release. 11961da177e4SLinus Torvalds * mmput is called whenever we stop holding onto a mm_struct, 11971da177e4SLinus Torvalds * error success whatever. 11981da177e4SLinus Torvalds * 11991da177e4SLinus Torvalds * mm_release is called after a mm_struct has been removed 12001da177e4SLinus Torvalds * from the current process. 12011da177e4SLinus Torvalds * 12021da177e4SLinus Torvalds * This difference is important for error handling, when we 12031da177e4SLinus Torvalds * only half set up a mm_struct for a new process and need to restore 12041da177e4SLinus Torvalds * the old one. Because we mmput the new mm_struct before 12051da177e4SLinus Torvalds * restoring the old one. . . 12061da177e4SLinus Torvalds * Eric Biederman 10 January 1998 12071da177e4SLinus Torvalds */ 12081da177e4SLinus Torvalds void mm_release(struct task_struct *tsk, struct mm_struct *mm) 12091da177e4SLinus Torvalds { 12108141c7f3SLinus Torvalds /* Get rid of any futexes when releasing the mm */ 12118141c7f3SLinus Torvalds #ifdef CONFIG_FUTEX 1212fc6b177dSPeter Zijlstra if (unlikely(tsk->robust_list)) { 12138141c7f3SLinus Torvalds exit_robust_list(tsk); 1214fc6b177dSPeter Zijlstra tsk->robust_list = NULL; 1215fc6b177dSPeter Zijlstra } 12168141c7f3SLinus Torvalds #ifdef CONFIG_COMPAT 1217fc6b177dSPeter Zijlstra if (unlikely(tsk->compat_robust_list)) { 12188141c7f3SLinus Torvalds compat_exit_robust_list(tsk); 1219fc6b177dSPeter Zijlstra tsk->compat_robust_list = NULL; 1220fc6b177dSPeter Zijlstra } 12218141c7f3SLinus Torvalds #endif 1222322a2c10SThomas Gleixner if (unlikely(!list_empty(&tsk->pi_state_list))) 1223322a2c10SThomas Gleixner exit_pi_state_list(tsk); 12248141c7f3SLinus Torvalds #endif 12258141c7f3SLinus Torvalds 12260326f5a9SSrikar Dronamraju uprobe_free_utask(tsk); 12270326f5a9SSrikar Dronamraju 12281da177e4SLinus Torvalds /* Get rid of any cached register state */ 12291da177e4SLinus Torvalds deactivate_mm(tsk, mm); 12301da177e4SLinus Torvalds 1231fec1d011SRoland McGrath /* 1232735f2770SMichal Hocko * Signal userspace if we're not exiting with a core dump 1233735f2770SMichal Hocko * because we want to leave the value intact for debugging 1234735f2770SMichal Hocko * purposes. 1235fec1d011SRoland McGrath */ 12369c8a8228SEric Dumazet if (tsk->clear_child_tid) { 1237735f2770SMichal Hocko if (!(tsk->signal->flags & SIGNAL_GROUP_COREDUMP) && 12389c8a8228SEric Dumazet atomic_read(&mm->mm_users) > 1) { 12391da177e4SLinus Torvalds /* 12401da177e4SLinus Torvalds * We don't check the error code - if userspace has 12411da177e4SLinus Torvalds * not set up a proper pointer then tough luck. 12421da177e4SLinus Torvalds */ 12439c8a8228SEric Dumazet put_user(0, tsk->clear_child_tid); 12442de0db99SDominik Brodowski do_futex(tsk->clear_child_tid, FUTEX_WAKE, 12452de0db99SDominik Brodowski 1, NULL, NULL, 0, 0); 12469c8a8228SEric Dumazet } 12479c8a8228SEric Dumazet tsk->clear_child_tid = NULL; 12481da177e4SLinus Torvalds } 1249f7505d64SKonstantin Khlebnikov 1250f7505d64SKonstantin Khlebnikov /* 1251f7505d64SKonstantin Khlebnikov * All done, finally we can wake up parent and return this mm to him. 1252f7505d64SKonstantin Khlebnikov * Also kthread_stop() uses this completion for synchronization. 1253f7505d64SKonstantin Khlebnikov */ 1254f7505d64SKonstantin Khlebnikov if (tsk->vfork_done) 1255f7505d64SKonstantin Khlebnikov complete_vfork_done(tsk); 12561da177e4SLinus Torvalds } 12571da177e4SLinus Torvalds 1258a0a7ec30SJANAK DESAI /* 1259a0a7ec30SJANAK DESAI * Allocate a new mm structure and copy contents from the 1260a0a7ec30SJANAK DESAI * mm structure of the passed in task structure. 1261a0a7ec30SJANAK DESAI */ 1262ff252c1fSDaeSeok Youn static struct mm_struct *dup_mm(struct task_struct *tsk) 1263a0a7ec30SJANAK DESAI { 1264a0a7ec30SJANAK DESAI struct mm_struct *mm, *oldmm = current->mm; 1265a0a7ec30SJANAK DESAI int err; 1266a0a7ec30SJANAK DESAI 1267a0a7ec30SJANAK DESAI mm = allocate_mm(); 1268a0a7ec30SJANAK DESAI if (!mm) 1269a0a7ec30SJANAK DESAI goto fail_nomem; 1270a0a7ec30SJANAK DESAI 1271a0a7ec30SJANAK DESAI memcpy(mm, oldmm, sizeof(*mm)); 1272a0a7ec30SJANAK DESAI 1273bfedb589SEric W. Biederman if (!mm_init(mm, tsk, mm->user_ns)) 1274a0a7ec30SJANAK DESAI goto fail_nomem; 1275a0a7ec30SJANAK DESAI 1276a0a7ec30SJANAK DESAI err = dup_mmap(mm, oldmm); 1277a0a7ec30SJANAK DESAI if (err) 1278a0a7ec30SJANAK DESAI goto free_pt; 1279a0a7ec30SJANAK DESAI 1280a0a7ec30SJANAK DESAI mm->hiwater_rss = get_mm_rss(mm); 1281a0a7ec30SJANAK DESAI mm->hiwater_vm = mm->total_vm; 1282a0a7ec30SJANAK DESAI 1283801460d0SHiroshi Shimamoto if (mm->binfmt && !try_module_get(mm->binfmt->module)) 1284801460d0SHiroshi Shimamoto goto free_pt; 1285801460d0SHiroshi Shimamoto 1286a0a7ec30SJANAK DESAI return mm; 1287a0a7ec30SJANAK DESAI 1288a0a7ec30SJANAK DESAI free_pt: 1289801460d0SHiroshi Shimamoto /* don't put binfmt in mmput, we haven't got module yet */ 1290801460d0SHiroshi Shimamoto mm->binfmt = NULL; 1291a0a7ec30SJANAK DESAI mmput(mm); 1292a0a7ec30SJANAK DESAI 1293a0a7ec30SJANAK DESAI fail_nomem: 1294a0a7ec30SJANAK DESAI return NULL; 1295a0a7ec30SJANAK DESAI } 1296a0a7ec30SJANAK DESAI 12971da177e4SLinus Torvalds static int copy_mm(unsigned long clone_flags, struct task_struct *tsk) 12981da177e4SLinus Torvalds { 12991da177e4SLinus Torvalds struct mm_struct *mm, *oldmm; 13001da177e4SLinus Torvalds int retval; 13011da177e4SLinus Torvalds 13021da177e4SLinus Torvalds tsk->min_flt = tsk->maj_flt = 0; 13031da177e4SLinus Torvalds tsk->nvcsw = tsk->nivcsw = 0; 130417406b82SMandeep Singh Baines #ifdef CONFIG_DETECT_HUNG_TASK 130517406b82SMandeep Singh Baines tsk->last_switch_count = tsk->nvcsw + tsk->nivcsw; 1306a2e51445SDmitry Vyukov tsk->last_switch_time = 0; 130717406b82SMandeep Singh Baines #endif 13081da177e4SLinus Torvalds 13091da177e4SLinus Torvalds tsk->mm = NULL; 13101da177e4SLinus Torvalds tsk->active_mm = NULL; 13111da177e4SLinus Torvalds 13121da177e4SLinus Torvalds /* 13131da177e4SLinus Torvalds * Are we cloning a kernel thread? 13141da177e4SLinus Torvalds * 13151da177e4SLinus Torvalds * We need to steal a active VM for that.. 13161da177e4SLinus Torvalds */ 13171da177e4SLinus Torvalds oldmm = current->mm; 13181da177e4SLinus Torvalds if (!oldmm) 13191da177e4SLinus Torvalds return 0; 13201da177e4SLinus Torvalds 1321615d6e87SDavidlohr Bueso /* initialize the new vmacache entries */ 1322615d6e87SDavidlohr Bueso vmacache_flush(tsk); 1323615d6e87SDavidlohr Bueso 13241da177e4SLinus Torvalds if (clone_flags & CLONE_VM) { 13253fce371bSVegard Nossum mmget(oldmm); 13261da177e4SLinus Torvalds mm = oldmm; 13271da177e4SLinus Torvalds goto good_mm; 13281da177e4SLinus Torvalds } 13291da177e4SLinus Torvalds 13301da177e4SLinus Torvalds retval = -ENOMEM; 1331a0a7ec30SJANAK DESAI mm = dup_mm(tsk); 13321da177e4SLinus Torvalds if (!mm) 13331da177e4SLinus Torvalds goto fail_nomem; 13341da177e4SLinus Torvalds 13351da177e4SLinus Torvalds good_mm: 13361da177e4SLinus Torvalds tsk->mm = mm; 13371da177e4SLinus Torvalds tsk->active_mm = mm; 13381da177e4SLinus Torvalds return 0; 13391da177e4SLinus Torvalds 13401da177e4SLinus Torvalds fail_nomem: 13411da177e4SLinus Torvalds return retval; 13421da177e4SLinus Torvalds } 13431da177e4SLinus Torvalds 1344a39bc516SAlexey Dobriyan static int copy_fs(unsigned long clone_flags, struct task_struct *tsk) 13451da177e4SLinus Torvalds { 1346498052bbSAl Viro struct fs_struct *fs = current->fs; 13471da177e4SLinus Torvalds if (clone_flags & CLONE_FS) { 1348498052bbSAl Viro /* tsk->fs is already what we want */ 13492a4419b5SNick Piggin spin_lock(&fs->lock); 1350498052bbSAl Viro if (fs->in_exec) { 13512a4419b5SNick Piggin spin_unlock(&fs->lock); 1352498052bbSAl Viro return -EAGAIN; 1353498052bbSAl Viro } 1354498052bbSAl Viro fs->users++; 13552a4419b5SNick Piggin spin_unlock(&fs->lock); 13561da177e4SLinus Torvalds return 0; 13571da177e4SLinus Torvalds } 1358498052bbSAl Viro tsk->fs = copy_fs_struct(fs); 13591da177e4SLinus Torvalds if (!tsk->fs) 13601da177e4SLinus Torvalds return -ENOMEM; 13611da177e4SLinus Torvalds return 0; 13621da177e4SLinus Torvalds } 13631da177e4SLinus Torvalds 1364a016f338SJANAK DESAI static int copy_files(unsigned long clone_flags, struct task_struct *tsk) 1365a016f338SJANAK DESAI { 1366a016f338SJANAK DESAI struct files_struct *oldf, *newf; 1367a016f338SJANAK DESAI int error = 0; 1368a016f338SJANAK DESAI 1369a016f338SJANAK DESAI /* 1370a016f338SJANAK DESAI * A background process may not have any files ... 1371a016f338SJANAK DESAI */ 1372a016f338SJANAK DESAI oldf = current->files; 1373a016f338SJANAK DESAI if (!oldf) 1374a016f338SJANAK DESAI goto out; 1375a016f338SJANAK DESAI 1376a016f338SJANAK DESAI if (clone_flags & CLONE_FILES) { 1377a016f338SJANAK DESAI atomic_inc(&oldf->count); 1378a016f338SJANAK DESAI goto out; 1379a016f338SJANAK DESAI } 1380a016f338SJANAK DESAI 1381a016f338SJANAK DESAI newf = dup_fd(oldf, &error); 1382a016f338SJANAK DESAI if (!newf) 1383a016f338SJANAK DESAI goto out; 1384a016f338SJANAK DESAI 1385a016f338SJANAK DESAI tsk->files = newf; 1386a016f338SJANAK DESAI error = 0; 1387a016f338SJANAK DESAI out: 1388a016f338SJANAK DESAI return error; 1389a016f338SJANAK DESAI } 1390a016f338SJANAK DESAI 1391fadad878SJens Axboe static int copy_io(unsigned long clone_flags, struct task_struct *tsk) 1392fd0928dfSJens Axboe { 1393fd0928dfSJens Axboe #ifdef CONFIG_BLOCK 1394fd0928dfSJens Axboe struct io_context *ioc = current->io_context; 13956e736be7STejun Heo struct io_context *new_ioc; 1396fd0928dfSJens Axboe 1397fd0928dfSJens Axboe if (!ioc) 1398fd0928dfSJens Axboe return 0; 1399fadad878SJens Axboe /* 1400fadad878SJens Axboe * Share io context with parent, if CLONE_IO is set 1401fadad878SJens Axboe */ 1402fadad878SJens Axboe if (clone_flags & CLONE_IO) { 14033d48749dSTejun Heo ioc_task_link(ioc); 14043d48749dSTejun Heo tsk->io_context = ioc; 1405fadad878SJens Axboe } else if (ioprio_valid(ioc->ioprio)) { 14066e736be7STejun Heo new_ioc = get_task_io_context(tsk, GFP_KERNEL, NUMA_NO_NODE); 14076e736be7STejun Heo if (unlikely(!new_ioc)) 1408fd0928dfSJens Axboe return -ENOMEM; 1409fd0928dfSJens Axboe 14106e736be7STejun Heo new_ioc->ioprio = ioc->ioprio; 141111a3122fSTejun Heo put_io_context(new_ioc); 1412fd0928dfSJens Axboe } 1413fd0928dfSJens Axboe #endif 1414fd0928dfSJens Axboe return 0; 1415fd0928dfSJens Axboe } 1416fd0928dfSJens Axboe 1417a39bc516SAlexey Dobriyan static int copy_sighand(unsigned long clone_flags, struct task_struct *tsk) 14181da177e4SLinus Torvalds { 14191da177e4SLinus Torvalds struct sighand_struct *sig; 14201da177e4SLinus Torvalds 142160348802SZhaolei if (clone_flags & CLONE_SIGHAND) { 14221da177e4SLinus Torvalds atomic_inc(¤t->sighand->count); 14231da177e4SLinus Torvalds return 0; 14241da177e4SLinus Torvalds } 14251da177e4SLinus Torvalds sig = kmem_cache_alloc(sighand_cachep, GFP_KERNEL); 1426e56d0903SIngo Molnar rcu_assign_pointer(tsk->sighand, sig); 14271da177e4SLinus Torvalds if (!sig) 14281da177e4SLinus Torvalds return -ENOMEM; 14299d7fb042SPeter Zijlstra 14301da177e4SLinus Torvalds atomic_set(&sig->count, 1); 143106e62a46SJann Horn spin_lock_irq(¤t->sighand->siglock); 14321da177e4SLinus Torvalds memcpy(sig->action, current->sighand->action, sizeof(sig->action)); 143306e62a46SJann Horn spin_unlock_irq(¤t->sighand->siglock); 14341da177e4SLinus Torvalds return 0; 14351da177e4SLinus Torvalds } 14361da177e4SLinus Torvalds 1437a7e5328aSOleg Nesterov void __cleanup_sighand(struct sighand_struct *sighand) 1438c81addc9SOleg Nesterov { 1439d80e731eSOleg Nesterov if (atomic_dec_and_test(&sighand->count)) { 1440d80e731eSOleg Nesterov signalfd_cleanup(sighand); 1441392809b2SOleg Nesterov /* 14425f0d5a3aSPaul E. McKenney * sighand_cachep is SLAB_TYPESAFE_BY_RCU so we can free it 1443392809b2SOleg Nesterov * without an RCU grace period, see __lock_task_sighand(). 1444392809b2SOleg Nesterov */ 1445c81addc9SOleg Nesterov kmem_cache_free(sighand_cachep, sighand); 1446c81addc9SOleg Nesterov } 1447d80e731eSOleg Nesterov } 1448c81addc9SOleg Nesterov 1449b18b6a9cSNicolas Pitre #ifdef CONFIG_POSIX_TIMERS 1450f06febc9SFrank Mayhar /* 1451f06febc9SFrank Mayhar * Initialize POSIX timer handling for a thread group. 1452f06febc9SFrank Mayhar */ 1453f06febc9SFrank Mayhar static void posix_cpu_timers_init_group(struct signal_struct *sig) 1454f06febc9SFrank Mayhar { 145578d7d407SJiri Slaby unsigned long cpu_limit; 145678d7d407SJiri Slaby 1457316c1608SJason Low cpu_limit = READ_ONCE(sig->rlim[RLIMIT_CPU].rlim_cur); 145878d7d407SJiri Slaby if (cpu_limit != RLIM_INFINITY) { 1459ebd7e7fcSFrederic Weisbecker sig->cputime_expires.prof_exp = cpu_limit * NSEC_PER_SEC; 1460d5c373ebSJason Low sig->cputimer.running = true; 14616279a751SOleg Nesterov } 14626279a751SOleg Nesterov 1463f06febc9SFrank Mayhar /* The timer lists. */ 1464f06febc9SFrank Mayhar INIT_LIST_HEAD(&sig->cpu_timers[0]); 1465f06febc9SFrank Mayhar INIT_LIST_HEAD(&sig->cpu_timers[1]); 1466f06febc9SFrank Mayhar INIT_LIST_HEAD(&sig->cpu_timers[2]); 1467f06febc9SFrank Mayhar } 1468b18b6a9cSNicolas Pitre #else 1469b18b6a9cSNicolas Pitre static inline void posix_cpu_timers_init_group(struct signal_struct *sig) { } 1470b18b6a9cSNicolas Pitre #endif 1471f06febc9SFrank Mayhar 1472a39bc516SAlexey Dobriyan static int copy_signal(unsigned long clone_flags, struct task_struct *tsk) 14731da177e4SLinus Torvalds { 14741da177e4SLinus Torvalds struct signal_struct *sig; 14751da177e4SLinus Torvalds 14764ab6c083SOleg Nesterov if (clone_flags & CLONE_THREAD) 1477490dea45SPeter Zijlstra return 0; 14786279a751SOleg Nesterov 1479a56704efSVeaceslav Falico sig = kmem_cache_zalloc(signal_cachep, GFP_KERNEL); 14801da177e4SLinus Torvalds tsk->signal = sig; 14811da177e4SLinus Torvalds if (!sig) 14821da177e4SLinus Torvalds return -ENOMEM; 14831da177e4SLinus Torvalds 1484b3ac022cSOleg Nesterov sig->nr_threads = 1; 14851da177e4SLinus Torvalds atomic_set(&sig->live, 1); 1486b3ac022cSOleg Nesterov atomic_set(&sig->sigcnt, 1); 14870c740d0aSOleg Nesterov 14880c740d0aSOleg Nesterov /* list_add(thread_node, thread_head) without INIT_LIST_HEAD() */ 14890c740d0aSOleg Nesterov sig->thread_head = (struct list_head)LIST_HEAD_INIT(tsk->thread_node); 14900c740d0aSOleg Nesterov tsk->thread_node = (struct list_head)LIST_HEAD_INIT(sig->thread_head); 14910c740d0aSOleg Nesterov 14921da177e4SLinus Torvalds init_waitqueue_head(&sig->wait_chldexit); 1493db51aeccSOleg Nesterov sig->curr_target = tsk; 14941da177e4SLinus Torvalds init_sigpending(&sig->shared_pending); 1495c3ad2c3bSEric W. Biederman INIT_HLIST_HEAD(&sig->multiprocess); 1496e78c3496SRik van Riel seqlock_init(&sig->stats_lock); 14979d7fb042SPeter Zijlstra prev_cputime_init(&sig->prev_cputime); 14981da177e4SLinus Torvalds 1499baa73d9eSNicolas Pitre #ifdef CONFIG_POSIX_TIMERS 1500b18b6a9cSNicolas Pitre INIT_LIST_HEAD(&sig->posix_timers); 1501c9cb2e3dSThomas Gleixner hrtimer_init(&sig->real_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); 15021da177e4SLinus Torvalds sig->real_timer.function = it_real_fn; 1503baa73d9eSNicolas Pitre #endif 15041da177e4SLinus Torvalds 15051da177e4SLinus Torvalds task_lock(current->group_leader); 15061da177e4SLinus Torvalds memcpy(sig->rlim, current->signal->rlim, sizeof sig->rlim); 15071da177e4SLinus Torvalds task_unlock(current->group_leader); 15081da177e4SLinus Torvalds 15096279a751SOleg Nesterov posix_cpu_timers_init_group(sig); 15106279a751SOleg Nesterov 1511522ed776SMiloslav Trmac tty_audit_fork(sig); 15125091faa4SMike Galbraith sched_autogroup_fork(sig); 1513522ed776SMiloslav Trmac 1514a63d83f4SDavid Rientjes sig->oom_score_adj = current->signal->oom_score_adj; 1515dabb16f6SMandeep Singh Baines sig->oom_score_adj_min = current->signal->oom_score_adj_min; 151628b83c51SKOSAKI Motohiro 15179b1bf12dSKOSAKI Motohiro mutex_init(&sig->cred_guard_mutex); 15189b1bf12dSKOSAKI Motohiro 15191da177e4SLinus Torvalds return 0; 15201da177e4SLinus Torvalds } 15211da177e4SLinus Torvalds 1522dbd95212SKees Cook static void copy_seccomp(struct task_struct *p) 1523dbd95212SKees Cook { 1524dbd95212SKees Cook #ifdef CONFIG_SECCOMP 1525dbd95212SKees Cook /* 1526dbd95212SKees Cook * Must be called with sighand->lock held, which is common to 1527dbd95212SKees Cook * all threads in the group. Holding cred_guard_mutex is not 1528dbd95212SKees Cook * needed because this new task is not yet running and cannot 1529dbd95212SKees Cook * be racing exec. 1530dbd95212SKees Cook */ 153169f6a34bSGuenter Roeck assert_spin_locked(¤t->sighand->siglock); 1532dbd95212SKees Cook 1533dbd95212SKees Cook /* Ref-count the new filter user, and assign it. */ 1534dbd95212SKees Cook get_seccomp_filter(current); 1535dbd95212SKees Cook p->seccomp = current->seccomp; 1536dbd95212SKees Cook 1537dbd95212SKees Cook /* 1538dbd95212SKees Cook * Explicitly enable no_new_privs here in case it got set 1539dbd95212SKees Cook * between the task_struct being duplicated and holding the 1540dbd95212SKees Cook * sighand lock. The seccomp state and nnp must be in sync. 1541dbd95212SKees Cook */ 1542dbd95212SKees Cook if (task_no_new_privs(current)) 1543dbd95212SKees Cook task_set_no_new_privs(p); 1544dbd95212SKees Cook 1545dbd95212SKees Cook /* 1546dbd95212SKees Cook * If the parent gained a seccomp mode after copying thread 1547dbd95212SKees Cook * flags and between before we held the sighand lock, we have 1548dbd95212SKees Cook * to manually enable the seccomp thread flag here. 1549dbd95212SKees Cook */ 1550dbd95212SKees Cook if (p->seccomp.mode != SECCOMP_MODE_DISABLED) 1551dbd95212SKees Cook set_tsk_thread_flag(p, TIF_SECCOMP); 1552dbd95212SKees Cook #endif 1553dbd95212SKees Cook } 1554dbd95212SKees Cook 155517da2bd9SHeiko Carstens SYSCALL_DEFINE1(set_tid_address, int __user *, tidptr) 15561da177e4SLinus Torvalds { 15571da177e4SLinus Torvalds current->clear_child_tid = tidptr; 15581da177e4SLinus Torvalds 1559b488893aSPavel Emelyanov return task_pid_vnr(current); 15601da177e4SLinus Torvalds } 15611da177e4SLinus Torvalds 1562a39bc516SAlexey Dobriyan static void rt_mutex_init_task(struct task_struct *p) 156323f78d4aSIngo Molnar { 15641d615482SThomas Gleixner raw_spin_lock_init(&p->pi_lock); 1565e29e175bSZilvinas Valinskas #ifdef CONFIG_RT_MUTEXES 1566a23ba907SDavidlohr Bueso p->pi_waiters = RB_ROOT_CACHED; 1567e96a7705SXunlei Pang p->pi_top_task = NULL; 156823f78d4aSIngo Molnar p->pi_blocked_on = NULL; 156923f78d4aSIngo Molnar #endif 157023f78d4aSIngo Molnar } 157123f78d4aSIngo Molnar 1572b18b6a9cSNicolas Pitre #ifdef CONFIG_POSIX_TIMERS 15731da177e4SLinus Torvalds /* 1574f06febc9SFrank Mayhar * Initialize POSIX timer handling for a single task. 1575f06febc9SFrank Mayhar */ 1576f06febc9SFrank Mayhar static void posix_cpu_timers_init(struct task_struct *tsk) 1577f06febc9SFrank Mayhar { 157864861634SMartin Schwidefsky tsk->cputime_expires.prof_exp = 0; 157964861634SMartin Schwidefsky tsk->cputime_expires.virt_exp = 0; 1580f06febc9SFrank Mayhar tsk->cputime_expires.sched_exp = 0; 1581f06febc9SFrank Mayhar INIT_LIST_HEAD(&tsk->cpu_timers[0]); 1582f06febc9SFrank Mayhar INIT_LIST_HEAD(&tsk->cpu_timers[1]); 1583f06febc9SFrank Mayhar INIT_LIST_HEAD(&tsk->cpu_timers[2]); 1584f06febc9SFrank Mayhar } 1585b18b6a9cSNicolas Pitre #else 1586b18b6a9cSNicolas Pitre static inline void posix_cpu_timers_init(struct task_struct *tsk) { } 1587b18b6a9cSNicolas Pitre #endif 1588f06febc9SFrank Mayhar 15892c470475SEric W. Biederman static inline void init_task_pid_links(struct task_struct *task) 15902c470475SEric W. Biederman { 15912c470475SEric W. Biederman enum pid_type type; 15922c470475SEric W. Biederman 15932c470475SEric W. Biederman for (type = PIDTYPE_PID; type < PIDTYPE_MAX; ++type) { 15942c470475SEric W. Biederman INIT_HLIST_NODE(&task->pid_links[type]); 15952c470475SEric W. Biederman } 15962c470475SEric W. Biederman } 15972c470475SEric W. Biederman 159881907739SOleg Nesterov static inline void 159981907739SOleg Nesterov init_task_pid(struct task_struct *task, enum pid_type type, struct pid *pid) 160081907739SOleg Nesterov { 16012c470475SEric W. Biederman if (type == PIDTYPE_PID) 16022c470475SEric W. Biederman task->thread_pid = pid; 16032c470475SEric W. Biederman else 16042c470475SEric W. Biederman task->signal->pids[type] = pid; 160581907739SOleg Nesterov } 160681907739SOleg Nesterov 16076bfbaa51SIngo Molnar static inline void rcu_copy_process(struct task_struct *p) 16086bfbaa51SIngo Molnar { 16096bfbaa51SIngo Molnar #ifdef CONFIG_PREEMPT_RCU 16106bfbaa51SIngo Molnar p->rcu_read_lock_nesting = 0; 16116bfbaa51SIngo Molnar p->rcu_read_unlock_special.s = 0; 16126bfbaa51SIngo Molnar p->rcu_blocked_node = NULL; 16136bfbaa51SIngo Molnar INIT_LIST_HEAD(&p->rcu_node_entry); 16146bfbaa51SIngo Molnar #endif /* #ifdef CONFIG_PREEMPT_RCU */ 16156bfbaa51SIngo Molnar #ifdef CONFIG_TASKS_RCU 16166bfbaa51SIngo Molnar p->rcu_tasks_holdout = false; 16176bfbaa51SIngo Molnar INIT_LIST_HEAD(&p->rcu_tasks_holdout_list); 16186bfbaa51SIngo Molnar p->rcu_tasks_idle_cpu = -1; 16196bfbaa51SIngo Molnar #endif /* #ifdef CONFIG_TASKS_RCU */ 16206bfbaa51SIngo Molnar } 16216bfbaa51SIngo Molnar 1622f06febc9SFrank Mayhar /* 16231da177e4SLinus Torvalds * This creates a new process as a copy of the old one, 16241da177e4SLinus Torvalds * but does not actually start it yet. 16251da177e4SLinus Torvalds * 16261da177e4SLinus Torvalds * It copies the registers, and all the appropriate 16271da177e4SLinus Torvalds * parts of the process environment (as per the clone 16281da177e4SLinus Torvalds * flags). The actual kick-off is left to the caller. 16291da177e4SLinus Torvalds */ 16300766f788SEmese Revfy static __latent_entropy struct task_struct *copy_process( 16310766f788SEmese Revfy unsigned long clone_flags, 16321da177e4SLinus Torvalds unsigned long stack_start, 16331da177e4SLinus Torvalds unsigned long stack_size, 16341da177e4SLinus Torvalds int __user *child_tidptr, 163509a05394SRoland McGrath struct pid *pid, 16363033f14aSJosh Triplett int trace, 1637725fc629SAndi Kleen unsigned long tls, 1638725fc629SAndi Kleen int node) 16391da177e4SLinus Torvalds { 16401da177e4SLinus Torvalds int retval; 1641a24efe62SMariusz Kozlowski struct task_struct *p; 1642c3ad2c3bSEric W. Biederman struct multiprocess_signals delayed; 16431da177e4SLinus Torvalds 1644667b6094SMarcos Paulo de Souza /* 1645667b6094SMarcos Paulo de Souza * Don't allow sharing the root directory with processes in a different 1646667b6094SMarcos Paulo de Souza * namespace 1647667b6094SMarcos Paulo de Souza */ 16481da177e4SLinus Torvalds if ((clone_flags & (CLONE_NEWNS|CLONE_FS)) == (CLONE_NEWNS|CLONE_FS)) 16491da177e4SLinus Torvalds return ERR_PTR(-EINVAL); 16501da177e4SLinus Torvalds 1651e66eded8SEric W. Biederman if ((clone_flags & (CLONE_NEWUSER|CLONE_FS)) == (CLONE_NEWUSER|CLONE_FS)) 1652e66eded8SEric W. Biederman return ERR_PTR(-EINVAL); 1653e66eded8SEric W. Biederman 16541da177e4SLinus Torvalds /* 16551da177e4SLinus Torvalds * Thread groups must share signals as well, and detached threads 16561da177e4SLinus Torvalds * can only be started up within the thread group. 16571da177e4SLinus Torvalds */ 16581da177e4SLinus Torvalds if ((clone_flags & CLONE_THREAD) && !(clone_flags & CLONE_SIGHAND)) 16591da177e4SLinus Torvalds return ERR_PTR(-EINVAL); 16601da177e4SLinus Torvalds 16611da177e4SLinus Torvalds /* 16621da177e4SLinus Torvalds * Shared signal handlers imply shared VM. By way of the above, 16631da177e4SLinus Torvalds * thread groups also imply shared VM. Blocking this case allows 16641da177e4SLinus Torvalds * for various simplifications in other code. 16651da177e4SLinus Torvalds */ 16661da177e4SLinus Torvalds if ((clone_flags & CLONE_SIGHAND) && !(clone_flags & CLONE_VM)) 16671da177e4SLinus Torvalds return ERR_PTR(-EINVAL); 16681da177e4SLinus Torvalds 1669123be07bSSukadev Bhattiprolu /* 1670123be07bSSukadev Bhattiprolu * Siblings of global init remain as zombies on exit since they are 1671123be07bSSukadev Bhattiprolu * not reaped by their parent (swapper). To solve this and to avoid 1672123be07bSSukadev Bhattiprolu * multi-rooted process trees, prevent global and container-inits 1673123be07bSSukadev Bhattiprolu * from creating siblings. 1674123be07bSSukadev Bhattiprolu */ 1675123be07bSSukadev Bhattiprolu if ((clone_flags & CLONE_PARENT) && 1676123be07bSSukadev Bhattiprolu current->signal->flags & SIGNAL_UNKILLABLE) 1677123be07bSSukadev Bhattiprolu return ERR_PTR(-EINVAL); 1678123be07bSSukadev Bhattiprolu 16798382fcacSEric W. Biederman /* 168040a0d32dSOleg Nesterov * If the new process will be in a different pid or user namespace 1681faf00da5SEric W. Biederman * do not allow it to share a thread group with the forking task. 16828382fcacSEric W. Biederman */ 1683faf00da5SEric W. Biederman if (clone_flags & CLONE_THREAD) { 168440a0d32dSOleg Nesterov if ((clone_flags & (CLONE_NEWUSER | CLONE_NEWPID)) || 168540a0d32dSOleg Nesterov (task_active_pid_ns(current) != 1686c2b1df2eSAndy Lutomirski current->nsproxy->pid_ns_for_children)) 16878382fcacSEric W. Biederman return ERR_PTR(-EINVAL); 168840a0d32dSOleg Nesterov } 16898382fcacSEric W. Biederman 1690c3ad2c3bSEric W. Biederman /* 1691c3ad2c3bSEric W. Biederman * Force any signals received before this point to be delivered 1692c3ad2c3bSEric W. Biederman * before the fork happens. Collect up signals sent to multiple 1693c3ad2c3bSEric W. Biederman * processes that happen during the fork and delay them so that 1694c3ad2c3bSEric W. Biederman * they appear to happen after the fork. 1695c3ad2c3bSEric W. Biederman */ 1696c3ad2c3bSEric W. Biederman sigemptyset(&delayed.signal); 1697c3ad2c3bSEric W. Biederman INIT_HLIST_NODE(&delayed.node); 1698c3ad2c3bSEric W. Biederman 1699c3ad2c3bSEric W. Biederman spin_lock_irq(¤t->sighand->siglock); 1700c3ad2c3bSEric W. Biederman if (!(clone_flags & CLONE_THREAD)) 1701c3ad2c3bSEric W. Biederman hlist_add_head(&delayed.node, ¤t->signal->multiprocess); 1702c3ad2c3bSEric W. Biederman recalc_sigpending(); 1703c3ad2c3bSEric W. Biederman spin_unlock_irq(¤t->sighand->siglock); 1704c3ad2c3bSEric W. Biederman retval = -ERESTARTNOINTR; 1705c3ad2c3bSEric W. Biederman if (signal_pending(current)) 1706c3ad2c3bSEric W. Biederman goto fork_out; 1707c3ad2c3bSEric W. Biederman 17081da177e4SLinus Torvalds retval = -ENOMEM; 1709725fc629SAndi Kleen p = dup_task_struct(current, node); 17101da177e4SLinus Torvalds if (!p) 17111da177e4SLinus Torvalds goto fork_out; 17121da177e4SLinus Torvalds 17134d6501dcSVegard Nossum /* 17144d6501dcSVegard Nossum * This _must_ happen before we call free_task(), i.e. before we jump 17154d6501dcSVegard Nossum * to any of the bad_fork_* labels. This is to avoid freeing 17164d6501dcSVegard Nossum * p->set_child_tid which is (ab)used as a kthread's data pointer for 17174d6501dcSVegard Nossum * kernel threads (PF_KTHREAD). 17184d6501dcSVegard Nossum */ 17194d6501dcSVegard Nossum p->set_child_tid = (clone_flags & CLONE_CHILD_SETTID) ? child_tidptr : NULL; 17204d6501dcSVegard Nossum /* 17214d6501dcSVegard Nossum * Clear TID on mm_release()? 17224d6501dcSVegard Nossum */ 17234d6501dcSVegard Nossum p->clear_child_tid = (clone_flags & CLONE_CHILD_CLEARTID) ? child_tidptr : NULL; 17244d6501dcSVegard Nossum 1725f7e8b616SSteven Rostedt ftrace_graph_init_task(p); 1726f7e8b616SSteven Rostedt 1727bea493a0SPeter Zijlstra rt_mutex_init_task(p); 1728bea493a0SPeter Zijlstra 1729d12c1a37SIngo Molnar #ifdef CONFIG_PROVE_LOCKING 1730de30a2b3SIngo Molnar DEBUG_LOCKS_WARN_ON(!p->hardirqs_enabled); 1731de30a2b3SIngo Molnar DEBUG_LOCKS_WARN_ON(!p->softirqs_enabled); 1732de30a2b3SIngo Molnar #endif 17331da177e4SLinus Torvalds retval = -EAGAIN; 17343b11a1deSDavid Howells if (atomic_read(&p->real_cred->user->processes) >= 173578d7d407SJiri Slaby task_rlimit(p, RLIMIT_NPROC)) { 1736b57922b6SEric Paris if (p->real_cred->user != INIT_USER && 1737b57922b6SEric Paris !capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) 17381da177e4SLinus Torvalds goto bad_fork_free; 17391da177e4SLinus Torvalds } 174072fa5997SVasiliy Kulikov current->flags &= ~PF_NPROC_EXCEEDED; 17411da177e4SLinus Torvalds 1742f1752eecSDavid Howells retval = copy_creds(p, clone_flags); 1743f1752eecSDavid Howells if (retval < 0) 1744f1752eecSDavid Howells goto bad_fork_free; 17451da177e4SLinus Torvalds 17461da177e4SLinus Torvalds /* 17471da177e4SLinus Torvalds * If multiple threads are within copy_process(), then this check 17481da177e4SLinus Torvalds * triggers too late. This doesn't hurt, the check is only there 17491da177e4SLinus Torvalds * to stop root fork bombs. 17501da177e4SLinus Torvalds */ 175104ec93feSLi Zefan retval = -EAGAIN; 17521da177e4SLinus Torvalds if (nr_threads >= max_threads) 17531da177e4SLinus Torvalds goto bad_fork_cleanup_count; 17541da177e4SLinus Torvalds 1755ca74e92bSShailabh Nagar delayacct_tsk_init(p); /* Must remain after dup_task_struct() */ 1756c1de45caSPeter Zijlstra p->flags &= ~(PF_SUPERPRIV | PF_WQ_WORKER | PF_IDLE); 1757514ddb44SDavid Rientjes p->flags |= PF_FORKNOEXEC; 17581da177e4SLinus Torvalds INIT_LIST_HEAD(&p->children); 17591da177e4SLinus Torvalds INIT_LIST_HEAD(&p->sibling); 1760f41d911fSPaul E. McKenney rcu_copy_process(p); 17611da177e4SLinus Torvalds p->vfork_done = NULL; 17621da177e4SLinus Torvalds spin_lock_init(&p->alloc_lock); 17631da177e4SLinus Torvalds 17641da177e4SLinus Torvalds init_sigpending(&p->pending); 17651da177e4SLinus Torvalds 176664861634SMartin Schwidefsky p->utime = p->stime = p->gtime = 0; 176740565b5aSStanislaw Gruszka #ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME 176864861634SMartin Schwidefsky p->utimescaled = p->stimescaled = 0; 176940565b5aSStanislaw Gruszka #endif 17709d7fb042SPeter Zijlstra prev_cputime_init(&p->prev_cputime); 17719d7fb042SPeter Zijlstra 17726a61671bSFrederic Weisbecker #ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN 1773bac5b6b6SFrederic Weisbecker seqcount_init(&p->vtime.seqcount); 1774bac5b6b6SFrederic Weisbecker p->vtime.starttime = 0; 1775bac5b6b6SFrederic Weisbecker p->vtime.state = VTIME_INACTIVE; 17766a61671bSFrederic Weisbecker #endif 17776a61671bSFrederic Weisbecker 1778a3a2e76cSKAMEZAWA Hiroyuki #if defined(SPLIT_RSS_COUNTING) 1779a3a2e76cSKAMEZAWA Hiroyuki memset(&p->rss_stat, 0, sizeof(p->rss_stat)); 1780a3a2e76cSKAMEZAWA Hiroyuki #endif 1781172ba844SBalbir Singh 17826976675dSArjan van de Ven p->default_timer_slack_ns = current->timer_slack_ns; 17836976675dSArjan van de Ven 17845995477aSAndrea Righi task_io_accounting_init(&p->ioac); 17851da177e4SLinus Torvalds acct_clear_integrals(p); 17861da177e4SLinus Torvalds 1787f06febc9SFrank Mayhar posix_cpu_timers_init(p); 17881da177e4SLinus Torvalds 1789ccbf62d8SThomas Gleixner p->start_time = ktime_get_ns(); 179057e0be04SThomas Gleixner p->real_start_time = ktime_get_boot_ns(); 17911da177e4SLinus Torvalds p->io_context = NULL; 1792c0b0ae8aSRichard Guy Briggs audit_set_context(p, NULL); 1793b4f48b63SPaul Menage cgroup_fork(p); 17941da177e4SLinus Torvalds #ifdef CONFIG_NUMA 1795846a16bfSLee Schermerhorn p->mempolicy = mpol_dup(p->mempolicy); 17961da177e4SLinus Torvalds if (IS_ERR(p->mempolicy)) { 17971da177e4SLinus Torvalds retval = PTR_ERR(p->mempolicy); 17981da177e4SLinus Torvalds p->mempolicy = NULL; 1799e8604cb4SLi Zefan goto bad_fork_cleanup_threadgroup_lock; 18001da177e4SLinus Torvalds } 18011da177e4SLinus Torvalds #endif 1802778d3b0fSMichal Hocko #ifdef CONFIG_CPUSETS 1803778d3b0fSMichal Hocko p->cpuset_mem_spread_rotor = NUMA_NO_NODE; 1804778d3b0fSMichal Hocko p->cpuset_slab_spread_rotor = NUMA_NO_NODE; 1805cc9a6c87SMel Gorman seqcount_init(&p->mems_allowed_seq); 1806778d3b0fSMichal Hocko #endif 1807de30a2b3SIngo Molnar #ifdef CONFIG_TRACE_IRQFLAGS 1808de30a2b3SIngo Molnar p->irq_events = 0; 1809de30a2b3SIngo Molnar p->hardirqs_enabled = 0; 1810de30a2b3SIngo Molnar p->hardirq_enable_ip = 0; 1811de30a2b3SIngo Molnar p->hardirq_enable_event = 0; 1812de30a2b3SIngo Molnar p->hardirq_disable_ip = _THIS_IP_; 1813de30a2b3SIngo Molnar p->hardirq_disable_event = 0; 1814de30a2b3SIngo Molnar p->softirqs_enabled = 1; 1815de30a2b3SIngo Molnar p->softirq_enable_ip = _THIS_IP_; 1816de30a2b3SIngo Molnar p->softirq_enable_event = 0; 1817de30a2b3SIngo Molnar p->softirq_disable_ip = 0; 1818de30a2b3SIngo Molnar p->softirq_disable_event = 0; 1819de30a2b3SIngo Molnar p->hardirq_context = 0; 1820de30a2b3SIngo Molnar p->softirq_context = 0; 1821de30a2b3SIngo Molnar #endif 18228bcbde54SDavid Hildenbrand 18238bcbde54SDavid Hildenbrand p->pagefault_disabled = 0; 18248bcbde54SDavid Hildenbrand 1825fbb9ce95SIngo Molnar #ifdef CONFIG_LOCKDEP 1826fbb9ce95SIngo Molnar p->lockdep_depth = 0; /* no locks held yet */ 1827fbb9ce95SIngo Molnar p->curr_chain_key = 0; 1828fbb9ce95SIngo Molnar p->lockdep_recursion = 0; 1829b09be676SByungchul Park lockdep_init_task(p); 1830fbb9ce95SIngo Molnar #endif 18311da177e4SLinus Torvalds 1832408894eeSIngo Molnar #ifdef CONFIG_DEBUG_MUTEXES 1833408894eeSIngo Molnar p->blocked_on = NULL; /* not blocked yet */ 1834408894eeSIngo Molnar #endif 1835cafe5635SKent Overstreet #ifdef CONFIG_BCACHE 1836cafe5635SKent Overstreet p->sequential_io = 0; 1837cafe5635SKent Overstreet p->sequential_io_avg = 0; 1838cafe5635SKent Overstreet #endif 18390f481406SMarkus Metzger 18403c90e6e9SSrivatsa Vaddagiri /* Perform scheduler related setup. Assign this task to a CPU. */ 1841aab03e05SDario Faggioli retval = sched_fork(clone_flags, p); 1842aab03e05SDario Faggioli if (retval) 1843aab03e05SDario Faggioli goto bad_fork_cleanup_policy; 18446ab423e0SPeter Zijlstra 1845cdd6c482SIngo Molnar retval = perf_event_init_task(p); 18466ab423e0SPeter Zijlstra if (retval) 18476ab423e0SPeter Zijlstra goto bad_fork_cleanup_policy; 1848fb0a685cSDaniel Rebelo de Oliveira retval = audit_alloc(p); 1849fb0a685cSDaniel Rebelo de Oliveira if (retval) 18506c72e350SPeter Zijlstra goto bad_fork_cleanup_perf; 18511da177e4SLinus Torvalds /* copy all the process information */ 1852ab602f79SJack Miller shm_init_task(p); 1853e4e55b47STetsuo Handa retval = security_task_alloc(p, clone_flags); 1854fb0a685cSDaniel Rebelo de Oliveira if (retval) 18551da177e4SLinus Torvalds goto bad_fork_cleanup_audit; 1856e4e55b47STetsuo Handa retval = copy_semundo(clone_flags, p); 1857e4e55b47STetsuo Handa if (retval) 1858e4e55b47STetsuo Handa goto bad_fork_cleanup_security; 1859fb0a685cSDaniel Rebelo de Oliveira retval = copy_files(clone_flags, p); 1860fb0a685cSDaniel Rebelo de Oliveira if (retval) 18611da177e4SLinus Torvalds goto bad_fork_cleanup_semundo; 1862fb0a685cSDaniel Rebelo de Oliveira retval = copy_fs(clone_flags, p); 1863fb0a685cSDaniel Rebelo de Oliveira if (retval) 18641da177e4SLinus Torvalds goto bad_fork_cleanup_files; 1865fb0a685cSDaniel Rebelo de Oliveira retval = copy_sighand(clone_flags, p); 1866fb0a685cSDaniel Rebelo de Oliveira if (retval) 18671da177e4SLinus Torvalds goto bad_fork_cleanup_fs; 1868fb0a685cSDaniel Rebelo de Oliveira retval = copy_signal(clone_flags, p); 1869fb0a685cSDaniel Rebelo de Oliveira if (retval) 18701da177e4SLinus Torvalds goto bad_fork_cleanup_sighand; 1871fb0a685cSDaniel Rebelo de Oliveira retval = copy_mm(clone_flags, p); 1872fb0a685cSDaniel Rebelo de Oliveira if (retval) 18731da177e4SLinus Torvalds goto bad_fork_cleanup_signal; 1874fb0a685cSDaniel Rebelo de Oliveira retval = copy_namespaces(clone_flags, p); 1875fb0a685cSDaniel Rebelo de Oliveira if (retval) 1876d84f4f99SDavid Howells goto bad_fork_cleanup_mm; 1877fb0a685cSDaniel Rebelo de Oliveira retval = copy_io(clone_flags, p); 1878fb0a685cSDaniel Rebelo de Oliveira if (retval) 1879fd0928dfSJens Axboe goto bad_fork_cleanup_namespaces; 18803033f14aSJosh Triplett retval = copy_thread_tls(clone_flags, stack_start, stack_size, p, tls); 18811da177e4SLinus Torvalds if (retval) 1882fd0928dfSJens Axboe goto bad_fork_cleanup_io; 18831da177e4SLinus Torvalds 1884*afaef01cSAlexander Popov stackleak_task_init(p); 1885*afaef01cSAlexander Popov 1886425fb2b4SPavel Emelyanov if (pid != &init_struct_pid) { 1887c2b1df2eSAndy Lutomirski pid = alloc_pid(p->nsproxy->pid_ns_for_children); 188835f71bc0SMichal Hocko if (IS_ERR(pid)) { 188935f71bc0SMichal Hocko retval = PTR_ERR(pid); 18900740aa5fSJiri Slaby goto bad_fork_cleanup_thread; 1891425fb2b4SPavel Emelyanov } 189235f71bc0SMichal Hocko } 1893425fb2b4SPavel Emelyanov 189473c10101SJens Axboe #ifdef CONFIG_BLOCK 189573c10101SJens Axboe p->plug = NULL; 189673c10101SJens Axboe #endif 189742b2dd0aSAlexey Dobriyan #ifdef CONFIG_FUTEX 18988f17d3a5SIngo Molnar p->robust_list = NULL; 18998f17d3a5SIngo Molnar #ifdef CONFIG_COMPAT 19008f17d3a5SIngo Molnar p->compat_robust_list = NULL; 19018f17d3a5SIngo Molnar #endif 1902c87e2837SIngo Molnar INIT_LIST_HEAD(&p->pi_state_list); 1903c87e2837SIngo Molnar p->pi_state_cache = NULL; 190442b2dd0aSAlexey Dobriyan #endif 19051da177e4SLinus Torvalds /* 1906f9a3879aSGOTO Masanori * sigaltstack should be cleared when sharing the same VM 1907f9a3879aSGOTO Masanori */ 1908f9a3879aSGOTO Masanori if ((clone_flags & (CLONE_VM|CLONE_VFORK)) == CLONE_VM) 19092a742138SStas Sergeev sas_ss_reset(p); 1910f9a3879aSGOTO Masanori 1911f9a3879aSGOTO Masanori /* 19126580807dSOleg Nesterov * Syscall tracing and stepping should be turned off in the 19136580807dSOleg Nesterov * child regardless of CLONE_PTRACE. 19141da177e4SLinus Torvalds */ 19156580807dSOleg Nesterov user_disable_single_step(p); 19161da177e4SLinus Torvalds clear_tsk_thread_flag(p, TIF_SYSCALL_TRACE); 1917ed75e8d5SLaurent Vivier #ifdef TIF_SYSCALL_EMU 1918ed75e8d5SLaurent Vivier clear_tsk_thread_flag(p, TIF_SYSCALL_EMU); 1919ed75e8d5SLaurent Vivier #endif 19209745512cSArjan van de Ven clear_all_latency_tracing(p); 19211da177e4SLinus Torvalds 19221da177e4SLinus Torvalds /* ok, now we should be set up.. */ 192318c830dfSOleg Nesterov p->pid = pid_nr(pid); 192418c830dfSOleg Nesterov if (clone_flags & CLONE_THREAD) { 19255f8aadd8SOleg Nesterov p->exit_signal = -1; 192618c830dfSOleg Nesterov p->group_leader = current->group_leader; 192718c830dfSOleg Nesterov p->tgid = current->tgid; 192818c830dfSOleg Nesterov } else { 192918c830dfSOleg Nesterov if (clone_flags & CLONE_PARENT) 19305f8aadd8SOleg Nesterov p->exit_signal = current->group_leader->exit_signal; 19315f8aadd8SOleg Nesterov else 19325f8aadd8SOleg Nesterov p->exit_signal = (clone_flags & CSIGNAL); 193318c830dfSOleg Nesterov p->group_leader = p; 193418c830dfSOleg Nesterov p->tgid = p->pid; 193518c830dfSOleg Nesterov } 19365f8aadd8SOleg Nesterov 19379d823e8fSWu Fengguang p->nr_dirtied = 0; 19389d823e8fSWu Fengguang p->nr_dirtied_pause = 128 >> (PAGE_SHIFT - 10); 193983712358SWu Fengguang p->dirty_paused_when = 0; 19409d823e8fSWu Fengguang 1941bb8cbbfeSOleg Nesterov p->pdeath_signal = 0; 194247e65328SOleg Nesterov INIT_LIST_HEAD(&p->thread_group); 1943158e1645SAl Viro p->task_works = NULL; 19441da177e4SLinus Torvalds 1945780de9ddSIngo Molnar cgroup_threadgroup_change_begin(current); 194618c830dfSOleg Nesterov /* 19477e47682eSAleksa Sarai * Ensure that the cgroup subsystem policies allow the new process to be 19487e47682eSAleksa Sarai * forked. It should be noted the the new process's css_set can be changed 19497e47682eSAleksa Sarai * between here and cgroup_post_fork() if an organisation operation is in 19507e47682eSAleksa Sarai * progress. 19517e47682eSAleksa Sarai */ 1952b53202e6SOleg Nesterov retval = cgroup_can_fork(p); 19537e47682eSAleksa Sarai if (retval) 19547e47682eSAleksa Sarai goto bad_fork_free_pid; 19557e47682eSAleksa Sarai 19567e47682eSAleksa Sarai /* 195718c830dfSOleg Nesterov * Make it visible to the rest of the system, but dont wake it up yet. 195818c830dfSOleg Nesterov * Need tasklist lock for parent etc handling! 195918c830dfSOleg Nesterov */ 19601da177e4SLinus Torvalds write_lock_irq(&tasklist_lock); 19611da177e4SLinus Torvalds 19621da177e4SLinus Torvalds /* CLONE_PARENT re-uses the old parent */ 19632d5516cbSOleg Nesterov if (clone_flags & (CLONE_PARENT|CLONE_THREAD)) { 19641da177e4SLinus Torvalds p->real_parent = current->real_parent; 19652d5516cbSOleg Nesterov p->parent_exec_id = current->parent_exec_id; 19662d5516cbSOleg Nesterov } else { 19671da177e4SLinus Torvalds p->real_parent = current; 19682d5516cbSOleg Nesterov p->parent_exec_id = current->self_exec_id; 19692d5516cbSOleg Nesterov } 19701da177e4SLinus Torvalds 1971d83a7cb3SJosh Poimboeuf klp_copy_process(p); 1972d83a7cb3SJosh Poimboeuf 19731da177e4SLinus Torvalds spin_lock(¤t->sighand->siglock); 19744a2c7a78SOleg Nesterov 19754a2c7a78SOleg Nesterov /* 1976dbd95212SKees Cook * Copy seccomp details explicitly here, in case they were changed 1977dbd95212SKees Cook * before holding sighand lock. 1978dbd95212SKees Cook */ 1979dbd95212SKees Cook copy_seccomp(p); 1980dbd95212SKees Cook 1981d7822b1eSMathieu Desnoyers rseq_fork(p, clone_flags); 1982d7822b1eSMathieu Desnoyers 19834ca1d3eeSEric W. Biederman /* Don't start children in a dying pid namespace */ 1984e8cfbc24SGargi Sharma if (unlikely(!(ns_of_pid(pid)->pid_allocated & PIDNS_ADDING))) { 19853fd37226SKirill Tkhai retval = -ENOMEM; 19863fd37226SKirill Tkhai goto bad_fork_cancel_cgroup; 19873fd37226SKirill Tkhai } 19884a2c7a78SOleg Nesterov 19897673bf55SEric W. Biederman /* Let kill terminate clone/fork in the middle */ 19907673bf55SEric W. Biederman if (fatal_signal_pending(current)) { 19917673bf55SEric W. Biederman retval = -EINTR; 19927673bf55SEric W. Biederman goto bad_fork_cancel_cgroup; 19937673bf55SEric W. Biederman } 19947673bf55SEric W. Biederman 19951da177e4SLinus Torvalds 19962c470475SEric W. Biederman init_task_pid_links(p); 199773b9ebfeSOleg Nesterov if (likely(p->pid)) { 19984b9d33e6STejun Heo ptrace_init_task(p, (clone_flags & CLONE_PTRACE) || trace); 19991da177e4SLinus Torvalds 200081907739SOleg Nesterov init_task_pid(p, PIDTYPE_PID, pid); 20011da177e4SLinus Torvalds if (thread_group_leader(p)) { 20026883f81aSEric W. Biederman init_task_pid(p, PIDTYPE_TGID, pid); 200381907739SOleg Nesterov init_task_pid(p, PIDTYPE_PGID, task_pgrp(current)); 200481907739SOleg Nesterov init_task_pid(p, PIDTYPE_SID, task_session(current)); 200581907739SOleg Nesterov 20061c4042c2SEric W. Biederman if (is_child_reaper(pid)) { 200717cf22c3SEric W. Biederman ns_of_pid(pid)->child_reaper = p; 20081c4042c2SEric W. Biederman p->signal->flags |= SIGNAL_UNKILLABLE; 20091c4042c2SEric W. Biederman } 2010c3ad2c3bSEric W. Biederman p->signal->shared_pending.signal = delayed.signal; 20119c9f4dedSAlan Cox p->signal->tty = tty_kref_get(current->signal->tty); 2012749860ceSPavel Tikhomirov /* 2013749860ceSPavel Tikhomirov * Inherit has_child_subreaper flag under the same 2014749860ceSPavel Tikhomirov * tasklist_lock with adding child to the process tree 2015749860ceSPavel Tikhomirov * for propagate_has_child_subreaper optimization. 2016749860ceSPavel Tikhomirov */ 2017749860ceSPavel Tikhomirov p->signal->has_child_subreaper = p->real_parent->signal->has_child_subreaper || 2018749860ceSPavel Tikhomirov p->real_parent->signal->is_child_subreaper; 20199cd80bbbSOleg Nesterov list_add_tail(&p->sibling, &p->real_parent->children); 20205e85d4abSEric W. Biederman list_add_tail_rcu(&p->tasks, &init_task.tasks); 20216883f81aSEric W. Biederman attach_pid(p, PIDTYPE_TGID); 202281907739SOleg Nesterov attach_pid(p, PIDTYPE_PGID); 202381907739SOleg Nesterov attach_pid(p, PIDTYPE_SID); 2024909ea964SChristoph Lameter __this_cpu_inc(process_counts); 202580628ca0SOleg Nesterov } else { 202680628ca0SOleg Nesterov current->signal->nr_threads++; 202780628ca0SOleg Nesterov atomic_inc(¤t->signal->live); 202880628ca0SOleg Nesterov atomic_inc(¤t->signal->sigcnt); 2029924de3b8SEric W. Biederman task_join_group_stop(p); 203080628ca0SOleg Nesterov list_add_tail_rcu(&p->thread_group, 203180628ca0SOleg Nesterov &p->group_leader->thread_group); 20320c740d0aSOleg Nesterov list_add_tail_rcu(&p->thread_node, 20330c740d0aSOleg Nesterov &p->signal->thread_head); 20341da177e4SLinus Torvalds } 203581907739SOleg Nesterov attach_pid(p, PIDTYPE_PID); 20361da177e4SLinus Torvalds nr_threads++; 203773b9ebfeSOleg Nesterov } 20381da177e4SLinus Torvalds total_forks++; 2039c3ad2c3bSEric W. Biederman hlist_del_init(&delayed.node); 20403f17da69SOleg Nesterov spin_unlock(¤t->sighand->siglock); 20414af4206bSOleg Nesterov syscall_tracepoint_update(p); 20421da177e4SLinus Torvalds write_unlock_irq(&tasklist_lock); 20434af4206bSOleg Nesterov 2044c13cf856SAndrew Morton proc_fork_connector(p); 2045b53202e6SOleg Nesterov cgroup_post_fork(p); 2046780de9ddSIngo Molnar cgroup_threadgroup_change_end(current); 2047cdd6c482SIngo Molnar perf_event_fork(p); 204843d2b113SKAMEZAWA Hiroyuki 204943d2b113SKAMEZAWA Hiroyuki trace_task_newtask(p, clone_flags); 20503ab67966SOleg Nesterov uprobe_copy_process(p, clone_flags); 205143d2b113SKAMEZAWA Hiroyuki 20521da177e4SLinus Torvalds return p; 20531da177e4SLinus Torvalds 20547e47682eSAleksa Sarai bad_fork_cancel_cgroup: 20553fd37226SKirill Tkhai spin_unlock(¤t->sighand->siglock); 20563fd37226SKirill Tkhai write_unlock_irq(&tasklist_lock); 2057b53202e6SOleg Nesterov cgroup_cancel_fork(p); 2058425fb2b4SPavel Emelyanov bad_fork_free_pid: 2059780de9ddSIngo Molnar cgroup_threadgroup_change_end(current); 2060425fb2b4SPavel Emelyanov if (pid != &init_struct_pid) 2061425fb2b4SPavel Emelyanov free_pid(pid); 20620740aa5fSJiri Slaby bad_fork_cleanup_thread: 20630740aa5fSJiri Slaby exit_thread(p); 2064fd0928dfSJens Axboe bad_fork_cleanup_io: 2065b69f2292SLouis Rilling if (p->io_context) 2066b69f2292SLouis Rilling exit_io_context(p); 2067ab516013SSerge E. Hallyn bad_fork_cleanup_namespaces: 2068444f378bSLinus Torvalds exit_task_namespaces(p); 20691da177e4SLinus Torvalds bad_fork_cleanup_mm: 2070c9f01245SDavid Rientjes if (p->mm) 20711da177e4SLinus Torvalds mmput(p->mm); 20721da177e4SLinus Torvalds bad_fork_cleanup_signal: 20734ab6c083SOleg Nesterov if (!(clone_flags & CLONE_THREAD)) 20741c5354deSMike Galbraith free_signal_struct(p->signal); 20751da177e4SLinus Torvalds bad_fork_cleanup_sighand: 2076a7e5328aSOleg Nesterov __cleanup_sighand(p->sighand); 20771da177e4SLinus Torvalds bad_fork_cleanup_fs: 20781da177e4SLinus Torvalds exit_fs(p); /* blocking */ 20791da177e4SLinus Torvalds bad_fork_cleanup_files: 20801da177e4SLinus Torvalds exit_files(p); /* blocking */ 20811da177e4SLinus Torvalds bad_fork_cleanup_semundo: 20821da177e4SLinus Torvalds exit_sem(p); 2083e4e55b47STetsuo Handa bad_fork_cleanup_security: 2084e4e55b47STetsuo Handa security_task_free(p); 20851da177e4SLinus Torvalds bad_fork_cleanup_audit: 20861da177e4SLinus Torvalds audit_free(p); 20876c72e350SPeter Zijlstra bad_fork_cleanup_perf: 2088cdd6c482SIngo Molnar perf_event_free_task(p); 20896c72e350SPeter Zijlstra bad_fork_cleanup_policy: 2090b09be676SByungchul Park lockdep_free_task(p); 20911da177e4SLinus Torvalds #ifdef CONFIG_NUMA 2092f0be3d32SLee Schermerhorn mpol_put(p->mempolicy); 2093e8604cb4SLi Zefan bad_fork_cleanup_threadgroup_lock: 20941da177e4SLinus Torvalds #endif 209535df17c5SShailabh Nagar delayacct_tsk_free(p); 20961da177e4SLinus Torvalds bad_fork_cleanup_count: 2097d84f4f99SDavid Howells atomic_dec(&p->cred->user->processes); 2098e0e81739SDavid Howells exit_creds(p); 20991da177e4SLinus Torvalds bad_fork_free: 2100405c0759SAndy Lutomirski p->state = TASK_DEAD; 210168f24b08SAndy Lutomirski put_task_stack(p); 21021da177e4SLinus Torvalds free_task(p); 2103fe7d37d1SOleg Nesterov fork_out: 2104c3ad2c3bSEric W. Biederman spin_lock_irq(¤t->sighand->siglock); 2105c3ad2c3bSEric W. Biederman hlist_del_init(&delayed.node); 2106c3ad2c3bSEric W. Biederman spin_unlock_irq(¤t->sighand->siglock); 2107fe7d37d1SOleg Nesterov return ERR_PTR(retval); 21081da177e4SLinus Torvalds } 21091da177e4SLinus Torvalds 21102c470475SEric W. Biederman static inline void init_idle_pids(struct task_struct *idle) 2111f106eee1SOleg Nesterov { 2112f106eee1SOleg Nesterov enum pid_type type; 2113f106eee1SOleg Nesterov 2114f106eee1SOleg Nesterov for (type = PIDTYPE_PID; type < PIDTYPE_MAX; ++type) { 21152c470475SEric W. Biederman INIT_HLIST_NODE(&idle->pid_links[type]); /* not really needed */ 21162c470475SEric W. Biederman init_task_pid(idle, type, &init_struct_pid); 2117f106eee1SOleg Nesterov } 2118f106eee1SOleg Nesterov } 2119f106eee1SOleg Nesterov 21200db0628dSPaul Gortmaker struct task_struct *fork_idle(int cpu) 21211da177e4SLinus Torvalds { 212236c8b586SIngo Molnar struct task_struct *task; 2123725fc629SAndi Kleen task = copy_process(CLONE_VM, 0, 0, NULL, &init_struct_pid, 0, 0, 2124725fc629SAndi Kleen cpu_to_node(cpu)); 2125f106eee1SOleg Nesterov if (!IS_ERR(task)) { 21262c470475SEric W. Biederman init_idle_pids(task); 21271da177e4SLinus Torvalds init_idle(task, cpu); 2128f106eee1SOleg Nesterov } 212973b9ebfeSOleg Nesterov 21301da177e4SLinus Torvalds return task; 21311da177e4SLinus Torvalds } 21321da177e4SLinus Torvalds 21331da177e4SLinus Torvalds /* 21341da177e4SLinus Torvalds * Ok, this is the main fork-routine. 21351da177e4SLinus Torvalds * 21361da177e4SLinus Torvalds * It copies the process, and if successful kick-starts 21371da177e4SLinus Torvalds * it and waits for it to finish using the VM if required. 21381da177e4SLinus Torvalds */ 21393033f14aSJosh Triplett long _do_fork(unsigned long clone_flags, 21401da177e4SLinus Torvalds unsigned long stack_start, 21411da177e4SLinus Torvalds unsigned long stack_size, 21421da177e4SLinus Torvalds int __user *parent_tidptr, 21433033f14aSJosh Triplett int __user *child_tidptr, 21443033f14aSJosh Triplett unsigned long tls) 21451da177e4SLinus Torvalds { 21469f5325aaSMarcos Paulo de Souza struct completion vfork; 21479f5325aaSMarcos Paulo de Souza struct pid *pid; 21481da177e4SLinus Torvalds struct task_struct *p; 21491da177e4SLinus Torvalds int trace = 0; 215092476d7fSEric W. Biederman long nr; 21511da177e4SLinus Torvalds 2152bdff746aSAndrew Morton /* 21534b9d33e6STejun Heo * Determine whether and which event to report to ptracer. When 21544b9d33e6STejun Heo * called from kernel_thread or CLONE_UNTRACED is explicitly 21554b9d33e6STejun Heo * requested, no event is reported; otherwise, report if the event 21564b9d33e6STejun Heo * for the type of forking is enabled. 215709a05394SRoland McGrath */ 2158e80d6661SAl Viro if (!(clone_flags & CLONE_UNTRACED)) { 21594b9d33e6STejun Heo if (clone_flags & CLONE_VFORK) 21604b9d33e6STejun Heo trace = PTRACE_EVENT_VFORK; 21614b9d33e6STejun Heo else if ((clone_flags & CSIGNAL) != SIGCHLD) 21624b9d33e6STejun Heo trace = PTRACE_EVENT_CLONE; 21634b9d33e6STejun Heo else 21644b9d33e6STejun Heo trace = PTRACE_EVENT_FORK; 21654b9d33e6STejun Heo 21664b9d33e6STejun Heo if (likely(!ptrace_event_enabled(current, trace))) 21674b9d33e6STejun Heo trace = 0; 21684b9d33e6STejun Heo } 21691da177e4SLinus Torvalds 217062e791c1SAl Viro p = copy_process(clone_flags, stack_start, stack_size, 2171725fc629SAndi Kleen child_tidptr, NULL, trace, tls, NUMA_NO_NODE); 217238addce8SEmese Revfy add_latent_entropy(); 21739f5325aaSMarcos Paulo de Souza 21749f5325aaSMarcos Paulo de Souza if (IS_ERR(p)) 21759f5325aaSMarcos Paulo de Souza return PTR_ERR(p); 21769f5325aaSMarcos Paulo de Souza 21771da177e4SLinus Torvalds /* 21781da177e4SLinus Torvalds * Do this prior waking up the new thread - the thread pointer 21791da177e4SLinus Torvalds * might get invalid after that point, if the thread exits quickly. 21801da177e4SLinus Torvalds */ 21810a16b607SMathieu Desnoyers trace_sched_process_fork(current, p); 21820a16b607SMathieu Desnoyers 21834e52365fSMatthew Dempsky pid = get_task_pid(p, PIDTYPE_PID); 21844e52365fSMatthew Dempsky nr = pid_vnr(pid); 218530e49c26SPavel Emelyanov 218630e49c26SPavel Emelyanov if (clone_flags & CLONE_PARENT_SETTID) 218730e49c26SPavel Emelyanov put_user(nr, parent_tidptr); 2188a6f5e063SSukadev Bhattiprolu 21891da177e4SLinus Torvalds if (clone_flags & CLONE_VFORK) { 21901da177e4SLinus Torvalds p->vfork_done = &vfork; 21911da177e4SLinus Torvalds init_completion(&vfork); 2192d68b46feSOleg Nesterov get_task_struct(p); 21931da177e4SLinus Torvalds } 21941da177e4SLinus Torvalds 21953e51e3edSSamir Bellabes wake_up_new_task(p); 21961da177e4SLinus Torvalds 21974b9d33e6STejun Heo /* forking complete and child started to run, tell ptracer */ 21984b9d33e6STejun Heo if (unlikely(trace)) 21994e52365fSMatthew Dempsky ptrace_event_pid(trace, pid); 220009a05394SRoland McGrath 22011da177e4SLinus Torvalds if (clone_flags & CLONE_VFORK) { 2202d68b46feSOleg Nesterov if (!wait_for_vfork_done(p, &vfork)) 22034e52365fSMatthew Dempsky ptrace_event_pid(PTRACE_EVENT_VFORK_DONE, pid); 22049f59ce5dSChuck Ebbert } 22054e52365fSMatthew Dempsky 22064e52365fSMatthew Dempsky put_pid(pid); 220792476d7fSEric W. Biederman return nr; 22081da177e4SLinus Torvalds } 22091da177e4SLinus Torvalds 22103033f14aSJosh Triplett #ifndef CONFIG_HAVE_COPY_THREAD_TLS 22113033f14aSJosh Triplett /* For compatibility with architectures that call do_fork directly rather than 22123033f14aSJosh Triplett * using the syscall entry points below. */ 22133033f14aSJosh Triplett long do_fork(unsigned long clone_flags, 22143033f14aSJosh Triplett unsigned long stack_start, 22153033f14aSJosh Triplett unsigned long stack_size, 22163033f14aSJosh Triplett int __user *parent_tidptr, 22173033f14aSJosh Triplett int __user *child_tidptr) 22183033f14aSJosh Triplett { 22193033f14aSJosh Triplett return _do_fork(clone_flags, stack_start, stack_size, 22203033f14aSJosh Triplett parent_tidptr, child_tidptr, 0); 22213033f14aSJosh Triplett } 22223033f14aSJosh Triplett #endif 22233033f14aSJosh Triplett 22242aa3a7f8SAl Viro /* 22252aa3a7f8SAl Viro * Create a kernel thread. 22262aa3a7f8SAl Viro */ 22272aa3a7f8SAl Viro pid_t kernel_thread(int (*fn)(void *), void *arg, unsigned long flags) 22282aa3a7f8SAl Viro { 22293033f14aSJosh Triplett return _do_fork(flags|CLONE_VM|CLONE_UNTRACED, (unsigned long)fn, 22303033f14aSJosh Triplett (unsigned long)arg, NULL, NULL, 0); 22312aa3a7f8SAl Viro } 22322aa3a7f8SAl Viro 2233d2125043SAl Viro #ifdef __ARCH_WANT_SYS_FORK 2234d2125043SAl Viro SYSCALL_DEFINE0(fork) 2235d2125043SAl Viro { 2236d2125043SAl Viro #ifdef CONFIG_MMU 22373033f14aSJosh Triplett return _do_fork(SIGCHLD, 0, 0, NULL, NULL, 0); 2238d2125043SAl Viro #else 2239d2125043SAl Viro /* can not support in nommu mode */ 22405d59e182SDaeseok Youn return -EINVAL; 2241d2125043SAl Viro #endif 2242d2125043SAl Viro } 2243d2125043SAl Viro #endif 2244d2125043SAl Viro 2245d2125043SAl Viro #ifdef __ARCH_WANT_SYS_VFORK 2246d2125043SAl Viro SYSCALL_DEFINE0(vfork) 2247d2125043SAl Viro { 22483033f14aSJosh Triplett return _do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, 0, 22493033f14aSJosh Triplett 0, NULL, NULL, 0); 2250d2125043SAl Viro } 2251d2125043SAl Viro #endif 2252d2125043SAl Viro 2253d2125043SAl Viro #ifdef __ARCH_WANT_SYS_CLONE 2254d2125043SAl Viro #ifdef CONFIG_CLONE_BACKWARDS 2255d2125043SAl Viro SYSCALL_DEFINE5(clone, unsigned long, clone_flags, unsigned long, newsp, 2256d2125043SAl Viro int __user *, parent_tidptr, 22573033f14aSJosh Triplett unsigned long, tls, 2258d2125043SAl Viro int __user *, child_tidptr) 2259d2125043SAl Viro #elif defined(CONFIG_CLONE_BACKWARDS2) 2260d2125043SAl Viro SYSCALL_DEFINE5(clone, unsigned long, newsp, unsigned long, clone_flags, 2261d2125043SAl Viro int __user *, parent_tidptr, 2262d2125043SAl Viro int __user *, child_tidptr, 22633033f14aSJosh Triplett unsigned long, tls) 2264dfa9771aSMichal Simek #elif defined(CONFIG_CLONE_BACKWARDS3) 2265dfa9771aSMichal Simek SYSCALL_DEFINE6(clone, unsigned long, clone_flags, unsigned long, newsp, 2266dfa9771aSMichal Simek int, stack_size, 2267dfa9771aSMichal Simek int __user *, parent_tidptr, 2268dfa9771aSMichal Simek int __user *, child_tidptr, 22693033f14aSJosh Triplett unsigned long, tls) 2270d2125043SAl Viro #else 2271d2125043SAl Viro SYSCALL_DEFINE5(clone, unsigned long, clone_flags, unsigned long, newsp, 2272d2125043SAl Viro int __user *, parent_tidptr, 2273d2125043SAl Viro int __user *, child_tidptr, 22743033f14aSJosh Triplett unsigned long, tls) 2275d2125043SAl Viro #endif 2276d2125043SAl Viro { 22773033f14aSJosh Triplett return _do_fork(clone_flags, newsp, 0, parent_tidptr, child_tidptr, tls); 2278d2125043SAl Viro } 2279d2125043SAl Viro #endif 2280d2125043SAl Viro 22810f1b92cbSOleg Nesterov void walk_process_tree(struct task_struct *top, proc_visitor visitor, void *data) 22820f1b92cbSOleg Nesterov { 22830f1b92cbSOleg Nesterov struct task_struct *leader, *parent, *child; 22840f1b92cbSOleg Nesterov int res; 22850f1b92cbSOleg Nesterov 22860f1b92cbSOleg Nesterov read_lock(&tasklist_lock); 22870f1b92cbSOleg Nesterov leader = top = top->group_leader; 22880f1b92cbSOleg Nesterov down: 22890f1b92cbSOleg Nesterov for_each_thread(leader, parent) { 22900f1b92cbSOleg Nesterov list_for_each_entry(child, &parent->children, sibling) { 22910f1b92cbSOleg Nesterov res = visitor(child, data); 22920f1b92cbSOleg Nesterov if (res) { 22930f1b92cbSOleg Nesterov if (res < 0) 22940f1b92cbSOleg Nesterov goto out; 22950f1b92cbSOleg Nesterov leader = child; 22960f1b92cbSOleg Nesterov goto down; 22970f1b92cbSOleg Nesterov } 22980f1b92cbSOleg Nesterov up: 22990f1b92cbSOleg Nesterov ; 23000f1b92cbSOleg Nesterov } 23010f1b92cbSOleg Nesterov } 23020f1b92cbSOleg Nesterov 23030f1b92cbSOleg Nesterov if (leader != top) { 23040f1b92cbSOleg Nesterov child = leader; 23050f1b92cbSOleg Nesterov parent = child->real_parent; 23060f1b92cbSOleg Nesterov leader = parent->group_leader; 23070f1b92cbSOleg Nesterov goto up; 23080f1b92cbSOleg Nesterov } 23090f1b92cbSOleg Nesterov out: 23100f1b92cbSOleg Nesterov read_unlock(&tasklist_lock); 23110f1b92cbSOleg Nesterov } 23120f1b92cbSOleg Nesterov 23135fd63b30SRavikiran G Thirumalai #ifndef ARCH_MIN_MMSTRUCT_ALIGN 23145fd63b30SRavikiran G Thirumalai #define ARCH_MIN_MMSTRUCT_ALIGN 0 23155fd63b30SRavikiran G Thirumalai #endif 23165fd63b30SRavikiran G Thirumalai 231751cc5068SAlexey Dobriyan static void sighand_ctor(void *data) 2318aa1757f9SOleg Nesterov { 2319aa1757f9SOleg Nesterov struct sighand_struct *sighand = data; 2320aa1757f9SOleg Nesterov 2321aa1757f9SOleg Nesterov spin_lock_init(&sighand->siglock); 2322b8fceee1SDavide Libenzi init_waitqueue_head(&sighand->signalfd_wqh); 2323fba2afaaSDavide Libenzi } 2324aa1757f9SOleg Nesterov 23251da177e4SLinus Torvalds void __init proc_caches_init(void) 23261da177e4SLinus Torvalds { 2327c1a2f7f0SRik van Riel unsigned int mm_size; 2328c1a2f7f0SRik van Riel 23291da177e4SLinus Torvalds sighand_cachep = kmem_cache_create("sighand_cache", 23301da177e4SLinus Torvalds sizeof(struct sighand_struct), 0, 23315f0d5a3aSPaul E. McKenney SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_TYPESAFE_BY_RCU| 233275f296d9SLevin, Alexander (Sasha Levin) SLAB_ACCOUNT, sighand_ctor); 23331da177e4SLinus Torvalds signal_cachep = kmem_cache_create("signal_cache", 23341da177e4SLinus Torvalds sizeof(struct signal_struct), 0, 233575f296d9SLevin, Alexander (Sasha Levin) SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT, 23365d097056SVladimir Davydov NULL); 23371da177e4SLinus Torvalds files_cachep = kmem_cache_create("files_cache", 23381da177e4SLinus Torvalds sizeof(struct files_struct), 0, 233975f296d9SLevin, Alexander (Sasha Levin) SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT, 23405d097056SVladimir Davydov NULL); 23411da177e4SLinus Torvalds fs_cachep = kmem_cache_create("fs_cache", 23421da177e4SLinus Torvalds sizeof(struct fs_struct), 0, 234375f296d9SLevin, Alexander (Sasha Levin) SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT, 23445d097056SVladimir Davydov NULL); 2345c1a2f7f0SRik van Riel 23466345d24dSLinus Torvalds /* 2347c1a2f7f0SRik van Riel * The mm_cpumask is located at the end of mm_struct, and is 2348c1a2f7f0SRik van Riel * dynamically sized based on the maximum CPU number this system 2349c1a2f7f0SRik van Riel * can have, taking hotplug into account (nr_cpu_ids). 23506345d24dSLinus Torvalds */ 2351c1a2f7f0SRik van Riel mm_size = sizeof(struct mm_struct) + cpumask_size(); 2352c1a2f7f0SRik van Riel 235307dcd7feSDavid Windsor mm_cachep = kmem_cache_create_usercopy("mm_struct", 2354c1a2f7f0SRik van Riel mm_size, ARCH_MIN_MMSTRUCT_ALIGN, 235575f296d9SLevin, Alexander (Sasha Levin) SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT, 235607dcd7feSDavid Windsor offsetof(struct mm_struct, saved_auxv), 235707dcd7feSDavid Windsor sizeof_field(struct mm_struct, saved_auxv), 23585d097056SVladimir Davydov NULL); 23595d097056SVladimir Davydov vm_area_cachep = KMEM_CACHE(vm_area_struct, SLAB_PANIC|SLAB_ACCOUNT); 23608feae131SDavid Howells mmap_init(); 236166577193SAl Viro nsproxy_cache_init(); 23621da177e4SLinus Torvalds } 2363cf2e340fSJANAK DESAI 2364cf2e340fSJANAK DESAI /* 23659bfb23fcSOleg Nesterov * Check constraints on flags passed to the unshare system call. 2366cf2e340fSJANAK DESAI */ 23679bfb23fcSOleg Nesterov static int check_unshare_flags(unsigned long unshare_flags) 2368cf2e340fSJANAK DESAI { 23699bfb23fcSOleg Nesterov if (unshare_flags & ~(CLONE_THREAD|CLONE_FS|CLONE_NEWNS|CLONE_SIGHAND| 23709bfb23fcSOleg Nesterov CLONE_VM|CLONE_FILES|CLONE_SYSVSEM| 237150804fe3SEric W. Biederman CLONE_NEWUTS|CLONE_NEWIPC|CLONE_NEWNET| 2372a79a908fSAditya Kali CLONE_NEWUSER|CLONE_NEWPID|CLONE_NEWCGROUP)) 2373cf2e340fSJANAK DESAI return -EINVAL; 23749bfb23fcSOleg Nesterov /* 237512c641abSEric W. Biederman * Not implemented, but pretend it works if there is nothing 237612c641abSEric W. Biederman * to unshare. Note that unsharing the address space or the 237712c641abSEric W. Biederman * signal handlers also need to unshare the signal queues (aka 237812c641abSEric W. Biederman * CLONE_THREAD). 23799bfb23fcSOleg Nesterov */ 23809bfb23fcSOleg Nesterov if (unshare_flags & (CLONE_THREAD | CLONE_SIGHAND | CLONE_VM)) { 238112c641abSEric W. Biederman if (!thread_group_empty(current)) 238212c641abSEric W. Biederman return -EINVAL; 238312c641abSEric W. Biederman } 238412c641abSEric W. Biederman if (unshare_flags & (CLONE_SIGHAND | CLONE_VM)) { 238512c641abSEric W. Biederman if (atomic_read(¤t->sighand->count) > 1) 238612c641abSEric W. Biederman return -EINVAL; 238712c641abSEric W. Biederman } 238812c641abSEric W. Biederman if (unshare_flags & CLONE_VM) { 238912c641abSEric W. Biederman if (!current_is_single_threaded()) 23909bfb23fcSOleg Nesterov return -EINVAL; 23919bfb23fcSOleg Nesterov } 2392cf2e340fSJANAK DESAI 2393cf2e340fSJANAK DESAI return 0; 2394cf2e340fSJANAK DESAI } 2395cf2e340fSJANAK DESAI 2396cf2e340fSJANAK DESAI /* 239799d1419dSJANAK DESAI * Unshare the filesystem structure if it is being shared 2398cf2e340fSJANAK DESAI */ 2399cf2e340fSJANAK DESAI static int unshare_fs(unsigned long unshare_flags, struct fs_struct **new_fsp) 2400cf2e340fSJANAK DESAI { 2401cf2e340fSJANAK DESAI struct fs_struct *fs = current->fs; 2402cf2e340fSJANAK DESAI 2403498052bbSAl Viro if (!(unshare_flags & CLONE_FS) || !fs) 2404498052bbSAl Viro return 0; 2405498052bbSAl Viro 2406498052bbSAl Viro /* don't need lock here; in the worst case we'll do useless copy */ 2407498052bbSAl Viro if (fs->users == 1) 2408498052bbSAl Viro return 0; 2409498052bbSAl Viro 2410498052bbSAl Viro *new_fsp = copy_fs_struct(fs); 241199d1419dSJANAK DESAI if (!*new_fsp) 241299d1419dSJANAK DESAI return -ENOMEM; 2413cf2e340fSJANAK DESAI 2414cf2e340fSJANAK DESAI return 0; 2415cf2e340fSJANAK DESAI } 2416cf2e340fSJANAK DESAI 2417cf2e340fSJANAK DESAI /* 2418a016f338SJANAK DESAI * Unshare file descriptor table if it is being shared 2419cf2e340fSJANAK DESAI */ 2420cf2e340fSJANAK DESAI static int unshare_fd(unsigned long unshare_flags, struct files_struct **new_fdp) 2421cf2e340fSJANAK DESAI { 2422cf2e340fSJANAK DESAI struct files_struct *fd = current->files; 2423a016f338SJANAK DESAI int error = 0; 2424cf2e340fSJANAK DESAI 2425cf2e340fSJANAK DESAI if ((unshare_flags & CLONE_FILES) && 2426a016f338SJANAK DESAI (fd && atomic_read(&fd->count) > 1)) { 2427a016f338SJANAK DESAI *new_fdp = dup_fd(fd, &error); 2428a016f338SJANAK DESAI if (!*new_fdp) 2429a016f338SJANAK DESAI return error; 2430a016f338SJANAK DESAI } 2431cf2e340fSJANAK DESAI 2432cf2e340fSJANAK DESAI return 0; 2433cf2e340fSJANAK DESAI } 2434cf2e340fSJANAK DESAI 2435cf2e340fSJANAK DESAI /* 2436cf2e340fSJANAK DESAI * unshare allows a process to 'unshare' part of the process 2437cf2e340fSJANAK DESAI * context which was originally shared using clone. copy_* 2438cf2e340fSJANAK DESAI * functions used by do_fork() cannot be used here directly 2439cf2e340fSJANAK DESAI * because they modify an inactive task_struct that is being 2440cf2e340fSJANAK DESAI * constructed. Here we are modifying the current, active, 2441cf2e340fSJANAK DESAI * task_struct. 2442cf2e340fSJANAK DESAI */ 24439b32105eSDominik Brodowski int ksys_unshare(unsigned long unshare_flags) 2444cf2e340fSJANAK DESAI { 2445cf2e340fSJANAK DESAI struct fs_struct *fs, *new_fs = NULL; 2446cf2e340fSJANAK DESAI struct files_struct *fd, *new_fd = NULL; 2447b2e0d987SEric W. Biederman struct cred *new_cred = NULL; 2448cf7b708cSPavel Emelyanov struct nsproxy *new_nsproxy = NULL; 24499edff4abSManfred Spraul int do_sysvsem = 0; 24509bfb23fcSOleg Nesterov int err; 2451cf2e340fSJANAK DESAI 245250804fe3SEric W. Biederman /* 2453faf00da5SEric W. Biederman * If unsharing a user namespace must also unshare the thread group 2454faf00da5SEric W. Biederman * and unshare the filesystem root and working directories. 2455b2e0d987SEric W. Biederman */ 2456b2e0d987SEric W. Biederman if (unshare_flags & CLONE_NEWUSER) 2457e66eded8SEric W. Biederman unshare_flags |= CLONE_THREAD | CLONE_FS; 2458b2e0d987SEric W. Biederman /* 245950804fe3SEric W. Biederman * If unsharing vm, must also unshare signal handlers. 246050804fe3SEric W. Biederman */ 246150804fe3SEric W. Biederman if (unshare_flags & CLONE_VM) 246250804fe3SEric W. Biederman unshare_flags |= CLONE_SIGHAND; 24636013f67fSManfred Spraul /* 246412c641abSEric W. Biederman * If unsharing a signal handlers, must also unshare the signal queues. 246512c641abSEric W. Biederman */ 246612c641abSEric W. Biederman if (unshare_flags & CLONE_SIGHAND) 246712c641abSEric W. Biederman unshare_flags |= CLONE_THREAD; 246812c641abSEric W. Biederman /* 24699bfb23fcSOleg Nesterov * If unsharing namespace, must also unshare filesystem information. 24709bfb23fcSOleg Nesterov */ 24719bfb23fcSOleg Nesterov if (unshare_flags & CLONE_NEWNS) 24729bfb23fcSOleg Nesterov unshare_flags |= CLONE_FS; 247350804fe3SEric W. Biederman 247450804fe3SEric W. Biederman err = check_unshare_flags(unshare_flags); 247550804fe3SEric W. Biederman if (err) 247650804fe3SEric W. Biederman goto bad_unshare_out; 24779bfb23fcSOleg Nesterov /* 24786013f67fSManfred Spraul * CLONE_NEWIPC must also detach from the undolist: after switching 24796013f67fSManfred Spraul * to a new ipc namespace, the semaphore arrays from the old 24806013f67fSManfred Spraul * namespace are unreachable. 24816013f67fSManfred Spraul */ 24826013f67fSManfred Spraul if (unshare_flags & (CLONE_NEWIPC|CLONE_SYSVSEM)) 24839edff4abSManfred Spraul do_sysvsem = 1; 2484fb0a685cSDaniel Rebelo de Oliveira err = unshare_fs(unshare_flags, &new_fs); 2485fb0a685cSDaniel Rebelo de Oliveira if (err) 24869bfb23fcSOleg Nesterov goto bad_unshare_out; 2487fb0a685cSDaniel Rebelo de Oliveira err = unshare_fd(unshare_flags, &new_fd); 2488fb0a685cSDaniel Rebelo de Oliveira if (err) 24899bfb23fcSOleg Nesterov goto bad_unshare_cleanup_fs; 2490b2e0d987SEric W. Biederman err = unshare_userns(unshare_flags, &new_cred); 2491fb0a685cSDaniel Rebelo de Oliveira if (err) 24929edff4abSManfred Spraul goto bad_unshare_cleanup_fd; 2493b2e0d987SEric W. Biederman err = unshare_nsproxy_namespaces(unshare_flags, &new_nsproxy, 2494b2e0d987SEric W. Biederman new_cred, new_fs); 2495b2e0d987SEric W. Biederman if (err) 2496b2e0d987SEric W. Biederman goto bad_unshare_cleanup_cred; 2497cf2e340fSJANAK DESAI 2498b2e0d987SEric W. Biederman if (new_fs || new_fd || do_sysvsem || new_cred || new_nsproxy) { 24999edff4abSManfred Spraul if (do_sysvsem) { 25009edff4abSManfred Spraul /* 25019edff4abSManfred Spraul * CLONE_SYSVSEM is equivalent to sys_exit(). 25029edff4abSManfred Spraul */ 25039edff4abSManfred Spraul exit_sem(current); 25049edff4abSManfred Spraul } 2505ab602f79SJack Miller if (unshare_flags & CLONE_NEWIPC) { 2506ab602f79SJack Miller /* Orphan segments in old ns (see sem above). */ 2507ab602f79SJack Miller exit_shm(current); 2508ab602f79SJack Miller shm_init_task(current); 2509ab602f79SJack Miller } 2510ab516013SSerge E. Hallyn 25116f977e6bSAlan Cox if (new_nsproxy) 2512cf7b708cSPavel Emelyanov switch_task_namespaces(current, new_nsproxy); 2513cf2e340fSJANAK DESAI 2514cf7b708cSPavel Emelyanov task_lock(current); 2515cf7b708cSPavel Emelyanov 2516cf2e340fSJANAK DESAI if (new_fs) { 2517cf2e340fSJANAK DESAI fs = current->fs; 25182a4419b5SNick Piggin spin_lock(&fs->lock); 2519cf2e340fSJANAK DESAI current->fs = new_fs; 2520498052bbSAl Viro if (--fs->users) 2521498052bbSAl Viro new_fs = NULL; 2522498052bbSAl Viro else 2523cf2e340fSJANAK DESAI new_fs = fs; 25242a4419b5SNick Piggin spin_unlock(&fs->lock); 2525cf2e340fSJANAK DESAI } 2526cf2e340fSJANAK DESAI 2527cf2e340fSJANAK DESAI if (new_fd) { 2528cf2e340fSJANAK DESAI fd = current->files; 2529cf2e340fSJANAK DESAI current->files = new_fd; 2530cf2e340fSJANAK DESAI new_fd = fd; 2531cf2e340fSJANAK DESAI } 2532cf2e340fSJANAK DESAI 2533cf2e340fSJANAK DESAI task_unlock(current); 2534b2e0d987SEric W. Biederman 2535b2e0d987SEric W. Biederman if (new_cred) { 2536b2e0d987SEric W. Biederman /* Install the new user namespace */ 2537b2e0d987SEric W. Biederman commit_creds(new_cred); 2538b2e0d987SEric W. Biederman new_cred = NULL; 2539b2e0d987SEric W. Biederman } 2540cf2e340fSJANAK DESAI } 2541cf2e340fSJANAK DESAI 2542e4222673SHari Bathini perf_event_namespaces(current); 2543e4222673SHari Bathini 2544b2e0d987SEric W. Biederman bad_unshare_cleanup_cred: 2545b2e0d987SEric W. Biederman if (new_cred) 2546b2e0d987SEric W. Biederman put_cred(new_cred); 2547cf2e340fSJANAK DESAI bad_unshare_cleanup_fd: 2548cf2e340fSJANAK DESAI if (new_fd) 2549cf2e340fSJANAK DESAI put_files_struct(new_fd); 2550cf2e340fSJANAK DESAI 2551cf2e340fSJANAK DESAI bad_unshare_cleanup_fs: 2552cf2e340fSJANAK DESAI if (new_fs) 2553498052bbSAl Viro free_fs_struct(new_fs); 2554cf2e340fSJANAK DESAI 2555cf2e340fSJANAK DESAI bad_unshare_out: 2556cf2e340fSJANAK DESAI return err; 2557cf2e340fSJANAK DESAI } 25583b125388SAl Viro 25599b32105eSDominik Brodowski SYSCALL_DEFINE1(unshare, unsigned long, unshare_flags) 25609b32105eSDominik Brodowski { 25619b32105eSDominik Brodowski return ksys_unshare(unshare_flags); 25629b32105eSDominik Brodowski } 25639b32105eSDominik Brodowski 25643b125388SAl Viro /* 25653b125388SAl Viro * Helper to unshare the files of the current task. 25663b125388SAl Viro * We don't want to expose copy_files internals to 25673b125388SAl Viro * the exec layer of the kernel. 25683b125388SAl Viro */ 25693b125388SAl Viro 25703b125388SAl Viro int unshare_files(struct files_struct **displaced) 25713b125388SAl Viro { 25723b125388SAl Viro struct task_struct *task = current; 257350704516SAl Viro struct files_struct *copy = NULL; 25743b125388SAl Viro int error; 25753b125388SAl Viro 25763b125388SAl Viro error = unshare_fd(CLONE_FILES, ©); 25773b125388SAl Viro if (error || !copy) { 25783b125388SAl Viro *displaced = NULL; 25793b125388SAl Viro return error; 25803b125388SAl Viro } 25813b125388SAl Viro *displaced = task->files; 25823b125388SAl Viro task_lock(task); 25833b125388SAl Viro task->files = copy; 25843b125388SAl Viro task_unlock(task); 25853b125388SAl Viro return 0; 25863b125388SAl Viro } 258716db3d3fSHeinrich Schuchardt 258816db3d3fSHeinrich Schuchardt int sysctl_max_threads(struct ctl_table *table, int write, 258916db3d3fSHeinrich Schuchardt void __user *buffer, size_t *lenp, loff_t *ppos) 259016db3d3fSHeinrich Schuchardt { 259116db3d3fSHeinrich Schuchardt struct ctl_table t; 259216db3d3fSHeinrich Schuchardt int ret; 259316db3d3fSHeinrich Schuchardt int threads = max_threads; 259416db3d3fSHeinrich Schuchardt int min = MIN_THREADS; 259516db3d3fSHeinrich Schuchardt int max = MAX_THREADS; 259616db3d3fSHeinrich Schuchardt 259716db3d3fSHeinrich Schuchardt t = *table; 259816db3d3fSHeinrich Schuchardt t.data = &threads; 259916db3d3fSHeinrich Schuchardt t.extra1 = &min; 260016db3d3fSHeinrich Schuchardt t.extra2 = &max; 260116db3d3fSHeinrich Schuchardt 260216db3d3fSHeinrich Schuchardt ret = proc_dointvec_minmax(&t, write, buffer, lenp, ppos); 260316db3d3fSHeinrich Schuchardt if (ret || !write) 260416db3d3fSHeinrich Schuchardt return ret; 260516db3d3fSHeinrich Schuchardt 260616db3d3fSHeinrich Schuchardt set_max_threads(threads); 260716db3d3fSHeinrich Schuchardt 260816db3d3fSHeinrich Schuchardt return 0; 260916db3d3fSHeinrich Schuchardt } 2610