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> 471da177e4SLinus Torvalds 487c0f6ba6SLinus Torvalds #include <linux/uaccess.h> 491da177e4SLinus Torvalds #include <asm/cacheflush.h> 501da177e4SLinus Torvalds #include <asm/tlb.h> 51d6dd61c8SJeremy Fitzhardinge #include <asm/mmu_context.h> 521da177e4SLinus Torvalds 5342b77728SJan Beulich #include "internal.h" 5442b77728SJan Beulich 553a459756SKirill Korotaev #ifndef arch_mmap_check 563a459756SKirill Korotaev #define arch_mmap_check(addr, len, flags) (0) 573a459756SKirill Korotaev #endif 583a459756SKirill Korotaev 59d07e2259SDaniel Cashman #ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS 60d07e2259SDaniel Cashman const int mmap_rnd_bits_min = CONFIG_ARCH_MMAP_RND_BITS_MIN; 61d07e2259SDaniel Cashman const int mmap_rnd_bits_max = CONFIG_ARCH_MMAP_RND_BITS_MAX; 62d07e2259SDaniel Cashman int mmap_rnd_bits __read_mostly = CONFIG_ARCH_MMAP_RND_BITS; 63d07e2259SDaniel Cashman #endif 64d07e2259SDaniel Cashman #ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS 65d07e2259SDaniel Cashman const int mmap_rnd_compat_bits_min = CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN; 66d07e2259SDaniel Cashman const int mmap_rnd_compat_bits_max = CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX; 67d07e2259SDaniel Cashman int mmap_rnd_compat_bits __read_mostly = CONFIG_ARCH_MMAP_RND_COMPAT_BITS; 68d07e2259SDaniel Cashman #endif 69d07e2259SDaniel Cashman 70f4fcd558SKonstantin Khlebnikov static bool ignore_rlimit_data; 71d977d56cSKonstantin Khlebnikov core_param(ignore_rlimit_data, ignore_rlimit_data, bool, 0644); 72d07e2259SDaniel Cashman 73e0da382cSHugh Dickins static void unmap_region(struct mm_struct *mm, 74e0da382cSHugh Dickins struct vm_area_struct *vma, struct vm_area_struct *prev, 75e0da382cSHugh Dickins unsigned long start, unsigned long end); 76e0da382cSHugh Dickins 771da177e4SLinus Torvalds /* description of effects of mapping type and prot in current implementation. 781da177e4SLinus Torvalds * this is due to the limited x86 page protection hardware. The expected 791da177e4SLinus Torvalds * behavior is in parens: 801da177e4SLinus Torvalds * 811da177e4SLinus Torvalds * map_type prot 821da177e4SLinus Torvalds * PROT_NONE PROT_READ PROT_WRITE PROT_EXEC 831da177e4SLinus Torvalds * MAP_SHARED r: (no) no r: (yes) yes r: (no) yes r: (no) yes 841da177e4SLinus Torvalds * w: (no) no w: (no) no w: (yes) yes w: (no) no 851da177e4SLinus Torvalds * x: (no) no x: (no) yes x: (no) yes x: (yes) yes 861da177e4SLinus Torvalds * 871da177e4SLinus Torvalds * MAP_PRIVATE r: (no) no r: (yes) yes r: (no) yes r: (no) yes 881da177e4SLinus Torvalds * w: (no) no w: (no) no w: (copy) copy w: (no) no 891da177e4SLinus Torvalds * x: (no) no x: (no) yes x: (no) yes x: (yes) yes 901da177e4SLinus Torvalds * 91cab15ce6SCatalin Marinas * On arm64, PROT_EXEC has the following behaviour for both MAP_SHARED and 92cab15ce6SCatalin Marinas * MAP_PRIVATE: 93cab15ce6SCatalin Marinas * r: (no) no 94cab15ce6SCatalin Marinas * w: (no) no 95cab15ce6SCatalin Marinas * x: (yes) yes 961da177e4SLinus Torvalds */ 97ac34ceafSDaniel Micay pgprot_t protection_map[16] __ro_after_init = { 981da177e4SLinus Torvalds __P000, __P001, __P010, __P011, __P100, __P101, __P110, __P111, 991da177e4SLinus Torvalds __S000, __S001, __S010, __S011, __S100, __S101, __S110, __S111 1001da177e4SLinus Torvalds }; 1011da177e4SLinus Torvalds 102804af2cfSHugh Dickins pgprot_t vm_get_page_prot(unsigned long vm_flags) 103804af2cfSHugh Dickins { 104b845f313SDave Kleikamp return __pgprot(pgprot_val(protection_map[vm_flags & 105b845f313SDave Kleikamp (VM_READ|VM_WRITE|VM_EXEC|VM_SHARED)]) | 106b845f313SDave Kleikamp pgprot_val(arch_vm_get_page_prot(vm_flags))); 107804af2cfSHugh Dickins } 108804af2cfSHugh Dickins EXPORT_SYMBOL(vm_get_page_prot); 109804af2cfSHugh Dickins 11064e45507SPeter Feiner static pgprot_t vm_pgprot_modify(pgprot_t oldprot, unsigned long vm_flags) 11164e45507SPeter Feiner { 11264e45507SPeter Feiner return pgprot_modify(oldprot, vm_get_page_prot(vm_flags)); 11364e45507SPeter Feiner } 11464e45507SPeter Feiner 11564e45507SPeter Feiner /* Update vma->vm_page_prot to reflect vma->vm_flags. */ 11664e45507SPeter Feiner void vma_set_page_prot(struct vm_area_struct *vma) 11764e45507SPeter Feiner { 11864e45507SPeter Feiner unsigned long vm_flags = vma->vm_flags; 1196d2329f8SAndrea Arcangeli pgprot_t vm_page_prot; 12064e45507SPeter Feiner 1216d2329f8SAndrea Arcangeli vm_page_prot = vm_pgprot_modify(vma->vm_page_prot, vm_flags); 1226d2329f8SAndrea Arcangeli if (vma_wants_writenotify(vma, vm_page_prot)) { 12364e45507SPeter Feiner vm_flags &= ~VM_SHARED; 1246d2329f8SAndrea Arcangeli vm_page_prot = vm_pgprot_modify(vm_page_prot, vm_flags); 12564e45507SPeter Feiner } 1266d2329f8SAndrea Arcangeli /* remove_protection_ptes reads vma->vm_page_prot without mmap_sem */ 1276d2329f8SAndrea Arcangeli WRITE_ONCE(vma->vm_page_prot, vm_page_prot); 12864e45507SPeter Feiner } 12964e45507SPeter Feiner 1301da177e4SLinus Torvalds /* 131c8c06efaSDavidlohr Bueso * Requires inode->i_mapping->i_mmap_rwsem 1321da177e4SLinus Torvalds */ 1331da177e4SLinus Torvalds static void __remove_shared_vm_struct(struct vm_area_struct *vma, 1341da177e4SLinus Torvalds struct file *file, struct address_space *mapping) 1351da177e4SLinus Torvalds { 1361da177e4SLinus Torvalds if (vma->vm_flags & VM_DENYWRITE) 137496ad9aaSAl Viro atomic_inc(&file_inode(file)->i_writecount); 1381da177e4SLinus Torvalds if (vma->vm_flags & VM_SHARED) 1394bb5f5d9SDavid Herrmann mapping_unmap_writable(mapping); 1401da177e4SLinus Torvalds 1411da177e4SLinus Torvalds flush_dcache_mmap_lock(mapping); 1426b2dbba8SMichel Lespinasse vma_interval_tree_remove(vma, &mapping->i_mmap); 1431da177e4SLinus Torvalds flush_dcache_mmap_unlock(mapping); 1441da177e4SLinus Torvalds } 1451da177e4SLinus Torvalds 1461da177e4SLinus Torvalds /* 1476b2dbba8SMichel Lespinasse * Unlink a file-based vm structure from its interval tree, to hide 148a8fb5618SHugh Dickins * vma from rmap and vmtruncate before freeing its page tables. 1491da177e4SLinus Torvalds */ 150a8fb5618SHugh Dickins void unlink_file_vma(struct vm_area_struct *vma) 1511da177e4SLinus Torvalds { 1521da177e4SLinus Torvalds struct file *file = vma->vm_file; 1531da177e4SLinus Torvalds 1541da177e4SLinus Torvalds if (file) { 1551da177e4SLinus Torvalds struct address_space *mapping = file->f_mapping; 15683cde9e8SDavidlohr Bueso i_mmap_lock_write(mapping); 1571da177e4SLinus Torvalds __remove_shared_vm_struct(vma, file, mapping); 15883cde9e8SDavidlohr Bueso i_mmap_unlock_write(mapping); 1591da177e4SLinus Torvalds } 160a8fb5618SHugh Dickins } 161a8fb5618SHugh Dickins 162a8fb5618SHugh Dickins /* 163a8fb5618SHugh Dickins * Close a vm structure and free it, returning the next. 164a8fb5618SHugh Dickins */ 165a8fb5618SHugh Dickins static struct vm_area_struct *remove_vma(struct vm_area_struct *vma) 166a8fb5618SHugh Dickins { 167a8fb5618SHugh Dickins struct vm_area_struct *next = vma->vm_next; 168a8fb5618SHugh Dickins 169a8fb5618SHugh Dickins might_sleep(); 1701da177e4SLinus Torvalds if (vma->vm_ops && vma->vm_ops->close) 1711da177e4SLinus Torvalds vma->vm_ops->close(vma); 172e9714acfSKonstantin Khlebnikov if (vma->vm_file) 173a8fb5618SHugh Dickins fput(vma->vm_file); 174f0be3d32SLee Schermerhorn mpol_put(vma_policy(vma)); 1751da177e4SLinus Torvalds kmem_cache_free(vm_area_cachep, vma); 176a8fb5618SHugh Dickins return next; 1771da177e4SLinus Torvalds } 1781da177e4SLinus Torvalds 179897ab3e0SMike Rapoport static int do_brk(unsigned long addr, unsigned long len, struct list_head *uf); 180e4eb1ff6SLinus Torvalds 1816a6160a7SHeiko Carstens SYSCALL_DEFINE1(brk, unsigned long, brk) 1821da177e4SLinus Torvalds { 1838764b338SCyrill Gorcunov unsigned long retval; 1841da177e4SLinus Torvalds unsigned long newbrk, oldbrk; 1851da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 1861be7107fSHugh Dickins struct vm_area_struct *next; 187a5b4592cSJiri Kosina unsigned long min_brk; 188128557ffSMichel Lespinasse bool populate; 189897ab3e0SMike Rapoport LIST_HEAD(uf); 1901da177e4SLinus Torvalds 191dc0ef0dfSMichal Hocko if (down_write_killable(&mm->mmap_sem)) 192dc0ef0dfSMichal Hocko return -EINTR; 1931da177e4SLinus Torvalds 194a5b4592cSJiri Kosina #ifdef CONFIG_COMPAT_BRK 1955520e894SJiri Kosina /* 1965520e894SJiri Kosina * CONFIG_COMPAT_BRK can still be overridden by setting 1975520e894SJiri Kosina * randomize_va_space to 2, which will still cause mm->start_brk 1985520e894SJiri Kosina * to be arbitrarily shifted 1995520e894SJiri Kosina */ 2004471a675SJiri Kosina if (current->brk_randomized) 2015520e894SJiri Kosina min_brk = mm->start_brk; 2025520e894SJiri Kosina else 2035520e894SJiri Kosina min_brk = mm->end_data; 204a5b4592cSJiri Kosina #else 205a5b4592cSJiri Kosina min_brk = mm->start_brk; 206a5b4592cSJiri Kosina #endif 207a5b4592cSJiri Kosina if (brk < min_brk) 2081da177e4SLinus Torvalds goto out; 2091e624196SRam Gupta 2101e624196SRam Gupta /* 2111e624196SRam Gupta * Check against rlimit here. If this check is done later after the test 2121e624196SRam Gupta * of oldbrk with newbrk then it can escape the test and let the data 2131e624196SRam Gupta * segment grow beyond its set limit the in case where the limit is 2141e624196SRam Gupta * not page aligned -Ram Gupta 2151e624196SRam Gupta */ 2168764b338SCyrill Gorcunov if (check_data_rlimit(rlimit(RLIMIT_DATA), brk, mm->start_brk, 2178764b338SCyrill Gorcunov mm->end_data, mm->start_data)) 2181e624196SRam Gupta goto out; 2191e624196SRam Gupta 2201da177e4SLinus Torvalds newbrk = PAGE_ALIGN(brk); 2211da177e4SLinus Torvalds oldbrk = PAGE_ALIGN(mm->brk); 2221da177e4SLinus Torvalds if (oldbrk == newbrk) 2231da177e4SLinus Torvalds goto set_brk; 2241da177e4SLinus Torvalds 2251da177e4SLinus Torvalds /* Always allow shrinking brk. */ 2261da177e4SLinus Torvalds if (brk <= mm->brk) { 227897ab3e0SMike Rapoport if (!do_munmap(mm, newbrk, oldbrk-newbrk, &uf)) 2281da177e4SLinus Torvalds goto set_brk; 2291da177e4SLinus Torvalds goto out; 2301da177e4SLinus Torvalds } 2311da177e4SLinus Torvalds 2321da177e4SLinus Torvalds /* Check against existing mmap mappings. */ 2331be7107fSHugh Dickins next = find_vma(mm, oldbrk); 2341be7107fSHugh Dickins if (next && newbrk + PAGE_SIZE > vm_start_gap(next)) 2351da177e4SLinus Torvalds goto out; 2361da177e4SLinus Torvalds 2371da177e4SLinus Torvalds /* Ok, looks good - let it rip. */ 238897ab3e0SMike Rapoport if (do_brk(oldbrk, newbrk-oldbrk, &uf) < 0) 2391da177e4SLinus Torvalds goto out; 240128557ffSMichel Lespinasse 2411da177e4SLinus Torvalds set_brk: 2421da177e4SLinus Torvalds mm->brk = brk; 243128557ffSMichel Lespinasse populate = newbrk > oldbrk && (mm->def_flags & VM_LOCKED) != 0; 244128557ffSMichel Lespinasse up_write(&mm->mmap_sem); 245897ab3e0SMike Rapoport userfaultfd_unmap_complete(mm, &uf); 246128557ffSMichel Lespinasse if (populate) 247128557ffSMichel Lespinasse mm_populate(oldbrk, newbrk - oldbrk); 248128557ffSMichel Lespinasse return brk; 249128557ffSMichel Lespinasse 2501da177e4SLinus Torvalds out: 2511da177e4SLinus Torvalds retval = mm->brk; 2521da177e4SLinus Torvalds up_write(&mm->mmap_sem); 2531da177e4SLinus Torvalds return retval; 2541da177e4SLinus Torvalds } 2551da177e4SLinus Torvalds 256d3737187SMichel Lespinasse static long vma_compute_subtree_gap(struct vm_area_struct *vma) 257d3737187SMichel Lespinasse { 2581be7107fSHugh Dickins unsigned long max, prev_end, subtree_gap; 2591be7107fSHugh Dickins 2601be7107fSHugh Dickins /* 2611be7107fSHugh Dickins * Note: in the rare case of a VM_GROWSDOWN above a VM_GROWSUP, we 2621be7107fSHugh Dickins * allow two stack_guard_gaps between them here, and when choosing 2631be7107fSHugh Dickins * an unmapped area; whereas when expanding we only require one. 2641be7107fSHugh Dickins * That's a little inconsistent, but keeps the code here simpler. 2651be7107fSHugh Dickins */ 2661be7107fSHugh Dickins max = vm_start_gap(vma); 2671be7107fSHugh Dickins if (vma->vm_prev) { 2681be7107fSHugh Dickins prev_end = vm_end_gap(vma->vm_prev); 2691be7107fSHugh Dickins if (max > prev_end) 2701be7107fSHugh Dickins max -= prev_end; 2711be7107fSHugh Dickins else 2721be7107fSHugh Dickins max = 0; 2731be7107fSHugh Dickins } 274d3737187SMichel Lespinasse if (vma->vm_rb.rb_left) { 275d3737187SMichel Lespinasse subtree_gap = rb_entry(vma->vm_rb.rb_left, 276d3737187SMichel Lespinasse struct vm_area_struct, vm_rb)->rb_subtree_gap; 277d3737187SMichel Lespinasse if (subtree_gap > max) 278d3737187SMichel Lespinasse max = subtree_gap; 279d3737187SMichel Lespinasse } 280d3737187SMichel Lespinasse if (vma->vm_rb.rb_right) { 281d3737187SMichel Lespinasse subtree_gap = rb_entry(vma->vm_rb.rb_right, 282d3737187SMichel Lespinasse struct vm_area_struct, vm_rb)->rb_subtree_gap; 283d3737187SMichel Lespinasse if (subtree_gap > max) 284d3737187SMichel Lespinasse max = subtree_gap; 285d3737187SMichel Lespinasse } 286d3737187SMichel Lespinasse return max; 287d3737187SMichel Lespinasse } 288d3737187SMichel Lespinasse 289ed8ea815SMichel Lespinasse #ifdef CONFIG_DEBUG_VM_RB 290acf128d0SAndrea Arcangeli static int browse_rb(struct mm_struct *mm) 2911da177e4SLinus Torvalds { 292acf128d0SAndrea Arcangeli struct rb_root *root = &mm->mm_rb; 2935a0768f6SMichel Lespinasse int i = 0, j, bug = 0; 2941da177e4SLinus Torvalds struct rb_node *nd, *pn = NULL; 2951da177e4SLinus Torvalds unsigned long prev = 0, pend = 0; 2961da177e4SLinus Torvalds 2971da177e4SLinus Torvalds for (nd = rb_first(root); nd; nd = rb_next(nd)) { 2981da177e4SLinus Torvalds struct vm_area_struct *vma; 2991da177e4SLinus Torvalds vma = rb_entry(nd, struct vm_area_struct, vm_rb); 3005a0768f6SMichel Lespinasse if (vma->vm_start < prev) { 301ff26f70fSAndrew Morton pr_emerg("vm_start %lx < prev %lx\n", 302ff26f70fSAndrew Morton vma->vm_start, prev); 3035a0768f6SMichel Lespinasse bug = 1; 3045a0768f6SMichel Lespinasse } 3055a0768f6SMichel Lespinasse if (vma->vm_start < pend) { 306ff26f70fSAndrew Morton pr_emerg("vm_start %lx < pend %lx\n", 307ff26f70fSAndrew Morton vma->vm_start, pend); 3085a0768f6SMichel Lespinasse bug = 1; 3095a0768f6SMichel Lespinasse } 3105a0768f6SMichel Lespinasse if (vma->vm_start > vma->vm_end) { 311ff26f70fSAndrew Morton pr_emerg("vm_start %lx > vm_end %lx\n", 312ff26f70fSAndrew Morton vma->vm_start, vma->vm_end); 3135a0768f6SMichel Lespinasse bug = 1; 3145a0768f6SMichel Lespinasse } 315acf128d0SAndrea Arcangeli spin_lock(&mm->page_table_lock); 3165a0768f6SMichel Lespinasse if (vma->rb_subtree_gap != vma_compute_subtree_gap(vma)) { 3178542bdfcSSasha Levin pr_emerg("free gap %lx, correct %lx\n", 3185a0768f6SMichel Lespinasse vma->rb_subtree_gap, 3195a0768f6SMichel Lespinasse vma_compute_subtree_gap(vma)); 3205a0768f6SMichel Lespinasse bug = 1; 3215a0768f6SMichel Lespinasse } 322acf128d0SAndrea Arcangeli spin_unlock(&mm->page_table_lock); 3231da177e4SLinus Torvalds i++; 3241da177e4SLinus Torvalds pn = nd; 325d1af65d1SDavid Miller prev = vma->vm_start; 326d1af65d1SDavid Miller pend = vma->vm_end; 3271da177e4SLinus Torvalds } 3281da177e4SLinus Torvalds j = 0; 3295a0768f6SMichel Lespinasse for (nd = pn; nd; nd = rb_prev(nd)) 3301da177e4SLinus Torvalds j++; 3315a0768f6SMichel Lespinasse if (i != j) { 3328542bdfcSSasha Levin pr_emerg("backwards %d, forwards %d\n", j, i); 3335a0768f6SMichel Lespinasse bug = 1; 3341da177e4SLinus Torvalds } 3355a0768f6SMichel Lespinasse return bug ? -1 : i; 3361da177e4SLinus Torvalds } 3371da177e4SLinus Torvalds 338d3737187SMichel Lespinasse static void validate_mm_rb(struct rb_root *root, struct vm_area_struct *ignore) 339d3737187SMichel Lespinasse { 340d3737187SMichel Lespinasse struct rb_node *nd; 341d3737187SMichel Lespinasse 342d3737187SMichel Lespinasse for (nd = rb_first(root); nd; nd = rb_next(nd)) { 343d3737187SMichel Lespinasse struct vm_area_struct *vma; 344d3737187SMichel Lespinasse vma = rb_entry(nd, struct vm_area_struct, vm_rb); 34596dad67fSSasha Levin VM_BUG_ON_VMA(vma != ignore && 34696dad67fSSasha Levin vma->rb_subtree_gap != vma_compute_subtree_gap(vma), 34796dad67fSSasha Levin vma); 348d3737187SMichel Lespinasse } 3491da177e4SLinus Torvalds } 3501da177e4SLinus Torvalds 351eafd4dc4SRashika Kheria static void validate_mm(struct mm_struct *mm) 3521da177e4SLinus Torvalds { 3531da177e4SLinus Torvalds int bug = 0; 3541da177e4SLinus Torvalds int i = 0; 3555a0768f6SMichel Lespinasse unsigned long highest_address = 0; 356ed8ea815SMichel Lespinasse struct vm_area_struct *vma = mm->mmap; 357ff26f70fSAndrew Morton 358ed8ea815SMichel Lespinasse while (vma) { 35912352d3cSKonstantin Khlebnikov struct anon_vma *anon_vma = vma->anon_vma; 360ed8ea815SMichel Lespinasse struct anon_vma_chain *avc; 361ff26f70fSAndrew Morton 36212352d3cSKonstantin Khlebnikov if (anon_vma) { 36312352d3cSKonstantin Khlebnikov anon_vma_lock_read(anon_vma); 364ed8ea815SMichel Lespinasse list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 365ed8ea815SMichel Lespinasse anon_vma_interval_tree_verify(avc); 36612352d3cSKonstantin Khlebnikov anon_vma_unlock_read(anon_vma); 36712352d3cSKonstantin Khlebnikov } 36812352d3cSKonstantin Khlebnikov 3691be7107fSHugh Dickins highest_address = vm_end_gap(vma); 370ed8ea815SMichel Lespinasse vma = vma->vm_next; 3711da177e4SLinus Torvalds i++; 3721da177e4SLinus Torvalds } 3735a0768f6SMichel Lespinasse if (i != mm->map_count) { 3748542bdfcSSasha Levin pr_emerg("map_count %d vm_next %d\n", mm->map_count, i); 3755a0768f6SMichel Lespinasse bug = 1; 3765a0768f6SMichel Lespinasse } 3775a0768f6SMichel Lespinasse if (highest_address != mm->highest_vm_end) { 3788542bdfcSSasha Levin pr_emerg("mm->highest_vm_end %lx, found %lx\n", 3795a0768f6SMichel Lespinasse mm->highest_vm_end, highest_address); 3805a0768f6SMichel Lespinasse bug = 1; 3815a0768f6SMichel Lespinasse } 382acf128d0SAndrea Arcangeli i = browse_rb(mm); 3835a0768f6SMichel Lespinasse if (i != mm->map_count) { 384ff26f70fSAndrew Morton if (i != -1) 3858542bdfcSSasha Levin pr_emerg("map_count %d rb %d\n", mm->map_count, i); 3865a0768f6SMichel Lespinasse bug = 1; 3875a0768f6SMichel Lespinasse } 38896dad67fSSasha Levin VM_BUG_ON_MM(bug, mm); 3891da177e4SLinus Torvalds } 3901da177e4SLinus Torvalds #else 391d3737187SMichel Lespinasse #define validate_mm_rb(root, ignore) do { } while (0) 3921da177e4SLinus Torvalds #define validate_mm(mm) do { } while (0) 3931da177e4SLinus Torvalds #endif 3941da177e4SLinus Torvalds 395d3737187SMichel Lespinasse RB_DECLARE_CALLBACKS(static, vma_gap_callbacks, struct vm_area_struct, vm_rb, 396d3737187SMichel Lespinasse unsigned long, rb_subtree_gap, vma_compute_subtree_gap) 397d3737187SMichel Lespinasse 398d3737187SMichel Lespinasse /* 399d3737187SMichel Lespinasse * Update augmented rbtree rb_subtree_gap values after vma->vm_start or 400d3737187SMichel Lespinasse * vma->vm_prev->vm_end values changed, without modifying the vma's position 401d3737187SMichel Lespinasse * in the rbtree. 402d3737187SMichel Lespinasse */ 403d3737187SMichel Lespinasse static void vma_gap_update(struct vm_area_struct *vma) 404d3737187SMichel Lespinasse { 405d3737187SMichel Lespinasse /* 406d3737187SMichel Lespinasse * As it turns out, RB_DECLARE_CALLBACKS() already created a callback 407d3737187SMichel Lespinasse * function that does exacltly what we want. 408d3737187SMichel Lespinasse */ 409d3737187SMichel Lespinasse vma_gap_callbacks_propagate(&vma->vm_rb, NULL); 410d3737187SMichel Lespinasse } 411d3737187SMichel Lespinasse 412d3737187SMichel Lespinasse static inline void vma_rb_insert(struct vm_area_struct *vma, 413d3737187SMichel Lespinasse struct rb_root *root) 414d3737187SMichel Lespinasse { 415d3737187SMichel Lespinasse /* All rb_subtree_gap values must be consistent prior to insertion */ 416d3737187SMichel Lespinasse validate_mm_rb(root, NULL); 417d3737187SMichel Lespinasse 418d3737187SMichel Lespinasse rb_insert_augmented(&vma->vm_rb, root, &vma_gap_callbacks); 419d3737187SMichel Lespinasse } 420d3737187SMichel Lespinasse 4218f26e0b1SAndrea Arcangeli static void __vma_rb_erase(struct vm_area_struct *vma, struct rb_root *root) 4228f26e0b1SAndrea Arcangeli { 4238f26e0b1SAndrea Arcangeli /* 4248f26e0b1SAndrea Arcangeli * Note rb_erase_augmented is a fairly large inline function, 4258f26e0b1SAndrea Arcangeli * so make sure we instantiate it only once with our desired 4268f26e0b1SAndrea Arcangeli * augmented rbtree callbacks. 4278f26e0b1SAndrea Arcangeli */ 4288f26e0b1SAndrea Arcangeli rb_erase_augmented(&vma->vm_rb, root, &vma_gap_callbacks); 4298f26e0b1SAndrea Arcangeli } 4308f26e0b1SAndrea Arcangeli 4318f26e0b1SAndrea Arcangeli static __always_inline void vma_rb_erase_ignore(struct vm_area_struct *vma, 4328f26e0b1SAndrea Arcangeli struct rb_root *root, 4338f26e0b1SAndrea Arcangeli struct vm_area_struct *ignore) 4348f26e0b1SAndrea Arcangeli { 4358f26e0b1SAndrea Arcangeli /* 4368f26e0b1SAndrea Arcangeli * All rb_subtree_gap values must be consistent prior to erase, 4378f26e0b1SAndrea Arcangeli * with the possible exception of the "next" vma being erased if 4388f26e0b1SAndrea Arcangeli * next->vm_start was reduced. 4398f26e0b1SAndrea Arcangeli */ 4408f26e0b1SAndrea Arcangeli validate_mm_rb(root, ignore); 4418f26e0b1SAndrea Arcangeli 4428f26e0b1SAndrea Arcangeli __vma_rb_erase(vma, root); 4438f26e0b1SAndrea Arcangeli } 4448f26e0b1SAndrea Arcangeli 4458f26e0b1SAndrea Arcangeli static __always_inline void vma_rb_erase(struct vm_area_struct *vma, 4468f26e0b1SAndrea Arcangeli struct rb_root *root) 447d3737187SMichel Lespinasse { 448d3737187SMichel Lespinasse /* 449d3737187SMichel Lespinasse * All rb_subtree_gap values must be consistent prior to erase, 450d3737187SMichel Lespinasse * with the possible exception of the vma being erased. 451d3737187SMichel Lespinasse */ 452d3737187SMichel Lespinasse validate_mm_rb(root, vma); 453d3737187SMichel Lespinasse 4548f26e0b1SAndrea Arcangeli __vma_rb_erase(vma, root); 455d3737187SMichel Lespinasse } 456d3737187SMichel Lespinasse 457bf181b9fSMichel Lespinasse /* 458bf181b9fSMichel Lespinasse * vma has some anon_vma assigned, and is already inserted on that 459bf181b9fSMichel Lespinasse * anon_vma's interval trees. 460bf181b9fSMichel Lespinasse * 461bf181b9fSMichel Lespinasse * Before updating the vma's vm_start / vm_end / vm_pgoff fields, the 462bf181b9fSMichel Lespinasse * vma must be removed from the anon_vma's interval trees using 463bf181b9fSMichel Lespinasse * anon_vma_interval_tree_pre_update_vma(). 464bf181b9fSMichel Lespinasse * 465bf181b9fSMichel Lespinasse * After the update, the vma will be reinserted using 466bf181b9fSMichel Lespinasse * anon_vma_interval_tree_post_update_vma(). 467bf181b9fSMichel Lespinasse * 468bf181b9fSMichel Lespinasse * The entire update must be protected by exclusive mmap_sem and by 469bf181b9fSMichel Lespinasse * the root anon_vma's mutex. 470bf181b9fSMichel Lespinasse */ 471bf181b9fSMichel Lespinasse static inline void 472bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(struct vm_area_struct *vma) 473bf181b9fSMichel Lespinasse { 474bf181b9fSMichel Lespinasse struct anon_vma_chain *avc; 475bf181b9fSMichel Lespinasse 476bf181b9fSMichel Lespinasse list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 477bf181b9fSMichel Lespinasse anon_vma_interval_tree_remove(avc, &avc->anon_vma->rb_root); 478bf181b9fSMichel Lespinasse } 479bf181b9fSMichel Lespinasse 480bf181b9fSMichel Lespinasse static inline void 481bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(struct vm_area_struct *vma) 482bf181b9fSMichel Lespinasse { 483bf181b9fSMichel Lespinasse struct anon_vma_chain *avc; 484bf181b9fSMichel Lespinasse 485bf181b9fSMichel Lespinasse list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 486bf181b9fSMichel Lespinasse anon_vma_interval_tree_insert(avc, &avc->anon_vma->rb_root); 487bf181b9fSMichel Lespinasse } 488bf181b9fSMichel Lespinasse 4896597d783SHugh Dickins static int find_vma_links(struct mm_struct *mm, unsigned long addr, 4906597d783SHugh Dickins unsigned long end, struct vm_area_struct **pprev, 4916597d783SHugh Dickins struct rb_node ***rb_link, struct rb_node **rb_parent) 4921da177e4SLinus Torvalds { 4931da177e4SLinus Torvalds struct rb_node **__rb_link, *__rb_parent, *rb_prev; 4941da177e4SLinus Torvalds 4951da177e4SLinus Torvalds __rb_link = &mm->mm_rb.rb_node; 4961da177e4SLinus Torvalds rb_prev = __rb_parent = NULL; 4971da177e4SLinus Torvalds 4981da177e4SLinus Torvalds while (*__rb_link) { 4991da177e4SLinus Torvalds struct vm_area_struct *vma_tmp; 5001da177e4SLinus Torvalds 5011da177e4SLinus Torvalds __rb_parent = *__rb_link; 5021da177e4SLinus Torvalds vma_tmp = rb_entry(__rb_parent, struct vm_area_struct, vm_rb); 5031da177e4SLinus Torvalds 5041da177e4SLinus Torvalds if (vma_tmp->vm_end > addr) { 5056597d783SHugh Dickins /* Fail if an existing vma overlaps the area */ 5066597d783SHugh Dickins if (vma_tmp->vm_start < end) 5076597d783SHugh Dickins return -ENOMEM; 5081da177e4SLinus Torvalds __rb_link = &__rb_parent->rb_left; 5091da177e4SLinus Torvalds } else { 5101da177e4SLinus Torvalds rb_prev = __rb_parent; 5111da177e4SLinus Torvalds __rb_link = &__rb_parent->rb_right; 5121da177e4SLinus Torvalds } 5131da177e4SLinus Torvalds } 5141da177e4SLinus Torvalds 5151da177e4SLinus Torvalds *pprev = NULL; 5161da177e4SLinus Torvalds if (rb_prev) 5171da177e4SLinus Torvalds *pprev = rb_entry(rb_prev, struct vm_area_struct, vm_rb); 5181da177e4SLinus Torvalds *rb_link = __rb_link; 5191da177e4SLinus Torvalds *rb_parent = __rb_parent; 5206597d783SHugh Dickins return 0; 5211da177e4SLinus Torvalds } 5221da177e4SLinus Torvalds 523e8420a8eSCyril Hrubis static unsigned long count_vma_pages_range(struct mm_struct *mm, 524e8420a8eSCyril Hrubis unsigned long addr, unsigned long end) 525e8420a8eSCyril Hrubis { 526e8420a8eSCyril Hrubis unsigned long nr_pages = 0; 527e8420a8eSCyril Hrubis struct vm_area_struct *vma; 528e8420a8eSCyril Hrubis 529e8420a8eSCyril Hrubis /* Find first overlaping mapping */ 530e8420a8eSCyril Hrubis vma = find_vma_intersection(mm, addr, end); 531e8420a8eSCyril Hrubis if (!vma) 532e8420a8eSCyril Hrubis return 0; 533e8420a8eSCyril Hrubis 534e8420a8eSCyril Hrubis nr_pages = (min(end, vma->vm_end) - 535e8420a8eSCyril Hrubis max(addr, vma->vm_start)) >> PAGE_SHIFT; 536e8420a8eSCyril Hrubis 537e8420a8eSCyril Hrubis /* Iterate over the rest of the overlaps */ 538e8420a8eSCyril Hrubis for (vma = vma->vm_next; vma; vma = vma->vm_next) { 539e8420a8eSCyril Hrubis unsigned long overlap_len; 540e8420a8eSCyril Hrubis 541e8420a8eSCyril Hrubis if (vma->vm_start > end) 542e8420a8eSCyril Hrubis break; 543e8420a8eSCyril Hrubis 544e8420a8eSCyril Hrubis overlap_len = min(end, vma->vm_end) - vma->vm_start; 545e8420a8eSCyril Hrubis nr_pages += overlap_len >> PAGE_SHIFT; 546e8420a8eSCyril Hrubis } 547e8420a8eSCyril Hrubis 548e8420a8eSCyril Hrubis return nr_pages; 549e8420a8eSCyril Hrubis } 550e8420a8eSCyril Hrubis 5511da177e4SLinus Torvalds void __vma_link_rb(struct mm_struct *mm, struct vm_area_struct *vma, 5521da177e4SLinus Torvalds struct rb_node **rb_link, struct rb_node *rb_parent) 5531da177e4SLinus Torvalds { 554d3737187SMichel Lespinasse /* Update tracking information for the gap following the new vma. */ 555d3737187SMichel Lespinasse if (vma->vm_next) 556d3737187SMichel Lespinasse vma_gap_update(vma->vm_next); 557d3737187SMichel Lespinasse else 5581be7107fSHugh Dickins mm->highest_vm_end = vm_end_gap(vma); 559d3737187SMichel Lespinasse 560d3737187SMichel Lespinasse /* 561d3737187SMichel Lespinasse * vma->vm_prev wasn't known when we followed the rbtree to find the 562d3737187SMichel Lespinasse * correct insertion point for that vma. As a result, we could not 563d3737187SMichel Lespinasse * update the vma vm_rb parents rb_subtree_gap values on the way down. 564d3737187SMichel Lespinasse * So, we first insert the vma with a zero rb_subtree_gap value 565d3737187SMichel Lespinasse * (to be consistent with what we did on the way down), and then 566d3737187SMichel Lespinasse * immediately update the gap to the correct value. Finally we 567d3737187SMichel Lespinasse * rebalance the rbtree after all augmented values have been set. 568d3737187SMichel Lespinasse */ 5691da177e4SLinus Torvalds rb_link_node(&vma->vm_rb, rb_parent, rb_link); 570d3737187SMichel Lespinasse vma->rb_subtree_gap = 0; 571d3737187SMichel Lespinasse vma_gap_update(vma); 572d3737187SMichel Lespinasse vma_rb_insert(vma, &mm->mm_rb); 5731da177e4SLinus Torvalds } 5741da177e4SLinus Torvalds 575cb8f488cSDenys Vlasenko static void __vma_link_file(struct vm_area_struct *vma) 5761da177e4SLinus Torvalds { 5771da177e4SLinus Torvalds struct file *file; 5781da177e4SLinus Torvalds 5791da177e4SLinus Torvalds file = vma->vm_file; 5801da177e4SLinus Torvalds if (file) { 5811da177e4SLinus Torvalds struct address_space *mapping = file->f_mapping; 5821da177e4SLinus Torvalds 5831da177e4SLinus Torvalds if (vma->vm_flags & VM_DENYWRITE) 584496ad9aaSAl Viro atomic_dec(&file_inode(file)->i_writecount); 5851da177e4SLinus Torvalds if (vma->vm_flags & VM_SHARED) 5864bb5f5d9SDavid Herrmann atomic_inc(&mapping->i_mmap_writable); 5871da177e4SLinus Torvalds 5881da177e4SLinus Torvalds flush_dcache_mmap_lock(mapping); 5896b2dbba8SMichel Lespinasse vma_interval_tree_insert(vma, &mapping->i_mmap); 5901da177e4SLinus Torvalds flush_dcache_mmap_unlock(mapping); 5911da177e4SLinus Torvalds } 5921da177e4SLinus Torvalds } 5931da177e4SLinus Torvalds 5941da177e4SLinus Torvalds static void 5951da177e4SLinus Torvalds __vma_link(struct mm_struct *mm, struct vm_area_struct *vma, 5961da177e4SLinus Torvalds struct vm_area_struct *prev, struct rb_node **rb_link, 5971da177e4SLinus Torvalds struct rb_node *rb_parent) 5981da177e4SLinus Torvalds { 5991da177e4SLinus Torvalds __vma_link_list(mm, vma, prev, rb_parent); 6001da177e4SLinus Torvalds __vma_link_rb(mm, vma, rb_link, rb_parent); 6011da177e4SLinus Torvalds } 6021da177e4SLinus Torvalds 6031da177e4SLinus Torvalds static void vma_link(struct mm_struct *mm, struct vm_area_struct *vma, 6041da177e4SLinus Torvalds struct vm_area_struct *prev, struct rb_node **rb_link, 6051da177e4SLinus Torvalds struct rb_node *rb_parent) 6061da177e4SLinus Torvalds { 6071da177e4SLinus Torvalds struct address_space *mapping = NULL; 6081da177e4SLinus Torvalds 60964ac4940SHuang Shijie if (vma->vm_file) { 6101da177e4SLinus Torvalds mapping = vma->vm_file->f_mapping; 61183cde9e8SDavidlohr Bueso i_mmap_lock_write(mapping); 61264ac4940SHuang Shijie } 6131da177e4SLinus Torvalds 6141da177e4SLinus Torvalds __vma_link(mm, vma, prev, rb_link, rb_parent); 6151da177e4SLinus Torvalds __vma_link_file(vma); 6161da177e4SLinus Torvalds 6171da177e4SLinus Torvalds if (mapping) 61883cde9e8SDavidlohr Bueso i_mmap_unlock_write(mapping); 6191da177e4SLinus Torvalds 6201da177e4SLinus Torvalds mm->map_count++; 6211da177e4SLinus Torvalds validate_mm(mm); 6221da177e4SLinus Torvalds } 6231da177e4SLinus Torvalds 6241da177e4SLinus Torvalds /* 62588f6b4c3SKautuk Consul * Helper for vma_adjust() in the split_vma insert case: insert a vma into the 6266b2dbba8SMichel Lespinasse * mm's list and rbtree. It has already been inserted into the interval tree. 6271da177e4SLinus Torvalds */ 62848aae425SZhenwenXu static void __insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma) 6291da177e4SLinus Torvalds { 6306597d783SHugh Dickins struct vm_area_struct *prev; 6311da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 6321da177e4SLinus Torvalds 6336597d783SHugh Dickins if (find_vma_links(mm, vma->vm_start, vma->vm_end, 6346597d783SHugh Dickins &prev, &rb_link, &rb_parent)) 6356597d783SHugh Dickins BUG(); 6361da177e4SLinus Torvalds __vma_link(mm, vma, prev, rb_link, rb_parent); 6371da177e4SLinus Torvalds mm->map_count++; 6381da177e4SLinus Torvalds } 6391da177e4SLinus Torvalds 640e86f15eeSAndrea Arcangeli static __always_inline void __vma_unlink_common(struct mm_struct *mm, 641e86f15eeSAndrea Arcangeli struct vm_area_struct *vma, 642e86f15eeSAndrea Arcangeli struct vm_area_struct *prev, 6438f26e0b1SAndrea Arcangeli bool has_prev, 6448f26e0b1SAndrea Arcangeli struct vm_area_struct *ignore) 6451da177e4SLinus Torvalds { 646d3737187SMichel Lespinasse struct vm_area_struct *next; 647297c5eeeSLinus Torvalds 6488f26e0b1SAndrea Arcangeli vma_rb_erase_ignore(vma, &mm->mm_rb, ignore); 649e86f15eeSAndrea Arcangeli next = vma->vm_next; 650e86f15eeSAndrea Arcangeli if (has_prev) 651e86f15eeSAndrea Arcangeli prev->vm_next = next; 652e86f15eeSAndrea Arcangeli else { 653e86f15eeSAndrea Arcangeli prev = vma->vm_prev; 654e86f15eeSAndrea Arcangeli if (prev) 655e86f15eeSAndrea Arcangeli prev->vm_next = next; 656e86f15eeSAndrea Arcangeli else 657e86f15eeSAndrea Arcangeli mm->mmap = next; 658e86f15eeSAndrea Arcangeli } 659297c5eeeSLinus Torvalds if (next) 660297c5eeeSLinus Torvalds next->vm_prev = prev; 661615d6e87SDavidlohr Bueso 662615d6e87SDavidlohr Bueso /* Kill the cache */ 663615d6e87SDavidlohr Bueso vmacache_invalidate(mm); 6641da177e4SLinus Torvalds } 6651da177e4SLinus Torvalds 666e86f15eeSAndrea Arcangeli static inline void __vma_unlink_prev(struct mm_struct *mm, 667e86f15eeSAndrea Arcangeli struct vm_area_struct *vma, 668e86f15eeSAndrea Arcangeli struct vm_area_struct *prev) 669e86f15eeSAndrea Arcangeli { 6708f26e0b1SAndrea Arcangeli __vma_unlink_common(mm, vma, prev, true, vma); 671e86f15eeSAndrea Arcangeli } 672e86f15eeSAndrea Arcangeli 6731da177e4SLinus Torvalds /* 6741da177e4SLinus Torvalds * We cannot adjust vm_start, vm_end, vm_pgoff fields of a vma that 6751da177e4SLinus Torvalds * is already present in an i_mmap tree without adjusting the tree. 6761da177e4SLinus Torvalds * The following helper function should be used when such adjustments 6771da177e4SLinus Torvalds * are necessary. The "insert" vma (if any) is to be inserted 6781da177e4SLinus Torvalds * before we drop the necessary locks. 6791da177e4SLinus Torvalds */ 680e86f15eeSAndrea Arcangeli int __vma_adjust(struct vm_area_struct *vma, unsigned long start, 681e86f15eeSAndrea Arcangeli unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert, 682e86f15eeSAndrea Arcangeli struct vm_area_struct *expand) 6831da177e4SLinus Torvalds { 6841da177e4SLinus Torvalds struct mm_struct *mm = vma->vm_mm; 685e86f15eeSAndrea Arcangeli struct vm_area_struct *next = vma->vm_next, *orig_vma = vma; 6861da177e4SLinus Torvalds struct address_space *mapping = NULL; 6876b2dbba8SMichel Lespinasse struct rb_root *root = NULL; 688012f1800SRik van Riel struct anon_vma *anon_vma = NULL; 6891da177e4SLinus Torvalds struct file *file = vma->vm_file; 690d3737187SMichel Lespinasse bool start_changed = false, end_changed = false; 6911da177e4SLinus Torvalds long adjust_next = 0; 6921da177e4SLinus Torvalds int remove_next = 0; 6931da177e4SLinus Torvalds 6941da177e4SLinus Torvalds if (next && !insert) { 695734537c9SKirill A. Shutemov struct vm_area_struct *exporter = NULL, *importer = NULL; 696287d97acSLinus Torvalds 6971da177e4SLinus Torvalds if (end >= next->vm_end) { 6981da177e4SLinus Torvalds /* 6991da177e4SLinus Torvalds * vma expands, overlapping all the next, and 7001da177e4SLinus Torvalds * perhaps the one after too (mprotect case 6). 70186d12e47SAndrea Arcangeli * The only other cases that gets here are 702e86f15eeSAndrea Arcangeli * case 1, case 7 and case 8. 703e86f15eeSAndrea Arcangeli */ 704e86f15eeSAndrea Arcangeli if (next == expand) { 705e86f15eeSAndrea Arcangeli /* 706e86f15eeSAndrea Arcangeli * The only case where we don't expand "vma" 707e86f15eeSAndrea Arcangeli * and we expand "next" instead is case 8. 708e86f15eeSAndrea Arcangeli */ 709e86f15eeSAndrea Arcangeli VM_WARN_ON(end != next->vm_end); 710e86f15eeSAndrea Arcangeli /* 711e86f15eeSAndrea Arcangeli * remove_next == 3 means we're 712e86f15eeSAndrea Arcangeli * removing "vma" and that to do so we 713e86f15eeSAndrea Arcangeli * swapped "vma" and "next". 714e86f15eeSAndrea Arcangeli */ 715e86f15eeSAndrea Arcangeli remove_next = 3; 716e86f15eeSAndrea Arcangeli VM_WARN_ON(file != next->vm_file); 717e86f15eeSAndrea Arcangeli swap(vma, next); 718e86f15eeSAndrea Arcangeli } else { 719e86f15eeSAndrea Arcangeli VM_WARN_ON(expand != vma); 720e86f15eeSAndrea Arcangeli /* 721e86f15eeSAndrea Arcangeli * case 1, 6, 7, remove_next == 2 is case 6, 722e86f15eeSAndrea Arcangeli * remove_next == 1 is case 1 or 7. 7231da177e4SLinus Torvalds */ 724734537c9SKirill A. Shutemov remove_next = 1 + (end > next->vm_end); 725e86f15eeSAndrea Arcangeli VM_WARN_ON(remove_next == 2 && 726e86f15eeSAndrea Arcangeli end != next->vm_next->vm_end); 727e86f15eeSAndrea Arcangeli VM_WARN_ON(remove_next == 1 && 728e86f15eeSAndrea Arcangeli end != next->vm_end); 729e86f15eeSAndrea Arcangeli /* trim end to next, for case 6 first pass */ 7301da177e4SLinus Torvalds end = next->vm_end; 731e86f15eeSAndrea Arcangeli } 732e86f15eeSAndrea Arcangeli 733287d97acSLinus Torvalds exporter = next; 7341da177e4SLinus Torvalds importer = vma; 735734537c9SKirill A. Shutemov 736734537c9SKirill A. Shutemov /* 737734537c9SKirill A. Shutemov * If next doesn't have anon_vma, import from vma after 738734537c9SKirill A. Shutemov * next, if the vma overlaps with it. 739734537c9SKirill A. Shutemov */ 74097a42cd4SAndrea Arcangeli if (remove_next == 2 && !next->anon_vma) 741734537c9SKirill A. Shutemov exporter = next->vm_next; 742734537c9SKirill A. Shutemov 7431da177e4SLinus Torvalds } else if (end > next->vm_start) { 7441da177e4SLinus Torvalds /* 7451da177e4SLinus Torvalds * vma expands, overlapping part of the next: 7461da177e4SLinus Torvalds * mprotect case 5 shifting the boundary up. 7471da177e4SLinus Torvalds */ 7481da177e4SLinus Torvalds adjust_next = (end - next->vm_start) >> PAGE_SHIFT; 749287d97acSLinus Torvalds exporter = next; 7501da177e4SLinus Torvalds importer = vma; 751e86f15eeSAndrea Arcangeli VM_WARN_ON(expand != importer); 7521da177e4SLinus Torvalds } else if (end < vma->vm_end) { 7531da177e4SLinus Torvalds /* 7541da177e4SLinus Torvalds * vma shrinks, and !insert tells it's not 7551da177e4SLinus Torvalds * split_vma inserting another: so it must be 7561da177e4SLinus Torvalds * mprotect case 4 shifting the boundary down. 7571da177e4SLinus Torvalds */ 7581da177e4SLinus Torvalds adjust_next = -((vma->vm_end - end) >> PAGE_SHIFT); 759287d97acSLinus Torvalds exporter = vma; 7601da177e4SLinus Torvalds importer = next; 761e86f15eeSAndrea Arcangeli VM_WARN_ON(expand != importer); 7621da177e4SLinus Torvalds } 7631da177e4SLinus Torvalds 7645beb4930SRik van Riel /* 7655beb4930SRik van Riel * Easily overlooked: when mprotect shifts the boundary, 7665beb4930SRik van Riel * make sure the expanding vma has anon_vma set if the 7675beb4930SRik van Riel * shrinking vma had, to cover any anon pages imported. 7685beb4930SRik van Riel */ 769287d97acSLinus Torvalds if (exporter && exporter->anon_vma && !importer->anon_vma) { 770c4ea95d7SDaniel Forrest int error; 771c4ea95d7SDaniel Forrest 772287d97acSLinus Torvalds importer->anon_vma = exporter->anon_vma; 773b800c91aSKonstantin Khlebnikov error = anon_vma_clone(importer, exporter); 7743fe89b3eSLeon Yu if (error) 775b800c91aSKonstantin Khlebnikov return error; 776b800c91aSKonstantin Khlebnikov } 7775beb4930SRik van Riel } 778734537c9SKirill A. Shutemov again: 779e86f15eeSAndrea Arcangeli vma_adjust_trans_huge(orig_vma, start, end, adjust_next); 78037f9f559SKirill A. Shutemov 7811da177e4SLinus Torvalds if (file) { 7821da177e4SLinus Torvalds mapping = file->f_mapping; 7831da177e4SLinus Torvalds root = &mapping->i_mmap; 784cbc91f71SSrikar Dronamraju uprobe_munmap(vma, vma->vm_start, vma->vm_end); 785682968e0SSrikar Dronamraju 786682968e0SSrikar Dronamraju if (adjust_next) 78727ba0644SKirill A. Shutemov uprobe_munmap(next, next->vm_start, next->vm_end); 788682968e0SSrikar Dronamraju 78983cde9e8SDavidlohr Bueso i_mmap_lock_write(mapping); 7901da177e4SLinus Torvalds if (insert) { 7911da177e4SLinus Torvalds /* 7926b2dbba8SMichel Lespinasse * Put into interval tree now, so instantiated pages 7931da177e4SLinus Torvalds * are visible to arm/parisc __flush_dcache_page 7941da177e4SLinus Torvalds * throughout; but we cannot insert into address 7951da177e4SLinus Torvalds * space until vma start or end is updated. 7961da177e4SLinus Torvalds */ 7971da177e4SLinus Torvalds __vma_link_file(insert); 7981da177e4SLinus Torvalds } 7991da177e4SLinus Torvalds } 8001da177e4SLinus Torvalds 801012f1800SRik van Riel anon_vma = vma->anon_vma; 802bf181b9fSMichel Lespinasse if (!anon_vma && adjust_next) 803bf181b9fSMichel Lespinasse anon_vma = next->anon_vma; 804bf181b9fSMichel Lespinasse if (anon_vma) { 805e86f15eeSAndrea Arcangeli VM_WARN_ON(adjust_next && next->anon_vma && 806e86f15eeSAndrea Arcangeli anon_vma != next->anon_vma); 8074fc3f1d6SIngo Molnar anon_vma_lock_write(anon_vma); 808bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(vma); 809bf181b9fSMichel Lespinasse if (adjust_next) 810bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(next); 811bf181b9fSMichel Lespinasse } 812012f1800SRik van Riel 8131da177e4SLinus Torvalds if (root) { 8141da177e4SLinus Torvalds flush_dcache_mmap_lock(mapping); 8156b2dbba8SMichel Lespinasse vma_interval_tree_remove(vma, root); 8161da177e4SLinus Torvalds if (adjust_next) 8176b2dbba8SMichel Lespinasse vma_interval_tree_remove(next, root); 8181da177e4SLinus Torvalds } 8191da177e4SLinus Torvalds 820d3737187SMichel Lespinasse if (start != vma->vm_start) { 8211da177e4SLinus Torvalds vma->vm_start = start; 822d3737187SMichel Lespinasse start_changed = true; 823d3737187SMichel Lespinasse } 824d3737187SMichel Lespinasse if (end != vma->vm_end) { 8251da177e4SLinus Torvalds vma->vm_end = end; 826d3737187SMichel Lespinasse end_changed = true; 827d3737187SMichel Lespinasse } 8281da177e4SLinus Torvalds vma->vm_pgoff = pgoff; 8291da177e4SLinus Torvalds if (adjust_next) { 8301da177e4SLinus Torvalds next->vm_start += adjust_next << PAGE_SHIFT; 8311da177e4SLinus Torvalds next->vm_pgoff += adjust_next; 8321da177e4SLinus Torvalds } 8331da177e4SLinus Torvalds 8341da177e4SLinus Torvalds if (root) { 8351da177e4SLinus Torvalds if (adjust_next) 8366b2dbba8SMichel Lespinasse vma_interval_tree_insert(next, root); 8376b2dbba8SMichel Lespinasse vma_interval_tree_insert(vma, root); 8381da177e4SLinus Torvalds flush_dcache_mmap_unlock(mapping); 8391da177e4SLinus Torvalds } 8401da177e4SLinus Torvalds 8411da177e4SLinus Torvalds if (remove_next) { 8421da177e4SLinus Torvalds /* 8431da177e4SLinus Torvalds * vma_merge has merged next into vma, and needs 8441da177e4SLinus Torvalds * us to remove next before dropping the locks. 8451da177e4SLinus Torvalds */ 846e86f15eeSAndrea Arcangeli if (remove_next != 3) 847e86f15eeSAndrea Arcangeli __vma_unlink_prev(mm, next, vma); 848e86f15eeSAndrea Arcangeli else 8498f26e0b1SAndrea Arcangeli /* 8508f26e0b1SAndrea Arcangeli * vma is not before next if they've been 8518f26e0b1SAndrea Arcangeli * swapped. 8528f26e0b1SAndrea Arcangeli * 8538f26e0b1SAndrea Arcangeli * pre-swap() next->vm_start was reduced so 8548f26e0b1SAndrea Arcangeli * tell validate_mm_rb to ignore pre-swap() 8558f26e0b1SAndrea Arcangeli * "next" (which is stored in post-swap() 8568f26e0b1SAndrea Arcangeli * "vma"). 8578f26e0b1SAndrea Arcangeli */ 8588f26e0b1SAndrea Arcangeli __vma_unlink_common(mm, next, NULL, false, vma); 8591da177e4SLinus Torvalds if (file) 8601da177e4SLinus Torvalds __remove_shared_vm_struct(next, file, mapping); 8611da177e4SLinus Torvalds } else if (insert) { 8621da177e4SLinus Torvalds /* 8631da177e4SLinus Torvalds * split_vma has split insert from vma, and needs 8641da177e4SLinus Torvalds * us to insert it before dropping the locks 8651da177e4SLinus Torvalds * (it may either follow vma or precede it). 8661da177e4SLinus Torvalds */ 8671da177e4SLinus Torvalds __insert_vm_struct(mm, insert); 868d3737187SMichel Lespinasse } else { 869d3737187SMichel Lespinasse if (start_changed) 870d3737187SMichel Lespinasse vma_gap_update(vma); 871d3737187SMichel Lespinasse if (end_changed) { 872d3737187SMichel Lespinasse if (!next) 8731be7107fSHugh Dickins mm->highest_vm_end = vm_end_gap(vma); 874d3737187SMichel Lespinasse else if (!adjust_next) 875d3737187SMichel Lespinasse vma_gap_update(next); 876d3737187SMichel Lespinasse } 8771da177e4SLinus Torvalds } 8781da177e4SLinus Torvalds 879bf181b9fSMichel Lespinasse if (anon_vma) { 880bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(vma); 881bf181b9fSMichel Lespinasse if (adjust_next) 882bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(next); 88308b52706SKonstantin Khlebnikov anon_vma_unlock_write(anon_vma); 884bf181b9fSMichel Lespinasse } 8851da177e4SLinus Torvalds if (mapping) 88683cde9e8SDavidlohr Bueso i_mmap_unlock_write(mapping); 8871da177e4SLinus Torvalds 8882b144498SSrikar Dronamraju if (root) { 8897b2d81d4SIngo Molnar uprobe_mmap(vma); 8902b144498SSrikar Dronamraju 8912b144498SSrikar Dronamraju if (adjust_next) 8927b2d81d4SIngo Molnar uprobe_mmap(next); 8932b144498SSrikar Dronamraju } 8942b144498SSrikar Dronamraju 8951da177e4SLinus Torvalds if (remove_next) { 896925d1c40SMatt Helsley if (file) { 897cbc91f71SSrikar Dronamraju uprobe_munmap(next, next->vm_start, next->vm_end); 8981da177e4SLinus Torvalds fput(file); 899925d1c40SMatt Helsley } 9005beb4930SRik van Riel if (next->anon_vma) 9015beb4930SRik van Riel anon_vma_merge(vma, next); 9021da177e4SLinus Torvalds mm->map_count--; 9033964acd0SOleg Nesterov mpol_put(vma_policy(next)); 9041da177e4SLinus Torvalds kmem_cache_free(vm_area_cachep, next); 9051da177e4SLinus Torvalds /* 9061da177e4SLinus Torvalds * In mprotect's case 6 (see comments on vma_merge), 9071da177e4SLinus Torvalds * we must remove another next too. It would clutter 9081da177e4SLinus Torvalds * up the code too much to do both in one go. 9091da177e4SLinus Torvalds */ 910e86f15eeSAndrea Arcangeli if (remove_next != 3) { 911e86f15eeSAndrea Arcangeli /* 912e86f15eeSAndrea Arcangeli * If "next" was removed and vma->vm_end was 913e86f15eeSAndrea Arcangeli * expanded (up) over it, in turn 914e86f15eeSAndrea Arcangeli * "next->vm_prev->vm_end" changed and the 915e86f15eeSAndrea Arcangeli * "vma->vm_next" gap must be updated. 916e86f15eeSAndrea Arcangeli */ 9171da177e4SLinus Torvalds next = vma->vm_next; 918e86f15eeSAndrea Arcangeli } else { 919e86f15eeSAndrea Arcangeli /* 920e86f15eeSAndrea Arcangeli * For the scope of the comment "next" and 921e86f15eeSAndrea Arcangeli * "vma" considered pre-swap(): if "vma" was 922e86f15eeSAndrea Arcangeli * removed, next->vm_start was expanded (down) 923e86f15eeSAndrea Arcangeli * over it and the "next" gap must be updated. 924e86f15eeSAndrea Arcangeli * Because of the swap() the post-swap() "vma" 925e86f15eeSAndrea Arcangeli * actually points to pre-swap() "next" 926e86f15eeSAndrea Arcangeli * (post-swap() "next" as opposed is now a 927e86f15eeSAndrea Arcangeli * dangling pointer). 928e86f15eeSAndrea Arcangeli */ 929e86f15eeSAndrea Arcangeli next = vma; 930e86f15eeSAndrea Arcangeli } 931734537c9SKirill A. Shutemov if (remove_next == 2) { 932734537c9SKirill A. Shutemov remove_next = 1; 933734537c9SKirill A. Shutemov end = next->vm_end; 9341da177e4SLinus Torvalds goto again; 935734537c9SKirill A. Shutemov } 936d3737187SMichel Lespinasse else if (next) 937d3737187SMichel Lespinasse vma_gap_update(next); 938fb8c41e9SAndrea Arcangeli else { 939fb8c41e9SAndrea Arcangeli /* 940fb8c41e9SAndrea Arcangeli * If remove_next == 2 we obviously can't 941fb8c41e9SAndrea Arcangeli * reach this path. 942fb8c41e9SAndrea Arcangeli * 943fb8c41e9SAndrea Arcangeli * If remove_next == 3 we can't reach this 944fb8c41e9SAndrea Arcangeli * path because pre-swap() next is always not 945fb8c41e9SAndrea Arcangeli * NULL. pre-swap() "next" is not being 946fb8c41e9SAndrea Arcangeli * removed and its next->vm_end is not altered 947fb8c41e9SAndrea Arcangeli * (and furthermore "end" already matches 948fb8c41e9SAndrea Arcangeli * next->vm_end in remove_next == 3). 949fb8c41e9SAndrea Arcangeli * 950fb8c41e9SAndrea Arcangeli * We reach this only in the remove_next == 1 951fb8c41e9SAndrea Arcangeli * case if the "next" vma that was removed was 952fb8c41e9SAndrea Arcangeli * the highest vma of the mm. However in such 953fb8c41e9SAndrea Arcangeli * case next->vm_end == "end" and the extended 954fb8c41e9SAndrea Arcangeli * "vma" has vma->vm_end == next->vm_end so 955fb8c41e9SAndrea Arcangeli * mm->highest_vm_end doesn't need any update 956fb8c41e9SAndrea Arcangeli * in remove_next == 1 case. 957fb8c41e9SAndrea Arcangeli */ 9581be7107fSHugh Dickins VM_WARN_ON(mm->highest_vm_end != vm_end_gap(vma)); 959fb8c41e9SAndrea Arcangeli } 9601da177e4SLinus Torvalds } 9612b144498SSrikar Dronamraju if (insert && file) 9627b2d81d4SIngo Molnar uprobe_mmap(insert); 9631da177e4SLinus Torvalds 9641da177e4SLinus Torvalds validate_mm(mm); 9655beb4930SRik van Riel 9665beb4930SRik van Riel return 0; 9671da177e4SLinus Torvalds } 9681da177e4SLinus Torvalds 9691da177e4SLinus Torvalds /* 9701da177e4SLinus Torvalds * If the vma has a ->close operation then the driver probably needs to release 9711da177e4SLinus Torvalds * per-vma resources, so we don't attempt to merge those. 9721da177e4SLinus Torvalds */ 9731da177e4SLinus Torvalds static inline int is_mergeable_vma(struct vm_area_struct *vma, 97419a809afSAndrea Arcangeli struct file *file, unsigned long vm_flags, 97519a809afSAndrea Arcangeli struct vm_userfaultfd_ctx vm_userfaultfd_ctx) 9761da177e4SLinus Torvalds { 97734228d47SCyrill Gorcunov /* 97834228d47SCyrill Gorcunov * VM_SOFTDIRTY should not prevent from VMA merging, if we 97934228d47SCyrill Gorcunov * match the flags but dirty bit -- the caller should mark 98034228d47SCyrill Gorcunov * merged VMA as dirty. If dirty bit won't be excluded from 98134228d47SCyrill Gorcunov * comparison, we increase pressue on the memory system forcing 98234228d47SCyrill Gorcunov * the kernel to generate new VMAs when old one could be 98334228d47SCyrill Gorcunov * extended instead. 98434228d47SCyrill Gorcunov */ 98534228d47SCyrill Gorcunov if ((vma->vm_flags ^ vm_flags) & ~VM_SOFTDIRTY) 9861da177e4SLinus Torvalds return 0; 9871da177e4SLinus Torvalds if (vma->vm_file != file) 9881da177e4SLinus Torvalds return 0; 9891da177e4SLinus Torvalds if (vma->vm_ops && vma->vm_ops->close) 9901da177e4SLinus Torvalds return 0; 99119a809afSAndrea Arcangeli if (!is_mergeable_vm_userfaultfd_ctx(vma, vm_userfaultfd_ctx)) 99219a809afSAndrea Arcangeli return 0; 9931da177e4SLinus Torvalds return 1; 9941da177e4SLinus Torvalds } 9951da177e4SLinus Torvalds 9961da177e4SLinus Torvalds static inline int is_mergeable_anon_vma(struct anon_vma *anon_vma1, 997965f55deSShaohua Li struct anon_vma *anon_vma2, 998965f55deSShaohua Li struct vm_area_struct *vma) 9991da177e4SLinus Torvalds { 1000965f55deSShaohua Li /* 1001965f55deSShaohua Li * The list_is_singular() test is to avoid merging VMA cloned from 1002965f55deSShaohua Li * parents. This can improve scalability caused by anon_vma lock. 1003965f55deSShaohua Li */ 1004965f55deSShaohua Li if ((!anon_vma1 || !anon_vma2) && (!vma || 1005965f55deSShaohua Li list_is_singular(&vma->anon_vma_chain))) 1006965f55deSShaohua Li return 1; 1007965f55deSShaohua Li return anon_vma1 == anon_vma2; 10081da177e4SLinus Torvalds } 10091da177e4SLinus Torvalds 10101da177e4SLinus Torvalds /* 10111da177e4SLinus Torvalds * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff) 10121da177e4SLinus Torvalds * in front of (at a lower virtual address and file offset than) the vma. 10131da177e4SLinus Torvalds * 10141da177e4SLinus Torvalds * We cannot merge two vmas if they have differently assigned (non-NULL) 10151da177e4SLinus Torvalds * anon_vmas, nor if same anon_vma is assigned but offsets incompatible. 10161da177e4SLinus Torvalds * 10171da177e4SLinus Torvalds * We don't check here for the merged mmap wrapping around the end of pagecache 10181da177e4SLinus Torvalds * indices (16TB on ia32) because do_mmap_pgoff() does not permit mmap's which 10191da177e4SLinus Torvalds * wrap, nor mmaps which cover the final page at index -1UL. 10201da177e4SLinus Torvalds */ 10211da177e4SLinus Torvalds static int 10221da177e4SLinus Torvalds can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags, 102319a809afSAndrea Arcangeli struct anon_vma *anon_vma, struct file *file, 102419a809afSAndrea Arcangeli pgoff_t vm_pgoff, 102519a809afSAndrea Arcangeli struct vm_userfaultfd_ctx vm_userfaultfd_ctx) 10261da177e4SLinus Torvalds { 102719a809afSAndrea Arcangeli if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx) && 1028965f55deSShaohua Li is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) { 10291da177e4SLinus Torvalds if (vma->vm_pgoff == vm_pgoff) 10301da177e4SLinus Torvalds return 1; 10311da177e4SLinus Torvalds } 10321da177e4SLinus Torvalds return 0; 10331da177e4SLinus Torvalds } 10341da177e4SLinus Torvalds 10351da177e4SLinus Torvalds /* 10361da177e4SLinus Torvalds * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff) 10371da177e4SLinus Torvalds * beyond (at a higher virtual address and file offset than) the vma. 10381da177e4SLinus Torvalds * 10391da177e4SLinus Torvalds * We cannot merge two vmas if they have differently assigned (non-NULL) 10401da177e4SLinus Torvalds * anon_vmas, nor if same anon_vma is assigned but offsets incompatible. 10411da177e4SLinus Torvalds */ 10421da177e4SLinus Torvalds static int 10431da177e4SLinus Torvalds can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags, 104419a809afSAndrea Arcangeli struct anon_vma *anon_vma, struct file *file, 104519a809afSAndrea Arcangeli pgoff_t vm_pgoff, 104619a809afSAndrea Arcangeli struct vm_userfaultfd_ctx vm_userfaultfd_ctx) 10471da177e4SLinus Torvalds { 104819a809afSAndrea Arcangeli if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx) && 1049965f55deSShaohua Li is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) { 10501da177e4SLinus Torvalds pgoff_t vm_pglen; 1051d6e93217SLibin vm_pglen = vma_pages(vma); 10521da177e4SLinus Torvalds if (vma->vm_pgoff + vm_pglen == vm_pgoff) 10531da177e4SLinus Torvalds return 1; 10541da177e4SLinus Torvalds } 10551da177e4SLinus Torvalds return 0; 10561da177e4SLinus Torvalds } 10571da177e4SLinus Torvalds 10581da177e4SLinus Torvalds /* 10591da177e4SLinus Torvalds * Given a mapping request (addr,end,vm_flags,file,pgoff), figure out 10601da177e4SLinus Torvalds * whether that can be merged with its predecessor or its successor. 10611da177e4SLinus Torvalds * Or both (it neatly fills a hole). 10621da177e4SLinus Torvalds * 10631da177e4SLinus Torvalds * In most cases - when called for mmap, brk or mremap - [addr,end) is 10641da177e4SLinus Torvalds * certain not to be mapped by the time vma_merge is called; but when 10651da177e4SLinus Torvalds * called for mprotect, it is certain to be already mapped (either at 10661da177e4SLinus Torvalds * an offset within prev, or at the start of next), and the flags of 10671da177e4SLinus Torvalds * this area are about to be changed to vm_flags - and the no-change 10681da177e4SLinus Torvalds * case has already been eliminated. 10691da177e4SLinus Torvalds * 10701da177e4SLinus Torvalds * The following mprotect cases have to be considered, where AAAA is 10711da177e4SLinus Torvalds * the area passed down from mprotect_fixup, never extending beyond one 10721da177e4SLinus Torvalds * vma, PPPPPP is the prev vma specified, and NNNNNN the next vma after: 10731da177e4SLinus Torvalds * 10741da177e4SLinus Torvalds * AAAA AAAA AAAA AAAA 10751da177e4SLinus Torvalds * PPPPPPNNNNNN PPPPPPNNNNNN PPPPPPNNNNNN PPPPNNNNXXXX 10761da177e4SLinus Torvalds * cannot merge might become might become might become 10771da177e4SLinus Torvalds * PPNNNNNNNNNN PPPPPPPPPPNN PPPPPPPPPPPP 6 or 10781da177e4SLinus Torvalds * mmap, brk or case 4 below case 5 below PPPPPPPPXXXX 7 or 1079e86f15eeSAndrea Arcangeli * mremap move: PPPPXXXXXXXX 8 10801da177e4SLinus Torvalds * AAAA 10811da177e4SLinus Torvalds * PPPP NNNN PPPPPPPPPPPP PPPPPPPPNNNN PPPPNNNNNNNN 10821da177e4SLinus Torvalds * might become case 1 below case 2 below case 3 below 10831da177e4SLinus Torvalds * 1084e86f15eeSAndrea Arcangeli * It is important for case 8 that the the vma NNNN overlapping the 1085e86f15eeSAndrea Arcangeli * region AAAA is never going to extended over XXXX. Instead XXXX must 1086e86f15eeSAndrea Arcangeli * be extended in region AAAA and NNNN must be removed. This way in 1087e86f15eeSAndrea Arcangeli * all cases where vma_merge succeeds, the moment vma_adjust drops the 1088e86f15eeSAndrea Arcangeli * rmap_locks, the properties of the merged vma will be already 1089e86f15eeSAndrea Arcangeli * correct for the whole merged range. Some of those properties like 1090e86f15eeSAndrea Arcangeli * vm_page_prot/vm_flags may be accessed by rmap_walks and they must 1091e86f15eeSAndrea Arcangeli * be correct for the whole merged range immediately after the 1092e86f15eeSAndrea Arcangeli * rmap_locks are released. Otherwise if XXXX would be removed and 1093e86f15eeSAndrea Arcangeli * NNNN would be extended over the XXXX range, remove_migration_ptes 1094e86f15eeSAndrea Arcangeli * or other rmap walkers (if working on addresses beyond the "end" 1095e86f15eeSAndrea Arcangeli * parameter) may establish ptes with the wrong permissions of NNNN 1096e86f15eeSAndrea Arcangeli * instead of the right permissions of XXXX. 10971da177e4SLinus Torvalds */ 10981da177e4SLinus Torvalds struct vm_area_struct *vma_merge(struct mm_struct *mm, 10991da177e4SLinus Torvalds struct vm_area_struct *prev, unsigned long addr, 11001da177e4SLinus Torvalds unsigned long end, unsigned long vm_flags, 11011da177e4SLinus Torvalds struct anon_vma *anon_vma, struct file *file, 110219a809afSAndrea Arcangeli pgoff_t pgoff, struct mempolicy *policy, 110319a809afSAndrea Arcangeli struct vm_userfaultfd_ctx vm_userfaultfd_ctx) 11041da177e4SLinus Torvalds { 11051da177e4SLinus Torvalds pgoff_t pglen = (end - addr) >> PAGE_SHIFT; 11061da177e4SLinus Torvalds struct vm_area_struct *area, *next; 11075beb4930SRik van Riel int err; 11081da177e4SLinus Torvalds 11091da177e4SLinus Torvalds /* 11101da177e4SLinus Torvalds * We later require that vma->vm_flags == vm_flags, 11111da177e4SLinus Torvalds * so this tests vma->vm_flags & VM_SPECIAL, too. 11121da177e4SLinus Torvalds */ 11131da177e4SLinus Torvalds if (vm_flags & VM_SPECIAL) 11141da177e4SLinus Torvalds return NULL; 11151da177e4SLinus Torvalds 11161da177e4SLinus Torvalds if (prev) 11171da177e4SLinus Torvalds next = prev->vm_next; 11181da177e4SLinus Torvalds else 11191da177e4SLinus Torvalds next = mm->mmap; 11201da177e4SLinus Torvalds area = next; 1121e86f15eeSAndrea Arcangeli if (area && area->vm_end == end) /* cases 6, 7, 8 */ 11221da177e4SLinus Torvalds next = next->vm_next; 11231da177e4SLinus Torvalds 1124e86f15eeSAndrea Arcangeli /* verify some invariant that must be enforced by the caller */ 1125e86f15eeSAndrea Arcangeli VM_WARN_ON(prev && addr <= prev->vm_start); 1126e86f15eeSAndrea Arcangeli VM_WARN_ON(area && end > area->vm_end); 1127e86f15eeSAndrea Arcangeli VM_WARN_ON(addr >= end); 1128e86f15eeSAndrea Arcangeli 11291da177e4SLinus Torvalds /* 11301da177e4SLinus Torvalds * Can it merge with the predecessor? 11311da177e4SLinus Torvalds */ 11321da177e4SLinus Torvalds if (prev && prev->vm_end == addr && 11331da177e4SLinus Torvalds mpol_equal(vma_policy(prev), policy) && 11341da177e4SLinus Torvalds can_vma_merge_after(prev, vm_flags, 113519a809afSAndrea Arcangeli anon_vma, file, pgoff, 113619a809afSAndrea Arcangeli vm_userfaultfd_ctx)) { 11371da177e4SLinus Torvalds /* 11381da177e4SLinus Torvalds * OK, it can. Can we now merge in the successor as well? 11391da177e4SLinus Torvalds */ 11401da177e4SLinus Torvalds if (next && end == next->vm_start && 11411da177e4SLinus Torvalds mpol_equal(policy, vma_policy(next)) && 11421da177e4SLinus Torvalds can_vma_merge_before(next, vm_flags, 114319a809afSAndrea Arcangeli anon_vma, file, 114419a809afSAndrea Arcangeli pgoff+pglen, 114519a809afSAndrea Arcangeli vm_userfaultfd_ctx) && 11461da177e4SLinus Torvalds is_mergeable_anon_vma(prev->anon_vma, 1147965f55deSShaohua Li next->anon_vma, NULL)) { 11481da177e4SLinus Torvalds /* cases 1, 6 */ 1149e86f15eeSAndrea Arcangeli err = __vma_adjust(prev, prev->vm_start, 1150e86f15eeSAndrea Arcangeli next->vm_end, prev->vm_pgoff, NULL, 1151e86f15eeSAndrea Arcangeli prev); 11521da177e4SLinus Torvalds } else /* cases 2, 5, 7 */ 1153e86f15eeSAndrea Arcangeli err = __vma_adjust(prev, prev->vm_start, 1154e86f15eeSAndrea Arcangeli end, prev->vm_pgoff, NULL, prev); 11555beb4930SRik van Riel if (err) 11565beb4930SRik van Riel return NULL; 11576d50e60cSDavid Rientjes khugepaged_enter_vma_merge(prev, vm_flags); 11581da177e4SLinus Torvalds return prev; 11591da177e4SLinus Torvalds } 11601da177e4SLinus Torvalds 11611da177e4SLinus Torvalds /* 11621da177e4SLinus Torvalds * Can this new request be merged in front of next? 11631da177e4SLinus Torvalds */ 11641da177e4SLinus Torvalds if (next && end == next->vm_start && 11651da177e4SLinus Torvalds mpol_equal(policy, vma_policy(next)) && 11661da177e4SLinus Torvalds can_vma_merge_before(next, vm_flags, 116719a809afSAndrea Arcangeli anon_vma, file, pgoff+pglen, 116819a809afSAndrea Arcangeli vm_userfaultfd_ctx)) { 11691da177e4SLinus Torvalds if (prev && addr < prev->vm_end) /* case 4 */ 1170e86f15eeSAndrea Arcangeli err = __vma_adjust(prev, prev->vm_start, 1171e86f15eeSAndrea Arcangeli addr, prev->vm_pgoff, NULL, next); 1172e86f15eeSAndrea Arcangeli else { /* cases 3, 8 */ 1173e86f15eeSAndrea Arcangeli err = __vma_adjust(area, addr, next->vm_end, 1174e86f15eeSAndrea Arcangeli next->vm_pgoff - pglen, NULL, next); 1175e86f15eeSAndrea Arcangeli /* 1176e86f15eeSAndrea Arcangeli * In case 3 area is already equal to next and 1177e86f15eeSAndrea Arcangeli * this is a noop, but in case 8 "area" has 1178e86f15eeSAndrea Arcangeli * been removed and next was expanded over it. 1179e86f15eeSAndrea Arcangeli */ 1180e86f15eeSAndrea Arcangeli area = next; 1181e86f15eeSAndrea Arcangeli } 11825beb4930SRik van Riel if (err) 11835beb4930SRik van Riel return NULL; 11846d50e60cSDavid Rientjes khugepaged_enter_vma_merge(area, vm_flags); 11851da177e4SLinus Torvalds return area; 11861da177e4SLinus Torvalds } 11871da177e4SLinus Torvalds 11881da177e4SLinus Torvalds return NULL; 11891da177e4SLinus Torvalds } 11901da177e4SLinus Torvalds 11911da177e4SLinus Torvalds /* 1192d0e9fe17SLinus Torvalds * Rough compatbility check to quickly see if it's even worth looking 1193d0e9fe17SLinus Torvalds * at sharing an anon_vma. 1194d0e9fe17SLinus Torvalds * 1195d0e9fe17SLinus Torvalds * They need to have the same vm_file, and the flags can only differ 1196d0e9fe17SLinus Torvalds * in things that mprotect may change. 1197d0e9fe17SLinus Torvalds * 1198d0e9fe17SLinus Torvalds * NOTE! The fact that we share an anon_vma doesn't _have_ to mean that 1199d0e9fe17SLinus Torvalds * we can merge the two vma's. For example, we refuse to merge a vma if 1200d0e9fe17SLinus Torvalds * there is a vm_ops->close() function, because that indicates that the 1201d0e9fe17SLinus Torvalds * driver is doing some kind of reference counting. But that doesn't 1202d0e9fe17SLinus Torvalds * really matter for the anon_vma sharing case. 1203d0e9fe17SLinus Torvalds */ 1204d0e9fe17SLinus Torvalds static int anon_vma_compatible(struct vm_area_struct *a, struct vm_area_struct *b) 1205d0e9fe17SLinus Torvalds { 1206d0e9fe17SLinus Torvalds return a->vm_end == b->vm_start && 1207d0e9fe17SLinus Torvalds mpol_equal(vma_policy(a), vma_policy(b)) && 1208d0e9fe17SLinus Torvalds a->vm_file == b->vm_file && 120934228d47SCyrill Gorcunov !((a->vm_flags ^ b->vm_flags) & ~(VM_READ|VM_WRITE|VM_EXEC|VM_SOFTDIRTY)) && 1210d0e9fe17SLinus Torvalds b->vm_pgoff == a->vm_pgoff + ((b->vm_start - a->vm_start) >> PAGE_SHIFT); 1211d0e9fe17SLinus Torvalds } 1212d0e9fe17SLinus Torvalds 1213d0e9fe17SLinus Torvalds /* 1214d0e9fe17SLinus Torvalds * Do some basic sanity checking to see if we can re-use the anon_vma 1215d0e9fe17SLinus Torvalds * from 'old'. The 'a'/'b' vma's are in VM order - one of them will be 1216d0e9fe17SLinus Torvalds * the same as 'old', the other will be the new one that is trying 1217d0e9fe17SLinus Torvalds * to share the anon_vma. 1218d0e9fe17SLinus Torvalds * 1219d0e9fe17SLinus Torvalds * NOTE! This runs with mm_sem held for reading, so it is possible that 1220d0e9fe17SLinus Torvalds * the anon_vma of 'old' is concurrently in the process of being set up 1221d0e9fe17SLinus Torvalds * by another page fault trying to merge _that_. But that's ok: if it 1222d0e9fe17SLinus Torvalds * is being set up, that automatically means that it will be a singleton 1223d0e9fe17SLinus Torvalds * acceptable for merging, so we can do all of this optimistically. But 12244db0c3c2SJason Low * we do that READ_ONCE() to make sure that we never re-load the pointer. 1225d0e9fe17SLinus Torvalds * 1226d0e9fe17SLinus Torvalds * IOW: that the "list_is_singular()" test on the anon_vma_chain only 1227d0e9fe17SLinus Torvalds * matters for the 'stable anon_vma' case (ie the thing we want to avoid 1228d0e9fe17SLinus Torvalds * is to return an anon_vma that is "complex" due to having gone through 1229d0e9fe17SLinus Torvalds * a fork). 1230d0e9fe17SLinus Torvalds * 1231d0e9fe17SLinus Torvalds * We also make sure that the two vma's are compatible (adjacent, 1232d0e9fe17SLinus Torvalds * and with the same memory policies). That's all stable, even with just 1233d0e9fe17SLinus Torvalds * a read lock on the mm_sem. 1234d0e9fe17SLinus Torvalds */ 1235d0e9fe17SLinus Torvalds static struct anon_vma *reusable_anon_vma(struct vm_area_struct *old, struct vm_area_struct *a, struct vm_area_struct *b) 1236d0e9fe17SLinus Torvalds { 1237d0e9fe17SLinus Torvalds if (anon_vma_compatible(a, b)) { 12384db0c3c2SJason Low struct anon_vma *anon_vma = READ_ONCE(old->anon_vma); 1239d0e9fe17SLinus Torvalds 1240d0e9fe17SLinus Torvalds if (anon_vma && list_is_singular(&old->anon_vma_chain)) 1241d0e9fe17SLinus Torvalds return anon_vma; 1242d0e9fe17SLinus Torvalds } 1243d0e9fe17SLinus Torvalds return NULL; 1244d0e9fe17SLinus Torvalds } 1245d0e9fe17SLinus Torvalds 1246d0e9fe17SLinus Torvalds /* 12471da177e4SLinus Torvalds * find_mergeable_anon_vma is used by anon_vma_prepare, to check 12481da177e4SLinus Torvalds * neighbouring vmas for a suitable anon_vma, before it goes off 12491da177e4SLinus Torvalds * to allocate a new anon_vma. It checks because a repetitive 12501da177e4SLinus Torvalds * sequence of mprotects and faults may otherwise lead to distinct 12511da177e4SLinus Torvalds * anon_vmas being allocated, preventing vma merge in subsequent 12521da177e4SLinus Torvalds * mprotect. 12531da177e4SLinus Torvalds */ 12541da177e4SLinus Torvalds struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma) 12551da177e4SLinus Torvalds { 1256d0e9fe17SLinus Torvalds struct anon_vma *anon_vma; 12571da177e4SLinus Torvalds struct vm_area_struct *near; 12581da177e4SLinus Torvalds 12591da177e4SLinus Torvalds near = vma->vm_next; 12601da177e4SLinus Torvalds if (!near) 12611da177e4SLinus Torvalds goto try_prev; 12621da177e4SLinus Torvalds 1263d0e9fe17SLinus Torvalds anon_vma = reusable_anon_vma(near, vma, near); 1264d0e9fe17SLinus Torvalds if (anon_vma) 1265d0e9fe17SLinus Torvalds return anon_vma; 12661da177e4SLinus Torvalds try_prev: 12679be34c9dSLinus Torvalds near = vma->vm_prev; 12681da177e4SLinus Torvalds if (!near) 12691da177e4SLinus Torvalds goto none; 12701da177e4SLinus Torvalds 1271d0e9fe17SLinus Torvalds anon_vma = reusable_anon_vma(near, near, vma); 1272d0e9fe17SLinus Torvalds if (anon_vma) 1273d0e9fe17SLinus Torvalds return anon_vma; 12741da177e4SLinus Torvalds none: 12751da177e4SLinus Torvalds /* 12761da177e4SLinus Torvalds * There's no absolute need to look only at touching neighbours: 12771da177e4SLinus Torvalds * we could search further afield for "compatible" anon_vmas. 12781da177e4SLinus Torvalds * But it would probably just be a waste of time searching, 12791da177e4SLinus Torvalds * or lead to too many vmas hanging off the same anon_vma. 12801da177e4SLinus Torvalds * We're trying to allow mprotect remerging later on, 12811da177e4SLinus Torvalds * not trying to minimize memory used for anon_vmas. 12821da177e4SLinus Torvalds */ 12831da177e4SLinus Torvalds return NULL; 12841da177e4SLinus Torvalds } 12851da177e4SLinus Torvalds 12861da177e4SLinus Torvalds /* 128740401530SAl Viro * If a hint addr is less than mmap_min_addr change hint to be as 128840401530SAl Viro * low as possible but still greater than mmap_min_addr 128940401530SAl Viro */ 129040401530SAl Viro static inline unsigned long round_hint_to_min(unsigned long hint) 129140401530SAl Viro { 129240401530SAl Viro hint &= PAGE_MASK; 129340401530SAl Viro if (((void *)hint != NULL) && 129440401530SAl Viro (hint < mmap_min_addr)) 129540401530SAl Viro return PAGE_ALIGN(mmap_min_addr); 129640401530SAl Viro return hint; 129740401530SAl Viro } 129840401530SAl Viro 1299363ee17fSDavidlohr Bueso static inline int mlock_future_check(struct mm_struct *mm, 1300363ee17fSDavidlohr Bueso unsigned long flags, 1301363ee17fSDavidlohr Bueso unsigned long len) 1302363ee17fSDavidlohr Bueso { 1303363ee17fSDavidlohr Bueso unsigned long locked, lock_limit; 1304363ee17fSDavidlohr Bueso 1305363ee17fSDavidlohr Bueso /* mlock MCL_FUTURE? */ 1306363ee17fSDavidlohr Bueso if (flags & VM_LOCKED) { 1307363ee17fSDavidlohr Bueso locked = len >> PAGE_SHIFT; 1308363ee17fSDavidlohr Bueso locked += mm->locked_vm; 1309363ee17fSDavidlohr Bueso lock_limit = rlimit(RLIMIT_MEMLOCK); 1310363ee17fSDavidlohr Bueso lock_limit >>= PAGE_SHIFT; 1311363ee17fSDavidlohr Bueso if (locked > lock_limit && !capable(CAP_IPC_LOCK)) 1312363ee17fSDavidlohr Bueso return -EAGAIN; 1313363ee17fSDavidlohr Bueso } 1314363ee17fSDavidlohr Bueso return 0; 1315363ee17fSDavidlohr Bueso } 1316363ee17fSDavidlohr Bueso 131740401530SAl Viro /* 131827f5de79SJianjun Kong * The caller must hold down_write(¤t->mm->mmap_sem). 13191da177e4SLinus Torvalds */ 13201fcfd8dbSOleg Nesterov unsigned long do_mmap(struct file *file, unsigned long addr, 13211da177e4SLinus Torvalds unsigned long len, unsigned long prot, 13221fcfd8dbSOleg Nesterov unsigned long flags, vm_flags_t vm_flags, 1323897ab3e0SMike Rapoport unsigned long pgoff, unsigned long *populate, 1324897ab3e0SMike Rapoport struct list_head *uf) 13251da177e4SLinus Torvalds { 13261da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 132762b5f7d0SDave Hansen int pkey = 0; 13281da177e4SLinus Torvalds 132941badc15SMichel Lespinasse *populate = 0; 1330bebeb3d6SMichel Lespinasse 1331e37609bbSPiotr Kwapulinski if (!len) 1332e37609bbSPiotr Kwapulinski return -EINVAL; 1333e37609bbSPiotr Kwapulinski 13341da177e4SLinus Torvalds /* 13351da177e4SLinus Torvalds * Does the application expect PROT_READ to imply PROT_EXEC? 13361da177e4SLinus Torvalds * 13371da177e4SLinus Torvalds * (the exception is when the underlying filesystem is noexec 13381da177e4SLinus Torvalds * mounted, in which case we dont add PROT_EXEC.) 13391da177e4SLinus Torvalds */ 13401da177e4SLinus Torvalds if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC)) 134190f8572bSEric W. Biederman if (!(file && path_noexec(&file->f_path))) 13421da177e4SLinus Torvalds prot |= PROT_EXEC; 13431da177e4SLinus Torvalds 13447cd94146SEric Paris if (!(flags & MAP_FIXED)) 13457cd94146SEric Paris addr = round_hint_to_min(addr); 13467cd94146SEric Paris 13471da177e4SLinus Torvalds /* Careful about overflows.. */ 13481da177e4SLinus Torvalds len = PAGE_ALIGN(len); 13499206de95SAl Viro if (!len) 13501da177e4SLinus Torvalds return -ENOMEM; 13511da177e4SLinus Torvalds 13521da177e4SLinus Torvalds /* offset overflow? */ 13531da177e4SLinus Torvalds if ((pgoff + (len >> PAGE_SHIFT)) < pgoff) 13541da177e4SLinus Torvalds return -EOVERFLOW; 13551da177e4SLinus Torvalds 13561da177e4SLinus Torvalds /* Too many mappings? */ 13571da177e4SLinus Torvalds if (mm->map_count > sysctl_max_map_count) 13581da177e4SLinus Torvalds return -ENOMEM; 13591da177e4SLinus Torvalds 13601da177e4SLinus Torvalds /* Obtain the address to map to. we verify (or select) it and ensure 13611da177e4SLinus Torvalds * that it represents a valid section of the address space. 13621da177e4SLinus Torvalds */ 13631da177e4SLinus Torvalds addr = get_unmapped_area(file, addr, len, pgoff, flags); 1364de1741a1SAlexander Kuleshov if (offset_in_page(addr)) 13651da177e4SLinus Torvalds return addr; 13661da177e4SLinus Torvalds 136762b5f7d0SDave Hansen if (prot == PROT_EXEC) { 136862b5f7d0SDave Hansen pkey = execute_only_pkey(mm); 136962b5f7d0SDave Hansen if (pkey < 0) 137062b5f7d0SDave Hansen pkey = 0; 137162b5f7d0SDave Hansen } 137262b5f7d0SDave Hansen 13731da177e4SLinus Torvalds /* Do simple checking here so the lower-level routines won't have 13741da177e4SLinus Torvalds * to. we assume access permissions have been handled by the open 13751da177e4SLinus Torvalds * of the memory object, so we don't do any here. 13761da177e4SLinus Torvalds */ 137762b5f7d0SDave Hansen vm_flags |= calc_vm_prot_bits(prot, pkey) | calc_vm_flag_bits(flags) | 13781da177e4SLinus Torvalds mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC; 13791da177e4SLinus Torvalds 1380cdf7b341SHuang Shijie if (flags & MAP_LOCKED) 13811da177e4SLinus Torvalds if (!can_do_mlock()) 13821da177e4SLinus Torvalds return -EPERM; 1383ba470de4SRik van Riel 1384363ee17fSDavidlohr Bueso if (mlock_future_check(mm, vm_flags, len)) 13851da177e4SLinus Torvalds return -EAGAIN; 13861da177e4SLinus Torvalds 13871da177e4SLinus Torvalds if (file) { 1388077bf22bSOleg Nesterov struct inode *inode = file_inode(file); 1389077bf22bSOleg Nesterov 13901da177e4SLinus Torvalds switch (flags & MAP_TYPE) { 13911da177e4SLinus Torvalds case MAP_SHARED: 13921da177e4SLinus Torvalds if ((prot&PROT_WRITE) && !(file->f_mode&FMODE_WRITE)) 13931da177e4SLinus Torvalds return -EACCES; 13941da177e4SLinus Torvalds 13951da177e4SLinus Torvalds /* 13961da177e4SLinus Torvalds * Make sure we don't allow writing to an append-only 13971da177e4SLinus Torvalds * file.. 13981da177e4SLinus Torvalds */ 13991da177e4SLinus Torvalds if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE)) 14001da177e4SLinus Torvalds return -EACCES; 14011da177e4SLinus Torvalds 14021da177e4SLinus Torvalds /* 14031da177e4SLinus Torvalds * Make sure there are no mandatory locks on the file. 14041da177e4SLinus Torvalds */ 1405d7a06983SJeff Layton if (locks_verify_locked(file)) 14061da177e4SLinus Torvalds return -EAGAIN; 14071da177e4SLinus Torvalds 14081da177e4SLinus Torvalds vm_flags |= VM_SHARED | VM_MAYSHARE; 14091da177e4SLinus Torvalds if (!(file->f_mode & FMODE_WRITE)) 14101da177e4SLinus Torvalds vm_flags &= ~(VM_MAYWRITE | VM_SHARED); 14111da177e4SLinus Torvalds 14121da177e4SLinus Torvalds /* fall through */ 14131da177e4SLinus Torvalds case MAP_PRIVATE: 14141da177e4SLinus Torvalds if (!(file->f_mode & FMODE_READ)) 14151da177e4SLinus Torvalds return -EACCES; 141690f8572bSEric W. Biederman if (path_noexec(&file->f_path)) { 141780c5606cSLinus Torvalds if (vm_flags & VM_EXEC) 141880c5606cSLinus Torvalds return -EPERM; 141980c5606cSLinus Torvalds vm_flags &= ~VM_MAYEXEC; 142080c5606cSLinus Torvalds } 142180c5606cSLinus Torvalds 142272c2d531SAl Viro if (!file->f_op->mmap) 142380c5606cSLinus Torvalds return -ENODEV; 1424b2c56e4fSOleg Nesterov if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP)) 1425b2c56e4fSOleg Nesterov return -EINVAL; 14261da177e4SLinus Torvalds break; 14271da177e4SLinus Torvalds 14281da177e4SLinus Torvalds default: 14291da177e4SLinus Torvalds return -EINVAL; 14301da177e4SLinus Torvalds } 14311da177e4SLinus Torvalds } else { 14321da177e4SLinus Torvalds switch (flags & MAP_TYPE) { 14331da177e4SLinus Torvalds case MAP_SHARED: 1434b2c56e4fSOleg Nesterov if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP)) 1435b2c56e4fSOleg Nesterov return -EINVAL; 1436ce363942STejun Heo /* 1437ce363942STejun Heo * Ignore pgoff. 1438ce363942STejun Heo */ 1439ce363942STejun Heo pgoff = 0; 14401da177e4SLinus Torvalds vm_flags |= VM_SHARED | VM_MAYSHARE; 14411da177e4SLinus Torvalds break; 14421da177e4SLinus Torvalds case MAP_PRIVATE: 14431da177e4SLinus Torvalds /* 14441da177e4SLinus Torvalds * Set pgoff according to addr for anon_vma. 14451da177e4SLinus Torvalds */ 14461da177e4SLinus Torvalds pgoff = addr >> PAGE_SHIFT; 14471da177e4SLinus Torvalds break; 14481da177e4SLinus Torvalds default: 14491da177e4SLinus Torvalds return -EINVAL; 14501da177e4SLinus Torvalds } 14511da177e4SLinus Torvalds } 14521da177e4SLinus Torvalds 1453c22c0d63SMichel Lespinasse /* 1454c22c0d63SMichel Lespinasse * Set 'VM_NORESERVE' if we should not account for the 1455c22c0d63SMichel Lespinasse * memory use of this mapping. 1456c22c0d63SMichel Lespinasse */ 1457c22c0d63SMichel Lespinasse if (flags & MAP_NORESERVE) { 1458c22c0d63SMichel Lespinasse /* We honor MAP_NORESERVE if allowed to overcommit */ 1459c22c0d63SMichel Lespinasse if (sysctl_overcommit_memory != OVERCOMMIT_NEVER) 1460c22c0d63SMichel Lespinasse vm_flags |= VM_NORESERVE; 1461c22c0d63SMichel Lespinasse 1462c22c0d63SMichel Lespinasse /* hugetlb applies strict overcommit unless MAP_NORESERVE */ 1463c22c0d63SMichel Lespinasse if (file && is_file_hugepages(file)) 1464c22c0d63SMichel Lespinasse vm_flags |= VM_NORESERVE; 1465c22c0d63SMichel Lespinasse } 1466c22c0d63SMichel Lespinasse 1467897ab3e0SMike Rapoport addr = mmap_region(file, addr, len, vm_flags, pgoff, uf); 146809a9f1d2SMichel Lespinasse if (!IS_ERR_VALUE(addr) && 146909a9f1d2SMichel Lespinasse ((vm_flags & VM_LOCKED) || 147009a9f1d2SMichel Lespinasse (flags & (MAP_POPULATE | MAP_NONBLOCK)) == MAP_POPULATE)) 147141badc15SMichel Lespinasse *populate = len; 1472bebeb3d6SMichel Lespinasse return addr; 14730165ab44SMiklos Szeredi } 14746be5ceb0SLinus Torvalds 147566f0dc48SHugh Dickins SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len, 147666f0dc48SHugh Dickins unsigned long, prot, unsigned long, flags, 147766f0dc48SHugh Dickins unsigned long, fd, unsigned long, pgoff) 147866f0dc48SHugh Dickins { 147966f0dc48SHugh Dickins struct file *file = NULL; 14801e3ee14bSChen Gang unsigned long retval; 148166f0dc48SHugh Dickins 148266f0dc48SHugh Dickins if (!(flags & MAP_ANONYMOUS)) { 1483120a795dSAl Viro audit_mmap_fd(fd, flags); 148466f0dc48SHugh Dickins file = fget(fd); 148566f0dc48SHugh Dickins if (!file) 14861e3ee14bSChen Gang return -EBADF; 1487af73e4d9SNaoya Horiguchi if (is_file_hugepages(file)) 1488af73e4d9SNaoya Horiguchi len = ALIGN(len, huge_page_size(hstate_file(file))); 1489493af578SJörn Engel retval = -EINVAL; 1490493af578SJörn Engel if (unlikely(flags & MAP_HUGETLB && !is_file_hugepages(file))) 1491493af578SJörn Engel goto out_fput; 149266f0dc48SHugh Dickins } else if (flags & MAP_HUGETLB) { 149366f0dc48SHugh Dickins struct user_struct *user = NULL; 1494c103a4dcSAndrew Morton struct hstate *hs; 1495af73e4d9SNaoya Horiguchi 149620ac2893SAnshuman Khandual hs = hstate_sizelog((flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK); 1497091d0d55SLi Zefan if (!hs) 1498091d0d55SLi Zefan return -EINVAL; 1499091d0d55SLi Zefan 1500091d0d55SLi Zefan len = ALIGN(len, huge_page_size(hs)); 150166f0dc48SHugh Dickins /* 150266f0dc48SHugh Dickins * VM_NORESERVE is used because the reservations will be 150366f0dc48SHugh Dickins * taken when vm_ops->mmap() is called 150466f0dc48SHugh Dickins * A dummy user value is used because we are not locking 150566f0dc48SHugh Dickins * memory so no accounting is necessary 150666f0dc48SHugh Dickins */ 1507af73e4d9SNaoya Horiguchi file = hugetlb_file_setup(HUGETLB_ANON_FILE, len, 150842d7395fSAndi Kleen VM_NORESERVE, 150942d7395fSAndi Kleen &user, HUGETLB_ANONHUGE_INODE, 151042d7395fSAndi Kleen (flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK); 151166f0dc48SHugh Dickins if (IS_ERR(file)) 151266f0dc48SHugh Dickins return PTR_ERR(file); 151366f0dc48SHugh Dickins } 151466f0dc48SHugh Dickins 151566f0dc48SHugh Dickins flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE); 151666f0dc48SHugh Dickins 15179fbeb5abSMichal Hocko retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff); 1518493af578SJörn Engel out_fput: 151966f0dc48SHugh Dickins if (file) 152066f0dc48SHugh Dickins fput(file); 152166f0dc48SHugh Dickins return retval; 152266f0dc48SHugh Dickins } 152366f0dc48SHugh Dickins 1524a4679373SChristoph Hellwig #ifdef __ARCH_WANT_SYS_OLD_MMAP 1525a4679373SChristoph Hellwig struct mmap_arg_struct { 1526a4679373SChristoph Hellwig unsigned long addr; 1527a4679373SChristoph Hellwig unsigned long len; 1528a4679373SChristoph Hellwig unsigned long prot; 1529a4679373SChristoph Hellwig unsigned long flags; 1530a4679373SChristoph Hellwig unsigned long fd; 1531a4679373SChristoph Hellwig unsigned long offset; 1532a4679373SChristoph Hellwig }; 1533a4679373SChristoph Hellwig 1534a4679373SChristoph Hellwig SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg) 1535a4679373SChristoph Hellwig { 1536a4679373SChristoph Hellwig struct mmap_arg_struct a; 1537a4679373SChristoph Hellwig 1538a4679373SChristoph Hellwig if (copy_from_user(&a, arg, sizeof(a))) 1539a4679373SChristoph Hellwig return -EFAULT; 1540de1741a1SAlexander Kuleshov if (offset_in_page(a.offset)) 1541a4679373SChristoph Hellwig return -EINVAL; 1542a4679373SChristoph Hellwig 1543a4679373SChristoph Hellwig return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd, 1544a4679373SChristoph Hellwig a.offset >> PAGE_SHIFT); 1545a4679373SChristoph Hellwig } 1546a4679373SChristoph Hellwig #endif /* __ARCH_WANT_SYS_OLD_MMAP */ 1547a4679373SChristoph Hellwig 15484e950f6fSAlexey Dobriyan /* 15494e950f6fSAlexey Dobriyan * Some shared mappigns will want the pages marked read-only 15504e950f6fSAlexey Dobriyan * to track write events. If so, we'll downgrade vm_page_prot 15514e950f6fSAlexey Dobriyan * to the private version (using protection_map[] without the 15524e950f6fSAlexey Dobriyan * VM_SHARED bit). 15534e950f6fSAlexey Dobriyan */ 15546d2329f8SAndrea Arcangeli int vma_wants_writenotify(struct vm_area_struct *vma, pgprot_t vm_page_prot) 15554e950f6fSAlexey Dobriyan { 1556ca16d140SKOSAKI Motohiro vm_flags_t vm_flags = vma->vm_flags; 15578a04446aSKirill A. Shutemov const struct vm_operations_struct *vm_ops = vma->vm_ops; 15584e950f6fSAlexey Dobriyan 15594e950f6fSAlexey Dobriyan /* If it was private or non-writable, the write bit is already clear */ 15604e950f6fSAlexey Dobriyan if ((vm_flags & (VM_WRITE|VM_SHARED)) != ((VM_WRITE|VM_SHARED))) 15614e950f6fSAlexey Dobriyan return 0; 15624e950f6fSAlexey Dobriyan 15634e950f6fSAlexey Dobriyan /* The backer wishes to know when pages are first written to? */ 15648a04446aSKirill A. Shutemov if (vm_ops && (vm_ops->page_mkwrite || vm_ops->pfn_mkwrite)) 15654e950f6fSAlexey Dobriyan return 1; 15664e950f6fSAlexey Dobriyan 156764e45507SPeter Feiner /* The open routine did something to the protections that pgprot_modify 156864e45507SPeter Feiner * won't preserve? */ 15696d2329f8SAndrea Arcangeli if (pgprot_val(vm_page_prot) != 15706d2329f8SAndrea Arcangeli pgprot_val(vm_pgprot_modify(vm_page_prot, vm_flags))) 15714e950f6fSAlexey Dobriyan return 0; 15724e950f6fSAlexey Dobriyan 157364e45507SPeter Feiner /* Do we need to track softdirty? */ 157464e45507SPeter Feiner if (IS_ENABLED(CONFIG_MEM_SOFT_DIRTY) && !(vm_flags & VM_SOFTDIRTY)) 157564e45507SPeter Feiner return 1; 157664e45507SPeter Feiner 15774e950f6fSAlexey Dobriyan /* Specialty mapping? */ 15784b6e1e37SKonstantin Khlebnikov if (vm_flags & VM_PFNMAP) 15794e950f6fSAlexey Dobriyan return 0; 15804e950f6fSAlexey Dobriyan 15814e950f6fSAlexey Dobriyan /* Can the mapping track the dirty pages? */ 15824e950f6fSAlexey Dobriyan return vma->vm_file && vma->vm_file->f_mapping && 15834e950f6fSAlexey Dobriyan mapping_cap_account_dirty(vma->vm_file->f_mapping); 15844e950f6fSAlexey Dobriyan } 15854e950f6fSAlexey Dobriyan 1586fc8744adSLinus Torvalds /* 1587fc8744adSLinus Torvalds * We account for memory if it's a private writeable mapping, 15885a6fe125SMel Gorman * not hugepages and VM_NORESERVE wasn't set. 1589fc8744adSLinus Torvalds */ 1590ca16d140SKOSAKI Motohiro static inline int accountable_mapping(struct file *file, vm_flags_t vm_flags) 1591fc8744adSLinus Torvalds { 15925a6fe125SMel Gorman /* 15935a6fe125SMel Gorman * hugetlb has its own accounting separate from the core VM 15945a6fe125SMel Gorman * VM_HUGETLB may not be set yet so we cannot check for that flag. 15955a6fe125SMel Gorman */ 15965a6fe125SMel Gorman if (file && is_file_hugepages(file)) 15975a6fe125SMel Gorman return 0; 15985a6fe125SMel Gorman 1599fc8744adSLinus Torvalds return (vm_flags & (VM_NORESERVE | VM_SHARED | VM_WRITE)) == VM_WRITE; 1600fc8744adSLinus Torvalds } 1601fc8744adSLinus Torvalds 16020165ab44SMiklos Szeredi unsigned long mmap_region(struct file *file, unsigned long addr, 1603897ab3e0SMike Rapoport unsigned long len, vm_flags_t vm_flags, unsigned long pgoff, 1604897ab3e0SMike Rapoport struct list_head *uf) 16050165ab44SMiklos Szeredi { 16060165ab44SMiklos Szeredi struct mm_struct *mm = current->mm; 16070165ab44SMiklos Szeredi struct vm_area_struct *vma, *prev; 16080165ab44SMiklos Szeredi int error; 16090165ab44SMiklos Szeredi struct rb_node **rb_link, *rb_parent; 16100165ab44SMiklos Szeredi unsigned long charged = 0; 16110165ab44SMiklos Szeredi 1612e8420a8eSCyril Hrubis /* Check against address space limit. */ 161384638335SKonstantin Khlebnikov if (!may_expand_vm(mm, vm_flags, len >> PAGE_SHIFT)) { 1614e8420a8eSCyril Hrubis unsigned long nr_pages; 1615e8420a8eSCyril Hrubis 1616e8420a8eSCyril Hrubis /* 1617e8420a8eSCyril Hrubis * MAP_FIXED may remove pages of mappings that intersects with 1618e8420a8eSCyril Hrubis * requested mapping. Account for the pages it would unmap. 1619e8420a8eSCyril Hrubis */ 1620e8420a8eSCyril Hrubis nr_pages = count_vma_pages_range(mm, addr, addr + len); 1621e8420a8eSCyril Hrubis 162284638335SKonstantin Khlebnikov if (!may_expand_vm(mm, vm_flags, 162384638335SKonstantin Khlebnikov (len >> PAGE_SHIFT) - nr_pages)) 1624e8420a8eSCyril Hrubis return -ENOMEM; 1625e8420a8eSCyril Hrubis } 1626e8420a8eSCyril Hrubis 16271da177e4SLinus Torvalds /* Clear old maps */ 16289fcd1457SRasmus Villemoes while (find_vma_links(mm, addr, addr + len, &prev, &rb_link, 16299fcd1457SRasmus Villemoes &rb_parent)) { 1630897ab3e0SMike Rapoport if (do_munmap(mm, addr, len, uf)) 16311da177e4SLinus Torvalds return -ENOMEM; 16321da177e4SLinus Torvalds } 16331da177e4SLinus Torvalds 1634fc8744adSLinus Torvalds /* 16351da177e4SLinus Torvalds * Private writable mapping: check memory availability 16361da177e4SLinus Torvalds */ 16375a6fe125SMel Gorman if (accountable_mapping(file, vm_flags)) { 16381da177e4SLinus Torvalds charged = len >> PAGE_SHIFT; 1639191c5424SAl Viro if (security_vm_enough_memory_mm(mm, charged)) 16401da177e4SLinus Torvalds return -ENOMEM; 16411da177e4SLinus Torvalds vm_flags |= VM_ACCOUNT; 16421da177e4SLinus Torvalds } 16431da177e4SLinus Torvalds 16441da177e4SLinus Torvalds /* 1645de33c8dbSLinus Torvalds * Can we just expand an old mapping? 16461da177e4SLinus Torvalds */ 164719a809afSAndrea Arcangeli vma = vma_merge(mm, prev, addr, addr + len, vm_flags, 164819a809afSAndrea Arcangeli NULL, file, pgoff, NULL, NULL_VM_UFFD_CTX); 1649ba470de4SRik van Riel if (vma) 16501da177e4SLinus Torvalds goto out; 16511da177e4SLinus Torvalds 16521da177e4SLinus Torvalds /* 16531da177e4SLinus Torvalds * Determine the object being mapped and call the appropriate 16541da177e4SLinus Torvalds * specific mapper. the address has already been validated, but 16551da177e4SLinus Torvalds * not unmapped, but the maps are removed from the list. 16561da177e4SLinus Torvalds */ 1657c5e3b83eSPekka Enberg vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL); 16581da177e4SLinus Torvalds if (!vma) { 16591da177e4SLinus Torvalds error = -ENOMEM; 16601da177e4SLinus Torvalds goto unacct_error; 16611da177e4SLinus Torvalds } 16621da177e4SLinus Torvalds 16631da177e4SLinus Torvalds vma->vm_mm = mm; 16641da177e4SLinus Torvalds vma->vm_start = addr; 16651da177e4SLinus Torvalds vma->vm_end = addr + len; 16661da177e4SLinus Torvalds vma->vm_flags = vm_flags; 16673ed75eb8SColy Li vma->vm_page_prot = vm_get_page_prot(vm_flags); 16681da177e4SLinus Torvalds vma->vm_pgoff = pgoff; 16695beb4930SRik van Riel INIT_LIST_HEAD(&vma->anon_vma_chain); 16701da177e4SLinus Torvalds 16711da177e4SLinus Torvalds if (file) { 16721da177e4SLinus Torvalds if (vm_flags & VM_DENYWRITE) { 16731da177e4SLinus Torvalds error = deny_write_access(file); 16741da177e4SLinus Torvalds if (error) 16751da177e4SLinus Torvalds goto free_vma; 16761da177e4SLinus Torvalds } 16774bb5f5d9SDavid Herrmann if (vm_flags & VM_SHARED) { 16784bb5f5d9SDavid Herrmann error = mapping_map_writable(file->f_mapping); 16794bb5f5d9SDavid Herrmann if (error) 16804bb5f5d9SDavid Herrmann goto allow_write_and_free_vma; 16814bb5f5d9SDavid Herrmann } 16824bb5f5d9SDavid Herrmann 16834bb5f5d9SDavid Herrmann /* ->mmap() can change vma->vm_file, but must guarantee that 16844bb5f5d9SDavid Herrmann * vma_link() below can deny write-access if VM_DENYWRITE is set 16854bb5f5d9SDavid Herrmann * and map writably if VM_SHARED is set. This usually means the 16864bb5f5d9SDavid Herrmann * new file must not have been exposed to user-space, yet. 16874bb5f5d9SDavid Herrmann */ 1688cb0942b8SAl Viro vma->vm_file = get_file(file); 1689f74ac015SMiklos Szeredi error = call_mmap(file, vma); 16901da177e4SLinus Torvalds if (error) 16911da177e4SLinus Torvalds goto unmap_and_free_vma; 16921da177e4SLinus Torvalds 16931da177e4SLinus Torvalds /* Can addr have changed?? 16941da177e4SLinus Torvalds * 16951da177e4SLinus Torvalds * Answer: Yes, several device drivers can do it in their 16961da177e4SLinus Torvalds * f_op->mmap method. -DaveM 16972897b4d2SJoonsoo Kim * Bug: If addr is changed, prev, rb_link, rb_parent should 16982897b4d2SJoonsoo Kim * be updated for vma_link() 16991da177e4SLinus Torvalds */ 17002897b4d2SJoonsoo Kim WARN_ON_ONCE(addr != vma->vm_start); 17012897b4d2SJoonsoo Kim 17021da177e4SLinus Torvalds addr = vma->vm_start; 17031da177e4SLinus Torvalds vm_flags = vma->vm_flags; 1704f8dbf0a7SHuang Shijie } else if (vm_flags & VM_SHARED) { 1705f8dbf0a7SHuang Shijie error = shmem_zero_setup(vma); 1706f8dbf0a7SHuang Shijie if (error) 1707f8dbf0a7SHuang Shijie goto free_vma; 1708f8dbf0a7SHuang Shijie } 17091da177e4SLinus Torvalds 17104d3d5b41SOleg Nesterov vma_link(mm, vma, prev, rb_link, rb_parent); 17114d3d5b41SOleg Nesterov /* Once vma denies write, undo our temporary denial count */ 17124bb5f5d9SDavid Herrmann if (file) { 17134bb5f5d9SDavid Herrmann if (vm_flags & VM_SHARED) 17144bb5f5d9SDavid Herrmann mapping_unmap_writable(file->f_mapping); 1715e8686772SOleg Nesterov if (vm_flags & VM_DENYWRITE) 1716e8686772SOleg Nesterov allow_write_access(file); 17174bb5f5d9SDavid Herrmann } 1718e8686772SOleg Nesterov file = vma->vm_file; 17191da177e4SLinus Torvalds out: 1720cdd6c482SIngo Molnar perf_event_mmap(vma); 17210a4a9391SPeter Zijlstra 172284638335SKonstantin Khlebnikov vm_stat_account(mm, vm_flags, len >> PAGE_SHIFT); 17231da177e4SLinus Torvalds if (vm_flags & VM_LOCKED) { 1724bebeb3d6SMichel Lespinasse if (!((vm_flags & VM_SPECIAL) || is_vm_hugetlb_page(vma) || 1725bebeb3d6SMichel Lespinasse vma == get_gate_vma(current->mm))) 172606f9d8c2SKOSAKI Motohiro mm->locked_vm += (len >> PAGE_SHIFT); 1727bebeb3d6SMichel Lespinasse else 1728de60f5f1SEric B Munson vma->vm_flags &= VM_LOCKED_CLEAR_MASK; 1729bebeb3d6SMichel Lespinasse } 17302b144498SSrikar Dronamraju 1731c7a3a88cSOleg Nesterov if (file) 1732c7a3a88cSOleg Nesterov uprobe_mmap(vma); 17332b144498SSrikar Dronamraju 1734d9104d1cSCyrill Gorcunov /* 1735d9104d1cSCyrill Gorcunov * New (or expanded) vma always get soft dirty status. 1736d9104d1cSCyrill Gorcunov * Otherwise user-space soft-dirty page tracker won't 1737d9104d1cSCyrill Gorcunov * be able to distinguish situation when vma area unmapped, 1738d9104d1cSCyrill Gorcunov * then new mapped in-place (which must be aimed as 1739d9104d1cSCyrill Gorcunov * a completely new data area). 1740d9104d1cSCyrill Gorcunov */ 1741d9104d1cSCyrill Gorcunov vma->vm_flags |= VM_SOFTDIRTY; 1742d9104d1cSCyrill Gorcunov 174364e45507SPeter Feiner vma_set_page_prot(vma); 174464e45507SPeter Feiner 17451da177e4SLinus Torvalds return addr; 17461da177e4SLinus Torvalds 17471da177e4SLinus Torvalds unmap_and_free_vma: 17481da177e4SLinus Torvalds vma->vm_file = NULL; 17491da177e4SLinus Torvalds fput(file); 17501da177e4SLinus Torvalds 17511da177e4SLinus Torvalds /* Undo any partial mapping done by a device driver. */ 1752e0da382cSHugh Dickins unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end); 1753e0da382cSHugh Dickins charged = 0; 17544bb5f5d9SDavid Herrmann if (vm_flags & VM_SHARED) 17554bb5f5d9SDavid Herrmann mapping_unmap_writable(file->f_mapping); 17564bb5f5d9SDavid Herrmann allow_write_and_free_vma: 17574bb5f5d9SDavid Herrmann if (vm_flags & VM_DENYWRITE) 17584bb5f5d9SDavid Herrmann allow_write_access(file); 17591da177e4SLinus Torvalds free_vma: 17601da177e4SLinus Torvalds kmem_cache_free(vm_area_cachep, vma); 17611da177e4SLinus Torvalds unacct_error: 17621da177e4SLinus Torvalds if (charged) 17631da177e4SLinus Torvalds vm_unacct_memory(charged); 17641da177e4SLinus Torvalds return error; 17651da177e4SLinus Torvalds } 17661da177e4SLinus Torvalds 1767db4fbfb9SMichel Lespinasse unsigned long unmapped_area(struct vm_unmapped_area_info *info) 1768db4fbfb9SMichel Lespinasse { 1769db4fbfb9SMichel Lespinasse /* 1770db4fbfb9SMichel Lespinasse * We implement the search by looking for an rbtree node that 1771db4fbfb9SMichel Lespinasse * immediately follows a suitable gap. That is, 1772db4fbfb9SMichel Lespinasse * - gap_start = vma->vm_prev->vm_end <= info->high_limit - length; 1773db4fbfb9SMichel Lespinasse * - gap_end = vma->vm_start >= info->low_limit + length; 1774db4fbfb9SMichel Lespinasse * - gap_end - gap_start >= length 1775db4fbfb9SMichel Lespinasse */ 1776db4fbfb9SMichel Lespinasse 1777db4fbfb9SMichel Lespinasse struct mm_struct *mm = current->mm; 1778db4fbfb9SMichel Lespinasse struct vm_area_struct *vma; 1779db4fbfb9SMichel Lespinasse unsigned long length, low_limit, high_limit, gap_start, gap_end; 1780db4fbfb9SMichel Lespinasse 1781db4fbfb9SMichel Lespinasse /* Adjust search length to account for worst case alignment overhead */ 1782db4fbfb9SMichel Lespinasse length = info->length + info->align_mask; 1783db4fbfb9SMichel Lespinasse if (length < info->length) 1784db4fbfb9SMichel Lespinasse return -ENOMEM; 1785db4fbfb9SMichel Lespinasse 1786db4fbfb9SMichel Lespinasse /* Adjust search limits by the desired length */ 1787db4fbfb9SMichel Lespinasse if (info->high_limit < length) 1788db4fbfb9SMichel Lespinasse return -ENOMEM; 1789db4fbfb9SMichel Lespinasse high_limit = info->high_limit - length; 1790db4fbfb9SMichel Lespinasse 1791db4fbfb9SMichel Lespinasse if (info->low_limit > high_limit) 1792db4fbfb9SMichel Lespinasse return -ENOMEM; 1793db4fbfb9SMichel Lespinasse low_limit = info->low_limit + length; 1794db4fbfb9SMichel Lespinasse 1795db4fbfb9SMichel Lespinasse /* Check if rbtree root looks promising */ 1796db4fbfb9SMichel Lespinasse if (RB_EMPTY_ROOT(&mm->mm_rb)) 1797db4fbfb9SMichel Lespinasse goto check_highest; 1798db4fbfb9SMichel Lespinasse vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb); 1799db4fbfb9SMichel Lespinasse if (vma->rb_subtree_gap < length) 1800db4fbfb9SMichel Lespinasse goto check_highest; 1801db4fbfb9SMichel Lespinasse 1802db4fbfb9SMichel Lespinasse while (true) { 1803db4fbfb9SMichel Lespinasse /* Visit left subtree if it looks promising */ 18041be7107fSHugh Dickins gap_end = vm_start_gap(vma); 1805db4fbfb9SMichel Lespinasse if (gap_end >= low_limit && vma->vm_rb.rb_left) { 1806db4fbfb9SMichel Lespinasse struct vm_area_struct *left = 1807db4fbfb9SMichel Lespinasse rb_entry(vma->vm_rb.rb_left, 1808db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1809db4fbfb9SMichel Lespinasse if (left->rb_subtree_gap >= length) { 1810db4fbfb9SMichel Lespinasse vma = left; 1811db4fbfb9SMichel Lespinasse continue; 1812db4fbfb9SMichel Lespinasse } 1813db4fbfb9SMichel Lespinasse } 1814db4fbfb9SMichel Lespinasse 18151be7107fSHugh Dickins gap_start = vma->vm_prev ? vm_end_gap(vma->vm_prev) : 0; 1816db4fbfb9SMichel Lespinasse check_current: 1817db4fbfb9SMichel Lespinasse /* Check if current node has a suitable gap */ 1818db4fbfb9SMichel Lespinasse if (gap_start > high_limit) 1819db4fbfb9SMichel Lespinasse return -ENOMEM; 1820f4cb767dSHugh Dickins if (gap_end >= low_limit && 1821f4cb767dSHugh Dickins gap_end > gap_start && gap_end - gap_start >= length) 1822db4fbfb9SMichel Lespinasse goto found; 1823db4fbfb9SMichel Lespinasse 1824db4fbfb9SMichel Lespinasse /* Visit right subtree if it looks promising */ 1825db4fbfb9SMichel Lespinasse if (vma->vm_rb.rb_right) { 1826db4fbfb9SMichel Lespinasse struct vm_area_struct *right = 1827db4fbfb9SMichel Lespinasse rb_entry(vma->vm_rb.rb_right, 1828db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1829db4fbfb9SMichel Lespinasse if (right->rb_subtree_gap >= length) { 1830db4fbfb9SMichel Lespinasse vma = right; 1831db4fbfb9SMichel Lespinasse continue; 1832db4fbfb9SMichel Lespinasse } 1833db4fbfb9SMichel Lespinasse } 1834db4fbfb9SMichel Lespinasse 1835db4fbfb9SMichel Lespinasse /* Go back up the rbtree to find next candidate node */ 1836db4fbfb9SMichel Lespinasse while (true) { 1837db4fbfb9SMichel Lespinasse struct rb_node *prev = &vma->vm_rb; 1838db4fbfb9SMichel Lespinasse if (!rb_parent(prev)) 1839db4fbfb9SMichel Lespinasse goto check_highest; 1840db4fbfb9SMichel Lespinasse vma = rb_entry(rb_parent(prev), 1841db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1842db4fbfb9SMichel Lespinasse if (prev == vma->vm_rb.rb_left) { 18431be7107fSHugh Dickins gap_start = vm_end_gap(vma->vm_prev); 18441be7107fSHugh Dickins gap_end = vm_start_gap(vma); 1845db4fbfb9SMichel Lespinasse goto check_current; 1846db4fbfb9SMichel Lespinasse } 1847db4fbfb9SMichel Lespinasse } 1848db4fbfb9SMichel Lespinasse } 1849db4fbfb9SMichel Lespinasse 1850db4fbfb9SMichel Lespinasse check_highest: 1851db4fbfb9SMichel Lespinasse /* Check highest gap, which does not precede any rbtree node */ 1852db4fbfb9SMichel Lespinasse gap_start = mm->highest_vm_end; 1853db4fbfb9SMichel Lespinasse gap_end = ULONG_MAX; /* Only for VM_BUG_ON below */ 1854db4fbfb9SMichel Lespinasse if (gap_start > high_limit) 1855db4fbfb9SMichel Lespinasse return -ENOMEM; 1856db4fbfb9SMichel Lespinasse 1857db4fbfb9SMichel Lespinasse found: 1858db4fbfb9SMichel Lespinasse /* We found a suitable gap. Clip it with the original low_limit. */ 1859db4fbfb9SMichel Lespinasse if (gap_start < info->low_limit) 1860db4fbfb9SMichel Lespinasse gap_start = info->low_limit; 1861db4fbfb9SMichel Lespinasse 1862db4fbfb9SMichel Lespinasse /* Adjust gap address to the desired alignment */ 1863db4fbfb9SMichel Lespinasse gap_start += (info->align_offset - gap_start) & info->align_mask; 1864db4fbfb9SMichel Lespinasse 1865db4fbfb9SMichel Lespinasse VM_BUG_ON(gap_start + info->length > info->high_limit); 1866db4fbfb9SMichel Lespinasse VM_BUG_ON(gap_start + info->length > gap_end); 1867db4fbfb9SMichel Lespinasse return gap_start; 1868db4fbfb9SMichel Lespinasse } 1869db4fbfb9SMichel Lespinasse 1870db4fbfb9SMichel Lespinasse unsigned long unmapped_area_topdown(struct vm_unmapped_area_info *info) 1871db4fbfb9SMichel Lespinasse { 1872db4fbfb9SMichel Lespinasse struct mm_struct *mm = current->mm; 1873db4fbfb9SMichel Lespinasse struct vm_area_struct *vma; 1874db4fbfb9SMichel Lespinasse unsigned long length, low_limit, high_limit, gap_start, gap_end; 1875db4fbfb9SMichel Lespinasse 1876db4fbfb9SMichel Lespinasse /* Adjust search length to account for worst case alignment overhead */ 1877db4fbfb9SMichel Lespinasse length = info->length + info->align_mask; 1878db4fbfb9SMichel Lespinasse if (length < info->length) 1879db4fbfb9SMichel Lespinasse return -ENOMEM; 1880db4fbfb9SMichel Lespinasse 1881db4fbfb9SMichel Lespinasse /* 1882db4fbfb9SMichel Lespinasse * Adjust search limits by the desired length. 1883db4fbfb9SMichel Lespinasse * See implementation comment at top of unmapped_area(). 1884db4fbfb9SMichel Lespinasse */ 1885db4fbfb9SMichel Lespinasse gap_end = info->high_limit; 1886db4fbfb9SMichel Lespinasse if (gap_end < length) 1887db4fbfb9SMichel Lespinasse return -ENOMEM; 1888db4fbfb9SMichel Lespinasse high_limit = gap_end - length; 1889db4fbfb9SMichel Lespinasse 1890db4fbfb9SMichel Lespinasse if (info->low_limit > high_limit) 1891db4fbfb9SMichel Lespinasse return -ENOMEM; 1892db4fbfb9SMichel Lespinasse low_limit = info->low_limit + length; 1893db4fbfb9SMichel Lespinasse 1894db4fbfb9SMichel Lespinasse /* Check highest gap, which does not precede any rbtree node */ 1895db4fbfb9SMichel Lespinasse gap_start = mm->highest_vm_end; 1896db4fbfb9SMichel Lespinasse if (gap_start <= high_limit) 1897db4fbfb9SMichel Lespinasse goto found_highest; 1898db4fbfb9SMichel Lespinasse 1899db4fbfb9SMichel Lespinasse /* Check if rbtree root looks promising */ 1900db4fbfb9SMichel Lespinasse if (RB_EMPTY_ROOT(&mm->mm_rb)) 1901db4fbfb9SMichel Lespinasse return -ENOMEM; 1902db4fbfb9SMichel Lespinasse vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb); 1903db4fbfb9SMichel Lespinasse if (vma->rb_subtree_gap < length) 1904db4fbfb9SMichel Lespinasse return -ENOMEM; 1905db4fbfb9SMichel Lespinasse 1906db4fbfb9SMichel Lespinasse while (true) { 1907db4fbfb9SMichel Lespinasse /* Visit right subtree if it looks promising */ 19081be7107fSHugh Dickins gap_start = vma->vm_prev ? vm_end_gap(vma->vm_prev) : 0; 1909db4fbfb9SMichel Lespinasse if (gap_start <= high_limit && vma->vm_rb.rb_right) { 1910db4fbfb9SMichel Lespinasse struct vm_area_struct *right = 1911db4fbfb9SMichel Lespinasse rb_entry(vma->vm_rb.rb_right, 1912db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1913db4fbfb9SMichel Lespinasse if (right->rb_subtree_gap >= length) { 1914db4fbfb9SMichel Lespinasse vma = right; 1915db4fbfb9SMichel Lespinasse continue; 1916db4fbfb9SMichel Lespinasse } 1917db4fbfb9SMichel Lespinasse } 1918db4fbfb9SMichel Lespinasse 1919db4fbfb9SMichel Lespinasse check_current: 1920db4fbfb9SMichel Lespinasse /* Check if current node has a suitable gap */ 19211be7107fSHugh Dickins gap_end = vm_start_gap(vma); 1922db4fbfb9SMichel Lespinasse if (gap_end < low_limit) 1923db4fbfb9SMichel Lespinasse return -ENOMEM; 1924f4cb767dSHugh Dickins if (gap_start <= high_limit && 1925f4cb767dSHugh Dickins gap_end > gap_start && gap_end - gap_start >= length) 1926db4fbfb9SMichel Lespinasse goto found; 1927db4fbfb9SMichel Lespinasse 1928db4fbfb9SMichel Lespinasse /* Visit left subtree if it looks promising */ 1929db4fbfb9SMichel Lespinasse if (vma->vm_rb.rb_left) { 1930db4fbfb9SMichel Lespinasse struct vm_area_struct *left = 1931db4fbfb9SMichel Lespinasse rb_entry(vma->vm_rb.rb_left, 1932db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1933db4fbfb9SMichel Lespinasse if (left->rb_subtree_gap >= length) { 1934db4fbfb9SMichel Lespinasse vma = left; 1935db4fbfb9SMichel Lespinasse continue; 1936db4fbfb9SMichel Lespinasse } 1937db4fbfb9SMichel Lespinasse } 1938db4fbfb9SMichel Lespinasse 1939db4fbfb9SMichel Lespinasse /* Go back up the rbtree to find next candidate node */ 1940db4fbfb9SMichel Lespinasse while (true) { 1941db4fbfb9SMichel Lespinasse struct rb_node *prev = &vma->vm_rb; 1942db4fbfb9SMichel Lespinasse if (!rb_parent(prev)) 1943db4fbfb9SMichel Lespinasse return -ENOMEM; 1944db4fbfb9SMichel Lespinasse vma = rb_entry(rb_parent(prev), 1945db4fbfb9SMichel Lespinasse struct vm_area_struct, vm_rb); 1946db4fbfb9SMichel Lespinasse if (prev == vma->vm_rb.rb_right) { 1947db4fbfb9SMichel Lespinasse gap_start = vma->vm_prev ? 19481be7107fSHugh Dickins vm_end_gap(vma->vm_prev) : 0; 1949db4fbfb9SMichel Lespinasse goto check_current; 1950db4fbfb9SMichel Lespinasse } 1951db4fbfb9SMichel Lespinasse } 1952db4fbfb9SMichel Lespinasse } 1953db4fbfb9SMichel Lespinasse 1954db4fbfb9SMichel Lespinasse found: 1955db4fbfb9SMichel Lespinasse /* We found a suitable gap. Clip it with the original high_limit. */ 1956db4fbfb9SMichel Lespinasse if (gap_end > info->high_limit) 1957db4fbfb9SMichel Lespinasse gap_end = info->high_limit; 1958db4fbfb9SMichel Lespinasse 1959db4fbfb9SMichel Lespinasse found_highest: 1960db4fbfb9SMichel Lespinasse /* Compute highest gap address at the desired alignment */ 1961db4fbfb9SMichel Lespinasse gap_end -= info->length; 1962db4fbfb9SMichel Lespinasse gap_end -= (gap_end - info->align_offset) & info->align_mask; 1963db4fbfb9SMichel Lespinasse 1964db4fbfb9SMichel Lespinasse VM_BUG_ON(gap_end < info->low_limit); 1965db4fbfb9SMichel Lespinasse VM_BUG_ON(gap_end < gap_start); 1966db4fbfb9SMichel Lespinasse return gap_end; 1967db4fbfb9SMichel Lespinasse } 1968db4fbfb9SMichel Lespinasse 19691da177e4SLinus Torvalds /* Get an address range which is currently unmapped. 19701da177e4SLinus Torvalds * For shmat() with addr=0. 19711da177e4SLinus Torvalds * 19721da177e4SLinus Torvalds * Ugly calling convention alert: 19731da177e4SLinus Torvalds * Return value with the low bits set means error value, 19741da177e4SLinus Torvalds * ie 19751da177e4SLinus Torvalds * if (ret & ~PAGE_MASK) 19761da177e4SLinus Torvalds * error = ret; 19771da177e4SLinus Torvalds * 19781da177e4SLinus Torvalds * This function "knows" that -ENOMEM has the bits set. 19791da177e4SLinus Torvalds */ 19801da177e4SLinus Torvalds #ifndef HAVE_ARCH_UNMAPPED_AREA 19811da177e4SLinus Torvalds unsigned long 19821da177e4SLinus Torvalds arch_get_unmapped_area(struct file *filp, unsigned long addr, 19831da177e4SLinus Torvalds unsigned long len, unsigned long pgoff, unsigned long flags) 19841da177e4SLinus Torvalds { 19851da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 19861be7107fSHugh Dickins struct vm_area_struct *vma, *prev; 1987db4fbfb9SMichel Lespinasse struct vm_unmapped_area_info info; 19881da177e4SLinus Torvalds 19892afc745fSAkira Takeuchi if (len > TASK_SIZE - mmap_min_addr) 19901da177e4SLinus Torvalds return -ENOMEM; 19911da177e4SLinus Torvalds 199206abdfb4SBenjamin Herrenschmidt if (flags & MAP_FIXED) 199306abdfb4SBenjamin Herrenschmidt return addr; 199406abdfb4SBenjamin Herrenschmidt 19951da177e4SLinus Torvalds if (addr) { 19961da177e4SLinus Torvalds addr = PAGE_ALIGN(addr); 19971be7107fSHugh Dickins vma = find_vma_prev(mm, addr, &prev); 19982afc745fSAkira Takeuchi if (TASK_SIZE - len >= addr && addr >= mmap_min_addr && 19991be7107fSHugh Dickins (!vma || addr + len <= vm_start_gap(vma)) && 20001be7107fSHugh Dickins (!prev || addr >= vm_end_gap(prev))) 20011da177e4SLinus Torvalds return addr; 20021da177e4SLinus Torvalds } 20031da177e4SLinus Torvalds 2004db4fbfb9SMichel Lespinasse info.flags = 0; 2005db4fbfb9SMichel Lespinasse info.length = len; 20064e99b021SHeiko Carstens info.low_limit = mm->mmap_base; 2007db4fbfb9SMichel Lespinasse info.high_limit = TASK_SIZE; 2008db4fbfb9SMichel Lespinasse info.align_mask = 0; 2009db4fbfb9SMichel Lespinasse return vm_unmapped_area(&info); 20101da177e4SLinus Torvalds } 20111da177e4SLinus Torvalds #endif 20121da177e4SLinus Torvalds 20131da177e4SLinus Torvalds /* 20141da177e4SLinus Torvalds * This mmap-allocator allocates new areas top-down from below the 20151da177e4SLinus Torvalds * stack's low limit (the base): 20161da177e4SLinus Torvalds */ 20171da177e4SLinus Torvalds #ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN 20181da177e4SLinus Torvalds unsigned long 20191da177e4SLinus Torvalds arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0, 20201da177e4SLinus Torvalds const unsigned long len, const unsigned long pgoff, 20211da177e4SLinus Torvalds const unsigned long flags) 20221da177e4SLinus Torvalds { 20231be7107fSHugh Dickins struct vm_area_struct *vma, *prev; 20241da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 2025db4fbfb9SMichel Lespinasse unsigned long addr = addr0; 2026db4fbfb9SMichel Lespinasse struct vm_unmapped_area_info info; 20271da177e4SLinus Torvalds 20281da177e4SLinus Torvalds /* requested length too big for entire address space */ 20292afc745fSAkira Takeuchi if (len > TASK_SIZE - mmap_min_addr) 20301da177e4SLinus Torvalds return -ENOMEM; 20311da177e4SLinus Torvalds 203206abdfb4SBenjamin Herrenschmidt if (flags & MAP_FIXED) 203306abdfb4SBenjamin Herrenschmidt return addr; 203406abdfb4SBenjamin Herrenschmidt 20351da177e4SLinus Torvalds /* requesting a specific address */ 20361da177e4SLinus Torvalds if (addr) { 20371da177e4SLinus Torvalds addr = PAGE_ALIGN(addr); 20381be7107fSHugh Dickins vma = find_vma_prev(mm, addr, &prev); 20392afc745fSAkira Takeuchi if (TASK_SIZE - len >= addr && addr >= mmap_min_addr && 20401be7107fSHugh Dickins (!vma || addr + len <= vm_start_gap(vma)) && 20411be7107fSHugh Dickins (!prev || addr >= vm_end_gap(prev))) 20421da177e4SLinus Torvalds return addr; 20431da177e4SLinus Torvalds } 20441da177e4SLinus Torvalds 2045db4fbfb9SMichel Lespinasse info.flags = VM_UNMAPPED_AREA_TOPDOWN; 2046db4fbfb9SMichel Lespinasse info.length = len; 20472afc745fSAkira Takeuchi info.low_limit = max(PAGE_SIZE, mmap_min_addr); 2048db4fbfb9SMichel Lespinasse info.high_limit = mm->mmap_base; 2049db4fbfb9SMichel Lespinasse info.align_mask = 0; 2050db4fbfb9SMichel Lespinasse addr = vm_unmapped_area(&info); 2051b716ad95SXiao Guangrong 20521da177e4SLinus Torvalds /* 20531da177e4SLinus Torvalds * A failed mmap() very likely causes application failure, 20541da177e4SLinus Torvalds * so fall back to the bottom-up function here. This scenario 20551da177e4SLinus Torvalds * can happen with large stack limits and large mmap() 20561da177e4SLinus Torvalds * allocations. 20571da177e4SLinus Torvalds */ 2058de1741a1SAlexander Kuleshov if (offset_in_page(addr)) { 2059db4fbfb9SMichel Lespinasse VM_BUG_ON(addr != -ENOMEM); 2060db4fbfb9SMichel Lespinasse info.flags = 0; 2061db4fbfb9SMichel Lespinasse info.low_limit = TASK_UNMAPPED_BASE; 2062db4fbfb9SMichel Lespinasse info.high_limit = TASK_SIZE; 2063db4fbfb9SMichel Lespinasse addr = vm_unmapped_area(&info); 2064db4fbfb9SMichel Lespinasse } 20651da177e4SLinus Torvalds 20661da177e4SLinus Torvalds return addr; 20671da177e4SLinus Torvalds } 20681da177e4SLinus Torvalds #endif 20691da177e4SLinus Torvalds 20701da177e4SLinus Torvalds unsigned long 20711da177e4SLinus Torvalds get_unmapped_area(struct file *file, unsigned long addr, unsigned long len, 20721da177e4SLinus Torvalds unsigned long pgoff, unsigned long flags) 20731da177e4SLinus Torvalds { 207406abdfb4SBenjamin Herrenschmidt unsigned long (*get_area)(struct file *, unsigned long, 207506abdfb4SBenjamin Herrenschmidt unsigned long, unsigned long, unsigned long); 207607ab67c8SLinus Torvalds 20779206de95SAl Viro unsigned long error = arch_mmap_check(addr, len, flags); 20789206de95SAl Viro if (error) 20799206de95SAl Viro return error; 20809206de95SAl Viro 20819206de95SAl Viro /* Careful about overflows.. */ 20829206de95SAl Viro if (len > TASK_SIZE) 20839206de95SAl Viro return -ENOMEM; 20849206de95SAl Viro 208507ab67c8SLinus Torvalds get_area = current->mm->get_unmapped_area; 2086c01d5b30SHugh Dickins if (file) { 2087c01d5b30SHugh Dickins if (file->f_op->get_unmapped_area) 208807ab67c8SLinus Torvalds get_area = file->f_op->get_unmapped_area; 2089c01d5b30SHugh Dickins } else if (flags & MAP_SHARED) { 2090c01d5b30SHugh Dickins /* 2091c01d5b30SHugh Dickins * mmap_region() will call shmem_zero_setup() to create a file, 2092c01d5b30SHugh Dickins * so use shmem's get_unmapped_area in case it can be huge. 2093c01d5b30SHugh Dickins * do_mmap_pgoff() will clear pgoff, so match alignment. 2094c01d5b30SHugh Dickins */ 2095c01d5b30SHugh Dickins pgoff = 0; 2096c01d5b30SHugh Dickins get_area = shmem_get_unmapped_area; 2097c01d5b30SHugh Dickins } 2098c01d5b30SHugh Dickins 209907ab67c8SLinus Torvalds addr = get_area(file, addr, len, pgoff, flags); 210007ab67c8SLinus Torvalds if (IS_ERR_VALUE(addr)) 210107ab67c8SLinus Torvalds return addr; 210207ab67c8SLinus Torvalds 21031da177e4SLinus Torvalds if (addr > TASK_SIZE - len) 21041da177e4SLinus Torvalds return -ENOMEM; 2105de1741a1SAlexander Kuleshov if (offset_in_page(addr)) 21061da177e4SLinus Torvalds return -EINVAL; 210706abdfb4SBenjamin Herrenschmidt 21089ac4ed4bSAl Viro error = security_mmap_addr(addr); 21099ac4ed4bSAl Viro return error ? error : addr; 21101da177e4SLinus Torvalds } 21111da177e4SLinus Torvalds 21121da177e4SLinus Torvalds EXPORT_SYMBOL(get_unmapped_area); 21131da177e4SLinus Torvalds 21141da177e4SLinus Torvalds /* Look up the first VMA which satisfies addr < vm_end, NULL if none. */ 21151da177e4SLinus Torvalds struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr) 21161da177e4SLinus Torvalds { 2117615d6e87SDavidlohr Bueso struct rb_node *rb_node; 2118615d6e87SDavidlohr Bueso struct vm_area_struct *vma; 21191da177e4SLinus Torvalds 21201da177e4SLinus Torvalds /* Check the cache first. */ 2121615d6e87SDavidlohr Bueso vma = vmacache_find(mm, addr); 2122615d6e87SDavidlohr Bueso if (likely(vma)) 2123615d6e87SDavidlohr Bueso return vma; 21241da177e4SLinus Torvalds 21251da177e4SLinus Torvalds rb_node = mm->mm_rb.rb_node; 21261da177e4SLinus Torvalds 21271da177e4SLinus Torvalds while (rb_node) { 2128615d6e87SDavidlohr Bueso struct vm_area_struct *tmp; 21291da177e4SLinus Torvalds 2130615d6e87SDavidlohr Bueso tmp = rb_entry(rb_node, struct vm_area_struct, vm_rb); 21311da177e4SLinus Torvalds 2132615d6e87SDavidlohr Bueso if (tmp->vm_end > addr) { 2133615d6e87SDavidlohr Bueso vma = tmp; 2134615d6e87SDavidlohr Bueso if (tmp->vm_start <= addr) 21351da177e4SLinus Torvalds break; 21361da177e4SLinus Torvalds rb_node = rb_node->rb_left; 21371da177e4SLinus Torvalds } else 21381da177e4SLinus Torvalds rb_node = rb_node->rb_right; 21391da177e4SLinus Torvalds } 2140615d6e87SDavidlohr Bueso 21411da177e4SLinus Torvalds if (vma) 2142615d6e87SDavidlohr Bueso vmacache_update(addr, vma); 21431da177e4SLinus Torvalds return vma; 21441da177e4SLinus Torvalds } 21451da177e4SLinus Torvalds 21461da177e4SLinus Torvalds EXPORT_SYMBOL(find_vma); 21471da177e4SLinus Torvalds 21486bd4837dSKOSAKI Motohiro /* 21496bd4837dSKOSAKI Motohiro * Same as find_vma, but also return a pointer to the previous VMA in *pprev. 21506bd4837dSKOSAKI Motohiro */ 21511da177e4SLinus Torvalds struct vm_area_struct * 21521da177e4SLinus Torvalds find_vma_prev(struct mm_struct *mm, unsigned long addr, 21531da177e4SLinus Torvalds struct vm_area_struct **pprev) 21541da177e4SLinus Torvalds { 21556bd4837dSKOSAKI Motohiro struct vm_area_struct *vma; 21561da177e4SLinus Torvalds 21576bd4837dSKOSAKI Motohiro vma = find_vma(mm, addr); 215883cd904dSMikulas Patocka if (vma) { 215983cd904dSMikulas Patocka *pprev = vma->vm_prev; 216083cd904dSMikulas Patocka } else { 216183cd904dSMikulas Patocka struct rb_node *rb_node = mm->mm_rb.rb_node; 216283cd904dSMikulas Patocka *pprev = NULL; 216383cd904dSMikulas Patocka while (rb_node) { 216483cd904dSMikulas Patocka *pprev = rb_entry(rb_node, struct vm_area_struct, vm_rb); 216583cd904dSMikulas Patocka rb_node = rb_node->rb_right; 216683cd904dSMikulas Patocka } 216783cd904dSMikulas Patocka } 21686bd4837dSKOSAKI Motohiro return vma; 21691da177e4SLinus Torvalds } 21701da177e4SLinus Torvalds 21711da177e4SLinus Torvalds /* 21721da177e4SLinus Torvalds * Verify that the stack growth is acceptable and 21731da177e4SLinus Torvalds * update accounting. This is shared with both the 21741da177e4SLinus Torvalds * grow-up and grow-down cases. 21751da177e4SLinus Torvalds */ 21761be7107fSHugh Dickins static int acct_stack_growth(struct vm_area_struct *vma, 21771be7107fSHugh Dickins unsigned long size, unsigned long grow) 21781da177e4SLinus Torvalds { 21791da177e4SLinus Torvalds struct mm_struct *mm = vma->vm_mm; 21801be7107fSHugh Dickins unsigned long new_start; 21811da177e4SLinus Torvalds 21821da177e4SLinus Torvalds /* address space limit tests */ 218384638335SKonstantin Khlebnikov if (!may_expand_vm(mm, vma->vm_flags, grow)) 21841da177e4SLinus Torvalds return -ENOMEM; 21851da177e4SLinus Torvalds 21861da177e4SLinus Torvalds /* Stack limit test */ 218724c79d8eSKrzysztof Opasiak if (size > rlimit(RLIMIT_STACK)) 21881da177e4SLinus Torvalds return -ENOMEM; 21891da177e4SLinus Torvalds 21901da177e4SLinus Torvalds /* mlock limit tests */ 21911da177e4SLinus Torvalds if (vma->vm_flags & VM_LOCKED) { 21921da177e4SLinus Torvalds unsigned long locked; 21931da177e4SLinus Torvalds unsigned long limit; 21941da177e4SLinus Torvalds locked = mm->locked_vm + grow; 219524c79d8eSKrzysztof Opasiak limit = rlimit(RLIMIT_MEMLOCK); 219659e99e5bSJiri Slaby limit >>= PAGE_SHIFT; 21971da177e4SLinus Torvalds if (locked > limit && !capable(CAP_IPC_LOCK)) 21981da177e4SLinus Torvalds return -ENOMEM; 21991da177e4SLinus Torvalds } 22001da177e4SLinus Torvalds 22010d59a01bSAdam Litke /* Check to ensure the stack will not grow into a hugetlb-only region */ 22020d59a01bSAdam Litke new_start = (vma->vm_flags & VM_GROWSUP) ? vma->vm_start : 22030d59a01bSAdam Litke vma->vm_end - size; 22040d59a01bSAdam Litke if (is_hugepage_only_range(vma->vm_mm, new_start, size)) 22050d59a01bSAdam Litke return -EFAULT; 22060d59a01bSAdam Litke 22071da177e4SLinus Torvalds /* 22081da177e4SLinus Torvalds * Overcommit.. This must be the final test, as it will 22091da177e4SLinus Torvalds * update security statistics. 22101da177e4SLinus Torvalds */ 221105fa199dSHugh Dickins if (security_vm_enough_memory_mm(mm, grow)) 22121da177e4SLinus Torvalds return -ENOMEM; 22131da177e4SLinus Torvalds 22141da177e4SLinus Torvalds return 0; 22151da177e4SLinus Torvalds } 22161da177e4SLinus Torvalds 221746dea3d0SHugh Dickins #if defined(CONFIG_STACK_GROWSUP) || defined(CONFIG_IA64) 22181da177e4SLinus Torvalds /* 221946dea3d0SHugh Dickins * PA-RISC uses this for its stack; IA64 for its Register Backing Store. 222046dea3d0SHugh Dickins * vma is the last one with address > vma->vm_end. Have to extend vma. 22211da177e4SLinus Torvalds */ 222246dea3d0SHugh Dickins int expand_upwards(struct vm_area_struct *vma, unsigned long address) 22231da177e4SLinus Torvalds { 222409357814SOleg Nesterov struct mm_struct *mm = vma->vm_mm; 22251be7107fSHugh Dickins struct vm_area_struct *next; 22261be7107fSHugh Dickins unsigned long gap_addr; 222712352d3cSKonstantin Khlebnikov int error = 0; 22281da177e4SLinus Torvalds 22291da177e4SLinus Torvalds if (!(vma->vm_flags & VM_GROWSUP)) 22301da177e4SLinus Torvalds return -EFAULT; 22311da177e4SLinus Torvalds 2232bd726c90SHelge Deller /* Guard against exceeding limits of the address space. */ 22331be7107fSHugh Dickins address &= PAGE_MASK; 2234*37511fb5SHelge Deller if (address >= (TASK_SIZE & PAGE_MASK)) 223512352d3cSKonstantin Khlebnikov return -ENOMEM; 2236bd726c90SHelge Deller address += PAGE_SIZE; 223712352d3cSKonstantin Khlebnikov 22381be7107fSHugh Dickins /* Enforce stack_guard_gap */ 22391be7107fSHugh Dickins gap_addr = address + stack_guard_gap; 2240bd726c90SHelge Deller 2241bd726c90SHelge Deller /* Guard against overflow */ 2242bd726c90SHelge Deller if (gap_addr < address || gap_addr > TASK_SIZE) 2243bd726c90SHelge Deller gap_addr = TASK_SIZE; 2244bd726c90SHelge Deller 22451be7107fSHugh Dickins next = vma->vm_next; 2246561b5e07SMichal Hocko if (next && next->vm_start < gap_addr && 2247561b5e07SMichal Hocko (next->vm_flags & (VM_WRITE|VM_READ|VM_EXEC))) { 22481be7107fSHugh Dickins if (!(next->vm_flags & VM_GROWSUP)) 22491be7107fSHugh Dickins return -ENOMEM; 22501be7107fSHugh Dickins /* Check that both stack segments have the same anon_vma? */ 22511be7107fSHugh Dickins } 22521be7107fSHugh Dickins 225312352d3cSKonstantin Khlebnikov /* We must make sure the anon_vma is allocated. */ 22541da177e4SLinus Torvalds if (unlikely(anon_vma_prepare(vma))) 22551da177e4SLinus Torvalds return -ENOMEM; 22561da177e4SLinus Torvalds 22571da177e4SLinus Torvalds /* 22581da177e4SLinus Torvalds * vma->vm_start/vm_end cannot change under us because the caller 22591da177e4SLinus Torvalds * is required to hold the mmap_sem in read mode. We need the 22601da177e4SLinus Torvalds * anon_vma lock to serialize against concurrent expand_stacks. 22611da177e4SLinus Torvalds */ 226212352d3cSKonstantin Khlebnikov anon_vma_lock_write(vma->anon_vma); 22631da177e4SLinus Torvalds 22641da177e4SLinus Torvalds /* Somebody else might have raced and expanded it already */ 22651da177e4SLinus Torvalds if (address > vma->vm_end) { 22661da177e4SLinus Torvalds unsigned long size, grow; 22671da177e4SLinus Torvalds 22681da177e4SLinus Torvalds size = address - vma->vm_start; 22691da177e4SLinus Torvalds grow = (address - vma->vm_end) >> PAGE_SHIFT; 22701da177e4SLinus Torvalds 227142c36f63SHugh Dickins error = -ENOMEM; 227242c36f63SHugh Dickins if (vma->vm_pgoff + (size >> PAGE_SHIFT) >= vma->vm_pgoff) { 22731da177e4SLinus Torvalds error = acct_stack_growth(vma, size, grow); 22743af9e859SEric B Munson if (!error) { 22754128997bSMichel Lespinasse /* 22764128997bSMichel Lespinasse * vma_gap_update() doesn't support concurrent 22774128997bSMichel Lespinasse * updates, but we only hold a shared mmap_sem 22784128997bSMichel Lespinasse * lock here, so we need to protect against 22794128997bSMichel Lespinasse * concurrent vma expansions. 228012352d3cSKonstantin Khlebnikov * anon_vma_lock_write() doesn't help here, as 22814128997bSMichel Lespinasse * we don't guarantee that all growable vmas 22824128997bSMichel Lespinasse * in a mm share the same root anon vma. 22834128997bSMichel Lespinasse * So, we reuse mm->page_table_lock to guard 22844128997bSMichel Lespinasse * against concurrent vma expansions. 22854128997bSMichel Lespinasse */ 228609357814SOleg Nesterov spin_lock(&mm->page_table_lock); 228787e8827bSOleg Nesterov if (vma->vm_flags & VM_LOCKED) 228809357814SOleg Nesterov mm->locked_vm += grow; 228984638335SKonstantin Khlebnikov vm_stat_account(mm, vma->vm_flags, grow); 2290bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(vma); 22911da177e4SLinus Torvalds vma->vm_end = address; 2292bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(vma); 2293d3737187SMichel Lespinasse if (vma->vm_next) 2294d3737187SMichel Lespinasse vma_gap_update(vma->vm_next); 2295d3737187SMichel Lespinasse else 22961be7107fSHugh Dickins mm->highest_vm_end = vm_end_gap(vma); 229709357814SOleg Nesterov spin_unlock(&mm->page_table_lock); 22984128997bSMichel Lespinasse 22993af9e859SEric B Munson perf_event_mmap(vma); 23003af9e859SEric B Munson } 23011da177e4SLinus Torvalds } 230242c36f63SHugh Dickins } 230312352d3cSKonstantin Khlebnikov anon_vma_unlock_write(vma->anon_vma); 23046d50e60cSDavid Rientjes khugepaged_enter_vma_merge(vma, vma->vm_flags); 230509357814SOleg Nesterov validate_mm(mm); 23061da177e4SLinus Torvalds return error; 23071da177e4SLinus Torvalds } 230846dea3d0SHugh Dickins #endif /* CONFIG_STACK_GROWSUP || CONFIG_IA64 */ 230946dea3d0SHugh Dickins 23101da177e4SLinus Torvalds /* 23111da177e4SLinus Torvalds * vma is the first one with address < vma->vm_start. Have to extend vma. 23121da177e4SLinus Torvalds */ 2313d05f3169SMichal Hocko int expand_downwards(struct vm_area_struct *vma, 2314b6a2fea3SOllie Wild unsigned long address) 23151da177e4SLinus Torvalds { 231609357814SOleg Nesterov struct mm_struct *mm = vma->vm_mm; 23171be7107fSHugh Dickins struct vm_area_struct *prev; 23181da177e4SLinus Torvalds int error; 23191da177e4SLinus Torvalds 23208869477aSEric Paris address &= PAGE_MASK; 2321e5467859SAl Viro error = security_mmap_addr(address); 23228869477aSEric Paris if (error) 23238869477aSEric Paris return error; 23248869477aSEric Paris 23251be7107fSHugh Dickins /* Enforce stack_guard_gap */ 23261be7107fSHugh Dickins prev = vma->vm_prev; 23271be7107fSHugh Dickins /* Check that both stack segments have the same anon_vma? */ 232832e4e6d5SOleg Nesterov if (prev && !(prev->vm_flags & VM_GROWSDOWN) && 232932e4e6d5SOleg Nesterov (prev->vm_flags & (VM_WRITE|VM_READ|VM_EXEC))) { 233032e4e6d5SOleg Nesterov if (address - prev->vm_end < stack_guard_gap) 233132e4e6d5SOleg Nesterov return -ENOMEM; 23321be7107fSHugh Dickins } 23331be7107fSHugh Dickins 233412352d3cSKonstantin Khlebnikov /* We must make sure the anon_vma is allocated. */ 233512352d3cSKonstantin Khlebnikov if (unlikely(anon_vma_prepare(vma))) 233612352d3cSKonstantin Khlebnikov return -ENOMEM; 23371da177e4SLinus Torvalds 23381da177e4SLinus Torvalds /* 23391da177e4SLinus Torvalds * vma->vm_start/vm_end cannot change under us because the caller 23401da177e4SLinus Torvalds * is required to hold the mmap_sem in read mode. We need the 23411da177e4SLinus Torvalds * anon_vma lock to serialize against concurrent expand_stacks. 23421da177e4SLinus Torvalds */ 234312352d3cSKonstantin Khlebnikov anon_vma_lock_write(vma->anon_vma); 23441da177e4SLinus Torvalds 23451da177e4SLinus Torvalds /* Somebody else might have raced and expanded it already */ 23461da177e4SLinus Torvalds if (address < vma->vm_start) { 23471da177e4SLinus Torvalds unsigned long size, grow; 23481da177e4SLinus Torvalds 23491da177e4SLinus Torvalds size = vma->vm_end - address; 23501da177e4SLinus Torvalds grow = (vma->vm_start - address) >> PAGE_SHIFT; 23511da177e4SLinus Torvalds 2352a626ca6aSLinus Torvalds error = -ENOMEM; 2353a626ca6aSLinus Torvalds if (grow <= vma->vm_pgoff) { 23541da177e4SLinus Torvalds error = acct_stack_growth(vma, size, grow); 23551da177e4SLinus Torvalds if (!error) { 23564128997bSMichel Lespinasse /* 23574128997bSMichel Lespinasse * vma_gap_update() doesn't support concurrent 23584128997bSMichel Lespinasse * updates, but we only hold a shared mmap_sem 23594128997bSMichel Lespinasse * lock here, so we need to protect against 23604128997bSMichel Lespinasse * concurrent vma expansions. 236112352d3cSKonstantin Khlebnikov * anon_vma_lock_write() doesn't help here, as 23624128997bSMichel Lespinasse * we don't guarantee that all growable vmas 23634128997bSMichel Lespinasse * in a mm share the same root anon vma. 23644128997bSMichel Lespinasse * So, we reuse mm->page_table_lock to guard 23654128997bSMichel Lespinasse * against concurrent vma expansions. 23664128997bSMichel Lespinasse */ 236709357814SOleg Nesterov spin_lock(&mm->page_table_lock); 236887e8827bSOleg Nesterov if (vma->vm_flags & VM_LOCKED) 236909357814SOleg Nesterov mm->locked_vm += grow; 237084638335SKonstantin Khlebnikov vm_stat_account(mm, vma->vm_flags, grow); 2371bf181b9fSMichel Lespinasse anon_vma_interval_tree_pre_update_vma(vma); 23721da177e4SLinus Torvalds vma->vm_start = address; 23731da177e4SLinus Torvalds vma->vm_pgoff -= grow; 2374bf181b9fSMichel Lespinasse anon_vma_interval_tree_post_update_vma(vma); 2375d3737187SMichel Lespinasse vma_gap_update(vma); 237609357814SOleg Nesterov spin_unlock(&mm->page_table_lock); 23774128997bSMichel Lespinasse 23783af9e859SEric B Munson perf_event_mmap(vma); 23791da177e4SLinus Torvalds } 23801da177e4SLinus Torvalds } 2381a626ca6aSLinus Torvalds } 238212352d3cSKonstantin Khlebnikov anon_vma_unlock_write(vma->anon_vma); 23836d50e60cSDavid Rientjes khugepaged_enter_vma_merge(vma, vma->vm_flags); 238409357814SOleg Nesterov validate_mm(mm); 23851da177e4SLinus Torvalds return error; 23861da177e4SLinus Torvalds } 23871da177e4SLinus Torvalds 23881be7107fSHugh Dickins /* enforced gap between the expanding stack and other mappings. */ 23891be7107fSHugh Dickins unsigned long stack_guard_gap = 256UL<<PAGE_SHIFT; 23901be7107fSHugh Dickins 23911be7107fSHugh Dickins static int __init cmdline_parse_stack_guard_gap(char *p) 23921be7107fSHugh Dickins { 23931be7107fSHugh Dickins unsigned long val; 23941be7107fSHugh Dickins char *endptr; 23951be7107fSHugh Dickins 23961be7107fSHugh Dickins val = simple_strtoul(p, &endptr, 10); 23971be7107fSHugh Dickins if (!*endptr) 23981be7107fSHugh Dickins stack_guard_gap = val << PAGE_SHIFT; 23991be7107fSHugh Dickins 24001be7107fSHugh Dickins return 0; 24011be7107fSHugh Dickins } 24021be7107fSHugh Dickins __setup("stack_guard_gap=", cmdline_parse_stack_guard_gap); 24031be7107fSHugh Dickins 2404b6a2fea3SOllie Wild #ifdef CONFIG_STACK_GROWSUP 2405b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address) 2406b6a2fea3SOllie Wild { 2407b6a2fea3SOllie Wild return expand_upwards(vma, address); 2408b6a2fea3SOllie Wild } 2409b6a2fea3SOllie Wild 2410b6a2fea3SOllie Wild struct vm_area_struct * 2411b6a2fea3SOllie Wild find_extend_vma(struct mm_struct *mm, unsigned long addr) 2412b6a2fea3SOllie Wild { 2413b6a2fea3SOllie Wild struct vm_area_struct *vma, *prev; 2414b6a2fea3SOllie Wild 2415b6a2fea3SOllie Wild addr &= PAGE_MASK; 2416b6a2fea3SOllie Wild vma = find_vma_prev(mm, addr, &prev); 2417b6a2fea3SOllie Wild if (vma && (vma->vm_start <= addr)) 2418b6a2fea3SOllie Wild return vma; 24191c127185SDenys Vlasenko if (!prev || expand_stack(prev, addr)) 2420b6a2fea3SOllie Wild return NULL; 2421cea10a19SMichel Lespinasse if (prev->vm_flags & VM_LOCKED) 2422fc05f566SKirill A. Shutemov populate_vma_page_range(prev, addr, prev->vm_end, NULL); 2423b6a2fea3SOllie Wild return prev; 2424b6a2fea3SOllie Wild } 2425b6a2fea3SOllie Wild #else 2426b6a2fea3SOllie Wild int expand_stack(struct vm_area_struct *vma, unsigned long address) 2427b6a2fea3SOllie Wild { 2428b6a2fea3SOllie Wild return expand_downwards(vma, address); 2429b6a2fea3SOllie Wild } 2430b6a2fea3SOllie Wild 24311da177e4SLinus Torvalds struct vm_area_struct * 24321da177e4SLinus Torvalds find_extend_vma(struct mm_struct *mm, unsigned long addr) 24331da177e4SLinus Torvalds { 24341da177e4SLinus Torvalds struct vm_area_struct *vma; 24351da177e4SLinus Torvalds unsigned long start; 24361da177e4SLinus Torvalds 24371da177e4SLinus Torvalds addr &= PAGE_MASK; 24381da177e4SLinus Torvalds vma = find_vma(mm, addr); 24391da177e4SLinus Torvalds if (!vma) 24401da177e4SLinus Torvalds return NULL; 24411da177e4SLinus Torvalds if (vma->vm_start <= addr) 24421da177e4SLinus Torvalds return vma; 24431da177e4SLinus Torvalds if (!(vma->vm_flags & VM_GROWSDOWN)) 24441da177e4SLinus Torvalds return NULL; 24451da177e4SLinus Torvalds start = vma->vm_start; 24461da177e4SLinus Torvalds if (expand_stack(vma, addr)) 24471da177e4SLinus Torvalds return NULL; 2448cea10a19SMichel Lespinasse if (vma->vm_flags & VM_LOCKED) 2449fc05f566SKirill A. Shutemov populate_vma_page_range(vma, addr, start, NULL); 24501da177e4SLinus Torvalds return vma; 24511da177e4SLinus Torvalds } 24521da177e4SLinus Torvalds #endif 24531da177e4SLinus Torvalds 2454e1d6d01aSJesse Barnes EXPORT_SYMBOL_GPL(find_extend_vma); 2455e1d6d01aSJesse Barnes 24562c0b3814SHugh Dickins /* 24572c0b3814SHugh Dickins * Ok - we have the memory areas we should free on the vma list, 24582c0b3814SHugh Dickins * so release them, and do the vma updates. 24591da177e4SLinus Torvalds * 24602c0b3814SHugh Dickins * Called with the mm semaphore held. 24611da177e4SLinus Torvalds */ 24622c0b3814SHugh Dickins static void remove_vma_list(struct mm_struct *mm, struct vm_area_struct *vma) 24631da177e4SLinus Torvalds { 24644f74d2c8SLinus Torvalds unsigned long nr_accounted = 0; 24654f74d2c8SLinus Torvalds 2466365e9c87SHugh Dickins /* Update high watermark before we lower total_vm */ 2467365e9c87SHugh Dickins update_hiwater_vm(mm); 24682c0b3814SHugh Dickins do { 2469ab50b8edSHugh Dickins long nrpages = vma_pages(vma); 24701da177e4SLinus Torvalds 24714f74d2c8SLinus Torvalds if (vma->vm_flags & VM_ACCOUNT) 24724f74d2c8SLinus Torvalds nr_accounted += nrpages; 247384638335SKonstantin Khlebnikov vm_stat_account(mm, vma->vm_flags, -nrpages); 2474a8fb5618SHugh Dickins vma = remove_vma(vma); 2475146425a3SHugh Dickins } while (vma); 24764f74d2c8SLinus Torvalds vm_unacct_memory(nr_accounted); 24771da177e4SLinus Torvalds validate_mm(mm); 24781da177e4SLinus Torvalds } 24791da177e4SLinus Torvalds 24801da177e4SLinus Torvalds /* 24811da177e4SLinus Torvalds * Get rid of page table information in the indicated region. 24821da177e4SLinus Torvalds * 2483f10df686SPaolo 'Blaisorblade' Giarrusso * Called with the mm semaphore held. 24841da177e4SLinus Torvalds */ 24851da177e4SLinus Torvalds static void unmap_region(struct mm_struct *mm, 2486e0da382cSHugh Dickins struct vm_area_struct *vma, struct vm_area_struct *prev, 2487e0da382cSHugh Dickins unsigned long start, unsigned long end) 24881da177e4SLinus Torvalds { 2489e0da382cSHugh Dickins struct vm_area_struct *next = prev ? prev->vm_next : mm->mmap; 2490d16dfc55SPeter Zijlstra struct mmu_gather tlb; 24911da177e4SLinus Torvalds 24921da177e4SLinus Torvalds lru_add_drain(); 24932b047252SLinus Torvalds tlb_gather_mmu(&tlb, mm, start, end); 2494365e9c87SHugh Dickins update_hiwater_rss(mm); 24954f74d2c8SLinus Torvalds unmap_vmas(&tlb, vma, start, end); 2496d16dfc55SPeter Zijlstra free_pgtables(&tlb, vma, prev ? prev->vm_end : FIRST_USER_ADDRESS, 24976ee8630eSHugh Dickins next ? next->vm_start : USER_PGTABLES_CEILING); 2498d16dfc55SPeter Zijlstra tlb_finish_mmu(&tlb, start, end); 24991da177e4SLinus Torvalds } 25001da177e4SLinus Torvalds 25011da177e4SLinus Torvalds /* 25021da177e4SLinus Torvalds * Create a list of vma's touched by the unmap, removing them from the mm's 25031da177e4SLinus Torvalds * vma list as we go.. 25041da177e4SLinus Torvalds */ 25051da177e4SLinus Torvalds static void 25061da177e4SLinus Torvalds detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma, 25071da177e4SLinus Torvalds struct vm_area_struct *prev, unsigned long end) 25081da177e4SLinus Torvalds { 25091da177e4SLinus Torvalds struct vm_area_struct **insertion_point; 25101da177e4SLinus Torvalds struct vm_area_struct *tail_vma = NULL; 25111da177e4SLinus Torvalds 25121da177e4SLinus Torvalds insertion_point = (prev ? &prev->vm_next : &mm->mmap); 2513297c5eeeSLinus Torvalds vma->vm_prev = NULL; 25141da177e4SLinus Torvalds do { 2515d3737187SMichel Lespinasse vma_rb_erase(vma, &mm->mm_rb); 25161da177e4SLinus Torvalds mm->map_count--; 25171da177e4SLinus Torvalds tail_vma = vma; 25181da177e4SLinus Torvalds vma = vma->vm_next; 25191da177e4SLinus Torvalds } while (vma && vma->vm_start < end); 25201da177e4SLinus Torvalds *insertion_point = vma; 2521d3737187SMichel Lespinasse if (vma) { 2522297c5eeeSLinus Torvalds vma->vm_prev = prev; 2523d3737187SMichel Lespinasse vma_gap_update(vma); 2524d3737187SMichel Lespinasse } else 25251be7107fSHugh Dickins mm->highest_vm_end = prev ? vm_end_gap(prev) : 0; 25261da177e4SLinus Torvalds tail_vma->vm_next = NULL; 2527615d6e87SDavidlohr Bueso 2528615d6e87SDavidlohr Bueso /* Kill the cache */ 2529615d6e87SDavidlohr Bueso vmacache_invalidate(mm); 25301da177e4SLinus Torvalds } 25311da177e4SLinus Torvalds 25321da177e4SLinus Torvalds /* 2533def5efe0SDavid Rientjes * __split_vma() bypasses sysctl_max_map_count checking. We use this where it 2534def5efe0SDavid Rientjes * has already been checked or doesn't make sense to fail. 25351da177e4SLinus Torvalds */ 2536def5efe0SDavid Rientjes int __split_vma(struct mm_struct *mm, struct vm_area_struct *vma, 25371da177e4SLinus Torvalds unsigned long addr, int new_below) 25381da177e4SLinus Torvalds { 25391da177e4SLinus Torvalds struct vm_area_struct *new; 2540e3975891SChen Gang int err; 25411da177e4SLinus Torvalds 2542a5516438SAndi Kleen if (is_vm_hugetlb_page(vma) && (addr & 2543a5516438SAndi Kleen ~(huge_page_mask(hstate_vma(vma))))) 25441da177e4SLinus Torvalds return -EINVAL; 25451da177e4SLinus Torvalds 2546e94b1766SChristoph Lameter new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL); 25471da177e4SLinus Torvalds if (!new) 2548e3975891SChen Gang return -ENOMEM; 25491da177e4SLinus Torvalds 25501da177e4SLinus Torvalds /* most fields are the same, copy all, and then fixup */ 25511da177e4SLinus Torvalds *new = *vma; 25521da177e4SLinus Torvalds 25535beb4930SRik van Riel INIT_LIST_HEAD(&new->anon_vma_chain); 25545beb4930SRik van Riel 25551da177e4SLinus Torvalds if (new_below) 25561da177e4SLinus Torvalds new->vm_end = addr; 25571da177e4SLinus Torvalds else { 25581da177e4SLinus Torvalds new->vm_start = addr; 25591da177e4SLinus Torvalds new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT); 25601da177e4SLinus Torvalds } 25611da177e4SLinus Torvalds 2562ef0855d3SOleg Nesterov err = vma_dup_policy(vma, new); 2563ef0855d3SOleg Nesterov if (err) 25645beb4930SRik van Riel goto out_free_vma; 25651da177e4SLinus Torvalds 2566c4ea95d7SDaniel Forrest err = anon_vma_clone(new, vma); 2567c4ea95d7SDaniel Forrest if (err) 25685beb4930SRik van Riel goto out_free_mpol; 25695beb4930SRik van Riel 2570e9714acfSKonstantin Khlebnikov if (new->vm_file) 25711da177e4SLinus Torvalds get_file(new->vm_file); 25721da177e4SLinus Torvalds 25731da177e4SLinus Torvalds if (new->vm_ops && new->vm_ops->open) 25741da177e4SLinus Torvalds new->vm_ops->open(new); 25751da177e4SLinus Torvalds 25761da177e4SLinus Torvalds if (new_below) 25775beb4930SRik van Riel err = vma_adjust(vma, addr, vma->vm_end, vma->vm_pgoff + 25781da177e4SLinus Torvalds ((addr - new->vm_start) >> PAGE_SHIFT), new); 25791da177e4SLinus Torvalds else 25805beb4930SRik van Riel err = vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new); 25811da177e4SLinus Torvalds 25825beb4930SRik van Riel /* Success. */ 25835beb4930SRik van Riel if (!err) 25841da177e4SLinus Torvalds return 0; 25855beb4930SRik van Riel 25865beb4930SRik van Riel /* Clean everything up if vma_adjust failed. */ 258758927533SRik van Riel if (new->vm_ops && new->vm_ops->close) 25885beb4930SRik van Riel new->vm_ops->close(new); 2589e9714acfSKonstantin Khlebnikov if (new->vm_file) 25905beb4930SRik van Riel fput(new->vm_file); 25912aeadc30SAndrea Arcangeli unlink_anon_vmas(new); 25925beb4930SRik van Riel out_free_mpol: 2593ef0855d3SOleg Nesterov mpol_put(vma_policy(new)); 25945beb4930SRik van Riel out_free_vma: 25955beb4930SRik van Riel kmem_cache_free(vm_area_cachep, new); 25965beb4930SRik van Riel return err; 25971da177e4SLinus Torvalds } 25981da177e4SLinus Torvalds 2599659ace58SKOSAKI Motohiro /* 2600659ace58SKOSAKI Motohiro * Split a vma into two pieces at address 'addr', a new vma is allocated 2601659ace58SKOSAKI Motohiro * either for the first part or the tail. 2602659ace58SKOSAKI Motohiro */ 2603659ace58SKOSAKI Motohiro int split_vma(struct mm_struct *mm, struct vm_area_struct *vma, 2604659ace58SKOSAKI Motohiro unsigned long addr, int new_below) 2605659ace58SKOSAKI Motohiro { 2606659ace58SKOSAKI Motohiro if (mm->map_count >= sysctl_max_map_count) 2607659ace58SKOSAKI Motohiro return -ENOMEM; 2608659ace58SKOSAKI Motohiro 2609659ace58SKOSAKI Motohiro return __split_vma(mm, vma, addr, new_below); 2610659ace58SKOSAKI Motohiro } 2611659ace58SKOSAKI Motohiro 26121da177e4SLinus Torvalds /* Munmap is split into 2 main parts -- this part which finds 26131da177e4SLinus Torvalds * what needs doing, and the areas themselves, which do the 26141da177e4SLinus Torvalds * work. This now handles partial unmappings. 26151da177e4SLinus Torvalds * Jeremy Fitzhardinge <jeremy@goop.org> 26161da177e4SLinus Torvalds */ 2617897ab3e0SMike Rapoport int do_munmap(struct mm_struct *mm, unsigned long start, size_t len, 2618897ab3e0SMike Rapoport struct list_head *uf) 26191da177e4SLinus Torvalds { 26201da177e4SLinus Torvalds unsigned long end; 2621146425a3SHugh Dickins struct vm_area_struct *vma, *prev, *last; 26221da177e4SLinus Torvalds 2623de1741a1SAlexander Kuleshov if ((offset_in_page(start)) || start > TASK_SIZE || len > TASK_SIZE-start) 26241da177e4SLinus Torvalds return -EINVAL; 26251da177e4SLinus Torvalds 2626cc71aba3Svishnu.ps len = PAGE_ALIGN(len); 2627cc71aba3Svishnu.ps if (len == 0) 26281da177e4SLinus Torvalds return -EINVAL; 26291da177e4SLinus Torvalds 26301da177e4SLinus Torvalds /* Find the first overlapping VMA */ 26319be34c9dSLinus Torvalds vma = find_vma(mm, start); 2632146425a3SHugh Dickins if (!vma) 26331da177e4SLinus Torvalds return 0; 26349be34c9dSLinus Torvalds prev = vma->vm_prev; 2635146425a3SHugh Dickins /* we have start < vma->vm_end */ 26361da177e4SLinus Torvalds 26371da177e4SLinus Torvalds /* if it doesn't overlap, we have nothing.. */ 26381da177e4SLinus Torvalds end = start + len; 2639146425a3SHugh Dickins if (vma->vm_start >= end) 26401da177e4SLinus Torvalds return 0; 26411da177e4SLinus Torvalds 2642897ab3e0SMike Rapoport if (uf) { 2643897ab3e0SMike Rapoport int error = userfaultfd_unmap_prep(vma, start, end, uf); 2644897ab3e0SMike Rapoport 2645897ab3e0SMike Rapoport if (error) 2646897ab3e0SMike Rapoport return error; 2647897ab3e0SMike Rapoport } 2648897ab3e0SMike Rapoport 26491da177e4SLinus Torvalds /* 26501da177e4SLinus Torvalds * If we need to split any vma, do it now to save pain later. 26511da177e4SLinus Torvalds * 26521da177e4SLinus Torvalds * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially 26531da177e4SLinus Torvalds * unmapped vm_area_struct will remain in use: so lower split_vma 26541da177e4SLinus Torvalds * places tmp vma above, and higher split_vma places tmp vma below. 26551da177e4SLinus Torvalds */ 2656146425a3SHugh Dickins if (start > vma->vm_start) { 2657659ace58SKOSAKI Motohiro int error; 2658659ace58SKOSAKI Motohiro 2659659ace58SKOSAKI Motohiro /* 2660659ace58SKOSAKI Motohiro * Make sure that map_count on return from munmap() will 2661659ace58SKOSAKI Motohiro * not exceed its limit; but let map_count go just above 2662659ace58SKOSAKI Motohiro * its limit temporarily, to help free resources as expected. 2663659ace58SKOSAKI Motohiro */ 2664659ace58SKOSAKI Motohiro if (end < vma->vm_end && mm->map_count >= sysctl_max_map_count) 2665659ace58SKOSAKI Motohiro return -ENOMEM; 2666659ace58SKOSAKI Motohiro 2667659ace58SKOSAKI Motohiro error = __split_vma(mm, vma, start, 0); 26681da177e4SLinus Torvalds if (error) 26691da177e4SLinus Torvalds return error; 2670146425a3SHugh Dickins prev = vma; 26711da177e4SLinus Torvalds } 26721da177e4SLinus Torvalds 26731da177e4SLinus Torvalds /* Does it split the last one? */ 26741da177e4SLinus Torvalds last = find_vma(mm, end); 26751da177e4SLinus Torvalds if (last && end > last->vm_start) { 2676659ace58SKOSAKI Motohiro int error = __split_vma(mm, last, end, 1); 26771da177e4SLinus Torvalds if (error) 26781da177e4SLinus Torvalds return error; 26791da177e4SLinus Torvalds } 2680146425a3SHugh Dickins vma = prev ? prev->vm_next : mm->mmap; 26811da177e4SLinus Torvalds 26821da177e4SLinus Torvalds /* 2683ba470de4SRik van Riel * unlock any mlock()ed ranges before detaching vmas 2684ba470de4SRik van Riel */ 2685ba470de4SRik van Riel if (mm->locked_vm) { 2686ba470de4SRik van Riel struct vm_area_struct *tmp = vma; 2687ba470de4SRik van Riel while (tmp && tmp->vm_start < end) { 2688ba470de4SRik van Riel if (tmp->vm_flags & VM_LOCKED) { 2689ba470de4SRik van Riel mm->locked_vm -= vma_pages(tmp); 2690ba470de4SRik van Riel munlock_vma_pages_all(tmp); 2691ba470de4SRik van Riel } 2692ba470de4SRik van Riel tmp = tmp->vm_next; 2693ba470de4SRik van Riel } 2694ba470de4SRik van Riel } 2695ba470de4SRik van Riel 2696ba470de4SRik van Riel /* 26971da177e4SLinus Torvalds * Remove the vma's, and unmap the actual pages 26981da177e4SLinus Torvalds */ 2699146425a3SHugh Dickins detach_vmas_to_be_unmapped(mm, vma, prev, end); 2700146425a3SHugh Dickins unmap_region(mm, vma, prev, start, end); 27011da177e4SLinus Torvalds 27021de4fa14SDave Hansen arch_unmap(mm, vma, start, end); 27031de4fa14SDave Hansen 27041da177e4SLinus Torvalds /* Fix up all other VM information */ 27052c0b3814SHugh Dickins remove_vma_list(mm, vma); 27061da177e4SLinus Torvalds 27071da177e4SLinus Torvalds return 0; 27081da177e4SLinus Torvalds } 27091da177e4SLinus Torvalds 2710bfce281cSAl Viro int vm_munmap(unsigned long start, size_t len) 2711a46ef99dSLinus Torvalds { 2712a46ef99dSLinus Torvalds int ret; 2713bfce281cSAl Viro struct mm_struct *mm = current->mm; 2714897ab3e0SMike Rapoport LIST_HEAD(uf); 2715a46ef99dSLinus Torvalds 2716ae798783SMichal Hocko if (down_write_killable(&mm->mmap_sem)) 2717ae798783SMichal Hocko return -EINTR; 2718ae798783SMichal Hocko 2719897ab3e0SMike Rapoport ret = do_munmap(mm, start, len, &uf); 2720a46ef99dSLinus Torvalds up_write(&mm->mmap_sem); 2721897ab3e0SMike Rapoport userfaultfd_unmap_complete(mm, &uf); 2722a46ef99dSLinus Torvalds return ret; 2723a46ef99dSLinus Torvalds } 2724a46ef99dSLinus Torvalds EXPORT_SYMBOL(vm_munmap); 2725a46ef99dSLinus Torvalds 27266a6160a7SHeiko Carstens SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len) 27271da177e4SLinus Torvalds { 27281da177e4SLinus Torvalds profile_munmap(addr); 2729846b1a0fSMike Rapoport return vm_munmap(addr, len); 27301da177e4SLinus Torvalds } 27311da177e4SLinus Torvalds 2732c8d78c18SKirill A. Shutemov 2733c8d78c18SKirill A. Shutemov /* 2734c8d78c18SKirill A. Shutemov * Emulation of deprecated remap_file_pages() syscall. 2735c8d78c18SKirill A. Shutemov */ 2736c8d78c18SKirill A. Shutemov SYSCALL_DEFINE5(remap_file_pages, unsigned long, start, unsigned long, size, 2737c8d78c18SKirill A. Shutemov unsigned long, prot, unsigned long, pgoff, unsigned long, flags) 2738c8d78c18SKirill A. Shutemov { 2739c8d78c18SKirill A. Shutemov 2740c8d78c18SKirill A. Shutemov struct mm_struct *mm = current->mm; 2741c8d78c18SKirill A. Shutemov struct vm_area_struct *vma; 2742c8d78c18SKirill A. Shutemov unsigned long populate = 0; 2743c8d78c18SKirill A. Shutemov unsigned long ret = -EINVAL; 2744c8d78c18SKirill A. Shutemov struct file *file; 2745c8d78c18SKirill A. Shutemov 2746756a025fSJoe Perches pr_warn_once("%s (%d) uses deprecated remap_file_pages() syscall. See Documentation/vm/remap_file_pages.txt.\n", 2747c8d78c18SKirill A. Shutemov current->comm, current->pid); 2748c8d78c18SKirill A. Shutemov 2749c8d78c18SKirill A. Shutemov if (prot) 2750c8d78c18SKirill A. Shutemov return ret; 2751c8d78c18SKirill A. Shutemov start = start & PAGE_MASK; 2752c8d78c18SKirill A. Shutemov size = size & PAGE_MASK; 2753c8d78c18SKirill A. Shutemov 2754c8d78c18SKirill A. Shutemov if (start + size <= start) 2755c8d78c18SKirill A. Shutemov return ret; 2756c8d78c18SKirill A. Shutemov 2757c8d78c18SKirill A. Shutemov /* Does pgoff wrap? */ 2758c8d78c18SKirill A. Shutemov if (pgoff + (size >> PAGE_SHIFT) < pgoff) 2759c8d78c18SKirill A. Shutemov return ret; 2760c8d78c18SKirill A. Shutemov 2761dc0ef0dfSMichal Hocko if (down_write_killable(&mm->mmap_sem)) 2762dc0ef0dfSMichal Hocko return -EINTR; 2763dc0ef0dfSMichal Hocko 2764c8d78c18SKirill A. Shutemov vma = find_vma(mm, start); 2765c8d78c18SKirill A. Shutemov 2766c8d78c18SKirill A. Shutemov if (!vma || !(vma->vm_flags & VM_SHARED)) 2767c8d78c18SKirill A. Shutemov goto out; 2768c8d78c18SKirill A. Shutemov 276948f7df32SKirill A. Shutemov if (start < vma->vm_start) 2770c8d78c18SKirill A. Shutemov goto out; 2771c8d78c18SKirill A. Shutemov 277248f7df32SKirill A. Shutemov if (start + size > vma->vm_end) { 277348f7df32SKirill A. Shutemov struct vm_area_struct *next; 277448f7df32SKirill A. Shutemov 277548f7df32SKirill A. Shutemov for (next = vma->vm_next; next; next = next->vm_next) { 277648f7df32SKirill A. Shutemov /* hole between vmas ? */ 277748f7df32SKirill A. Shutemov if (next->vm_start != next->vm_prev->vm_end) 277848f7df32SKirill A. Shutemov goto out; 277948f7df32SKirill A. Shutemov 278048f7df32SKirill A. Shutemov if (next->vm_file != vma->vm_file) 278148f7df32SKirill A. Shutemov goto out; 278248f7df32SKirill A. Shutemov 278348f7df32SKirill A. Shutemov if (next->vm_flags != vma->vm_flags) 278448f7df32SKirill A. Shutemov goto out; 278548f7df32SKirill A. Shutemov 278648f7df32SKirill A. Shutemov if (start + size <= next->vm_end) 278748f7df32SKirill A. Shutemov break; 278848f7df32SKirill A. Shutemov } 278948f7df32SKirill A. Shutemov 279048f7df32SKirill A. Shutemov if (!next) 2791c8d78c18SKirill A. Shutemov goto out; 2792c8d78c18SKirill A. Shutemov } 2793c8d78c18SKirill A. Shutemov 2794c8d78c18SKirill A. Shutemov prot |= vma->vm_flags & VM_READ ? PROT_READ : 0; 2795c8d78c18SKirill A. Shutemov prot |= vma->vm_flags & VM_WRITE ? PROT_WRITE : 0; 2796c8d78c18SKirill A. Shutemov prot |= vma->vm_flags & VM_EXEC ? PROT_EXEC : 0; 2797c8d78c18SKirill A. Shutemov 2798c8d78c18SKirill A. Shutemov flags &= MAP_NONBLOCK; 2799c8d78c18SKirill A. Shutemov flags |= MAP_SHARED | MAP_FIXED | MAP_POPULATE; 2800c8d78c18SKirill A. Shutemov if (vma->vm_flags & VM_LOCKED) { 280148f7df32SKirill A. Shutemov struct vm_area_struct *tmp; 2802c8d78c18SKirill A. Shutemov flags |= MAP_LOCKED; 280348f7df32SKirill A. Shutemov 2804c8d78c18SKirill A. Shutemov /* drop PG_Mlocked flag for over-mapped range */ 280548f7df32SKirill A. Shutemov for (tmp = vma; tmp->vm_start >= start + size; 280648f7df32SKirill A. Shutemov tmp = tmp->vm_next) { 28079a73f61bSKirill A. Shutemov /* 28089a73f61bSKirill A. Shutemov * Split pmd and munlock page on the border 28099a73f61bSKirill A. Shutemov * of the range. 28109a73f61bSKirill A. Shutemov */ 28119a73f61bSKirill A. Shutemov vma_adjust_trans_huge(tmp, start, start + size, 0); 28129a73f61bSKirill A. Shutemov 281348f7df32SKirill A. Shutemov munlock_vma_pages_range(tmp, 281448f7df32SKirill A. Shutemov max(tmp->vm_start, start), 281548f7df32SKirill A. Shutemov min(tmp->vm_end, start + size)); 281648f7df32SKirill A. Shutemov } 2817c8d78c18SKirill A. Shutemov } 2818c8d78c18SKirill A. Shutemov 2819c8d78c18SKirill A. Shutemov file = get_file(vma->vm_file); 2820c8d78c18SKirill A. Shutemov ret = do_mmap_pgoff(vma->vm_file, start, size, 2821897ab3e0SMike Rapoport prot, flags, pgoff, &populate, NULL); 2822c8d78c18SKirill A. Shutemov fput(file); 2823c8d78c18SKirill A. Shutemov out: 2824c8d78c18SKirill A. Shutemov up_write(&mm->mmap_sem); 2825c8d78c18SKirill A. Shutemov if (populate) 2826c8d78c18SKirill A. Shutemov mm_populate(ret, populate); 2827c8d78c18SKirill A. Shutemov if (!IS_ERR_VALUE(ret)) 2828c8d78c18SKirill A. Shutemov ret = 0; 2829c8d78c18SKirill A. Shutemov return ret; 2830c8d78c18SKirill A. Shutemov } 2831c8d78c18SKirill A. Shutemov 28321da177e4SLinus Torvalds static inline void verify_mm_writelocked(struct mm_struct *mm) 28331da177e4SLinus Torvalds { 2834a241ec65SPaul E. McKenney #ifdef CONFIG_DEBUG_VM 28351da177e4SLinus Torvalds if (unlikely(down_read_trylock(&mm->mmap_sem))) { 28361da177e4SLinus Torvalds WARN_ON(1); 28371da177e4SLinus Torvalds up_read(&mm->mmap_sem); 28381da177e4SLinus Torvalds } 28391da177e4SLinus Torvalds #endif 28401da177e4SLinus Torvalds } 28411da177e4SLinus Torvalds 28421da177e4SLinus Torvalds /* 28431da177e4SLinus Torvalds * this is really a simplified "do_mmap". it only handles 28441da177e4SLinus Torvalds * anonymous maps. eventually we may be able to do some 28451da177e4SLinus Torvalds * brk-specific accounting here. 28461da177e4SLinus Torvalds */ 2847897ab3e0SMike Rapoport static int do_brk_flags(unsigned long addr, unsigned long request, unsigned long flags, struct list_head *uf) 28481da177e4SLinus Torvalds { 28491da177e4SLinus Torvalds struct mm_struct *mm = current->mm; 28501da177e4SLinus Torvalds struct vm_area_struct *vma, *prev; 285116e72e9bSDenys Vlasenko unsigned long len; 28521da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 28531da177e4SLinus Torvalds pgoff_t pgoff = addr >> PAGE_SHIFT; 28543a459756SKirill Korotaev int error; 28551da177e4SLinus Torvalds 2856ba093a6dSKees Cook len = PAGE_ALIGN(request); 2857ba093a6dSKees Cook if (len < request) 2858ba093a6dSKees Cook return -ENOMEM; 28591da177e4SLinus Torvalds if (!len) 28605d22fc25SLinus Torvalds return 0; 28611da177e4SLinus Torvalds 286216e72e9bSDenys Vlasenko /* Until we need other flags, refuse anything except VM_EXEC. */ 286316e72e9bSDenys Vlasenko if ((flags & (~VM_EXEC)) != 0) 286416e72e9bSDenys Vlasenko return -EINVAL; 286516e72e9bSDenys Vlasenko flags |= VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags; 28663a459756SKirill Korotaev 28672c6a1016SAl Viro error = get_unmapped_area(NULL, addr, len, 0, MAP_FIXED); 2868de1741a1SAlexander Kuleshov if (offset_in_page(error)) 28693a459756SKirill Korotaev return error; 28703a459756SKirill Korotaev 2871363ee17fSDavidlohr Bueso error = mlock_future_check(mm, mm->def_flags, len); 2872363ee17fSDavidlohr Bueso if (error) 2873363ee17fSDavidlohr Bueso return error; 28741da177e4SLinus Torvalds 28751da177e4SLinus Torvalds /* 28761da177e4SLinus Torvalds * mm->mmap_sem is required to protect against another thread 28771da177e4SLinus Torvalds * changing the mappings in case we sleep. 28781da177e4SLinus Torvalds */ 28791da177e4SLinus Torvalds verify_mm_writelocked(mm); 28801da177e4SLinus Torvalds 28811da177e4SLinus Torvalds /* 28821da177e4SLinus Torvalds * Clear old maps. this also does some error checking for us 28831da177e4SLinus Torvalds */ 28849fcd1457SRasmus Villemoes while (find_vma_links(mm, addr, addr + len, &prev, &rb_link, 28859fcd1457SRasmus Villemoes &rb_parent)) { 2886897ab3e0SMike Rapoport if (do_munmap(mm, addr, len, uf)) 28871da177e4SLinus Torvalds return -ENOMEM; 28881da177e4SLinus Torvalds } 28891da177e4SLinus Torvalds 28901da177e4SLinus Torvalds /* Check against address space limits *after* clearing old maps... */ 289184638335SKonstantin Khlebnikov if (!may_expand_vm(mm, flags, len >> PAGE_SHIFT)) 28921da177e4SLinus Torvalds return -ENOMEM; 28931da177e4SLinus Torvalds 28941da177e4SLinus Torvalds if (mm->map_count > sysctl_max_map_count) 28951da177e4SLinus Torvalds return -ENOMEM; 28961da177e4SLinus Torvalds 2897191c5424SAl Viro if (security_vm_enough_memory_mm(mm, len >> PAGE_SHIFT)) 28981da177e4SLinus Torvalds return -ENOMEM; 28991da177e4SLinus Torvalds 29001da177e4SLinus Torvalds /* Can we just expand an old private anonymous mapping? */ 2901ba470de4SRik van Riel vma = vma_merge(mm, prev, addr, addr + len, flags, 290219a809afSAndrea Arcangeli NULL, NULL, pgoff, NULL, NULL_VM_UFFD_CTX); 2903ba470de4SRik van Riel if (vma) 29041da177e4SLinus Torvalds goto out; 29051da177e4SLinus Torvalds 29061da177e4SLinus Torvalds /* 29071da177e4SLinus Torvalds * create a vma struct for an anonymous mapping 29081da177e4SLinus Torvalds */ 2909c5e3b83eSPekka Enberg vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL); 29101da177e4SLinus Torvalds if (!vma) { 29111da177e4SLinus Torvalds vm_unacct_memory(len >> PAGE_SHIFT); 29121da177e4SLinus Torvalds return -ENOMEM; 29131da177e4SLinus Torvalds } 29141da177e4SLinus Torvalds 29155beb4930SRik van Riel INIT_LIST_HEAD(&vma->anon_vma_chain); 29161da177e4SLinus Torvalds vma->vm_mm = mm; 29171da177e4SLinus Torvalds vma->vm_start = addr; 29181da177e4SLinus Torvalds vma->vm_end = addr + len; 29191da177e4SLinus Torvalds vma->vm_pgoff = pgoff; 29201da177e4SLinus Torvalds vma->vm_flags = flags; 29213ed75eb8SColy Li vma->vm_page_prot = vm_get_page_prot(flags); 29221da177e4SLinus Torvalds vma_link(mm, vma, prev, rb_link, rb_parent); 29231da177e4SLinus Torvalds out: 29243af9e859SEric B Munson perf_event_mmap(vma); 29251da177e4SLinus Torvalds mm->total_vm += len >> PAGE_SHIFT; 292684638335SKonstantin Khlebnikov mm->data_vm += len >> PAGE_SHIFT; 2927128557ffSMichel Lespinasse if (flags & VM_LOCKED) 2928ba470de4SRik van Riel mm->locked_vm += (len >> PAGE_SHIFT); 2929d9104d1cSCyrill Gorcunov vma->vm_flags |= VM_SOFTDIRTY; 29305d22fc25SLinus Torvalds return 0; 29311da177e4SLinus Torvalds } 29321da177e4SLinus Torvalds 2933897ab3e0SMike Rapoport static int do_brk(unsigned long addr, unsigned long len, struct list_head *uf) 293416e72e9bSDenys Vlasenko { 2935897ab3e0SMike Rapoport return do_brk_flags(addr, len, 0, uf); 293616e72e9bSDenys Vlasenko } 293716e72e9bSDenys Vlasenko 293816e72e9bSDenys Vlasenko int vm_brk_flags(unsigned long addr, unsigned long len, unsigned long flags) 2939e4eb1ff6SLinus Torvalds { 2940e4eb1ff6SLinus Torvalds struct mm_struct *mm = current->mm; 29415d22fc25SLinus Torvalds int ret; 2942128557ffSMichel Lespinasse bool populate; 2943897ab3e0SMike Rapoport LIST_HEAD(uf); 2944e4eb1ff6SLinus Torvalds 29452d6c9282SMichal Hocko if (down_write_killable(&mm->mmap_sem)) 29462d6c9282SMichal Hocko return -EINTR; 29472d6c9282SMichal Hocko 2948897ab3e0SMike Rapoport ret = do_brk_flags(addr, len, flags, &uf); 2949128557ffSMichel Lespinasse populate = ((mm->def_flags & VM_LOCKED) != 0); 2950e4eb1ff6SLinus Torvalds up_write(&mm->mmap_sem); 2951897ab3e0SMike Rapoport userfaultfd_unmap_complete(mm, &uf); 29525d22fc25SLinus Torvalds if (populate && !ret) 2953128557ffSMichel Lespinasse mm_populate(addr, len); 2954e4eb1ff6SLinus Torvalds return ret; 2955e4eb1ff6SLinus Torvalds } 295616e72e9bSDenys Vlasenko EXPORT_SYMBOL(vm_brk_flags); 295716e72e9bSDenys Vlasenko 295816e72e9bSDenys Vlasenko int vm_brk(unsigned long addr, unsigned long len) 295916e72e9bSDenys Vlasenko { 296016e72e9bSDenys Vlasenko return vm_brk_flags(addr, len, 0); 296116e72e9bSDenys Vlasenko } 2962e4eb1ff6SLinus Torvalds EXPORT_SYMBOL(vm_brk); 29631da177e4SLinus Torvalds 29641da177e4SLinus Torvalds /* Release all mmaps. */ 29651da177e4SLinus Torvalds void exit_mmap(struct mm_struct *mm) 29661da177e4SLinus Torvalds { 2967d16dfc55SPeter Zijlstra struct mmu_gather tlb; 2968ba470de4SRik van Riel struct vm_area_struct *vma; 29691da177e4SLinus Torvalds unsigned long nr_accounted = 0; 29701da177e4SLinus Torvalds 2971d6dd61c8SJeremy Fitzhardinge /* mm's last user has gone, and its about to be pulled down */ 2972cddb8a5cSAndrea Arcangeli mmu_notifier_release(mm); 2973d6dd61c8SJeremy Fitzhardinge 2974ba470de4SRik van Riel if (mm->locked_vm) { 2975ba470de4SRik van Riel vma = mm->mmap; 2976ba470de4SRik van Riel while (vma) { 2977ba470de4SRik van Riel if (vma->vm_flags & VM_LOCKED) 2978ba470de4SRik van Riel munlock_vma_pages_all(vma); 2979ba470de4SRik van Riel vma = vma->vm_next; 2980ba470de4SRik van Riel } 2981ba470de4SRik van Riel } 29829480c53eSJeremy Fitzhardinge 29839480c53eSJeremy Fitzhardinge arch_exit_mmap(mm); 29849480c53eSJeremy Fitzhardinge 2985ba470de4SRik van Riel vma = mm->mmap; 29869480c53eSJeremy Fitzhardinge if (!vma) /* Can happen if dup_mmap() received an OOM */ 29879480c53eSJeremy Fitzhardinge return; 29889480c53eSJeremy Fitzhardinge 29891da177e4SLinus Torvalds lru_add_drain(); 29901da177e4SLinus Torvalds flush_cache_mm(mm); 29912b047252SLinus Torvalds tlb_gather_mmu(&tlb, mm, 0, -1); 2992901608d9SOleg Nesterov /* update_hiwater_rss(mm) here? but nobody should be looking */ 2993e0da382cSHugh Dickins /* Use -1 here to ensure all VMAs in the mm are unmapped */ 29944f74d2c8SLinus Torvalds unmap_vmas(&tlb, vma, 0, -1); 29959ba69294SHugh Dickins 29966ee8630eSHugh Dickins free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, USER_PGTABLES_CEILING); 2997853f5e26SAl Viro tlb_finish_mmu(&tlb, 0, -1); 29981da177e4SLinus Torvalds 29991da177e4SLinus Torvalds /* 30008f4f8c16SHugh Dickins * Walk the list again, actually closing and freeing it, 30018f4f8c16SHugh Dickins * with preemption enabled, without holding any MM locks. 30021da177e4SLinus Torvalds */ 30034f74d2c8SLinus Torvalds while (vma) { 30044f74d2c8SLinus Torvalds if (vma->vm_flags & VM_ACCOUNT) 30054f74d2c8SLinus Torvalds nr_accounted += vma_pages(vma); 3006a8fb5618SHugh Dickins vma = remove_vma(vma); 30074f74d2c8SLinus Torvalds } 30084f74d2c8SLinus Torvalds vm_unacct_memory(nr_accounted); 30091da177e4SLinus Torvalds } 30101da177e4SLinus Torvalds 30111da177e4SLinus Torvalds /* Insert vm structure into process list sorted by address 30121da177e4SLinus Torvalds * and into the inode's i_mmap tree. If vm_file is non-NULL 3013c8c06efaSDavidlohr Bueso * then i_mmap_rwsem is taken here. 30141da177e4SLinus Torvalds */ 30151da177e4SLinus Torvalds int insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma) 30161da177e4SLinus Torvalds { 30176597d783SHugh Dickins struct vm_area_struct *prev; 30181da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 30191da177e4SLinus Torvalds 3020c9d13f5fSChen Gang if (find_vma_links(mm, vma->vm_start, vma->vm_end, 3021c9d13f5fSChen Gang &prev, &rb_link, &rb_parent)) 3022c9d13f5fSChen Gang return -ENOMEM; 3023c9d13f5fSChen Gang if ((vma->vm_flags & VM_ACCOUNT) && 3024c9d13f5fSChen Gang security_vm_enough_memory_mm(mm, vma_pages(vma))) 3025c9d13f5fSChen Gang return -ENOMEM; 3026c9d13f5fSChen Gang 30271da177e4SLinus Torvalds /* 30281da177e4SLinus Torvalds * The vm_pgoff of a purely anonymous vma should be irrelevant 30291da177e4SLinus Torvalds * until its first write fault, when page's anon_vma and index 30301da177e4SLinus Torvalds * are set. But now set the vm_pgoff it will almost certainly 30311da177e4SLinus Torvalds * end up with (unless mremap moves it elsewhere before that 30321da177e4SLinus Torvalds * first wfault), so /proc/pid/maps tells a consistent story. 30331da177e4SLinus Torvalds * 30341da177e4SLinus Torvalds * By setting it to reflect the virtual start address of the 30351da177e4SLinus Torvalds * vma, merges and splits can happen in a seamless way, just 30361da177e4SLinus Torvalds * using the existing file pgoff checks and manipulations. 30371da177e4SLinus Torvalds * Similarly in do_mmap_pgoff and in do_brk. 30381da177e4SLinus Torvalds */ 30398a9cc3b5SOleg Nesterov if (vma_is_anonymous(vma)) { 30401da177e4SLinus Torvalds BUG_ON(vma->anon_vma); 30411da177e4SLinus Torvalds vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT; 30421da177e4SLinus Torvalds } 30432b144498SSrikar Dronamraju 30441da177e4SLinus Torvalds vma_link(mm, vma, prev, rb_link, rb_parent); 30451da177e4SLinus Torvalds return 0; 30461da177e4SLinus Torvalds } 30471da177e4SLinus Torvalds 30481da177e4SLinus Torvalds /* 30491da177e4SLinus Torvalds * Copy the vma structure to a new location in the same mm, 30501da177e4SLinus Torvalds * prior to moving page table entries, to effect an mremap move. 30511da177e4SLinus Torvalds */ 30521da177e4SLinus Torvalds struct vm_area_struct *copy_vma(struct vm_area_struct **vmap, 305338a76013SMichel Lespinasse unsigned long addr, unsigned long len, pgoff_t pgoff, 305438a76013SMichel Lespinasse bool *need_rmap_locks) 30551da177e4SLinus Torvalds { 30561da177e4SLinus Torvalds struct vm_area_struct *vma = *vmap; 30571da177e4SLinus Torvalds unsigned long vma_start = vma->vm_start; 30581da177e4SLinus Torvalds struct mm_struct *mm = vma->vm_mm; 30591da177e4SLinus Torvalds struct vm_area_struct *new_vma, *prev; 30601da177e4SLinus Torvalds struct rb_node **rb_link, *rb_parent; 3061948f017bSAndrea Arcangeli bool faulted_in_anon_vma = true; 30621da177e4SLinus Torvalds 30631da177e4SLinus Torvalds /* 30641da177e4SLinus Torvalds * If anonymous vma has not yet been faulted, update new pgoff 30651da177e4SLinus Torvalds * to match new location, to increase its chance of merging. 30661da177e4SLinus Torvalds */ 3067ce75799bSOleg Nesterov if (unlikely(vma_is_anonymous(vma) && !vma->anon_vma)) { 30681da177e4SLinus Torvalds pgoff = addr >> PAGE_SHIFT; 3069948f017bSAndrea Arcangeli faulted_in_anon_vma = false; 3070948f017bSAndrea Arcangeli } 30711da177e4SLinus Torvalds 30726597d783SHugh Dickins if (find_vma_links(mm, addr, addr + len, &prev, &rb_link, &rb_parent)) 30736597d783SHugh Dickins return NULL; /* should never get here */ 30741da177e4SLinus Torvalds new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags, 307519a809afSAndrea Arcangeli vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma), 307619a809afSAndrea Arcangeli vma->vm_userfaultfd_ctx); 30771da177e4SLinus Torvalds if (new_vma) { 30781da177e4SLinus Torvalds /* 30791da177e4SLinus Torvalds * Source vma may have been merged into new_vma 30801da177e4SLinus Torvalds */ 3081948f017bSAndrea Arcangeli if (unlikely(vma_start >= new_vma->vm_start && 3082948f017bSAndrea Arcangeli vma_start < new_vma->vm_end)) { 3083948f017bSAndrea Arcangeli /* 3084948f017bSAndrea Arcangeli * The only way we can get a vma_merge with 3085948f017bSAndrea Arcangeli * self during an mremap is if the vma hasn't 3086948f017bSAndrea Arcangeli * been faulted in yet and we were allowed to 3087948f017bSAndrea Arcangeli * reset the dst vma->vm_pgoff to the 3088948f017bSAndrea Arcangeli * destination address of the mremap to allow 3089948f017bSAndrea Arcangeli * the merge to happen. mremap must change the 3090948f017bSAndrea Arcangeli * vm_pgoff linearity between src and dst vmas 3091948f017bSAndrea Arcangeli * (in turn preventing a vma_merge) to be 3092948f017bSAndrea Arcangeli * safe. It is only safe to keep the vm_pgoff 3093948f017bSAndrea Arcangeli * linear if there are no pages mapped yet. 3094948f017bSAndrea Arcangeli */ 309581d1b09cSSasha Levin VM_BUG_ON_VMA(faulted_in_anon_vma, new_vma); 309638a76013SMichel Lespinasse *vmap = vma = new_vma; 3097108d6642SMichel Lespinasse } 309838a76013SMichel Lespinasse *need_rmap_locks = (new_vma->vm_pgoff <= vma->vm_pgoff); 30991da177e4SLinus Torvalds } else { 3100e94b1766SChristoph Lameter new_vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL); 3101e3975891SChen Gang if (!new_vma) 3102e3975891SChen Gang goto out; 31031da177e4SLinus Torvalds *new_vma = *vma; 31041da177e4SLinus Torvalds new_vma->vm_start = addr; 31051da177e4SLinus Torvalds new_vma->vm_end = addr + len; 31061da177e4SLinus Torvalds new_vma->vm_pgoff = pgoff; 3107ef0855d3SOleg Nesterov if (vma_dup_policy(vma, new_vma)) 3108523d4e20SMichel Lespinasse goto out_free_vma; 3109523d4e20SMichel Lespinasse INIT_LIST_HEAD(&new_vma->anon_vma_chain); 3110523d4e20SMichel Lespinasse if (anon_vma_clone(new_vma, vma)) 3111523d4e20SMichel Lespinasse goto out_free_mempol; 3112e9714acfSKonstantin Khlebnikov if (new_vma->vm_file) 31131da177e4SLinus Torvalds get_file(new_vma->vm_file); 31141da177e4SLinus Torvalds if (new_vma->vm_ops && new_vma->vm_ops->open) 31151da177e4SLinus Torvalds new_vma->vm_ops->open(new_vma); 31161da177e4SLinus Torvalds vma_link(mm, new_vma, prev, rb_link, rb_parent); 311738a76013SMichel Lespinasse *need_rmap_locks = false; 31181da177e4SLinus Torvalds } 31191da177e4SLinus Torvalds return new_vma; 31205beb4930SRik van Riel 31215beb4930SRik van Riel out_free_mempol: 3122ef0855d3SOleg Nesterov mpol_put(vma_policy(new_vma)); 31235beb4930SRik van Riel out_free_vma: 31245beb4930SRik van Riel kmem_cache_free(vm_area_cachep, new_vma); 3125e3975891SChen Gang out: 31265beb4930SRik van Riel return NULL; 31271da177e4SLinus Torvalds } 3128119f657cSakpm@osdl.org 3129119f657cSakpm@osdl.org /* 3130119f657cSakpm@osdl.org * Return true if the calling process may expand its vm space by the passed 3131119f657cSakpm@osdl.org * number of pages 3132119f657cSakpm@osdl.org */ 313384638335SKonstantin Khlebnikov bool may_expand_vm(struct mm_struct *mm, vm_flags_t flags, unsigned long npages) 3134119f657cSakpm@osdl.org { 313584638335SKonstantin Khlebnikov if (mm->total_vm + npages > rlimit(RLIMIT_AS) >> PAGE_SHIFT) 313684638335SKonstantin Khlebnikov return false; 3137119f657cSakpm@osdl.org 3138d977d56cSKonstantin Khlebnikov if (is_data_mapping(flags) && 3139d977d56cSKonstantin Khlebnikov mm->data_vm + npages > rlimit(RLIMIT_DATA) >> PAGE_SHIFT) { 3140f4fcd558SKonstantin Khlebnikov /* Workaround for Valgrind */ 3141f4fcd558SKonstantin Khlebnikov if (rlimit(RLIMIT_DATA) == 0 && 3142f4fcd558SKonstantin Khlebnikov mm->data_vm + npages <= rlimit_max(RLIMIT_DATA) >> PAGE_SHIFT) 3143f4fcd558SKonstantin Khlebnikov return true; 3144f4fcd558SKonstantin Khlebnikov if (!ignore_rlimit_data) { 3145f4fcd558SKonstantin Khlebnikov pr_warn_once("%s (%d): VmData %lu exceed data ulimit %lu. Update limits or use boot option ignore_rlimit_data.\n", 3146d977d56cSKonstantin Khlebnikov current->comm, current->pid, 3147d977d56cSKonstantin Khlebnikov (mm->data_vm + npages) << PAGE_SHIFT, 3148d977d56cSKonstantin Khlebnikov rlimit(RLIMIT_DATA)); 3149d977d56cSKonstantin Khlebnikov return false; 3150d977d56cSKonstantin Khlebnikov } 3151f4fcd558SKonstantin Khlebnikov } 3152119f657cSakpm@osdl.org 315384638335SKonstantin Khlebnikov return true; 315484638335SKonstantin Khlebnikov } 315584638335SKonstantin Khlebnikov 315684638335SKonstantin Khlebnikov void vm_stat_account(struct mm_struct *mm, vm_flags_t flags, long npages) 315784638335SKonstantin Khlebnikov { 315884638335SKonstantin Khlebnikov mm->total_vm += npages; 315984638335SKonstantin Khlebnikov 3160d977d56cSKonstantin Khlebnikov if (is_exec_mapping(flags)) 316184638335SKonstantin Khlebnikov mm->exec_vm += npages; 3162d977d56cSKonstantin Khlebnikov else if (is_stack_mapping(flags)) 316384638335SKonstantin Khlebnikov mm->stack_vm += npages; 3164d977d56cSKonstantin Khlebnikov else if (is_data_mapping(flags)) 316584638335SKonstantin Khlebnikov mm->data_vm += npages; 3166119f657cSakpm@osdl.org } 3167fa5dc22fSRoland McGrath 316811bac800SDave Jiang static int special_mapping_fault(struct vm_fault *vmf); 3169a62c34bdSAndy Lutomirski 3170a62c34bdSAndy Lutomirski /* 3171a62c34bdSAndy Lutomirski * Having a close hook prevents vma merging regardless of flags. 3172a62c34bdSAndy Lutomirski */ 3173a62c34bdSAndy Lutomirski static void special_mapping_close(struct vm_area_struct *vma) 3174a62c34bdSAndy Lutomirski { 3175a62c34bdSAndy Lutomirski } 3176a62c34bdSAndy Lutomirski 3177a62c34bdSAndy Lutomirski static const char *special_mapping_name(struct vm_area_struct *vma) 3178a62c34bdSAndy Lutomirski { 3179a62c34bdSAndy Lutomirski return ((struct vm_special_mapping *)vma->vm_private_data)->name; 3180a62c34bdSAndy Lutomirski } 3181a62c34bdSAndy Lutomirski 3182b059a453SDmitry Safonov static int special_mapping_mremap(struct vm_area_struct *new_vma) 3183b059a453SDmitry Safonov { 3184b059a453SDmitry Safonov struct vm_special_mapping *sm = new_vma->vm_private_data; 3185b059a453SDmitry Safonov 3186280e87e9SDmitry Safonov if (WARN_ON_ONCE(current->mm != new_vma->vm_mm)) 3187280e87e9SDmitry Safonov return -EFAULT; 3188280e87e9SDmitry Safonov 3189b059a453SDmitry Safonov if (sm->mremap) 3190b059a453SDmitry Safonov return sm->mremap(sm, new_vma); 3191280e87e9SDmitry Safonov 3192b059a453SDmitry Safonov return 0; 3193b059a453SDmitry Safonov } 3194b059a453SDmitry Safonov 3195a62c34bdSAndy Lutomirski static const struct vm_operations_struct special_mapping_vmops = { 3196a62c34bdSAndy Lutomirski .close = special_mapping_close, 3197a62c34bdSAndy Lutomirski .fault = special_mapping_fault, 3198b059a453SDmitry Safonov .mremap = special_mapping_mremap, 3199a62c34bdSAndy Lutomirski .name = special_mapping_name, 3200a62c34bdSAndy Lutomirski }; 3201a62c34bdSAndy Lutomirski 3202a62c34bdSAndy Lutomirski static const struct vm_operations_struct legacy_special_mapping_vmops = { 3203a62c34bdSAndy Lutomirski .close = special_mapping_close, 3204a62c34bdSAndy Lutomirski .fault = special_mapping_fault, 3205a62c34bdSAndy Lutomirski }; 3206fa5dc22fSRoland McGrath 320711bac800SDave Jiang static int special_mapping_fault(struct vm_fault *vmf) 3208fa5dc22fSRoland McGrath { 320911bac800SDave Jiang struct vm_area_struct *vma = vmf->vma; 3210b1d0e4f5SNick Piggin pgoff_t pgoff; 3211fa5dc22fSRoland McGrath struct page **pages; 3212fa5dc22fSRoland McGrath 3213f872f540SAndy Lutomirski if (vma->vm_ops == &legacy_special_mapping_vmops) { 3214a62c34bdSAndy Lutomirski pages = vma->vm_private_data; 3215f872f540SAndy Lutomirski } else { 3216f872f540SAndy Lutomirski struct vm_special_mapping *sm = vma->vm_private_data; 3217f872f540SAndy Lutomirski 3218f872f540SAndy Lutomirski if (sm->fault) 321911bac800SDave Jiang return sm->fault(sm, vmf->vma, vmf); 3220f872f540SAndy Lutomirski 3221f872f540SAndy Lutomirski pages = sm->pages; 3222f872f540SAndy Lutomirski } 3223a62c34bdSAndy Lutomirski 32248a9cc3b5SOleg Nesterov for (pgoff = vmf->pgoff; pgoff && *pages; ++pages) 3225b1d0e4f5SNick Piggin pgoff--; 3226fa5dc22fSRoland McGrath 3227fa5dc22fSRoland McGrath if (*pages) { 3228fa5dc22fSRoland McGrath struct page *page = *pages; 3229fa5dc22fSRoland McGrath get_page(page); 3230b1d0e4f5SNick Piggin vmf->page = page; 3231b1d0e4f5SNick Piggin return 0; 3232fa5dc22fSRoland McGrath } 3233fa5dc22fSRoland McGrath 3234b1d0e4f5SNick Piggin return VM_FAULT_SIGBUS; 3235fa5dc22fSRoland McGrath } 3236fa5dc22fSRoland McGrath 3237a62c34bdSAndy Lutomirski static struct vm_area_struct *__install_special_mapping( 3238a62c34bdSAndy Lutomirski struct mm_struct *mm, 3239fa5dc22fSRoland McGrath unsigned long addr, unsigned long len, 324027f28b97SChen Gang unsigned long vm_flags, void *priv, 324127f28b97SChen Gang const struct vm_operations_struct *ops) 3242fa5dc22fSRoland McGrath { 3243462e635eSTavis Ormandy int ret; 3244fa5dc22fSRoland McGrath struct vm_area_struct *vma; 3245fa5dc22fSRoland McGrath 3246fa5dc22fSRoland McGrath vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL); 3247fa5dc22fSRoland McGrath if (unlikely(vma == NULL)) 32483935ed6aSStefani Seibold return ERR_PTR(-ENOMEM); 3249fa5dc22fSRoland McGrath 32505beb4930SRik van Riel INIT_LIST_HEAD(&vma->anon_vma_chain); 3251fa5dc22fSRoland McGrath vma->vm_mm = mm; 3252fa5dc22fSRoland McGrath vma->vm_start = addr; 3253fa5dc22fSRoland McGrath vma->vm_end = addr + len; 3254fa5dc22fSRoland McGrath 3255d9104d1cSCyrill Gorcunov vma->vm_flags = vm_flags | mm->def_flags | VM_DONTEXPAND | VM_SOFTDIRTY; 32563ed75eb8SColy Li vma->vm_page_prot = vm_get_page_prot(vma->vm_flags); 3257fa5dc22fSRoland McGrath 3258a62c34bdSAndy Lutomirski vma->vm_ops = ops; 3259a62c34bdSAndy Lutomirski vma->vm_private_data = priv; 3260fa5dc22fSRoland McGrath 3261462e635eSTavis Ormandy ret = insert_vm_struct(mm, vma); 3262462e635eSTavis Ormandy if (ret) 3263462e635eSTavis Ormandy goto out; 3264fa5dc22fSRoland McGrath 326584638335SKonstantin Khlebnikov vm_stat_account(mm, vma->vm_flags, len >> PAGE_SHIFT); 3266fa5dc22fSRoland McGrath 3267cdd6c482SIngo Molnar perf_event_mmap(vma); 3268089dd79dSPeter Zijlstra 32693935ed6aSStefani Seibold return vma; 3270462e635eSTavis Ormandy 3271462e635eSTavis Ormandy out: 3272462e635eSTavis Ormandy kmem_cache_free(vm_area_cachep, vma); 32733935ed6aSStefani Seibold return ERR_PTR(ret); 32743935ed6aSStefani Seibold } 32753935ed6aSStefani Seibold 32762eefd878SDmitry Safonov bool vma_is_special_mapping(const struct vm_area_struct *vma, 32772eefd878SDmitry Safonov const struct vm_special_mapping *sm) 32782eefd878SDmitry Safonov { 32792eefd878SDmitry Safonov return vma->vm_private_data == sm && 32802eefd878SDmitry Safonov (vma->vm_ops == &special_mapping_vmops || 32812eefd878SDmitry Safonov vma->vm_ops == &legacy_special_mapping_vmops); 32822eefd878SDmitry Safonov } 32832eefd878SDmitry Safonov 3284a62c34bdSAndy Lutomirski /* 3285a62c34bdSAndy Lutomirski * Called with mm->mmap_sem held for writing. 3286a62c34bdSAndy Lutomirski * Insert a new vma covering the given region, with the given flags. 3287a62c34bdSAndy Lutomirski * Its pages are supplied by the given array of struct page *. 3288a62c34bdSAndy Lutomirski * The array can be shorter than len >> PAGE_SHIFT if it's null-terminated. 3289a62c34bdSAndy Lutomirski * The region past the last page supplied will always produce SIGBUS. 3290a62c34bdSAndy Lutomirski * The array pointer and the pages it points to are assumed to stay alive 3291a62c34bdSAndy Lutomirski * for as long as this mapping might exist. 3292a62c34bdSAndy Lutomirski */ 3293a62c34bdSAndy Lutomirski struct vm_area_struct *_install_special_mapping( 3294a62c34bdSAndy Lutomirski struct mm_struct *mm, 3295a62c34bdSAndy Lutomirski unsigned long addr, unsigned long len, 3296a62c34bdSAndy Lutomirski unsigned long vm_flags, const struct vm_special_mapping *spec) 3297a62c34bdSAndy Lutomirski { 329827f28b97SChen Gang return __install_special_mapping(mm, addr, len, vm_flags, (void *)spec, 329927f28b97SChen Gang &special_mapping_vmops); 3300a62c34bdSAndy Lutomirski } 3301a62c34bdSAndy Lutomirski 33023935ed6aSStefani Seibold int install_special_mapping(struct mm_struct *mm, 33033935ed6aSStefani Seibold unsigned long addr, unsigned long len, 33043935ed6aSStefani Seibold unsigned long vm_flags, struct page **pages) 33053935ed6aSStefani Seibold { 3306a62c34bdSAndy Lutomirski struct vm_area_struct *vma = __install_special_mapping( 330727f28b97SChen Gang mm, addr, len, vm_flags, (void *)pages, 330827f28b97SChen Gang &legacy_special_mapping_vmops); 33093935ed6aSStefani Seibold 331014bd5b45SDuan Jiong return PTR_ERR_OR_ZERO(vma); 3311fa5dc22fSRoland McGrath } 33127906d00cSAndrea Arcangeli 33137906d00cSAndrea Arcangeli static DEFINE_MUTEX(mm_all_locks_mutex); 33147906d00cSAndrea Arcangeli 3315454ed842SPeter Zijlstra static void vm_lock_anon_vma(struct mm_struct *mm, struct anon_vma *anon_vma) 33167906d00cSAndrea Arcangeli { 3317bf181b9fSMichel Lespinasse if (!test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_node)) { 33187906d00cSAndrea Arcangeli /* 33197906d00cSAndrea Arcangeli * The LSB of head.next can't change from under us 33207906d00cSAndrea Arcangeli * because we hold the mm_all_locks_mutex. 33217906d00cSAndrea Arcangeli */ 3322572043c9SJiri Kosina down_write_nest_lock(&anon_vma->root->rwsem, &mm->mmap_sem); 33237906d00cSAndrea Arcangeli /* 33247906d00cSAndrea Arcangeli * We can safely modify head.next after taking the 33255a505085SIngo Molnar * anon_vma->root->rwsem. If some other vma in this mm shares 33267906d00cSAndrea Arcangeli * the same anon_vma we won't take it again. 33277906d00cSAndrea Arcangeli * 33287906d00cSAndrea Arcangeli * No need of atomic instructions here, head.next 33297906d00cSAndrea Arcangeli * can't change from under us thanks to the 33305a505085SIngo Molnar * anon_vma->root->rwsem. 33317906d00cSAndrea Arcangeli */ 33327906d00cSAndrea Arcangeli if (__test_and_set_bit(0, (unsigned long *) 3333bf181b9fSMichel Lespinasse &anon_vma->root->rb_root.rb_node)) 33347906d00cSAndrea Arcangeli BUG(); 33357906d00cSAndrea Arcangeli } 33367906d00cSAndrea Arcangeli } 33377906d00cSAndrea Arcangeli 3338454ed842SPeter Zijlstra static void vm_lock_mapping(struct mm_struct *mm, struct address_space *mapping) 33397906d00cSAndrea Arcangeli { 33407906d00cSAndrea Arcangeli if (!test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) { 33417906d00cSAndrea Arcangeli /* 33427906d00cSAndrea Arcangeli * AS_MM_ALL_LOCKS can't change from under us because 33437906d00cSAndrea Arcangeli * we hold the mm_all_locks_mutex. 33447906d00cSAndrea Arcangeli * 33457906d00cSAndrea Arcangeli * Operations on ->flags have to be atomic because 33467906d00cSAndrea Arcangeli * even if AS_MM_ALL_LOCKS is stable thanks to the 33477906d00cSAndrea Arcangeli * mm_all_locks_mutex, there may be other cpus 33487906d00cSAndrea Arcangeli * changing other bitflags in parallel to us. 33497906d00cSAndrea Arcangeli */ 33507906d00cSAndrea Arcangeli if (test_and_set_bit(AS_MM_ALL_LOCKS, &mapping->flags)) 33517906d00cSAndrea Arcangeli BUG(); 3352c8c06efaSDavidlohr Bueso down_write_nest_lock(&mapping->i_mmap_rwsem, &mm->mmap_sem); 33537906d00cSAndrea Arcangeli } 33547906d00cSAndrea Arcangeli } 33557906d00cSAndrea Arcangeli 33567906d00cSAndrea Arcangeli /* 33577906d00cSAndrea Arcangeli * This operation locks against the VM for all pte/vma/mm related 33587906d00cSAndrea Arcangeli * operations that could ever happen on a certain mm. This includes 33597906d00cSAndrea Arcangeli * vmtruncate, try_to_unmap, and all page faults. 33607906d00cSAndrea Arcangeli * 33617906d00cSAndrea Arcangeli * The caller must take the mmap_sem in write mode before calling 33627906d00cSAndrea Arcangeli * mm_take_all_locks(). The caller isn't allowed to release the 33637906d00cSAndrea Arcangeli * mmap_sem until mm_drop_all_locks() returns. 33647906d00cSAndrea Arcangeli * 33657906d00cSAndrea Arcangeli * mmap_sem in write mode is required in order to block all operations 33667906d00cSAndrea Arcangeli * that could modify pagetables and free pages without need of 336727ba0644SKirill A. Shutemov * altering the vma layout. It's also needed in write mode to avoid new 33687906d00cSAndrea Arcangeli * anon_vmas to be associated with existing vmas. 33697906d00cSAndrea Arcangeli * 33707906d00cSAndrea Arcangeli * A single task can't take more than one mm_take_all_locks() in a row 33717906d00cSAndrea Arcangeli * or it would deadlock. 33727906d00cSAndrea Arcangeli * 3373bf181b9fSMichel Lespinasse * The LSB in anon_vma->rb_root.rb_node and the AS_MM_ALL_LOCKS bitflag in 33747906d00cSAndrea Arcangeli * mapping->flags avoid to take the same lock twice, if more than one 33757906d00cSAndrea Arcangeli * vma in this mm is backed by the same anon_vma or address_space. 33767906d00cSAndrea Arcangeli * 337788f306b6SKirill A. Shutemov * We take locks in following order, accordingly to comment at beginning 337888f306b6SKirill A. Shutemov * of mm/rmap.c: 337988f306b6SKirill A. Shutemov * - all hugetlbfs_i_mmap_rwsem_key locks (aka mapping->i_mmap_rwsem for 338088f306b6SKirill A. Shutemov * hugetlb mapping); 338188f306b6SKirill A. Shutemov * - all i_mmap_rwsem locks; 338288f306b6SKirill A. Shutemov * - all anon_vma->rwseml 338388f306b6SKirill A. Shutemov * 338488f306b6SKirill A. Shutemov * We can take all locks within these types randomly because the VM code 338588f306b6SKirill A. Shutemov * doesn't nest them and we protected from parallel mm_take_all_locks() by 338688f306b6SKirill A. Shutemov * mm_all_locks_mutex. 33877906d00cSAndrea Arcangeli * 33887906d00cSAndrea Arcangeli * mm_take_all_locks() and mm_drop_all_locks are expensive operations 33897906d00cSAndrea Arcangeli * that may have to take thousand of locks. 33907906d00cSAndrea Arcangeli * 33917906d00cSAndrea Arcangeli * mm_take_all_locks() can fail if it's interrupted by signals. 33927906d00cSAndrea Arcangeli */ 33937906d00cSAndrea Arcangeli int mm_take_all_locks(struct mm_struct *mm) 33947906d00cSAndrea Arcangeli { 33957906d00cSAndrea Arcangeli struct vm_area_struct *vma; 33965beb4930SRik van Riel struct anon_vma_chain *avc; 33977906d00cSAndrea Arcangeli 33987906d00cSAndrea Arcangeli BUG_ON(down_read_trylock(&mm->mmap_sem)); 33997906d00cSAndrea Arcangeli 34007906d00cSAndrea Arcangeli mutex_lock(&mm_all_locks_mutex); 34017906d00cSAndrea Arcangeli 34027906d00cSAndrea Arcangeli for (vma = mm->mmap; vma; vma = vma->vm_next) { 34037906d00cSAndrea Arcangeli if (signal_pending(current)) 34047906d00cSAndrea Arcangeli goto out_unlock; 340588f306b6SKirill A. Shutemov if (vma->vm_file && vma->vm_file->f_mapping && 340688f306b6SKirill A. Shutemov is_vm_hugetlb_page(vma)) 340788f306b6SKirill A. Shutemov vm_lock_mapping(mm, vma->vm_file->f_mapping); 340888f306b6SKirill A. Shutemov } 340988f306b6SKirill A. Shutemov 341088f306b6SKirill A. Shutemov for (vma = mm->mmap; vma; vma = vma->vm_next) { 341188f306b6SKirill A. Shutemov if (signal_pending(current)) 341288f306b6SKirill A. Shutemov goto out_unlock; 341388f306b6SKirill A. Shutemov if (vma->vm_file && vma->vm_file->f_mapping && 341488f306b6SKirill A. Shutemov !is_vm_hugetlb_page(vma)) 3415454ed842SPeter Zijlstra vm_lock_mapping(mm, vma->vm_file->f_mapping); 34167906d00cSAndrea Arcangeli } 34177cd5a02fSPeter Zijlstra 34187cd5a02fSPeter Zijlstra for (vma = mm->mmap; vma; vma = vma->vm_next) { 34197cd5a02fSPeter Zijlstra if (signal_pending(current)) 34207cd5a02fSPeter Zijlstra goto out_unlock; 34217cd5a02fSPeter Zijlstra if (vma->anon_vma) 34225beb4930SRik van Riel list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 34235beb4930SRik van Riel vm_lock_anon_vma(mm, avc->anon_vma); 34247cd5a02fSPeter Zijlstra } 34257cd5a02fSPeter Zijlstra 3426584cff54SKautuk Consul return 0; 34277906d00cSAndrea Arcangeli 34287906d00cSAndrea Arcangeli out_unlock: 34297906d00cSAndrea Arcangeli mm_drop_all_locks(mm); 3430584cff54SKautuk Consul return -EINTR; 34317906d00cSAndrea Arcangeli } 34327906d00cSAndrea Arcangeli 34337906d00cSAndrea Arcangeli static void vm_unlock_anon_vma(struct anon_vma *anon_vma) 34347906d00cSAndrea Arcangeli { 3435bf181b9fSMichel Lespinasse if (test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_node)) { 34367906d00cSAndrea Arcangeli /* 34377906d00cSAndrea Arcangeli * The LSB of head.next can't change to 0 from under 34387906d00cSAndrea Arcangeli * us because we hold the mm_all_locks_mutex. 34397906d00cSAndrea Arcangeli * 34407906d00cSAndrea Arcangeli * We must however clear the bitflag before unlocking 3441bf181b9fSMichel Lespinasse * the vma so the users using the anon_vma->rb_root will 34427906d00cSAndrea Arcangeli * never see our bitflag. 34437906d00cSAndrea Arcangeli * 34447906d00cSAndrea Arcangeli * No need of atomic instructions here, head.next 34457906d00cSAndrea Arcangeli * can't change from under us until we release the 34465a505085SIngo Molnar * anon_vma->root->rwsem. 34477906d00cSAndrea Arcangeli */ 34487906d00cSAndrea Arcangeli if (!__test_and_clear_bit(0, (unsigned long *) 3449bf181b9fSMichel Lespinasse &anon_vma->root->rb_root.rb_node)) 34507906d00cSAndrea Arcangeli BUG(); 345108b52706SKonstantin Khlebnikov anon_vma_unlock_write(anon_vma); 34527906d00cSAndrea Arcangeli } 34537906d00cSAndrea Arcangeli } 34547906d00cSAndrea Arcangeli 34557906d00cSAndrea Arcangeli static void vm_unlock_mapping(struct address_space *mapping) 34567906d00cSAndrea Arcangeli { 34577906d00cSAndrea Arcangeli if (test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) { 34587906d00cSAndrea Arcangeli /* 34597906d00cSAndrea Arcangeli * AS_MM_ALL_LOCKS can't change to 0 from under us 34607906d00cSAndrea Arcangeli * because we hold the mm_all_locks_mutex. 34617906d00cSAndrea Arcangeli */ 346283cde9e8SDavidlohr Bueso i_mmap_unlock_write(mapping); 34637906d00cSAndrea Arcangeli if (!test_and_clear_bit(AS_MM_ALL_LOCKS, 34647906d00cSAndrea Arcangeli &mapping->flags)) 34657906d00cSAndrea Arcangeli BUG(); 34667906d00cSAndrea Arcangeli } 34677906d00cSAndrea Arcangeli } 34687906d00cSAndrea Arcangeli 34697906d00cSAndrea Arcangeli /* 34707906d00cSAndrea Arcangeli * The mmap_sem cannot be released by the caller until 34717906d00cSAndrea Arcangeli * mm_drop_all_locks() returns. 34727906d00cSAndrea Arcangeli */ 34737906d00cSAndrea Arcangeli void mm_drop_all_locks(struct mm_struct *mm) 34747906d00cSAndrea Arcangeli { 34757906d00cSAndrea Arcangeli struct vm_area_struct *vma; 34765beb4930SRik van Riel struct anon_vma_chain *avc; 34777906d00cSAndrea Arcangeli 34787906d00cSAndrea Arcangeli BUG_ON(down_read_trylock(&mm->mmap_sem)); 34797906d00cSAndrea Arcangeli BUG_ON(!mutex_is_locked(&mm_all_locks_mutex)); 34807906d00cSAndrea Arcangeli 34817906d00cSAndrea Arcangeli for (vma = mm->mmap; vma; vma = vma->vm_next) { 34827906d00cSAndrea Arcangeli if (vma->anon_vma) 34835beb4930SRik van Riel list_for_each_entry(avc, &vma->anon_vma_chain, same_vma) 34845beb4930SRik van Riel vm_unlock_anon_vma(avc->anon_vma); 34857906d00cSAndrea Arcangeli if (vma->vm_file && vma->vm_file->f_mapping) 34867906d00cSAndrea Arcangeli vm_unlock_mapping(vma->vm_file->f_mapping); 34877906d00cSAndrea Arcangeli } 34887906d00cSAndrea Arcangeli 34897906d00cSAndrea Arcangeli mutex_unlock(&mm_all_locks_mutex); 34907906d00cSAndrea Arcangeli } 34918feae131SDavid Howells 34928feae131SDavid Howells /* 34933edf41d8Sseokhoon.yoon * initialise the percpu counter for VM 34948feae131SDavid Howells */ 34958feae131SDavid Howells void __init mmap_init(void) 34968feae131SDavid Howells { 349700a62ce9SKOSAKI Motohiro int ret; 349800a62ce9SKOSAKI Motohiro 3499908c7f19STejun Heo ret = percpu_counter_init(&vm_committed_as, 0, GFP_KERNEL); 350000a62ce9SKOSAKI Motohiro VM_BUG_ON(ret); 35018feae131SDavid Howells } 3502c9b1d098SAndrew Shewmaker 3503c9b1d098SAndrew Shewmaker /* 3504c9b1d098SAndrew Shewmaker * Initialise sysctl_user_reserve_kbytes. 3505c9b1d098SAndrew Shewmaker * 3506c9b1d098SAndrew Shewmaker * This is intended to prevent a user from starting a single memory hogging 3507c9b1d098SAndrew Shewmaker * process, such that they cannot recover (kill the hog) in OVERCOMMIT_NEVER 3508c9b1d098SAndrew Shewmaker * mode. 3509c9b1d098SAndrew Shewmaker * 3510c9b1d098SAndrew Shewmaker * The default value is min(3% of free memory, 128MB) 3511c9b1d098SAndrew Shewmaker * 128MB is enough to recover with sshd/login, bash, and top/kill. 3512c9b1d098SAndrew Shewmaker */ 35131640879aSAndrew Shewmaker static int init_user_reserve(void) 3514c9b1d098SAndrew Shewmaker { 3515c9b1d098SAndrew Shewmaker unsigned long free_kbytes; 3516c9b1d098SAndrew Shewmaker 3517c9b1d098SAndrew Shewmaker free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10); 3518c9b1d098SAndrew Shewmaker 3519c9b1d098SAndrew Shewmaker sysctl_user_reserve_kbytes = min(free_kbytes / 32, 1UL << 17); 3520c9b1d098SAndrew Shewmaker return 0; 3521c9b1d098SAndrew Shewmaker } 3522a64fb3cdSPaul Gortmaker subsys_initcall(init_user_reserve); 35234eeab4f5SAndrew Shewmaker 35244eeab4f5SAndrew Shewmaker /* 35254eeab4f5SAndrew Shewmaker * Initialise sysctl_admin_reserve_kbytes. 35264eeab4f5SAndrew Shewmaker * 35274eeab4f5SAndrew Shewmaker * The purpose of sysctl_admin_reserve_kbytes is to allow the sys admin 35284eeab4f5SAndrew Shewmaker * to log in and kill a memory hogging process. 35294eeab4f5SAndrew Shewmaker * 35304eeab4f5SAndrew Shewmaker * Systems with more than 256MB will reserve 8MB, enough to recover 35314eeab4f5SAndrew Shewmaker * with sshd, bash, and top in OVERCOMMIT_GUESS. Smaller systems will 35324eeab4f5SAndrew Shewmaker * only reserve 3% of free pages by default. 35334eeab4f5SAndrew Shewmaker */ 35341640879aSAndrew Shewmaker static int init_admin_reserve(void) 35354eeab4f5SAndrew Shewmaker { 35364eeab4f5SAndrew Shewmaker unsigned long free_kbytes; 35374eeab4f5SAndrew Shewmaker 35384eeab4f5SAndrew Shewmaker free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10); 35394eeab4f5SAndrew Shewmaker 35404eeab4f5SAndrew Shewmaker sysctl_admin_reserve_kbytes = min(free_kbytes / 32, 1UL << 13); 35414eeab4f5SAndrew Shewmaker return 0; 35424eeab4f5SAndrew Shewmaker } 3543a64fb3cdSPaul Gortmaker subsys_initcall(init_admin_reserve); 35441640879aSAndrew Shewmaker 35451640879aSAndrew Shewmaker /* 35461640879aSAndrew Shewmaker * Reinititalise user and admin reserves if memory is added or removed. 35471640879aSAndrew Shewmaker * 35481640879aSAndrew Shewmaker * The default user reserve max is 128MB, and the default max for the 35491640879aSAndrew Shewmaker * admin reserve is 8MB. These are usually, but not always, enough to 35501640879aSAndrew Shewmaker * enable recovery from a memory hogging process using login/sshd, a shell, 35511640879aSAndrew Shewmaker * and tools like top. It may make sense to increase or even disable the 35521640879aSAndrew Shewmaker * reserve depending on the existence of swap or variations in the recovery 35531640879aSAndrew Shewmaker * tools. So, the admin may have changed them. 35541640879aSAndrew Shewmaker * 35551640879aSAndrew Shewmaker * If memory is added and the reserves have been eliminated or increased above 35561640879aSAndrew Shewmaker * the default max, then we'll trust the admin. 35571640879aSAndrew Shewmaker * 35581640879aSAndrew Shewmaker * If memory is removed and there isn't enough free memory, then we 35591640879aSAndrew Shewmaker * need to reset the reserves. 35601640879aSAndrew Shewmaker * 35611640879aSAndrew Shewmaker * Otherwise keep the reserve set by the admin. 35621640879aSAndrew Shewmaker */ 35631640879aSAndrew Shewmaker static int reserve_mem_notifier(struct notifier_block *nb, 35641640879aSAndrew Shewmaker unsigned long action, void *data) 35651640879aSAndrew Shewmaker { 35661640879aSAndrew Shewmaker unsigned long tmp, free_kbytes; 35671640879aSAndrew Shewmaker 35681640879aSAndrew Shewmaker switch (action) { 35691640879aSAndrew Shewmaker case MEM_ONLINE: 35701640879aSAndrew Shewmaker /* Default max is 128MB. Leave alone if modified by operator. */ 35711640879aSAndrew Shewmaker tmp = sysctl_user_reserve_kbytes; 35721640879aSAndrew Shewmaker if (0 < tmp && tmp < (1UL << 17)) 35731640879aSAndrew Shewmaker init_user_reserve(); 35741640879aSAndrew Shewmaker 35751640879aSAndrew Shewmaker /* Default max is 8MB. Leave alone if modified by operator. */ 35761640879aSAndrew Shewmaker tmp = sysctl_admin_reserve_kbytes; 35771640879aSAndrew Shewmaker if (0 < tmp && tmp < (1UL << 13)) 35781640879aSAndrew Shewmaker init_admin_reserve(); 35791640879aSAndrew Shewmaker 35801640879aSAndrew Shewmaker break; 35811640879aSAndrew Shewmaker case MEM_OFFLINE: 35821640879aSAndrew Shewmaker free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10); 35831640879aSAndrew Shewmaker 35841640879aSAndrew Shewmaker if (sysctl_user_reserve_kbytes > free_kbytes) { 35851640879aSAndrew Shewmaker init_user_reserve(); 35861640879aSAndrew Shewmaker pr_info("vm.user_reserve_kbytes reset to %lu\n", 35871640879aSAndrew Shewmaker sysctl_user_reserve_kbytes); 35881640879aSAndrew Shewmaker } 35891640879aSAndrew Shewmaker 35901640879aSAndrew Shewmaker if (sysctl_admin_reserve_kbytes > free_kbytes) { 35911640879aSAndrew Shewmaker init_admin_reserve(); 35921640879aSAndrew Shewmaker pr_info("vm.admin_reserve_kbytes reset to %lu\n", 35931640879aSAndrew Shewmaker sysctl_admin_reserve_kbytes); 35941640879aSAndrew Shewmaker } 35951640879aSAndrew Shewmaker break; 35961640879aSAndrew Shewmaker default: 35971640879aSAndrew Shewmaker break; 35981640879aSAndrew Shewmaker } 35991640879aSAndrew Shewmaker return NOTIFY_OK; 36001640879aSAndrew Shewmaker } 36011640879aSAndrew Shewmaker 36021640879aSAndrew Shewmaker static struct notifier_block reserve_mem_nb = { 36031640879aSAndrew Shewmaker .notifier_call = reserve_mem_notifier, 36041640879aSAndrew Shewmaker }; 36051640879aSAndrew Shewmaker 36061640879aSAndrew Shewmaker static int __meminit init_reserve_notifier(void) 36071640879aSAndrew Shewmaker { 36081640879aSAndrew Shewmaker if (register_hotmemory_notifier(&reserve_mem_nb)) 3609b1de0d13SMitchel Humpherys pr_err("Failed registering memory add/remove notifier for admin reserve\n"); 36101640879aSAndrew Shewmaker 36111640879aSAndrew Shewmaker return 0; 36121640879aSAndrew Shewmaker } 3613a64fb3cdSPaul Gortmaker subsys_initcall(init_reserve_notifier); 3614