11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * mm/mmap.c 31da177e4SLinus Torvalds * 41da177e4SLinus Torvalds * Written by obz. 51da177e4SLinus Torvalds * 6046c6884SAlan Cox * Address space accounting code <alan@lxorguk.ukuu.org.uk> 71da177e4SLinus Torvalds */ 81da177e4SLinus Torvalds 9b1de0d13SMitchel Humpherys #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 10b1de0d13SMitchel Humpherys 11e8420a8eSCyril Hrubis #include <linux/kernel.h> 121da177e4SLinus Torvalds #include <linux/slab.h> 134af3c9ccSAlexey Dobriyan #include <linux/backing-dev.h> 141da177e4SLinus Torvalds #include <linux/mm.h> 15615d6e87SDavidlohr Bueso #include <linux/vmacache.h> 161da177e4SLinus Torvalds #include <linux/shm.h> 171da177e4SLinus Torvalds #include <linux/mman.h> 181da177e4SLinus Torvalds #include <linux/pagemap.h> 191da177e4SLinus Torvalds #include <linux/swap.h> 201da177e4SLinus Torvalds #include <linux/syscalls.h> 21c59ede7bSRandy.Dunlap #include <linux/capability.h> 221da177e4SLinus Torvalds #include <linux/init.h> 231da177e4SLinus Torvalds #include <linux/file.h> 241da177e4SLinus Torvalds #include <linux/fs.h> 251da177e4SLinus Torvalds #include <linux/personality.h> 261da177e4SLinus Torvalds #include <linux/security.h> 271da177e4SLinus Torvalds #include <linux/hugetlb.h> 28c01d5b30SHugh Dickins #include <linux/shmem_fs.h> 291da177e4SLinus Torvalds #include <linux/profile.h> 30b95f1b31SPaul Gortmaker #include <linux/export.h> 311da177e4SLinus Torvalds #include <linux/mount.h> 321da177e4SLinus Torvalds #include <linux/mempolicy.h> 331da177e4SLinus Torvalds #include <linux/rmap.h> 34cddb8a5cSAndrea Arcangeli #include <linux/mmu_notifier.h> 3582f71ae4SKonstantin Khlebnikov #include <linux/mmdebug.h> 36cdd6c482SIngo Molnar #include <linux/perf_event.h> 37120a795dSAl Viro #include <linux/audit.h> 38b15d00b6SAndrea Arcangeli #include <linux/khugepaged.h> 392b144498SSrikar Dronamraju #include <linux/uprobes.h> 40d3737187SMichel Lespinasse #include <linux/rbtree_augmented.h> 411640879aSAndrew Shewmaker #include <linux/notifier.h> 421640879aSAndrew Shewmaker #include <linux/memory.h> 43b1de0d13SMitchel Humpherys #include <linux/printk.h> 4419a809afSAndrea Arcangeli #include <linux/userfaultfd_k.h> 45d977d56cSKonstantin Khlebnikov #include <linux/moduleparam.h> 4662b5f7d0SDave Hansen #include <linux/pkeys.h> 4721292580SAndrea Arcangeli #include <linux/oom.h> 481da177e4SLinus Torvalds 497c0f6ba6SLinus Torvalds #include <linux/uaccess.h> 501da177e4SLinus Torvalds #include <asm/cacheflush.h> 511da177e4SLinus Torvalds #include <asm/tlb.h> 52d6dd61c8SJeremy Fitzhardinge #include <asm/mmu_context.h> 531da177e4SLinus Torvalds 5442b77728SJan Beulich #include "internal.h" 5542b77728SJan Beulich 563a459756SKirill Korotaev #ifndef arch_mmap_check 573a459756SKirill Korotaev #define arch_mmap_check(addr, len, flags) (0) 583a459756SKirill Korotaev #endif 593a459756SKirill Korotaev 60d07e2259SDaniel Cashman #ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS 61d07e2259SDaniel Cashman const int mmap_rnd_bits_min = CONFIG_ARCH_MMAP_RND_BITS_MIN; 62d07e2259SDaniel Cashman const int mmap_rnd_bits_max = CONFIG_ARCH_MMAP_RND_BITS_MAX; 63d07e2259SDaniel Cashman int mmap_rnd_bits __read_mostly = CONFIG_ARCH_MMAP_RND_BITS; 64d07e2259SDaniel Cashman #endif 65d07e2259SDaniel Cashman #ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS 66d07e2259SDaniel Cashman const int mmap_rnd_compat_bits_min = CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN; 67d07e2259SDaniel Cashman const int mmap_rnd_compat_bits_max = CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX; 68d07e2259SDaniel Cashman int mmap_rnd_compat_bits __read_mostly = CONFIG_ARCH_MMAP_RND_COMPAT_BITS; 69d07e2259SDaniel Cashman #endif 70d07e2259SDaniel Cashman 71f4fcd558SKonstantin Khlebnikov static bool ignore_rlimit_data; 72d977d56cSKonstantin Khlebnikov core_param(ignore_rlimit_data, ignore_rlimit_data, bool, 0644); 73d07e2259SDaniel Cashman 74e0da382cSHugh Dickins static void unmap_region(struct mm_struct *mm, 75e0da382cSHugh Dickins struct vm_area_struct *vma, struct vm_area_struct *prev, 76e0da382cSHugh Dickins unsigned long start, unsigned long end); 77e0da382cSHugh Dickins 781da177e4SLinus Torvalds /* description of effects of mapping type and prot in current implementation. 791da177e4SLinus Torvalds * this is due to the limited x86 page protection hardware. The expected 801da177e4SLinus Torvalds * behavior is in parens: 811da177e4SLinus Torvalds * 821da177e4SLinus Torvalds * map_type prot 831da177e4SLinus Torvalds * PROT_NONE PROT_READ PROT_WRITE PROT_EXEC 841da177e4SLinus Torvalds * MAP_SHARED r: (no) no r: (yes) yes r: (no) yes r: (no) yes 851da177e4SLinus Torvalds * w: (no) no w: (no) no w: (yes) yes w: (no) no 861da177e4SLinus Torvalds * x: (no) no x: (no) yes x: (no) yes x: (yes) yes 871da177e4SLinus Torvalds * 881da177e4SLinus Torvalds * MAP_PRIVATE r: (no) no r: (yes) yes r: (no) yes r: (no) yes 891da177e4SLinus Torvalds * w: (no) no w: (no) no w: (copy) copy w: (no) no 901da177e4SLinus Torvalds * x: (no) no x: (no) yes x: (no) yes x: (yes) yes 911da177e4SLinus Torvalds * 92cab15ce6SCatalin Marinas * On arm64, PROT_EXEC has the following behaviour for both MAP_SHARED and 93cab15ce6SCatalin Marinas * MAP_PRIVATE: 94cab15ce6SCatalin Marinas * r: (no) no 95cab15ce6SCatalin Marinas * w: (no) no 96cab15ce6SCatalin Marinas * x: (yes) yes 971da177e4SLinus Torvalds */ 98ac34ceafSDaniel Micay pgprot_t protection_map[16] __ro_after_init = { 991da177e4SLinus Torvalds __P000, __P001, __P010, __P011, __P100, __P101, __P110, __P111, 1001da177e4SLinus Torvalds __S000, __S001, __S010, __S011, __S100, __S101, __S110, __S111 1011da177e4SLinus Torvalds }; 1021da177e4SLinus Torvalds 103316d097cSDave Hansen #ifndef CONFIG_ARCH_HAS_FILTER_PGPROT 104316d097cSDave Hansen static inline pgprot_t arch_filter_pgprot(pgprot_t prot) 105316d097cSDave Hansen { 106316d097cSDave Hansen return prot; 107316d097cSDave Hansen } 108316d097cSDave Hansen #endif 109316d097cSDave Hansen 110804af2cfSHugh Dickins pgprot_t vm_get_page_prot(unsigned long vm_flags) 111804af2cfSHugh Dickins { 112316d097cSDave Hansen pgprot_t ret = __pgprot(pgprot_val(protection_map[vm_flags & 113b845f313SDave Kleikamp (VM_READ|VM_WRITE|VM_EXEC|VM_SHARED)]) | 114b845f313SDave Kleikamp pgprot_val(arch_vm_get_page_prot(vm_flags))); 115316d097cSDave Hansen 116316d097cSDave Hansen return arch_filter_pgprot(ret); 117804af2cfSHugh Dickins } 118804af2cfSHugh Dickins EXPORT_SYMBOL(vm_get_page_prot); 119804af2cfSHugh Dickins 12064e45507SPeter Feiner static pgprot_t vm_pgprot_modify(pgprot_t oldprot, unsigned long vm_flags) 12164e45507SPeter Feiner { 12264e45507SPeter Feiner return pgprot_modify(oldprot, vm_get_page_prot(vm_flags)); 12364e45507SPeter Feiner } 12464e45507SPeter Feiner 12564e45507SPeter Feiner /* Update vma->vm_page_prot to reflect vma->vm_flags. */ 12664e45507SPeter Feiner void vma_set_page_prot(struct vm_area_struct *vma) 12764e45507SPeter Feiner { 12864e45507SPeter Feiner unsigned long vm_flags = vma->vm_flags; 1296d2329f8SAndrea Arcangeli pgprot_t vm_page_prot; 13064e45507SPeter Feiner 1316d2329f8SAndrea Arcangeli vm_page_prot = vm_pgprot_modify(vma->vm_page_prot, vm_flags); 1326d2329f8SAndrea Arcangeli if (vma_wants_writenotify(vma, vm_page_prot)) { 13364e45507SPeter Feiner vm_flags &= ~VM_SHARED; 1346d2329f8SAndrea Arcangeli vm_page_prot = vm_pgprot_modify(vm_page_prot, vm_flags); 13564e45507SPeter Feiner } 1366d2329f8SAndrea Arcangeli /* remove_protection_ptes reads vma->vm_page_prot without mmap_sem */ 1376d2329f8SAndrea Arcangeli WRITE_ONCE(vma->vm_page_prot, vm_page_prot); 13864e45507SPeter Feiner } 13964e45507SPeter Feiner 1401da177e4SLinus Torvalds /* 141c8c06efaSDavidlohr Bueso * Requires inode->i_mapping->i_mmap_rwsem 1421da177e4SLinus Torvalds */ 1431da177e4SLinus Torvalds static void __remove_shared_vm_struct(struct vm_area_struct *vma, 1441da177e4SLinus Torvalds struct file *file, struct address_space *mapping) 1451da177e4SLinus Torvalds { 1461da177e4SLinus Torvalds if (vma->vm_flags & VM_DENYWRITE) 147496ad9aaSAl Viro atomic_inc(&file_inode(file)->i_writecount); 1481da177e4SLinus Torvalds if (vma->vm_flags & VM_SHARED) 1494bb5f5d9SDavid Herrmann mapping_unmap_writable(mapping); 1501da177e4SLinus Torvalds 1511da177e4SLinus Torvalds flush_dcache_mmap_lock(mapping); 1526b2dbba8SMichel Lespinasse vma_interval_tree_remove(vma, &mapping->i_mmap); 1531da177e4SLinus Torvalds flush_dcache_mmap_unlock(mapping); 1541da177e4SLinus Torvalds } 1551da177e4SLinus Torvalds 1561da177e4SLinus Torvalds /* 1576b2dbba8SMichel Lespinasse * Unlink a file-based vm structure from its interval tree, to hide 158a8fb5618SHugh Dickins * vma from rmap and vmtruncate before freeing its page tables. 1591da177e4SLinus Torvalds */ 160a8fb5618SHugh Dickins void unlink_file_vma(struct vm_area_struct *vma) 1611da177e4SLinus Torvalds { 1621da177e4SLinus Torvalds struct file *file = vma->vm_file; 1631da177e4SLinus Torvalds 1641da177e4SLinus Torvalds if (file) { 1651da177e4SLinus Torvalds struct address_space *mapping = file->f_mapping; 16683cde9e8SDavidlohr Bueso i_mmap_lock_write(mapping); 1671da177e4SLinus Torvalds __remove_shared_vm_struct(vma, file, mapping); 16883cde9e8SDavidlohr Bueso i_mmap_unlock_write(mapping); 1691da177e4SLinus Torvalds } 170a8fb5618SHugh Dickins } 171a8fb5618SHugh Dickins 172a8fb5618SHugh Dickins /* 173a8fb5618SHugh Dickins * Close a vm structure and free it, returning the next. 174a8fb5618SHugh Dickins */ 175a8fb5618SHugh Dickins static struct vm_area_struct *remove_vma(struct vm_area_struct *vma) 176a8fb5618SHugh Dickins { 177a8fb5618SHugh Dickins struct vm_area_struct *next = vma->vm_next; 178a8fb5618SHugh Dickins 179a8fb5618SHugh Dickins might_sleep(); 1801da177e4SLinus Torvalds if (vma->vm_ops && vma->vm_ops->close) 1811da177e4SLinus Torvalds vma->vm_ops->close(vma); 182e9714acfSKonstantin Khlebnikov if (vma->vm_file) 183a8fb5618SHugh Dickins fput(vma->vm_file); 184f0be3d32SLee Schermerhorn mpol_put(vma_policy(vma)); 1853928d4f5SLinus Torvalds vm_area_free(vma); 186a8fb5618SHugh Dickins return next; 1871da177e4SLinus Torvalds } 1881da177e4SLinus Torvalds 189bb177a73SMichal Hocko static int do_brk_flags(unsigned long addr, unsigned long request, unsigned long flags, 190bb177a73SMichal Hocko struct list_head *uf); 1916a6160a7SHeiko Carstens SYSCALL_DEFINE1(brk, unsigned long, brk) 1921da177e4SLinus Torvalds { 1938764b338SCyrill Gorcunov unsigned long retval; 1941da177e4SLinus Torvalds unsigned long newbrk, oldbrk; 1951da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 1961be7107fSHugh Dickins struct vm_area_struct *next; 197a5b4592cSJiri Kosina unsigned long min_brk; 198128557ffSMichel Lespinasse bool populate; 199897ab3e0SMike Rapoport LIST_HEAD(uf); 2001da177e4SLinus Torvalds 201dc0ef0dfSMichal Hocko if (down_write_killable(&mm->mmap_sem)) 202dc0ef0dfSMichal Hocko return -EINTR; 2031da177e4SLinus Torvalds 204a5b4592cSJiri Kosina #ifdef CONFIG_COMPAT_BRK 2055520e894SJiri Kosina /* 2065520e894SJiri Kosina * CONFIG_COMPAT_BRK can still be overridden by setting 2075520e894SJiri Kosina * randomize_va_space to 2, which will still cause mm->start_brk 2085520e894SJiri Kosina * to be arbitrarily shifted 2095520e894SJiri Kosina */ 2104471a675SJiri Kosina if (current->brk_randomized) 2115520e894SJiri Kosina min_brk = mm->start_brk; 2125520e894SJiri Kosina else 2135520e894SJiri Kosina min_brk = mm->end_data; 214a5b4592cSJiri Kosina #else 215a5b4592cSJiri Kosina min_brk = mm->start_brk; 216a5b4592cSJiri Kosina #endif 217a5b4592cSJiri Kosina if (brk < min_brk) 2181da177e4SLinus Torvalds goto out; 2191e624196SRam Gupta 2201e624196SRam Gupta /* 2211e624196SRam Gupta * Check against rlimit here. If this check is done later after the test 2221e624196SRam Gupta * of oldbrk with newbrk then it can escape the test and let the data 2231e624196SRam Gupta * segment grow beyond its set limit the in case where the limit is 2241e624196SRam Gupta * not page aligned -Ram Gupta 2251e624196SRam Gupta */ 2268764b338SCyrill Gorcunov if (check_data_rlimit(rlimit(RLIMIT_DATA), brk, mm->start_brk, 2278764b338SCyrill Gorcunov mm->end_data, mm->start_data)) 2281e624196SRam Gupta goto out; 2291e624196SRam Gupta 2301da177e4SLinus Torvalds newbrk = PAGE_ALIGN(brk); 2311da177e4SLinus Torvalds oldbrk = PAGE_ALIGN(mm->brk); 2321da177e4SLinus Torvalds if (oldbrk == newbrk) 2331da177e4SLinus Torvalds goto set_brk; 2341da177e4SLinus Torvalds 2351da177e4SLinus Torvalds /* Always allow shrinking brk. */ 2361da177e4SLinus Torvalds if (brk <= mm->brk) { 237897ab3e0SMike Rapoport if (!do_munmap(mm, newbrk, oldbrk-newbrk, &uf)) 2381da177e4SLinus Torvalds goto set_brk; 2391da177e4SLinus Torvalds goto out; 2401da177e4SLinus Torvalds } 2411da177e4SLinus Torvalds 2421da177e4SLinus Torvalds /* Check against existing mmap mappings. */ 2431be7107fSHugh Dickins next = find_vma(mm, oldbrk); 2441be7107fSHugh Dickins if (next && newbrk + PAGE_SIZE > vm_start_gap(next)) 2451da177e4SLinus Torvalds goto out; 2461da177e4SLinus Torvalds 2471da177e4SLinus Torvalds /* Ok, looks good - let it rip. */ 248bb177a73SMichal Hocko if (do_brk_flags(oldbrk, newbrk-oldbrk, 0, &uf) < 0) 2491da177e4SLinus Torvalds goto out; 250128557ffSMichel Lespinasse 2511da177e4SLinus Torvalds set_brk: 2521da177e4SLinus Torvalds mm->brk = brk; 253128557ffSMichel Lespinasse populate = newbrk > oldbrk && (mm->def_flags & VM_LOCKED) != 0; 254128557ffSMichel Lespinasse up_write(&mm->mmap_sem); 255897ab3e0SMike Rapoport userfaultfd_unmap_complete(mm, &uf); 256128557ffSMichel Lespinasse if (populate) 257128557ffSMichel Lespinasse mm_populate(oldbrk, newbrk - oldbrk); 258128557ffSMichel Lespinasse return brk; 259128557ffSMichel Lespinasse 2601da177e4SLinus Torvalds out: 2611da177e4SLinus Torvalds retval = mm->brk; 2621da177e4SLinus Torvalds up_write(&mm->mmap_sem); 2631da177e4SLinus Torvalds return retval; 2641da177e4SLinus Torvalds } 2651da177e4SLinus Torvalds 266d3737187SMichel Lespinasse static long vma_compute_subtree_gap(struct vm_area_struct *vma) 267d3737187SMichel Lespinasse { 2681be7107fSHugh Dickins unsigned long max, prev_end, subtree_gap; 2691be7107fSHugh Dickins 2701be7107fSHugh Dickins /* 2711be7107fSHugh Dickins * Note: in the rare case of a VM_GROWSDOWN above a VM_GROWSUP, we 2721be7107fSHugh Dickins * allow two stack_guard_gaps between them here, and when choosing 2731be7107fSHugh Dickins * an unmapped area; whereas when expanding we only require one. 2741be7107fSHugh Dickins * That's a little inconsistent, but keeps the code here simpler. 2751be7107fSHugh Dickins */ 2761be7107fSHugh Dickins max = vm_start_gap(vma); 2771be7107fSHugh Dickins if (vma->vm_prev) { 2781be7107fSHugh Dickins prev_end = vm_end_gap(vma->vm_prev); 2791be7107fSHugh Dickins if (max > prev_end) 2801be7107fSHugh Dickins max -= prev_end; 2811be7107fSHugh Dickins else 2821be7107fSHugh Dickins max = 0; 2831be7107fSHugh Dickins } 284d3737187SMichel Lespinasse if (vma->vm_rb.rb_left) { 285d3737187SMichel Lespinasse subtree_gap = rb_entry(vma->vm_rb.rb_left, 286d3737187SMichel Lespinasse struct vm_area_struct, vm_rb)->rb_subtree_gap; 287d3737187SMichel Lespinasse if (subtree_gap > max) 288d3737187SMichel Lespinasse max = subtree_gap; 289d3737187SMichel Lespinasse } 290d3737187SMichel Lespinasse if (vma->vm_rb.rb_right) { 291d3737187SMichel Lespinasse subtree_gap = rb_entry(vma->vm_rb.rb_right, 292d3737187SMichel Lespinasse struct vm_area_struct, vm_rb)->rb_subtree_gap; 293d3737187SMichel Lespinasse if (subtree_gap > max) 294d3737187SMichel Lespinasse max = subtree_gap; 295d3737187SMichel Lespinasse } 296d3737187SMichel Lespinasse return max; 297d3737187SMichel Lespinasse } 298d3737187SMichel Lespinasse 299ed8ea815SMichel Lespinasse #ifdef CONFIG_DEBUG_VM_RB 300acf128d0SAndrea Arcangeli static int browse_rb(struct mm_struct *mm) 3011da177e4SLinus Torvalds { 302acf128d0SAndrea Arcangeli struct rb_root *root = &mm->mm_rb; 3035a0768f6SMichel Lespinasse int i = 0, j, bug = 0; 3041da177e4SLinus Torvalds struct rb_node *nd, *pn = NULL; 3051da177e4SLinus Torvalds unsigned long prev = 0, pend = 0; 3061da177e4SLinus Torvalds 3071da177e4SLinus Torvalds for (nd = rb_first(root); nd; nd = rb_next(nd)) { 3081da177e4SLinus Torvalds struct vm_area_struct *vma; 3091da177e4SLinus Torvalds vma = rb_entry(nd, struct vm_area_struct, vm_rb); 3105a0768f6SMichel Lespinasse if (vma->vm_start < prev) { 311ff26f70fSAndrew Morton pr_emerg("vm_start %lx < prev %lx\n", 312ff26f70fSAndrew Morton vma->vm_start, prev); 3135a0768f6SMichel Lespinasse bug = 1; 3145a0768f6SMichel Lespinasse } 3155a0768f6SMichel Lespinasse if (vma->vm_start < pend) { 316ff26f70fSAndrew Morton pr_emerg("vm_start %lx < pend %lx\n", 317ff26f70fSAndrew Morton vma->vm_start, pend); 3185a0768f6SMichel Lespinasse bug = 1; 3195a0768f6SMichel Lespinasse } 3205a0768f6SMichel Lespinasse if (vma->vm_start > vma->vm_end) { 321ff26f70fSAndrew Morton pr_emerg("vm_start %lx > vm_end %lx\n", 322ff26f70fSAndrew Morton vma->vm_start, vma->vm_end); 3235a0768f6SMichel Lespinasse bug = 1; 3245a0768f6SMichel Lespinasse } 325acf128d0SAndrea Arcangeli spin_lock(&mm->page_table_lock); 3265a0768f6SMichel Lespinasse if (vma->rb_subtree_gap != vma_compute_subtree_gap(vma)) { 3278542bdfcSSasha Levin pr_emerg("free gap %lx, correct %lx\n", 3285a0768f6SMichel Lespinasse vma->rb_subtree_gap, 3295a0768f6SMichel Lespinasse vma_compute_subtree_gap(vma)); 3305a0768f6SMichel Lespinasse bug = 1; 3315a0768f6SMichel Lespinasse } 332acf128d0SAndrea Arcangeli spin_unlock(&mm->page_table_lock); 3331da177e4SLinus Torvalds i++; 3341da177e4SLinus Torvalds pn = nd; 335d1af65d1SDavid Miller prev = vma->vm_start; 336d1af65d1SDavid Miller pend = vma->vm_end; 3371da177e4SLinus Torvalds } 3381da177e4SLinus Torvalds j = 0; 3395a0768f6SMichel Lespinasse for (nd = pn; nd; nd = rb_prev(nd)) 3401da177e4SLinus Torvalds j++; 3415a0768f6SMichel Lespinasse if (i != j) { 3428542bdfcSSasha Levin pr_emerg("backwards %d, forwards %d\n", j, i); 3435a0768f6SMichel Lespinasse bug = 1; 3441da177e4SLinus Torvalds } 3455a0768f6SMichel Lespinasse return bug ? -1 : i; 3461da177e4SLinus Torvalds } 3471da177e4SLinus Torvalds 348d3737187SMichel Lespinasse static void validate_mm_rb(struct rb_root *root, struct vm_area_struct *ignore) 349d3737187SMichel Lespinasse { 350d3737187SMichel Lespinasse struct rb_node *nd; 351d3737187SMichel Lespinasse 352d3737187SMichel Lespinasse for (nd = rb_first(root); nd; nd = rb_next(nd)) { 353d3737187SMichel Lespinasse struct vm_area_struct *vma; 354d3737187SMichel Lespinasse vma = rb_entry(nd, struct vm_area_struct, vm_rb); 35596dad67fSSasha Levin VM_BUG_ON_VMA(vma != ignore && 35696dad67fSSasha Levin vma->rb_subtree_gap != vma_compute_subtree_gap(vma), 35796dad67fSSasha Levin vma); 358d3737187SMichel Lespinasse } 3591da177e4SLinus Torvalds } 3601da177e4SLinus Torvalds 361eafd4dc4SRashika Kheria static void validate_mm(struct mm_struct *mm) 3621da177e4SLinus Torvalds { 3631da177e4SLinus Torvalds int bug = 0; 3641da177e4SLinus Torvalds int i = 0; 3655a0768f6SMichel Lespinasse unsigned long highest_address = 0; 366ed8ea815SMichel Lespinasse struct vm_area_struct *vma = mm->mmap; 367ff26f70fSAndrew Morton 368ed8ea815SMichel Lespinasse while (vma) { 36912352d3cSKonstantin Khlebnikov struct anon_vma *anon_vma = vma->anon_vma; 370ed8ea815SMichel Lespinasse struct anon_vma_chain *avc; 371ff26f70fSAndrew Morton 37212352d3cSKonstantin Khlebnikov if (anon_vma) { 37312352d3cSKonstantin Khlebnikov anon_vma_lock_read(anon_vma); 374ed8ea815SMichel Lespinasse list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 375ed8ea815SMichel Lespinasse anon_vma_interval_tree_verify(avc); 37612352d3cSKonstantin Khlebnikov anon_vma_unlock_read(anon_vma); 37712352d3cSKonstantin Khlebnikov } 37812352d3cSKonstantin Khlebnikov 3791be7107fSHugh Dickins highest_address = vm_end_gap(vma); 380ed8ea815SMichel Lespinasse vma = vma->vm_next; 3811da177e4SLinus Torvalds i++; 3821da177e4SLinus Torvalds } 3835a0768f6SMichel Lespinasse if (i != mm->map_count) { 3848542bdfcSSasha Levin pr_emerg("map_count %d vm_next %d\n", mm->map_count, i); 3855a0768f6SMichel Lespinasse bug = 1; 3865a0768f6SMichel Lespinasse } 3875a0768f6SMichel Lespinasse if (highest_address != mm->highest_vm_end) { 3888542bdfcSSasha Levin pr_emerg("mm->highest_vm_end %lx, found %lx\n", 3895a0768f6SMichel Lespinasse mm->highest_vm_end, highest_address); 3905a0768f6SMichel Lespinasse bug = 1; 3915a0768f6SMichel Lespinasse } 392acf128d0SAndrea Arcangeli i = browse_rb(mm); 3935a0768f6SMichel Lespinasse if (i != mm->map_count) { 394ff26f70fSAndrew Morton if (i != -1) 3958542bdfcSSasha Levin pr_emerg("map_count %d rb %d\n", mm->map_count, i); 3965a0768f6SMichel Lespinasse bug = 1; 3975a0768f6SMichel Lespinasse } 39896dad67fSSasha Levin VM_BUG_ON_MM(bug, mm); 3991da177e4SLinus Torvalds } 4001da177e4SLinus Torvalds #else 401d3737187SMichel Lespinasse #define validate_mm_rb(root, ignore) do { } while (0) 4021da177e4SLinus Torvalds #define validate_mm(mm) do { } while (0) 4031da177e4SLinus Torvalds #endif 4041da177e4SLinus Torvalds 405d3737187SMichel Lespinasse RB_DECLARE_CALLBACKS(static, vma_gap_callbacks, struct vm_area_struct, vm_rb, 406d3737187SMichel Lespinasse unsigned long, rb_subtree_gap, vma_compute_subtree_gap) 407d3737187SMichel Lespinasse 408d3737187SMichel Lespinasse /* 409d3737187SMichel Lespinasse * Update augmented rbtree rb_subtree_gap values after vma->vm_start or 410d3737187SMichel Lespinasse * vma->vm_prev->vm_end values changed, without modifying the vma's position 411d3737187SMichel Lespinasse * in the rbtree. 412d3737187SMichel Lespinasse */ 413d3737187SMichel Lespinasse static void vma_gap_update(struct vm_area_struct *vma) 414d3737187SMichel Lespinasse { 415d3737187SMichel Lespinasse /* 416d3737187SMichel Lespinasse * As it turns out, RB_DECLARE_CALLBACKS() already created a callback 417d3737187SMichel Lespinasse * function that does exacltly what we want. 418d3737187SMichel Lespinasse */ 419d3737187SMichel Lespinasse vma_gap_callbacks_propagate(&vma->vm_rb, NULL); 420d3737187SMichel Lespinasse } 421d3737187SMichel Lespinasse 422d3737187SMichel Lespinasse static inline void vma_rb_insert(struct vm_area_struct *vma, 423d3737187SMichel Lespinasse struct rb_root *root) 424d3737187SMichel Lespinasse { 425d3737187SMichel Lespinasse /* All rb_subtree_gap values must be consistent prior to insertion */ 426d3737187SMichel Lespinasse validate_mm_rb(root, NULL); 427d3737187SMichel Lespinasse 428d3737187SMichel Lespinasse rb_insert_augmented(&vma->vm_rb, root, &vma_gap_callbacks); 429d3737187SMichel Lespinasse } 430d3737187SMichel Lespinasse 4318f26e0b1SAndrea Arcangeli static void __vma_rb_erase(struct vm_area_struct *vma, struct rb_root *root) 4328f26e0b1SAndrea Arcangeli { 4338f26e0b1SAndrea Arcangeli /* 4348f26e0b1SAndrea Arcangeli * Note rb_erase_augmented is a fairly large inline function, 4358f26e0b1SAndrea Arcangeli * so make sure we instantiate it only once with our desired 4368f26e0b1SAndrea Arcangeli * augmented rbtree callbacks. 4378f26e0b1SAndrea Arcangeli */ 4388f26e0b1SAndrea Arcangeli rb_erase_augmented(&vma->vm_rb, root, &vma_gap_callbacks); 4398f26e0b1SAndrea Arcangeli } 4408f26e0b1SAndrea Arcangeli 4418f26e0b1SAndrea Arcangeli static __always_inline void vma_rb_erase_ignore(struct vm_area_struct *vma, 4428f26e0b1SAndrea Arcangeli struct rb_root *root, 4438f26e0b1SAndrea Arcangeli struct vm_area_struct *ignore) 4448f26e0b1SAndrea Arcangeli { 4458f26e0b1SAndrea Arcangeli /* 4468f26e0b1SAndrea Arcangeli * All rb_subtree_gap values must be consistent prior to erase, 4478f26e0b1SAndrea Arcangeli * with the possible exception of the "next" vma being erased if 4488f26e0b1SAndrea Arcangeli * next->vm_start was reduced. 4498f26e0b1SAndrea Arcangeli */ 4508f26e0b1SAndrea Arcangeli validate_mm_rb(root, ignore); 4518f26e0b1SAndrea Arcangeli 4528f26e0b1SAndrea Arcangeli __vma_rb_erase(vma, root); 4538f26e0b1SAndrea Arcangeli } 4548f26e0b1SAndrea Arcangeli 4558f26e0b1SAndrea Arcangeli static __always_inline void vma_rb_erase(struct vm_area_struct *vma, 4568f26e0b1SAndrea Arcangeli struct rb_root *root) 457d3737187SMichel Lespinasse { 458d3737187SMichel Lespinasse /* 459d3737187SMichel Lespinasse * All rb_subtree_gap values must be consistent prior to erase, 460d3737187SMichel Lespinasse * with the possible exception of the vma being erased. 461d3737187SMichel Lespinasse */ 462d3737187SMichel Lespinasse validate_mm_rb(root, vma); 463d3737187SMichel Lespinasse 4648f26e0b1SAndrea Arcangeli __vma_rb_erase(vma, root); 465d3737187SMichel Lespinasse } 466d3737187SMichel Lespinasse 467bf181b9fSMichel Lespinasse /* 468bf181b9fSMichel Lespinasse * vma has some anon_vma assigned, and is already inserted on that 469bf181b9fSMichel Lespinasse * anon_vma's interval trees. 470bf181b9fSMichel Lespinasse * 471bf181b9fSMichel Lespinasse * Before updating the vma's vm_start / vm_end / vm_pgoff fields, the 472bf181b9fSMichel Lespinasse * vma must be removed from the anon_vma's interval trees using 473bf181b9fSMichel Lespinasse * anon_vma_interval_tree_pre_update_vma(). 474bf181b9fSMichel Lespinasse * 475bf181b9fSMichel Lespinasse * After the update, the vma will be reinserted using 476bf181b9fSMichel Lespinasse * anon_vma_interval_tree_post_update_vma(). 477bf181b9fSMichel Lespinasse * 478bf181b9fSMichel Lespinasse * The entire update must be protected by exclusive mmap_sem and by 479bf181b9fSMichel Lespinasse * the root anon_vma's mutex. 480bf181b9fSMichel Lespinasse */ 481bf181b9fSMichel Lespinasse static inline void 482bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(struct vm_area_struct *vma) 483bf181b9fSMichel Lespinasse { 484bf181b9fSMichel Lespinasse struct anon_vma_chain *avc; 485bf181b9fSMichel Lespinasse 486bf181b9fSMichel Lespinasse list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 487bf181b9fSMichel Lespinasse anon_vma_interval_tree_remove(avc, &avc->anon_vma->rb_root); 488bf181b9fSMichel Lespinasse } 489bf181b9fSMichel Lespinasse 490bf181b9fSMichel Lespinasse static inline void 491bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(struct vm_area_struct *vma) 492bf181b9fSMichel Lespinasse { 493bf181b9fSMichel Lespinasse struct anon_vma_chain *avc; 494bf181b9fSMichel Lespinasse 495bf181b9fSMichel Lespinasse list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 496bf181b9fSMichel Lespinasse anon_vma_interval_tree_insert(avc, &avc->anon_vma->rb_root); 497bf181b9fSMichel Lespinasse } 498bf181b9fSMichel Lespinasse 4996597d783SHugh Dickins static int find_vma_links(struct mm_struct *mm, unsigned long addr, 5006597d783SHugh Dickins unsigned long end, struct vm_area_struct **pprev, 5016597d783SHugh Dickins struct rb_node ***rb_link, struct rb_node **rb_parent) 5021da177e4SLinus Torvalds { 5031da177e4SLinus Torvalds struct rb_node **__rb_link, *__rb_parent, *rb_prev; 5041da177e4SLinus Torvalds 5051da177e4SLinus Torvalds __rb_link = &mm->mm_rb.rb_node; 5061da177e4SLinus Torvalds rb_prev = __rb_parent = NULL; 5071da177e4SLinus Torvalds 5081da177e4SLinus Torvalds while (*__rb_link) { 5091da177e4SLinus Torvalds struct vm_area_struct *vma_tmp; 5101da177e4SLinus Torvalds 5111da177e4SLinus Torvalds __rb_parent = *__rb_link; 5121da177e4SLinus Torvalds vma_tmp = rb_entry(__rb_parent, struct vm_area_struct, vm_rb); 5131da177e4SLinus Torvalds 5141da177e4SLinus Torvalds if (vma_tmp->vm_end > addr) { 5156597d783SHugh Dickins /* Fail if an existing vma overlaps the area */ 5166597d783SHugh Dickins if (vma_tmp->vm_start < end) 5176597d783SHugh Dickins return -ENOMEM; 5181da177e4SLinus Torvalds __rb_link = &__rb_parent->rb_left; 5191da177e4SLinus Torvalds } else { 5201da177e4SLinus Torvalds rb_prev = __rb_parent; 5211da177e4SLinus Torvalds __rb_link = &__rb_parent->rb_right; 5221da177e4SLinus Torvalds } 5231da177e4SLinus Torvalds } 5241da177e4SLinus Torvalds 5251da177e4SLinus Torvalds *pprev = NULL; 5261da177e4SLinus Torvalds if (rb_prev) 5271da177e4SLinus Torvalds *pprev = rb_entry(rb_prev, struct vm_area_struct, vm_rb); 5281da177e4SLinus Torvalds *rb_link = __rb_link; 5291da177e4SLinus Torvalds *rb_parent = __rb_parent; 5306597d783SHugh Dickins return 0; 5311da177e4SLinus Torvalds } 5321da177e4SLinus Torvalds 533e8420a8eSCyril Hrubis static unsigned long count_vma_pages_range(struct mm_struct *mm, 534e8420a8eSCyril Hrubis unsigned long addr, unsigned long end) 535e8420a8eSCyril Hrubis { 536e8420a8eSCyril Hrubis unsigned long nr_pages = 0; 537e8420a8eSCyril Hrubis struct vm_area_struct *vma; 538e8420a8eSCyril Hrubis 539e8420a8eSCyril Hrubis /* Find first overlaping mapping */ 540e8420a8eSCyril Hrubis vma = find_vma_intersection(mm, addr, end); 541e8420a8eSCyril Hrubis if (!vma) 542e8420a8eSCyril Hrubis return 0; 543e8420a8eSCyril Hrubis 544e8420a8eSCyril Hrubis nr_pages = (min(end, vma->vm_end) - 545e8420a8eSCyril Hrubis max(addr, vma->vm_start)) >> PAGE_SHIFT; 546e8420a8eSCyril Hrubis 547e8420a8eSCyril Hrubis /* Iterate over the rest of the overlaps */ 548e8420a8eSCyril Hrubis for (vma = vma->vm_next; vma; vma = vma->vm_next) { 549e8420a8eSCyril Hrubis unsigned long overlap_len; 550e8420a8eSCyril Hrubis 551e8420a8eSCyril Hrubis if (vma->vm_start > end) 552e8420a8eSCyril Hrubis break; 553e8420a8eSCyril Hrubis 554e8420a8eSCyril Hrubis overlap_len = min(end, vma->vm_end) - vma->vm_start; 555e8420a8eSCyril Hrubis nr_pages += overlap_len >> PAGE_SHIFT; 556e8420a8eSCyril Hrubis } 557e8420a8eSCyril Hrubis 558e8420a8eSCyril Hrubis return nr_pages; 559e8420a8eSCyril Hrubis } 560e8420a8eSCyril Hrubis 5611da177e4SLinus Torvalds void __vma_link_rb(struct mm_struct *mm, struct vm_area_struct *vma, 5621da177e4SLinus Torvalds struct rb_node **rb_link, struct rb_node *rb_parent) 5631da177e4SLinus Torvalds { 564d3737187SMichel Lespinasse /* Update tracking information for the gap following the new vma. */ 565d3737187SMichel Lespinasse if (vma->vm_next) 566d3737187SMichel Lespinasse vma_gap_update(vma->vm_next); 567d3737187SMichel Lespinasse else 5681be7107fSHugh Dickins mm->highest_vm_end = vm_end_gap(vma); 569d3737187SMichel Lespinasse 570d3737187SMichel Lespinasse /* 571d3737187SMichel Lespinasse * vma->vm_prev wasn't known when we followed the rbtree to find the 572d3737187SMichel Lespinasse * correct insertion point for that vma. As a result, we could not 573d3737187SMichel Lespinasse * update the vma vm_rb parents rb_subtree_gap values on the way down. 574d3737187SMichel Lespinasse * So, we first insert the vma with a zero rb_subtree_gap value 575d3737187SMichel Lespinasse * (to be consistent with what we did on the way down), and then 576d3737187SMichel Lespinasse * immediately update the gap to the correct value. Finally we 577d3737187SMichel Lespinasse * rebalance the rbtree after all augmented values have been set. 578d3737187SMichel Lespinasse */ 5791da177e4SLinus Torvalds rb_link_node(&vma->vm_rb, rb_parent, rb_link); 580d3737187SMichel Lespinasse vma->rb_subtree_gap = 0; 581d3737187SMichel Lespinasse vma_gap_update(vma); 582d3737187SMichel Lespinasse vma_rb_insert(vma, &mm->mm_rb); 5831da177e4SLinus Torvalds } 5841da177e4SLinus Torvalds 585cb8f488cSDenys Vlasenko static void __vma_link_file(struct vm_area_struct *vma) 5861da177e4SLinus Torvalds { 5871da177e4SLinus Torvalds struct file *file; 5881da177e4SLinus Torvalds 5891da177e4SLinus Torvalds file = vma->vm_file; 5901da177e4SLinus Torvalds if (file) { 5911da177e4SLinus Torvalds struct address_space *mapping = file->f_mapping; 5921da177e4SLinus Torvalds 5931da177e4SLinus Torvalds if (vma->vm_flags & VM_DENYWRITE) 594496ad9aaSAl Viro atomic_dec(&file_inode(file)->i_writecount); 5951da177e4SLinus Torvalds if (vma->vm_flags & VM_SHARED) 5964bb5f5d9SDavid Herrmann atomic_inc(&mapping->i_mmap_writable); 5971da177e4SLinus Torvalds 5981da177e4SLinus Torvalds flush_dcache_mmap_lock(mapping); 5996b2dbba8SMichel Lespinasse vma_interval_tree_insert(vma, &mapping->i_mmap); 6001da177e4SLinus Torvalds flush_dcache_mmap_unlock(mapping); 6011da177e4SLinus Torvalds } 6021da177e4SLinus Torvalds } 6031da177e4SLinus Torvalds 6041da177e4SLinus Torvalds static void 6051da177e4SLinus Torvalds __vma_link(struct mm_struct *mm, struct vm_area_struct *vma, 6061da177e4SLinus Torvalds struct vm_area_struct *prev, struct rb_node **rb_link, 6071da177e4SLinus Torvalds struct rb_node *rb_parent) 6081da177e4SLinus Torvalds { 6091da177e4SLinus Torvalds __vma_link_list(mm, vma, prev, rb_parent); 6101da177e4SLinus Torvalds __vma_link_rb(mm, vma, rb_link, rb_parent); 6111da177e4SLinus Torvalds } 6121da177e4SLinus Torvalds 6131da177e4SLinus Torvalds static void vma_link(struct mm_struct *mm, struct vm_area_struct *vma, 6141da177e4SLinus Torvalds struct vm_area_struct *prev, struct rb_node **rb_link, 6151da177e4SLinus Torvalds struct rb_node *rb_parent) 6161da177e4SLinus Torvalds { 6171da177e4SLinus Torvalds struct address_space *mapping = NULL; 6181da177e4SLinus Torvalds 61964ac4940SHuang Shijie if (vma->vm_file) { 6201da177e4SLinus Torvalds mapping = vma->vm_file->f_mapping; 62183cde9e8SDavidlohr Bueso i_mmap_lock_write(mapping); 62264ac4940SHuang Shijie } 6231da177e4SLinus Torvalds 6241da177e4SLinus Torvalds __vma_link(mm, vma, prev, rb_link, rb_parent); 6251da177e4SLinus Torvalds __vma_link_file(vma); 6261da177e4SLinus Torvalds 6271da177e4SLinus Torvalds if (mapping) 62883cde9e8SDavidlohr Bueso i_mmap_unlock_write(mapping); 6291da177e4SLinus Torvalds 6301da177e4SLinus Torvalds mm->map_count++; 6311da177e4SLinus Torvalds validate_mm(mm); 6321da177e4SLinus Torvalds } 6331da177e4SLinus Torvalds 6341da177e4SLinus Torvalds /* 63588f6b4c3SKautuk Consul * Helper for vma_adjust() in the split_vma insert case: insert a vma into the 6366b2dbba8SMichel Lespinasse * mm's list and rbtree. It has already been inserted into the interval tree. 6371da177e4SLinus Torvalds */ 63848aae425SZhenwenXu static void __insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma) 6391da177e4SLinus Torvalds { 6406597d783SHugh Dickins struct vm_area_struct *prev; 6411da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 6421da177e4SLinus Torvalds 6436597d783SHugh Dickins if (find_vma_links(mm, vma->vm_start, vma->vm_end, 6446597d783SHugh Dickins &prev, &rb_link, &rb_parent)) 6456597d783SHugh Dickins BUG(); 6461da177e4SLinus Torvalds __vma_link(mm, vma, prev, rb_link, rb_parent); 6471da177e4SLinus Torvalds mm->map_count++; 6481da177e4SLinus Torvalds } 6491da177e4SLinus Torvalds 650e86f15eeSAndrea Arcangeli static __always_inline void __vma_unlink_common(struct mm_struct *mm, 651e86f15eeSAndrea Arcangeli struct vm_area_struct *vma, 652e86f15eeSAndrea Arcangeli struct vm_area_struct *prev, 6538f26e0b1SAndrea Arcangeli bool has_prev, 6548f26e0b1SAndrea Arcangeli struct vm_area_struct *ignore) 6551da177e4SLinus Torvalds { 656d3737187SMichel Lespinasse struct vm_area_struct *next; 657297c5eeeSLinus Torvalds 6588f26e0b1SAndrea Arcangeli vma_rb_erase_ignore(vma, &mm->mm_rb, ignore); 659e86f15eeSAndrea Arcangeli next = vma->vm_next; 660e86f15eeSAndrea Arcangeli if (has_prev) 661e86f15eeSAndrea Arcangeli prev->vm_next = next; 662e86f15eeSAndrea Arcangeli else { 663e86f15eeSAndrea Arcangeli prev = vma->vm_prev; 664e86f15eeSAndrea Arcangeli if (prev) 665e86f15eeSAndrea Arcangeli prev->vm_next = next; 666e86f15eeSAndrea Arcangeli else 667e86f15eeSAndrea Arcangeli mm->mmap = next; 668e86f15eeSAndrea Arcangeli } 669297c5eeeSLinus Torvalds if (next) 670297c5eeeSLinus Torvalds next->vm_prev = prev; 671615d6e87SDavidlohr Bueso 672615d6e87SDavidlohr Bueso /* Kill the cache */ 673615d6e87SDavidlohr Bueso vmacache_invalidate(mm); 6741da177e4SLinus Torvalds } 6751da177e4SLinus Torvalds 676e86f15eeSAndrea Arcangeli static inline void __vma_unlink_prev(struct mm_struct *mm, 677e86f15eeSAndrea Arcangeli struct vm_area_struct *vma, 678e86f15eeSAndrea Arcangeli struct vm_area_struct *prev) 679e86f15eeSAndrea Arcangeli { 6808f26e0b1SAndrea Arcangeli __vma_unlink_common(mm, vma, prev, true, vma); 681e86f15eeSAndrea Arcangeli } 682e86f15eeSAndrea Arcangeli 6831da177e4SLinus Torvalds /* 6841da177e4SLinus Torvalds * We cannot adjust vm_start, vm_end, vm_pgoff fields of a vma that 6851da177e4SLinus Torvalds * is already present in an i_mmap tree without adjusting the tree. 6861da177e4SLinus Torvalds * The following helper function should be used when such adjustments 6871da177e4SLinus Torvalds * are necessary. The "insert" vma (if any) is to be inserted 6881da177e4SLinus Torvalds * before we drop the necessary locks. 6891da177e4SLinus Torvalds */ 690e86f15eeSAndrea Arcangeli int __vma_adjust(struct vm_area_struct *vma, unsigned long start, 691e86f15eeSAndrea Arcangeli unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert, 692e86f15eeSAndrea Arcangeli struct vm_area_struct *expand) 6931da177e4SLinus Torvalds { 6941da177e4SLinus Torvalds struct mm_struct *mm = vma->vm_mm; 695e86f15eeSAndrea Arcangeli struct vm_area_struct *next = vma->vm_next, *orig_vma = vma; 6961da177e4SLinus Torvalds struct address_space *mapping = NULL; 697f808c13fSDavidlohr Bueso struct rb_root_cached *root = NULL; 698012f1800SRik van Riel struct anon_vma *anon_vma = NULL; 6991da177e4SLinus Torvalds struct file *file = vma->vm_file; 700d3737187SMichel Lespinasse bool start_changed = false, end_changed = false; 7011da177e4SLinus Torvalds long adjust_next = 0; 7021da177e4SLinus Torvalds int remove_next = 0; 7031da177e4SLinus Torvalds 7041da177e4SLinus Torvalds if (next && !insert) { 705734537c9SKirill A. Shutemov struct vm_area_struct *exporter = NULL, *importer = NULL; 706287d97acSLinus Torvalds 7071da177e4SLinus Torvalds if (end >= next->vm_end) { 7081da177e4SLinus Torvalds /* 7091da177e4SLinus Torvalds * vma expands, overlapping all the next, and 7101da177e4SLinus Torvalds * perhaps the one after too (mprotect case 6). 71186d12e47SAndrea Arcangeli * The only other cases that gets here are 712e86f15eeSAndrea Arcangeli * case 1, case 7 and case 8. 713e86f15eeSAndrea Arcangeli */ 714e86f15eeSAndrea Arcangeli if (next == expand) { 715e86f15eeSAndrea Arcangeli /* 716e86f15eeSAndrea Arcangeli * The only case where we don't expand "vma" 717e86f15eeSAndrea Arcangeli * and we expand "next" instead is case 8. 718e86f15eeSAndrea Arcangeli */ 719e86f15eeSAndrea Arcangeli VM_WARN_ON(end != next->vm_end); 720e86f15eeSAndrea Arcangeli /* 721e86f15eeSAndrea Arcangeli * remove_next == 3 means we're 722e86f15eeSAndrea Arcangeli * removing "vma" and that to do so we 723e86f15eeSAndrea Arcangeli * swapped "vma" and "next". 724e86f15eeSAndrea Arcangeli */ 725e86f15eeSAndrea Arcangeli remove_next = 3; 726e86f15eeSAndrea Arcangeli VM_WARN_ON(file != next->vm_file); 727e86f15eeSAndrea Arcangeli swap(vma, next); 728e86f15eeSAndrea Arcangeli } else { 729e86f15eeSAndrea Arcangeli VM_WARN_ON(expand != vma); 730e86f15eeSAndrea Arcangeli /* 731e86f15eeSAndrea Arcangeli * case 1, 6, 7, remove_next == 2 is case 6, 732e86f15eeSAndrea Arcangeli * remove_next == 1 is case 1 or 7. 7331da177e4SLinus Torvalds */ 734734537c9SKirill A. Shutemov remove_next = 1 + (end > next->vm_end); 735e86f15eeSAndrea Arcangeli VM_WARN_ON(remove_next == 2 && 736e86f15eeSAndrea Arcangeli end != next->vm_next->vm_end); 737e86f15eeSAndrea Arcangeli VM_WARN_ON(remove_next == 1 && 738e86f15eeSAndrea Arcangeli end != next->vm_end); 739e86f15eeSAndrea Arcangeli /* trim end to next, for case 6 first pass */ 7401da177e4SLinus Torvalds end = next->vm_end; 741e86f15eeSAndrea Arcangeli } 742e86f15eeSAndrea Arcangeli 743287d97acSLinus Torvalds exporter = next; 7441da177e4SLinus Torvalds importer = vma; 745734537c9SKirill A. Shutemov 746734537c9SKirill A. Shutemov /* 747734537c9SKirill A. Shutemov * If next doesn't have anon_vma, import from vma after 748734537c9SKirill A. Shutemov * next, if the vma overlaps with it. 749734537c9SKirill A. Shutemov */ 75097a42cd4SAndrea Arcangeli if (remove_next == 2 && !next->anon_vma) 751734537c9SKirill A. Shutemov exporter = next->vm_next; 752734537c9SKirill A. Shutemov 7531da177e4SLinus Torvalds } else if (end > next->vm_start) { 7541da177e4SLinus Torvalds /* 7551da177e4SLinus Torvalds * vma expands, overlapping part of the next: 7561da177e4SLinus Torvalds * mprotect case 5 shifting the boundary up. 7571da177e4SLinus Torvalds */ 7581da177e4SLinus Torvalds adjust_next = (end - next->vm_start) >> PAGE_SHIFT; 759287d97acSLinus Torvalds exporter = next; 7601da177e4SLinus Torvalds importer = vma; 761e86f15eeSAndrea Arcangeli VM_WARN_ON(expand != importer); 7621da177e4SLinus Torvalds } else if (end < vma->vm_end) { 7631da177e4SLinus Torvalds /* 7641da177e4SLinus Torvalds * vma shrinks, and !insert tells it's not 7651da177e4SLinus Torvalds * split_vma inserting another: so it must be 7661da177e4SLinus Torvalds * mprotect case 4 shifting the boundary down. 7671da177e4SLinus Torvalds */ 7681da177e4SLinus Torvalds adjust_next = -((vma->vm_end - end) >> PAGE_SHIFT); 769287d97acSLinus Torvalds exporter = vma; 7701da177e4SLinus Torvalds importer = next; 771e86f15eeSAndrea Arcangeli VM_WARN_ON(expand != importer); 7721da177e4SLinus Torvalds } 7731da177e4SLinus Torvalds 7745beb4930SRik van Riel /* 7755beb4930SRik van Riel * Easily overlooked: when mprotect shifts the boundary, 7765beb4930SRik van Riel * make sure the expanding vma has anon_vma set if the 7775beb4930SRik van Riel * shrinking vma had, to cover any anon pages imported. 7785beb4930SRik van Riel */ 779287d97acSLinus Torvalds if (exporter && exporter->anon_vma && !importer->anon_vma) { 780c4ea95d7SDaniel Forrest int error; 781c4ea95d7SDaniel Forrest 782287d97acSLinus Torvalds importer->anon_vma = exporter->anon_vma; 783b800c91aSKonstantin Khlebnikov error = anon_vma_clone(importer, exporter); 7843fe89b3eSLeon Yu if (error) 785b800c91aSKonstantin Khlebnikov return error; 786b800c91aSKonstantin Khlebnikov } 7875beb4930SRik van Riel } 788734537c9SKirill A. Shutemov again: 789e86f15eeSAndrea Arcangeli vma_adjust_trans_huge(orig_vma, start, end, adjust_next); 79037f9f559SKirill A. Shutemov 7911da177e4SLinus Torvalds if (file) { 7921da177e4SLinus Torvalds mapping = file->f_mapping; 7931da177e4SLinus Torvalds root = &mapping->i_mmap; 794cbc91f71SSrikar Dronamraju uprobe_munmap(vma, vma->vm_start, vma->vm_end); 795682968e0SSrikar Dronamraju 796682968e0SSrikar Dronamraju if (adjust_next) 79727ba0644SKirill A. Shutemov uprobe_munmap(next, next->vm_start, next->vm_end); 798682968e0SSrikar Dronamraju 79983cde9e8SDavidlohr Bueso i_mmap_lock_write(mapping); 8001da177e4SLinus Torvalds if (insert) { 8011da177e4SLinus Torvalds /* 8026b2dbba8SMichel Lespinasse * Put into interval tree now, so instantiated pages 8031da177e4SLinus Torvalds * are visible to arm/parisc __flush_dcache_page 8041da177e4SLinus Torvalds * throughout; but we cannot insert into address 8051da177e4SLinus Torvalds * space until vma start or end is updated. 8061da177e4SLinus Torvalds */ 8071da177e4SLinus Torvalds __vma_link_file(insert); 8081da177e4SLinus Torvalds } 8091da177e4SLinus Torvalds } 8101da177e4SLinus Torvalds 811012f1800SRik van Riel anon_vma = vma->anon_vma; 812bf181b9fSMichel Lespinasse if (!anon_vma && adjust_next) 813bf181b9fSMichel Lespinasse anon_vma = next->anon_vma; 814bf181b9fSMichel Lespinasse if (anon_vma) { 815e86f15eeSAndrea Arcangeli VM_WARN_ON(adjust_next && next->anon_vma && 816e86f15eeSAndrea Arcangeli anon_vma != next->anon_vma); 8174fc3f1d6SIngo Molnar anon_vma_lock_write(anon_vma); 818bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(vma); 819bf181b9fSMichel Lespinasse if (adjust_next) 820bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(next); 821bf181b9fSMichel Lespinasse } 822012f1800SRik van Riel 8231da177e4SLinus Torvalds if (root) { 8241da177e4SLinus Torvalds flush_dcache_mmap_lock(mapping); 8256b2dbba8SMichel Lespinasse vma_interval_tree_remove(vma, root); 8261da177e4SLinus Torvalds if (adjust_next) 8276b2dbba8SMichel Lespinasse vma_interval_tree_remove(next, root); 8281da177e4SLinus Torvalds } 8291da177e4SLinus Torvalds 830d3737187SMichel Lespinasse if (start != vma->vm_start) { 8311da177e4SLinus Torvalds vma->vm_start = start; 832d3737187SMichel Lespinasse start_changed = true; 833d3737187SMichel Lespinasse } 834d3737187SMichel Lespinasse if (end != vma->vm_end) { 8351da177e4SLinus Torvalds vma->vm_end = end; 836d3737187SMichel Lespinasse end_changed = true; 837d3737187SMichel Lespinasse } 8381da177e4SLinus Torvalds vma->vm_pgoff = pgoff; 8391da177e4SLinus Torvalds if (adjust_next) { 8401da177e4SLinus Torvalds next->vm_start += adjust_next << PAGE_SHIFT; 8411da177e4SLinus Torvalds next->vm_pgoff += adjust_next; 8421da177e4SLinus Torvalds } 8431da177e4SLinus Torvalds 8441da177e4SLinus Torvalds if (root) { 8451da177e4SLinus Torvalds if (adjust_next) 8466b2dbba8SMichel Lespinasse vma_interval_tree_insert(next, root); 8476b2dbba8SMichel Lespinasse vma_interval_tree_insert(vma, root); 8481da177e4SLinus Torvalds flush_dcache_mmap_unlock(mapping); 8491da177e4SLinus Torvalds } 8501da177e4SLinus Torvalds 8511da177e4SLinus Torvalds if (remove_next) { 8521da177e4SLinus Torvalds /* 8531da177e4SLinus Torvalds * vma_merge has merged next into vma, and needs 8541da177e4SLinus Torvalds * us to remove next before dropping the locks. 8551da177e4SLinus Torvalds */ 856e86f15eeSAndrea Arcangeli if (remove_next != 3) 857e86f15eeSAndrea Arcangeli __vma_unlink_prev(mm, next, vma); 858e86f15eeSAndrea Arcangeli else 8598f26e0b1SAndrea Arcangeli /* 8608f26e0b1SAndrea Arcangeli * vma is not before next if they've been 8618f26e0b1SAndrea Arcangeli * swapped. 8628f26e0b1SAndrea Arcangeli * 8638f26e0b1SAndrea Arcangeli * pre-swap() next->vm_start was reduced so 8648f26e0b1SAndrea Arcangeli * tell validate_mm_rb to ignore pre-swap() 8658f26e0b1SAndrea Arcangeli * "next" (which is stored in post-swap() 8668f26e0b1SAndrea Arcangeli * "vma"). 8678f26e0b1SAndrea Arcangeli */ 8688f26e0b1SAndrea Arcangeli __vma_unlink_common(mm, next, NULL, false, vma); 8691da177e4SLinus Torvalds if (file) 8701da177e4SLinus Torvalds __remove_shared_vm_struct(next, file, mapping); 8711da177e4SLinus Torvalds } else if (insert) { 8721da177e4SLinus Torvalds /* 8731da177e4SLinus Torvalds * split_vma has split insert from vma, and needs 8741da177e4SLinus Torvalds * us to insert it before dropping the locks 8751da177e4SLinus Torvalds * (it may either follow vma or precede it). 8761da177e4SLinus Torvalds */ 8771da177e4SLinus Torvalds __insert_vm_struct(mm, insert); 878d3737187SMichel Lespinasse } else { 879d3737187SMichel Lespinasse if (start_changed) 880d3737187SMichel Lespinasse vma_gap_update(vma); 881d3737187SMichel Lespinasse if (end_changed) { 882d3737187SMichel Lespinasse if (!next) 8831be7107fSHugh Dickins mm->highest_vm_end = vm_end_gap(vma); 884d3737187SMichel Lespinasse else if (!adjust_next) 885d3737187SMichel Lespinasse vma_gap_update(next); 886d3737187SMichel Lespinasse } 8871da177e4SLinus Torvalds } 8881da177e4SLinus Torvalds 889bf181b9fSMichel Lespinasse if (anon_vma) { 890bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(vma); 891bf181b9fSMichel Lespinasse if (adjust_next) 892bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(next); 89308b52706SKonstantin Khlebnikov anon_vma_unlock_write(anon_vma); 894bf181b9fSMichel Lespinasse } 8951da177e4SLinus Torvalds if (mapping) 89683cde9e8SDavidlohr Bueso i_mmap_unlock_write(mapping); 8971da177e4SLinus Torvalds 8982b144498SSrikar Dronamraju if (root) { 8997b2d81d4SIngo Molnar uprobe_mmap(vma); 9002b144498SSrikar Dronamraju 9012b144498SSrikar Dronamraju if (adjust_next) 9027b2d81d4SIngo Molnar uprobe_mmap(next); 9032b144498SSrikar Dronamraju } 9042b144498SSrikar Dronamraju 9051da177e4SLinus Torvalds if (remove_next) { 906925d1c40SMatt Helsley if (file) { 907cbc91f71SSrikar Dronamraju uprobe_munmap(next, next->vm_start, next->vm_end); 9081da177e4SLinus Torvalds fput(file); 909925d1c40SMatt Helsley } 9105beb4930SRik van Riel if (next->anon_vma) 9115beb4930SRik van Riel anon_vma_merge(vma, next); 9121da177e4SLinus Torvalds mm->map_count--; 9133964acd0SOleg Nesterov mpol_put(vma_policy(next)); 9143928d4f5SLinus Torvalds vm_area_free(next); 9151da177e4SLinus Torvalds /* 9161da177e4SLinus Torvalds * In mprotect's case 6 (see comments on vma_merge), 9171da177e4SLinus Torvalds * we must remove another next too. It would clutter 9181da177e4SLinus Torvalds * up the code too much to do both in one go. 9191da177e4SLinus Torvalds */ 920e86f15eeSAndrea Arcangeli if (remove_next != 3) { 921e86f15eeSAndrea Arcangeli /* 922e86f15eeSAndrea Arcangeli * If "next" was removed and vma->vm_end was 923e86f15eeSAndrea Arcangeli * expanded (up) over it, in turn 924e86f15eeSAndrea Arcangeli * "next->vm_prev->vm_end" changed and the 925e86f15eeSAndrea Arcangeli * "vma->vm_next" gap must be updated. 926e86f15eeSAndrea Arcangeli */ 9271da177e4SLinus Torvalds next = vma->vm_next; 928e86f15eeSAndrea Arcangeli } else { 929e86f15eeSAndrea Arcangeli /* 930e86f15eeSAndrea Arcangeli * For the scope of the comment "next" and 931e86f15eeSAndrea Arcangeli * "vma" considered pre-swap(): if "vma" was 932e86f15eeSAndrea Arcangeli * removed, next->vm_start was expanded (down) 933e86f15eeSAndrea Arcangeli * over it and the "next" gap must be updated. 934e86f15eeSAndrea Arcangeli * Because of the swap() the post-swap() "vma" 935e86f15eeSAndrea Arcangeli * actually points to pre-swap() "next" 936e86f15eeSAndrea Arcangeli * (post-swap() "next" as opposed is now a 937e86f15eeSAndrea Arcangeli * dangling pointer). 938e86f15eeSAndrea Arcangeli */ 939e86f15eeSAndrea Arcangeli next = vma; 940e86f15eeSAndrea Arcangeli } 941734537c9SKirill A. Shutemov if (remove_next == 2) { 942734537c9SKirill A. Shutemov remove_next = 1; 943734537c9SKirill A. Shutemov end = next->vm_end; 9441da177e4SLinus Torvalds goto again; 945734537c9SKirill A. Shutemov } 946d3737187SMichel Lespinasse else if (next) 947d3737187SMichel Lespinasse vma_gap_update(next); 948fb8c41e9SAndrea Arcangeli else { 949fb8c41e9SAndrea Arcangeli /* 950fb8c41e9SAndrea Arcangeli * If remove_next == 2 we obviously can't 951fb8c41e9SAndrea Arcangeli * reach this path. 952fb8c41e9SAndrea Arcangeli * 953fb8c41e9SAndrea Arcangeli * If remove_next == 3 we can't reach this 954fb8c41e9SAndrea Arcangeli * path because pre-swap() next is always not 955fb8c41e9SAndrea Arcangeli * NULL. pre-swap() "next" is not being 956fb8c41e9SAndrea Arcangeli * removed and its next->vm_end is not altered 957fb8c41e9SAndrea Arcangeli * (and furthermore "end" already matches 958fb8c41e9SAndrea Arcangeli * next->vm_end in remove_next == 3). 959fb8c41e9SAndrea Arcangeli * 960fb8c41e9SAndrea Arcangeli * We reach this only in the remove_next == 1 961fb8c41e9SAndrea Arcangeli * case if the "next" vma that was removed was 962fb8c41e9SAndrea Arcangeli * the highest vma of the mm. However in such 963fb8c41e9SAndrea Arcangeli * case next->vm_end == "end" and the extended 964fb8c41e9SAndrea Arcangeli * "vma" has vma->vm_end == next->vm_end so 965fb8c41e9SAndrea Arcangeli * mm->highest_vm_end doesn't need any update 966fb8c41e9SAndrea Arcangeli * in remove_next == 1 case. 967fb8c41e9SAndrea Arcangeli */ 9681be7107fSHugh Dickins VM_WARN_ON(mm->highest_vm_end != vm_end_gap(vma)); 969fb8c41e9SAndrea Arcangeli } 9701da177e4SLinus Torvalds } 9712b144498SSrikar Dronamraju if (insert && file) 9727b2d81d4SIngo Molnar uprobe_mmap(insert); 9731da177e4SLinus Torvalds 9741da177e4SLinus Torvalds validate_mm(mm); 9755beb4930SRik van Riel 9765beb4930SRik van Riel return 0; 9771da177e4SLinus Torvalds } 9781da177e4SLinus Torvalds 9791da177e4SLinus Torvalds /* 9801da177e4SLinus Torvalds * If the vma has a ->close operation then the driver probably needs to release 9811da177e4SLinus Torvalds * per-vma resources, so we don't attempt to merge those. 9821da177e4SLinus Torvalds */ 9831da177e4SLinus Torvalds static inline int is_mergeable_vma(struct vm_area_struct *vma, 98419a809afSAndrea Arcangeli struct file *file, unsigned long vm_flags, 98519a809afSAndrea Arcangeli struct vm_userfaultfd_ctx vm_userfaultfd_ctx) 9861da177e4SLinus Torvalds { 98734228d47SCyrill Gorcunov /* 98834228d47SCyrill Gorcunov * VM_SOFTDIRTY should not prevent from VMA merging, if we 98934228d47SCyrill Gorcunov * match the flags but dirty bit -- the caller should mark 99034228d47SCyrill Gorcunov * merged VMA as dirty. If dirty bit won't be excluded from 99134228d47SCyrill Gorcunov * comparison, we increase pressue on the memory system forcing 99234228d47SCyrill Gorcunov * the kernel to generate new VMAs when old one could be 99334228d47SCyrill Gorcunov * extended instead. 99434228d47SCyrill Gorcunov */ 99534228d47SCyrill Gorcunov if ((vma->vm_flags ^ vm_flags) & ~VM_SOFTDIRTY) 9961da177e4SLinus Torvalds return 0; 9971da177e4SLinus Torvalds if (vma->vm_file != file) 9981da177e4SLinus Torvalds return 0; 9991da177e4SLinus Torvalds if (vma->vm_ops && vma->vm_ops->close) 10001da177e4SLinus Torvalds return 0; 100119a809afSAndrea Arcangeli if (!is_mergeable_vm_userfaultfd_ctx(vma, vm_userfaultfd_ctx)) 100219a809afSAndrea Arcangeli return 0; 10031da177e4SLinus Torvalds return 1; 10041da177e4SLinus Torvalds } 10051da177e4SLinus Torvalds 10061da177e4SLinus Torvalds static inline int is_mergeable_anon_vma(struct anon_vma *anon_vma1, 1007965f55deSShaohua Li struct anon_vma *anon_vma2, 1008965f55deSShaohua Li struct vm_area_struct *vma) 10091da177e4SLinus Torvalds { 1010965f55deSShaohua Li /* 1011965f55deSShaohua Li * The list_is_singular() test is to avoid merging VMA cloned from 1012965f55deSShaohua Li * parents. This can improve scalability caused by anon_vma lock. 1013965f55deSShaohua Li */ 1014965f55deSShaohua Li if ((!anon_vma1 || !anon_vma2) && (!vma || 1015965f55deSShaohua Li list_is_singular(&vma->anon_vma_chain))) 1016965f55deSShaohua Li return 1; 1017965f55deSShaohua Li return anon_vma1 == anon_vma2; 10181da177e4SLinus Torvalds } 10191da177e4SLinus Torvalds 10201da177e4SLinus Torvalds /* 10211da177e4SLinus Torvalds * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff) 10221da177e4SLinus Torvalds * in front of (at a lower virtual address and file offset than) the vma. 10231da177e4SLinus Torvalds * 10241da177e4SLinus Torvalds * We cannot merge two vmas if they have differently assigned (non-NULL) 10251da177e4SLinus Torvalds * anon_vmas, nor if same anon_vma is assigned but offsets incompatible. 10261da177e4SLinus Torvalds * 10271da177e4SLinus Torvalds * We don't check here for the merged mmap wrapping around the end of pagecache 10281da177e4SLinus Torvalds * indices (16TB on ia32) because do_mmap_pgoff() does not permit mmap's which 10291da177e4SLinus Torvalds * wrap, nor mmaps which cover the final page at index -1UL. 10301da177e4SLinus Torvalds */ 10311da177e4SLinus Torvalds static int 10321da177e4SLinus Torvalds can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags, 103319a809afSAndrea Arcangeli struct anon_vma *anon_vma, struct file *file, 103419a809afSAndrea Arcangeli pgoff_t vm_pgoff, 103519a809afSAndrea Arcangeli struct vm_userfaultfd_ctx vm_userfaultfd_ctx) 10361da177e4SLinus Torvalds { 103719a809afSAndrea Arcangeli if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx) && 1038965f55deSShaohua Li is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) { 10391da177e4SLinus Torvalds if (vma->vm_pgoff == vm_pgoff) 10401da177e4SLinus Torvalds return 1; 10411da177e4SLinus Torvalds } 10421da177e4SLinus Torvalds return 0; 10431da177e4SLinus Torvalds } 10441da177e4SLinus Torvalds 10451da177e4SLinus Torvalds /* 10461da177e4SLinus Torvalds * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff) 10471da177e4SLinus Torvalds * beyond (at a higher virtual address and file offset than) the vma. 10481da177e4SLinus Torvalds * 10491da177e4SLinus Torvalds * We cannot merge two vmas if they have differently assigned (non-NULL) 10501da177e4SLinus Torvalds * anon_vmas, nor if same anon_vma is assigned but offsets incompatible. 10511da177e4SLinus Torvalds */ 10521da177e4SLinus Torvalds static int 10531da177e4SLinus Torvalds can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags, 105419a809afSAndrea Arcangeli struct anon_vma *anon_vma, struct file *file, 105519a809afSAndrea Arcangeli pgoff_t vm_pgoff, 105619a809afSAndrea Arcangeli struct vm_userfaultfd_ctx vm_userfaultfd_ctx) 10571da177e4SLinus Torvalds { 105819a809afSAndrea Arcangeli if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx) && 1059965f55deSShaohua Li is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) { 10601da177e4SLinus Torvalds pgoff_t vm_pglen; 1061d6e93217SLibin vm_pglen = vma_pages(vma); 10621da177e4SLinus Torvalds if (vma->vm_pgoff + vm_pglen == vm_pgoff) 10631da177e4SLinus Torvalds return 1; 10641da177e4SLinus Torvalds } 10651da177e4SLinus Torvalds return 0; 10661da177e4SLinus Torvalds } 10671da177e4SLinus Torvalds 10681da177e4SLinus Torvalds /* 10691da177e4SLinus Torvalds * Given a mapping request (addr,end,vm_flags,file,pgoff), figure out 10701da177e4SLinus Torvalds * whether that can be merged with its predecessor or its successor. 10711da177e4SLinus Torvalds * Or both (it neatly fills a hole). 10721da177e4SLinus Torvalds * 10731da177e4SLinus Torvalds * In most cases - when called for mmap, brk or mremap - [addr,end) is 10741da177e4SLinus Torvalds * certain not to be mapped by the time vma_merge is called; but when 10751da177e4SLinus Torvalds * called for mprotect, it is certain to be already mapped (either at 10761da177e4SLinus Torvalds * an offset within prev, or at the start of next), and the flags of 10771da177e4SLinus Torvalds * this area are about to be changed to vm_flags - and the no-change 10781da177e4SLinus Torvalds * case has already been eliminated. 10791da177e4SLinus Torvalds * 10801da177e4SLinus Torvalds * The following mprotect cases have to be considered, where AAAA is 10811da177e4SLinus Torvalds * the area passed down from mprotect_fixup, never extending beyond one 10821da177e4SLinus Torvalds * vma, PPPPPP is the prev vma specified, and NNNNNN the next vma after: 10831da177e4SLinus Torvalds * 10841da177e4SLinus Torvalds * AAAA AAAA AAAA AAAA 10851da177e4SLinus Torvalds * PPPPPPNNNNNN PPPPPPNNNNNN PPPPPPNNNNNN PPPPNNNNXXXX 10861da177e4SLinus Torvalds * cannot merge might become might become might become 10871da177e4SLinus Torvalds * PPNNNNNNNNNN PPPPPPPPPPNN PPPPPPPPPPPP 6 or 10881da177e4SLinus Torvalds * mmap, brk or case 4 below case 5 below PPPPPPPPXXXX 7 or 1089e86f15eeSAndrea Arcangeli * mremap move: PPPPXXXXXXXX 8 10901da177e4SLinus Torvalds * AAAA 10911da177e4SLinus Torvalds * PPPP NNNN PPPPPPPPPPPP PPPPPPPPNNNN PPPPNNNNNNNN 10921da177e4SLinus Torvalds * might become case 1 below case 2 below case 3 below 10931da177e4SLinus Torvalds * 1094e86f15eeSAndrea Arcangeli * It is important for case 8 that the the vma NNNN overlapping the 1095e86f15eeSAndrea Arcangeli * region AAAA is never going to extended over XXXX. Instead XXXX must 1096e86f15eeSAndrea Arcangeli * be extended in region AAAA and NNNN must be removed. This way in 1097e86f15eeSAndrea Arcangeli * all cases where vma_merge succeeds, the moment vma_adjust drops the 1098e86f15eeSAndrea Arcangeli * rmap_locks, the properties of the merged vma will be already 1099e86f15eeSAndrea Arcangeli * correct for the whole merged range. Some of those properties like 1100e86f15eeSAndrea Arcangeli * vm_page_prot/vm_flags may be accessed by rmap_walks and they must 1101e86f15eeSAndrea Arcangeli * be correct for the whole merged range immediately after the 1102e86f15eeSAndrea Arcangeli * rmap_locks are released. Otherwise if XXXX would be removed and 1103e86f15eeSAndrea Arcangeli * NNNN would be extended over the XXXX range, remove_migration_ptes 1104e86f15eeSAndrea Arcangeli * or other rmap walkers (if working on addresses beyond the "end" 1105e86f15eeSAndrea Arcangeli * parameter) may establish ptes with the wrong permissions of NNNN 1106e86f15eeSAndrea Arcangeli * instead of the right permissions of XXXX. 11071da177e4SLinus Torvalds */ 11081da177e4SLinus Torvalds struct vm_area_struct *vma_merge(struct mm_struct *mm, 11091da177e4SLinus Torvalds struct vm_area_struct *prev, unsigned long addr, 11101da177e4SLinus Torvalds unsigned long end, unsigned long vm_flags, 11111da177e4SLinus Torvalds struct anon_vma *anon_vma, struct file *file, 111219a809afSAndrea Arcangeli pgoff_t pgoff, struct mempolicy *policy, 111319a809afSAndrea Arcangeli struct vm_userfaultfd_ctx vm_userfaultfd_ctx) 11141da177e4SLinus Torvalds { 11151da177e4SLinus Torvalds pgoff_t pglen = (end - addr) >> PAGE_SHIFT; 11161da177e4SLinus Torvalds struct vm_area_struct *area, *next; 11175beb4930SRik van Riel int err; 11181da177e4SLinus Torvalds 11191da177e4SLinus Torvalds /* 11201da177e4SLinus Torvalds * We later require that vma->vm_flags == vm_flags, 11211da177e4SLinus Torvalds * so this tests vma->vm_flags & VM_SPECIAL, too. 11221da177e4SLinus Torvalds */ 11231da177e4SLinus Torvalds if (vm_flags & VM_SPECIAL) 11241da177e4SLinus Torvalds return NULL; 11251da177e4SLinus Torvalds 11261da177e4SLinus Torvalds if (prev) 11271da177e4SLinus Torvalds next = prev->vm_next; 11281da177e4SLinus Torvalds else 11291da177e4SLinus Torvalds next = mm->mmap; 11301da177e4SLinus Torvalds area = next; 1131e86f15eeSAndrea Arcangeli if (area && area->vm_end == end) /* cases 6, 7, 8 */ 11321da177e4SLinus Torvalds next = next->vm_next; 11331da177e4SLinus Torvalds 1134e86f15eeSAndrea Arcangeli /* verify some invariant that must be enforced by the caller */ 1135e86f15eeSAndrea Arcangeli VM_WARN_ON(prev && addr <= prev->vm_start); 1136e86f15eeSAndrea Arcangeli VM_WARN_ON(area && end > area->vm_end); 1137e86f15eeSAndrea Arcangeli VM_WARN_ON(addr >= end); 1138e86f15eeSAndrea Arcangeli 11391da177e4SLinus Torvalds /* 11401da177e4SLinus Torvalds * Can it merge with the predecessor? 11411da177e4SLinus Torvalds */ 11421da177e4SLinus Torvalds if (prev && prev->vm_end == addr && 11431da177e4SLinus Torvalds mpol_equal(vma_policy(prev), policy) && 11441da177e4SLinus Torvalds can_vma_merge_after(prev, vm_flags, 114519a809afSAndrea Arcangeli anon_vma, file, pgoff, 114619a809afSAndrea Arcangeli vm_userfaultfd_ctx)) { 11471da177e4SLinus Torvalds /* 11481da177e4SLinus Torvalds * OK, it can. Can we now merge in the successor as well? 11491da177e4SLinus Torvalds */ 11501da177e4SLinus Torvalds if (next && end == next->vm_start && 11511da177e4SLinus Torvalds mpol_equal(policy, vma_policy(next)) && 11521da177e4SLinus Torvalds can_vma_merge_before(next, vm_flags, 115319a809afSAndrea Arcangeli anon_vma, file, 115419a809afSAndrea Arcangeli pgoff+pglen, 115519a809afSAndrea Arcangeli vm_userfaultfd_ctx) && 11561da177e4SLinus Torvalds is_mergeable_anon_vma(prev->anon_vma, 1157965f55deSShaohua Li next->anon_vma, NULL)) { 11581da177e4SLinus Torvalds /* cases 1, 6 */ 1159e86f15eeSAndrea Arcangeli err = __vma_adjust(prev, prev->vm_start, 1160e86f15eeSAndrea Arcangeli next->vm_end, prev->vm_pgoff, NULL, 1161e86f15eeSAndrea Arcangeli prev); 11621da177e4SLinus Torvalds } else /* cases 2, 5, 7 */ 1163e86f15eeSAndrea Arcangeli err = __vma_adjust(prev, prev->vm_start, 1164e86f15eeSAndrea Arcangeli end, prev->vm_pgoff, NULL, prev); 11655beb4930SRik van Riel if (err) 11665beb4930SRik van Riel return NULL; 11676d50e60cSDavid Rientjes khugepaged_enter_vma_merge(prev, vm_flags); 11681da177e4SLinus Torvalds return prev; 11691da177e4SLinus Torvalds } 11701da177e4SLinus Torvalds 11711da177e4SLinus Torvalds /* 11721da177e4SLinus Torvalds * Can this new request be merged in front of next? 11731da177e4SLinus Torvalds */ 11741da177e4SLinus Torvalds if (next && end == next->vm_start && 11751da177e4SLinus Torvalds mpol_equal(policy, vma_policy(next)) && 11761da177e4SLinus Torvalds can_vma_merge_before(next, vm_flags, 117719a809afSAndrea Arcangeli anon_vma, file, pgoff+pglen, 117819a809afSAndrea Arcangeli vm_userfaultfd_ctx)) { 11791da177e4SLinus Torvalds if (prev && addr < prev->vm_end) /* case 4 */ 1180e86f15eeSAndrea Arcangeli err = __vma_adjust(prev, prev->vm_start, 1181e86f15eeSAndrea Arcangeli addr, prev->vm_pgoff, NULL, next); 1182e86f15eeSAndrea Arcangeli else { /* cases 3, 8 */ 1183e86f15eeSAndrea Arcangeli err = __vma_adjust(area, addr, next->vm_end, 1184e86f15eeSAndrea Arcangeli next->vm_pgoff - pglen, NULL, next); 1185e86f15eeSAndrea Arcangeli /* 1186e86f15eeSAndrea Arcangeli * In case 3 area is already equal to next and 1187e86f15eeSAndrea Arcangeli * this is a noop, but in case 8 "area" has 1188e86f15eeSAndrea Arcangeli * been removed and next was expanded over it. 1189e86f15eeSAndrea Arcangeli */ 1190e86f15eeSAndrea Arcangeli area = next; 1191e86f15eeSAndrea Arcangeli } 11925beb4930SRik van Riel if (err) 11935beb4930SRik van Riel return NULL; 11946d50e60cSDavid Rientjes khugepaged_enter_vma_merge(area, vm_flags); 11951da177e4SLinus Torvalds return area; 11961da177e4SLinus Torvalds } 11971da177e4SLinus Torvalds 11981da177e4SLinus Torvalds return NULL; 11991da177e4SLinus Torvalds } 12001da177e4SLinus Torvalds 12011da177e4SLinus Torvalds /* 1202d0e9fe17SLinus Torvalds * Rough compatbility check to quickly see if it's even worth looking 1203d0e9fe17SLinus Torvalds * at sharing an anon_vma. 1204d0e9fe17SLinus Torvalds * 1205d0e9fe17SLinus Torvalds * They need to have the same vm_file, and the flags can only differ 1206d0e9fe17SLinus Torvalds * in things that mprotect may change. 1207d0e9fe17SLinus Torvalds * 1208d0e9fe17SLinus Torvalds * NOTE! The fact that we share an anon_vma doesn't _have_ to mean that 1209d0e9fe17SLinus Torvalds * we can merge the two vma's. For example, we refuse to merge a vma if 1210d0e9fe17SLinus Torvalds * there is a vm_ops->close() function, because that indicates that the 1211d0e9fe17SLinus Torvalds * driver is doing some kind of reference counting. But that doesn't 1212d0e9fe17SLinus Torvalds * really matter for the anon_vma sharing case. 1213d0e9fe17SLinus Torvalds */ 1214d0e9fe17SLinus Torvalds static int anon_vma_compatible(struct vm_area_struct *a, struct vm_area_struct *b) 1215d0e9fe17SLinus Torvalds { 1216d0e9fe17SLinus Torvalds return a->vm_end == b->vm_start && 1217d0e9fe17SLinus Torvalds mpol_equal(vma_policy(a), vma_policy(b)) && 1218d0e9fe17SLinus Torvalds a->vm_file == b->vm_file && 121934228d47SCyrill Gorcunov !((a->vm_flags ^ b->vm_flags) & ~(VM_READ|VM_WRITE|VM_EXEC|VM_SOFTDIRTY)) && 1220d0e9fe17SLinus Torvalds b->vm_pgoff == a->vm_pgoff + ((b->vm_start - a->vm_start) >> PAGE_SHIFT); 1221d0e9fe17SLinus Torvalds } 1222d0e9fe17SLinus Torvalds 1223d0e9fe17SLinus Torvalds /* 1224d0e9fe17SLinus Torvalds * Do some basic sanity checking to see if we can re-use the anon_vma 1225d0e9fe17SLinus Torvalds * from 'old'. The 'a'/'b' vma's are in VM order - one of them will be 1226d0e9fe17SLinus Torvalds * the same as 'old', the other will be the new one that is trying 1227d0e9fe17SLinus Torvalds * to share the anon_vma. 1228d0e9fe17SLinus Torvalds * 1229d0e9fe17SLinus Torvalds * NOTE! This runs with mm_sem held for reading, so it is possible that 1230d0e9fe17SLinus Torvalds * the anon_vma of 'old' is concurrently in the process of being set up 1231d0e9fe17SLinus Torvalds * by another page fault trying to merge _that_. But that's ok: if it 1232d0e9fe17SLinus Torvalds * is being set up, that automatically means that it will be a singleton 1233d0e9fe17SLinus Torvalds * acceptable for merging, so we can do all of this optimistically. But 12344db0c3c2SJason Low * we do that READ_ONCE() to make sure that we never re-load the pointer. 1235d0e9fe17SLinus Torvalds * 1236d0e9fe17SLinus Torvalds * IOW: that the "list_is_singular()" test on the anon_vma_chain only 1237d0e9fe17SLinus Torvalds * matters for the 'stable anon_vma' case (ie the thing we want to avoid 1238d0e9fe17SLinus Torvalds * is to return an anon_vma that is "complex" due to having gone through 1239d0e9fe17SLinus Torvalds * a fork). 1240d0e9fe17SLinus Torvalds * 1241d0e9fe17SLinus Torvalds * We also make sure that the two vma's are compatible (adjacent, 1242d0e9fe17SLinus Torvalds * and with the same memory policies). That's all stable, even with just 1243d0e9fe17SLinus Torvalds * a read lock on the mm_sem. 1244d0e9fe17SLinus Torvalds */ 1245d0e9fe17SLinus Torvalds static struct anon_vma *reusable_anon_vma(struct vm_area_struct *old, struct vm_area_struct *a, struct vm_area_struct *b) 1246d0e9fe17SLinus Torvalds { 1247d0e9fe17SLinus Torvalds if (anon_vma_compatible(a, b)) { 12484db0c3c2SJason Low struct anon_vma *anon_vma = READ_ONCE(old->anon_vma); 1249d0e9fe17SLinus Torvalds 1250d0e9fe17SLinus Torvalds if (anon_vma && list_is_singular(&old->anon_vma_chain)) 1251d0e9fe17SLinus Torvalds return anon_vma; 1252d0e9fe17SLinus Torvalds } 1253d0e9fe17SLinus Torvalds return NULL; 1254d0e9fe17SLinus Torvalds } 1255d0e9fe17SLinus Torvalds 1256d0e9fe17SLinus Torvalds /* 12571da177e4SLinus Torvalds * find_mergeable_anon_vma is used by anon_vma_prepare, to check 12581da177e4SLinus Torvalds * neighbouring vmas for a suitable anon_vma, before it goes off 12591da177e4SLinus Torvalds * to allocate a new anon_vma. It checks because a repetitive 12601da177e4SLinus Torvalds * sequence of mprotects and faults may otherwise lead to distinct 12611da177e4SLinus Torvalds * anon_vmas being allocated, preventing vma merge in subsequent 12621da177e4SLinus Torvalds * mprotect. 12631da177e4SLinus Torvalds */ 12641da177e4SLinus Torvalds struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma) 12651da177e4SLinus Torvalds { 1266d0e9fe17SLinus Torvalds struct anon_vma *anon_vma; 12671da177e4SLinus Torvalds struct vm_area_struct *near; 12681da177e4SLinus Torvalds 12691da177e4SLinus Torvalds near = vma->vm_next; 12701da177e4SLinus Torvalds if (!near) 12711da177e4SLinus Torvalds goto try_prev; 12721da177e4SLinus Torvalds 1273d0e9fe17SLinus Torvalds anon_vma = reusable_anon_vma(near, vma, near); 1274d0e9fe17SLinus Torvalds if (anon_vma) 1275d0e9fe17SLinus Torvalds return anon_vma; 12761da177e4SLinus Torvalds try_prev: 12779be34c9dSLinus Torvalds near = vma->vm_prev; 12781da177e4SLinus Torvalds if (!near) 12791da177e4SLinus Torvalds goto none; 12801da177e4SLinus Torvalds 1281d0e9fe17SLinus Torvalds anon_vma = reusable_anon_vma(near, near, vma); 1282d0e9fe17SLinus Torvalds if (anon_vma) 1283d0e9fe17SLinus Torvalds return anon_vma; 12841da177e4SLinus Torvalds none: 12851da177e4SLinus Torvalds /* 12861da177e4SLinus Torvalds * There's no absolute need to look only at touching neighbours: 12871da177e4SLinus Torvalds * we could search further afield for "compatible" anon_vmas. 12881da177e4SLinus Torvalds * But it would probably just be a waste of time searching, 12891da177e4SLinus Torvalds * or lead to too many vmas hanging off the same anon_vma. 12901da177e4SLinus Torvalds * We're trying to allow mprotect remerging later on, 12911da177e4SLinus Torvalds * not trying to minimize memory used for anon_vmas. 12921da177e4SLinus Torvalds */ 12931da177e4SLinus Torvalds return NULL; 12941da177e4SLinus Torvalds } 12951da177e4SLinus Torvalds 12961da177e4SLinus Torvalds /* 129740401530SAl Viro * If a hint addr is less than mmap_min_addr change hint to be as 129840401530SAl Viro * low as possible but still greater than mmap_min_addr 129940401530SAl Viro */ 130040401530SAl Viro static inline unsigned long round_hint_to_min(unsigned long hint) 130140401530SAl Viro { 130240401530SAl Viro hint &= PAGE_MASK; 130340401530SAl Viro if (((void *)hint != NULL) && 130440401530SAl Viro (hint < mmap_min_addr)) 130540401530SAl Viro return PAGE_ALIGN(mmap_min_addr); 130640401530SAl Viro return hint; 130740401530SAl Viro } 130840401530SAl Viro 1309363ee17fSDavidlohr Bueso static inline int mlock_future_check(struct mm_struct *mm, 1310363ee17fSDavidlohr Bueso unsigned long flags, 1311363ee17fSDavidlohr Bueso unsigned long len) 1312363ee17fSDavidlohr Bueso { 1313363ee17fSDavidlohr Bueso unsigned long locked, lock_limit; 1314363ee17fSDavidlohr Bueso 1315363ee17fSDavidlohr Bueso /* mlock MCL_FUTURE? */ 1316363ee17fSDavidlohr Bueso if (flags & VM_LOCKED) { 1317363ee17fSDavidlohr Bueso locked = len >> PAGE_SHIFT; 1318363ee17fSDavidlohr Bueso locked += mm->locked_vm; 1319363ee17fSDavidlohr Bueso lock_limit = rlimit(RLIMIT_MEMLOCK); 1320363ee17fSDavidlohr Bueso lock_limit >>= PAGE_SHIFT; 1321363ee17fSDavidlohr Bueso if (locked > lock_limit && !capable(CAP_IPC_LOCK)) 1322363ee17fSDavidlohr Bueso return -EAGAIN; 1323363ee17fSDavidlohr Bueso } 1324363ee17fSDavidlohr Bueso return 0; 1325363ee17fSDavidlohr Bueso } 1326363ee17fSDavidlohr Bueso 1327be83bbf8SLinus Torvalds static inline u64 file_mmap_size_max(struct file *file, struct inode *inode) 1328be83bbf8SLinus Torvalds { 1329be83bbf8SLinus Torvalds if (S_ISREG(inode->i_mode)) 1330423913adSLinus Torvalds return MAX_LFS_FILESIZE; 1331be83bbf8SLinus Torvalds 1332be83bbf8SLinus Torvalds if (S_ISBLK(inode->i_mode)) 1333be83bbf8SLinus Torvalds return MAX_LFS_FILESIZE; 1334be83bbf8SLinus Torvalds 1335be83bbf8SLinus Torvalds /* Special "we do even unsigned file positions" case */ 1336be83bbf8SLinus Torvalds if (file->f_mode & FMODE_UNSIGNED_OFFSET) 1337be83bbf8SLinus Torvalds return 0; 1338be83bbf8SLinus Torvalds 1339be83bbf8SLinus Torvalds /* Yes, random drivers might want more. But I'm tired of buggy drivers */ 1340be83bbf8SLinus Torvalds return ULONG_MAX; 1341be83bbf8SLinus Torvalds } 1342be83bbf8SLinus Torvalds 1343be83bbf8SLinus Torvalds static inline bool file_mmap_ok(struct file *file, struct inode *inode, 1344be83bbf8SLinus Torvalds unsigned long pgoff, unsigned long len) 1345be83bbf8SLinus Torvalds { 1346be83bbf8SLinus Torvalds u64 maxsize = file_mmap_size_max(file, inode); 1347be83bbf8SLinus Torvalds 1348be83bbf8SLinus Torvalds if (maxsize && len > maxsize) 1349be83bbf8SLinus Torvalds return false; 1350be83bbf8SLinus Torvalds maxsize -= len; 1351be83bbf8SLinus Torvalds if (pgoff > maxsize >> PAGE_SHIFT) 1352be83bbf8SLinus Torvalds return false; 1353be83bbf8SLinus Torvalds return true; 1354be83bbf8SLinus Torvalds } 1355be83bbf8SLinus Torvalds 135640401530SAl Viro /* 135727f5de79SJianjun Kong * The caller must hold down_write(¤t->mm->mmap_sem). 13581da177e4SLinus Torvalds */ 13591fcfd8dbSOleg Nesterov unsigned long do_mmap(struct file *file, unsigned long addr, 13601da177e4SLinus Torvalds unsigned long len, unsigned long prot, 13611fcfd8dbSOleg Nesterov unsigned long flags, vm_flags_t vm_flags, 1362897ab3e0SMike Rapoport unsigned long pgoff, unsigned long *populate, 1363897ab3e0SMike Rapoport struct list_head *uf) 13641da177e4SLinus Torvalds { 13651da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 136662b5f7d0SDave Hansen int pkey = 0; 13671da177e4SLinus Torvalds 136841badc15SMichel Lespinasse *populate = 0; 1369bebeb3d6SMichel Lespinasse 1370e37609bbSPiotr Kwapulinski if (!len) 1371e37609bbSPiotr Kwapulinski return -EINVAL; 1372e37609bbSPiotr Kwapulinski 13731da177e4SLinus Torvalds /* 13741da177e4SLinus Torvalds * Does the application expect PROT_READ to imply PROT_EXEC? 13751da177e4SLinus Torvalds * 13761da177e4SLinus Torvalds * (the exception is when the underlying filesystem is noexec 13771da177e4SLinus Torvalds * mounted, in which case we dont add PROT_EXEC.) 13781da177e4SLinus Torvalds */ 13791da177e4SLinus Torvalds if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC)) 138090f8572bSEric W. Biederman if (!(file && path_noexec(&file->f_path))) 13811da177e4SLinus Torvalds prot |= PROT_EXEC; 13821da177e4SLinus Torvalds 1383a4ff8e86SMichal Hocko /* force arch specific MAP_FIXED handling in get_unmapped_area */ 1384a4ff8e86SMichal Hocko if (flags & MAP_FIXED_NOREPLACE) 1385a4ff8e86SMichal Hocko flags |= MAP_FIXED; 1386a4ff8e86SMichal Hocko 13877cd94146SEric Paris if (!(flags & MAP_FIXED)) 13887cd94146SEric Paris addr = round_hint_to_min(addr); 13897cd94146SEric Paris 13901da177e4SLinus Torvalds /* Careful about overflows.. */ 13911da177e4SLinus Torvalds len = PAGE_ALIGN(len); 13929206de95SAl Viro if (!len) 13931da177e4SLinus Torvalds return -ENOMEM; 13941da177e4SLinus Torvalds 13951da177e4SLinus Torvalds /* offset overflow? */ 13961da177e4SLinus Torvalds if ((pgoff + (len >> PAGE_SHIFT)) < pgoff) 13971da177e4SLinus Torvalds return -EOVERFLOW; 13981da177e4SLinus Torvalds 13991da177e4SLinus Torvalds /* Too many mappings? */ 14001da177e4SLinus Torvalds if (mm->map_count > sysctl_max_map_count) 14011da177e4SLinus Torvalds return -ENOMEM; 14021da177e4SLinus Torvalds 14031da177e4SLinus Torvalds /* Obtain the address to map to. we verify (or select) it and ensure 14041da177e4SLinus Torvalds * that it represents a valid section of the address space. 14051da177e4SLinus Torvalds */ 14061da177e4SLinus Torvalds addr = get_unmapped_area(file, addr, len, pgoff, flags); 1407de1741a1SAlexander Kuleshov if (offset_in_page(addr)) 14081da177e4SLinus Torvalds return addr; 14091da177e4SLinus Torvalds 1410a4ff8e86SMichal Hocko if (flags & MAP_FIXED_NOREPLACE) { 1411a4ff8e86SMichal Hocko struct vm_area_struct *vma = find_vma(mm, addr); 1412a4ff8e86SMichal Hocko 1413a4ff8e86SMichal Hocko if (vma && vma->vm_start <= addr) 1414a4ff8e86SMichal Hocko return -EEXIST; 1415a4ff8e86SMichal Hocko } 1416a4ff8e86SMichal Hocko 141762b5f7d0SDave Hansen if (prot == PROT_EXEC) { 141862b5f7d0SDave Hansen pkey = execute_only_pkey(mm); 141962b5f7d0SDave Hansen if (pkey < 0) 142062b5f7d0SDave Hansen pkey = 0; 142162b5f7d0SDave Hansen } 142262b5f7d0SDave Hansen 14231da177e4SLinus Torvalds /* Do simple checking here so the lower-level routines won't have 14241da177e4SLinus Torvalds * to. we assume access permissions have been handled by the open 14251da177e4SLinus Torvalds * of the memory object, so we don't do any here. 14261da177e4SLinus Torvalds */ 142762b5f7d0SDave Hansen vm_flags |= calc_vm_prot_bits(prot, pkey) | calc_vm_flag_bits(flags) | 14281da177e4SLinus Torvalds mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC; 14291da177e4SLinus Torvalds 1430cdf7b341SHuang Shijie if (flags & MAP_LOCKED) 14311da177e4SLinus Torvalds if (!can_do_mlock()) 14321da177e4SLinus Torvalds return -EPERM; 1433ba470de4SRik van Riel 1434363ee17fSDavidlohr Bueso if (mlock_future_check(mm, vm_flags, len)) 14351da177e4SLinus Torvalds return -EAGAIN; 14361da177e4SLinus Torvalds 14371da177e4SLinus Torvalds if (file) { 1438077bf22bSOleg Nesterov struct inode *inode = file_inode(file); 14391c972597SDan Williams unsigned long flags_mask; 14401c972597SDan Williams 1441be83bbf8SLinus Torvalds if (!file_mmap_ok(file, inode, pgoff, len)) 1442be83bbf8SLinus Torvalds return -EOVERFLOW; 1443be83bbf8SLinus Torvalds 14441c972597SDan Williams flags_mask = LEGACY_MAP_MASK | file->f_op->mmap_supported_flags; 1445077bf22bSOleg Nesterov 14461da177e4SLinus Torvalds switch (flags & MAP_TYPE) { 14471da177e4SLinus Torvalds case MAP_SHARED: 14481c972597SDan Williams /* 14491c972597SDan Williams * Force use of MAP_SHARED_VALIDATE with non-legacy 14501c972597SDan Williams * flags. E.g. MAP_SYNC is dangerous to use with 14511c972597SDan Williams * MAP_SHARED as you don't know which consistency model 14521c972597SDan Williams * you will get. We silently ignore unsupported flags 14531c972597SDan Williams * with MAP_SHARED to preserve backward compatibility. 14541c972597SDan Williams */ 14551c972597SDan Williams flags &= LEGACY_MAP_MASK; 14561c972597SDan Williams /* fall through */ 14571c972597SDan Williams case MAP_SHARED_VALIDATE: 14581c972597SDan Williams if (flags & ~flags_mask) 14591c972597SDan Williams return -EOPNOTSUPP; 14601da177e4SLinus Torvalds if ((prot&PROT_WRITE) && !(file->f_mode&FMODE_WRITE)) 14611da177e4SLinus Torvalds return -EACCES; 14621da177e4SLinus Torvalds 14631da177e4SLinus Torvalds /* 14641da177e4SLinus Torvalds * Make sure we don't allow writing to an append-only 14651da177e4SLinus Torvalds * file.. 14661da177e4SLinus Torvalds */ 14671da177e4SLinus Torvalds if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE)) 14681da177e4SLinus Torvalds return -EACCES; 14691da177e4SLinus Torvalds 14701da177e4SLinus Torvalds /* 14711da177e4SLinus Torvalds * Make sure there are no mandatory locks on the file. 14721da177e4SLinus Torvalds */ 1473d7a06983SJeff Layton if (locks_verify_locked(file)) 14741da177e4SLinus Torvalds return -EAGAIN; 14751da177e4SLinus Torvalds 14761da177e4SLinus Torvalds vm_flags |= VM_SHARED | VM_MAYSHARE; 14771da177e4SLinus Torvalds if (!(file->f_mode & FMODE_WRITE)) 14781da177e4SLinus Torvalds vm_flags &= ~(VM_MAYWRITE | VM_SHARED); 14791da177e4SLinus Torvalds 14801da177e4SLinus Torvalds /* fall through */ 14811da177e4SLinus Torvalds case MAP_PRIVATE: 14821da177e4SLinus Torvalds if (!(file->f_mode & FMODE_READ)) 14831da177e4SLinus Torvalds return -EACCES; 148490f8572bSEric W. Biederman if (path_noexec(&file->f_path)) { 148580c5606cSLinus Torvalds if (vm_flags & VM_EXEC) 148680c5606cSLinus Torvalds return -EPERM; 148780c5606cSLinus Torvalds vm_flags &= ~VM_MAYEXEC; 148880c5606cSLinus Torvalds } 148980c5606cSLinus Torvalds 149072c2d531SAl Viro if (!file->f_op->mmap) 149180c5606cSLinus Torvalds return -ENODEV; 1492b2c56e4fSOleg Nesterov if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP)) 1493b2c56e4fSOleg Nesterov return -EINVAL; 14941da177e4SLinus Torvalds break; 14951da177e4SLinus Torvalds 14961da177e4SLinus Torvalds default: 14971da177e4SLinus Torvalds return -EINVAL; 14981da177e4SLinus Torvalds } 14991da177e4SLinus Torvalds } else { 15001da177e4SLinus Torvalds switch (flags & MAP_TYPE) { 15011da177e4SLinus Torvalds case MAP_SHARED: 1502b2c56e4fSOleg Nesterov if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP)) 1503b2c56e4fSOleg Nesterov return -EINVAL; 1504ce363942STejun Heo /* 1505ce363942STejun Heo * Ignore pgoff. 1506ce363942STejun Heo */ 1507ce363942STejun Heo pgoff = 0; 15081da177e4SLinus Torvalds vm_flags |= VM_SHARED | VM_MAYSHARE; 15091da177e4SLinus Torvalds break; 15101da177e4SLinus Torvalds case MAP_PRIVATE: 15111da177e4SLinus Torvalds /* 15121da177e4SLinus Torvalds * Set pgoff according to addr for anon_vma. 15131da177e4SLinus Torvalds */ 15141da177e4SLinus Torvalds pgoff = addr >> PAGE_SHIFT; 15151da177e4SLinus Torvalds break; 15161da177e4SLinus Torvalds default: 15171da177e4SLinus Torvalds return -EINVAL; 15181da177e4SLinus Torvalds } 15191da177e4SLinus Torvalds } 15201da177e4SLinus Torvalds 1521c22c0d63SMichel Lespinasse /* 1522c22c0d63SMichel Lespinasse * Set 'VM_NORESERVE' if we should not account for the 1523c22c0d63SMichel Lespinasse * memory use of this mapping. 1524c22c0d63SMichel Lespinasse */ 1525c22c0d63SMichel Lespinasse if (flags & MAP_NORESERVE) { 1526c22c0d63SMichel Lespinasse /* We honor MAP_NORESERVE if allowed to overcommit */ 1527c22c0d63SMichel Lespinasse if (sysctl_overcommit_memory != OVERCOMMIT_NEVER) 1528c22c0d63SMichel Lespinasse vm_flags |= VM_NORESERVE; 1529c22c0d63SMichel Lespinasse 1530c22c0d63SMichel Lespinasse /* hugetlb applies strict overcommit unless MAP_NORESERVE */ 1531c22c0d63SMichel Lespinasse if (file && is_file_hugepages(file)) 1532c22c0d63SMichel Lespinasse vm_flags |= VM_NORESERVE; 1533c22c0d63SMichel Lespinasse } 1534c22c0d63SMichel Lespinasse 1535897ab3e0SMike Rapoport addr = mmap_region(file, addr, len, vm_flags, pgoff, uf); 153609a9f1d2SMichel Lespinasse if (!IS_ERR_VALUE(addr) && 153709a9f1d2SMichel Lespinasse ((vm_flags & VM_LOCKED) || 153809a9f1d2SMichel Lespinasse (flags & (MAP_POPULATE | MAP_NONBLOCK)) == MAP_POPULATE)) 153941badc15SMichel Lespinasse *populate = len; 1540bebeb3d6SMichel Lespinasse return addr; 15410165ab44SMiklos Szeredi } 15426be5ceb0SLinus Torvalds 1543a90f590aSDominik Brodowski unsigned long ksys_mmap_pgoff(unsigned long addr, unsigned long len, 1544a90f590aSDominik Brodowski unsigned long prot, unsigned long flags, 1545a90f590aSDominik Brodowski unsigned long fd, unsigned long pgoff) 154666f0dc48SHugh Dickins { 154766f0dc48SHugh Dickins struct file *file = NULL; 15481e3ee14bSChen Gang unsigned long retval; 154966f0dc48SHugh Dickins 155066f0dc48SHugh Dickins if (!(flags & MAP_ANONYMOUS)) { 1551120a795dSAl Viro audit_mmap_fd(fd, flags); 155266f0dc48SHugh Dickins file = fget(fd); 155366f0dc48SHugh Dickins if (!file) 15541e3ee14bSChen Gang return -EBADF; 1555af73e4d9SNaoya Horiguchi if (is_file_hugepages(file)) 1556af73e4d9SNaoya Horiguchi len = ALIGN(len, huge_page_size(hstate_file(file))); 1557493af578SJörn Engel retval = -EINVAL; 1558493af578SJörn Engel if (unlikely(flags & MAP_HUGETLB && !is_file_hugepages(file))) 1559493af578SJörn Engel goto out_fput; 156066f0dc48SHugh Dickins } else if (flags & MAP_HUGETLB) { 156166f0dc48SHugh Dickins struct user_struct *user = NULL; 1562c103a4dcSAndrew Morton struct hstate *hs; 1563af73e4d9SNaoya Horiguchi 156420ac2893SAnshuman Khandual hs = hstate_sizelog((flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK); 1565091d0d55SLi Zefan if (!hs) 1566091d0d55SLi Zefan return -EINVAL; 1567091d0d55SLi Zefan 1568091d0d55SLi Zefan len = ALIGN(len, huge_page_size(hs)); 156966f0dc48SHugh Dickins /* 157066f0dc48SHugh Dickins * VM_NORESERVE is used because the reservations will be 157166f0dc48SHugh Dickins * taken when vm_ops->mmap() is called 157266f0dc48SHugh Dickins * A dummy user value is used because we are not locking 157366f0dc48SHugh Dickins * memory so no accounting is necessary 157466f0dc48SHugh Dickins */ 1575af73e4d9SNaoya Horiguchi file = hugetlb_file_setup(HUGETLB_ANON_FILE, len, 157642d7395fSAndi Kleen VM_NORESERVE, 157742d7395fSAndi Kleen &user, HUGETLB_ANONHUGE_INODE, 157842d7395fSAndi Kleen (flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK); 157966f0dc48SHugh Dickins if (IS_ERR(file)) 158066f0dc48SHugh Dickins return PTR_ERR(file); 158166f0dc48SHugh Dickins } 158266f0dc48SHugh Dickins 158366f0dc48SHugh Dickins flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE); 158466f0dc48SHugh Dickins 15859fbeb5abSMichal Hocko retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff); 1586493af578SJörn Engel out_fput: 158766f0dc48SHugh Dickins if (file) 158866f0dc48SHugh Dickins fput(file); 158966f0dc48SHugh Dickins return retval; 159066f0dc48SHugh Dickins } 159166f0dc48SHugh Dickins 1592a90f590aSDominik Brodowski SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len, 1593a90f590aSDominik Brodowski unsigned long, prot, unsigned long, flags, 1594a90f590aSDominik Brodowski unsigned long, fd, unsigned long, pgoff) 1595a90f590aSDominik Brodowski { 1596a90f590aSDominik Brodowski return ksys_mmap_pgoff(addr, len, prot, flags, fd, pgoff); 1597a90f590aSDominik Brodowski } 1598a90f590aSDominik Brodowski 1599a4679373SChristoph Hellwig #ifdef __ARCH_WANT_SYS_OLD_MMAP 1600a4679373SChristoph Hellwig struct mmap_arg_struct { 1601a4679373SChristoph Hellwig unsigned long addr; 1602a4679373SChristoph Hellwig unsigned long len; 1603a4679373SChristoph Hellwig unsigned long prot; 1604a4679373SChristoph Hellwig unsigned long flags; 1605a4679373SChristoph Hellwig unsigned long fd; 1606a4679373SChristoph Hellwig unsigned long offset; 1607a4679373SChristoph Hellwig }; 1608a4679373SChristoph Hellwig 1609a4679373SChristoph Hellwig SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg) 1610a4679373SChristoph Hellwig { 1611a4679373SChristoph Hellwig struct mmap_arg_struct a; 1612a4679373SChristoph Hellwig 1613a4679373SChristoph Hellwig if (copy_from_user(&a, arg, sizeof(a))) 1614a4679373SChristoph Hellwig return -EFAULT; 1615de1741a1SAlexander Kuleshov if (offset_in_page(a.offset)) 1616a4679373SChristoph Hellwig return -EINVAL; 1617a4679373SChristoph Hellwig 1618a90f590aSDominik Brodowski return ksys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd, 1619a4679373SChristoph Hellwig a.offset >> PAGE_SHIFT); 1620a4679373SChristoph Hellwig } 1621a4679373SChristoph Hellwig #endif /* __ARCH_WANT_SYS_OLD_MMAP */ 1622a4679373SChristoph Hellwig 16234e950f6fSAlexey Dobriyan /* 16244e950f6fSAlexey Dobriyan * Some shared mappigns will want the pages marked read-only 16254e950f6fSAlexey Dobriyan * to track write events. If so, we'll downgrade vm_page_prot 16264e950f6fSAlexey Dobriyan * to the private version (using protection_map[] without the 16274e950f6fSAlexey Dobriyan * VM_SHARED bit). 16284e950f6fSAlexey Dobriyan */ 16296d2329f8SAndrea Arcangeli int vma_wants_writenotify(struct vm_area_struct *vma, pgprot_t vm_page_prot) 16304e950f6fSAlexey Dobriyan { 1631ca16d140SKOSAKI Motohiro vm_flags_t vm_flags = vma->vm_flags; 16328a04446aSKirill A. Shutemov const struct vm_operations_struct *vm_ops = vma->vm_ops; 16334e950f6fSAlexey Dobriyan 16344e950f6fSAlexey Dobriyan /* If it was private or non-writable, the write bit is already clear */ 16354e950f6fSAlexey Dobriyan if ((vm_flags & (VM_WRITE|VM_SHARED)) != ((VM_WRITE|VM_SHARED))) 16364e950f6fSAlexey Dobriyan return 0; 16374e950f6fSAlexey Dobriyan 16384e950f6fSAlexey Dobriyan /* The backer wishes to know when pages are first written to? */ 16398a04446aSKirill A. Shutemov if (vm_ops && (vm_ops->page_mkwrite || vm_ops->pfn_mkwrite)) 16404e950f6fSAlexey Dobriyan return 1; 16414e950f6fSAlexey Dobriyan 164264e45507SPeter Feiner /* The open routine did something to the protections that pgprot_modify 164364e45507SPeter Feiner * won't preserve? */ 16446d2329f8SAndrea Arcangeli if (pgprot_val(vm_page_prot) != 16456d2329f8SAndrea Arcangeli pgprot_val(vm_pgprot_modify(vm_page_prot, vm_flags))) 16464e950f6fSAlexey Dobriyan return 0; 16474e950f6fSAlexey Dobriyan 164864e45507SPeter Feiner /* Do we need to track softdirty? */ 164964e45507SPeter Feiner if (IS_ENABLED(CONFIG_MEM_SOFT_DIRTY) && !(vm_flags & VM_SOFTDIRTY)) 165064e45507SPeter Feiner return 1; 165164e45507SPeter Feiner 16524e950f6fSAlexey Dobriyan /* Specialty mapping? */ 16534b6e1e37SKonstantin Khlebnikov if (vm_flags & VM_PFNMAP) 16544e950f6fSAlexey Dobriyan return 0; 16554e950f6fSAlexey Dobriyan 16564e950f6fSAlexey Dobriyan /* Can the mapping track the dirty pages? */ 16574e950f6fSAlexey Dobriyan return vma->vm_file && vma->vm_file->f_mapping && 16584e950f6fSAlexey Dobriyan mapping_cap_account_dirty(vma->vm_file->f_mapping); 16594e950f6fSAlexey Dobriyan } 16604e950f6fSAlexey Dobriyan 1661fc8744adSLinus Torvalds /* 1662fc8744adSLinus Torvalds * We account for memory if it's a private writeable mapping, 16635a6fe125SMel Gorman * not hugepages and VM_NORESERVE wasn't set. 1664fc8744adSLinus Torvalds */ 1665ca16d140SKOSAKI Motohiro static inline int accountable_mapping(struct file *file, vm_flags_t vm_flags) 1666fc8744adSLinus Torvalds { 16675a6fe125SMel Gorman /* 16685a6fe125SMel Gorman * hugetlb has its own accounting separate from the core VM 16695a6fe125SMel Gorman * VM_HUGETLB may not be set yet so we cannot check for that flag. 16705a6fe125SMel Gorman */ 16715a6fe125SMel Gorman if (file && is_file_hugepages(file)) 16725a6fe125SMel Gorman return 0; 16735a6fe125SMel Gorman 1674fc8744adSLinus Torvalds return (vm_flags & (VM_NORESERVE | VM_SHARED | VM_WRITE)) == VM_WRITE; 1675fc8744adSLinus Torvalds } 1676fc8744adSLinus Torvalds 16770165ab44SMiklos Szeredi unsigned long mmap_region(struct file *file, unsigned long addr, 1678897ab3e0SMike Rapoport unsigned long len, vm_flags_t vm_flags, unsigned long pgoff, 1679897ab3e0SMike Rapoport struct list_head *uf) 16800165ab44SMiklos Szeredi { 16810165ab44SMiklos Szeredi struct mm_struct *mm = current->mm; 16820165ab44SMiklos Szeredi struct vm_area_struct *vma, *prev; 16830165ab44SMiklos Szeredi int error; 16840165ab44SMiklos Szeredi struct rb_node **rb_link, *rb_parent; 16850165ab44SMiklos Szeredi unsigned long charged = 0; 16860165ab44SMiklos Szeredi 1687e8420a8eSCyril Hrubis /* Check against address space limit. */ 168884638335SKonstantin Khlebnikov if (!may_expand_vm(mm, vm_flags, len >> PAGE_SHIFT)) { 1689e8420a8eSCyril Hrubis unsigned long nr_pages; 1690e8420a8eSCyril Hrubis 1691e8420a8eSCyril Hrubis /* 1692e8420a8eSCyril Hrubis * MAP_FIXED may remove pages of mappings that intersects with 1693e8420a8eSCyril Hrubis * requested mapping. Account for the pages it would unmap. 1694e8420a8eSCyril Hrubis */ 1695e8420a8eSCyril Hrubis nr_pages = count_vma_pages_range(mm, addr, addr + len); 1696e8420a8eSCyril Hrubis 169784638335SKonstantin Khlebnikov if (!may_expand_vm(mm, vm_flags, 169884638335SKonstantin Khlebnikov (len >> PAGE_SHIFT) - nr_pages)) 1699e8420a8eSCyril Hrubis return -ENOMEM; 1700e8420a8eSCyril Hrubis } 1701e8420a8eSCyril Hrubis 17021da177e4SLinus Torvalds /* Clear old maps */ 17039fcd1457SRasmus Villemoes while (find_vma_links(mm, addr, addr + len, &prev, &rb_link, 17049fcd1457SRasmus Villemoes &rb_parent)) { 1705897ab3e0SMike Rapoport if (do_munmap(mm, addr, len, uf)) 17061da177e4SLinus Torvalds return -ENOMEM; 17071da177e4SLinus Torvalds } 17081da177e4SLinus Torvalds 1709fc8744adSLinus Torvalds /* 17101da177e4SLinus Torvalds * Private writable mapping: check memory availability 17111da177e4SLinus Torvalds */ 17125a6fe125SMel Gorman if (accountable_mapping(file, vm_flags)) { 17131da177e4SLinus Torvalds charged = len >> PAGE_SHIFT; 1714191c5424SAl Viro if (security_vm_enough_memory_mm(mm, charged)) 17151da177e4SLinus Torvalds return -ENOMEM; 17161da177e4SLinus Torvalds vm_flags |= VM_ACCOUNT; 17171da177e4SLinus Torvalds } 17181da177e4SLinus Torvalds 17191da177e4SLinus Torvalds /* 1720de33c8dbSLinus Torvalds * Can we just expand an old mapping? 17211da177e4SLinus Torvalds */ 172219a809afSAndrea Arcangeli vma = vma_merge(mm, prev, addr, addr + len, vm_flags, 172319a809afSAndrea Arcangeli NULL, file, pgoff, NULL, NULL_VM_UFFD_CTX); 1724ba470de4SRik van Riel if (vma) 17251da177e4SLinus Torvalds goto out; 17261da177e4SLinus Torvalds 17271da177e4SLinus Torvalds /* 17281da177e4SLinus Torvalds * Determine the object being mapped and call the appropriate 17291da177e4SLinus Torvalds * specific mapper. the address has already been validated, but 17301da177e4SLinus Torvalds * not unmapped, but the maps are removed from the list. 17311da177e4SLinus Torvalds */ 1732490fc053SLinus Torvalds vma = vm_area_alloc(mm); 17331da177e4SLinus Torvalds if (!vma) { 17341da177e4SLinus Torvalds error = -ENOMEM; 17351da177e4SLinus Torvalds goto unacct_error; 17361da177e4SLinus Torvalds } 17371da177e4SLinus Torvalds 17381da177e4SLinus Torvalds vma->vm_start = addr; 17391da177e4SLinus Torvalds vma->vm_end = addr + len; 17401da177e4SLinus Torvalds vma->vm_flags = vm_flags; 17413ed75eb8SColy Li vma->vm_page_prot = vm_get_page_prot(vm_flags); 17421da177e4SLinus Torvalds vma->vm_pgoff = pgoff; 17431da177e4SLinus Torvalds 17441da177e4SLinus Torvalds if (file) { 17451da177e4SLinus Torvalds if (vm_flags & VM_DENYWRITE) { 17461da177e4SLinus Torvalds error = deny_write_access(file); 17471da177e4SLinus Torvalds if (error) 17481da177e4SLinus Torvalds goto free_vma; 17491da177e4SLinus Torvalds } 17504bb5f5d9SDavid Herrmann if (vm_flags & VM_SHARED) { 17514bb5f5d9SDavid Herrmann error = mapping_map_writable(file->f_mapping); 17524bb5f5d9SDavid Herrmann if (error) 17534bb5f5d9SDavid Herrmann goto allow_write_and_free_vma; 17544bb5f5d9SDavid Herrmann } 17554bb5f5d9SDavid Herrmann 17564bb5f5d9SDavid Herrmann /* ->mmap() can change vma->vm_file, but must guarantee that 17574bb5f5d9SDavid Herrmann * vma_link() below can deny write-access if VM_DENYWRITE is set 17584bb5f5d9SDavid Herrmann * and map writably if VM_SHARED is set. This usually means the 17594bb5f5d9SDavid Herrmann * new file must not have been exposed to user-space, yet. 17604bb5f5d9SDavid Herrmann */ 1761cb0942b8SAl Viro vma->vm_file = get_file(file); 1762f74ac015SMiklos Szeredi error = call_mmap(file, vma); 17631da177e4SLinus Torvalds if (error) 17641da177e4SLinus Torvalds goto unmap_and_free_vma; 17651da177e4SLinus Torvalds 17661da177e4SLinus Torvalds /* Can addr have changed?? 17671da177e4SLinus Torvalds * 17681da177e4SLinus Torvalds * Answer: Yes, several device drivers can do it in their 17691da177e4SLinus Torvalds * f_op->mmap method. -DaveM 17702897b4d2SJoonsoo Kim * Bug: If addr is changed, prev, rb_link, rb_parent should 17712897b4d2SJoonsoo Kim * be updated for vma_link() 17721da177e4SLinus Torvalds */ 17732897b4d2SJoonsoo Kim WARN_ON_ONCE(addr != vma->vm_start); 17742897b4d2SJoonsoo Kim 17751da177e4SLinus Torvalds addr = vma->vm_start; 17761da177e4SLinus Torvalds vm_flags = vma->vm_flags; 1777f8dbf0a7SHuang Shijie } else if (vm_flags & VM_SHARED) { 1778f8dbf0a7SHuang Shijie error = shmem_zero_setup(vma); 1779f8dbf0a7SHuang Shijie if (error) 1780f8dbf0a7SHuang Shijie goto free_vma; 1781*bfd40eafSKirill A. Shutemov } else { 1782*bfd40eafSKirill A. Shutemov vma_set_anonymous(vma); 1783f8dbf0a7SHuang Shijie } 17841da177e4SLinus Torvalds 17854d3d5b41SOleg Nesterov vma_link(mm, vma, prev, rb_link, rb_parent); 17864d3d5b41SOleg Nesterov /* Once vma denies write, undo our temporary denial count */ 17874bb5f5d9SDavid Herrmann if (file) { 17884bb5f5d9SDavid Herrmann if (vm_flags & VM_SHARED) 17894bb5f5d9SDavid Herrmann mapping_unmap_writable(file->f_mapping); 1790e8686772SOleg Nesterov if (vm_flags & VM_DENYWRITE) 1791e8686772SOleg Nesterov allow_write_access(file); 17924bb5f5d9SDavid Herrmann } 1793e8686772SOleg Nesterov file = vma->vm_file; 17941da177e4SLinus Torvalds out: 1795cdd6c482SIngo Molnar perf_event_mmap(vma); 17960a4a9391SPeter Zijlstra 179784638335SKonstantin Khlebnikov vm_stat_account(mm, vm_flags, len >> PAGE_SHIFT); 17981da177e4SLinus Torvalds if (vm_flags & VM_LOCKED) { 1799bebeb3d6SMichel Lespinasse if (!((vm_flags & VM_SPECIAL) || is_vm_hugetlb_page(vma) || 1800bebeb3d6SMichel Lespinasse vma == get_gate_vma(current->mm))) 180106f9d8c2SKOSAKI Motohiro mm->locked_vm += (len >> PAGE_SHIFT); 1802bebeb3d6SMichel Lespinasse else 1803de60f5f1SEric B Munson vma->vm_flags &= VM_LOCKED_CLEAR_MASK; 1804bebeb3d6SMichel Lespinasse } 18052b144498SSrikar Dronamraju 1806c7a3a88cSOleg Nesterov if (file) 1807c7a3a88cSOleg Nesterov uprobe_mmap(vma); 18082b144498SSrikar Dronamraju 1809d9104d1cSCyrill Gorcunov /* 1810d9104d1cSCyrill Gorcunov * New (or expanded) vma always get soft dirty status. 1811d9104d1cSCyrill Gorcunov * Otherwise user-space soft-dirty page tracker won't 1812d9104d1cSCyrill Gorcunov * be able to distinguish situation when vma area unmapped, 1813d9104d1cSCyrill Gorcunov * then new mapped in-place (which must be aimed as 1814d9104d1cSCyrill Gorcunov * a completely new data area). 1815d9104d1cSCyrill Gorcunov */ 1816d9104d1cSCyrill Gorcunov vma->vm_flags |= VM_SOFTDIRTY; 1817d9104d1cSCyrill Gorcunov 181864e45507SPeter Feiner vma_set_page_prot(vma); 181964e45507SPeter Feiner 18201da177e4SLinus Torvalds return addr; 18211da177e4SLinus Torvalds 18221da177e4SLinus Torvalds unmap_and_free_vma: 18231da177e4SLinus Torvalds vma->vm_file = NULL; 18241da177e4SLinus Torvalds fput(file); 18251da177e4SLinus Torvalds 18261da177e4SLinus Torvalds /* Undo any partial mapping done by a device driver. */ 1827e0da382cSHugh Dickins unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end); 1828e0da382cSHugh Dickins charged = 0; 18294bb5f5d9SDavid Herrmann if (vm_flags & VM_SHARED) 18304bb5f5d9SDavid Herrmann mapping_unmap_writable(file->f_mapping); 18314bb5f5d9SDavid Herrmann allow_write_and_free_vma: 18324bb5f5d9SDavid Herrmann if (vm_flags & VM_DENYWRITE) 18334bb5f5d9SDavid Herrmann allow_write_access(file); 18341da177e4SLinus Torvalds free_vma: 18353928d4f5SLinus Torvalds vm_area_free(vma); 18361da177e4SLinus Torvalds unacct_error: 18371da177e4SLinus Torvalds if (charged) 18381da177e4SLinus Torvalds vm_unacct_memory(charged); 18391da177e4SLinus Torvalds return error; 18401da177e4SLinus Torvalds } 18411da177e4SLinus Torvalds 1842db4fbfb9SMichel Lespinasse unsigned long unmapped_area(struct vm_unmapped_area_info *info) 1843db4fbfb9SMichel Lespinasse { 1844db4fbfb9SMichel Lespinasse /* 1845db4fbfb9SMichel Lespinasse * We implement the search by looking for an rbtree node that 1846db4fbfb9SMichel Lespinasse * immediately follows a suitable gap. That is, 1847db4fbfb9SMichel Lespinasse * - gap_start = vma->vm_prev->vm_end <= info->high_limit - length; 1848db4fbfb9SMichel Lespinasse * - gap_end = vma->vm_start >= info->low_limit + length; 1849db4fbfb9SMichel Lespinasse * - gap_end - gap_start >= length 1850db4fbfb9SMichel Lespinasse */ 1851db4fbfb9SMichel Lespinasse 1852db4fbfb9SMichel Lespinasse struct mm_struct *mm = current->mm; 1853db4fbfb9SMichel Lespinasse struct vm_area_struct *vma; 1854db4fbfb9SMichel Lespinasse unsigned long length, low_limit, high_limit, gap_start, gap_end; 1855db4fbfb9SMichel Lespinasse 1856db4fbfb9SMichel Lespinasse /* Adjust search length to account for worst case alignment overhead */ 1857db4fbfb9SMichel Lespinasse length = info->length + info->align_mask; 1858db4fbfb9SMichel Lespinasse if (length < info->length) 1859db4fbfb9SMichel Lespinasse return -ENOMEM; 1860db4fbfb9SMichel Lespinasse 1861db4fbfb9SMichel Lespinasse /* Adjust search limits by the desired length */ 1862db4fbfb9SMichel Lespinasse if (info->high_limit < length) 1863db4fbfb9SMichel Lespinasse return -ENOMEM; 1864db4fbfb9SMichel Lespinasse high_limit = info->high_limit - length; 1865db4fbfb9SMichel Lespinasse 1866db4fbfb9SMichel Lespinasse if (info->low_limit > high_limit) 1867db4fbfb9SMichel Lespinasse return -ENOMEM; 1868db4fbfb9SMichel Lespinasse low_limit = info->low_limit + length; 1869db4fbfb9SMichel Lespinasse 1870db4fbfb9SMichel Lespinasse /* Check if rbtree root looks promising */ 1871db4fbfb9SMichel Lespinasse if (RB_EMPTY_ROOT(&mm->mm_rb)) 1872db4fbfb9SMichel Lespinasse goto check_highest; 1873db4fbfb9SMichel Lespinasse vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb); 1874db4fbfb9SMichel Lespinasse if (vma->rb_subtree_gap < length) 1875db4fbfb9SMichel Lespinasse goto check_highest; 1876db4fbfb9SMichel Lespinasse 1877db4fbfb9SMichel Lespinasse while (true) { 1878db4fbfb9SMichel Lespinasse /* Visit left subtree if it looks promising */ 18791be7107fSHugh Dickins gap_end = vm_start_gap(vma); 1880db4fbfb9SMichel Lespinasse if (gap_end >= low_limit && vma->vm_rb.rb_left) { 1881db4fbfb9SMichel Lespinasse struct vm_area_struct *left = 1882db4fbfb9SMichel Lespinasse rb_entry(vma->vm_rb.rb_left, 1883db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1884db4fbfb9SMichel Lespinasse if (left->rb_subtree_gap >= length) { 1885db4fbfb9SMichel Lespinasse vma = left; 1886db4fbfb9SMichel Lespinasse continue; 1887db4fbfb9SMichel Lespinasse } 1888db4fbfb9SMichel Lespinasse } 1889db4fbfb9SMichel Lespinasse 18901be7107fSHugh Dickins gap_start = vma->vm_prev ? vm_end_gap(vma->vm_prev) : 0; 1891db4fbfb9SMichel Lespinasse check_current: 1892db4fbfb9SMichel Lespinasse /* Check if current node has a suitable gap */ 1893db4fbfb9SMichel Lespinasse if (gap_start > high_limit) 1894db4fbfb9SMichel Lespinasse return -ENOMEM; 1895f4cb767dSHugh Dickins if (gap_end >= low_limit && 1896f4cb767dSHugh Dickins gap_end > gap_start && gap_end - gap_start >= length) 1897db4fbfb9SMichel Lespinasse goto found; 1898db4fbfb9SMichel Lespinasse 1899db4fbfb9SMichel Lespinasse /* Visit right subtree if it looks promising */ 1900db4fbfb9SMichel Lespinasse if (vma->vm_rb.rb_right) { 1901db4fbfb9SMichel Lespinasse struct vm_area_struct *right = 1902db4fbfb9SMichel Lespinasse rb_entry(vma->vm_rb.rb_right, 1903db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1904db4fbfb9SMichel Lespinasse if (right->rb_subtree_gap >= length) { 1905db4fbfb9SMichel Lespinasse vma = right; 1906db4fbfb9SMichel Lespinasse continue; 1907db4fbfb9SMichel Lespinasse } 1908db4fbfb9SMichel Lespinasse } 1909db4fbfb9SMichel Lespinasse 1910db4fbfb9SMichel Lespinasse /* Go back up the rbtree to find next candidate node */ 1911db4fbfb9SMichel Lespinasse while (true) { 1912db4fbfb9SMichel Lespinasse struct rb_node *prev = &vma->vm_rb; 1913db4fbfb9SMichel Lespinasse if (!rb_parent(prev)) 1914db4fbfb9SMichel Lespinasse goto check_highest; 1915db4fbfb9SMichel Lespinasse vma = rb_entry(rb_parent(prev), 1916db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1917db4fbfb9SMichel Lespinasse if (prev == vma->vm_rb.rb_left) { 19181be7107fSHugh Dickins gap_start = vm_end_gap(vma->vm_prev); 19191be7107fSHugh Dickins gap_end = vm_start_gap(vma); 1920db4fbfb9SMichel Lespinasse goto check_current; 1921db4fbfb9SMichel Lespinasse } 1922db4fbfb9SMichel Lespinasse } 1923db4fbfb9SMichel Lespinasse } 1924db4fbfb9SMichel Lespinasse 1925db4fbfb9SMichel Lespinasse check_highest: 1926db4fbfb9SMichel Lespinasse /* Check highest gap, which does not precede any rbtree node */ 1927db4fbfb9SMichel Lespinasse gap_start = mm->highest_vm_end; 1928db4fbfb9SMichel Lespinasse gap_end = ULONG_MAX; /* Only for VM_BUG_ON below */ 1929db4fbfb9SMichel Lespinasse if (gap_start > high_limit) 1930db4fbfb9SMichel Lespinasse return -ENOMEM; 1931db4fbfb9SMichel Lespinasse 1932db4fbfb9SMichel Lespinasse found: 1933db4fbfb9SMichel Lespinasse /* We found a suitable gap. Clip it with the original low_limit. */ 1934db4fbfb9SMichel Lespinasse if (gap_start < info->low_limit) 1935db4fbfb9SMichel Lespinasse gap_start = info->low_limit; 1936db4fbfb9SMichel Lespinasse 1937db4fbfb9SMichel Lespinasse /* Adjust gap address to the desired alignment */ 1938db4fbfb9SMichel Lespinasse gap_start += (info->align_offset - gap_start) & info->align_mask; 1939db4fbfb9SMichel Lespinasse 1940db4fbfb9SMichel Lespinasse VM_BUG_ON(gap_start + info->length > info->high_limit); 1941db4fbfb9SMichel Lespinasse VM_BUG_ON(gap_start + info->length > gap_end); 1942db4fbfb9SMichel Lespinasse return gap_start; 1943db4fbfb9SMichel Lespinasse } 1944db4fbfb9SMichel Lespinasse 1945db4fbfb9SMichel Lespinasse unsigned long unmapped_area_topdown(struct vm_unmapped_area_info *info) 1946db4fbfb9SMichel Lespinasse { 1947db4fbfb9SMichel Lespinasse struct mm_struct *mm = current->mm; 1948db4fbfb9SMichel Lespinasse struct vm_area_struct *vma; 1949db4fbfb9SMichel Lespinasse unsigned long length, low_limit, high_limit, gap_start, gap_end; 1950db4fbfb9SMichel Lespinasse 1951db4fbfb9SMichel Lespinasse /* Adjust search length to account for worst case alignment overhead */ 1952db4fbfb9SMichel Lespinasse length = info->length + info->align_mask; 1953db4fbfb9SMichel Lespinasse if (length < info->length) 1954db4fbfb9SMichel Lespinasse return -ENOMEM; 1955db4fbfb9SMichel Lespinasse 1956db4fbfb9SMichel Lespinasse /* 1957db4fbfb9SMichel Lespinasse * Adjust search limits by the desired length. 1958db4fbfb9SMichel Lespinasse * See implementation comment at top of unmapped_area(). 1959db4fbfb9SMichel Lespinasse */ 1960db4fbfb9SMichel Lespinasse gap_end = info->high_limit; 1961db4fbfb9SMichel Lespinasse if (gap_end < length) 1962db4fbfb9SMichel Lespinasse return -ENOMEM; 1963db4fbfb9SMichel Lespinasse high_limit = gap_end - length; 1964db4fbfb9SMichel Lespinasse 1965db4fbfb9SMichel Lespinasse if (info->low_limit > high_limit) 1966db4fbfb9SMichel Lespinasse return -ENOMEM; 1967db4fbfb9SMichel Lespinasse low_limit = info->low_limit + length; 1968db4fbfb9SMichel Lespinasse 1969db4fbfb9SMichel Lespinasse /* Check highest gap, which does not precede any rbtree node */ 1970db4fbfb9SMichel Lespinasse gap_start = mm->highest_vm_end; 1971db4fbfb9SMichel Lespinasse if (gap_start <= high_limit) 1972db4fbfb9SMichel Lespinasse goto found_highest; 1973db4fbfb9SMichel Lespinasse 1974db4fbfb9SMichel Lespinasse /* Check if rbtree root looks promising */ 1975db4fbfb9SMichel Lespinasse if (RB_EMPTY_ROOT(&mm->mm_rb)) 1976db4fbfb9SMichel Lespinasse return -ENOMEM; 1977db4fbfb9SMichel Lespinasse vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb); 1978db4fbfb9SMichel Lespinasse if (vma->rb_subtree_gap < length) 1979db4fbfb9SMichel Lespinasse return -ENOMEM; 1980db4fbfb9SMichel Lespinasse 1981db4fbfb9SMichel Lespinasse while (true) { 1982db4fbfb9SMichel Lespinasse /* Visit right subtree if it looks promising */ 19831be7107fSHugh Dickins gap_start = vma->vm_prev ? vm_end_gap(vma->vm_prev) : 0; 1984db4fbfb9SMichel Lespinasse if (gap_start <= high_limit && vma->vm_rb.rb_right) { 1985db4fbfb9SMichel Lespinasse struct vm_area_struct *right = 1986db4fbfb9SMichel Lespinasse rb_entry(vma->vm_rb.rb_right, 1987db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1988db4fbfb9SMichel Lespinasse if (right->rb_subtree_gap >= length) { 1989db4fbfb9SMichel Lespinasse vma = right; 1990db4fbfb9SMichel Lespinasse continue; 1991db4fbfb9SMichel Lespinasse } 1992db4fbfb9SMichel Lespinasse } 1993db4fbfb9SMichel Lespinasse 1994db4fbfb9SMichel Lespinasse check_current: 1995db4fbfb9SMichel Lespinasse /* Check if current node has a suitable gap */ 19961be7107fSHugh Dickins gap_end = vm_start_gap(vma); 1997db4fbfb9SMichel Lespinasse if (gap_end < low_limit) 1998db4fbfb9SMichel Lespinasse return -ENOMEM; 1999f4cb767dSHugh Dickins if (gap_start <= high_limit && 2000f4cb767dSHugh Dickins gap_end > gap_start && gap_end - gap_start >= length) 2001db4fbfb9SMichel Lespinasse goto found; 2002db4fbfb9SMichel Lespinasse 2003db4fbfb9SMichel Lespinasse /* Visit left subtree if it looks promising */ 2004db4fbfb9SMichel Lespinasse if (vma->vm_rb.rb_left) { 2005db4fbfb9SMichel Lespinasse struct vm_area_struct *left = 2006db4fbfb9SMichel Lespinasse rb_entry(vma->vm_rb.rb_left, 2007db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 2008db4fbfb9SMichel Lespinasse if (left->rb_subtree_gap >= length) { 2009db4fbfb9SMichel Lespinasse vma = left; 2010db4fbfb9SMichel Lespinasse continue; 2011db4fbfb9SMichel Lespinasse } 2012db4fbfb9SMichel Lespinasse } 2013db4fbfb9SMichel Lespinasse 2014db4fbfb9SMichel Lespinasse /* Go back up the rbtree to find next candidate node */ 2015db4fbfb9SMichel Lespinasse while (true) { 2016db4fbfb9SMichel Lespinasse struct rb_node *prev = &vma->vm_rb; 2017db4fbfb9SMichel Lespinasse if (!rb_parent(prev)) 2018db4fbfb9SMichel Lespinasse return -ENOMEM; 2019db4fbfb9SMichel Lespinasse vma = rb_entry(rb_parent(prev), 2020db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 2021db4fbfb9SMichel Lespinasse if (prev == vma->vm_rb.rb_right) { 2022db4fbfb9SMichel Lespinasse gap_start = vma->vm_prev ? 20231be7107fSHugh Dickins vm_end_gap(vma->vm_prev) : 0; 2024db4fbfb9SMichel Lespinasse goto check_current; 2025db4fbfb9SMichel Lespinasse } 2026db4fbfb9SMichel Lespinasse } 2027db4fbfb9SMichel Lespinasse } 2028db4fbfb9SMichel Lespinasse 2029db4fbfb9SMichel Lespinasse found: 2030db4fbfb9SMichel Lespinasse /* We found a suitable gap. Clip it with the original high_limit. */ 2031db4fbfb9SMichel Lespinasse if (gap_end > info->high_limit) 2032db4fbfb9SMichel Lespinasse gap_end = info->high_limit; 2033db4fbfb9SMichel Lespinasse 2034db4fbfb9SMichel Lespinasse found_highest: 2035db4fbfb9SMichel Lespinasse /* Compute highest gap address at the desired alignment */ 2036db4fbfb9SMichel Lespinasse gap_end -= info->length; 2037db4fbfb9SMichel Lespinasse gap_end -= (gap_end - info->align_offset) & info->align_mask; 2038db4fbfb9SMichel Lespinasse 2039db4fbfb9SMichel Lespinasse VM_BUG_ON(gap_end < info->low_limit); 2040db4fbfb9SMichel Lespinasse VM_BUG_ON(gap_end < gap_start); 2041db4fbfb9SMichel Lespinasse return gap_end; 2042db4fbfb9SMichel Lespinasse } 2043db4fbfb9SMichel Lespinasse 20441da177e4SLinus Torvalds /* Get an address range which is currently unmapped. 20451da177e4SLinus Torvalds * For shmat() with addr=0. 20461da177e4SLinus Torvalds * 20471da177e4SLinus Torvalds * Ugly calling convention alert: 20481da177e4SLinus Torvalds * Return value with the low bits set means error value, 20491da177e4SLinus Torvalds * ie 20501da177e4SLinus Torvalds * if (ret & ~PAGE_MASK) 20511da177e4SLinus Torvalds * error = ret; 20521da177e4SLinus Torvalds * 20531da177e4SLinus Torvalds * This function "knows" that -ENOMEM has the bits set. 20541da177e4SLinus Torvalds */ 20551da177e4SLinus Torvalds #ifndef HAVE_ARCH_UNMAPPED_AREA 20561da177e4SLinus Torvalds unsigned long 20571da177e4SLinus Torvalds arch_get_unmapped_area(struct file *filp, unsigned long addr, 20581da177e4SLinus Torvalds unsigned long len, unsigned long pgoff, unsigned long flags) 20591da177e4SLinus Torvalds { 20601da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 20611be7107fSHugh Dickins struct vm_area_struct *vma, *prev; 2062db4fbfb9SMichel Lespinasse struct vm_unmapped_area_info info; 20631da177e4SLinus Torvalds 20642afc745fSAkira Takeuchi if (len > TASK_SIZE - mmap_min_addr) 20651da177e4SLinus Torvalds return -ENOMEM; 20661da177e4SLinus Torvalds 206706abdfb4SBenjamin Herrenschmidt if (flags & MAP_FIXED) 206806abdfb4SBenjamin Herrenschmidt return addr; 206906abdfb4SBenjamin Herrenschmidt 20701da177e4SLinus Torvalds if (addr) { 20711da177e4SLinus Torvalds addr = PAGE_ALIGN(addr); 20721be7107fSHugh Dickins vma = find_vma_prev(mm, addr, &prev); 20732afc745fSAkira Takeuchi if (TASK_SIZE - len >= addr && addr >= mmap_min_addr && 20741be7107fSHugh Dickins (!vma || addr + len <= vm_start_gap(vma)) && 20751be7107fSHugh Dickins (!prev || addr >= vm_end_gap(prev))) 20761da177e4SLinus Torvalds return addr; 20771da177e4SLinus Torvalds } 20781da177e4SLinus Torvalds 2079db4fbfb9SMichel Lespinasse info.flags = 0; 2080db4fbfb9SMichel Lespinasse info.length = len; 20814e99b021SHeiko Carstens info.low_limit = mm->mmap_base; 2082db4fbfb9SMichel Lespinasse info.high_limit = TASK_SIZE; 2083db4fbfb9SMichel Lespinasse info.align_mask = 0; 2084db4fbfb9SMichel Lespinasse return vm_unmapped_area(&info); 20851da177e4SLinus Torvalds } 20861da177e4SLinus Torvalds #endif 20871da177e4SLinus Torvalds 20881da177e4SLinus Torvalds /* 20891da177e4SLinus Torvalds * This mmap-allocator allocates new areas top-down from below the 20901da177e4SLinus Torvalds * stack's low limit (the base): 20911da177e4SLinus Torvalds */ 20921da177e4SLinus Torvalds #ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN 20931da177e4SLinus Torvalds unsigned long 20941da177e4SLinus Torvalds arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0, 20951da177e4SLinus Torvalds const unsigned long len, const unsigned long pgoff, 20961da177e4SLinus Torvalds const unsigned long flags) 20971da177e4SLinus Torvalds { 20981be7107fSHugh Dickins struct vm_area_struct *vma, *prev; 20991da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 2100db4fbfb9SMichel Lespinasse unsigned long addr = addr0; 2101db4fbfb9SMichel Lespinasse struct vm_unmapped_area_info info; 21021da177e4SLinus Torvalds 21031da177e4SLinus Torvalds /* requested length too big for entire address space */ 21042afc745fSAkira Takeuchi if (len > TASK_SIZE - mmap_min_addr) 21051da177e4SLinus Torvalds return -ENOMEM; 21061da177e4SLinus Torvalds 210706abdfb4SBenjamin Herrenschmidt if (flags & MAP_FIXED) 210806abdfb4SBenjamin Herrenschmidt return addr; 210906abdfb4SBenjamin Herrenschmidt 21101da177e4SLinus Torvalds /* requesting a specific address */ 21111da177e4SLinus Torvalds if (addr) { 21121da177e4SLinus Torvalds addr = PAGE_ALIGN(addr); 21131be7107fSHugh Dickins vma = find_vma_prev(mm, addr, &prev); 21142afc745fSAkira Takeuchi if (TASK_SIZE - len >= addr && addr >= mmap_min_addr && 21151be7107fSHugh Dickins (!vma || addr + len <= vm_start_gap(vma)) && 21161be7107fSHugh Dickins (!prev || addr >= vm_end_gap(prev))) 21171da177e4SLinus Torvalds return addr; 21181da177e4SLinus Torvalds } 21191da177e4SLinus Torvalds 2120db4fbfb9SMichel Lespinasse info.flags = VM_UNMAPPED_AREA_TOPDOWN; 2121db4fbfb9SMichel Lespinasse info.length = len; 21222afc745fSAkira Takeuchi info.low_limit = max(PAGE_SIZE, mmap_min_addr); 2123db4fbfb9SMichel Lespinasse info.high_limit = mm->mmap_base; 2124db4fbfb9SMichel Lespinasse info.align_mask = 0; 2125db4fbfb9SMichel Lespinasse addr = vm_unmapped_area(&info); 2126b716ad95SXiao Guangrong 21271da177e4SLinus Torvalds /* 21281da177e4SLinus Torvalds * A failed mmap() very likely causes application failure, 21291da177e4SLinus Torvalds * so fall back to the bottom-up function here. This scenario 21301da177e4SLinus Torvalds * can happen with large stack limits and large mmap() 21311da177e4SLinus Torvalds * allocations. 21321da177e4SLinus Torvalds */ 2133de1741a1SAlexander Kuleshov if (offset_in_page(addr)) { 2134db4fbfb9SMichel Lespinasse VM_BUG_ON(addr != -ENOMEM); 2135db4fbfb9SMichel Lespinasse info.flags = 0; 2136db4fbfb9SMichel Lespinasse info.low_limit = TASK_UNMAPPED_BASE; 2137db4fbfb9SMichel Lespinasse info.high_limit = TASK_SIZE; 2138db4fbfb9SMichel Lespinasse addr = vm_unmapped_area(&info); 2139db4fbfb9SMichel Lespinasse } 21401da177e4SLinus Torvalds 21411da177e4SLinus Torvalds return addr; 21421da177e4SLinus Torvalds } 21431da177e4SLinus Torvalds #endif 21441da177e4SLinus Torvalds 21451da177e4SLinus Torvalds unsigned long 21461da177e4SLinus Torvalds get_unmapped_area(struct file *file, unsigned long addr, unsigned long len, 21471da177e4SLinus Torvalds unsigned long pgoff, unsigned long flags) 21481da177e4SLinus Torvalds { 214906abdfb4SBenjamin Herrenschmidt unsigned long (*get_area)(struct file *, unsigned long, 215006abdfb4SBenjamin Herrenschmidt unsigned long, unsigned long, unsigned long); 215107ab67c8SLinus Torvalds 21529206de95SAl Viro unsigned long error = arch_mmap_check(addr, len, flags); 21539206de95SAl Viro if (error) 21549206de95SAl Viro return error; 21559206de95SAl Viro 21569206de95SAl Viro /* Careful about overflows.. */ 21579206de95SAl Viro if (len > TASK_SIZE) 21589206de95SAl Viro return -ENOMEM; 21599206de95SAl Viro 216007ab67c8SLinus Torvalds get_area = current->mm->get_unmapped_area; 2161c01d5b30SHugh Dickins if (file) { 2162c01d5b30SHugh Dickins if (file->f_op->get_unmapped_area) 216307ab67c8SLinus Torvalds get_area = file->f_op->get_unmapped_area; 2164c01d5b30SHugh Dickins } else if (flags & MAP_SHARED) { 2165c01d5b30SHugh Dickins /* 2166c01d5b30SHugh Dickins * mmap_region() will call shmem_zero_setup() to create a file, 2167c01d5b30SHugh Dickins * so use shmem's get_unmapped_area in case it can be huge. 2168c01d5b30SHugh Dickins * do_mmap_pgoff() will clear pgoff, so match alignment. 2169c01d5b30SHugh Dickins */ 2170c01d5b30SHugh Dickins pgoff = 0; 2171c01d5b30SHugh Dickins get_area = shmem_get_unmapped_area; 2172c01d5b30SHugh Dickins } 2173c01d5b30SHugh Dickins 217407ab67c8SLinus Torvalds addr = get_area(file, addr, len, pgoff, flags); 217507ab67c8SLinus Torvalds if (IS_ERR_VALUE(addr)) 217607ab67c8SLinus Torvalds return addr; 217707ab67c8SLinus Torvalds 21781da177e4SLinus Torvalds if (addr > TASK_SIZE - len) 21791da177e4SLinus Torvalds return -ENOMEM; 2180de1741a1SAlexander Kuleshov if (offset_in_page(addr)) 21811da177e4SLinus Torvalds return -EINVAL; 218206abdfb4SBenjamin Herrenschmidt 21839ac4ed4bSAl Viro error = security_mmap_addr(addr); 21849ac4ed4bSAl Viro return error ? error : addr; 21851da177e4SLinus Torvalds } 21861da177e4SLinus Torvalds 21871da177e4SLinus Torvalds EXPORT_SYMBOL(get_unmapped_area); 21881da177e4SLinus Torvalds 21891da177e4SLinus Torvalds /* Look up the first VMA which satisfies addr < vm_end, NULL if none. */ 21901da177e4SLinus Torvalds struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr) 21911da177e4SLinus Torvalds { 2192615d6e87SDavidlohr Bueso struct rb_node *rb_node; 2193615d6e87SDavidlohr Bueso struct vm_area_struct *vma; 21941da177e4SLinus Torvalds 21951da177e4SLinus Torvalds /* Check the cache first. */ 2196615d6e87SDavidlohr Bueso vma = vmacache_find(mm, addr); 2197615d6e87SDavidlohr Bueso if (likely(vma)) 2198615d6e87SDavidlohr Bueso return vma; 21991da177e4SLinus Torvalds 22001da177e4SLinus Torvalds rb_node = mm->mm_rb.rb_node; 22011da177e4SLinus Torvalds 22021da177e4SLinus Torvalds while (rb_node) { 2203615d6e87SDavidlohr Bueso struct vm_area_struct *tmp; 22041da177e4SLinus Torvalds 2205615d6e87SDavidlohr Bueso tmp = rb_entry(rb_node, struct vm_area_struct, vm_rb); 22061da177e4SLinus Torvalds 2207615d6e87SDavidlohr Bueso if (tmp->vm_end > addr) { 2208615d6e87SDavidlohr Bueso vma = tmp; 2209615d6e87SDavidlohr Bueso if (tmp->vm_start <= addr) 22101da177e4SLinus Torvalds break; 22111da177e4SLinus Torvalds rb_node = rb_node->rb_left; 22121da177e4SLinus Torvalds } else 22131da177e4SLinus Torvalds rb_node = rb_node->rb_right; 22141da177e4SLinus Torvalds } 2215615d6e87SDavidlohr Bueso 22161da177e4SLinus Torvalds if (vma) 2217615d6e87SDavidlohr Bueso vmacache_update(addr, vma); 22181da177e4SLinus Torvalds return vma; 22191da177e4SLinus Torvalds } 22201da177e4SLinus Torvalds 22211da177e4SLinus Torvalds EXPORT_SYMBOL(find_vma); 22221da177e4SLinus Torvalds 22236bd4837dSKOSAKI Motohiro /* 22246bd4837dSKOSAKI Motohiro * Same as find_vma, but also return a pointer to the previous VMA in *pprev. 22256bd4837dSKOSAKI Motohiro */ 22261da177e4SLinus Torvalds struct vm_area_struct * 22271da177e4SLinus Torvalds find_vma_prev(struct mm_struct *mm, unsigned long addr, 22281da177e4SLinus Torvalds struct vm_area_struct **pprev) 22291da177e4SLinus Torvalds { 22306bd4837dSKOSAKI Motohiro struct vm_area_struct *vma; 22311da177e4SLinus Torvalds 22326bd4837dSKOSAKI Motohiro vma = find_vma(mm, addr); 223383cd904dSMikulas Patocka if (vma) { 223483cd904dSMikulas Patocka *pprev = vma->vm_prev; 223583cd904dSMikulas Patocka } else { 223683cd904dSMikulas Patocka struct rb_node *rb_node = mm->mm_rb.rb_node; 223783cd904dSMikulas Patocka *pprev = NULL; 223883cd904dSMikulas Patocka while (rb_node) { 223983cd904dSMikulas Patocka *pprev = rb_entry(rb_node, struct vm_area_struct, vm_rb); 224083cd904dSMikulas Patocka rb_node = rb_node->rb_right; 224183cd904dSMikulas Patocka } 224283cd904dSMikulas Patocka } 22436bd4837dSKOSAKI Motohiro return vma; 22441da177e4SLinus Torvalds } 22451da177e4SLinus Torvalds 22461da177e4SLinus Torvalds /* 22471da177e4SLinus Torvalds * Verify that the stack growth is acceptable and 22481da177e4SLinus Torvalds * update accounting. This is shared with both the 22491da177e4SLinus Torvalds * grow-up and grow-down cases. 22501da177e4SLinus Torvalds */ 22511be7107fSHugh Dickins static int acct_stack_growth(struct vm_area_struct *vma, 22521be7107fSHugh Dickins unsigned long size, unsigned long grow) 22531da177e4SLinus Torvalds { 22541da177e4SLinus Torvalds struct mm_struct *mm = vma->vm_mm; 22551be7107fSHugh Dickins unsigned long new_start; 22561da177e4SLinus Torvalds 22571da177e4SLinus Torvalds /* address space limit tests */ 225884638335SKonstantin Khlebnikov if (!may_expand_vm(mm, vma->vm_flags, grow)) 22591da177e4SLinus Torvalds return -ENOMEM; 22601da177e4SLinus Torvalds 22611da177e4SLinus Torvalds /* Stack limit test */ 226224c79d8eSKrzysztof Opasiak if (size > rlimit(RLIMIT_STACK)) 22631da177e4SLinus Torvalds return -ENOMEM; 22641da177e4SLinus Torvalds 22651da177e4SLinus Torvalds /* mlock limit tests */ 22661da177e4SLinus Torvalds if (vma->vm_flags & VM_LOCKED) { 22671da177e4SLinus Torvalds unsigned long locked; 22681da177e4SLinus Torvalds unsigned long limit; 22691da177e4SLinus Torvalds locked = mm->locked_vm + grow; 227024c79d8eSKrzysztof Opasiak limit = rlimit(RLIMIT_MEMLOCK); 227159e99e5bSJiri Slaby limit >>= PAGE_SHIFT; 22721da177e4SLinus Torvalds if (locked > limit && !capable(CAP_IPC_LOCK)) 22731da177e4SLinus Torvalds return -ENOMEM; 22741da177e4SLinus Torvalds } 22751da177e4SLinus Torvalds 22760d59a01bSAdam Litke /* Check to ensure the stack will not grow into a hugetlb-only region */ 22770d59a01bSAdam Litke new_start = (vma->vm_flags & VM_GROWSUP) ? vma->vm_start : 22780d59a01bSAdam Litke vma->vm_end - size; 22790d59a01bSAdam Litke if (is_hugepage_only_range(vma->vm_mm, new_start, size)) 22800d59a01bSAdam Litke return -EFAULT; 22810d59a01bSAdam Litke 22821da177e4SLinus Torvalds /* 22831da177e4SLinus Torvalds * Overcommit.. This must be the final test, as it will 22841da177e4SLinus Torvalds * update security statistics. 22851da177e4SLinus Torvalds */ 228605fa199dSHugh Dickins if (security_vm_enough_memory_mm(mm, grow)) 22871da177e4SLinus Torvalds return -ENOMEM; 22881da177e4SLinus Torvalds 22891da177e4SLinus Torvalds return 0; 22901da177e4SLinus Torvalds } 22911da177e4SLinus Torvalds 229246dea3d0SHugh Dickins #if defined(CONFIG_STACK_GROWSUP) || defined(CONFIG_IA64) 22931da177e4SLinus Torvalds /* 229446dea3d0SHugh Dickins * PA-RISC uses this for its stack; IA64 for its Register Backing Store. 229546dea3d0SHugh Dickins * vma is the last one with address > vma->vm_end. Have to extend vma. 22961da177e4SLinus Torvalds */ 229746dea3d0SHugh Dickins int expand_upwards(struct vm_area_struct *vma, unsigned long address) 22981da177e4SLinus Torvalds { 229909357814SOleg Nesterov struct mm_struct *mm = vma->vm_mm; 23001be7107fSHugh Dickins struct vm_area_struct *next; 23011be7107fSHugh Dickins unsigned long gap_addr; 230212352d3cSKonstantin Khlebnikov int error = 0; 23031da177e4SLinus Torvalds 23041da177e4SLinus Torvalds if (!(vma->vm_flags & VM_GROWSUP)) 23051da177e4SLinus Torvalds return -EFAULT; 23061da177e4SLinus Torvalds 2307bd726c90SHelge Deller /* Guard against exceeding limits of the address space. */ 23081be7107fSHugh Dickins address &= PAGE_MASK; 230937511fb5SHelge Deller if (address >= (TASK_SIZE & PAGE_MASK)) 231012352d3cSKonstantin Khlebnikov return -ENOMEM; 2311bd726c90SHelge Deller address += PAGE_SIZE; 231212352d3cSKonstantin Khlebnikov 23131be7107fSHugh Dickins /* Enforce stack_guard_gap */ 23141be7107fSHugh Dickins gap_addr = address + stack_guard_gap; 2315bd726c90SHelge Deller 2316bd726c90SHelge Deller /* Guard against overflow */ 2317bd726c90SHelge Deller if (gap_addr < address || gap_addr > TASK_SIZE) 2318bd726c90SHelge Deller gap_addr = TASK_SIZE; 2319bd726c90SHelge Deller 23201be7107fSHugh Dickins next = vma->vm_next; 2321561b5e07SMichal Hocko if (next && next->vm_start < gap_addr && 2322561b5e07SMichal Hocko (next->vm_flags & (VM_WRITE|VM_READ|VM_EXEC))) { 23231be7107fSHugh Dickins if (!(next->vm_flags & VM_GROWSUP)) 23241be7107fSHugh Dickins return -ENOMEM; 23251be7107fSHugh Dickins /* Check that both stack segments have the same anon_vma? */ 23261be7107fSHugh Dickins } 23271be7107fSHugh Dickins 232812352d3cSKonstantin Khlebnikov /* We must make sure the anon_vma is allocated. */ 23291da177e4SLinus Torvalds if (unlikely(anon_vma_prepare(vma))) 23301da177e4SLinus Torvalds return -ENOMEM; 23311da177e4SLinus Torvalds 23321da177e4SLinus Torvalds /* 23331da177e4SLinus Torvalds * vma->vm_start/vm_end cannot change under us because the caller 23341da177e4SLinus Torvalds * is required to hold the mmap_sem in read mode. We need the 23351da177e4SLinus Torvalds * anon_vma lock to serialize against concurrent expand_stacks. 23361da177e4SLinus Torvalds */ 233712352d3cSKonstantin Khlebnikov anon_vma_lock_write(vma->anon_vma); 23381da177e4SLinus Torvalds 23391da177e4SLinus Torvalds /* Somebody else might have raced and expanded it already */ 23401da177e4SLinus Torvalds if (address > vma->vm_end) { 23411da177e4SLinus Torvalds unsigned long size, grow; 23421da177e4SLinus Torvalds 23431da177e4SLinus Torvalds size = address - vma->vm_start; 23441da177e4SLinus Torvalds grow = (address - vma->vm_end) >> PAGE_SHIFT; 23451da177e4SLinus Torvalds 234642c36f63SHugh Dickins error = -ENOMEM; 234742c36f63SHugh Dickins if (vma->vm_pgoff + (size >> PAGE_SHIFT) >= vma->vm_pgoff) { 23481da177e4SLinus Torvalds error = acct_stack_growth(vma, size, grow); 23493af9e859SEric B Munson if (!error) { 23504128997bSMichel Lespinasse /* 23514128997bSMichel Lespinasse * vma_gap_update() doesn't support concurrent 23524128997bSMichel Lespinasse * updates, but we only hold a shared mmap_sem 23534128997bSMichel Lespinasse * lock here, so we need to protect against 23544128997bSMichel Lespinasse * concurrent vma expansions. 235512352d3cSKonstantin Khlebnikov * anon_vma_lock_write() doesn't help here, as 23564128997bSMichel Lespinasse * we don't guarantee that all growable vmas 23574128997bSMichel Lespinasse * in a mm share the same root anon vma. 23584128997bSMichel Lespinasse * So, we reuse mm->page_table_lock to guard 23594128997bSMichel Lespinasse * against concurrent vma expansions. 23604128997bSMichel Lespinasse */ 236109357814SOleg Nesterov spin_lock(&mm->page_table_lock); 236287e8827bSOleg Nesterov if (vma->vm_flags & VM_LOCKED) 236309357814SOleg Nesterov mm->locked_vm += grow; 236484638335SKonstantin Khlebnikov vm_stat_account(mm, vma->vm_flags, grow); 2365bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(vma); 23661da177e4SLinus Torvalds vma->vm_end = address; 2367bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(vma); 2368d3737187SMichel Lespinasse if (vma->vm_next) 2369d3737187SMichel Lespinasse vma_gap_update(vma->vm_next); 2370d3737187SMichel Lespinasse else 23711be7107fSHugh Dickins mm->highest_vm_end = vm_end_gap(vma); 237209357814SOleg Nesterov spin_unlock(&mm->page_table_lock); 23734128997bSMichel Lespinasse 23743af9e859SEric B Munson perf_event_mmap(vma); 23753af9e859SEric B Munson } 23761da177e4SLinus Torvalds } 237742c36f63SHugh Dickins } 237812352d3cSKonstantin Khlebnikov anon_vma_unlock_write(vma->anon_vma); 23796d50e60cSDavid Rientjes khugepaged_enter_vma_merge(vma, vma->vm_flags); 238009357814SOleg Nesterov validate_mm(mm); 23811da177e4SLinus Torvalds return error; 23821da177e4SLinus Torvalds } 238346dea3d0SHugh Dickins #endif /* CONFIG_STACK_GROWSUP || CONFIG_IA64 */ 238446dea3d0SHugh Dickins 23851da177e4SLinus Torvalds /* 23861da177e4SLinus Torvalds * vma is the first one with address < vma->vm_start. Have to extend vma. 23871da177e4SLinus Torvalds */ 2388d05f3169SMichal Hocko int expand_downwards(struct vm_area_struct *vma, 2389b6a2fea3SOllie Wild unsigned long address) 23901da177e4SLinus Torvalds { 239109357814SOleg Nesterov struct mm_struct *mm = vma->vm_mm; 23921be7107fSHugh Dickins struct vm_area_struct *prev; 23931da177e4SLinus Torvalds int error; 23941da177e4SLinus Torvalds 23958869477aSEric Paris address &= PAGE_MASK; 2396e5467859SAl Viro error = security_mmap_addr(address); 23978869477aSEric Paris if (error) 23988869477aSEric Paris return error; 23998869477aSEric Paris 24001be7107fSHugh Dickins /* Enforce stack_guard_gap */ 24011be7107fSHugh Dickins prev = vma->vm_prev; 24021be7107fSHugh Dickins /* Check that both stack segments have the same anon_vma? */ 240332e4e6d5SOleg Nesterov if (prev && !(prev->vm_flags & VM_GROWSDOWN) && 240432e4e6d5SOleg Nesterov (prev->vm_flags & (VM_WRITE|VM_READ|VM_EXEC))) { 240532e4e6d5SOleg Nesterov if (address - prev->vm_end < stack_guard_gap) 240632e4e6d5SOleg Nesterov return -ENOMEM; 24071be7107fSHugh Dickins } 24081be7107fSHugh Dickins 240912352d3cSKonstantin Khlebnikov /* We must make sure the anon_vma is allocated. */ 241012352d3cSKonstantin Khlebnikov if (unlikely(anon_vma_prepare(vma))) 241112352d3cSKonstantin Khlebnikov return -ENOMEM; 24121da177e4SLinus Torvalds 24131da177e4SLinus Torvalds /* 24141da177e4SLinus Torvalds * vma->vm_start/vm_end cannot change under us because the caller 24151da177e4SLinus Torvalds * is required to hold the mmap_sem in read mode. We need the 24161da177e4SLinus Torvalds * anon_vma lock to serialize against concurrent expand_stacks. 24171da177e4SLinus Torvalds */ 241812352d3cSKonstantin Khlebnikov anon_vma_lock_write(vma->anon_vma); 24191da177e4SLinus Torvalds 24201da177e4SLinus Torvalds /* Somebody else might have raced and expanded it already */ 24211da177e4SLinus Torvalds if (address < vma->vm_start) { 24221da177e4SLinus Torvalds unsigned long size, grow; 24231da177e4SLinus Torvalds 24241da177e4SLinus Torvalds size = vma->vm_end - address; 24251da177e4SLinus Torvalds grow = (vma->vm_start - address) >> PAGE_SHIFT; 24261da177e4SLinus Torvalds 2427a626ca6aSLinus Torvalds error = -ENOMEM; 2428a626ca6aSLinus Torvalds if (grow <= vma->vm_pgoff) { 24291da177e4SLinus Torvalds error = acct_stack_growth(vma, size, grow); 24301da177e4SLinus Torvalds if (!error) { 24314128997bSMichel Lespinasse /* 24324128997bSMichel Lespinasse * vma_gap_update() doesn't support concurrent 24334128997bSMichel Lespinasse * updates, but we only hold a shared mmap_sem 24344128997bSMichel Lespinasse * lock here, so we need to protect against 24354128997bSMichel Lespinasse * concurrent vma expansions. 243612352d3cSKonstantin Khlebnikov * anon_vma_lock_write() doesn't help here, as 24374128997bSMichel Lespinasse * we don't guarantee that all growable vmas 24384128997bSMichel Lespinasse * in a mm share the same root anon vma. 24394128997bSMichel Lespinasse * So, we reuse mm->page_table_lock to guard 24404128997bSMichel Lespinasse * against concurrent vma expansions. 24414128997bSMichel Lespinasse */ 244209357814SOleg Nesterov spin_lock(&mm->page_table_lock); 244387e8827bSOleg Nesterov if (vma->vm_flags & VM_LOCKED) 244409357814SOleg Nesterov mm->locked_vm += grow; 244584638335SKonstantin Khlebnikov vm_stat_account(mm, vma->vm_flags, grow); 2446bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(vma); 24471da177e4SLinus Torvalds vma->vm_start = address; 24481da177e4SLinus Torvalds vma->vm_pgoff -= grow; 2449bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(vma); 2450d3737187SMichel Lespinasse vma_gap_update(vma); 245109357814SOleg Nesterov spin_unlock(&mm->page_table_lock); 24524128997bSMichel Lespinasse 24533af9e859SEric B Munson perf_event_mmap(vma); 24541da177e4SLinus Torvalds } 24551da177e4SLinus Torvalds } 2456a626ca6aSLinus Torvalds } 245712352d3cSKonstantin Khlebnikov anon_vma_unlock_write(vma->anon_vma); 24586d50e60cSDavid Rientjes khugepaged_enter_vma_merge(vma, vma->vm_flags); 245909357814SOleg Nesterov validate_mm(mm); 24601da177e4SLinus Torvalds return error; 24611da177e4SLinus Torvalds } 24621da177e4SLinus Torvalds 24631be7107fSHugh Dickins /* enforced gap between the expanding stack and other mappings. */ 24641be7107fSHugh Dickins unsigned long stack_guard_gap = 256UL<<PAGE_SHIFT; 24651be7107fSHugh Dickins 24661be7107fSHugh Dickins static int __init cmdline_parse_stack_guard_gap(char *p) 24671be7107fSHugh Dickins { 24681be7107fSHugh Dickins unsigned long val; 24691be7107fSHugh Dickins char *endptr; 24701be7107fSHugh Dickins 24711be7107fSHugh Dickins val = simple_strtoul(p, &endptr, 10); 24721be7107fSHugh Dickins if (!*endptr) 24731be7107fSHugh Dickins stack_guard_gap = val << PAGE_SHIFT; 24741be7107fSHugh Dickins 24751be7107fSHugh Dickins return 0; 24761be7107fSHugh Dickins } 24771be7107fSHugh Dickins __setup("stack_guard_gap=", cmdline_parse_stack_guard_gap); 24781be7107fSHugh Dickins 2479b6a2fea3SOllie Wild #ifdef CONFIG_STACK_GROWSUP 2480b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address) 2481b6a2fea3SOllie Wild { 2482b6a2fea3SOllie Wild return expand_upwards(vma, address); 2483b6a2fea3SOllie Wild } 2484b6a2fea3SOllie Wild 2485b6a2fea3SOllie Wild struct vm_area_struct * 2486b6a2fea3SOllie Wild find_extend_vma(struct mm_struct *mm, unsigned long addr) 2487b6a2fea3SOllie Wild { 2488b6a2fea3SOllie Wild struct vm_area_struct *vma, *prev; 2489b6a2fea3SOllie Wild 2490b6a2fea3SOllie Wild addr &= PAGE_MASK; 2491b6a2fea3SOllie Wild vma = find_vma_prev(mm, addr, &prev); 2492b6a2fea3SOllie Wild if (vma && (vma->vm_start <= addr)) 2493b6a2fea3SOllie Wild return vma; 24941c127185SDenys Vlasenko if (!prev || expand_stack(prev, addr)) 2495b6a2fea3SOllie Wild return NULL; 2496cea10a19SMichel Lespinasse if (prev->vm_flags & VM_LOCKED) 2497fc05f566SKirill A. Shutemov populate_vma_page_range(prev, addr, prev->vm_end, NULL); 2498b6a2fea3SOllie Wild return prev; 2499b6a2fea3SOllie Wild } 2500b6a2fea3SOllie Wild #else 2501b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address) 2502b6a2fea3SOllie Wild { 2503b6a2fea3SOllie Wild return expand_downwards(vma, address); 2504b6a2fea3SOllie Wild } 2505b6a2fea3SOllie Wild 25061da177e4SLinus Torvalds struct vm_area_struct * 25071da177e4SLinus Torvalds find_extend_vma(struct mm_struct *mm, unsigned long addr) 25081da177e4SLinus Torvalds { 25091da177e4SLinus Torvalds struct vm_area_struct *vma; 25101da177e4SLinus Torvalds unsigned long start; 25111da177e4SLinus Torvalds 25121da177e4SLinus Torvalds addr &= PAGE_MASK; 25131da177e4SLinus Torvalds vma = find_vma(mm, addr); 25141da177e4SLinus Torvalds if (!vma) 25151da177e4SLinus Torvalds return NULL; 25161da177e4SLinus Torvalds if (vma->vm_start <= addr) 25171da177e4SLinus Torvalds return vma; 25181da177e4SLinus Torvalds if (!(vma->vm_flags & VM_GROWSDOWN)) 25191da177e4SLinus Torvalds return NULL; 25201da177e4SLinus Torvalds start = vma->vm_start; 25211da177e4SLinus Torvalds if (expand_stack(vma, addr)) 25221da177e4SLinus Torvalds return NULL; 2523cea10a19SMichel Lespinasse if (vma->vm_flags & VM_LOCKED) 2524fc05f566SKirill A. Shutemov populate_vma_page_range(vma, addr, start, NULL); 25251da177e4SLinus Torvalds return vma; 25261da177e4SLinus Torvalds } 25271da177e4SLinus Torvalds #endif 25281da177e4SLinus Torvalds 2529e1d6d01aSJesse Barnes EXPORT_SYMBOL_GPL(find_extend_vma); 2530e1d6d01aSJesse Barnes 25312c0b3814SHugh Dickins /* 25322c0b3814SHugh Dickins * Ok - we have the memory areas we should free on the vma list, 25332c0b3814SHugh Dickins * so release them, and do the vma updates. 25341da177e4SLinus Torvalds * 25352c0b3814SHugh Dickins * Called with the mm semaphore held. 25361da177e4SLinus Torvalds */ 25372c0b3814SHugh Dickins static void remove_vma_list(struct mm_struct *mm, struct vm_area_struct *vma) 25381da177e4SLinus Torvalds { 25394f74d2c8SLinus Torvalds unsigned long nr_accounted = 0; 25404f74d2c8SLinus Torvalds 2541365e9c87SHugh Dickins /* Update high watermark before we lower total_vm */ 2542365e9c87SHugh Dickins update_hiwater_vm(mm); 25432c0b3814SHugh Dickins do { 2544ab50b8edSHugh Dickins long nrpages = vma_pages(vma); 25451da177e4SLinus Torvalds 25464f74d2c8SLinus Torvalds if (vma->vm_flags & VM_ACCOUNT) 25474f74d2c8SLinus Torvalds nr_accounted += nrpages; 254884638335SKonstantin Khlebnikov vm_stat_account(mm, vma->vm_flags, -nrpages); 2549a8fb5618SHugh Dickins vma = remove_vma(vma); 2550146425a3SHugh Dickins } while (vma); 25514f74d2c8SLinus Torvalds vm_unacct_memory(nr_accounted); 25521da177e4SLinus Torvalds validate_mm(mm); 25531da177e4SLinus Torvalds } 25541da177e4SLinus Torvalds 25551da177e4SLinus Torvalds /* 25561da177e4SLinus Torvalds * Get rid of page table information in the indicated region. 25571da177e4SLinus Torvalds * 2558f10df686SPaolo 'Blaisorblade' Giarrusso * Called with the mm semaphore held. 25591da177e4SLinus Torvalds */ 25601da177e4SLinus Torvalds static void unmap_region(struct mm_struct *mm, 2561e0da382cSHugh Dickins struct vm_area_struct *vma, struct vm_area_struct *prev, 2562e0da382cSHugh Dickins unsigned long start, unsigned long end) 25631da177e4SLinus Torvalds { 2564e0da382cSHugh Dickins struct vm_area_struct *next = prev ? prev->vm_next : mm->mmap; 2565d16dfc55SPeter Zijlstra struct mmu_gather tlb; 25661da177e4SLinus Torvalds 25671da177e4SLinus Torvalds lru_add_drain(); 25682b047252SLinus Torvalds tlb_gather_mmu(&tlb, mm, start, end); 2569365e9c87SHugh Dickins update_hiwater_rss(mm); 25704f74d2c8SLinus Torvalds unmap_vmas(&tlb, vma, start, end); 2571d16dfc55SPeter Zijlstra free_pgtables(&tlb, vma, prev ? prev->vm_end : FIRST_USER_ADDRESS, 25726ee8630eSHugh Dickins next ? next->vm_start : USER_PGTABLES_CEILING); 2573d16dfc55SPeter Zijlstra tlb_finish_mmu(&tlb, start, end); 25741da177e4SLinus Torvalds } 25751da177e4SLinus Torvalds 25761da177e4SLinus Torvalds /* 25771da177e4SLinus Torvalds * Create a list of vma's touched by the unmap, removing them from the mm's 25781da177e4SLinus Torvalds * vma list as we go.. 25791da177e4SLinus Torvalds */ 25801da177e4SLinus Torvalds static void 25811da177e4SLinus Torvalds detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma, 25821da177e4SLinus Torvalds struct vm_area_struct *prev, unsigned long end) 25831da177e4SLinus Torvalds { 25841da177e4SLinus Torvalds struct vm_area_struct **insertion_point; 25851da177e4SLinus Torvalds struct vm_area_struct *tail_vma = NULL; 25861da177e4SLinus Torvalds 25871da177e4SLinus Torvalds insertion_point = (prev ? &prev->vm_next : &mm->mmap); 2588297c5eeeSLinus Torvalds vma->vm_prev = NULL; 25891da177e4SLinus Torvalds do { 2590d3737187SMichel Lespinasse vma_rb_erase(vma, &mm->mm_rb); 25911da177e4SLinus Torvalds mm->map_count--; 25921da177e4SLinus Torvalds tail_vma = vma; 25931da177e4SLinus Torvalds vma = vma->vm_next; 25941da177e4SLinus Torvalds } while (vma && vma->vm_start < end); 25951da177e4SLinus Torvalds *insertion_point = vma; 2596d3737187SMichel Lespinasse if (vma) { 2597297c5eeeSLinus Torvalds vma->vm_prev = prev; 2598d3737187SMichel Lespinasse vma_gap_update(vma); 2599d3737187SMichel Lespinasse } else 26001be7107fSHugh Dickins mm->highest_vm_end = prev ? vm_end_gap(prev) : 0; 26011da177e4SLinus Torvalds tail_vma->vm_next = NULL; 2602615d6e87SDavidlohr Bueso 2603615d6e87SDavidlohr Bueso /* Kill the cache */ 2604615d6e87SDavidlohr Bueso vmacache_invalidate(mm); 26051da177e4SLinus Torvalds } 26061da177e4SLinus Torvalds 26071da177e4SLinus Torvalds /* 2608def5efe0SDavid Rientjes * __split_vma() bypasses sysctl_max_map_count checking. We use this where it 2609def5efe0SDavid Rientjes * has already been checked or doesn't make sense to fail. 26101da177e4SLinus Torvalds */ 2611def5efe0SDavid Rientjes int __split_vma(struct mm_struct *mm, struct vm_area_struct *vma, 26121da177e4SLinus Torvalds unsigned long addr, int new_below) 26131da177e4SLinus Torvalds { 26141da177e4SLinus Torvalds struct vm_area_struct *new; 2615e3975891SChen Gang int err; 26161da177e4SLinus Torvalds 261731383c68SDan Williams if (vma->vm_ops && vma->vm_ops->split) { 261831383c68SDan Williams err = vma->vm_ops->split(vma, addr); 261931383c68SDan Williams if (err) 262031383c68SDan Williams return err; 262131383c68SDan Williams } 26221da177e4SLinus Torvalds 26233928d4f5SLinus Torvalds new = vm_area_dup(vma); 26241da177e4SLinus Torvalds if (!new) 2625e3975891SChen Gang return -ENOMEM; 26261da177e4SLinus Torvalds 26271da177e4SLinus Torvalds if (new_below) 26281da177e4SLinus Torvalds new->vm_end = addr; 26291da177e4SLinus Torvalds else { 26301da177e4SLinus Torvalds new->vm_start = addr; 26311da177e4SLinus Torvalds new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT); 26321da177e4SLinus Torvalds } 26331da177e4SLinus Torvalds 2634ef0855d3SOleg Nesterov err = vma_dup_policy(vma, new); 2635ef0855d3SOleg Nesterov if (err) 26365beb4930SRik van Riel goto out_free_vma; 26371da177e4SLinus Torvalds 2638c4ea95d7SDaniel Forrest err = anon_vma_clone(new, vma); 2639c4ea95d7SDaniel Forrest if (err) 26405beb4930SRik van Riel goto out_free_mpol; 26415beb4930SRik van Riel 2642e9714acfSKonstantin Khlebnikov if (new->vm_file) 26431da177e4SLinus Torvalds get_file(new->vm_file); 26441da177e4SLinus Torvalds 26451da177e4SLinus Torvalds if (new->vm_ops && new->vm_ops->open) 26461da177e4SLinus Torvalds new->vm_ops->open(new); 26471da177e4SLinus Torvalds 26481da177e4SLinus Torvalds if (new_below) 26495beb4930SRik van Riel err = vma_adjust(vma, addr, vma->vm_end, vma->vm_pgoff + 26501da177e4SLinus Torvalds ((addr - new->vm_start) >> PAGE_SHIFT), new); 26511da177e4SLinus Torvalds else 26525beb4930SRik van Riel err = vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new); 26531da177e4SLinus Torvalds 26545beb4930SRik van Riel /* Success. */ 26555beb4930SRik van Riel if (!err) 26561da177e4SLinus Torvalds return 0; 26575beb4930SRik van Riel 26585beb4930SRik van Riel /* Clean everything up if vma_adjust failed. */ 265958927533SRik van Riel if (new->vm_ops && new->vm_ops->close) 26605beb4930SRik van Riel new->vm_ops->close(new); 2661e9714acfSKonstantin Khlebnikov if (new->vm_file) 26625beb4930SRik van Riel fput(new->vm_file); 26632aeadc30SAndrea Arcangeli unlink_anon_vmas(new); 26645beb4930SRik van Riel out_free_mpol: 2665ef0855d3SOleg Nesterov mpol_put(vma_policy(new)); 26665beb4930SRik van Riel out_free_vma: 26673928d4f5SLinus Torvalds vm_area_free(new); 26685beb4930SRik van Riel return err; 26691da177e4SLinus Torvalds } 26701da177e4SLinus Torvalds 2671659ace58SKOSAKI Motohiro /* 2672659ace58SKOSAKI Motohiro * Split a vma into two pieces at address 'addr', a new vma is allocated 2673659ace58SKOSAKI Motohiro * either for the first part or the tail. 2674659ace58SKOSAKI Motohiro */ 2675659ace58SKOSAKI Motohiro int split_vma(struct mm_struct *mm, struct vm_area_struct *vma, 2676659ace58SKOSAKI Motohiro unsigned long addr, int new_below) 2677659ace58SKOSAKI Motohiro { 2678659ace58SKOSAKI Motohiro if (mm->map_count >= sysctl_max_map_count) 2679659ace58SKOSAKI Motohiro return -ENOMEM; 2680659ace58SKOSAKI Motohiro 2681659ace58SKOSAKI Motohiro return __split_vma(mm, vma, addr, new_below); 2682659ace58SKOSAKI Motohiro } 2683659ace58SKOSAKI Motohiro 26841da177e4SLinus Torvalds /* Munmap is split into 2 main parts -- this part which finds 26851da177e4SLinus Torvalds * what needs doing, and the areas themselves, which do the 26861da177e4SLinus Torvalds * work. This now handles partial unmappings. 26871da177e4SLinus Torvalds * Jeremy Fitzhardinge <jeremy@goop.org> 26881da177e4SLinus Torvalds */ 2689897ab3e0SMike Rapoport int do_munmap(struct mm_struct *mm, unsigned long start, size_t len, 2690897ab3e0SMike Rapoport struct list_head *uf) 26911da177e4SLinus Torvalds { 26921da177e4SLinus Torvalds unsigned long end; 2693146425a3SHugh Dickins struct vm_area_struct *vma, *prev, *last; 26941da177e4SLinus Torvalds 2695de1741a1SAlexander Kuleshov if ((offset_in_page(start)) || start > TASK_SIZE || len > TASK_SIZE-start) 26961da177e4SLinus Torvalds return -EINVAL; 26971da177e4SLinus Torvalds 2698cc71aba3Svishnu.ps len = PAGE_ALIGN(len); 2699cc71aba3Svishnu.ps if (len == 0) 27001da177e4SLinus Torvalds return -EINVAL; 27011da177e4SLinus Torvalds 27021da177e4SLinus Torvalds /* Find the first overlapping VMA */ 27039be34c9dSLinus Torvalds vma = find_vma(mm, start); 2704146425a3SHugh Dickins if (!vma) 27051da177e4SLinus Torvalds return 0; 27069be34c9dSLinus Torvalds prev = vma->vm_prev; 2707146425a3SHugh Dickins /* we have start < vma->vm_end */ 27081da177e4SLinus Torvalds 27091da177e4SLinus Torvalds /* if it doesn't overlap, we have nothing.. */ 27101da177e4SLinus Torvalds end = start + len; 2711146425a3SHugh Dickins if (vma->vm_start >= end) 27121da177e4SLinus Torvalds return 0; 27131da177e4SLinus Torvalds 27141da177e4SLinus Torvalds /* 27151da177e4SLinus Torvalds * If we need to split any vma, do it now to save pain later. 27161da177e4SLinus Torvalds * 27171da177e4SLinus Torvalds * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially 27181da177e4SLinus Torvalds * unmapped vm_area_struct will remain in use: so lower split_vma 27191da177e4SLinus Torvalds * places tmp vma above, and higher split_vma places tmp vma below. 27201da177e4SLinus Torvalds */ 2721146425a3SHugh Dickins if (start > vma->vm_start) { 2722659ace58SKOSAKI Motohiro int error; 2723659ace58SKOSAKI Motohiro 2724659ace58SKOSAKI Motohiro /* 2725659ace58SKOSAKI Motohiro * Make sure that map_count on return from munmap() will 2726659ace58SKOSAKI Motohiro * not exceed its limit; but let map_count go just above 2727659ace58SKOSAKI Motohiro * its limit temporarily, to help free resources as expected. 2728659ace58SKOSAKI Motohiro */ 2729659ace58SKOSAKI Motohiro if (end < vma->vm_end && mm->map_count >= sysctl_max_map_count) 2730659ace58SKOSAKI Motohiro return -ENOMEM; 2731659ace58SKOSAKI Motohiro 2732659ace58SKOSAKI Motohiro error = __split_vma(mm, vma, start, 0); 27331da177e4SLinus Torvalds if (error) 27341da177e4SLinus Torvalds return error; 2735146425a3SHugh Dickins prev = vma; 27361da177e4SLinus Torvalds } 27371da177e4SLinus Torvalds 27381da177e4SLinus Torvalds /* Does it split the last one? */ 27391da177e4SLinus Torvalds last = find_vma(mm, end); 27401da177e4SLinus Torvalds if (last && end > last->vm_start) { 2741659ace58SKOSAKI Motohiro int error = __split_vma(mm, last, end, 1); 27421da177e4SLinus Torvalds if (error) 27431da177e4SLinus Torvalds return error; 27441da177e4SLinus Torvalds } 2745146425a3SHugh Dickins vma = prev ? prev->vm_next : mm->mmap; 27461da177e4SLinus Torvalds 27472376dd7cSAndrea Arcangeli if (unlikely(uf)) { 27482376dd7cSAndrea Arcangeli /* 27492376dd7cSAndrea Arcangeli * If userfaultfd_unmap_prep returns an error the vmas 27502376dd7cSAndrea Arcangeli * will remain splitted, but userland will get a 27512376dd7cSAndrea Arcangeli * highly unexpected error anyway. This is no 27522376dd7cSAndrea Arcangeli * different than the case where the first of the two 27532376dd7cSAndrea Arcangeli * __split_vma fails, but we don't undo the first 27542376dd7cSAndrea Arcangeli * split, despite we could. This is unlikely enough 27552376dd7cSAndrea Arcangeli * failure that it's not worth optimizing it for. 27562376dd7cSAndrea Arcangeli */ 27572376dd7cSAndrea Arcangeli int error = userfaultfd_unmap_prep(vma, start, end, uf); 27582376dd7cSAndrea Arcangeli if (error) 27592376dd7cSAndrea Arcangeli return error; 27602376dd7cSAndrea Arcangeli } 27612376dd7cSAndrea Arcangeli 27621da177e4SLinus Torvalds /* 2763ba470de4SRik van Riel * unlock any mlock()ed ranges before detaching vmas 2764ba470de4SRik van Riel */ 2765ba470de4SRik van Riel if (mm->locked_vm) { 2766ba470de4SRik van Riel struct vm_area_struct *tmp = vma; 2767ba470de4SRik van Riel while (tmp && tmp->vm_start < end) { 2768ba470de4SRik van Riel if (tmp->vm_flags & VM_LOCKED) { 2769ba470de4SRik van Riel mm->locked_vm -= vma_pages(tmp); 2770ba470de4SRik van Riel munlock_vma_pages_all(tmp); 2771ba470de4SRik van Riel } 2772ba470de4SRik van Riel tmp = tmp->vm_next; 2773ba470de4SRik van Riel } 2774ba470de4SRik van Riel } 2775ba470de4SRik van Riel 2776ba470de4SRik van Riel /* 27771da177e4SLinus Torvalds * Remove the vma's, and unmap the actual pages 27781da177e4SLinus Torvalds */ 2779146425a3SHugh Dickins detach_vmas_to_be_unmapped(mm, vma, prev, end); 2780146425a3SHugh Dickins unmap_region(mm, vma, prev, start, end); 27811da177e4SLinus Torvalds 27821de4fa14SDave Hansen arch_unmap(mm, vma, start, end); 27831de4fa14SDave Hansen 27841da177e4SLinus Torvalds /* Fix up all other VM information */ 27852c0b3814SHugh Dickins remove_vma_list(mm, vma); 27861da177e4SLinus Torvalds 27871da177e4SLinus Torvalds return 0; 27881da177e4SLinus Torvalds } 27891da177e4SLinus Torvalds 2790bfce281cSAl Viro int vm_munmap(unsigned long start, size_t len) 2791a46ef99dSLinus Torvalds { 2792a46ef99dSLinus Torvalds int ret; 2793bfce281cSAl Viro struct mm_struct *mm = current->mm; 2794897ab3e0SMike Rapoport LIST_HEAD(uf); 2795a46ef99dSLinus Torvalds 2796ae798783SMichal Hocko if (down_write_killable(&mm->mmap_sem)) 2797ae798783SMichal Hocko return -EINTR; 2798ae798783SMichal Hocko 2799897ab3e0SMike Rapoport ret = do_munmap(mm, start, len, &uf); 2800a46ef99dSLinus Torvalds up_write(&mm->mmap_sem); 2801897ab3e0SMike Rapoport userfaultfd_unmap_complete(mm, &uf); 2802a46ef99dSLinus Torvalds return ret; 2803a46ef99dSLinus Torvalds } 2804a46ef99dSLinus Torvalds EXPORT_SYMBOL(vm_munmap); 2805a46ef99dSLinus Torvalds 28066a6160a7SHeiko Carstens SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len) 28071da177e4SLinus Torvalds { 28081da177e4SLinus Torvalds profile_munmap(addr); 2809846b1a0fSMike Rapoport return vm_munmap(addr, len); 28101da177e4SLinus Torvalds } 28111da177e4SLinus Torvalds 2812c8d78c18SKirill A. Shutemov 2813c8d78c18SKirill A. Shutemov /* 2814c8d78c18SKirill A. Shutemov * Emulation of deprecated remap_file_pages() syscall. 2815c8d78c18SKirill A. Shutemov */ 2816c8d78c18SKirill A. Shutemov SYSCALL_DEFINE5(remap_file_pages, unsigned long, start, unsigned long, size, 2817c8d78c18SKirill A. Shutemov unsigned long, prot, unsigned long, pgoff, unsigned long, flags) 2818c8d78c18SKirill A. Shutemov { 2819c8d78c18SKirill A. Shutemov 2820c8d78c18SKirill A. Shutemov struct mm_struct *mm = current->mm; 2821c8d78c18SKirill A. Shutemov struct vm_area_struct *vma; 2822c8d78c18SKirill A. Shutemov unsigned long populate = 0; 2823c8d78c18SKirill A. Shutemov unsigned long ret = -EINVAL; 2824c8d78c18SKirill A. Shutemov struct file *file; 2825c8d78c18SKirill A. Shutemov 2826ad56b738SMike Rapoport pr_warn_once("%s (%d) uses deprecated remap_file_pages() syscall. See Documentation/vm/remap_file_pages.rst.\n", 2827c8d78c18SKirill A. Shutemov current->comm, current->pid); 2828c8d78c18SKirill A. Shutemov 2829c8d78c18SKirill A. Shutemov if (prot) 2830c8d78c18SKirill A. Shutemov return ret; 2831c8d78c18SKirill A. Shutemov start = start & PAGE_MASK; 2832c8d78c18SKirill A. Shutemov size = size & PAGE_MASK; 2833c8d78c18SKirill A. Shutemov 2834c8d78c18SKirill A. Shutemov if (start + size <= start) 2835c8d78c18SKirill A. Shutemov return ret; 2836c8d78c18SKirill A. Shutemov 2837c8d78c18SKirill A. Shutemov /* Does pgoff wrap? */ 2838c8d78c18SKirill A. Shutemov if (pgoff + (size >> PAGE_SHIFT) < pgoff) 2839c8d78c18SKirill A. Shutemov return ret; 2840c8d78c18SKirill A. Shutemov 2841dc0ef0dfSMichal Hocko if (down_write_killable(&mm->mmap_sem)) 2842dc0ef0dfSMichal Hocko return -EINTR; 2843dc0ef0dfSMichal Hocko 2844c8d78c18SKirill A. Shutemov vma = find_vma(mm, start); 2845c8d78c18SKirill A. Shutemov 2846c8d78c18SKirill A. Shutemov if (!vma || !(vma->vm_flags & VM_SHARED)) 2847c8d78c18SKirill A. Shutemov goto out; 2848c8d78c18SKirill A. Shutemov 284948f7df32SKirill A. Shutemov if (start < vma->vm_start) 2850c8d78c18SKirill A. Shutemov goto out; 2851c8d78c18SKirill A. Shutemov 285248f7df32SKirill A. Shutemov if (start + size > vma->vm_end) { 285348f7df32SKirill A. Shutemov struct vm_area_struct *next; 285448f7df32SKirill A. Shutemov 285548f7df32SKirill A. Shutemov for (next = vma->vm_next; next; next = next->vm_next) { 285648f7df32SKirill A. Shutemov /* hole between vmas ? */ 285748f7df32SKirill A. Shutemov if (next->vm_start != next->vm_prev->vm_end) 285848f7df32SKirill A. Shutemov goto out; 285948f7df32SKirill A. Shutemov 286048f7df32SKirill A. Shutemov if (next->vm_file != vma->vm_file) 286148f7df32SKirill A. Shutemov goto out; 286248f7df32SKirill A. Shutemov 286348f7df32SKirill A. Shutemov if (next->vm_flags != vma->vm_flags) 286448f7df32SKirill A. Shutemov goto out; 286548f7df32SKirill A. Shutemov 286648f7df32SKirill A. Shutemov if (start + size <= next->vm_end) 286748f7df32SKirill A. Shutemov break; 286848f7df32SKirill A. Shutemov } 286948f7df32SKirill A. Shutemov 287048f7df32SKirill A. Shutemov if (!next) 2871c8d78c18SKirill A. Shutemov goto out; 2872c8d78c18SKirill A. Shutemov } 2873c8d78c18SKirill A. Shutemov 2874c8d78c18SKirill A. Shutemov prot |= vma->vm_flags & VM_READ ? PROT_READ : 0; 2875c8d78c18SKirill A. Shutemov prot |= vma->vm_flags & VM_WRITE ? PROT_WRITE : 0; 2876c8d78c18SKirill A. Shutemov prot |= vma->vm_flags & VM_EXEC ? PROT_EXEC : 0; 2877c8d78c18SKirill A. Shutemov 2878c8d78c18SKirill A. Shutemov flags &= MAP_NONBLOCK; 2879c8d78c18SKirill A. Shutemov flags |= MAP_SHARED | MAP_FIXED | MAP_POPULATE; 2880c8d78c18SKirill A. Shutemov if (vma->vm_flags & VM_LOCKED) { 288148f7df32SKirill A. Shutemov struct vm_area_struct *tmp; 2882c8d78c18SKirill A. Shutemov flags |= MAP_LOCKED; 288348f7df32SKirill A. Shutemov 2884c8d78c18SKirill A. Shutemov /* drop PG_Mlocked flag for over-mapped range */ 288548f7df32SKirill A. Shutemov for (tmp = vma; tmp->vm_start >= start + size; 288648f7df32SKirill A. Shutemov tmp = tmp->vm_next) { 28879a73f61bSKirill A. Shutemov /* 28889a73f61bSKirill A. Shutemov * Split pmd and munlock page on the border 28899a73f61bSKirill A. Shutemov * of the range. 28909a73f61bSKirill A. Shutemov */ 28919a73f61bSKirill A. Shutemov vma_adjust_trans_huge(tmp, start, start + size, 0); 28929a73f61bSKirill A. Shutemov 289348f7df32SKirill A. Shutemov munlock_vma_pages_range(tmp, 289448f7df32SKirill A. Shutemov max(tmp->vm_start, start), 289548f7df32SKirill A. Shutemov min(tmp->vm_end, start + size)); 289648f7df32SKirill A. Shutemov } 2897c8d78c18SKirill A. Shutemov } 2898c8d78c18SKirill A. Shutemov 2899c8d78c18SKirill A. Shutemov file = get_file(vma->vm_file); 2900c8d78c18SKirill A. Shutemov ret = do_mmap_pgoff(vma->vm_file, start, size, 2901897ab3e0SMike Rapoport prot, flags, pgoff, &populate, NULL); 2902c8d78c18SKirill A. Shutemov fput(file); 2903c8d78c18SKirill A. Shutemov out: 2904c8d78c18SKirill A. Shutemov up_write(&mm->mmap_sem); 2905c8d78c18SKirill A. Shutemov if (populate) 2906c8d78c18SKirill A. Shutemov mm_populate(ret, populate); 2907c8d78c18SKirill A. Shutemov if (!IS_ERR_VALUE(ret)) 2908c8d78c18SKirill A. Shutemov ret = 0; 2909c8d78c18SKirill A. Shutemov return ret; 2910c8d78c18SKirill A. Shutemov } 2911c8d78c18SKirill A. Shutemov 29121da177e4SLinus Torvalds static inline void verify_mm_writelocked(struct mm_struct *mm) 29131da177e4SLinus Torvalds { 2914a241ec65SPaul E. McKenney #ifdef CONFIG_DEBUG_VM 29151da177e4SLinus Torvalds if (unlikely(down_read_trylock(&mm->mmap_sem))) { 29161da177e4SLinus Torvalds WARN_ON(1); 29171da177e4SLinus Torvalds up_read(&mm->mmap_sem); 29181da177e4SLinus Torvalds } 29191da177e4SLinus Torvalds #endif 29201da177e4SLinus Torvalds } 29211da177e4SLinus Torvalds 29221da177e4SLinus Torvalds /* 29231da177e4SLinus Torvalds * this is really a simplified "do_mmap". it only handles 29241da177e4SLinus Torvalds * anonymous maps. eventually we may be able to do some 29251da177e4SLinus Torvalds * brk-specific accounting here. 29261da177e4SLinus Torvalds */ 2927bb177a73SMichal Hocko static int do_brk_flags(unsigned long addr, unsigned long len, unsigned long flags, struct list_head *uf) 29281da177e4SLinus Torvalds { 29291da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 29301da177e4SLinus Torvalds struct vm_area_struct *vma, *prev; 29311da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 29321da177e4SLinus Torvalds pgoff_t pgoff = addr >> PAGE_SHIFT; 29333a459756SKirill Korotaev int error; 29341da177e4SLinus Torvalds 293516e72e9bSDenys Vlasenko /* Until we need other flags, refuse anything except VM_EXEC. */ 293616e72e9bSDenys Vlasenko if ((flags & (~VM_EXEC)) != 0) 293716e72e9bSDenys Vlasenko return -EINVAL; 293816e72e9bSDenys Vlasenko flags |= VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags; 29393a459756SKirill Korotaev 29402c6a1016SAl Viro error = get_unmapped_area(NULL, addr, len, 0, MAP_FIXED); 2941de1741a1SAlexander Kuleshov if (offset_in_page(error)) 29423a459756SKirill Korotaev return error; 29433a459756SKirill Korotaev 2944363ee17fSDavidlohr Bueso error = mlock_future_check(mm, mm->def_flags, len); 2945363ee17fSDavidlohr Bueso if (error) 2946363ee17fSDavidlohr Bueso return error; 29471da177e4SLinus Torvalds 29481da177e4SLinus Torvalds /* 29491da177e4SLinus Torvalds * mm->mmap_sem is required to protect against another thread 29501da177e4SLinus Torvalds * changing the mappings in case we sleep. 29511da177e4SLinus Torvalds */ 29521da177e4SLinus Torvalds verify_mm_writelocked(mm); 29531da177e4SLinus Torvalds 29541da177e4SLinus Torvalds /* 29551da177e4SLinus Torvalds * Clear old maps. this also does some error checking for us 29561da177e4SLinus Torvalds */ 29579fcd1457SRasmus Villemoes while (find_vma_links(mm, addr, addr + len, &prev, &rb_link, 29589fcd1457SRasmus Villemoes &rb_parent)) { 2959897ab3e0SMike Rapoport if (do_munmap(mm, addr, len, uf)) 29601da177e4SLinus Torvalds return -ENOMEM; 29611da177e4SLinus Torvalds } 29621da177e4SLinus Torvalds 29631da177e4SLinus Torvalds /* Check against address space limits *after* clearing old maps... */ 296484638335SKonstantin Khlebnikov if (!may_expand_vm(mm, flags, len >> PAGE_SHIFT)) 29651da177e4SLinus Torvalds return -ENOMEM; 29661da177e4SLinus Torvalds 29671da177e4SLinus Torvalds if (mm->map_count > sysctl_max_map_count) 29681da177e4SLinus Torvalds return -ENOMEM; 29691da177e4SLinus Torvalds 2970191c5424SAl Viro if (security_vm_enough_memory_mm(mm, len >> PAGE_SHIFT)) 29711da177e4SLinus Torvalds return -ENOMEM; 29721da177e4SLinus Torvalds 29731da177e4SLinus Torvalds /* Can we just expand an old private anonymous mapping? */ 2974ba470de4SRik van Riel vma = vma_merge(mm, prev, addr, addr + len, flags, 297519a809afSAndrea Arcangeli NULL, NULL, pgoff, NULL, NULL_VM_UFFD_CTX); 2976ba470de4SRik van Riel if (vma) 29771da177e4SLinus Torvalds goto out; 29781da177e4SLinus Torvalds 29791da177e4SLinus Torvalds /* 29801da177e4SLinus Torvalds * create a vma struct for an anonymous mapping 29811da177e4SLinus Torvalds */ 2982490fc053SLinus Torvalds vma = vm_area_alloc(mm); 29831da177e4SLinus Torvalds if (!vma) { 29841da177e4SLinus Torvalds vm_unacct_memory(len >> PAGE_SHIFT); 29851da177e4SLinus Torvalds return -ENOMEM; 29861da177e4SLinus Torvalds } 29871da177e4SLinus Torvalds 2988*bfd40eafSKirill A. Shutemov vma_set_anonymous(vma); 29891da177e4SLinus Torvalds vma->vm_start = addr; 29901da177e4SLinus Torvalds vma->vm_end = addr + len; 29911da177e4SLinus Torvalds vma->vm_pgoff = pgoff; 29921da177e4SLinus Torvalds vma->vm_flags = flags; 29933ed75eb8SColy Li vma->vm_page_prot = vm_get_page_prot(flags); 29941da177e4SLinus Torvalds vma_link(mm, vma, prev, rb_link, rb_parent); 29951da177e4SLinus Torvalds out: 29963af9e859SEric B Munson perf_event_mmap(vma); 29971da177e4SLinus Torvalds mm->total_vm += len >> PAGE_SHIFT; 299884638335SKonstantin Khlebnikov mm->data_vm += len >> PAGE_SHIFT; 2999128557ffSMichel Lespinasse if (flags & VM_LOCKED) 3000ba470de4SRik van Riel mm->locked_vm += (len >> PAGE_SHIFT); 3001d9104d1cSCyrill Gorcunov vma->vm_flags |= VM_SOFTDIRTY; 30025d22fc25SLinus Torvalds return 0; 30031da177e4SLinus Torvalds } 30041da177e4SLinus Torvalds 3005bb177a73SMichal Hocko int vm_brk_flags(unsigned long addr, unsigned long request, unsigned long flags) 3006e4eb1ff6SLinus Torvalds { 3007e4eb1ff6SLinus Torvalds struct mm_struct *mm = current->mm; 3008bb177a73SMichal Hocko unsigned long len; 30095d22fc25SLinus Torvalds int ret; 3010128557ffSMichel Lespinasse bool populate; 3011897ab3e0SMike Rapoport LIST_HEAD(uf); 3012e4eb1ff6SLinus Torvalds 3013bb177a73SMichal Hocko len = PAGE_ALIGN(request); 3014bb177a73SMichal Hocko if (len < request) 3015bb177a73SMichal Hocko return -ENOMEM; 3016bb177a73SMichal Hocko if (!len) 3017bb177a73SMichal Hocko return 0; 3018bb177a73SMichal Hocko 30192d6c9282SMichal Hocko if (down_write_killable(&mm->mmap_sem)) 30202d6c9282SMichal Hocko return -EINTR; 30212d6c9282SMichal Hocko 3022897ab3e0SMike Rapoport ret = do_brk_flags(addr, len, flags, &uf); 3023128557ffSMichel Lespinasse populate = ((mm->def_flags & VM_LOCKED) != 0); 3024e4eb1ff6SLinus Torvalds up_write(&mm->mmap_sem); 3025897ab3e0SMike Rapoport userfaultfd_unmap_complete(mm, &uf); 30265d22fc25SLinus Torvalds if (populate && !ret) 3027128557ffSMichel Lespinasse mm_populate(addr, len); 3028e4eb1ff6SLinus Torvalds return ret; 3029e4eb1ff6SLinus Torvalds } 303016e72e9bSDenys Vlasenko EXPORT_SYMBOL(vm_brk_flags); 303116e72e9bSDenys Vlasenko 303216e72e9bSDenys Vlasenko int vm_brk(unsigned long addr, unsigned long len) 303316e72e9bSDenys Vlasenko { 303416e72e9bSDenys Vlasenko return vm_brk_flags(addr, len, 0); 303516e72e9bSDenys Vlasenko } 3036e4eb1ff6SLinus Torvalds EXPORT_SYMBOL(vm_brk); 30371da177e4SLinus Torvalds 30381da177e4SLinus Torvalds /* Release all mmaps. */ 30391da177e4SLinus Torvalds void exit_mmap(struct mm_struct *mm) 30401da177e4SLinus Torvalds { 3041d16dfc55SPeter Zijlstra struct mmu_gather tlb; 3042ba470de4SRik van Riel struct vm_area_struct *vma; 30431da177e4SLinus Torvalds unsigned long nr_accounted = 0; 30441da177e4SLinus Torvalds 3045d6dd61c8SJeremy Fitzhardinge /* mm's last user has gone, and its about to be pulled down */ 3046cddb8a5cSAndrea Arcangeli mmu_notifier_release(mm); 3047d6dd61c8SJeremy Fitzhardinge 304827ae357fSDavid Rientjes if (unlikely(mm_is_oom_victim(mm))) { 304927ae357fSDavid Rientjes /* 305027ae357fSDavid Rientjes * Manually reap the mm to free as much memory as possible. 305127ae357fSDavid Rientjes * Then, as the oom reaper does, set MMF_OOM_SKIP to disregard 305227ae357fSDavid Rientjes * this mm from further consideration. Taking mm->mmap_sem for 305327ae357fSDavid Rientjes * write after setting MMF_OOM_SKIP will guarantee that the oom 305427ae357fSDavid Rientjes * reaper will not run on this mm again after mmap_sem is 305527ae357fSDavid Rientjes * dropped. 305627ae357fSDavid Rientjes * 305727ae357fSDavid Rientjes * Nothing can be holding mm->mmap_sem here and the above call 305827ae357fSDavid Rientjes * to mmu_notifier_release(mm) ensures mmu notifier callbacks in 305927ae357fSDavid Rientjes * __oom_reap_task_mm() will not block. 306027ae357fSDavid Rientjes * 306127ae357fSDavid Rientjes * This needs to be done before calling munlock_vma_pages_all(), 306227ae357fSDavid Rientjes * which clears VM_LOCKED, otherwise the oom reaper cannot 306327ae357fSDavid Rientjes * reliably test it. 306427ae357fSDavid Rientjes */ 306527ae357fSDavid Rientjes mutex_lock(&oom_lock); 306627ae357fSDavid Rientjes __oom_reap_task_mm(mm); 306727ae357fSDavid Rientjes mutex_unlock(&oom_lock); 306827ae357fSDavid Rientjes 306927ae357fSDavid Rientjes set_bit(MMF_OOM_SKIP, &mm->flags); 307027ae357fSDavid Rientjes down_write(&mm->mmap_sem); 307127ae357fSDavid Rientjes up_write(&mm->mmap_sem); 307227ae357fSDavid Rientjes } 307327ae357fSDavid Rientjes 3074ba470de4SRik van Riel if (mm->locked_vm) { 3075ba470de4SRik van Riel vma = mm->mmap; 3076ba470de4SRik van Riel while (vma) { 3077ba470de4SRik van Riel if (vma->vm_flags & VM_LOCKED) 3078ba470de4SRik van Riel munlock_vma_pages_all(vma); 3079ba470de4SRik van Riel vma = vma->vm_next; 3080ba470de4SRik van Riel } 3081ba470de4SRik van Riel } 30829480c53eSJeremy Fitzhardinge 30839480c53eSJeremy Fitzhardinge arch_exit_mmap(mm); 30849480c53eSJeremy Fitzhardinge 3085ba470de4SRik van Riel vma = mm->mmap; 30869480c53eSJeremy Fitzhardinge if (!vma) /* Can happen if dup_mmap() received an OOM */ 30879480c53eSJeremy Fitzhardinge return; 30889480c53eSJeremy Fitzhardinge 30891da177e4SLinus Torvalds lru_add_drain(); 30901da177e4SLinus Torvalds flush_cache_mm(mm); 30912b047252SLinus Torvalds tlb_gather_mmu(&tlb, mm, 0, -1); 3092901608d9SOleg Nesterov /* update_hiwater_rss(mm) here? but nobody should be looking */ 3093e0da382cSHugh Dickins /* Use -1 here to ensure all VMAs in the mm are unmapped */ 30944f74d2c8SLinus Torvalds unmap_vmas(&tlb, vma, 0, -1); 30956ee8630eSHugh Dickins free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, USER_PGTABLES_CEILING); 3096853f5e26SAl Viro tlb_finish_mmu(&tlb, 0, -1); 30971da177e4SLinus Torvalds 30981da177e4SLinus Torvalds /* 30998f4f8c16SHugh Dickins * Walk the list again, actually closing and freeing it, 31008f4f8c16SHugh Dickins * with preemption enabled, without holding any MM locks. 31011da177e4SLinus Torvalds */ 31024f74d2c8SLinus Torvalds while (vma) { 31034f74d2c8SLinus Torvalds if (vma->vm_flags & VM_ACCOUNT) 31044f74d2c8SLinus Torvalds nr_accounted += vma_pages(vma); 3105a8fb5618SHugh Dickins vma = remove_vma(vma); 31064f74d2c8SLinus Torvalds } 31074f74d2c8SLinus Torvalds vm_unacct_memory(nr_accounted); 31081da177e4SLinus Torvalds } 31091da177e4SLinus Torvalds 31101da177e4SLinus Torvalds /* Insert vm structure into process list sorted by address 31111da177e4SLinus Torvalds * and into the inode's i_mmap tree. If vm_file is non-NULL 3112c8c06efaSDavidlohr Bueso * then i_mmap_rwsem is taken here. 31131da177e4SLinus Torvalds */ 31141da177e4SLinus Torvalds int insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma) 31151da177e4SLinus Torvalds { 31166597d783SHugh Dickins struct vm_area_struct *prev; 31171da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 31181da177e4SLinus Torvalds 3119c9d13f5fSChen Gang if (find_vma_links(mm, vma->vm_start, vma->vm_end, 3120c9d13f5fSChen Gang &prev, &rb_link, &rb_parent)) 3121c9d13f5fSChen Gang return -ENOMEM; 3122c9d13f5fSChen Gang if ((vma->vm_flags & VM_ACCOUNT) && 3123c9d13f5fSChen Gang security_vm_enough_memory_mm(mm, vma_pages(vma))) 3124c9d13f5fSChen Gang return -ENOMEM; 3125c9d13f5fSChen Gang 31261da177e4SLinus Torvalds /* 31271da177e4SLinus Torvalds * The vm_pgoff of a purely anonymous vma should be irrelevant 31281da177e4SLinus Torvalds * until its first write fault, when page's anon_vma and index 31291da177e4SLinus Torvalds * are set. But now set the vm_pgoff it will almost certainly 31301da177e4SLinus Torvalds * end up with (unless mremap moves it elsewhere before that 31311da177e4SLinus Torvalds * first wfault), so /proc/pid/maps tells a consistent story. 31321da177e4SLinus Torvalds * 31331da177e4SLinus Torvalds * By setting it to reflect the virtual start address of the 31341da177e4SLinus Torvalds * vma, merges and splits can happen in a seamless way, just 31351da177e4SLinus Torvalds * using the existing file pgoff checks and manipulations. 31361da177e4SLinus Torvalds * Similarly in do_mmap_pgoff and in do_brk. 31371da177e4SLinus Torvalds */ 31388a9cc3b5SOleg Nesterov if (vma_is_anonymous(vma)) { 31391da177e4SLinus Torvalds BUG_ON(vma->anon_vma); 31401da177e4SLinus Torvalds vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT; 31411da177e4SLinus Torvalds } 31422b144498SSrikar Dronamraju 31431da177e4SLinus Torvalds vma_link(mm, vma, prev, rb_link, rb_parent); 31441da177e4SLinus Torvalds return 0; 31451da177e4SLinus Torvalds } 31461da177e4SLinus Torvalds 31471da177e4SLinus Torvalds /* 31481da177e4SLinus Torvalds * Copy the vma structure to a new location in the same mm, 31491da177e4SLinus Torvalds * prior to moving page table entries, to effect an mremap move. 31501da177e4SLinus Torvalds */ 31511da177e4SLinus Torvalds struct vm_area_struct *copy_vma(struct vm_area_struct **vmap, 315238a76013SMichel Lespinasse unsigned long addr, unsigned long len, pgoff_t pgoff, 315338a76013SMichel Lespinasse bool *need_rmap_locks) 31541da177e4SLinus Torvalds { 31551da177e4SLinus Torvalds struct vm_area_struct *vma = *vmap; 31561da177e4SLinus Torvalds unsigned long vma_start = vma->vm_start; 31571da177e4SLinus Torvalds struct mm_struct *mm = vma->vm_mm; 31581da177e4SLinus Torvalds struct vm_area_struct *new_vma, *prev; 31591da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 3160948f017bSAndrea Arcangeli bool faulted_in_anon_vma = true; 31611da177e4SLinus Torvalds 31621da177e4SLinus Torvalds /* 31631da177e4SLinus Torvalds * If anonymous vma has not yet been faulted, update new pgoff 31641da177e4SLinus Torvalds * to match new location, to increase its chance of merging. 31651da177e4SLinus Torvalds */ 3166ce75799bSOleg Nesterov if (unlikely(vma_is_anonymous(vma) && !vma->anon_vma)) { 31671da177e4SLinus Torvalds pgoff = addr >> PAGE_SHIFT; 3168948f017bSAndrea Arcangeli faulted_in_anon_vma = false; 3169948f017bSAndrea Arcangeli } 31701da177e4SLinus Torvalds 31716597d783SHugh Dickins if (find_vma_links(mm, addr, addr + len, &prev, &rb_link, &rb_parent)) 31726597d783SHugh Dickins return NULL; /* should never get here */ 31731da177e4SLinus Torvalds new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags, 317419a809afSAndrea Arcangeli vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma), 317519a809afSAndrea Arcangeli vma->vm_userfaultfd_ctx); 31761da177e4SLinus Torvalds if (new_vma) { 31771da177e4SLinus Torvalds /* 31781da177e4SLinus Torvalds * Source vma may have been merged into new_vma 31791da177e4SLinus Torvalds */ 3180948f017bSAndrea Arcangeli if (unlikely(vma_start >= new_vma->vm_start && 3181948f017bSAndrea Arcangeli vma_start < new_vma->vm_end)) { 3182948f017bSAndrea Arcangeli /* 3183948f017bSAndrea Arcangeli * The only way we can get a vma_merge with 3184948f017bSAndrea Arcangeli * self during an mremap is if the vma hasn't 3185948f017bSAndrea Arcangeli * been faulted in yet and we were allowed to 3186948f017bSAndrea Arcangeli * reset the dst vma->vm_pgoff to the 3187948f017bSAndrea Arcangeli * destination address of the mremap to allow 3188948f017bSAndrea Arcangeli * the merge to happen. mremap must change the 3189948f017bSAndrea Arcangeli * vm_pgoff linearity between src and dst vmas 3190948f017bSAndrea Arcangeli * (in turn preventing a vma_merge) to be 3191948f017bSAndrea Arcangeli * safe. It is only safe to keep the vm_pgoff 3192948f017bSAndrea Arcangeli * linear if there are no pages mapped yet. 3193948f017bSAndrea Arcangeli */ 319481d1b09cSSasha Levin VM_BUG_ON_VMA(faulted_in_anon_vma, new_vma); 319538a76013SMichel Lespinasse *vmap = vma = new_vma; 3196108d6642SMichel Lespinasse } 319738a76013SMichel Lespinasse *need_rmap_locks = (new_vma->vm_pgoff <= vma->vm_pgoff); 31981da177e4SLinus Torvalds } else { 31993928d4f5SLinus Torvalds new_vma = vm_area_dup(vma); 3200e3975891SChen Gang if (!new_vma) 3201e3975891SChen Gang goto out; 32021da177e4SLinus Torvalds new_vma->vm_start = addr; 32031da177e4SLinus Torvalds new_vma->vm_end = addr + len; 32041da177e4SLinus Torvalds new_vma->vm_pgoff = pgoff; 3205ef0855d3SOleg Nesterov if (vma_dup_policy(vma, new_vma)) 3206523d4e20SMichel Lespinasse goto out_free_vma; 3207523d4e20SMichel Lespinasse if (anon_vma_clone(new_vma, vma)) 3208523d4e20SMichel Lespinasse goto out_free_mempol; 3209e9714acfSKonstantin Khlebnikov if (new_vma->vm_file) 32101da177e4SLinus Torvalds get_file(new_vma->vm_file); 32111da177e4SLinus Torvalds if (new_vma->vm_ops && new_vma->vm_ops->open) 32121da177e4SLinus Torvalds new_vma->vm_ops->open(new_vma); 32131da177e4SLinus Torvalds vma_link(mm, new_vma, prev, rb_link, rb_parent); 321438a76013SMichel Lespinasse *need_rmap_locks = false; 32151da177e4SLinus Torvalds } 32161da177e4SLinus Torvalds return new_vma; 32175beb4930SRik van Riel 32185beb4930SRik van Riel out_free_mempol: 3219ef0855d3SOleg Nesterov mpol_put(vma_policy(new_vma)); 32205beb4930SRik van Riel out_free_vma: 32213928d4f5SLinus Torvalds vm_area_free(new_vma); 3222e3975891SChen Gang out: 32235beb4930SRik van Riel return NULL; 32241da177e4SLinus Torvalds } 3225119f657cSakpm@osdl.org 3226119f657cSakpm@osdl.org /* 3227119f657cSakpm@osdl.org * Return true if the calling process may expand its vm space by the passed 3228119f657cSakpm@osdl.org * number of pages 3229119f657cSakpm@osdl.org */ 323084638335SKonstantin Khlebnikov bool may_expand_vm(struct mm_struct *mm, vm_flags_t flags, unsigned long npages) 3231119f657cSakpm@osdl.org { 323284638335SKonstantin Khlebnikov if (mm->total_vm + npages > rlimit(RLIMIT_AS) >> PAGE_SHIFT) 323384638335SKonstantin Khlebnikov return false; 3234119f657cSakpm@osdl.org 3235d977d56cSKonstantin Khlebnikov if (is_data_mapping(flags) && 3236d977d56cSKonstantin Khlebnikov mm->data_vm + npages > rlimit(RLIMIT_DATA) >> PAGE_SHIFT) { 3237f4fcd558SKonstantin Khlebnikov /* Workaround for Valgrind */ 3238f4fcd558SKonstantin Khlebnikov if (rlimit(RLIMIT_DATA) == 0 && 3239f4fcd558SKonstantin Khlebnikov mm->data_vm + npages <= rlimit_max(RLIMIT_DATA) >> PAGE_SHIFT) 3240f4fcd558SKonstantin Khlebnikov return true; 324157a7702bSDavid Woodhouse 324257a7702bSDavid Woodhouse pr_warn_once("%s (%d): VmData %lu exceed data ulimit %lu. Update limits%s.\n", 3243d977d56cSKonstantin Khlebnikov current->comm, current->pid, 3244d977d56cSKonstantin Khlebnikov (mm->data_vm + npages) << PAGE_SHIFT, 324557a7702bSDavid Woodhouse rlimit(RLIMIT_DATA), 324657a7702bSDavid Woodhouse ignore_rlimit_data ? "" : " or use boot option ignore_rlimit_data"); 324757a7702bSDavid Woodhouse 324857a7702bSDavid Woodhouse if (!ignore_rlimit_data) 3249d977d56cSKonstantin Khlebnikov return false; 3250d977d56cSKonstantin Khlebnikov } 3251119f657cSakpm@osdl.org 325284638335SKonstantin Khlebnikov return true; 325384638335SKonstantin Khlebnikov } 325484638335SKonstantin Khlebnikov 325584638335SKonstantin Khlebnikov void vm_stat_account(struct mm_struct *mm, vm_flags_t flags, long npages) 325684638335SKonstantin Khlebnikov { 325784638335SKonstantin Khlebnikov mm->total_vm += npages; 325884638335SKonstantin Khlebnikov 3259d977d56cSKonstantin Khlebnikov if (is_exec_mapping(flags)) 326084638335SKonstantin Khlebnikov mm->exec_vm += npages; 3261d977d56cSKonstantin Khlebnikov else if (is_stack_mapping(flags)) 326284638335SKonstantin Khlebnikov mm->stack_vm += npages; 3263d977d56cSKonstantin Khlebnikov else if (is_data_mapping(flags)) 326484638335SKonstantin Khlebnikov mm->data_vm += npages; 3265119f657cSakpm@osdl.org } 3266fa5dc22fSRoland McGrath 3267b3ec9f33SSouptick Joarder static vm_fault_t special_mapping_fault(struct vm_fault *vmf); 3268a62c34bdSAndy Lutomirski 3269a62c34bdSAndy Lutomirski /* 3270a62c34bdSAndy Lutomirski * Having a close hook prevents vma merging regardless of flags. 3271a62c34bdSAndy Lutomirski */ 3272a62c34bdSAndy Lutomirski static void special_mapping_close(struct vm_area_struct *vma) 3273a62c34bdSAndy Lutomirski { 3274a62c34bdSAndy Lutomirski } 3275a62c34bdSAndy Lutomirski 3276a62c34bdSAndy Lutomirski static const char *special_mapping_name(struct vm_area_struct *vma) 3277a62c34bdSAndy Lutomirski { 3278a62c34bdSAndy Lutomirski return ((struct vm_special_mapping *)vma->vm_private_data)->name; 3279a62c34bdSAndy Lutomirski } 3280a62c34bdSAndy Lutomirski 3281b059a453SDmitry Safonov static int special_mapping_mremap(struct vm_area_struct *new_vma) 3282b059a453SDmitry Safonov { 3283b059a453SDmitry Safonov struct vm_special_mapping *sm = new_vma->vm_private_data; 3284b059a453SDmitry Safonov 3285280e87e9SDmitry Safonov if (WARN_ON_ONCE(current->mm != new_vma->vm_mm)) 3286280e87e9SDmitry Safonov return -EFAULT; 3287280e87e9SDmitry Safonov 3288b059a453SDmitry Safonov if (sm->mremap) 3289b059a453SDmitry Safonov return sm->mremap(sm, new_vma); 3290280e87e9SDmitry Safonov 3291b059a453SDmitry Safonov return 0; 3292b059a453SDmitry Safonov } 3293b059a453SDmitry Safonov 3294a62c34bdSAndy Lutomirski static const struct vm_operations_struct special_mapping_vmops = { 3295a62c34bdSAndy Lutomirski .close = special_mapping_close, 3296a62c34bdSAndy Lutomirski .fault = special_mapping_fault, 3297b059a453SDmitry Safonov .mremap = special_mapping_mremap, 3298a62c34bdSAndy Lutomirski .name = special_mapping_name, 3299a62c34bdSAndy Lutomirski }; 3300a62c34bdSAndy Lutomirski 3301a62c34bdSAndy Lutomirski static const struct vm_operations_struct legacy_special_mapping_vmops = { 3302a62c34bdSAndy Lutomirski .close = special_mapping_close, 3303a62c34bdSAndy Lutomirski .fault = special_mapping_fault, 3304a62c34bdSAndy Lutomirski }; 3305fa5dc22fSRoland McGrath 3306b3ec9f33SSouptick Joarder static vm_fault_t special_mapping_fault(struct vm_fault *vmf) 3307fa5dc22fSRoland McGrath { 330811bac800SDave Jiang struct vm_area_struct *vma = vmf->vma; 3309b1d0e4f5SNick Piggin pgoff_t pgoff; 3310fa5dc22fSRoland McGrath struct page **pages; 3311fa5dc22fSRoland McGrath 3312f872f540SAndy Lutomirski if (vma->vm_ops == &legacy_special_mapping_vmops) { 3313a62c34bdSAndy Lutomirski pages = vma->vm_private_data; 3314f872f540SAndy Lutomirski } else { 3315f872f540SAndy Lutomirski struct vm_special_mapping *sm = vma->vm_private_data; 3316f872f540SAndy Lutomirski 3317f872f540SAndy Lutomirski if (sm->fault) 331811bac800SDave Jiang return sm->fault(sm, vmf->vma, vmf); 3319f872f540SAndy Lutomirski 3320f872f540SAndy Lutomirski pages = sm->pages; 3321f872f540SAndy Lutomirski } 3322a62c34bdSAndy Lutomirski 33238a9cc3b5SOleg Nesterov for (pgoff = vmf->pgoff; pgoff && *pages; ++pages) 3324b1d0e4f5SNick Piggin pgoff--; 3325fa5dc22fSRoland McGrath 3326fa5dc22fSRoland McGrath if (*pages) { 3327fa5dc22fSRoland McGrath struct page *page = *pages; 3328fa5dc22fSRoland McGrath get_page(page); 3329b1d0e4f5SNick Piggin vmf->page = page; 3330b1d0e4f5SNick Piggin return 0; 3331fa5dc22fSRoland McGrath } 3332fa5dc22fSRoland McGrath 3333b1d0e4f5SNick Piggin return VM_FAULT_SIGBUS; 3334fa5dc22fSRoland McGrath } 3335fa5dc22fSRoland McGrath 3336a62c34bdSAndy Lutomirski static struct vm_area_struct *__install_special_mapping( 3337a62c34bdSAndy Lutomirski struct mm_struct *mm, 3338fa5dc22fSRoland McGrath unsigned long addr, unsigned long len, 333927f28b97SChen Gang unsigned long vm_flags, void *priv, 334027f28b97SChen Gang const struct vm_operations_struct *ops) 3341fa5dc22fSRoland McGrath { 3342462e635eSTavis Ormandy int ret; 3343fa5dc22fSRoland McGrath struct vm_area_struct *vma; 3344fa5dc22fSRoland McGrath 3345490fc053SLinus Torvalds vma = vm_area_alloc(mm); 3346fa5dc22fSRoland McGrath if (unlikely(vma == NULL)) 33473935ed6aSStefani Seibold return ERR_PTR(-ENOMEM); 3348fa5dc22fSRoland McGrath 3349fa5dc22fSRoland McGrath vma->vm_start = addr; 3350fa5dc22fSRoland McGrath vma->vm_end = addr + len; 3351fa5dc22fSRoland McGrath 3352d9104d1cSCyrill Gorcunov vma->vm_flags = vm_flags | mm->def_flags | VM_DONTEXPAND | VM_SOFTDIRTY; 33533ed75eb8SColy Li vma->vm_page_prot = vm_get_page_prot(vma->vm_flags); 3354fa5dc22fSRoland McGrath 3355a62c34bdSAndy Lutomirski vma->vm_ops = ops; 3356a62c34bdSAndy Lutomirski vma->vm_private_data = priv; 3357fa5dc22fSRoland McGrath 3358462e635eSTavis Ormandy ret = insert_vm_struct(mm, vma); 3359462e635eSTavis Ormandy if (ret) 3360462e635eSTavis Ormandy goto out; 3361fa5dc22fSRoland McGrath 336284638335SKonstantin Khlebnikov vm_stat_account(mm, vma->vm_flags, len >> PAGE_SHIFT); 3363fa5dc22fSRoland McGrath 3364cdd6c482SIngo Molnar perf_event_mmap(vma); 3365089dd79dSPeter Zijlstra 33663935ed6aSStefani Seibold return vma; 3367462e635eSTavis Ormandy 3368462e635eSTavis Ormandy out: 33693928d4f5SLinus Torvalds vm_area_free(vma); 33703935ed6aSStefani Seibold return ERR_PTR(ret); 33713935ed6aSStefani Seibold } 33723935ed6aSStefani Seibold 33732eefd878SDmitry Safonov bool vma_is_special_mapping(const struct vm_area_struct *vma, 33742eefd878SDmitry Safonov const struct vm_special_mapping *sm) 33752eefd878SDmitry Safonov { 33762eefd878SDmitry Safonov return vma->vm_private_data == sm && 33772eefd878SDmitry Safonov (vma->vm_ops == &special_mapping_vmops || 33782eefd878SDmitry Safonov vma->vm_ops == &legacy_special_mapping_vmops); 33792eefd878SDmitry Safonov } 33802eefd878SDmitry Safonov 3381a62c34bdSAndy Lutomirski /* 3382a62c34bdSAndy Lutomirski * Called with mm->mmap_sem held for writing. 3383a62c34bdSAndy Lutomirski * Insert a new vma covering the given region, with the given flags. 3384a62c34bdSAndy Lutomirski * Its pages are supplied by the given array of struct page *. 3385a62c34bdSAndy Lutomirski * The array can be shorter than len >> PAGE_SHIFT if it's null-terminated. 3386a62c34bdSAndy Lutomirski * The region past the last page supplied will always produce SIGBUS. 3387a62c34bdSAndy Lutomirski * The array pointer and the pages it points to are assumed to stay alive 3388a62c34bdSAndy Lutomirski * for as long as this mapping might exist. 3389a62c34bdSAndy Lutomirski */ 3390a62c34bdSAndy Lutomirski struct vm_area_struct *_install_special_mapping( 3391a62c34bdSAndy Lutomirski struct mm_struct *mm, 3392a62c34bdSAndy Lutomirski unsigned long addr, unsigned long len, 3393a62c34bdSAndy Lutomirski unsigned long vm_flags, const struct vm_special_mapping *spec) 3394a62c34bdSAndy Lutomirski { 339527f28b97SChen Gang return __install_special_mapping(mm, addr, len, vm_flags, (void *)spec, 339627f28b97SChen Gang &special_mapping_vmops); 3397a62c34bdSAndy Lutomirski } 3398a62c34bdSAndy Lutomirski 33993935ed6aSStefani Seibold int install_special_mapping(struct mm_struct *mm, 34003935ed6aSStefani Seibold unsigned long addr, unsigned long len, 34013935ed6aSStefani Seibold unsigned long vm_flags, struct page **pages) 34023935ed6aSStefani Seibold { 3403a62c34bdSAndy Lutomirski struct vm_area_struct *vma = __install_special_mapping( 340427f28b97SChen Gang mm, addr, len, vm_flags, (void *)pages, 340527f28b97SChen Gang &legacy_special_mapping_vmops); 34063935ed6aSStefani Seibold 340714bd5b45SDuan Jiong return PTR_ERR_OR_ZERO(vma); 3408fa5dc22fSRoland McGrath } 34097906d00cSAndrea Arcangeli 34107906d00cSAndrea Arcangeli static DEFINE_MUTEX(mm_all_locks_mutex); 34117906d00cSAndrea Arcangeli 3412454ed842SPeter Zijlstra static void vm_lock_anon_vma(struct mm_struct *mm, struct anon_vma *anon_vma) 34137906d00cSAndrea Arcangeli { 3414f808c13fSDavidlohr Bueso if (!test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_root.rb_node)) { 34157906d00cSAndrea Arcangeli /* 34167906d00cSAndrea Arcangeli * The LSB of head.next can't change from under us 34177906d00cSAndrea Arcangeli * because we hold the mm_all_locks_mutex. 34187906d00cSAndrea Arcangeli */ 3419572043c9SJiri Kosina down_write_nest_lock(&anon_vma->root->rwsem, &mm->mmap_sem); 34207906d00cSAndrea Arcangeli /* 34217906d00cSAndrea Arcangeli * We can safely modify head.next after taking the 34225a505085SIngo Molnar * anon_vma->root->rwsem. If some other vma in this mm shares 34237906d00cSAndrea Arcangeli * the same anon_vma we won't take it again. 34247906d00cSAndrea Arcangeli * 34257906d00cSAndrea Arcangeli * No need of atomic instructions here, head.next 34267906d00cSAndrea Arcangeli * can't change from under us thanks to the 34275a505085SIngo Molnar * anon_vma->root->rwsem. 34287906d00cSAndrea Arcangeli */ 34297906d00cSAndrea Arcangeli if (__test_and_set_bit(0, (unsigned long *) 3430f808c13fSDavidlohr Bueso &anon_vma->root->rb_root.rb_root.rb_node)) 34317906d00cSAndrea Arcangeli BUG(); 34327906d00cSAndrea Arcangeli } 34337906d00cSAndrea Arcangeli } 34347906d00cSAndrea Arcangeli 3435454ed842SPeter Zijlstra static void vm_lock_mapping(struct mm_struct *mm, struct address_space *mapping) 34367906d00cSAndrea Arcangeli { 34377906d00cSAndrea Arcangeli if (!test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) { 34387906d00cSAndrea Arcangeli /* 34397906d00cSAndrea Arcangeli * AS_MM_ALL_LOCKS can't change from under us because 34407906d00cSAndrea Arcangeli * we hold the mm_all_locks_mutex. 34417906d00cSAndrea Arcangeli * 34427906d00cSAndrea Arcangeli * Operations on ->flags have to be atomic because 34437906d00cSAndrea Arcangeli * even if AS_MM_ALL_LOCKS is stable thanks to the 34447906d00cSAndrea Arcangeli * mm_all_locks_mutex, there may be other cpus 34457906d00cSAndrea Arcangeli * changing other bitflags in parallel to us. 34467906d00cSAndrea Arcangeli */ 34477906d00cSAndrea Arcangeli if (test_and_set_bit(AS_MM_ALL_LOCKS, &mapping->flags)) 34487906d00cSAndrea Arcangeli BUG(); 3449c8c06efaSDavidlohr Bueso down_write_nest_lock(&mapping->i_mmap_rwsem, &mm->mmap_sem); 34507906d00cSAndrea Arcangeli } 34517906d00cSAndrea Arcangeli } 34527906d00cSAndrea Arcangeli 34537906d00cSAndrea Arcangeli /* 34547906d00cSAndrea Arcangeli * This operation locks against the VM for all pte/vma/mm related 34557906d00cSAndrea Arcangeli * operations that could ever happen on a certain mm. This includes 34567906d00cSAndrea Arcangeli * vmtruncate, try_to_unmap, and all page faults. 34577906d00cSAndrea Arcangeli * 34587906d00cSAndrea Arcangeli * The caller must take the mmap_sem in write mode before calling 34597906d00cSAndrea Arcangeli * mm_take_all_locks(). The caller isn't allowed to release the 34607906d00cSAndrea Arcangeli * mmap_sem until mm_drop_all_locks() returns. 34617906d00cSAndrea Arcangeli * 34627906d00cSAndrea Arcangeli * mmap_sem in write mode is required in order to block all operations 34637906d00cSAndrea Arcangeli * that could modify pagetables and free pages without need of 346427ba0644SKirill A. Shutemov * altering the vma layout. It's also needed in write mode to avoid new 34657906d00cSAndrea Arcangeli * anon_vmas to be associated with existing vmas. 34667906d00cSAndrea Arcangeli * 34677906d00cSAndrea Arcangeli * A single task can't take more than one mm_take_all_locks() in a row 34687906d00cSAndrea Arcangeli * or it would deadlock. 34697906d00cSAndrea Arcangeli * 3470bf181b9fSMichel Lespinasse * The LSB in anon_vma->rb_root.rb_node and the AS_MM_ALL_LOCKS bitflag in 34717906d00cSAndrea Arcangeli * mapping->flags avoid to take the same lock twice, if more than one 34727906d00cSAndrea Arcangeli * vma in this mm is backed by the same anon_vma or address_space. 34737906d00cSAndrea Arcangeli * 347488f306b6SKirill A. Shutemov * We take locks in following order, accordingly to comment at beginning 347588f306b6SKirill A. Shutemov * of mm/rmap.c: 347688f306b6SKirill A. Shutemov * - all hugetlbfs_i_mmap_rwsem_key locks (aka mapping->i_mmap_rwsem for 347788f306b6SKirill A. Shutemov * hugetlb mapping); 347888f306b6SKirill A. Shutemov * - all i_mmap_rwsem locks; 347988f306b6SKirill A. Shutemov * - all anon_vma->rwseml 348088f306b6SKirill A. Shutemov * 348188f306b6SKirill A. Shutemov * We can take all locks within these types randomly because the VM code 348288f306b6SKirill A. Shutemov * doesn't nest them and we protected from parallel mm_take_all_locks() by 348388f306b6SKirill A. Shutemov * mm_all_locks_mutex. 34847906d00cSAndrea Arcangeli * 34857906d00cSAndrea Arcangeli * mm_take_all_locks() and mm_drop_all_locks are expensive operations 34867906d00cSAndrea Arcangeli * that may have to take thousand of locks. 34877906d00cSAndrea Arcangeli * 34887906d00cSAndrea Arcangeli * mm_take_all_locks() can fail if it's interrupted by signals. 34897906d00cSAndrea Arcangeli */ 34907906d00cSAndrea Arcangeli int mm_take_all_locks(struct mm_struct *mm) 34917906d00cSAndrea Arcangeli { 34927906d00cSAndrea Arcangeli struct vm_area_struct *vma; 34935beb4930SRik van Riel struct anon_vma_chain *avc; 34947906d00cSAndrea Arcangeli 34957906d00cSAndrea Arcangeli BUG_ON(down_read_trylock(&mm->mmap_sem)); 34967906d00cSAndrea Arcangeli 34977906d00cSAndrea Arcangeli mutex_lock(&mm_all_locks_mutex); 34987906d00cSAndrea Arcangeli 34997906d00cSAndrea Arcangeli for (vma = mm->mmap; vma; vma = vma->vm_next) { 35007906d00cSAndrea Arcangeli if (signal_pending(current)) 35017906d00cSAndrea Arcangeli goto out_unlock; 350288f306b6SKirill A. Shutemov if (vma->vm_file && vma->vm_file->f_mapping && 350388f306b6SKirill A. Shutemov is_vm_hugetlb_page(vma)) 350488f306b6SKirill A. Shutemov vm_lock_mapping(mm, vma->vm_file->f_mapping); 350588f306b6SKirill A. Shutemov } 350688f306b6SKirill A. Shutemov 350788f306b6SKirill A. Shutemov for (vma = mm->mmap; vma; vma = vma->vm_next) { 350888f306b6SKirill A. Shutemov if (signal_pending(current)) 350988f306b6SKirill A. Shutemov goto out_unlock; 351088f306b6SKirill A. Shutemov if (vma->vm_file && vma->vm_file->f_mapping && 351188f306b6SKirill A. Shutemov !is_vm_hugetlb_page(vma)) 3512454ed842SPeter Zijlstra vm_lock_mapping(mm, vma->vm_file->f_mapping); 35137906d00cSAndrea Arcangeli } 35147cd5a02fSPeter Zijlstra 35157cd5a02fSPeter Zijlstra for (vma = mm->mmap; vma; vma = vma->vm_next) { 35167cd5a02fSPeter Zijlstra if (signal_pending(current)) 35177cd5a02fSPeter Zijlstra goto out_unlock; 35187cd5a02fSPeter Zijlstra if (vma->anon_vma) 35195beb4930SRik van Riel list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 35205beb4930SRik van Riel vm_lock_anon_vma(mm, avc->anon_vma); 35217cd5a02fSPeter Zijlstra } 35227cd5a02fSPeter Zijlstra 3523584cff54SKautuk Consul return 0; 35247906d00cSAndrea Arcangeli 35257906d00cSAndrea Arcangeli out_unlock: 35267906d00cSAndrea Arcangeli mm_drop_all_locks(mm); 3527584cff54SKautuk Consul return -EINTR; 35287906d00cSAndrea Arcangeli } 35297906d00cSAndrea Arcangeli 35307906d00cSAndrea Arcangeli static void vm_unlock_anon_vma(struct anon_vma *anon_vma) 35317906d00cSAndrea Arcangeli { 3532f808c13fSDavidlohr Bueso if (test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_root.rb_node)) { 35337906d00cSAndrea Arcangeli /* 35347906d00cSAndrea Arcangeli * The LSB of head.next can't change to 0 from under 35357906d00cSAndrea Arcangeli * us because we hold the mm_all_locks_mutex. 35367906d00cSAndrea Arcangeli * 35377906d00cSAndrea Arcangeli * We must however clear the bitflag before unlocking 3538bf181b9fSMichel Lespinasse * the vma so the users using the anon_vma->rb_root will 35397906d00cSAndrea Arcangeli * never see our bitflag. 35407906d00cSAndrea Arcangeli * 35417906d00cSAndrea Arcangeli * No need of atomic instructions here, head.next 35427906d00cSAndrea Arcangeli * can't change from under us until we release the 35435a505085SIngo Molnar * anon_vma->root->rwsem. 35447906d00cSAndrea Arcangeli */ 35457906d00cSAndrea Arcangeli if (!__test_and_clear_bit(0, (unsigned long *) 3546f808c13fSDavidlohr Bueso &anon_vma->root->rb_root.rb_root.rb_node)) 35477906d00cSAndrea Arcangeli BUG(); 354808b52706SKonstantin Khlebnikov anon_vma_unlock_write(anon_vma); 35497906d00cSAndrea Arcangeli } 35507906d00cSAndrea Arcangeli } 35517906d00cSAndrea Arcangeli 35527906d00cSAndrea Arcangeli static void vm_unlock_mapping(struct address_space *mapping) 35537906d00cSAndrea Arcangeli { 35547906d00cSAndrea Arcangeli if (test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) { 35557906d00cSAndrea Arcangeli /* 35567906d00cSAndrea Arcangeli * AS_MM_ALL_LOCKS can't change to 0 from under us 35577906d00cSAndrea Arcangeli * because we hold the mm_all_locks_mutex. 35587906d00cSAndrea Arcangeli */ 355983cde9e8SDavidlohr Bueso i_mmap_unlock_write(mapping); 35607906d00cSAndrea Arcangeli if (!test_and_clear_bit(AS_MM_ALL_LOCKS, 35617906d00cSAndrea Arcangeli &mapping->flags)) 35627906d00cSAndrea Arcangeli BUG(); 35637906d00cSAndrea Arcangeli } 35647906d00cSAndrea Arcangeli } 35657906d00cSAndrea Arcangeli 35667906d00cSAndrea Arcangeli /* 35677906d00cSAndrea Arcangeli * The mmap_sem cannot be released by the caller until 35687906d00cSAndrea Arcangeli * mm_drop_all_locks() returns. 35697906d00cSAndrea Arcangeli */ 35707906d00cSAndrea Arcangeli void mm_drop_all_locks(struct mm_struct *mm) 35717906d00cSAndrea Arcangeli { 35727906d00cSAndrea Arcangeli struct vm_area_struct *vma; 35735beb4930SRik van Riel struct anon_vma_chain *avc; 35747906d00cSAndrea Arcangeli 35757906d00cSAndrea Arcangeli BUG_ON(down_read_trylock(&mm->mmap_sem)); 35767906d00cSAndrea Arcangeli BUG_ON(!mutex_is_locked(&mm_all_locks_mutex)); 35777906d00cSAndrea Arcangeli 35787906d00cSAndrea Arcangeli for (vma = mm->mmap; vma; vma = vma->vm_next) { 35797906d00cSAndrea Arcangeli if (vma->anon_vma) 35805beb4930SRik van Riel list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 35815beb4930SRik van Riel vm_unlock_anon_vma(avc->anon_vma); 35827906d00cSAndrea Arcangeli if (vma->vm_file && vma->vm_file->f_mapping) 35837906d00cSAndrea Arcangeli vm_unlock_mapping(vma->vm_file->f_mapping); 35847906d00cSAndrea Arcangeli } 35857906d00cSAndrea Arcangeli 35867906d00cSAndrea Arcangeli mutex_unlock(&mm_all_locks_mutex); 35877906d00cSAndrea Arcangeli } 35888feae131SDavid Howells 35898feae131SDavid Howells /* 35903edf41d8Sseokhoon.yoon * initialise the percpu counter for VM 35918feae131SDavid Howells */ 35928feae131SDavid Howells void __init mmap_init(void) 35938feae131SDavid Howells { 359400a62ce9SKOSAKI Motohiro int ret; 359500a62ce9SKOSAKI Motohiro 3596908c7f19STejun Heo ret = percpu_counter_init(&vm_committed_as, 0, GFP_KERNEL); 359700a62ce9SKOSAKI Motohiro VM_BUG_ON(ret); 35988feae131SDavid Howells } 3599c9b1d098SAndrew Shewmaker 3600c9b1d098SAndrew Shewmaker /* 3601c9b1d098SAndrew Shewmaker * Initialise sysctl_user_reserve_kbytes. 3602c9b1d098SAndrew Shewmaker * 3603c9b1d098SAndrew Shewmaker * This is intended to prevent a user from starting a single memory hogging 3604c9b1d098SAndrew Shewmaker * process, such that they cannot recover (kill the hog) in OVERCOMMIT_NEVER 3605c9b1d098SAndrew Shewmaker * mode. 3606c9b1d098SAndrew Shewmaker * 3607c9b1d098SAndrew Shewmaker * The default value is min(3% of free memory, 128MB) 3608c9b1d098SAndrew Shewmaker * 128MB is enough to recover with sshd/login, bash, and top/kill. 3609c9b1d098SAndrew Shewmaker */ 36101640879aSAndrew Shewmaker static int init_user_reserve(void) 3611c9b1d098SAndrew Shewmaker { 3612c9b1d098SAndrew Shewmaker unsigned long free_kbytes; 3613c9b1d098SAndrew Shewmaker 3614c41f012aSMichal Hocko free_kbytes = global_zone_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10); 3615c9b1d098SAndrew Shewmaker 3616c9b1d098SAndrew Shewmaker sysctl_user_reserve_kbytes = min(free_kbytes / 32, 1UL << 17); 3617c9b1d098SAndrew Shewmaker return 0; 3618c9b1d098SAndrew Shewmaker } 3619a64fb3cdSPaul Gortmaker subsys_initcall(init_user_reserve); 36204eeab4f5SAndrew Shewmaker 36214eeab4f5SAndrew Shewmaker /* 36224eeab4f5SAndrew Shewmaker * Initialise sysctl_admin_reserve_kbytes. 36234eeab4f5SAndrew Shewmaker * 36244eeab4f5SAndrew Shewmaker * The purpose of sysctl_admin_reserve_kbytes is to allow the sys admin 36254eeab4f5SAndrew Shewmaker * to log in and kill a memory hogging process. 36264eeab4f5SAndrew Shewmaker * 36274eeab4f5SAndrew Shewmaker * Systems with more than 256MB will reserve 8MB, enough to recover 36284eeab4f5SAndrew Shewmaker * with sshd, bash, and top in OVERCOMMIT_GUESS. Smaller systems will 36294eeab4f5SAndrew Shewmaker * only reserve 3% of free pages by default. 36304eeab4f5SAndrew Shewmaker */ 36311640879aSAndrew Shewmaker static int init_admin_reserve(void) 36324eeab4f5SAndrew Shewmaker { 36334eeab4f5SAndrew Shewmaker unsigned long free_kbytes; 36344eeab4f5SAndrew Shewmaker 3635c41f012aSMichal Hocko free_kbytes = global_zone_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10); 36364eeab4f5SAndrew Shewmaker 36374eeab4f5SAndrew Shewmaker sysctl_admin_reserve_kbytes = min(free_kbytes / 32, 1UL << 13); 36384eeab4f5SAndrew Shewmaker return 0; 36394eeab4f5SAndrew Shewmaker } 3640a64fb3cdSPaul Gortmaker subsys_initcall(init_admin_reserve); 36411640879aSAndrew Shewmaker 36421640879aSAndrew Shewmaker /* 36431640879aSAndrew Shewmaker * Reinititalise user and admin reserves if memory is added or removed. 36441640879aSAndrew Shewmaker * 36451640879aSAndrew Shewmaker * The default user reserve max is 128MB, and the default max for the 36461640879aSAndrew Shewmaker * admin reserve is 8MB. These are usually, but not always, enough to 36471640879aSAndrew Shewmaker * enable recovery from a memory hogging process using login/sshd, a shell, 36481640879aSAndrew Shewmaker * and tools like top. It may make sense to increase or even disable the 36491640879aSAndrew Shewmaker * reserve depending on the existence of swap or variations in the recovery 36501640879aSAndrew Shewmaker * tools. So, the admin may have changed them. 36511640879aSAndrew Shewmaker * 36521640879aSAndrew Shewmaker * If memory is added and the reserves have been eliminated or increased above 36531640879aSAndrew Shewmaker * the default max, then we'll trust the admin. 36541640879aSAndrew Shewmaker * 36551640879aSAndrew Shewmaker * If memory is removed and there isn't enough free memory, then we 36561640879aSAndrew Shewmaker * need to reset the reserves. 36571640879aSAndrew Shewmaker * 36581640879aSAndrew Shewmaker * Otherwise keep the reserve set by the admin. 36591640879aSAndrew Shewmaker */ 36601640879aSAndrew Shewmaker static int reserve_mem_notifier(struct notifier_block *nb, 36611640879aSAndrew Shewmaker unsigned long action, void *data) 36621640879aSAndrew Shewmaker { 36631640879aSAndrew Shewmaker unsigned long tmp, free_kbytes; 36641640879aSAndrew Shewmaker 36651640879aSAndrew Shewmaker switch (action) { 36661640879aSAndrew Shewmaker case MEM_ONLINE: 36671640879aSAndrew Shewmaker /* Default max is 128MB. Leave alone if modified by operator. */ 36681640879aSAndrew Shewmaker tmp = sysctl_user_reserve_kbytes; 36691640879aSAndrew Shewmaker if (0 < tmp && tmp < (1UL << 17)) 36701640879aSAndrew Shewmaker init_user_reserve(); 36711640879aSAndrew Shewmaker 36721640879aSAndrew Shewmaker /* Default max is 8MB. Leave alone if modified by operator. */ 36731640879aSAndrew Shewmaker tmp = sysctl_admin_reserve_kbytes; 36741640879aSAndrew Shewmaker if (0 < tmp && tmp < (1UL << 13)) 36751640879aSAndrew Shewmaker init_admin_reserve(); 36761640879aSAndrew Shewmaker 36771640879aSAndrew Shewmaker break; 36781640879aSAndrew Shewmaker case MEM_OFFLINE: 3679c41f012aSMichal Hocko free_kbytes = global_zone_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10); 36801640879aSAndrew Shewmaker 36811640879aSAndrew Shewmaker if (sysctl_user_reserve_kbytes > free_kbytes) { 36821640879aSAndrew Shewmaker init_user_reserve(); 36831640879aSAndrew Shewmaker pr_info("vm.user_reserve_kbytes reset to %lu\n", 36841640879aSAndrew Shewmaker sysctl_user_reserve_kbytes); 36851640879aSAndrew Shewmaker } 36861640879aSAndrew Shewmaker 36871640879aSAndrew Shewmaker if (sysctl_admin_reserve_kbytes > free_kbytes) { 36881640879aSAndrew Shewmaker init_admin_reserve(); 36891640879aSAndrew Shewmaker pr_info("vm.admin_reserve_kbytes reset to %lu\n", 36901640879aSAndrew Shewmaker sysctl_admin_reserve_kbytes); 36911640879aSAndrew Shewmaker } 36921640879aSAndrew Shewmaker break; 36931640879aSAndrew Shewmaker default: 36941640879aSAndrew Shewmaker break; 36951640879aSAndrew Shewmaker } 36961640879aSAndrew Shewmaker return NOTIFY_OK; 36971640879aSAndrew Shewmaker } 36981640879aSAndrew Shewmaker 36991640879aSAndrew Shewmaker static struct notifier_block reserve_mem_nb = { 37001640879aSAndrew Shewmaker .notifier_call = reserve_mem_notifier, 37011640879aSAndrew Shewmaker }; 37021640879aSAndrew Shewmaker 37031640879aSAndrew Shewmaker static int __meminit init_reserve_notifier(void) 37041640879aSAndrew Shewmaker { 37051640879aSAndrew Shewmaker if (register_hotmemory_notifier(&reserve_mem_nb)) 3706b1de0d13SMitchel Humpherys pr_err("Failed registering memory add/remove notifier for admin reserve\n"); 37071640879aSAndrew Shewmaker 37081640879aSAndrew Shewmaker return 0; 37091640879aSAndrew Shewmaker } 3710a64fb3cdSPaul Gortmaker subsys_initcall(init_reserve_notifier); 3711