blob: 590df3862840e6d36aedb83087fe67373d3043c6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * mm/mmap.c
3 *
4 * Written by obz.
5 *
Alan Cox046c6882009-01-05 14:06:29 +00006 * Address space accounting code <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -07009#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10
Cyril Hrubise8420a82013-04-29 15:08:33 -070011#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/slab.h>
Alexey Dobriyan4af3c9c2007-10-16 23:29:23 -070013#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/mm.h>
Davidlohr Bueso615d6e82014-04-07 15:37:25 -070015#include <linux/vmacache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/shm.h>
17#include <linux/mman.h>
18#include <linux/pagemap.h>
19#include <linux/swap.h>
20#include <linux/syscalls.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080021#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/init.h>
23#include <linux/file.h>
24#include <linux/fs.h>
25#include <linux/personality.h>
26#include <linux/security.h>
27#include <linux/hugetlb.h>
Hugh Dickinsc01d5b32016-07-26 15:26:15 -070028#include <linux/shmem_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/profile.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040030#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/mount.h>
32#include <linux/mempolicy.h>
33#include <linux/rmap.h>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070034#include <linux/mmu_notifier.h>
Konstantin Khlebnikov82f71ae2014-08-06 16:06:36 -070035#include <linux/mmdebug.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020036#include <linux/perf_event.h>
Al Viro120a7952010-10-30 02:54:44 -040037#include <linux/audit.h>
Andrea Arcangelib15d00b2011-01-13 15:46:59 -080038#include <linux/khugepaged.h>
Srikar Dronamraju2b144492012-02-09 14:56:42 +053039#include <linux/uprobes.h>
Michel Lespinassed3737182012-12-11 16:01:38 -080040#include <linux/rbtree_augmented.h>
Andrew Shewmaker16408792013-04-29 15:08:12 -070041#include <linux/notifier.h>
42#include <linux/memory.h>
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -070043#include <linux/printk.h>
Andrea Arcangeli19a809a2015-09-04 15:46:24 -070044#include <linux/userfaultfd_k.h>
Konstantin Khlebnikovd977d562016-02-02 16:57:43 -080045#include <linux/moduleparam.h>
Dave Hansen62b5f7d2016-02-12 13:02:40 -080046#include <linux/pkeys.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#include <asm/uaccess.h>
49#include <asm/cacheflush.h>
50#include <asm/tlb.h>
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +020051#include <asm/mmu_context.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Jan Beulich42b77722008-07-23 21:27:10 -070053#include "internal.h"
54
Kirill Korotaev3a459752006-09-07 14:17:04 +040055#ifndef arch_mmap_check
56#define arch_mmap_check(addr, len, flags) (0)
57#endif
58
Daniel Cashmand07e2252016-01-14 15:19:53 -080059#ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS
60const int mmap_rnd_bits_min = CONFIG_ARCH_MMAP_RND_BITS_MIN;
61const int mmap_rnd_bits_max = CONFIG_ARCH_MMAP_RND_BITS_MAX;
62int mmap_rnd_bits __read_mostly = CONFIG_ARCH_MMAP_RND_BITS;
63#endif
64#ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS
65const int mmap_rnd_compat_bits_min = CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN;
66const int mmap_rnd_compat_bits_max = CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX;
67int mmap_rnd_compat_bits __read_mostly = CONFIG_ARCH_MMAP_RND_COMPAT_BITS;
68#endif
69
Konstantin Khlebnikovf4fcd552016-05-20 16:57:45 -070070static bool ignore_rlimit_data;
Konstantin Khlebnikovd977d562016-02-02 16:57:43 -080071core_param(ignore_rlimit_data, ignore_rlimit_data, bool, 0644);
Daniel Cashmand07e2252016-01-14 15:19:53 -080072
Hugh Dickinse0da3822005-04-19 13:29:15 -070073static void unmap_region(struct mm_struct *mm,
74 struct vm_area_struct *vma, struct vm_area_struct *prev,
75 unsigned long start, unsigned long end);
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/* description of effects of mapping type and prot in current implementation.
78 * this is due to the limited x86 page protection hardware. The expected
79 * behavior is in parens:
80 *
81 * map_type prot
82 * PROT_NONE PROT_READ PROT_WRITE PROT_EXEC
83 * MAP_SHARED r: (no) no r: (yes) yes r: (no) yes r: (no) yes
84 * w: (no) no w: (no) no w: (yes) yes w: (no) no
85 * x: (no) no x: (no) yes x: (no) yes x: (yes) yes
vishnu.pscc71aba2014-10-09 15:26:29 -070086 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 * MAP_PRIVATE r: (no) no r: (yes) yes r: (no) yes r: (no) yes
88 * w: (no) no w: (no) no w: (copy) copy w: (no) no
89 * x: (no) no x: (no) yes x: (no) yes x: (yes) yes
90 *
Catalin Marinascab15ce2016-08-11 18:44:50 +010091 * On arm64, PROT_EXEC has the following behaviour for both MAP_SHARED and
92 * MAP_PRIVATE:
93 * r: (no) no
94 * w: (no) no
95 * x: (yes) yes
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 */
97pgprot_t protection_map[16] = {
98 __P000, __P001, __P010, __P011, __P100, __P101, __P110, __P111,
99 __S000, __S001, __S010, __S011, __S100, __S101, __S110, __S111
100};
101
Hugh Dickins804af2c2006-07-26 21:39:49 +0100102pgprot_t vm_get_page_prot(unsigned long vm_flags)
103{
Dave Kleikampb845f312008-07-08 00:28:51 +1000104 return __pgprot(pgprot_val(protection_map[vm_flags &
105 (VM_READ|VM_WRITE|VM_EXEC|VM_SHARED)]) |
106 pgprot_val(arch_vm_get_page_prot(vm_flags)));
Hugh Dickins804af2c2006-07-26 21:39:49 +0100107}
108EXPORT_SYMBOL(vm_get_page_prot);
109
Peter Feiner64e45502014-10-13 15:55:46 -0700110static pgprot_t vm_pgprot_modify(pgprot_t oldprot, unsigned long vm_flags)
111{
112 return pgprot_modify(oldprot, vm_get_page_prot(vm_flags));
113}
114
115/* Update vma->vm_page_prot to reflect vma->vm_flags. */
116void vma_set_page_prot(struct vm_area_struct *vma)
117{
118 unsigned long vm_flags = vma->vm_flags;
Andrea Arcangeli6d2329f2016-10-07 17:01:22 -0700119 pgprot_t vm_page_prot;
Peter Feiner64e45502014-10-13 15:55:46 -0700120
Andrea Arcangeli6d2329f2016-10-07 17:01:22 -0700121 vm_page_prot = vm_pgprot_modify(vma->vm_page_prot, vm_flags);
122 if (vma_wants_writenotify(vma, vm_page_prot)) {
Peter Feiner64e45502014-10-13 15:55:46 -0700123 vm_flags &= ~VM_SHARED;
Andrea Arcangeli6d2329f2016-10-07 17:01:22 -0700124 vm_page_prot = vm_pgprot_modify(vm_page_prot, vm_flags);
Peter Feiner64e45502014-10-13 15:55:46 -0700125 }
Andrea Arcangeli6d2329f2016-10-07 17:01:22 -0700126 /* remove_protection_ptes reads vma->vm_page_prot without mmap_sem */
127 WRITE_ONCE(vma->vm_page_prot, vm_page_prot);
Peter Feiner64e45502014-10-13 15:55:46 -0700128}
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/*
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -0800131 * Requires inode->i_mapping->i_mmap_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 */
133static void __remove_shared_vm_struct(struct vm_area_struct *vma,
134 struct file *file, struct address_space *mapping)
135{
136 if (vma->vm_flags & VM_DENYWRITE)
Al Viro496ad9a2013-01-23 17:07:38 -0500137 atomic_inc(&file_inode(file)->i_writecount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 if (vma->vm_flags & VM_SHARED)
David Herrmann4bb5f5d2014-08-08 14:25:25 -0700139 mapping_unmap_writable(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 flush_dcache_mmap_lock(mapping);
Kirill A. Shutemov27ba0642015-02-10 14:09:59 -0800142 vma_interval_tree_remove(vma, &mapping->i_mmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 flush_dcache_mmap_unlock(mapping);
144}
145
146/*
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700147 * Unlink a file-based vm structure from its interval tree, to hide
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700148 * vma from rmap and vmtruncate before freeing its page tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 */
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700150void unlink_file_vma(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 struct file *file = vma->vm_file;
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 if (file) {
155 struct address_space *mapping = file->f_mapping;
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800156 i_mmap_lock_write(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 __remove_shared_vm_struct(vma, file, mapping);
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800158 i_mmap_unlock_write(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 }
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700160}
161
162/*
163 * Close a vm structure and free it, returning the next.
164 */
165static struct vm_area_struct *remove_vma(struct vm_area_struct *vma)
166{
167 struct vm_area_struct *next = vma->vm_next;
168
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700169 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (vma->vm_ops && vma->vm_ops->close)
171 vma->vm_ops->close(vma);
Konstantin Khlebnikove9714ac2012-10-08 16:28:54 -0700172 if (vma->vm_file)
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700173 fput(vma->vm_file);
Lee Schermerhornf0be3d32008-04-28 02:13:08 -0700174 mpol_put(vma_policy(vma));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 kmem_cache_free(vm_area_cachep, vma);
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700176 return next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
Linus Torvalds5d22fc22016-05-27 15:57:31 -0700179static int do_brk(unsigned long addr, unsigned long len);
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -0700180
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100181SYSCALL_DEFINE1(brk, unsigned long, brk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Cyrill Gorcunov8764b332014-10-09 15:27:32 -0700183 unsigned long retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 unsigned long newbrk, oldbrk;
185 struct mm_struct *mm = current->mm;
Jiri Kosinaa5b45922008-06-05 22:46:05 -0700186 unsigned long min_brk;
Michel Lespinasse128557f2013-02-22 16:32:40 -0800187 bool populate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Michal Hockodc0ef0d2016-05-23 16:25:27 -0700189 if (down_write_killable(&mm->mmap_sem))
190 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Jiri Kosinaa5b45922008-06-05 22:46:05 -0700192#ifdef CONFIG_COMPAT_BRK
Jiri Kosina5520e892011-01-13 15:47:23 -0800193 /*
194 * CONFIG_COMPAT_BRK can still be overridden by setting
195 * randomize_va_space to 2, which will still cause mm->start_brk
196 * to be arbitrarily shifted
197 */
Jiri Kosina4471a672011-04-14 15:22:09 -0700198 if (current->brk_randomized)
Jiri Kosina5520e892011-01-13 15:47:23 -0800199 min_brk = mm->start_brk;
200 else
201 min_brk = mm->end_data;
Jiri Kosinaa5b45922008-06-05 22:46:05 -0700202#else
203 min_brk = mm->start_brk;
204#endif
205 if (brk < min_brk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 goto out;
Ram Gupta1e624192006-04-10 22:52:57 -0700207
208 /*
209 * Check against rlimit here. If this check is done later after the test
210 * of oldbrk with newbrk then it can escape the test and let the data
211 * segment grow beyond its set limit the in case where the limit is
212 * not page aligned -Ram Gupta
213 */
Cyrill Gorcunov8764b332014-10-09 15:27:32 -0700214 if (check_data_rlimit(rlimit(RLIMIT_DATA), brk, mm->start_brk,
215 mm->end_data, mm->start_data))
Ram Gupta1e624192006-04-10 22:52:57 -0700216 goto out;
217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 newbrk = PAGE_ALIGN(brk);
219 oldbrk = PAGE_ALIGN(mm->brk);
220 if (oldbrk == newbrk)
221 goto set_brk;
222
223 /* Always allow shrinking brk. */
224 if (brk <= mm->brk) {
225 if (!do_munmap(mm, newbrk, oldbrk-newbrk))
226 goto set_brk;
227 goto out;
228 }
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 /* Check against existing mmap mappings. */
231 if (find_vma_intersection(mm, oldbrk, newbrk+PAGE_SIZE))
232 goto out;
233
234 /* Ok, looks good - let it rip. */
Linus Torvalds5d22fc22016-05-27 15:57:31 -0700235 if (do_brk(oldbrk, newbrk-oldbrk) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 goto out;
Michel Lespinasse128557f2013-02-22 16:32:40 -0800237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238set_brk:
239 mm->brk = brk;
Michel Lespinasse128557f2013-02-22 16:32:40 -0800240 populate = newbrk > oldbrk && (mm->def_flags & VM_LOCKED) != 0;
241 up_write(&mm->mmap_sem);
242 if (populate)
243 mm_populate(oldbrk, newbrk - oldbrk);
244 return brk;
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246out:
247 retval = mm->brk;
248 up_write(&mm->mmap_sem);
249 return retval;
250}
251
Michel Lespinassed3737182012-12-11 16:01:38 -0800252static long vma_compute_subtree_gap(struct vm_area_struct *vma)
253{
254 unsigned long max, subtree_gap;
255 max = vma->vm_start;
256 if (vma->vm_prev)
257 max -= vma->vm_prev->vm_end;
258 if (vma->vm_rb.rb_left) {
259 subtree_gap = rb_entry(vma->vm_rb.rb_left,
260 struct vm_area_struct, vm_rb)->rb_subtree_gap;
261 if (subtree_gap > max)
262 max = subtree_gap;
263 }
264 if (vma->vm_rb.rb_right) {
265 subtree_gap = rb_entry(vma->vm_rb.rb_right,
266 struct vm_area_struct, vm_rb)->rb_subtree_gap;
267 if (subtree_gap > max)
268 max = subtree_gap;
269 }
270 return max;
271}
272
Michel Lespinasseed8ea812012-10-08 16:31:45 -0700273#ifdef CONFIG_DEBUG_VM_RB
Andrea Arcangeliacf128d2016-02-05 15:36:13 -0800274static int browse_rb(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Andrea Arcangeliacf128d2016-02-05 15:36:13 -0800276 struct rb_root *root = &mm->mm_rb;
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800277 int i = 0, j, bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 struct rb_node *nd, *pn = NULL;
279 unsigned long prev = 0, pend = 0;
280
281 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
282 struct vm_area_struct *vma;
283 vma = rb_entry(nd, struct vm_area_struct, vm_rb);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800284 if (vma->vm_start < prev) {
Andrew Mortonff26f702014-10-09 15:28:19 -0700285 pr_emerg("vm_start %lx < prev %lx\n",
286 vma->vm_start, prev);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800287 bug = 1;
288 }
289 if (vma->vm_start < pend) {
Andrew Mortonff26f702014-10-09 15:28:19 -0700290 pr_emerg("vm_start %lx < pend %lx\n",
291 vma->vm_start, pend);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800292 bug = 1;
293 }
294 if (vma->vm_start > vma->vm_end) {
Andrew Mortonff26f702014-10-09 15:28:19 -0700295 pr_emerg("vm_start %lx > vm_end %lx\n",
296 vma->vm_start, vma->vm_end);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800297 bug = 1;
298 }
Andrea Arcangeliacf128d2016-02-05 15:36:13 -0800299 spin_lock(&mm->page_table_lock);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800300 if (vma->rb_subtree_gap != vma_compute_subtree_gap(vma)) {
Sasha Levin8542bdf2014-09-09 14:50:59 -0700301 pr_emerg("free gap %lx, correct %lx\n",
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800302 vma->rb_subtree_gap,
303 vma_compute_subtree_gap(vma));
304 bug = 1;
305 }
Andrea Arcangeliacf128d2016-02-05 15:36:13 -0800306 spin_unlock(&mm->page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 i++;
308 pn = nd;
David Millerd1af65d2007-02-28 20:13:13 -0800309 prev = vma->vm_start;
310 pend = vma->vm_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
312 j = 0;
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800313 for (nd = pn; nd; nd = rb_prev(nd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 j++;
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800315 if (i != j) {
Sasha Levin8542bdf2014-09-09 14:50:59 -0700316 pr_emerg("backwards %d, forwards %d\n", j, i);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800317 bug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800319 return bug ? -1 : i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
Michel Lespinassed3737182012-12-11 16:01:38 -0800322static void validate_mm_rb(struct rb_root *root, struct vm_area_struct *ignore)
323{
324 struct rb_node *nd;
325
326 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
327 struct vm_area_struct *vma;
328 vma = rb_entry(nd, struct vm_area_struct, vm_rb);
Sasha Levin96dad672014-10-09 15:28:39 -0700329 VM_BUG_ON_VMA(vma != ignore &&
330 vma->rb_subtree_gap != vma_compute_subtree_gap(vma),
331 vma);
Michel Lespinassed3737182012-12-11 16:01:38 -0800332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
Rashika Kheriaeafd4dc2014-04-03 14:48:03 -0700335static void validate_mm(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
337 int bug = 0;
338 int i = 0;
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800339 unsigned long highest_address = 0;
Michel Lespinasseed8ea812012-10-08 16:31:45 -0700340 struct vm_area_struct *vma = mm->mmap;
Andrew Mortonff26f702014-10-09 15:28:19 -0700341
Michel Lespinasseed8ea812012-10-08 16:31:45 -0700342 while (vma) {
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -0800343 struct anon_vma *anon_vma = vma->anon_vma;
Michel Lespinasseed8ea812012-10-08 16:31:45 -0700344 struct anon_vma_chain *avc;
Andrew Mortonff26f702014-10-09 15:28:19 -0700345
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -0800346 if (anon_vma) {
347 anon_vma_lock_read(anon_vma);
348 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
349 anon_vma_interval_tree_verify(avc);
350 anon_vma_unlock_read(anon_vma);
351 }
352
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800353 highest_address = vma->vm_end;
Michel Lespinasseed8ea812012-10-08 16:31:45 -0700354 vma = vma->vm_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 i++;
356 }
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800357 if (i != mm->map_count) {
Sasha Levin8542bdf2014-09-09 14:50:59 -0700358 pr_emerg("map_count %d vm_next %d\n", mm->map_count, i);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800359 bug = 1;
360 }
361 if (highest_address != mm->highest_vm_end) {
Sasha Levin8542bdf2014-09-09 14:50:59 -0700362 pr_emerg("mm->highest_vm_end %lx, found %lx\n",
Andrew Mortonff26f702014-10-09 15:28:19 -0700363 mm->highest_vm_end, highest_address);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800364 bug = 1;
365 }
Andrea Arcangeliacf128d2016-02-05 15:36:13 -0800366 i = browse_rb(mm);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800367 if (i != mm->map_count) {
Andrew Mortonff26f702014-10-09 15:28:19 -0700368 if (i != -1)
369 pr_emerg("map_count %d rb %d\n", mm->map_count, i);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800370 bug = 1;
371 }
Sasha Levin96dad672014-10-09 15:28:39 -0700372 VM_BUG_ON_MM(bug, mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374#else
Michel Lespinassed3737182012-12-11 16:01:38 -0800375#define validate_mm_rb(root, ignore) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376#define validate_mm(mm) do { } while (0)
377#endif
378
Michel Lespinassed3737182012-12-11 16:01:38 -0800379RB_DECLARE_CALLBACKS(static, vma_gap_callbacks, struct vm_area_struct, vm_rb,
380 unsigned long, rb_subtree_gap, vma_compute_subtree_gap)
381
382/*
383 * Update augmented rbtree rb_subtree_gap values after vma->vm_start or
384 * vma->vm_prev->vm_end values changed, without modifying the vma's position
385 * in the rbtree.
386 */
387static void vma_gap_update(struct vm_area_struct *vma)
388{
389 /*
390 * As it turns out, RB_DECLARE_CALLBACKS() already created a callback
391 * function that does exacltly what we want.
392 */
393 vma_gap_callbacks_propagate(&vma->vm_rb, NULL);
394}
395
396static inline void vma_rb_insert(struct vm_area_struct *vma,
397 struct rb_root *root)
398{
399 /* All rb_subtree_gap values must be consistent prior to insertion */
400 validate_mm_rb(root, NULL);
401
402 rb_insert_augmented(&vma->vm_rb, root, &vma_gap_callbacks);
403}
404
Andrea Arcangeli8f26e0b2016-10-07 17:01:37 -0700405static void __vma_rb_erase(struct vm_area_struct *vma, struct rb_root *root)
406{
407 /*
408 * Note rb_erase_augmented is a fairly large inline function,
409 * so make sure we instantiate it only once with our desired
410 * augmented rbtree callbacks.
411 */
412 rb_erase_augmented(&vma->vm_rb, root, &vma_gap_callbacks);
413}
414
415static __always_inline void vma_rb_erase_ignore(struct vm_area_struct *vma,
416 struct rb_root *root,
417 struct vm_area_struct *ignore)
418{
419 /*
420 * All rb_subtree_gap values must be consistent prior to erase,
421 * with the possible exception of the "next" vma being erased if
422 * next->vm_start was reduced.
423 */
424 validate_mm_rb(root, ignore);
425
426 __vma_rb_erase(vma, root);
427}
428
429static __always_inline void vma_rb_erase(struct vm_area_struct *vma,
430 struct rb_root *root)
Michel Lespinassed3737182012-12-11 16:01:38 -0800431{
432 /*
433 * All rb_subtree_gap values must be consistent prior to erase,
434 * with the possible exception of the vma being erased.
435 */
436 validate_mm_rb(root, vma);
437
Andrea Arcangeli8f26e0b2016-10-07 17:01:37 -0700438 __vma_rb_erase(vma, root);
Michel Lespinassed3737182012-12-11 16:01:38 -0800439}
440
Michel Lespinassebf181b92012-10-08 16:31:39 -0700441/*
442 * vma has some anon_vma assigned, and is already inserted on that
443 * anon_vma's interval trees.
444 *
445 * Before updating the vma's vm_start / vm_end / vm_pgoff fields, the
446 * vma must be removed from the anon_vma's interval trees using
447 * anon_vma_interval_tree_pre_update_vma().
448 *
449 * After the update, the vma will be reinserted using
450 * anon_vma_interval_tree_post_update_vma().
451 *
452 * The entire update must be protected by exclusive mmap_sem and by
453 * the root anon_vma's mutex.
454 */
455static inline void
456anon_vma_interval_tree_pre_update_vma(struct vm_area_struct *vma)
457{
458 struct anon_vma_chain *avc;
459
460 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
461 anon_vma_interval_tree_remove(avc, &avc->anon_vma->rb_root);
462}
463
464static inline void
465anon_vma_interval_tree_post_update_vma(struct vm_area_struct *vma)
466{
467 struct anon_vma_chain *avc;
468
469 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
470 anon_vma_interval_tree_insert(avc, &avc->anon_vma->rb_root);
471}
472
Hugh Dickins6597d782012-10-08 16:29:07 -0700473static int find_vma_links(struct mm_struct *mm, unsigned long addr,
474 unsigned long end, struct vm_area_struct **pprev,
475 struct rb_node ***rb_link, struct rb_node **rb_parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Hugh Dickins6597d782012-10-08 16:29:07 -0700477 struct rb_node **__rb_link, *__rb_parent, *rb_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 __rb_link = &mm->mm_rb.rb_node;
480 rb_prev = __rb_parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 while (*__rb_link) {
483 struct vm_area_struct *vma_tmp;
484
485 __rb_parent = *__rb_link;
486 vma_tmp = rb_entry(__rb_parent, struct vm_area_struct, vm_rb);
487
488 if (vma_tmp->vm_end > addr) {
Hugh Dickins6597d782012-10-08 16:29:07 -0700489 /* Fail if an existing vma overlaps the area */
490 if (vma_tmp->vm_start < end)
491 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 __rb_link = &__rb_parent->rb_left;
493 } else {
494 rb_prev = __rb_parent;
495 __rb_link = &__rb_parent->rb_right;
496 }
497 }
498
499 *pprev = NULL;
500 if (rb_prev)
501 *pprev = rb_entry(rb_prev, struct vm_area_struct, vm_rb);
502 *rb_link = __rb_link;
503 *rb_parent = __rb_parent;
Hugh Dickins6597d782012-10-08 16:29:07 -0700504 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506
Cyril Hrubise8420a82013-04-29 15:08:33 -0700507static unsigned long count_vma_pages_range(struct mm_struct *mm,
508 unsigned long addr, unsigned long end)
509{
510 unsigned long nr_pages = 0;
511 struct vm_area_struct *vma;
512
513 /* Find first overlaping mapping */
514 vma = find_vma_intersection(mm, addr, end);
515 if (!vma)
516 return 0;
517
518 nr_pages = (min(end, vma->vm_end) -
519 max(addr, vma->vm_start)) >> PAGE_SHIFT;
520
521 /* Iterate over the rest of the overlaps */
522 for (vma = vma->vm_next; vma; vma = vma->vm_next) {
523 unsigned long overlap_len;
524
525 if (vma->vm_start > end)
526 break;
527
528 overlap_len = min(end, vma->vm_end) - vma->vm_start;
529 nr_pages += overlap_len >> PAGE_SHIFT;
530 }
531
532 return nr_pages;
533}
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535void __vma_link_rb(struct mm_struct *mm, struct vm_area_struct *vma,
536 struct rb_node **rb_link, struct rb_node *rb_parent)
537{
Michel Lespinassed3737182012-12-11 16:01:38 -0800538 /* Update tracking information for the gap following the new vma. */
539 if (vma->vm_next)
540 vma_gap_update(vma->vm_next);
541 else
542 mm->highest_vm_end = vma->vm_end;
543
544 /*
545 * vma->vm_prev wasn't known when we followed the rbtree to find the
546 * correct insertion point for that vma. As a result, we could not
547 * update the vma vm_rb parents rb_subtree_gap values on the way down.
548 * So, we first insert the vma with a zero rb_subtree_gap value
549 * (to be consistent with what we did on the way down), and then
550 * immediately update the gap to the correct value. Finally we
551 * rebalance the rbtree after all augmented values have been set.
552 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 rb_link_node(&vma->vm_rb, rb_parent, rb_link);
Michel Lespinassed3737182012-12-11 16:01:38 -0800554 vma->rb_subtree_gap = 0;
555 vma_gap_update(vma);
556 vma_rb_insert(vma, &mm->mm_rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558
Denys Vlasenkocb8f4882008-10-18 20:27:01 -0700559static void __vma_link_file(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
ZhenwenXu48aae422009-01-06 14:40:21 -0800561 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 file = vma->vm_file;
564 if (file) {
565 struct address_space *mapping = file->f_mapping;
566
567 if (vma->vm_flags & VM_DENYWRITE)
Al Viro496ad9a2013-01-23 17:07:38 -0500568 atomic_dec(&file_inode(file)->i_writecount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 if (vma->vm_flags & VM_SHARED)
David Herrmann4bb5f5d2014-08-08 14:25:25 -0700570 atomic_inc(&mapping->i_mmap_writable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 flush_dcache_mmap_lock(mapping);
Kirill A. Shutemov27ba0642015-02-10 14:09:59 -0800573 vma_interval_tree_insert(vma, &mapping->i_mmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 flush_dcache_mmap_unlock(mapping);
575 }
576}
577
578static void
579__vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
580 struct vm_area_struct *prev, struct rb_node **rb_link,
581 struct rb_node *rb_parent)
582{
583 __vma_link_list(mm, vma, prev, rb_parent);
584 __vma_link_rb(mm, vma, rb_link, rb_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585}
586
587static void vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
588 struct vm_area_struct *prev, struct rb_node **rb_link,
589 struct rb_node *rb_parent)
590{
591 struct address_space *mapping = NULL;
592
Huang Shijie64ac4942014-06-04 16:07:33 -0700593 if (vma->vm_file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 mapping = vma->vm_file->f_mapping;
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800595 i_mmap_lock_write(mapping);
Huang Shijie64ac4942014-06-04 16:07:33 -0700596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598 __vma_link(mm, vma, prev, rb_link, rb_parent);
599 __vma_link_file(vma);
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (mapping)
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800602 i_mmap_unlock_write(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 mm->map_count++;
605 validate_mm(mm);
606}
607
608/*
Kautuk Consul88f6b4c2012-03-21 16:34:16 -0700609 * Helper for vma_adjust() in the split_vma insert case: insert a vma into the
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700610 * mm's list and rbtree. It has already been inserted into the interval tree.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 */
ZhenwenXu48aae422009-01-06 14:40:21 -0800612static void __insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
Hugh Dickins6597d782012-10-08 16:29:07 -0700614 struct vm_area_struct *prev;
ZhenwenXu48aae422009-01-06 14:40:21 -0800615 struct rb_node **rb_link, *rb_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Hugh Dickins6597d782012-10-08 16:29:07 -0700617 if (find_vma_links(mm, vma->vm_start, vma->vm_end,
618 &prev, &rb_link, &rb_parent))
619 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 __vma_link(mm, vma, prev, rb_link, rb_parent);
621 mm->map_count++;
622}
623
Andrea Arcangelie86f15e2016-10-07 17:01:28 -0700624static __always_inline void __vma_unlink_common(struct mm_struct *mm,
625 struct vm_area_struct *vma,
626 struct vm_area_struct *prev,
Andrea Arcangeli8f26e0b2016-10-07 17:01:37 -0700627 bool has_prev,
628 struct vm_area_struct *ignore)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Michel Lespinassed3737182012-12-11 16:01:38 -0800630 struct vm_area_struct *next;
Linus Torvalds297c5ee2010-08-20 16:24:55 -0700631
Andrea Arcangeli8f26e0b2016-10-07 17:01:37 -0700632 vma_rb_erase_ignore(vma, &mm->mm_rb, ignore);
Andrea Arcangelie86f15e2016-10-07 17:01:28 -0700633 next = vma->vm_next;
634 if (has_prev)
635 prev->vm_next = next;
636 else {
637 prev = vma->vm_prev;
638 if (prev)
639 prev->vm_next = next;
640 else
641 mm->mmap = next;
642 }
Linus Torvalds297c5ee2010-08-20 16:24:55 -0700643 if (next)
644 next->vm_prev = prev;
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700645
646 /* Kill the cache */
647 vmacache_invalidate(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
649
Andrea Arcangelie86f15e2016-10-07 17:01:28 -0700650static inline void __vma_unlink_prev(struct mm_struct *mm,
651 struct vm_area_struct *vma,
652 struct vm_area_struct *prev)
653{
Andrea Arcangeli8f26e0b2016-10-07 17:01:37 -0700654 __vma_unlink_common(mm, vma, prev, true, vma);
Andrea Arcangelie86f15e2016-10-07 17:01:28 -0700655}
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657/*
658 * We cannot adjust vm_start, vm_end, vm_pgoff fields of a vma that
659 * is already present in an i_mmap tree without adjusting the tree.
660 * The following helper function should be used when such adjustments
661 * are necessary. The "insert" vma (if any) is to be inserted
662 * before we drop the necessary locks.
663 */
Andrea Arcangelie86f15e2016-10-07 17:01:28 -0700664int __vma_adjust(struct vm_area_struct *vma, unsigned long start,
665 unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert,
666 struct vm_area_struct *expand)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
668 struct mm_struct *mm = vma->vm_mm;
Andrea Arcangelie86f15e2016-10-07 17:01:28 -0700669 struct vm_area_struct *next = vma->vm_next, *orig_vma = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 struct address_space *mapping = NULL;
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700671 struct rb_root *root = NULL;
Rik van Riel012f18002010-08-09 17:18:40 -0700672 struct anon_vma *anon_vma = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 struct file *file = vma->vm_file;
Michel Lespinassed3737182012-12-11 16:01:38 -0800674 bool start_changed = false, end_changed = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 long adjust_next = 0;
676 int remove_next = 0;
677
678 if (next && !insert) {
Kirill A. Shutemov734537c2016-07-28 15:49:01 -0700679 struct vm_area_struct *exporter = NULL, *importer = NULL;
Linus Torvalds287d97a2010-04-10 15:22:30 -0700680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (end >= next->vm_end) {
682 /*
683 * vma expands, overlapping all the next, and
684 * perhaps the one after too (mprotect case 6).
Andrea Arcangeli86d12e42016-10-07 17:01:34 -0700685 * The only other cases that gets here are
Andrea Arcangelie86f15e2016-10-07 17:01:28 -0700686 * case 1, case 7 and case 8.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 */
Andrea Arcangelie86f15e2016-10-07 17:01:28 -0700688 if (next == expand) {
689 /*
690 * The only case where we don't expand "vma"
691 * and we expand "next" instead is case 8.
692 */
693 VM_WARN_ON(end != next->vm_end);
694 /*
695 * remove_next == 3 means we're
696 * removing "vma" and that to do so we
697 * swapped "vma" and "next".
698 */
699 remove_next = 3;
700 VM_WARN_ON(file != next->vm_file);
701 swap(vma, next);
702 } else {
703 VM_WARN_ON(expand != vma);
704 /*
705 * case 1, 6, 7, remove_next == 2 is case 6,
706 * remove_next == 1 is case 1 or 7.
707 */
708 remove_next = 1 + (end > next->vm_end);
709 VM_WARN_ON(remove_next == 2 &&
710 end != next->vm_next->vm_end);
711 VM_WARN_ON(remove_next == 1 &&
712 end != next->vm_end);
713 /* trim end to next, for case 6 first pass */
714 end = next->vm_end;
715 }
716
Linus Torvalds287d97a2010-04-10 15:22:30 -0700717 exporter = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 importer = vma;
Kirill A. Shutemov734537c2016-07-28 15:49:01 -0700719
720 /*
721 * If next doesn't have anon_vma, import from vma after
722 * next, if the vma overlaps with it.
723 */
Andrea Arcangeli97a42cd2016-10-07 17:01:31 -0700724 if (remove_next == 2 && !next->anon_vma)
Kirill A. Shutemov734537c2016-07-28 15:49:01 -0700725 exporter = next->vm_next;
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 } else if (end > next->vm_start) {
728 /*
729 * vma expands, overlapping part of the next:
730 * mprotect case 5 shifting the boundary up.
731 */
732 adjust_next = (end - next->vm_start) >> PAGE_SHIFT;
Linus Torvalds287d97a2010-04-10 15:22:30 -0700733 exporter = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 importer = vma;
Andrea Arcangelie86f15e2016-10-07 17:01:28 -0700735 VM_WARN_ON(expand != importer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 } else if (end < vma->vm_end) {
737 /*
738 * vma shrinks, and !insert tells it's not
739 * split_vma inserting another: so it must be
740 * mprotect case 4 shifting the boundary down.
741 */
vishnu.pscc71aba2014-10-09 15:26:29 -0700742 adjust_next = -((vma->vm_end - end) >> PAGE_SHIFT);
Linus Torvalds287d97a2010-04-10 15:22:30 -0700743 exporter = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 importer = next;
Andrea Arcangelie86f15e2016-10-07 17:01:28 -0700745 VM_WARN_ON(expand != importer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Rik van Riel5beb4932010-03-05 13:42:07 -0800748 /*
749 * Easily overlooked: when mprotect shifts the boundary,
750 * make sure the expanding vma has anon_vma set if the
751 * shrinking vma had, to cover any anon pages imported.
752 */
Linus Torvalds287d97a2010-04-10 15:22:30 -0700753 if (exporter && exporter->anon_vma && !importer->anon_vma) {
Daniel Forrestc4ea95d2014-12-02 15:59:42 -0800754 int error;
755
Linus Torvalds287d97a2010-04-10 15:22:30 -0700756 importer->anon_vma = exporter->anon_vma;
Konstantin Khlebnikovb800c912015-01-11 16:54:06 +0300757 error = anon_vma_clone(importer, exporter);
Leon Yu3fe89b32015-03-25 15:55:11 -0700758 if (error)
Konstantin Khlebnikovb800c912015-01-11 16:54:06 +0300759 return error;
Rik van Riel5beb4932010-03-05 13:42:07 -0800760 }
761 }
Kirill A. Shutemov734537c2016-07-28 15:49:01 -0700762again:
Andrea Arcangelie86f15e2016-10-07 17:01:28 -0700763 vma_adjust_trans_huge(orig_vma, start, end, adjust_next);
Kirill A. Shutemov37f9f552016-07-26 15:25:48 -0700764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 if (file) {
766 mapping = file->f_mapping;
Kirill A. Shutemov27ba0642015-02-10 14:09:59 -0800767 root = &mapping->i_mmap;
768 uprobe_munmap(vma, vma->vm_start, vma->vm_end);
Srikar Dronamraju682968e2012-03-30 23:56:46 +0530769
Kirill A. Shutemov27ba0642015-02-10 14:09:59 -0800770 if (adjust_next)
771 uprobe_munmap(next, next->vm_start, next->vm_end);
Srikar Dronamraju682968e2012-03-30 23:56:46 +0530772
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800773 i_mmap_lock_write(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 if (insert) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 /*
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700776 * Put into interval tree now, so instantiated pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 * are visible to arm/parisc __flush_dcache_page
778 * throughout; but we cannot insert into address
779 * space until vma start or end is updated.
780 */
781 __vma_link_file(insert);
782 }
783 }
784
Michel Lespinassebf181b92012-10-08 16:31:39 -0700785 anon_vma = vma->anon_vma;
786 if (!anon_vma && adjust_next)
787 anon_vma = next->anon_vma;
788 if (anon_vma) {
Andrea Arcangelie86f15e2016-10-07 17:01:28 -0700789 VM_WARN_ON(adjust_next && next->anon_vma &&
790 anon_vma != next->anon_vma);
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000791 anon_vma_lock_write(anon_vma);
Michel Lespinassebf181b92012-10-08 16:31:39 -0700792 anon_vma_interval_tree_pre_update_vma(vma);
793 if (adjust_next)
794 anon_vma_interval_tree_pre_update_vma(next);
795 }
Rik van Riel012f18002010-08-09 17:18:40 -0700796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (root) {
798 flush_dcache_mmap_lock(mapping);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700799 vma_interval_tree_remove(vma, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if (adjust_next)
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700801 vma_interval_tree_remove(next, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
803
Michel Lespinassed3737182012-12-11 16:01:38 -0800804 if (start != vma->vm_start) {
805 vma->vm_start = start;
806 start_changed = true;
807 }
808 if (end != vma->vm_end) {
809 vma->vm_end = end;
810 end_changed = true;
811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 vma->vm_pgoff = pgoff;
813 if (adjust_next) {
814 next->vm_start += adjust_next << PAGE_SHIFT;
815 next->vm_pgoff += adjust_next;
816 }
817
818 if (root) {
819 if (adjust_next)
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700820 vma_interval_tree_insert(next, root);
821 vma_interval_tree_insert(vma, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 flush_dcache_mmap_unlock(mapping);
823 }
824
825 if (remove_next) {
826 /*
827 * vma_merge has merged next into vma, and needs
828 * us to remove next before dropping the locks.
829 */
Andrea Arcangelie86f15e2016-10-07 17:01:28 -0700830 if (remove_next != 3)
831 __vma_unlink_prev(mm, next, vma);
832 else
Andrea Arcangeli8f26e0b2016-10-07 17:01:37 -0700833 /*
834 * vma is not before next if they've been
835 * swapped.
836 *
837 * pre-swap() next->vm_start was reduced so
838 * tell validate_mm_rb to ignore pre-swap()
839 * "next" (which is stored in post-swap()
840 * "vma").
841 */
842 __vma_unlink_common(mm, next, NULL, false, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 if (file)
844 __remove_shared_vm_struct(next, file, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 } else if (insert) {
846 /*
847 * split_vma has split insert from vma, and needs
848 * us to insert it before dropping the locks
849 * (it may either follow vma or precede it).
850 */
851 __insert_vm_struct(mm, insert);
Michel Lespinassed3737182012-12-11 16:01:38 -0800852 } else {
853 if (start_changed)
854 vma_gap_update(vma);
855 if (end_changed) {
856 if (!next)
857 mm->highest_vm_end = end;
858 else if (!adjust_next)
859 vma_gap_update(next);
860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
862
Michel Lespinassebf181b92012-10-08 16:31:39 -0700863 if (anon_vma) {
864 anon_vma_interval_tree_post_update_vma(vma);
865 if (adjust_next)
866 anon_vma_interval_tree_post_update_vma(next);
Konstantin Khlebnikov08b52702013-02-22 16:34:40 -0800867 anon_vma_unlock_write(anon_vma);
Michel Lespinassebf181b92012-10-08 16:31:39 -0700868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 if (mapping)
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800870 i_mmap_unlock_write(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530872 if (root) {
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100873 uprobe_mmap(vma);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530874
875 if (adjust_next)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100876 uprobe_mmap(next);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530877 }
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if (remove_next) {
Matt Helsley925d1c42008-04-29 01:01:36 -0700880 if (file) {
Srikar Dronamrajucbc91f72012-04-11 16:05:27 +0530881 uprobe_munmap(next, next->vm_start, next->vm_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 fput(file);
Matt Helsley925d1c42008-04-29 01:01:36 -0700883 }
Rik van Riel5beb4932010-03-05 13:42:07 -0800884 if (next->anon_vma)
885 anon_vma_merge(vma, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 mm->map_count--;
Oleg Nesterov3964acd2013-07-31 13:53:28 -0700887 mpol_put(vma_policy(next));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 kmem_cache_free(vm_area_cachep, next);
889 /*
890 * In mprotect's case 6 (see comments on vma_merge),
891 * we must remove another next too. It would clutter
892 * up the code too much to do both in one go.
893 */
Andrea Arcangelie86f15e2016-10-07 17:01:28 -0700894 if (remove_next != 3) {
895 /*
896 * If "next" was removed and vma->vm_end was
897 * expanded (up) over it, in turn
898 * "next->vm_prev->vm_end" changed and the
899 * "vma->vm_next" gap must be updated.
900 */
901 next = vma->vm_next;
902 } else {
903 /*
904 * For the scope of the comment "next" and
905 * "vma" considered pre-swap(): if "vma" was
906 * removed, next->vm_start was expanded (down)
907 * over it and the "next" gap must be updated.
908 * Because of the swap() the post-swap() "vma"
909 * actually points to pre-swap() "next"
910 * (post-swap() "next" as opposed is now a
911 * dangling pointer).
912 */
913 next = vma;
914 }
Kirill A. Shutemov734537c2016-07-28 15:49:01 -0700915 if (remove_next == 2) {
916 remove_next = 1;
917 end = next->vm_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 goto again;
Kirill A. Shutemov734537c2016-07-28 15:49:01 -0700919 }
Michel Lespinassed3737182012-12-11 16:01:38 -0800920 else if (next)
921 vma_gap_update(next);
Andrea Arcangelifb8c41e2016-10-07 17:01:25 -0700922 else {
923 /*
924 * If remove_next == 2 we obviously can't
925 * reach this path.
926 *
927 * If remove_next == 3 we can't reach this
928 * path because pre-swap() next is always not
929 * NULL. pre-swap() "next" is not being
930 * removed and its next->vm_end is not altered
931 * (and furthermore "end" already matches
932 * next->vm_end in remove_next == 3).
933 *
934 * We reach this only in the remove_next == 1
935 * case if the "next" vma that was removed was
936 * the highest vma of the mm. However in such
937 * case next->vm_end == "end" and the extended
938 * "vma" has vma->vm_end == next->vm_end so
939 * mm->highest_vm_end doesn't need any update
940 * in remove_next == 1 case.
941 */
942 VM_WARN_ON(mm->highest_vm_end != end);
943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530945 if (insert && file)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100946 uprobe_mmap(insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 validate_mm(mm);
Rik van Riel5beb4932010-03-05 13:42:07 -0800949
950 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
953/*
954 * If the vma has a ->close operation then the driver probably needs to release
955 * per-vma resources, so we don't attempt to merge those.
956 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957static inline int is_mergeable_vma(struct vm_area_struct *vma,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -0700958 struct file *file, unsigned long vm_flags,
Colin Cross3e4578f2015-10-27 16:42:08 -0700959 struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
960 const char __user *anon_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961{
Cyrill Gorcunov34228d42014-01-23 15:53:42 -0800962 /*
963 * VM_SOFTDIRTY should not prevent from VMA merging, if we
964 * match the flags but dirty bit -- the caller should mark
965 * merged VMA as dirty. If dirty bit won't be excluded from
966 * comparison, we increase pressue on the memory system forcing
967 * the kernel to generate new VMAs when old one could be
968 * extended instead.
969 */
970 if ((vma->vm_flags ^ vm_flags) & ~VM_SOFTDIRTY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 return 0;
972 if (vma->vm_file != file)
973 return 0;
974 if (vma->vm_ops && vma->vm_ops->close)
975 return 0;
Andrea Arcangeli19a809a2015-09-04 15:46:24 -0700976 if (!is_mergeable_vm_userfaultfd_ctx(vma, vm_userfaultfd_ctx))
977 return 0;
Colin Cross3e4578f2015-10-27 16:42:08 -0700978 if (vma_get_anon_name(vma) != anon_name)
979 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 return 1;
981}
982
983static inline int is_mergeable_anon_vma(struct anon_vma *anon_vma1,
Shaohua Li965f55d2011-05-24 17:11:20 -0700984 struct anon_vma *anon_vma2,
985 struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
Shaohua Li965f55d2011-05-24 17:11:20 -0700987 /*
988 * The list_is_singular() test is to avoid merging VMA cloned from
989 * parents. This can improve scalability caused by anon_vma lock.
990 */
991 if ((!anon_vma1 || !anon_vma2) && (!vma ||
992 list_is_singular(&vma->anon_vma_chain)))
993 return 1;
994 return anon_vma1 == anon_vma2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995}
996
997/*
998 * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
999 * in front of (at a lower virtual address and file offset than) the vma.
1000 *
1001 * We cannot merge two vmas if they have differently assigned (non-NULL)
1002 * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
1003 *
1004 * We don't check here for the merged mmap wrapping around the end of pagecache
1005 * indices (16TB on ia32) because do_mmap_pgoff() does not permit mmap's which
1006 * wrap, nor mmaps which cover the final page at index -1UL.
1007 */
1008static int
1009can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -07001010 struct anon_vma *anon_vma, struct file *file,
1011 pgoff_t vm_pgoff,
Colin Cross3e4578f2015-10-27 16:42:08 -07001012 struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
1013 const char __user *anon_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014{
Colin Cross3e4578f2015-10-27 16:42:08 -07001015 if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx, anon_name) &&
Shaohua Li965f55d2011-05-24 17:11:20 -07001016 is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 if (vma->vm_pgoff == vm_pgoff)
1018 return 1;
1019 }
1020 return 0;
1021}
1022
1023/*
1024 * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
1025 * beyond (at a higher virtual address and file offset than) the vma.
1026 *
1027 * We cannot merge two vmas if they have differently assigned (non-NULL)
1028 * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
1029 */
1030static int
1031can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -07001032 struct anon_vma *anon_vma, struct file *file,
1033 pgoff_t vm_pgoff,
Colin Cross3e4578f2015-10-27 16:42:08 -07001034 struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
1035 const char __user *anon_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036{
Colin Cross3e4578f2015-10-27 16:42:08 -07001037 if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx, anon_name) &&
Shaohua Li965f55d2011-05-24 17:11:20 -07001038 is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 pgoff_t vm_pglen;
Libind6e93212013-07-03 15:01:26 -07001040 vm_pglen = vma_pages(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (vma->vm_pgoff + vm_pglen == vm_pgoff)
1042 return 1;
1043 }
1044 return 0;
1045}
1046
1047/*
Colin Cross3e4578f2015-10-27 16:42:08 -07001048 * Given a mapping request (addr,end,vm_flags,file,pgoff,anon_name),
1049 * figure out whether that can be merged with its predecessor or its
1050 * successor. Or both (it neatly fills a hole).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 *
1052 * In most cases - when called for mmap, brk or mremap - [addr,end) is
1053 * certain not to be mapped by the time vma_merge is called; but when
1054 * called for mprotect, it is certain to be already mapped (either at
1055 * an offset within prev, or at the start of next), and the flags of
1056 * this area are about to be changed to vm_flags - and the no-change
1057 * case has already been eliminated.
1058 *
1059 * The following mprotect cases have to be considered, where AAAA is
1060 * the area passed down from mprotect_fixup, never extending beyond one
1061 * vma, PPPPPP is the prev vma specified, and NNNNNN the next vma after:
1062 *
1063 * AAAA AAAA AAAA AAAA
1064 * PPPPPPNNNNNN PPPPPPNNNNNN PPPPPPNNNNNN PPPPNNNNXXXX
1065 * cannot merge might become might become might become
1066 * PPNNNNNNNNNN PPPPPPPPPPNN PPPPPPPPPPPP 6 or
1067 * mmap, brk or case 4 below case 5 below PPPPPPPPXXXX 7 or
Andrea Arcangelie86f15e2016-10-07 17:01:28 -07001068 * mremap move: PPPPXXXXXXXX 8
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 * AAAA
1070 * PPPP NNNN PPPPPPPPPPPP PPPPPPPPNNNN PPPPNNNNNNNN
1071 * might become case 1 below case 2 below case 3 below
1072 *
Andrea Arcangelie86f15e2016-10-07 17:01:28 -07001073 * It is important for case 8 that the the vma NNNN overlapping the
1074 * region AAAA is never going to extended over XXXX. Instead XXXX must
1075 * be extended in region AAAA and NNNN must be removed. This way in
1076 * all cases where vma_merge succeeds, the moment vma_adjust drops the
1077 * rmap_locks, the properties of the merged vma will be already
1078 * correct for the whole merged range. Some of those properties like
1079 * vm_page_prot/vm_flags may be accessed by rmap_walks and they must
1080 * be correct for the whole merged range immediately after the
1081 * rmap_locks are released. Otherwise if XXXX would be removed and
1082 * NNNN would be extended over the XXXX range, remove_migration_ptes
1083 * or other rmap walkers (if working on addresses beyond the "end"
1084 * parameter) may establish ptes with the wrong permissions of NNNN
1085 * instead of the right permissions of XXXX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 */
1087struct vm_area_struct *vma_merge(struct mm_struct *mm,
1088 struct vm_area_struct *prev, unsigned long addr,
1089 unsigned long end, unsigned long vm_flags,
vishnu.pscc71aba2014-10-09 15:26:29 -07001090 struct anon_vma *anon_vma, struct file *file,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -07001091 pgoff_t pgoff, struct mempolicy *policy,
Colin Cross3e4578f2015-10-27 16:42:08 -07001092 struct vm_userfaultfd_ctx vm_userfaultfd_ctx,
1093 const char __user *anon_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
1095 pgoff_t pglen = (end - addr) >> PAGE_SHIFT;
1096 struct vm_area_struct *area, *next;
Rik van Riel5beb4932010-03-05 13:42:07 -08001097 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099 /*
1100 * We later require that vma->vm_flags == vm_flags,
1101 * so this tests vma->vm_flags & VM_SPECIAL, too.
1102 */
1103 if (vm_flags & VM_SPECIAL)
1104 return NULL;
1105
1106 if (prev)
1107 next = prev->vm_next;
1108 else
1109 next = mm->mmap;
1110 area = next;
Andrea Arcangelie86f15e2016-10-07 17:01:28 -07001111 if (area && area->vm_end == end) /* cases 6, 7, 8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 next = next->vm_next;
1113
Andrea Arcangelie86f15e2016-10-07 17:01:28 -07001114 /* verify some invariant that must be enforced by the caller */
1115 VM_WARN_ON(prev && addr <= prev->vm_start);
1116 VM_WARN_ON(area && end > area->vm_end);
1117 VM_WARN_ON(addr >= end);
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 /*
1120 * Can it merge with the predecessor?
1121 */
1122 if (prev && prev->vm_end == addr &&
vishnu.pscc71aba2014-10-09 15:26:29 -07001123 mpol_equal(vma_policy(prev), policy) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 can_vma_merge_after(prev, vm_flags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -07001125 anon_vma, file, pgoff,
Colin Cross3e4578f2015-10-27 16:42:08 -07001126 vm_userfaultfd_ctx,
1127 anon_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 /*
1129 * OK, it can. Can we now merge in the successor as well?
1130 */
1131 if (next && end == next->vm_start &&
1132 mpol_equal(policy, vma_policy(next)) &&
1133 can_vma_merge_before(next, vm_flags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -07001134 anon_vma, file,
1135 pgoff+pglen,
Colin Cross3e4578f2015-10-27 16:42:08 -07001136 vm_userfaultfd_ctx,
1137 anon_name) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 is_mergeable_anon_vma(prev->anon_vma,
Shaohua Li965f55d2011-05-24 17:11:20 -07001139 next->anon_vma, NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 /* cases 1, 6 */
Andrea Arcangelie86f15e2016-10-07 17:01:28 -07001141 err = __vma_adjust(prev, prev->vm_start,
1142 next->vm_end, prev->vm_pgoff, NULL,
1143 prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 } else /* cases 2, 5, 7 */
Andrea Arcangelie86f15e2016-10-07 17:01:28 -07001145 err = __vma_adjust(prev, prev->vm_start,
1146 end, prev->vm_pgoff, NULL, prev);
Rik van Riel5beb4932010-03-05 13:42:07 -08001147 if (err)
1148 return NULL;
David Rientjes6d50e602014-10-29 14:50:31 -07001149 khugepaged_enter_vma_merge(prev, vm_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 return prev;
1151 }
1152
1153 /*
1154 * Can this new request be merged in front of next?
1155 */
1156 if (next && end == next->vm_start &&
vishnu.pscc71aba2014-10-09 15:26:29 -07001157 mpol_equal(policy, vma_policy(next)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 can_vma_merge_before(next, vm_flags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -07001159 anon_vma, file, pgoff+pglen,
Colin Cross3e4578f2015-10-27 16:42:08 -07001160 vm_userfaultfd_ctx,
1161 anon_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 if (prev && addr < prev->vm_end) /* case 4 */
Andrea Arcangelie86f15e2016-10-07 17:01:28 -07001163 err = __vma_adjust(prev, prev->vm_start,
1164 addr, prev->vm_pgoff, NULL, next);
1165 else { /* cases 3, 8 */
1166 err = __vma_adjust(area, addr, next->vm_end,
1167 next->vm_pgoff - pglen, NULL, next);
1168 /*
1169 * In case 3 area is already equal to next and
1170 * this is a noop, but in case 8 "area" has
1171 * been removed and next was expanded over it.
1172 */
1173 area = next;
1174 }
Rik van Riel5beb4932010-03-05 13:42:07 -08001175 if (err)
1176 return NULL;
David Rientjes6d50e602014-10-29 14:50:31 -07001177 khugepaged_enter_vma_merge(area, vm_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 return area;
1179 }
1180
1181 return NULL;
1182}
1183
1184/*
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001185 * Rough compatbility check to quickly see if it's even worth looking
1186 * at sharing an anon_vma.
1187 *
1188 * They need to have the same vm_file, and the flags can only differ
1189 * in things that mprotect may change.
1190 *
1191 * NOTE! The fact that we share an anon_vma doesn't _have_ to mean that
1192 * we can merge the two vma's. For example, we refuse to merge a vma if
1193 * there is a vm_ops->close() function, because that indicates that the
1194 * driver is doing some kind of reference counting. But that doesn't
1195 * really matter for the anon_vma sharing case.
1196 */
1197static int anon_vma_compatible(struct vm_area_struct *a, struct vm_area_struct *b)
1198{
1199 return a->vm_end == b->vm_start &&
1200 mpol_equal(vma_policy(a), vma_policy(b)) &&
1201 a->vm_file == b->vm_file &&
Cyrill Gorcunov34228d42014-01-23 15:53:42 -08001202 !((a->vm_flags ^ b->vm_flags) & ~(VM_READ|VM_WRITE|VM_EXEC|VM_SOFTDIRTY)) &&
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001203 b->vm_pgoff == a->vm_pgoff + ((b->vm_start - a->vm_start) >> PAGE_SHIFT);
1204}
1205
1206/*
1207 * Do some basic sanity checking to see if we can re-use the anon_vma
1208 * from 'old'. The 'a'/'b' vma's are in VM order - one of them will be
1209 * the same as 'old', the other will be the new one that is trying
1210 * to share the anon_vma.
1211 *
1212 * NOTE! This runs with mm_sem held for reading, so it is possible that
1213 * the anon_vma of 'old' is concurrently in the process of being set up
1214 * by another page fault trying to merge _that_. But that's ok: if it
1215 * is being set up, that automatically means that it will be a singleton
1216 * acceptable for merging, so we can do all of this optimistically. But
Jason Low4db0c3c2015-04-15 16:14:08 -07001217 * we do that READ_ONCE() to make sure that we never re-load the pointer.
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001218 *
1219 * IOW: that the "list_is_singular()" test on the anon_vma_chain only
1220 * matters for the 'stable anon_vma' case (ie the thing we want to avoid
1221 * is to return an anon_vma that is "complex" due to having gone through
1222 * a fork).
1223 *
1224 * We also make sure that the two vma's are compatible (adjacent,
1225 * and with the same memory policies). That's all stable, even with just
1226 * a read lock on the mm_sem.
1227 */
1228static struct anon_vma *reusable_anon_vma(struct vm_area_struct *old, struct vm_area_struct *a, struct vm_area_struct *b)
1229{
1230 if (anon_vma_compatible(a, b)) {
Jason Low4db0c3c2015-04-15 16:14:08 -07001231 struct anon_vma *anon_vma = READ_ONCE(old->anon_vma);
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001232
1233 if (anon_vma && list_is_singular(&old->anon_vma_chain))
1234 return anon_vma;
1235 }
1236 return NULL;
1237}
1238
1239/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 * find_mergeable_anon_vma is used by anon_vma_prepare, to check
1241 * neighbouring vmas for a suitable anon_vma, before it goes off
1242 * to allocate a new anon_vma. It checks because a repetitive
1243 * sequence of mprotects and faults may otherwise lead to distinct
1244 * anon_vmas being allocated, preventing vma merge in subsequent
1245 * mprotect.
1246 */
1247struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma)
1248{
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001249 struct anon_vma *anon_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 struct vm_area_struct *near;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
1252 near = vma->vm_next;
1253 if (!near)
1254 goto try_prev;
1255
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001256 anon_vma = reusable_anon_vma(near, vma, near);
1257 if (anon_vma)
1258 return anon_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259try_prev:
Linus Torvalds9be34c92011-06-16 00:35:09 -07001260 near = vma->vm_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 if (!near)
1262 goto none;
1263
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001264 anon_vma = reusable_anon_vma(near, near, vma);
1265 if (anon_vma)
1266 return anon_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267none:
1268 /*
1269 * There's no absolute need to look only at touching neighbours:
1270 * we could search further afield for "compatible" anon_vmas.
1271 * But it would probably just be a waste of time searching,
1272 * or lead to too many vmas hanging off the same anon_vma.
1273 * We're trying to allow mprotect remerging later on,
1274 * not trying to minimize memory used for anon_vmas.
1275 */
1276 return NULL;
1277}
1278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279/*
Al Viro40401532012-02-13 03:58:52 +00001280 * If a hint addr is less than mmap_min_addr change hint to be as
1281 * low as possible but still greater than mmap_min_addr
1282 */
1283static inline unsigned long round_hint_to_min(unsigned long hint)
1284{
1285 hint &= PAGE_MASK;
1286 if (((void *)hint != NULL) &&
1287 (hint < mmap_min_addr))
1288 return PAGE_ALIGN(mmap_min_addr);
1289 return hint;
1290}
1291
Davidlohr Bueso363ee172014-01-21 15:49:15 -08001292static inline int mlock_future_check(struct mm_struct *mm,
1293 unsigned long flags,
1294 unsigned long len)
1295{
1296 unsigned long locked, lock_limit;
1297
1298 /* mlock MCL_FUTURE? */
1299 if (flags & VM_LOCKED) {
1300 locked = len >> PAGE_SHIFT;
1301 locked += mm->locked_vm;
1302 lock_limit = rlimit(RLIMIT_MEMLOCK);
1303 lock_limit >>= PAGE_SHIFT;
1304 if (locked > lock_limit && !capable(CAP_IPC_LOCK))
1305 return -EAGAIN;
1306 }
1307 return 0;
1308}
1309
Al Viro40401532012-02-13 03:58:52 +00001310/*
Jianjun Kong27f5de72009-09-17 19:26:26 -07001311 * The caller must hold down_write(&current->mm->mmap_sem).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 */
Oleg Nesterov1fcfd8d2015-09-09 15:39:29 -07001313unsigned long do_mmap(struct file *file, unsigned long addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 unsigned long len, unsigned long prot,
Oleg Nesterov1fcfd8d2015-09-09 15:39:29 -07001315 unsigned long flags, vm_flags_t vm_flags,
1316 unsigned long pgoff, unsigned long *populate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
vishnu.pscc71aba2014-10-09 15:26:29 -07001318 struct mm_struct *mm = current->mm;
Dave Hansen62b5f7d2016-02-12 13:02:40 -08001319 int pkey = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Michel Lespinasse41badc12013-02-22 16:32:47 -08001321 *populate = 0;
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001322
Piotr Kwapulinskie37609b2015-06-24 16:58:39 -07001323 if (!len)
1324 return -EINVAL;
1325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 /*
1327 * Does the application expect PROT_READ to imply PROT_EXEC?
1328 *
1329 * (the exception is when the underlying filesystem is noexec
1330 * mounted, in which case we dont add PROT_EXEC.)
1331 */
1332 if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
Eric W. Biederman90f85722015-06-29 14:42:03 -05001333 if (!(file && path_noexec(&file->f_path)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 prot |= PROT_EXEC;
1335
Eric Paris7cd94142007-11-26 18:47:40 -05001336 if (!(flags & MAP_FIXED))
1337 addr = round_hint_to_min(addr);
1338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 /* Careful about overflows.. */
1340 len = PAGE_ALIGN(len);
Al Viro9206de92009-12-03 15:23:11 -05001341 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 return -ENOMEM;
1343
1344 /* offset overflow? */
1345 if ((pgoff + (len >> PAGE_SHIFT)) < pgoff)
vishnu.pscc71aba2014-10-09 15:26:29 -07001346 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 /* Too many mappings? */
1349 if (mm->map_count > sysctl_max_map_count)
1350 return -ENOMEM;
1351
1352 /* Obtain the address to map to. we verify (or select) it and ensure
1353 * that it represents a valid section of the address space.
1354 */
1355 addr = get_unmapped_area(file, addr, len, pgoff, flags);
Alexander Kuleshovde1741a2015-11-05 18:46:54 -08001356 if (offset_in_page(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 return addr;
1358
Dave Hansen62b5f7d2016-02-12 13:02:40 -08001359 if (prot == PROT_EXEC) {
1360 pkey = execute_only_pkey(mm);
1361 if (pkey < 0)
1362 pkey = 0;
1363 }
1364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 /* Do simple checking here so the lower-level routines won't have
1366 * to. we assume access permissions have been handled by the open
1367 * of the memory object, so we don't do any here.
1368 */
Dave Hansen62b5f7d2016-02-12 13:02:40 -08001369 vm_flags |= calc_vm_prot_bits(prot, pkey) | calc_vm_flag_bits(flags) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
1371
Huang Shijiecdf7b342009-09-21 17:03:36 -07001372 if (flags & MAP_LOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 if (!can_do_mlock())
1374 return -EPERM;
Rik van Rielba470de2008-10-18 20:26:50 -07001375
Davidlohr Bueso363ee172014-01-21 15:49:15 -08001376 if (mlock_future_check(mm, vm_flags, len))
1377 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 if (file) {
Oleg Nesterov077bf222013-09-11 14:20:19 -07001380 struct inode *inode = file_inode(file);
1381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 switch (flags & MAP_TYPE) {
1383 case MAP_SHARED:
1384 if ((prot&PROT_WRITE) && !(file->f_mode&FMODE_WRITE))
1385 return -EACCES;
1386
1387 /*
1388 * Make sure we don't allow writing to an append-only
1389 * file..
1390 */
1391 if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE))
1392 return -EACCES;
1393
1394 /*
1395 * Make sure there are no mandatory locks on the file.
1396 */
Jeff Laytond7a06982014-03-10 09:54:15 -04001397 if (locks_verify_locked(file))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 return -EAGAIN;
1399
1400 vm_flags |= VM_SHARED | VM_MAYSHARE;
1401 if (!(file->f_mode & FMODE_WRITE))
1402 vm_flags &= ~(VM_MAYWRITE | VM_SHARED);
1403
1404 /* fall through */
1405 case MAP_PRIVATE:
1406 if (!(file->f_mode & FMODE_READ))
1407 return -EACCES;
Eric W. Biederman90f85722015-06-29 14:42:03 -05001408 if (path_noexec(&file->f_path)) {
Linus Torvalds80c56062006-10-15 14:09:55 -07001409 if (vm_flags & VM_EXEC)
1410 return -EPERM;
1411 vm_flags &= ~VM_MAYEXEC;
1412 }
Linus Torvalds80c56062006-10-15 14:09:55 -07001413
Al Viro72c2d532013-09-22 16:27:52 -04001414 if (!file->f_op->mmap)
Linus Torvalds80c56062006-10-15 14:09:55 -07001415 return -ENODEV;
Oleg Nesterovb2c56e42013-09-11 14:20:18 -07001416 if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1417 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 break;
1419
1420 default:
1421 return -EINVAL;
1422 }
1423 } else {
1424 switch (flags & MAP_TYPE) {
1425 case MAP_SHARED:
Oleg Nesterovb2c56e42013-09-11 14:20:18 -07001426 if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1427 return -EINVAL;
Tejun Heoce363942008-09-03 16:09:47 +02001428 /*
1429 * Ignore pgoff.
1430 */
1431 pgoff = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 vm_flags |= VM_SHARED | VM_MAYSHARE;
1433 break;
1434 case MAP_PRIVATE:
1435 /*
1436 * Set pgoff according to addr for anon_vma.
1437 */
1438 pgoff = addr >> PAGE_SHIFT;
1439 break;
1440 default:
1441 return -EINVAL;
1442 }
1443 }
1444
Michel Lespinassec22c0d62013-02-22 16:32:43 -08001445 /*
1446 * Set 'VM_NORESERVE' if we should not account for the
1447 * memory use of this mapping.
1448 */
1449 if (flags & MAP_NORESERVE) {
1450 /* We honor MAP_NORESERVE if allowed to overcommit */
1451 if (sysctl_overcommit_memory != OVERCOMMIT_NEVER)
1452 vm_flags |= VM_NORESERVE;
1453
1454 /* hugetlb applies strict overcommit unless MAP_NORESERVE */
1455 if (file && is_file_hugepages(file))
1456 vm_flags |= VM_NORESERVE;
1457 }
1458
1459 addr = mmap_region(file, addr, len, vm_flags, pgoff);
Michel Lespinasse09a9f1d2013-03-28 16:26:23 -07001460 if (!IS_ERR_VALUE(addr) &&
1461 ((vm_flags & VM_LOCKED) ||
1462 (flags & (MAP_POPULATE | MAP_NONBLOCK)) == MAP_POPULATE))
Michel Lespinasse41badc12013-02-22 16:32:47 -08001463 *populate = len;
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001464 return addr;
Miklos Szeredi0165ab42007-07-15 23:38:26 -07001465}
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001466
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001467SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len,
1468 unsigned long, prot, unsigned long, flags,
1469 unsigned long, fd, unsigned long, pgoff)
1470{
1471 struct file *file = NULL;
Chen Gang1e3ee142015-11-05 18:48:35 -08001472 unsigned long retval;
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001473
1474 if (!(flags & MAP_ANONYMOUS)) {
Al Viro120a7952010-10-30 02:54:44 -04001475 audit_mmap_fd(fd, flags);
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001476 file = fget(fd);
1477 if (!file)
Chen Gang1e3ee142015-11-05 18:48:35 -08001478 return -EBADF;
Naoya Horiguchiaf73e4d2013-05-07 16:18:13 -07001479 if (is_file_hugepages(file))
1480 len = ALIGN(len, huge_page_size(hstate_file(file)));
Jörn Engel493af572013-07-08 16:00:26 -07001481 retval = -EINVAL;
1482 if (unlikely(flags & MAP_HUGETLB && !is_file_hugepages(file)))
1483 goto out_fput;
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001484 } else if (flags & MAP_HUGETLB) {
1485 struct user_struct *user = NULL;
Andrew Mortonc103a4d2013-07-08 16:01:08 -07001486 struct hstate *hs;
Naoya Horiguchiaf73e4d2013-05-07 16:18:13 -07001487
Andrew Mortonc103a4d2013-07-08 16:01:08 -07001488 hs = hstate_sizelog((flags >> MAP_HUGE_SHIFT) & SHM_HUGE_MASK);
Li Zefan091d0d52013-05-09 15:08:15 +08001489 if (!hs)
1490 return -EINVAL;
1491
1492 len = ALIGN(len, huge_page_size(hs));
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001493 /*
1494 * VM_NORESERVE is used because the reservations will be
1495 * taken when vm_ops->mmap() is called
1496 * A dummy user value is used because we are not locking
1497 * memory so no accounting is necessary
1498 */
Naoya Horiguchiaf73e4d2013-05-07 16:18:13 -07001499 file = hugetlb_file_setup(HUGETLB_ANON_FILE, len,
Andi Kleen42d73952012-12-11 16:01:34 -08001500 VM_NORESERVE,
1501 &user, HUGETLB_ANONHUGE_INODE,
1502 (flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK);
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001503 if (IS_ERR(file))
1504 return PTR_ERR(file);
1505 }
1506
1507 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
1508
Michal Hocko9fbeb5a2016-05-23 16:25:30 -07001509 retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff);
Jörn Engel493af572013-07-08 16:00:26 -07001510out_fput:
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001511 if (file)
1512 fput(file);
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001513 return retval;
1514}
1515
Christoph Hellwiga4679372010-03-10 15:21:15 -08001516#ifdef __ARCH_WANT_SYS_OLD_MMAP
1517struct mmap_arg_struct {
1518 unsigned long addr;
1519 unsigned long len;
1520 unsigned long prot;
1521 unsigned long flags;
1522 unsigned long fd;
1523 unsigned long offset;
1524};
1525
1526SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg)
1527{
1528 struct mmap_arg_struct a;
1529
1530 if (copy_from_user(&a, arg, sizeof(a)))
1531 return -EFAULT;
Alexander Kuleshovde1741a2015-11-05 18:46:54 -08001532 if (offset_in_page(a.offset))
Christoph Hellwiga4679372010-03-10 15:21:15 -08001533 return -EINVAL;
1534
1535 return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
1536 a.offset >> PAGE_SHIFT);
1537}
1538#endif /* __ARCH_WANT_SYS_OLD_MMAP */
1539
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001540/*
1541 * Some shared mappigns will want the pages marked read-only
1542 * to track write events. If so, we'll downgrade vm_page_prot
1543 * to the private version (using protection_map[] without the
1544 * VM_SHARED bit).
1545 */
Andrea Arcangeli6d2329f2016-10-07 17:01:22 -07001546int vma_wants_writenotify(struct vm_area_struct *vma, pgprot_t vm_page_prot)
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001547{
KOSAKI Motohiroca16d142011-05-26 19:16:19 +09001548 vm_flags_t vm_flags = vma->vm_flags;
Kirill A. Shutemov8a044462015-09-22 14:59:12 -07001549 const struct vm_operations_struct *vm_ops = vma->vm_ops;
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001550
1551 /* If it was private or non-writable, the write bit is already clear */
1552 if ((vm_flags & (VM_WRITE|VM_SHARED)) != ((VM_WRITE|VM_SHARED)))
1553 return 0;
1554
1555 /* The backer wishes to know when pages are first written to? */
Kirill A. Shutemov8a044462015-09-22 14:59:12 -07001556 if (vm_ops && (vm_ops->page_mkwrite || vm_ops->pfn_mkwrite))
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001557 return 1;
1558
Peter Feiner64e45502014-10-13 15:55:46 -07001559 /* The open routine did something to the protections that pgprot_modify
1560 * won't preserve? */
Andrea Arcangeli6d2329f2016-10-07 17:01:22 -07001561 if (pgprot_val(vm_page_prot) !=
1562 pgprot_val(vm_pgprot_modify(vm_page_prot, vm_flags)))
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001563 return 0;
1564
Peter Feiner64e45502014-10-13 15:55:46 -07001565 /* Do we need to track softdirty? */
1566 if (IS_ENABLED(CONFIG_MEM_SOFT_DIRTY) && !(vm_flags & VM_SOFTDIRTY))
1567 return 1;
1568
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001569 /* Specialty mapping? */
Konstantin Khlebnikov4b6e1e32012-10-08 16:28:40 -07001570 if (vm_flags & VM_PFNMAP)
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001571 return 0;
1572
1573 /* Can the mapping track the dirty pages? */
1574 return vma->vm_file && vma->vm_file->f_mapping &&
1575 mapping_cap_account_dirty(vma->vm_file->f_mapping);
1576}
1577
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001578/*
1579 * We account for memory if it's a private writeable mapping,
Mel Gorman5a6fe122009-02-10 14:02:27 +00001580 * not hugepages and VM_NORESERVE wasn't set.
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001581 */
KOSAKI Motohiroca16d142011-05-26 19:16:19 +09001582static inline int accountable_mapping(struct file *file, vm_flags_t vm_flags)
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001583{
Mel Gorman5a6fe122009-02-10 14:02:27 +00001584 /*
1585 * hugetlb has its own accounting separate from the core VM
1586 * VM_HUGETLB may not be set yet so we cannot check for that flag.
1587 */
1588 if (file && is_file_hugepages(file))
1589 return 0;
1590
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001591 return (vm_flags & (VM_NORESERVE | VM_SHARED | VM_WRITE)) == VM_WRITE;
1592}
1593
Miklos Szeredi0165ab42007-07-15 23:38:26 -07001594unsigned long mmap_region(struct file *file, unsigned long addr,
Michel Lespinassec22c0d62013-02-22 16:32:43 -08001595 unsigned long len, vm_flags_t vm_flags, unsigned long pgoff)
Miklos Szeredi0165ab42007-07-15 23:38:26 -07001596{
1597 struct mm_struct *mm = current->mm;
1598 struct vm_area_struct *vma, *prev;
Miklos Szeredi0165ab42007-07-15 23:38:26 -07001599 int error;
1600 struct rb_node **rb_link, *rb_parent;
1601 unsigned long charged = 0;
Miklos Szeredi0165ab42007-07-15 23:38:26 -07001602
Cyril Hrubise8420a82013-04-29 15:08:33 -07001603 /* Check against address space limit. */
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08001604 if (!may_expand_vm(mm, vm_flags, len >> PAGE_SHIFT)) {
Cyril Hrubise8420a82013-04-29 15:08:33 -07001605 unsigned long nr_pages;
1606
1607 /*
1608 * MAP_FIXED may remove pages of mappings that intersects with
1609 * requested mapping. Account for the pages it would unmap.
1610 */
Cyril Hrubise8420a82013-04-29 15:08:33 -07001611 nr_pages = count_vma_pages_range(mm, addr, addr + len);
1612
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08001613 if (!may_expand_vm(mm, vm_flags,
1614 (len >> PAGE_SHIFT) - nr_pages))
Cyril Hrubise8420a82013-04-29 15:08:33 -07001615 return -ENOMEM;
1616 }
1617
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 /* Clear old maps */
Rasmus Villemoes9fcd1452015-04-15 16:14:32 -07001619 while (find_vma_links(mm, addr, addr + len, &prev, &rb_link,
1620 &rb_parent)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 if (do_munmap(mm, addr, len))
1622 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 }
1624
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001625 /*
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001626 * Private writable mapping: check memory availability
1627 */
Mel Gorman5a6fe122009-02-10 14:02:27 +00001628 if (accountable_mapping(file, vm_flags)) {
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001629 charged = len >> PAGE_SHIFT;
Al Viro191c5422012-02-13 03:58:52 +00001630 if (security_vm_enough_memory_mm(mm, charged))
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001631 return -ENOMEM;
1632 vm_flags |= VM_ACCOUNT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 }
1634
1635 /*
Linus Torvaldsde33c8d2009-01-29 17:46:42 -08001636 * Can we just expand an old mapping?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 */
Andrea Arcangeli19a809a2015-09-04 15:46:24 -07001638 vma = vma_merge(mm, prev, addr, addr + len, vm_flags,
Colin Cross3e4578f2015-10-27 16:42:08 -07001639 NULL, file, pgoff, NULL, NULL_VM_UFFD_CTX, NULL);
Linus Torvaldsde33c8d2009-01-29 17:46:42 -08001640 if (vma)
1641 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
1643 /*
1644 * Determine the object being mapped and call the appropriate
1645 * specific mapper. the address has already been validated, but
1646 * not unmapped, but the maps are removed from the list.
1647 */
Pekka Enbergc5e3b832006-03-25 03:06:43 -08001648 vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 if (!vma) {
1650 error = -ENOMEM;
1651 goto unacct_error;
1652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
1654 vma->vm_mm = mm;
1655 vma->vm_start = addr;
1656 vma->vm_end = addr + len;
1657 vma->vm_flags = vm_flags;
Coly Li3ed75eb2007-10-18 23:39:15 -07001658 vma->vm_page_prot = vm_get_page_prot(vm_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 vma->vm_pgoff = pgoff;
Rik van Riel5beb4932010-03-05 13:42:07 -08001660 INIT_LIST_HEAD(&vma->anon_vma_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
1662 if (file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 if (vm_flags & VM_DENYWRITE) {
1664 error = deny_write_access(file);
1665 if (error)
1666 goto free_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 }
David Herrmann4bb5f5d2014-08-08 14:25:25 -07001668 if (vm_flags & VM_SHARED) {
1669 error = mapping_map_writable(file->f_mapping);
1670 if (error)
1671 goto allow_write_and_free_vma;
1672 }
1673
1674 /* ->mmap() can change vma->vm_file, but must guarantee that
1675 * vma_link() below can deny write-access if VM_DENYWRITE is set
1676 * and map writably if VM_SHARED is set. This usually means the
1677 * new file must not have been exposed to user-space, yet.
1678 */
Al Virocb0942b2012-08-27 14:48:26 -04001679 vma->vm_file = get_file(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 error = file->f_op->mmap(file, vma);
1681 if (error)
1682 goto unmap_and_free_vma;
Huang Shijief8dbf0a72009-09-21 17:03:41 -07001683
1684 /* Can addr have changed??
1685 *
1686 * Answer: Yes, several device drivers can do it in their
1687 * f_op->mmap method. -DaveM
Joonsoo Kim2897b4d2012-12-12 13:51:53 -08001688 * Bug: If addr is changed, prev, rb_link, rb_parent should
1689 * be updated for vma_link()
Huang Shijief8dbf0a72009-09-21 17:03:41 -07001690 */
Joonsoo Kim2897b4d2012-12-12 13:51:53 -08001691 WARN_ON_ONCE(addr != vma->vm_start);
1692
Huang Shijief8dbf0a72009-09-21 17:03:41 -07001693 addr = vma->vm_start;
Huang Shijief8dbf0a72009-09-21 17:03:41 -07001694 vm_flags = vma->vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 } else if (vm_flags & VM_SHARED) {
1696 error = shmem_zero_setup(vma);
1697 if (error)
1698 goto free_vma;
1699 }
1700
Linus Torvaldsde33c8d2009-01-29 17:46:42 -08001701 vma_link(mm, vma, prev, rb_link, rb_parent);
Oleg Nesterov4d3d5b42008-04-28 02:12:10 -07001702 /* Once vma denies write, undo our temporary denial count */
David Herrmann4bb5f5d2014-08-08 14:25:25 -07001703 if (file) {
1704 if (vm_flags & VM_SHARED)
1705 mapping_unmap_writable(file->f_mapping);
1706 if (vm_flags & VM_DENYWRITE)
1707 allow_write_access(file);
1708 }
Oleg Nesterove8686772013-09-11 14:20:20 -07001709 file = vma->vm_file;
Oleg Nesterov4d3d5b42008-04-28 02:12:10 -07001710out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001711 perf_event_mmap(vma);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02001712
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08001713 vm_stat_account(mm, vm_flags, len >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 if (vm_flags & VM_LOCKED) {
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001715 if (!((vm_flags & VM_SPECIAL) || is_vm_hugetlb_page(vma) ||
1716 vma == get_gate_vma(current->mm)))
KOSAKI Motohiro06f9d8c2010-03-05 13:41:43 -08001717 mm->locked_vm += (len >> PAGE_SHIFT);
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001718 else
Eric B Munsonde60f5f2015-11-05 18:51:36 -08001719 vma->vm_flags &= VM_LOCKED_CLEAR_MASK;
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001720 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301721
Oleg Nesterovc7a3a882012-08-19 19:10:42 +02001722 if (file)
1723 uprobe_mmap(vma);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301724
Cyrill Gorcunovd9104d12013-09-11 14:22:24 -07001725 /*
1726 * New (or expanded) vma always get soft dirty status.
1727 * Otherwise user-space soft-dirty page tracker won't
1728 * be able to distinguish situation when vma area unmapped,
1729 * then new mapped in-place (which must be aimed as
1730 * a completely new data area).
1731 */
1732 vma->vm_flags |= VM_SOFTDIRTY;
1733
Peter Feiner64e45502014-10-13 15:55:46 -07001734 vma_set_page_prot(vma);
1735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 return addr;
1737
1738unmap_and_free_vma:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 vma->vm_file = NULL;
1740 fput(file);
1741
1742 /* Undo any partial mapping done by a device driver. */
Hugh Dickinse0da3822005-04-19 13:29:15 -07001743 unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end);
1744 charged = 0;
David Herrmann4bb5f5d2014-08-08 14:25:25 -07001745 if (vm_flags & VM_SHARED)
1746 mapping_unmap_writable(file->f_mapping);
1747allow_write_and_free_vma:
1748 if (vm_flags & VM_DENYWRITE)
1749 allow_write_access(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750free_vma:
1751 kmem_cache_free(vm_area_cachep, vma);
1752unacct_error:
1753 if (charged)
1754 vm_unacct_memory(charged);
1755 return error;
1756}
1757
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001758unsigned long unmapped_area(struct vm_unmapped_area_info *info)
1759{
1760 /*
1761 * We implement the search by looking for an rbtree node that
1762 * immediately follows a suitable gap. That is,
1763 * - gap_start = vma->vm_prev->vm_end <= info->high_limit - length;
1764 * - gap_end = vma->vm_start >= info->low_limit + length;
1765 * - gap_end - gap_start >= length
1766 */
1767
1768 struct mm_struct *mm = current->mm;
1769 struct vm_area_struct *vma;
1770 unsigned long length, low_limit, high_limit, gap_start, gap_end;
1771
1772 /* Adjust search length to account for worst case alignment overhead */
1773 length = info->length + info->align_mask;
1774 if (length < info->length)
1775 return -ENOMEM;
1776
1777 /* Adjust search limits by the desired length */
1778 if (info->high_limit < length)
1779 return -ENOMEM;
1780 high_limit = info->high_limit - length;
1781
1782 if (info->low_limit > high_limit)
1783 return -ENOMEM;
1784 low_limit = info->low_limit + length;
1785
1786 /* Check if rbtree root looks promising */
1787 if (RB_EMPTY_ROOT(&mm->mm_rb))
1788 goto check_highest;
1789 vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb);
1790 if (vma->rb_subtree_gap < length)
1791 goto check_highest;
1792
1793 while (true) {
1794 /* Visit left subtree if it looks promising */
1795 gap_end = vma->vm_start;
1796 if (gap_end >= low_limit && vma->vm_rb.rb_left) {
1797 struct vm_area_struct *left =
1798 rb_entry(vma->vm_rb.rb_left,
1799 struct vm_area_struct, vm_rb);
1800 if (left->rb_subtree_gap >= length) {
1801 vma = left;
1802 continue;
1803 }
1804 }
1805
1806 gap_start = vma->vm_prev ? vma->vm_prev->vm_end : 0;
1807check_current:
1808 /* Check if current node has a suitable gap */
1809 if (gap_start > high_limit)
1810 return -ENOMEM;
1811 if (gap_end >= low_limit && gap_end - gap_start >= length)
1812 goto found;
1813
1814 /* Visit right subtree if it looks promising */
1815 if (vma->vm_rb.rb_right) {
1816 struct vm_area_struct *right =
1817 rb_entry(vma->vm_rb.rb_right,
1818 struct vm_area_struct, vm_rb);
1819 if (right->rb_subtree_gap >= length) {
1820 vma = right;
1821 continue;
1822 }
1823 }
1824
1825 /* Go back up the rbtree to find next candidate node */
1826 while (true) {
1827 struct rb_node *prev = &vma->vm_rb;
1828 if (!rb_parent(prev))
1829 goto check_highest;
1830 vma = rb_entry(rb_parent(prev),
1831 struct vm_area_struct, vm_rb);
1832 if (prev == vma->vm_rb.rb_left) {
1833 gap_start = vma->vm_prev->vm_end;
1834 gap_end = vma->vm_start;
1835 goto check_current;
1836 }
1837 }
1838 }
1839
1840check_highest:
1841 /* Check highest gap, which does not precede any rbtree node */
1842 gap_start = mm->highest_vm_end;
1843 gap_end = ULONG_MAX; /* Only for VM_BUG_ON below */
1844 if (gap_start > high_limit)
1845 return -ENOMEM;
1846
1847found:
1848 /* We found a suitable gap. Clip it with the original low_limit. */
1849 if (gap_start < info->low_limit)
1850 gap_start = info->low_limit;
1851
1852 /* Adjust gap address to the desired alignment */
1853 gap_start += (info->align_offset - gap_start) & info->align_mask;
1854
1855 VM_BUG_ON(gap_start + info->length > info->high_limit);
1856 VM_BUG_ON(gap_start + info->length > gap_end);
1857 return gap_start;
1858}
1859
1860unsigned long unmapped_area_topdown(struct vm_unmapped_area_info *info)
1861{
1862 struct mm_struct *mm = current->mm;
1863 struct vm_area_struct *vma;
1864 unsigned long length, low_limit, high_limit, gap_start, gap_end;
1865
1866 /* Adjust search length to account for worst case alignment overhead */
1867 length = info->length + info->align_mask;
1868 if (length < info->length)
1869 return -ENOMEM;
1870
1871 /*
1872 * Adjust search limits by the desired length.
1873 * See implementation comment at top of unmapped_area().
1874 */
1875 gap_end = info->high_limit;
1876 if (gap_end < length)
1877 return -ENOMEM;
1878 high_limit = gap_end - length;
1879
1880 if (info->low_limit > high_limit)
1881 return -ENOMEM;
1882 low_limit = info->low_limit + length;
1883
1884 /* Check highest gap, which does not precede any rbtree node */
1885 gap_start = mm->highest_vm_end;
1886 if (gap_start <= high_limit)
1887 goto found_highest;
1888
1889 /* Check if rbtree root looks promising */
1890 if (RB_EMPTY_ROOT(&mm->mm_rb))
1891 return -ENOMEM;
1892 vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb);
1893 if (vma->rb_subtree_gap < length)
1894 return -ENOMEM;
1895
1896 while (true) {
1897 /* Visit right subtree if it looks promising */
1898 gap_start = vma->vm_prev ? vma->vm_prev->vm_end : 0;
1899 if (gap_start <= high_limit && vma->vm_rb.rb_right) {
1900 struct vm_area_struct *right =
1901 rb_entry(vma->vm_rb.rb_right,
1902 struct vm_area_struct, vm_rb);
1903 if (right->rb_subtree_gap >= length) {
1904 vma = right;
1905 continue;
1906 }
1907 }
1908
1909check_current:
1910 /* Check if current node has a suitable gap */
1911 gap_end = vma->vm_start;
1912 if (gap_end < low_limit)
1913 return -ENOMEM;
1914 if (gap_start <= high_limit && gap_end - gap_start >= length)
1915 goto found;
1916
1917 /* Visit left subtree if it looks promising */
1918 if (vma->vm_rb.rb_left) {
1919 struct vm_area_struct *left =
1920 rb_entry(vma->vm_rb.rb_left,
1921 struct vm_area_struct, vm_rb);
1922 if (left->rb_subtree_gap >= length) {
1923 vma = left;
1924 continue;
1925 }
1926 }
1927
1928 /* Go back up the rbtree to find next candidate node */
1929 while (true) {
1930 struct rb_node *prev = &vma->vm_rb;
1931 if (!rb_parent(prev))
1932 return -ENOMEM;
1933 vma = rb_entry(rb_parent(prev),
1934 struct vm_area_struct, vm_rb);
1935 if (prev == vma->vm_rb.rb_right) {
1936 gap_start = vma->vm_prev ?
1937 vma->vm_prev->vm_end : 0;
1938 goto check_current;
1939 }
1940 }
1941 }
1942
1943found:
1944 /* We found a suitable gap. Clip it with the original high_limit. */
1945 if (gap_end > info->high_limit)
1946 gap_end = info->high_limit;
1947
1948found_highest:
1949 /* Compute highest gap address at the desired alignment */
1950 gap_end -= info->length;
1951 gap_end -= (gap_end - info->align_offset) & info->align_mask;
1952
1953 VM_BUG_ON(gap_end < info->low_limit);
1954 VM_BUG_ON(gap_end < gap_start);
1955 return gap_end;
1956}
1957
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958/* Get an address range which is currently unmapped.
1959 * For shmat() with addr=0.
1960 *
1961 * Ugly calling convention alert:
1962 * Return value with the low bits set means error value,
1963 * ie
1964 * if (ret & ~PAGE_MASK)
1965 * error = ret;
1966 *
1967 * This function "knows" that -ENOMEM has the bits set.
1968 */
1969#ifndef HAVE_ARCH_UNMAPPED_AREA
1970unsigned long
1971arch_get_unmapped_area(struct file *filp, unsigned long addr,
1972 unsigned long len, unsigned long pgoff, unsigned long flags)
1973{
1974 struct mm_struct *mm = current->mm;
1975 struct vm_area_struct *vma;
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001976 struct vm_unmapped_area_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
Akira Takeuchi2afc7452013-11-12 15:08:21 -08001978 if (len > TASK_SIZE - mmap_min_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 return -ENOMEM;
1980
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07001981 if (flags & MAP_FIXED)
1982 return addr;
1983
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 if (addr) {
1985 addr = PAGE_ALIGN(addr);
1986 vma = find_vma(mm, addr);
Akira Takeuchi2afc7452013-11-12 15:08:21 -08001987 if (TASK_SIZE - len >= addr && addr >= mmap_min_addr &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 (!vma || addr + len <= vma->vm_start))
1989 return addr;
1990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001992 info.flags = 0;
1993 info.length = len;
Heiko Carstens4e99b022013-11-12 15:07:54 -08001994 info.low_limit = mm->mmap_base;
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001995 info.high_limit = TASK_SIZE;
1996 info.align_mask = 0;
1997 return vm_unmapped_area(&info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998}
vishnu.pscc71aba2014-10-09 15:26:29 -07001999#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001/*
2002 * This mmap-allocator allocates new areas top-down from below the
2003 * stack's low limit (the base):
2004 */
2005#ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
2006unsigned long
2007arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
2008 const unsigned long len, const unsigned long pgoff,
2009 const unsigned long flags)
2010{
2011 struct vm_area_struct *vma;
2012 struct mm_struct *mm = current->mm;
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08002013 unsigned long addr = addr0;
2014 struct vm_unmapped_area_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
2016 /* requested length too big for entire address space */
Akira Takeuchi2afc7452013-11-12 15:08:21 -08002017 if (len > TASK_SIZE - mmap_min_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 return -ENOMEM;
2019
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07002020 if (flags & MAP_FIXED)
2021 return addr;
2022
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 /* requesting a specific address */
2024 if (addr) {
2025 addr = PAGE_ALIGN(addr);
2026 vma = find_vma(mm, addr);
Akira Takeuchi2afc7452013-11-12 15:08:21 -08002027 if (TASK_SIZE - len >= addr && addr >= mmap_min_addr &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 (!vma || addr + len <= vma->vm_start))
2029 return addr;
2030 }
2031
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08002032 info.flags = VM_UNMAPPED_AREA_TOPDOWN;
2033 info.length = len;
Akira Takeuchi2afc7452013-11-12 15:08:21 -08002034 info.low_limit = max(PAGE_SIZE, mmap_min_addr);
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08002035 info.high_limit = mm->mmap_base;
2036 info.align_mask = 0;
2037 addr = vm_unmapped_area(&info);
Xiao Guangrongb716ad92012-03-21 16:33:56 -07002038
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 /*
2040 * A failed mmap() very likely causes application failure,
2041 * so fall back to the bottom-up function here. This scenario
2042 * can happen with large stack limits and large mmap()
2043 * allocations.
2044 */
Alexander Kuleshovde1741a2015-11-05 18:46:54 -08002045 if (offset_in_page(addr)) {
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08002046 VM_BUG_ON(addr != -ENOMEM);
2047 info.flags = 0;
2048 info.low_limit = TASK_UNMAPPED_BASE;
2049 info.high_limit = TASK_SIZE;
2050 addr = vm_unmapped_area(&info);
2051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
2053 return addr;
2054}
2055#endif
2056
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057unsigned long
2058get_unmapped_area(struct file *file, unsigned long addr, unsigned long len,
2059 unsigned long pgoff, unsigned long flags)
2060{
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07002061 unsigned long (*get_area)(struct file *, unsigned long,
2062 unsigned long, unsigned long, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
Al Viro9206de92009-12-03 15:23:11 -05002064 unsigned long error = arch_mmap_check(addr, len, flags);
2065 if (error)
2066 return error;
2067
2068 /* Careful about overflows.. */
2069 if (len > TASK_SIZE)
2070 return -ENOMEM;
2071
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07002072 get_area = current->mm->get_unmapped_area;
Hugh Dickinsc01d5b32016-07-26 15:26:15 -07002073 if (file) {
2074 if (file->f_op->get_unmapped_area)
2075 get_area = file->f_op->get_unmapped_area;
2076 } else if (flags & MAP_SHARED) {
2077 /*
2078 * mmap_region() will call shmem_zero_setup() to create a file,
2079 * so use shmem's get_unmapped_area in case it can be huge.
2080 * do_mmap_pgoff() will clear pgoff, so match alignment.
2081 */
2082 pgoff = 0;
2083 get_area = shmem_get_unmapped_area;
2084 }
2085
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07002086 addr = get_area(file, addr, len, pgoff, flags);
2087 if (IS_ERR_VALUE(addr))
2088 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
Linus Torvalds07ab67c2005-05-19 22:43:37 -07002090 if (addr > TASK_SIZE - len)
2091 return -ENOMEM;
Alexander Kuleshovde1741a2015-11-05 18:46:54 -08002092 if (offset_in_page(addr))
Linus Torvalds07ab67c2005-05-19 22:43:37 -07002093 return -EINVAL;
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07002094
Al Viro9ac4ed42012-05-30 17:13:15 -04002095 error = security_mmap_addr(addr);
2096 return error ? error : addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097}
2098
2099EXPORT_SYMBOL(get_unmapped_area);
2100
2101/* Look up the first VMA which satisfies addr < vm_end, NULL if none. */
ZhenwenXu48aae422009-01-06 14:40:21 -08002102struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103{
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07002104 struct rb_node *rb_node;
2105 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Rajman Mekaco841e31e2012-05-29 15:06:21 -07002107 /* Check the cache first. */
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07002108 vma = vmacache_find(mm, addr);
2109 if (likely(vma))
2110 return vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07002112 rb_node = mm->mm_rb.rb_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07002114 while (rb_node) {
2115 struct vm_area_struct *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07002117 tmp = rb_entry(rb_node, struct vm_area_struct, vm_rb);
Rajman Mekaco841e31e2012-05-29 15:06:21 -07002118
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07002119 if (tmp->vm_end > addr) {
2120 vma = tmp;
2121 if (tmp->vm_start <= addr)
2122 break;
2123 rb_node = rb_node->rb_left;
2124 } else
2125 rb_node = rb_node->rb_right;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 }
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07002127
2128 if (vma)
2129 vmacache_update(addr, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 return vma;
2131}
2132
2133EXPORT_SYMBOL(find_vma);
2134
KOSAKI Motohiro6bd48372012-01-10 15:08:07 -08002135/*
2136 * Same as find_vma, but also return a pointer to the previous VMA in *pprev.
KOSAKI Motohiro6bd48372012-01-10 15:08:07 -08002137 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138struct vm_area_struct *
2139find_vma_prev(struct mm_struct *mm, unsigned long addr,
2140 struct vm_area_struct **pprev)
2141{
KOSAKI Motohiro6bd48372012-01-10 15:08:07 -08002142 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
KOSAKI Motohiro6bd48372012-01-10 15:08:07 -08002144 vma = find_vma(mm, addr);
Mikulas Patocka83cd9042012-03-04 19:52:03 -05002145 if (vma) {
2146 *pprev = vma->vm_prev;
2147 } else {
2148 struct rb_node *rb_node = mm->mm_rb.rb_node;
2149 *pprev = NULL;
2150 while (rb_node) {
2151 *pprev = rb_entry(rb_node, struct vm_area_struct, vm_rb);
2152 rb_node = rb_node->rb_right;
2153 }
2154 }
KOSAKI Motohiro6bd48372012-01-10 15:08:07 -08002155 return vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156}
2157
2158/*
2159 * Verify that the stack growth is acceptable and
2160 * update accounting. This is shared with both the
2161 * grow-up and grow-down cases.
2162 */
ZhenwenXu48aae422009-01-06 14:40:21 -08002163static int acct_stack_growth(struct vm_area_struct *vma, unsigned long size, unsigned long grow)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164{
2165 struct mm_struct *mm = vma->vm_mm;
2166 struct rlimit *rlim = current->signal->rlim;
Linus Torvalds690eac52015-01-11 11:33:57 -08002167 unsigned long new_start, actual_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
2169 /* address space limit tests */
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002170 if (!may_expand_vm(mm, vma->vm_flags, grow))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 return -ENOMEM;
2172
2173 /* Stack limit test */
Linus Torvalds690eac52015-01-11 11:33:57 -08002174 actual_size = size;
2175 if (size && (vma->vm_flags & (VM_GROWSUP | VM_GROWSDOWN)))
2176 actual_size -= PAGE_SIZE;
Jason Low4db0c3c2015-04-15 16:14:08 -07002177 if (actual_size > READ_ONCE(rlim[RLIMIT_STACK].rlim_cur))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 return -ENOMEM;
2179
2180 /* mlock limit tests */
2181 if (vma->vm_flags & VM_LOCKED) {
2182 unsigned long locked;
2183 unsigned long limit;
2184 locked = mm->locked_vm + grow;
Jason Low4db0c3c2015-04-15 16:14:08 -07002185 limit = READ_ONCE(rlim[RLIMIT_MEMLOCK].rlim_cur);
Jiri Slaby59e99e52010-03-05 13:41:44 -08002186 limit >>= PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 if (locked > limit && !capable(CAP_IPC_LOCK))
2188 return -ENOMEM;
2189 }
2190
Adam Litke0d59a012007-01-30 14:35:39 -08002191 /* Check to ensure the stack will not grow into a hugetlb-only region */
2192 new_start = (vma->vm_flags & VM_GROWSUP) ? vma->vm_start :
2193 vma->vm_end - size;
2194 if (is_hugepage_only_range(vma->vm_mm, new_start, size))
2195 return -EFAULT;
2196
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 /*
2198 * Overcommit.. This must be the final test, as it will
2199 * update security statistics.
2200 */
Hugh Dickins05fa1992009-04-16 21:58:12 +01002201 if (security_vm_enough_memory_mm(mm, grow))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 return -ENOMEM;
2203
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 return 0;
2205}
2206
Hugh Dickins46dea3d2005-10-29 18:16:20 -07002207#if defined(CONFIG_STACK_GROWSUP) || defined(CONFIG_IA64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208/*
Hugh Dickins46dea3d2005-10-29 18:16:20 -07002209 * PA-RISC uses this for its stack; IA64 for its Register Backing Store.
2210 * vma is the last one with address > vma->vm_end. Have to extend vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 */
Hugh Dickins46dea3d2005-10-29 18:16:20 -07002212int expand_upwards(struct vm_area_struct *vma, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213{
Oleg Nesterov09357812015-11-05 18:48:17 -08002214 struct mm_struct *mm = vma->vm_mm;
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002215 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216
2217 if (!(vma->vm_flags & VM_GROWSUP))
2218 return -EFAULT;
2219
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002220 /* Guard against wrapping around to address 0. */
2221 if (address < PAGE_ALIGN(address+4))
2222 address = PAGE_ALIGN(address+4);
2223 else
2224 return -ENOMEM;
2225
2226 /* We must make sure the anon_vma is allocated. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 if (unlikely(anon_vma_prepare(vma)))
2228 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
2230 /*
2231 * vma->vm_start/vm_end cannot change under us because the caller
2232 * is required to hold the mmap_sem in read mode. We need the
2233 * anon_vma lock to serialize against concurrent expand_stacks.
2234 */
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002235 anon_vma_lock_write(vma->anon_vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
2237 /* Somebody else might have raced and expanded it already */
2238 if (address > vma->vm_end) {
2239 unsigned long size, grow;
2240
2241 size = address - vma->vm_start;
2242 grow = (address - vma->vm_end) >> PAGE_SHIFT;
2243
Hugh Dickins42c36f62011-05-09 17:44:42 -07002244 error = -ENOMEM;
2245 if (vma->vm_pgoff + (size >> PAGE_SHIFT) >= vma->vm_pgoff) {
2246 error = acct_stack_growth(vma, size, grow);
2247 if (!error) {
Michel Lespinasse41289972012-12-12 13:52:25 -08002248 /*
2249 * vma_gap_update() doesn't support concurrent
2250 * updates, but we only hold a shared mmap_sem
2251 * lock here, so we need to protect against
2252 * concurrent vma expansions.
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002253 * anon_vma_lock_write() doesn't help here, as
Michel Lespinasse41289972012-12-12 13:52:25 -08002254 * we don't guarantee that all growable vmas
2255 * in a mm share the same root anon vma.
2256 * So, we reuse mm->page_table_lock to guard
2257 * against concurrent vma expansions.
2258 */
Oleg Nesterov09357812015-11-05 18:48:17 -08002259 spin_lock(&mm->page_table_lock);
Oleg Nesterov87e88272015-11-05 18:48:14 -08002260 if (vma->vm_flags & VM_LOCKED)
Oleg Nesterov09357812015-11-05 18:48:17 -08002261 mm->locked_vm += grow;
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002262 vm_stat_account(mm, vma->vm_flags, grow);
Michel Lespinassebf181b92012-10-08 16:31:39 -07002263 anon_vma_interval_tree_pre_update_vma(vma);
Hugh Dickins42c36f62011-05-09 17:44:42 -07002264 vma->vm_end = address;
Michel Lespinassebf181b92012-10-08 16:31:39 -07002265 anon_vma_interval_tree_post_update_vma(vma);
Michel Lespinassed3737182012-12-11 16:01:38 -08002266 if (vma->vm_next)
2267 vma_gap_update(vma->vm_next);
2268 else
Oleg Nesterov09357812015-11-05 18:48:17 -08002269 mm->highest_vm_end = address;
2270 spin_unlock(&mm->page_table_lock);
Michel Lespinasse41289972012-12-12 13:52:25 -08002271
Hugh Dickins42c36f62011-05-09 17:44:42 -07002272 perf_event_mmap(vma);
2273 }
Eric B Munson3af9e852010-05-18 15:30:49 +01002274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 }
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002276 anon_vma_unlock_write(vma->anon_vma);
David Rientjes6d50e602014-10-29 14:50:31 -07002277 khugepaged_enter_vma_merge(vma, vma->vm_flags);
Oleg Nesterov09357812015-11-05 18:48:17 -08002278 validate_mm(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 return error;
2280}
Hugh Dickins46dea3d2005-10-29 18:16:20 -07002281#endif /* CONFIG_STACK_GROWSUP || CONFIG_IA64 */
2282
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283/*
2284 * vma is the first one with address < vma->vm_start. Have to extend vma.
2285 */
Michal Hockod05f3162011-05-24 17:11:44 -07002286int expand_downwards(struct vm_area_struct *vma,
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002287 unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288{
Oleg Nesterov09357812015-11-05 18:48:17 -08002289 struct mm_struct *mm = vma->vm_mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 int error;
2291
Eric Paris88694772007-11-26 18:47:26 -05002292 address &= PAGE_MASK;
Al Viroe5467852012-05-30 13:30:51 -04002293 error = security_mmap_addr(address);
Eric Paris88694772007-11-26 18:47:26 -05002294 if (error)
2295 return error;
2296
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002297 /* We must make sure the anon_vma is allocated. */
2298 if (unlikely(anon_vma_prepare(vma)))
2299 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
2301 /*
2302 * vma->vm_start/vm_end cannot change under us because the caller
2303 * is required to hold the mmap_sem in read mode. We need the
2304 * anon_vma lock to serialize against concurrent expand_stacks.
2305 */
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002306 anon_vma_lock_write(vma->anon_vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
2308 /* Somebody else might have raced and expanded it already */
2309 if (address < vma->vm_start) {
2310 unsigned long size, grow;
2311
2312 size = vma->vm_end - address;
2313 grow = (vma->vm_start - address) >> PAGE_SHIFT;
2314
Linus Torvaldsa626ca62011-04-13 08:07:28 -07002315 error = -ENOMEM;
2316 if (grow <= vma->vm_pgoff) {
2317 error = acct_stack_growth(vma, size, grow);
2318 if (!error) {
Michel Lespinasse41289972012-12-12 13:52:25 -08002319 /*
2320 * vma_gap_update() doesn't support concurrent
2321 * updates, but we only hold a shared mmap_sem
2322 * lock here, so we need to protect against
2323 * concurrent vma expansions.
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002324 * anon_vma_lock_write() doesn't help here, as
Michel Lespinasse41289972012-12-12 13:52:25 -08002325 * we don't guarantee that all growable vmas
2326 * in a mm share the same root anon vma.
2327 * So, we reuse mm->page_table_lock to guard
2328 * against concurrent vma expansions.
2329 */
Oleg Nesterov09357812015-11-05 18:48:17 -08002330 spin_lock(&mm->page_table_lock);
Oleg Nesterov87e88272015-11-05 18:48:14 -08002331 if (vma->vm_flags & VM_LOCKED)
Oleg Nesterov09357812015-11-05 18:48:17 -08002332 mm->locked_vm += grow;
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002333 vm_stat_account(mm, vma->vm_flags, grow);
Michel Lespinassebf181b92012-10-08 16:31:39 -07002334 anon_vma_interval_tree_pre_update_vma(vma);
Linus Torvaldsa626ca62011-04-13 08:07:28 -07002335 vma->vm_start = address;
2336 vma->vm_pgoff -= grow;
Michel Lespinassebf181b92012-10-08 16:31:39 -07002337 anon_vma_interval_tree_post_update_vma(vma);
Michel Lespinassed3737182012-12-11 16:01:38 -08002338 vma_gap_update(vma);
Oleg Nesterov09357812015-11-05 18:48:17 -08002339 spin_unlock(&mm->page_table_lock);
Michel Lespinasse41289972012-12-12 13:52:25 -08002340
Linus Torvaldsa626ca62011-04-13 08:07:28 -07002341 perf_event_mmap(vma);
2342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 }
2344 }
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002345 anon_vma_unlock_write(vma->anon_vma);
David Rientjes6d50e602014-10-29 14:50:31 -07002346 khugepaged_enter_vma_merge(vma, vma->vm_flags);
Oleg Nesterov09357812015-11-05 18:48:17 -08002347 validate_mm(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 return error;
2349}
2350
Linus Torvalds09884962013-02-27 08:36:04 -08002351/*
2352 * Note how expand_stack() refuses to expand the stack all the way to
2353 * abut the next virtual mapping, *unless* that mapping itself is also
2354 * a stack mapping. We want to leave room for a guard page, after all
2355 * (the guard page itself is not added here, that is done by the
2356 * actual page faulting logic)
2357 *
2358 * This matches the behavior of the guard page logic (see mm/memory.c:
2359 * check_stack_guard_page()), which only allows the guard page to be
2360 * removed under these circumstances.
2361 */
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002362#ifdef CONFIG_STACK_GROWSUP
2363int expand_stack(struct vm_area_struct *vma, unsigned long address)
2364{
Linus Torvalds09884962013-02-27 08:36:04 -08002365 struct vm_area_struct *next;
2366
2367 address &= PAGE_MASK;
2368 next = vma->vm_next;
2369 if (next && next->vm_start == address + PAGE_SIZE) {
2370 if (!(next->vm_flags & VM_GROWSUP))
2371 return -ENOMEM;
2372 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002373 return expand_upwards(vma, address);
2374}
2375
2376struct vm_area_struct *
2377find_extend_vma(struct mm_struct *mm, unsigned long addr)
2378{
2379 struct vm_area_struct *vma, *prev;
2380
2381 addr &= PAGE_MASK;
2382 vma = find_vma_prev(mm, addr, &prev);
2383 if (vma && (vma->vm_start <= addr))
2384 return vma;
Denys Vlasenko1c127182008-11-12 01:24:41 +01002385 if (!prev || expand_stack(prev, addr))
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002386 return NULL;
Michel Lespinassecea10a12013-02-22 16:32:44 -08002387 if (prev->vm_flags & VM_LOCKED)
Kirill A. Shutemovfc05f562015-04-14 15:44:39 -07002388 populate_vma_page_range(prev, addr, prev->vm_end, NULL);
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002389 return prev;
2390}
2391#else
2392int expand_stack(struct vm_area_struct *vma, unsigned long address)
2393{
Linus Torvalds09884962013-02-27 08:36:04 -08002394 struct vm_area_struct *prev;
2395
2396 address &= PAGE_MASK;
2397 prev = vma->vm_prev;
2398 if (prev && prev->vm_end == address) {
2399 if (!(prev->vm_flags & VM_GROWSDOWN))
2400 return -ENOMEM;
2401 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002402 return expand_downwards(vma, address);
2403}
2404
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405struct vm_area_struct *
vishnu.pscc71aba2014-10-09 15:26:29 -07002406find_extend_vma(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407{
vishnu.pscc71aba2014-10-09 15:26:29 -07002408 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 unsigned long start;
2410
2411 addr &= PAGE_MASK;
vishnu.pscc71aba2014-10-09 15:26:29 -07002412 vma = find_vma(mm, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 if (!vma)
2414 return NULL;
2415 if (vma->vm_start <= addr)
2416 return vma;
2417 if (!(vma->vm_flags & VM_GROWSDOWN))
2418 return NULL;
2419 start = vma->vm_start;
2420 if (expand_stack(vma, addr))
2421 return NULL;
Michel Lespinassecea10a12013-02-22 16:32:44 -08002422 if (vma->vm_flags & VM_LOCKED)
Kirill A. Shutemovfc05f562015-04-14 15:44:39 -07002423 populate_vma_page_range(vma, addr, start, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 return vma;
2425}
2426#endif
2427
Jesse Barnese1d6d012014-12-12 16:55:27 -08002428EXPORT_SYMBOL_GPL(find_extend_vma);
2429
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430/*
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002431 * Ok - we have the memory areas we should free on the vma list,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 * so release them, and do the vma updates.
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002433 *
2434 * Called with the mm semaphore held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 */
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002436static void remove_vma_list(struct mm_struct *mm, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437{
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002438 unsigned long nr_accounted = 0;
2439
Hugh Dickins365e9c872005-10-29 18:16:18 -07002440 /* Update high watermark before we lower total_vm */
2441 update_hiwater_vm(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 do {
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002443 long nrpages = vma_pages(vma);
2444
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002445 if (vma->vm_flags & VM_ACCOUNT)
2446 nr_accounted += nrpages;
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002447 vm_stat_account(mm, vma->vm_flags, -nrpages);
Hugh Dickinsa8fb5612005-10-29 18:15:57 -07002448 vma = remove_vma(vma);
Hugh Dickins146425a2005-04-19 13:29:18 -07002449 } while (vma);
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002450 vm_unacct_memory(nr_accounted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 validate_mm(mm);
2452}
2453
2454/*
2455 * Get rid of page table information in the indicated region.
2456 *
Paolo 'Blaisorblade' Giarrussof10df682005-09-21 09:55:37 -07002457 * Called with the mm semaphore held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 */
2459static void unmap_region(struct mm_struct *mm,
Hugh Dickinse0da3822005-04-19 13:29:15 -07002460 struct vm_area_struct *vma, struct vm_area_struct *prev,
2461 unsigned long start, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462{
vishnu.pscc71aba2014-10-09 15:26:29 -07002463 struct vm_area_struct *next = prev ? prev->vm_next : mm->mmap;
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07002464 struct mmu_gather tlb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465
2466 lru_add_drain();
Linus Torvalds2b047252013-08-15 11:42:25 -07002467 tlb_gather_mmu(&tlb, mm, start, end);
Hugh Dickins365e9c872005-10-29 18:16:18 -07002468 update_hiwater_rss(mm);
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002469 unmap_vmas(&tlb, vma, start, end);
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07002470 free_pgtables(&tlb, vma, prev ? prev->vm_end : FIRST_USER_ADDRESS,
Hugh Dickins6ee86302013-04-29 15:07:44 -07002471 next ? next->vm_start : USER_PGTABLES_CEILING);
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07002472 tlb_finish_mmu(&tlb, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473}
2474
2475/*
2476 * Create a list of vma's touched by the unmap, removing them from the mm's
2477 * vma list as we go..
2478 */
2479static void
2480detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma,
2481 struct vm_area_struct *prev, unsigned long end)
2482{
2483 struct vm_area_struct **insertion_point;
2484 struct vm_area_struct *tail_vma = NULL;
2485
2486 insertion_point = (prev ? &prev->vm_next : &mm->mmap);
Linus Torvalds297c5ee2010-08-20 16:24:55 -07002487 vma->vm_prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 do {
Michel Lespinassed3737182012-12-11 16:01:38 -08002489 vma_rb_erase(vma, &mm->mm_rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 mm->map_count--;
2491 tail_vma = vma;
2492 vma = vma->vm_next;
2493 } while (vma && vma->vm_start < end);
2494 *insertion_point = vma;
Michel Lespinassed3737182012-12-11 16:01:38 -08002495 if (vma) {
Linus Torvalds297c5ee2010-08-20 16:24:55 -07002496 vma->vm_prev = prev;
Michel Lespinassed3737182012-12-11 16:01:38 -08002497 vma_gap_update(vma);
2498 } else
2499 mm->highest_vm_end = prev ? prev->vm_end : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 tail_vma->vm_next = NULL;
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07002501
2502 /* Kill the cache */
2503 vmacache_invalidate(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504}
2505
2506/*
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08002507 * __split_vma() bypasses sysctl_max_map_count checking. We use this on the
2508 * munmap path where it doesn't make sense to fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 */
vishnu.pscc71aba2014-10-09 15:26:29 -07002510static int __split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 unsigned long addr, int new_below)
2512{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 struct vm_area_struct *new;
Chen Gange3975892015-09-08 15:03:38 -07002514 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
Andi Kleena5516432008-07-23 21:27:41 -07002516 if (is_vm_hugetlb_page(vma) && (addr &
2517 ~(huge_page_mask(hstate_vma(vma)))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 return -EINVAL;
2519
Christoph Lametere94b1762006-12-06 20:33:17 -08002520 new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 if (!new)
Chen Gange3975892015-09-08 15:03:38 -07002522 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
2524 /* most fields are the same, copy all, and then fixup */
2525 *new = *vma;
2526
Rik van Riel5beb4932010-03-05 13:42:07 -08002527 INIT_LIST_HEAD(&new->anon_vma_chain);
2528
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 if (new_below)
2530 new->vm_end = addr;
2531 else {
2532 new->vm_start = addr;
2533 new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT);
2534 }
2535
Oleg Nesterovef0855d2013-09-11 14:20:14 -07002536 err = vma_dup_policy(vma, new);
2537 if (err)
Rik van Riel5beb4932010-03-05 13:42:07 -08002538 goto out_free_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Daniel Forrestc4ea95d2014-12-02 15:59:42 -08002540 err = anon_vma_clone(new, vma);
2541 if (err)
Rik van Riel5beb4932010-03-05 13:42:07 -08002542 goto out_free_mpol;
2543
Konstantin Khlebnikove9714ac2012-10-08 16:28:54 -07002544 if (new->vm_file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 get_file(new->vm_file);
2546
2547 if (new->vm_ops && new->vm_ops->open)
2548 new->vm_ops->open(new);
2549
2550 if (new_below)
Rik van Riel5beb4932010-03-05 13:42:07 -08002551 err = vma_adjust(vma, addr, vma->vm_end, vma->vm_pgoff +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 ((addr - new->vm_start) >> PAGE_SHIFT), new);
2553 else
Rik van Riel5beb4932010-03-05 13:42:07 -08002554 err = vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
Rik van Riel5beb4932010-03-05 13:42:07 -08002556 /* Success. */
2557 if (!err)
2558 return 0;
2559
2560 /* Clean everything up if vma_adjust failed. */
Rik van Riel58927532010-04-26 12:33:03 -04002561 if (new->vm_ops && new->vm_ops->close)
2562 new->vm_ops->close(new);
Konstantin Khlebnikove9714ac2012-10-08 16:28:54 -07002563 if (new->vm_file)
Rik van Riel5beb4932010-03-05 13:42:07 -08002564 fput(new->vm_file);
Andrea Arcangeli2aeadc32010-09-22 13:05:12 -07002565 unlink_anon_vmas(new);
Rik van Riel5beb4932010-03-05 13:42:07 -08002566 out_free_mpol:
Oleg Nesterovef0855d2013-09-11 14:20:14 -07002567 mpol_put(vma_policy(new));
Rik van Riel5beb4932010-03-05 13:42:07 -08002568 out_free_vma:
2569 kmem_cache_free(vm_area_cachep, new);
Rik van Riel5beb4932010-03-05 13:42:07 -08002570 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571}
2572
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08002573/*
2574 * Split a vma into two pieces at address 'addr', a new vma is allocated
2575 * either for the first part or the tail.
2576 */
2577int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
2578 unsigned long addr, int new_below)
2579{
2580 if (mm->map_count >= sysctl_max_map_count)
2581 return -ENOMEM;
2582
2583 return __split_vma(mm, vma, addr, new_below);
2584}
2585
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586/* Munmap is split into 2 main parts -- this part which finds
2587 * what needs doing, and the areas themselves, which do the
2588 * work. This now handles partial unmappings.
2589 * Jeremy Fitzhardinge <jeremy@goop.org>
2590 */
2591int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
2592{
2593 unsigned long end;
Hugh Dickins146425a2005-04-19 13:29:18 -07002594 struct vm_area_struct *vma, *prev, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595
Alexander Kuleshovde1741a2015-11-05 18:46:54 -08002596 if ((offset_in_page(start)) || start > TASK_SIZE || len > TASK_SIZE-start)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 return -EINVAL;
2598
vishnu.pscc71aba2014-10-09 15:26:29 -07002599 len = PAGE_ALIGN(len);
2600 if (len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 return -EINVAL;
2602
2603 /* Find the first overlapping VMA */
Linus Torvalds9be34c92011-06-16 00:35:09 -07002604 vma = find_vma(mm, start);
Hugh Dickins146425a2005-04-19 13:29:18 -07002605 if (!vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 return 0;
Linus Torvalds9be34c92011-06-16 00:35:09 -07002607 prev = vma->vm_prev;
Hugh Dickins146425a2005-04-19 13:29:18 -07002608 /* we have start < vma->vm_end */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
2610 /* if it doesn't overlap, we have nothing.. */
2611 end = start + len;
Hugh Dickins146425a2005-04-19 13:29:18 -07002612 if (vma->vm_start >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 return 0;
2614
2615 /*
2616 * If we need to split any vma, do it now to save pain later.
2617 *
2618 * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially
2619 * unmapped vm_area_struct will remain in use: so lower split_vma
2620 * places tmp vma above, and higher split_vma places tmp vma below.
2621 */
Hugh Dickins146425a2005-04-19 13:29:18 -07002622 if (start > vma->vm_start) {
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08002623 int error;
2624
2625 /*
2626 * Make sure that map_count on return from munmap() will
2627 * not exceed its limit; but let map_count go just above
2628 * its limit temporarily, to help free resources as expected.
2629 */
2630 if (end < vma->vm_end && mm->map_count >= sysctl_max_map_count)
2631 return -ENOMEM;
2632
2633 error = __split_vma(mm, vma, start, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 if (error)
2635 return error;
Hugh Dickins146425a2005-04-19 13:29:18 -07002636 prev = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 }
2638
2639 /* Does it split the last one? */
2640 last = find_vma(mm, end);
2641 if (last && end > last->vm_start) {
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08002642 int error = __split_vma(mm, last, end, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 if (error)
2644 return error;
2645 }
vishnu.pscc71aba2014-10-09 15:26:29 -07002646 vma = prev ? prev->vm_next : mm->mmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647
2648 /*
Rik van Rielba470de2008-10-18 20:26:50 -07002649 * unlock any mlock()ed ranges before detaching vmas
2650 */
2651 if (mm->locked_vm) {
2652 struct vm_area_struct *tmp = vma;
2653 while (tmp && tmp->vm_start < end) {
2654 if (tmp->vm_flags & VM_LOCKED) {
2655 mm->locked_vm -= vma_pages(tmp);
2656 munlock_vma_pages_all(tmp);
2657 }
2658 tmp = tmp->vm_next;
2659 }
2660 }
2661
2662 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 * Remove the vma's, and unmap the actual pages
2664 */
Hugh Dickins146425a2005-04-19 13:29:18 -07002665 detach_vmas_to_be_unmapped(mm, vma, prev, end);
2666 unmap_region(mm, vma, prev, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667
Dave Hansen1de4fa12014-11-14 07:18:31 -08002668 arch_unmap(mm, vma, start, end);
2669
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 /* Fix up all other VM information */
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002671 remove_vma_list(mm, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
2673 return 0;
2674}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
Al Virobfce2812012-04-20 21:57:04 -04002676int vm_munmap(unsigned long start, size_t len)
Linus Torvaldsa46ef992012-04-20 16:20:01 -07002677{
2678 int ret;
Al Virobfce2812012-04-20 21:57:04 -04002679 struct mm_struct *mm = current->mm;
Linus Torvaldsa46ef992012-04-20 16:20:01 -07002680
Michal Hockoae798782016-05-23 16:25:33 -07002681 if (down_write_killable(&mm->mmap_sem))
2682 return -EINTR;
2683
Linus Torvaldsa46ef992012-04-20 16:20:01 -07002684 ret = do_munmap(mm, start, len);
2685 up_write(&mm->mmap_sem);
2686 return ret;
2687}
2688EXPORT_SYMBOL(vm_munmap);
2689
Heiko Carstens6a6160a2009-01-14 14:14:15 +01002690SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691{
Michal Hockodc0ef0d2016-05-23 16:25:27 -07002692 int ret;
2693 struct mm_struct *mm = current->mm;
2694
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 profile_munmap(addr);
Michal Hockodc0ef0d2016-05-23 16:25:27 -07002696 if (down_write_killable(&mm->mmap_sem))
2697 return -EINTR;
2698 ret = do_munmap(mm, addr, len);
2699 up_write(&mm->mmap_sem);
2700 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701}
2702
Kirill A. Shutemovc8d78c12015-02-10 14:09:46 -08002703
2704/*
2705 * Emulation of deprecated remap_file_pages() syscall.
2706 */
2707SYSCALL_DEFINE5(remap_file_pages, unsigned long, start, unsigned long, size,
2708 unsigned long, prot, unsigned long, pgoff, unsigned long, flags)
2709{
2710
2711 struct mm_struct *mm = current->mm;
2712 struct vm_area_struct *vma;
2713 unsigned long populate = 0;
2714 unsigned long ret = -EINVAL;
2715 struct file *file;
2716
Joe Perches756a025f02016-03-17 14:19:47 -07002717 pr_warn_once("%s (%d) uses deprecated remap_file_pages() syscall. See Documentation/vm/remap_file_pages.txt.\n",
2718 current->comm, current->pid);
Kirill A. Shutemovc8d78c12015-02-10 14:09:46 -08002719
2720 if (prot)
2721 return ret;
2722 start = start & PAGE_MASK;
2723 size = size & PAGE_MASK;
2724
2725 if (start + size <= start)
2726 return ret;
2727
2728 /* Does pgoff wrap? */
2729 if (pgoff + (size >> PAGE_SHIFT) < pgoff)
2730 return ret;
2731
Michal Hockodc0ef0d2016-05-23 16:25:27 -07002732 if (down_write_killable(&mm->mmap_sem))
2733 return -EINTR;
2734
Kirill A. Shutemovc8d78c12015-02-10 14:09:46 -08002735 vma = find_vma(mm, start);
2736
2737 if (!vma || !(vma->vm_flags & VM_SHARED))
2738 goto out;
2739
Kirill A. Shutemov48f7df32016-02-17 13:11:15 -08002740 if (start < vma->vm_start)
Kirill A. Shutemovc8d78c12015-02-10 14:09:46 -08002741 goto out;
2742
Kirill A. Shutemov48f7df32016-02-17 13:11:15 -08002743 if (start + size > vma->vm_end) {
2744 struct vm_area_struct *next;
2745
2746 for (next = vma->vm_next; next; next = next->vm_next) {
2747 /* hole between vmas ? */
2748 if (next->vm_start != next->vm_prev->vm_end)
2749 goto out;
2750
2751 if (next->vm_file != vma->vm_file)
2752 goto out;
2753
2754 if (next->vm_flags != vma->vm_flags)
2755 goto out;
2756
2757 if (start + size <= next->vm_end)
2758 break;
2759 }
2760
2761 if (!next)
2762 goto out;
Kirill A. Shutemovc8d78c12015-02-10 14:09:46 -08002763 }
2764
2765 prot |= vma->vm_flags & VM_READ ? PROT_READ : 0;
2766 prot |= vma->vm_flags & VM_WRITE ? PROT_WRITE : 0;
2767 prot |= vma->vm_flags & VM_EXEC ? PROT_EXEC : 0;
2768
2769 flags &= MAP_NONBLOCK;
2770 flags |= MAP_SHARED | MAP_FIXED | MAP_POPULATE;
2771 if (vma->vm_flags & VM_LOCKED) {
Kirill A. Shutemov48f7df32016-02-17 13:11:15 -08002772 struct vm_area_struct *tmp;
Kirill A. Shutemovc8d78c12015-02-10 14:09:46 -08002773 flags |= MAP_LOCKED;
Kirill A. Shutemov48f7df32016-02-17 13:11:15 -08002774
Kirill A. Shutemovc8d78c12015-02-10 14:09:46 -08002775 /* drop PG_Mlocked flag for over-mapped range */
Kirill A. Shutemov48f7df32016-02-17 13:11:15 -08002776 for (tmp = vma; tmp->vm_start >= start + size;
2777 tmp = tmp->vm_next) {
Kirill A. Shutemov9a73f612016-07-26 15:25:53 -07002778 /*
2779 * Split pmd and munlock page on the border
2780 * of the range.
2781 */
2782 vma_adjust_trans_huge(tmp, start, start + size, 0);
2783
Kirill A. Shutemov48f7df32016-02-17 13:11:15 -08002784 munlock_vma_pages_range(tmp,
2785 max(tmp->vm_start, start),
2786 min(tmp->vm_end, start + size));
2787 }
Kirill A. Shutemovc8d78c12015-02-10 14:09:46 -08002788 }
2789
2790 file = get_file(vma->vm_file);
2791 ret = do_mmap_pgoff(vma->vm_file, start, size,
2792 prot, flags, pgoff, &populate);
2793 fput(file);
2794out:
2795 up_write(&mm->mmap_sem);
2796 if (populate)
2797 mm_populate(ret, populate);
2798 if (!IS_ERR_VALUE(ret))
2799 ret = 0;
2800 return ret;
2801}
2802
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803static inline void verify_mm_writelocked(struct mm_struct *mm)
2804{
Paul E. McKenneya241ec62005-10-30 15:03:12 -08002805#ifdef CONFIG_DEBUG_VM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 if (unlikely(down_read_trylock(&mm->mmap_sem))) {
2807 WARN_ON(1);
2808 up_read(&mm->mmap_sem);
2809 }
2810#endif
2811}
2812
2813/*
2814 * this is really a simplified "do_mmap". it only handles
2815 * anonymous maps. eventually we may be able to do some
2816 * brk-specific accounting here.
2817 */
Kees Cookba093a62016-08-02 14:04:54 -07002818static int do_brk(unsigned long addr, unsigned long request)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819{
vishnu.pscc71aba2014-10-09 15:26:29 -07002820 struct mm_struct *mm = current->mm;
2821 struct vm_area_struct *vma, *prev;
Kees Cookba093a62016-08-02 14:04:54 -07002822 unsigned long flags, len;
vishnu.pscc71aba2014-10-09 15:26:29 -07002823 struct rb_node **rb_link, *rb_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 pgoff_t pgoff = addr >> PAGE_SHIFT;
Kirill Korotaev3a459752006-09-07 14:17:04 +04002825 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826
Kees Cookba093a62016-08-02 14:04:54 -07002827 len = PAGE_ALIGN(request);
2828 if (len < request)
2829 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 if (!len)
Linus Torvalds5d22fc22016-05-27 15:57:31 -07002831 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832
Kirill Korotaev3a459752006-09-07 14:17:04 +04002833 flags = VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags;
2834
Al Viro2c6a1012009-12-03 19:40:46 -05002835 error = get_unmapped_area(NULL, addr, len, 0, MAP_FIXED);
Alexander Kuleshovde1741a2015-11-05 18:46:54 -08002836 if (offset_in_page(error))
Kirill Korotaev3a459752006-09-07 14:17:04 +04002837 return error;
2838
Davidlohr Bueso363ee172014-01-21 15:49:15 -08002839 error = mlock_future_check(mm, mm->def_flags, len);
2840 if (error)
2841 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842
2843 /*
2844 * mm->mmap_sem is required to protect against another thread
2845 * changing the mappings in case we sleep.
2846 */
2847 verify_mm_writelocked(mm);
2848
2849 /*
2850 * Clear old maps. this also does some error checking for us
2851 */
Rasmus Villemoes9fcd1452015-04-15 16:14:32 -07002852 while (find_vma_links(mm, addr, addr + len, &prev, &rb_link,
2853 &rb_parent)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 if (do_munmap(mm, addr, len))
2855 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 }
2857
2858 /* Check against address space limits *after* clearing old maps... */
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002859 if (!may_expand_vm(mm, flags, len >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 return -ENOMEM;
2861
2862 if (mm->map_count > sysctl_max_map_count)
2863 return -ENOMEM;
2864
Al Viro191c5422012-02-13 03:58:52 +00002865 if (security_vm_enough_memory_mm(mm, len >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 return -ENOMEM;
2867
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 /* Can we just expand an old private anonymous mapping? */
Rik van Rielba470de2008-10-18 20:26:50 -07002869 vma = vma_merge(mm, prev, addr, addr + len, flags,
Colin Cross3e4578f2015-10-27 16:42:08 -07002870 NULL, NULL, pgoff, NULL, NULL_VM_UFFD_CTX, NULL);
Rik van Rielba470de2008-10-18 20:26:50 -07002871 if (vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 goto out;
2873
2874 /*
2875 * create a vma struct for an anonymous mapping
2876 */
Pekka Enbergc5e3b832006-03-25 03:06:43 -08002877 vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 if (!vma) {
2879 vm_unacct_memory(len >> PAGE_SHIFT);
2880 return -ENOMEM;
2881 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882
Rik van Riel5beb4932010-03-05 13:42:07 -08002883 INIT_LIST_HEAD(&vma->anon_vma_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 vma->vm_mm = mm;
2885 vma->vm_start = addr;
2886 vma->vm_end = addr + len;
2887 vma->vm_pgoff = pgoff;
2888 vma->vm_flags = flags;
Coly Li3ed75eb2007-10-18 23:39:15 -07002889 vma->vm_page_prot = vm_get_page_prot(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 vma_link(mm, vma, prev, rb_link, rb_parent);
2891out:
Eric B Munson3af9e852010-05-18 15:30:49 +01002892 perf_event_mmap(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 mm->total_vm += len >> PAGE_SHIFT;
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002894 mm->data_vm += len >> PAGE_SHIFT;
Michel Lespinasse128557f2013-02-22 16:32:40 -08002895 if (flags & VM_LOCKED)
2896 mm->locked_vm += (len >> PAGE_SHIFT);
Cyrill Gorcunovd9104d12013-09-11 14:22:24 -07002897 vma->vm_flags |= VM_SOFTDIRTY;
Linus Torvalds5d22fc22016-05-27 15:57:31 -07002898 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899}
2900
Linus Torvalds5d22fc22016-05-27 15:57:31 -07002901int vm_brk(unsigned long addr, unsigned long len)
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -07002902{
2903 struct mm_struct *mm = current->mm;
Linus Torvalds5d22fc22016-05-27 15:57:31 -07002904 int ret;
Michel Lespinasse128557f2013-02-22 16:32:40 -08002905 bool populate;
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -07002906
Michal Hocko2d6c9282016-05-23 16:25:42 -07002907 if (down_write_killable(&mm->mmap_sem))
2908 return -EINTR;
2909
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -07002910 ret = do_brk(addr, len);
Michel Lespinasse128557f2013-02-22 16:32:40 -08002911 populate = ((mm->def_flags & VM_LOCKED) != 0);
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -07002912 up_write(&mm->mmap_sem);
Linus Torvalds5d22fc22016-05-27 15:57:31 -07002913 if (populate && !ret)
Michel Lespinasse128557f2013-02-22 16:32:40 -08002914 mm_populate(addr, len);
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -07002915 return ret;
2916}
2917EXPORT_SYMBOL(vm_brk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
2919/* Release all mmaps. */
2920void exit_mmap(struct mm_struct *mm)
2921{
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07002922 struct mmu_gather tlb;
Rik van Rielba470de2008-10-18 20:26:50 -07002923 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 unsigned long nr_accounted = 0;
2925
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +02002926 /* mm's last user has gone, and its about to be pulled down */
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07002927 mmu_notifier_release(mm);
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +02002928
Rik van Rielba470de2008-10-18 20:26:50 -07002929 if (mm->locked_vm) {
2930 vma = mm->mmap;
2931 while (vma) {
2932 if (vma->vm_flags & VM_LOCKED)
2933 munlock_vma_pages_all(vma);
2934 vma = vma->vm_next;
2935 }
2936 }
Jeremy Fitzhardinge9480c532009-02-11 13:04:41 -08002937
2938 arch_exit_mmap(mm);
2939
Rik van Rielba470de2008-10-18 20:26:50 -07002940 vma = mm->mmap;
Jeremy Fitzhardinge9480c532009-02-11 13:04:41 -08002941 if (!vma) /* Can happen if dup_mmap() received an OOM */
2942 return;
2943
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 lru_add_drain();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 flush_cache_mm(mm);
Linus Torvalds2b047252013-08-15 11:42:25 -07002946 tlb_gather_mmu(&tlb, mm, 0, -1);
Oleg Nesterov901608d2009-01-06 14:40:29 -08002947 /* update_hiwater_rss(mm) here? but nobody should be looking */
Hugh Dickinse0da3822005-04-19 13:29:15 -07002948 /* Use -1 here to ensure all VMAs in the mm are unmapped */
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002949 unmap_vmas(&tlb, vma, 0, -1);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002950
Hugh Dickins6ee86302013-04-29 15:07:44 -07002951 free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, USER_PGTABLES_CEILING);
Al Viro853f5e22012-03-05 14:03:47 -05002952 tlb_finish_mmu(&tlb, 0, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 /*
Hugh Dickins8f4f8c12005-10-29 18:16:29 -07002955 * Walk the list again, actually closing and freeing it,
2956 * with preemption enabled, without holding any MM locks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 */
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002958 while (vma) {
2959 if (vma->vm_flags & VM_ACCOUNT)
2960 nr_accounted += vma_pages(vma);
Hugh Dickinsa8fb5612005-10-29 18:15:57 -07002961 vma = remove_vma(vma);
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002962 }
2963 vm_unacct_memory(nr_accounted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964}
2965
2966/* Insert vm structure into process list sorted by address
2967 * and into the inode's i_mmap tree. If vm_file is non-NULL
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -08002968 * then i_mmap_rwsem is taken here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 */
Hugh Dickins6597d782012-10-08 16:29:07 -07002970int insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971{
Hugh Dickins6597d782012-10-08 16:29:07 -07002972 struct vm_area_struct *prev;
2973 struct rb_node **rb_link, *rb_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974
Chen Gangc9d13f52015-09-08 15:04:08 -07002975 if (find_vma_links(mm, vma->vm_start, vma->vm_end,
2976 &prev, &rb_link, &rb_parent))
2977 return -ENOMEM;
2978 if ((vma->vm_flags & VM_ACCOUNT) &&
2979 security_vm_enough_memory_mm(mm, vma_pages(vma)))
2980 return -ENOMEM;
2981
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 /*
2983 * The vm_pgoff of a purely anonymous vma should be irrelevant
2984 * until its first write fault, when page's anon_vma and index
2985 * are set. But now set the vm_pgoff it will almost certainly
2986 * end up with (unless mremap moves it elsewhere before that
2987 * first wfault), so /proc/pid/maps tells a consistent story.
2988 *
2989 * By setting it to reflect the virtual start address of the
2990 * vma, merges and splits can happen in a seamless way, just
2991 * using the existing file pgoff checks and manipulations.
2992 * Similarly in do_mmap_pgoff and in do_brk.
2993 */
Oleg Nesterov8a9cc3b2015-09-08 14:58:31 -07002994 if (vma_is_anonymous(vma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 BUG_ON(vma->anon_vma);
2996 vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT;
2997 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +05302998
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 vma_link(mm, vma, prev, rb_link, rb_parent);
3000 return 0;
3001}
3002
3003/*
3004 * Copy the vma structure to a new location in the same mm,
3005 * prior to moving page table entries, to effect an mremap move.
3006 */
3007struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
Michel Lespinasse38a76012012-10-08 16:31:50 -07003008 unsigned long addr, unsigned long len, pgoff_t pgoff,
3009 bool *need_rmap_locks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010{
3011 struct vm_area_struct *vma = *vmap;
3012 unsigned long vma_start = vma->vm_start;
3013 struct mm_struct *mm = vma->vm_mm;
3014 struct vm_area_struct *new_vma, *prev;
3015 struct rb_node **rb_link, *rb_parent;
Andrea Arcangeli948f0172012-01-10 15:08:05 -08003016 bool faulted_in_anon_vma = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
3018 /*
3019 * If anonymous vma has not yet been faulted, update new pgoff
3020 * to match new location, to increase its chance of merging.
3021 */
Oleg Nesterovce757992015-09-08 14:58:34 -07003022 if (unlikely(vma_is_anonymous(vma) && !vma->anon_vma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 pgoff = addr >> PAGE_SHIFT;
Andrea Arcangeli948f0172012-01-10 15:08:05 -08003024 faulted_in_anon_vma = false;
3025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026
Hugh Dickins6597d782012-10-08 16:29:07 -07003027 if (find_vma_links(mm, addr, addr + len, &prev, &rb_link, &rb_parent))
3028 return NULL; /* should never get here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -07003030 vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma),
Colin Cross3e4578f2015-10-27 16:42:08 -07003031 vma->vm_userfaultfd_ctx, vma_get_anon_name(vma));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 if (new_vma) {
3033 /*
3034 * Source vma may have been merged into new_vma
3035 */
Andrea Arcangeli948f0172012-01-10 15:08:05 -08003036 if (unlikely(vma_start >= new_vma->vm_start &&
3037 vma_start < new_vma->vm_end)) {
3038 /*
3039 * The only way we can get a vma_merge with
3040 * self during an mremap is if the vma hasn't
3041 * been faulted in yet and we were allowed to
3042 * reset the dst vma->vm_pgoff to the
3043 * destination address of the mremap to allow
3044 * the merge to happen. mremap must change the
3045 * vm_pgoff linearity between src and dst vmas
3046 * (in turn preventing a vma_merge) to be
3047 * safe. It is only safe to keep the vm_pgoff
3048 * linear if there are no pages mapped yet.
3049 */
Sasha Levin81d1b092014-10-09 15:28:10 -07003050 VM_BUG_ON_VMA(faulted_in_anon_vma, new_vma);
Michel Lespinasse38a76012012-10-08 16:31:50 -07003051 *vmap = vma = new_vma;
Michel Lespinasse108d6642012-10-08 16:31:36 -07003052 }
Michel Lespinasse38a76012012-10-08 16:31:50 -07003053 *need_rmap_locks = (new_vma->vm_pgoff <= vma->vm_pgoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 } else {
Christoph Lametere94b1762006-12-06 20:33:17 -08003055 new_vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
Chen Gange3975892015-09-08 15:03:38 -07003056 if (!new_vma)
3057 goto out;
3058 *new_vma = *vma;
3059 new_vma->vm_start = addr;
3060 new_vma->vm_end = addr + len;
3061 new_vma->vm_pgoff = pgoff;
3062 if (vma_dup_policy(vma, new_vma))
3063 goto out_free_vma;
3064 INIT_LIST_HEAD(&new_vma->anon_vma_chain);
3065 if (anon_vma_clone(new_vma, vma))
3066 goto out_free_mempol;
3067 if (new_vma->vm_file)
3068 get_file(new_vma->vm_file);
3069 if (new_vma->vm_ops && new_vma->vm_ops->open)
3070 new_vma->vm_ops->open(new_vma);
3071 vma_link(mm, new_vma, prev, rb_link, rb_parent);
3072 *need_rmap_locks = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 }
3074 return new_vma;
Rik van Riel5beb4932010-03-05 13:42:07 -08003075
Chen Gange3975892015-09-08 15:03:38 -07003076out_free_mempol:
Oleg Nesterovef0855d2013-09-11 14:20:14 -07003077 mpol_put(vma_policy(new_vma));
Chen Gange3975892015-09-08 15:03:38 -07003078out_free_vma:
Rik van Riel5beb4932010-03-05 13:42:07 -08003079 kmem_cache_free(vm_area_cachep, new_vma);
Chen Gange3975892015-09-08 15:03:38 -07003080out:
Rik van Riel5beb4932010-03-05 13:42:07 -08003081 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082}
akpm@osdl.org119f6572005-05-01 08:58:35 -07003083
3084/*
3085 * Return true if the calling process may expand its vm space by the passed
3086 * number of pages
3087 */
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08003088bool may_expand_vm(struct mm_struct *mm, vm_flags_t flags, unsigned long npages)
akpm@osdl.org119f6572005-05-01 08:58:35 -07003089{
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08003090 if (mm->total_vm + npages > rlimit(RLIMIT_AS) >> PAGE_SHIFT)
3091 return false;
akpm@osdl.org119f6572005-05-01 08:58:35 -07003092
Konstantin Khlebnikovd977d562016-02-02 16:57:43 -08003093 if (is_data_mapping(flags) &&
3094 mm->data_vm + npages > rlimit(RLIMIT_DATA) >> PAGE_SHIFT) {
Konstantin Khlebnikovf4fcd552016-05-20 16:57:45 -07003095 /* Workaround for Valgrind */
3096 if (rlimit(RLIMIT_DATA) == 0 &&
3097 mm->data_vm + npages <= rlimit_max(RLIMIT_DATA) >> PAGE_SHIFT)
3098 return true;
3099 if (!ignore_rlimit_data) {
3100 pr_warn_once("%s (%d): VmData %lu exceed data ulimit %lu. Update limits or use boot option ignore_rlimit_data.\n",
Konstantin Khlebnikovd977d562016-02-02 16:57:43 -08003101 current->comm, current->pid,
3102 (mm->data_vm + npages) << PAGE_SHIFT,
3103 rlimit(RLIMIT_DATA));
Konstantin Khlebnikovd977d562016-02-02 16:57:43 -08003104 return false;
Konstantin Khlebnikovf4fcd552016-05-20 16:57:45 -07003105 }
Konstantin Khlebnikovd977d562016-02-02 16:57:43 -08003106 }
akpm@osdl.org119f6572005-05-01 08:58:35 -07003107
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08003108 return true;
3109}
3110
3111void vm_stat_account(struct mm_struct *mm, vm_flags_t flags, long npages)
3112{
3113 mm->total_vm += npages;
3114
Konstantin Khlebnikovd977d562016-02-02 16:57:43 -08003115 if (is_exec_mapping(flags))
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08003116 mm->exec_vm += npages;
Konstantin Khlebnikovd977d562016-02-02 16:57:43 -08003117 else if (is_stack_mapping(flags))
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08003118 mm->stack_vm += npages;
Konstantin Khlebnikovd977d562016-02-02 16:57:43 -08003119 else if (is_data_mapping(flags))
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08003120 mm->data_vm += npages;
akpm@osdl.org119f6572005-05-01 08:58:35 -07003121}
Roland McGrathfa5dc222007-02-08 14:20:41 -08003122
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003123static int special_mapping_fault(struct vm_area_struct *vma,
3124 struct vm_fault *vmf);
3125
3126/*
3127 * Having a close hook prevents vma merging regardless of flags.
3128 */
3129static void special_mapping_close(struct vm_area_struct *vma)
3130{
3131}
3132
3133static const char *special_mapping_name(struct vm_area_struct *vma)
3134{
3135 return ((struct vm_special_mapping *)vma->vm_private_data)->name;
3136}
3137
Dmitry Safonovb059a452016-06-28 14:35:38 +03003138static int special_mapping_mremap(struct vm_area_struct *new_vma)
3139{
3140 struct vm_special_mapping *sm = new_vma->vm_private_data;
3141
3142 if (sm->mremap)
3143 return sm->mremap(sm, new_vma);
3144 return 0;
3145}
3146
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003147static const struct vm_operations_struct special_mapping_vmops = {
3148 .close = special_mapping_close,
3149 .fault = special_mapping_fault,
Dmitry Safonovb059a452016-06-28 14:35:38 +03003150 .mremap = special_mapping_mremap,
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003151 .name = special_mapping_name,
3152};
3153
3154static const struct vm_operations_struct legacy_special_mapping_vmops = {
3155 .close = special_mapping_close,
3156 .fault = special_mapping_fault,
3157};
Roland McGrathfa5dc222007-02-08 14:20:41 -08003158
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01003159static int special_mapping_fault(struct vm_area_struct *vma,
3160 struct vm_fault *vmf)
Roland McGrathfa5dc222007-02-08 14:20:41 -08003161{
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01003162 pgoff_t pgoff;
Roland McGrathfa5dc222007-02-08 14:20:41 -08003163 struct page **pages;
3164
Andy Lutomirskif872f542015-12-29 20:12:19 -08003165 if (vma->vm_ops == &legacy_special_mapping_vmops) {
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003166 pages = vma->vm_private_data;
Andy Lutomirskif872f542015-12-29 20:12:19 -08003167 } else {
3168 struct vm_special_mapping *sm = vma->vm_private_data;
3169
3170 if (sm->fault)
3171 return sm->fault(sm, vma, vmf);
3172
3173 pages = sm->pages;
3174 }
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003175
Oleg Nesterov8a9cc3b2015-09-08 14:58:31 -07003176 for (pgoff = vmf->pgoff; pgoff && *pages; ++pages)
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01003177 pgoff--;
Roland McGrathfa5dc222007-02-08 14:20:41 -08003178
3179 if (*pages) {
3180 struct page *page = *pages;
3181 get_page(page);
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01003182 vmf->page = page;
3183 return 0;
Roland McGrathfa5dc222007-02-08 14:20:41 -08003184 }
3185
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01003186 return VM_FAULT_SIGBUS;
Roland McGrathfa5dc222007-02-08 14:20:41 -08003187}
3188
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003189static struct vm_area_struct *__install_special_mapping(
3190 struct mm_struct *mm,
3191 unsigned long addr, unsigned long len,
Chen Gang27f28b92015-11-05 18:48:41 -08003192 unsigned long vm_flags, void *priv,
3193 const struct vm_operations_struct *ops)
Roland McGrathfa5dc222007-02-08 14:20:41 -08003194{
Tavis Ormandy462e635e2010-12-09 15:29:42 +01003195 int ret;
Roland McGrathfa5dc222007-02-08 14:20:41 -08003196 struct vm_area_struct *vma;
3197
3198 vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
3199 if (unlikely(vma == NULL))
Stefani Seibold3935ed62014-03-17 23:22:02 +01003200 return ERR_PTR(-ENOMEM);
Roland McGrathfa5dc222007-02-08 14:20:41 -08003201
Rik van Riel5beb4932010-03-05 13:42:07 -08003202 INIT_LIST_HEAD(&vma->anon_vma_chain);
Roland McGrathfa5dc222007-02-08 14:20:41 -08003203 vma->vm_mm = mm;
3204 vma->vm_start = addr;
3205 vma->vm_end = addr + len;
3206
Cyrill Gorcunovd9104d12013-09-11 14:22:24 -07003207 vma->vm_flags = vm_flags | mm->def_flags | VM_DONTEXPAND | VM_SOFTDIRTY;
Coly Li3ed75eb2007-10-18 23:39:15 -07003208 vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
Roland McGrathfa5dc222007-02-08 14:20:41 -08003209
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003210 vma->vm_ops = ops;
3211 vma->vm_private_data = priv;
Roland McGrathfa5dc222007-02-08 14:20:41 -08003212
Tavis Ormandy462e635e2010-12-09 15:29:42 +01003213 ret = insert_vm_struct(mm, vma);
3214 if (ret)
3215 goto out;
Roland McGrathfa5dc222007-02-08 14:20:41 -08003216
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08003217 vm_stat_account(mm, vma->vm_flags, len >> PAGE_SHIFT);
Roland McGrathfa5dc222007-02-08 14:20:41 -08003218
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003219 perf_event_mmap(vma);
Peter Zijlstra089dd792009-06-05 14:04:55 +02003220
Stefani Seibold3935ed62014-03-17 23:22:02 +01003221 return vma;
Tavis Ormandy462e635e2010-12-09 15:29:42 +01003222
3223out:
3224 kmem_cache_free(vm_area_cachep, vma);
Stefani Seibold3935ed62014-03-17 23:22:02 +01003225 return ERR_PTR(ret);
3226}
3227
Dmitry Safonov2eefd872016-09-05 16:33:05 +03003228bool vma_is_special_mapping(const struct vm_area_struct *vma,
3229 const struct vm_special_mapping *sm)
3230{
3231 return vma->vm_private_data == sm &&
3232 (vma->vm_ops == &special_mapping_vmops ||
3233 vma->vm_ops == &legacy_special_mapping_vmops);
3234}
3235
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003236/*
3237 * Called with mm->mmap_sem held for writing.
3238 * Insert a new vma covering the given region, with the given flags.
3239 * Its pages are supplied by the given array of struct page *.
3240 * The array can be shorter than len >> PAGE_SHIFT if it's null-terminated.
3241 * The region past the last page supplied will always produce SIGBUS.
3242 * The array pointer and the pages it points to are assumed to stay alive
3243 * for as long as this mapping might exist.
3244 */
3245struct vm_area_struct *_install_special_mapping(
3246 struct mm_struct *mm,
3247 unsigned long addr, unsigned long len,
3248 unsigned long vm_flags, const struct vm_special_mapping *spec)
3249{
Chen Gang27f28b92015-11-05 18:48:41 -08003250 return __install_special_mapping(mm, addr, len, vm_flags, (void *)spec,
3251 &special_mapping_vmops);
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003252}
3253
Stefani Seibold3935ed62014-03-17 23:22:02 +01003254int install_special_mapping(struct mm_struct *mm,
3255 unsigned long addr, unsigned long len,
3256 unsigned long vm_flags, struct page **pages)
3257{
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003258 struct vm_area_struct *vma = __install_special_mapping(
Chen Gang27f28b92015-11-05 18:48:41 -08003259 mm, addr, len, vm_flags, (void *)pages,
3260 &legacy_special_mapping_vmops);
Stefani Seibold3935ed62014-03-17 23:22:02 +01003261
Duan Jiong14bd5b42014-06-04 16:07:05 -07003262 return PTR_ERR_OR_ZERO(vma);
Roland McGrathfa5dc222007-02-08 14:20:41 -08003263}
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003264
3265static DEFINE_MUTEX(mm_all_locks_mutex);
3266
Peter Zijlstra454ed842008-08-11 09:30:25 +02003267static void vm_lock_anon_vma(struct mm_struct *mm, struct anon_vma *anon_vma)
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003268{
Michel Lespinassebf181b92012-10-08 16:31:39 -07003269 if (!test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_node)) {
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003270 /*
3271 * The LSB of head.next can't change from under us
3272 * because we hold the mm_all_locks_mutex.
3273 */
Jiri Kosina572043c2013-01-11 14:31:59 -08003274 down_write_nest_lock(&anon_vma->root->rwsem, &mm->mmap_sem);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003275 /*
3276 * We can safely modify head.next after taking the
Ingo Molnar5a505082012-12-02 19:56:46 +00003277 * anon_vma->root->rwsem. If some other vma in this mm shares
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003278 * the same anon_vma we won't take it again.
3279 *
3280 * No need of atomic instructions here, head.next
3281 * can't change from under us thanks to the
Ingo Molnar5a505082012-12-02 19:56:46 +00003282 * anon_vma->root->rwsem.
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003283 */
3284 if (__test_and_set_bit(0, (unsigned long *)
Michel Lespinassebf181b92012-10-08 16:31:39 -07003285 &anon_vma->root->rb_root.rb_node))
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003286 BUG();
3287 }
3288}
3289
Peter Zijlstra454ed842008-08-11 09:30:25 +02003290static void vm_lock_mapping(struct mm_struct *mm, struct address_space *mapping)
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003291{
3292 if (!test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
3293 /*
3294 * AS_MM_ALL_LOCKS can't change from under us because
3295 * we hold the mm_all_locks_mutex.
3296 *
3297 * Operations on ->flags have to be atomic because
3298 * even if AS_MM_ALL_LOCKS is stable thanks to the
3299 * mm_all_locks_mutex, there may be other cpus
3300 * changing other bitflags in parallel to us.
3301 */
3302 if (test_and_set_bit(AS_MM_ALL_LOCKS, &mapping->flags))
3303 BUG();
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -08003304 down_write_nest_lock(&mapping->i_mmap_rwsem, &mm->mmap_sem);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003305 }
3306}
3307
3308/*
3309 * This operation locks against the VM for all pte/vma/mm related
3310 * operations that could ever happen on a certain mm. This includes
3311 * vmtruncate, try_to_unmap, and all page faults.
3312 *
3313 * The caller must take the mmap_sem in write mode before calling
3314 * mm_take_all_locks(). The caller isn't allowed to release the
3315 * mmap_sem until mm_drop_all_locks() returns.
3316 *
3317 * mmap_sem in write mode is required in order to block all operations
3318 * that could modify pagetables and free pages without need of
Kirill A. Shutemov27ba0642015-02-10 14:09:59 -08003319 * altering the vma layout. It's also needed in write mode to avoid new
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003320 * anon_vmas to be associated with existing vmas.
3321 *
3322 * A single task can't take more than one mm_take_all_locks() in a row
3323 * or it would deadlock.
3324 *
Michel Lespinassebf181b92012-10-08 16:31:39 -07003325 * The LSB in anon_vma->rb_root.rb_node and the AS_MM_ALL_LOCKS bitflag in
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003326 * mapping->flags avoid to take the same lock twice, if more than one
3327 * vma in this mm is backed by the same anon_vma or address_space.
3328 *
Kirill A. Shutemov88f306b2016-01-15 16:57:31 -08003329 * We take locks in following order, accordingly to comment at beginning
3330 * of mm/rmap.c:
3331 * - all hugetlbfs_i_mmap_rwsem_key locks (aka mapping->i_mmap_rwsem for
3332 * hugetlb mapping);
3333 * - all i_mmap_rwsem locks;
3334 * - all anon_vma->rwseml
3335 *
3336 * We can take all locks within these types randomly because the VM code
3337 * doesn't nest them and we protected from parallel mm_take_all_locks() by
3338 * mm_all_locks_mutex.
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003339 *
3340 * mm_take_all_locks() and mm_drop_all_locks are expensive operations
3341 * that may have to take thousand of locks.
3342 *
3343 * mm_take_all_locks() can fail if it's interrupted by signals.
3344 */
3345int mm_take_all_locks(struct mm_struct *mm)
3346{
3347 struct vm_area_struct *vma;
Rik van Riel5beb4932010-03-05 13:42:07 -08003348 struct anon_vma_chain *avc;
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003349
3350 BUG_ON(down_read_trylock(&mm->mmap_sem));
3351
3352 mutex_lock(&mm_all_locks_mutex);
3353
3354 for (vma = mm->mmap; vma; vma = vma->vm_next) {
3355 if (signal_pending(current))
3356 goto out_unlock;
Kirill A. Shutemov88f306b2016-01-15 16:57:31 -08003357 if (vma->vm_file && vma->vm_file->f_mapping &&
3358 is_vm_hugetlb_page(vma))
3359 vm_lock_mapping(mm, vma->vm_file->f_mapping);
3360 }
3361
3362 for (vma = mm->mmap; vma; vma = vma->vm_next) {
3363 if (signal_pending(current))
3364 goto out_unlock;
3365 if (vma->vm_file && vma->vm_file->f_mapping &&
3366 !is_vm_hugetlb_page(vma))
Peter Zijlstra454ed842008-08-11 09:30:25 +02003367 vm_lock_mapping(mm, vma->vm_file->f_mapping);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003368 }
Peter Zijlstra7cd5a022008-08-11 09:30:25 +02003369
3370 for (vma = mm->mmap; vma; vma = vma->vm_next) {
3371 if (signal_pending(current))
3372 goto out_unlock;
3373 if (vma->anon_vma)
Rik van Riel5beb4932010-03-05 13:42:07 -08003374 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
3375 vm_lock_anon_vma(mm, avc->anon_vma);
Peter Zijlstra7cd5a022008-08-11 09:30:25 +02003376 }
3377
Kautuk Consul584cff52011-10-31 17:08:59 -07003378 return 0;
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003379
3380out_unlock:
Kautuk Consul584cff52011-10-31 17:08:59 -07003381 mm_drop_all_locks(mm);
3382 return -EINTR;
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003383}
3384
3385static void vm_unlock_anon_vma(struct anon_vma *anon_vma)
3386{
Michel Lespinassebf181b92012-10-08 16:31:39 -07003387 if (test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_node)) {
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003388 /*
3389 * The LSB of head.next can't change to 0 from under
3390 * us because we hold the mm_all_locks_mutex.
3391 *
3392 * We must however clear the bitflag before unlocking
Michel Lespinassebf181b92012-10-08 16:31:39 -07003393 * the vma so the users using the anon_vma->rb_root will
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003394 * never see our bitflag.
3395 *
3396 * No need of atomic instructions here, head.next
3397 * can't change from under us until we release the
Ingo Molnar5a505082012-12-02 19:56:46 +00003398 * anon_vma->root->rwsem.
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003399 */
3400 if (!__test_and_clear_bit(0, (unsigned long *)
Michel Lespinassebf181b92012-10-08 16:31:39 -07003401 &anon_vma->root->rb_root.rb_node))
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003402 BUG();
Konstantin Khlebnikov08b52702013-02-22 16:34:40 -08003403 anon_vma_unlock_write(anon_vma);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003404 }
3405}
3406
3407static void vm_unlock_mapping(struct address_space *mapping)
3408{
3409 if (test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
3410 /*
3411 * AS_MM_ALL_LOCKS can't change to 0 from under us
3412 * because we hold the mm_all_locks_mutex.
3413 */
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -08003414 i_mmap_unlock_write(mapping);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003415 if (!test_and_clear_bit(AS_MM_ALL_LOCKS,
3416 &mapping->flags))
3417 BUG();
3418 }
3419}
3420
3421/*
3422 * The mmap_sem cannot be released by the caller until
3423 * mm_drop_all_locks() returns.
3424 */
3425void mm_drop_all_locks(struct mm_struct *mm)
3426{
3427 struct vm_area_struct *vma;
Rik van Riel5beb4932010-03-05 13:42:07 -08003428 struct anon_vma_chain *avc;
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003429
3430 BUG_ON(down_read_trylock(&mm->mmap_sem));
3431 BUG_ON(!mutex_is_locked(&mm_all_locks_mutex));
3432
3433 for (vma = mm->mmap; vma; vma = vma->vm_next) {
3434 if (vma->anon_vma)
Rik van Riel5beb4932010-03-05 13:42:07 -08003435 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
3436 vm_unlock_anon_vma(avc->anon_vma);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003437 if (vma->vm_file && vma->vm_file->f_mapping)
3438 vm_unlock_mapping(vma->vm_file->f_mapping);
3439 }
3440
3441 mutex_unlock(&mm_all_locks_mutex);
3442}
David Howells8feae132009-01-08 12:04:47 +00003443
3444/*
3445 * initialise the VMA slab
3446 */
3447void __init mmap_init(void)
3448{
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -07003449 int ret;
3450
Tejun Heo908c7f12014-09-08 09:51:29 +09003451 ret = percpu_counter_init(&vm_committed_as, 0, GFP_KERNEL);
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -07003452 VM_BUG_ON(ret);
David Howells8feae132009-01-08 12:04:47 +00003453}
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -07003454
3455/*
3456 * Initialise sysctl_user_reserve_kbytes.
3457 *
3458 * This is intended to prevent a user from starting a single memory hogging
3459 * process, such that they cannot recover (kill the hog) in OVERCOMMIT_NEVER
3460 * mode.
3461 *
3462 * The default value is min(3% of free memory, 128MB)
3463 * 128MB is enough to recover with sshd/login, bash, and top/kill.
3464 */
Andrew Shewmaker16408792013-04-29 15:08:12 -07003465static int init_user_reserve(void)
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -07003466{
3467 unsigned long free_kbytes;
3468
3469 free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
3470
3471 sysctl_user_reserve_kbytes = min(free_kbytes / 32, 1UL << 17);
3472 return 0;
3473}
Paul Gortmakera64fb3c2014-01-23 15:53:30 -08003474subsys_initcall(init_user_reserve);
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07003475
3476/*
3477 * Initialise sysctl_admin_reserve_kbytes.
3478 *
3479 * The purpose of sysctl_admin_reserve_kbytes is to allow the sys admin
3480 * to log in and kill a memory hogging process.
3481 *
3482 * Systems with more than 256MB will reserve 8MB, enough to recover
3483 * with sshd, bash, and top in OVERCOMMIT_GUESS. Smaller systems will
3484 * only reserve 3% of free pages by default.
3485 */
Andrew Shewmaker16408792013-04-29 15:08:12 -07003486static int init_admin_reserve(void)
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07003487{
3488 unsigned long free_kbytes;
3489
3490 free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
3491
3492 sysctl_admin_reserve_kbytes = min(free_kbytes / 32, 1UL << 13);
3493 return 0;
3494}
Paul Gortmakera64fb3c2014-01-23 15:53:30 -08003495subsys_initcall(init_admin_reserve);
Andrew Shewmaker16408792013-04-29 15:08:12 -07003496
3497/*
3498 * Reinititalise user and admin reserves if memory is added or removed.
3499 *
3500 * The default user reserve max is 128MB, and the default max for the
3501 * admin reserve is 8MB. These are usually, but not always, enough to
3502 * enable recovery from a memory hogging process using login/sshd, a shell,
3503 * and tools like top. It may make sense to increase or even disable the
3504 * reserve depending on the existence of swap or variations in the recovery
3505 * tools. So, the admin may have changed them.
3506 *
3507 * If memory is added and the reserves have been eliminated or increased above
3508 * the default max, then we'll trust the admin.
3509 *
3510 * If memory is removed and there isn't enough free memory, then we
3511 * need to reset the reserves.
3512 *
3513 * Otherwise keep the reserve set by the admin.
3514 */
3515static int reserve_mem_notifier(struct notifier_block *nb,
3516 unsigned long action, void *data)
3517{
3518 unsigned long tmp, free_kbytes;
3519
3520 switch (action) {
3521 case MEM_ONLINE:
3522 /* Default max is 128MB. Leave alone if modified by operator. */
3523 tmp = sysctl_user_reserve_kbytes;
3524 if (0 < tmp && tmp < (1UL << 17))
3525 init_user_reserve();
3526
3527 /* Default max is 8MB. Leave alone if modified by operator. */
3528 tmp = sysctl_admin_reserve_kbytes;
3529 if (0 < tmp && tmp < (1UL << 13))
3530 init_admin_reserve();
3531
3532 break;
3533 case MEM_OFFLINE:
3534 free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
3535
3536 if (sysctl_user_reserve_kbytes > free_kbytes) {
3537 init_user_reserve();
3538 pr_info("vm.user_reserve_kbytes reset to %lu\n",
3539 sysctl_user_reserve_kbytes);
3540 }
3541
3542 if (sysctl_admin_reserve_kbytes > free_kbytes) {
3543 init_admin_reserve();
3544 pr_info("vm.admin_reserve_kbytes reset to %lu\n",
3545 sysctl_admin_reserve_kbytes);
3546 }
3547 break;
3548 default:
3549 break;
3550 }
3551 return NOTIFY_OK;
3552}
3553
3554static struct notifier_block reserve_mem_nb = {
3555 .notifier_call = reserve_mem_notifier,
3556};
3557
3558static int __meminit init_reserve_notifier(void)
3559{
3560 if (register_hotmemory_notifier(&reserve_mem_nb))
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -07003561 pr_err("Failed registering memory add/remove notifier for admin reserve\n");
Andrew Shewmaker16408792013-04-29 15:08:12 -07003562
3563 return 0;
3564}
Paul Gortmakera64fb3c2014-01-23 15:53:30 -08003565subsys_initcall(init_reserve_notifier);