blob: 7a0707a480479f1837cc6537182300bd6d94d51f [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;
119
120 vma->vm_page_prot = vm_pgprot_modify(vma->vm_page_prot, vm_flags);
121 if (vma_wants_writenotify(vma)) {
122 vm_flags &= ~VM_SHARED;
123 vma->vm_page_prot = vm_pgprot_modify(vma->vm_page_prot,
124 vm_flags);
125 }
126}
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128/*
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -0800129 * Requires inode->i_mapping->i_mmap_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 */
131static void __remove_shared_vm_struct(struct vm_area_struct *vma,
132 struct file *file, struct address_space *mapping)
133{
134 if (vma->vm_flags & VM_DENYWRITE)
Al Viro496ad9a2013-01-23 17:07:38 -0500135 atomic_inc(&file_inode(file)->i_writecount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 if (vma->vm_flags & VM_SHARED)
David Herrmann4bb5f5d2014-08-08 14:25:25 -0700137 mapping_unmap_writable(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 flush_dcache_mmap_lock(mapping);
Kirill A. Shutemov27ba0642015-02-10 14:09:59 -0800140 vma_interval_tree_remove(vma, &mapping->i_mmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 flush_dcache_mmap_unlock(mapping);
142}
143
144/*
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700145 * Unlink a file-based vm structure from its interval tree, to hide
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700146 * vma from rmap and vmtruncate before freeing its page tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 */
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700148void unlink_file_vma(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 struct file *file = vma->vm_file;
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 if (file) {
153 struct address_space *mapping = file->f_mapping;
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800154 i_mmap_lock_write(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 __remove_shared_vm_struct(vma, file, mapping);
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800156 i_mmap_unlock_write(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 }
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700158}
159
160/*
161 * Close a vm structure and free it, returning the next.
162 */
163static struct vm_area_struct *remove_vma(struct vm_area_struct *vma)
164{
165 struct vm_area_struct *next = vma->vm_next;
166
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700167 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 if (vma->vm_ops && vma->vm_ops->close)
169 vma->vm_ops->close(vma);
Konstantin Khlebnikove9714ac2012-10-08 16:28:54 -0700170 if (vma->vm_file)
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700171 fput(vma->vm_file);
Lee Schermerhornf0be3d32008-04-28 02:13:08 -0700172 mpol_put(vma_policy(vma));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 kmem_cache_free(vm_area_cachep, vma);
Hugh Dickinsa8fb5612005-10-29 18:15:57 -0700174 return next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
Linus Torvalds5d22fc22016-05-27 15:57:31 -0700177static int do_brk(unsigned long addr, unsigned long len);
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -0700178
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100179SYSCALL_DEFINE1(brk, unsigned long, brk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Cyrill Gorcunov8764b332014-10-09 15:27:32 -0700181 unsigned long retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 unsigned long newbrk, oldbrk;
183 struct mm_struct *mm = current->mm;
Jiri Kosinaa5b45922008-06-05 22:46:05 -0700184 unsigned long min_brk;
Michel Lespinasse128557f2013-02-22 16:32:40 -0800185 bool populate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Michal Hockodc0ef0d2016-05-23 16:25:27 -0700187 if (down_write_killable(&mm->mmap_sem))
188 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Jiri Kosinaa5b45922008-06-05 22:46:05 -0700190#ifdef CONFIG_COMPAT_BRK
Jiri Kosina5520e892011-01-13 15:47:23 -0800191 /*
192 * CONFIG_COMPAT_BRK can still be overridden by setting
193 * randomize_va_space to 2, which will still cause mm->start_brk
194 * to be arbitrarily shifted
195 */
Jiri Kosina4471a672011-04-14 15:22:09 -0700196 if (current->brk_randomized)
Jiri Kosina5520e892011-01-13 15:47:23 -0800197 min_brk = mm->start_brk;
198 else
199 min_brk = mm->end_data;
Jiri Kosinaa5b45922008-06-05 22:46:05 -0700200#else
201 min_brk = mm->start_brk;
202#endif
203 if (brk < min_brk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 goto out;
Ram Gupta1e624192006-04-10 22:52:57 -0700205
206 /*
207 * Check against rlimit here. If this check is done later after the test
208 * of oldbrk with newbrk then it can escape the test and let the data
209 * segment grow beyond its set limit the in case where the limit is
210 * not page aligned -Ram Gupta
211 */
Cyrill Gorcunov8764b332014-10-09 15:27:32 -0700212 if (check_data_rlimit(rlimit(RLIMIT_DATA), brk, mm->start_brk,
213 mm->end_data, mm->start_data))
Ram Gupta1e624192006-04-10 22:52:57 -0700214 goto out;
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 newbrk = PAGE_ALIGN(brk);
217 oldbrk = PAGE_ALIGN(mm->brk);
218 if (oldbrk == newbrk)
219 goto set_brk;
220
221 /* Always allow shrinking brk. */
222 if (brk <= mm->brk) {
223 if (!do_munmap(mm, newbrk, oldbrk-newbrk))
224 goto set_brk;
225 goto out;
226 }
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 /* Check against existing mmap mappings. */
229 if (find_vma_intersection(mm, oldbrk, newbrk+PAGE_SIZE))
230 goto out;
231
232 /* Ok, looks good - let it rip. */
Linus Torvalds5d22fc22016-05-27 15:57:31 -0700233 if (do_brk(oldbrk, newbrk-oldbrk) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 goto out;
Michel Lespinasse128557f2013-02-22 16:32:40 -0800235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236set_brk:
237 mm->brk = brk;
Michel Lespinasse128557f2013-02-22 16:32:40 -0800238 populate = newbrk > oldbrk && (mm->def_flags & VM_LOCKED) != 0;
239 up_write(&mm->mmap_sem);
240 if (populate)
241 mm_populate(oldbrk, newbrk - oldbrk);
242 return brk;
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244out:
245 retval = mm->brk;
246 up_write(&mm->mmap_sem);
247 return retval;
248}
249
Michel Lespinassed3737182012-12-11 16:01:38 -0800250static long vma_compute_subtree_gap(struct vm_area_struct *vma)
251{
252 unsigned long max, subtree_gap;
253 max = vma->vm_start;
254 if (vma->vm_prev)
255 max -= vma->vm_prev->vm_end;
256 if (vma->vm_rb.rb_left) {
257 subtree_gap = rb_entry(vma->vm_rb.rb_left,
258 struct vm_area_struct, vm_rb)->rb_subtree_gap;
259 if (subtree_gap > max)
260 max = subtree_gap;
261 }
262 if (vma->vm_rb.rb_right) {
263 subtree_gap = rb_entry(vma->vm_rb.rb_right,
264 struct vm_area_struct, vm_rb)->rb_subtree_gap;
265 if (subtree_gap > max)
266 max = subtree_gap;
267 }
268 return max;
269}
270
Michel Lespinasseed8ea812012-10-08 16:31:45 -0700271#ifdef CONFIG_DEBUG_VM_RB
Andrea Arcangeliacf128d2016-02-05 15:36:13 -0800272static int browse_rb(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Andrea Arcangeliacf128d2016-02-05 15:36:13 -0800274 struct rb_root *root = &mm->mm_rb;
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800275 int i = 0, j, bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 struct rb_node *nd, *pn = NULL;
277 unsigned long prev = 0, pend = 0;
278
279 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
280 struct vm_area_struct *vma;
281 vma = rb_entry(nd, struct vm_area_struct, vm_rb);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800282 if (vma->vm_start < prev) {
Andrew Mortonff26f702014-10-09 15:28:19 -0700283 pr_emerg("vm_start %lx < prev %lx\n",
284 vma->vm_start, prev);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800285 bug = 1;
286 }
287 if (vma->vm_start < pend) {
Andrew Mortonff26f702014-10-09 15:28:19 -0700288 pr_emerg("vm_start %lx < pend %lx\n",
289 vma->vm_start, pend);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800290 bug = 1;
291 }
292 if (vma->vm_start > vma->vm_end) {
Andrew Mortonff26f702014-10-09 15:28:19 -0700293 pr_emerg("vm_start %lx > vm_end %lx\n",
294 vma->vm_start, vma->vm_end);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800295 bug = 1;
296 }
Andrea Arcangeliacf128d2016-02-05 15:36:13 -0800297 spin_lock(&mm->page_table_lock);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800298 if (vma->rb_subtree_gap != vma_compute_subtree_gap(vma)) {
Sasha Levin8542bdf2014-09-09 14:50:59 -0700299 pr_emerg("free gap %lx, correct %lx\n",
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800300 vma->rb_subtree_gap,
301 vma_compute_subtree_gap(vma));
302 bug = 1;
303 }
Andrea Arcangeliacf128d2016-02-05 15:36:13 -0800304 spin_unlock(&mm->page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 i++;
306 pn = nd;
David Millerd1af65d2007-02-28 20:13:13 -0800307 prev = vma->vm_start;
308 pend = vma->vm_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 }
310 j = 0;
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800311 for (nd = pn; nd; nd = rb_prev(nd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 j++;
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800313 if (i != j) {
Sasha Levin8542bdf2014-09-09 14:50:59 -0700314 pr_emerg("backwards %d, forwards %d\n", j, i);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800315 bug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 }
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800317 return bug ? -1 : i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
Michel Lespinassed3737182012-12-11 16:01:38 -0800320static void validate_mm_rb(struct rb_root *root, struct vm_area_struct *ignore)
321{
322 struct rb_node *nd;
323
324 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
325 struct vm_area_struct *vma;
326 vma = rb_entry(nd, struct vm_area_struct, vm_rb);
Sasha Levin96dad672014-10-09 15:28:39 -0700327 VM_BUG_ON_VMA(vma != ignore &&
328 vma->rb_subtree_gap != vma_compute_subtree_gap(vma),
329 vma);
Michel Lespinassed3737182012-12-11 16:01:38 -0800330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
Rashika Kheriaeafd4dc2014-04-03 14:48:03 -0700333static void validate_mm(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 int bug = 0;
336 int i = 0;
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800337 unsigned long highest_address = 0;
Michel Lespinasseed8ea812012-10-08 16:31:45 -0700338 struct vm_area_struct *vma = mm->mmap;
Andrew Mortonff26f702014-10-09 15:28:19 -0700339
Michel Lespinasseed8ea812012-10-08 16:31:45 -0700340 while (vma) {
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -0800341 struct anon_vma *anon_vma = vma->anon_vma;
Michel Lespinasseed8ea812012-10-08 16:31:45 -0700342 struct anon_vma_chain *avc;
Andrew Mortonff26f702014-10-09 15:28:19 -0700343
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -0800344 if (anon_vma) {
345 anon_vma_lock_read(anon_vma);
346 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
347 anon_vma_interval_tree_verify(avc);
348 anon_vma_unlock_read(anon_vma);
349 }
350
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800351 highest_address = vma->vm_end;
Michel Lespinasseed8ea812012-10-08 16:31:45 -0700352 vma = vma->vm_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 i++;
354 }
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800355 if (i != mm->map_count) {
Sasha Levin8542bdf2014-09-09 14:50:59 -0700356 pr_emerg("map_count %d vm_next %d\n", mm->map_count, i);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800357 bug = 1;
358 }
359 if (highest_address != mm->highest_vm_end) {
Sasha Levin8542bdf2014-09-09 14:50:59 -0700360 pr_emerg("mm->highest_vm_end %lx, found %lx\n",
Andrew Mortonff26f702014-10-09 15:28:19 -0700361 mm->highest_vm_end, highest_address);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800362 bug = 1;
363 }
Andrea Arcangeliacf128d2016-02-05 15:36:13 -0800364 i = browse_rb(mm);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800365 if (i != mm->map_count) {
Andrew Mortonff26f702014-10-09 15:28:19 -0700366 if (i != -1)
367 pr_emerg("map_count %d rb %d\n", mm->map_count, i);
Michel Lespinasse5a0768f2012-12-11 16:01:42 -0800368 bug = 1;
369 }
Sasha Levin96dad672014-10-09 15:28:39 -0700370 VM_BUG_ON_MM(bug, mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
372#else
Michel Lespinassed3737182012-12-11 16:01:38 -0800373#define validate_mm_rb(root, ignore) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374#define validate_mm(mm) do { } while (0)
375#endif
376
Michel Lespinassed3737182012-12-11 16:01:38 -0800377RB_DECLARE_CALLBACKS(static, vma_gap_callbacks, struct vm_area_struct, vm_rb,
378 unsigned long, rb_subtree_gap, vma_compute_subtree_gap)
379
380/*
381 * Update augmented rbtree rb_subtree_gap values after vma->vm_start or
382 * vma->vm_prev->vm_end values changed, without modifying the vma's position
383 * in the rbtree.
384 */
385static void vma_gap_update(struct vm_area_struct *vma)
386{
387 /*
388 * As it turns out, RB_DECLARE_CALLBACKS() already created a callback
389 * function that does exacltly what we want.
390 */
391 vma_gap_callbacks_propagate(&vma->vm_rb, NULL);
392}
393
394static inline void vma_rb_insert(struct vm_area_struct *vma,
395 struct rb_root *root)
396{
397 /* All rb_subtree_gap values must be consistent prior to insertion */
398 validate_mm_rb(root, NULL);
399
400 rb_insert_augmented(&vma->vm_rb, root, &vma_gap_callbacks);
401}
402
403static void vma_rb_erase(struct vm_area_struct *vma, struct rb_root *root)
404{
405 /*
406 * All rb_subtree_gap values must be consistent prior to erase,
407 * with the possible exception of the vma being erased.
408 */
409 validate_mm_rb(root, vma);
410
411 /*
412 * Note rb_erase_augmented is a fairly large inline function,
413 * so make sure we instantiate it only once with our desired
414 * augmented rbtree callbacks.
415 */
416 rb_erase_augmented(&vma->vm_rb, root, &vma_gap_callbacks);
417}
418
Michel Lespinassebf181b92012-10-08 16:31:39 -0700419/*
420 * vma has some anon_vma assigned, and is already inserted on that
421 * anon_vma's interval trees.
422 *
423 * Before updating the vma's vm_start / vm_end / vm_pgoff fields, the
424 * vma must be removed from the anon_vma's interval trees using
425 * anon_vma_interval_tree_pre_update_vma().
426 *
427 * After the update, the vma will be reinserted using
428 * anon_vma_interval_tree_post_update_vma().
429 *
430 * The entire update must be protected by exclusive mmap_sem and by
431 * the root anon_vma's mutex.
432 */
433static inline void
434anon_vma_interval_tree_pre_update_vma(struct vm_area_struct *vma)
435{
436 struct anon_vma_chain *avc;
437
438 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
439 anon_vma_interval_tree_remove(avc, &avc->anon_vma->rb_root);
440}
441
442static inline void
443anon_vma_interval_tree_post_update_vma(struct vm_area_struct *vma)
444{
445 struct anon_vma_chain *avc;
446
447 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
448 anon_vma_interval_tree_insert(avc, &avc->anon_vma->rb_root);
449}
450
Hugh Dickins6597d782012-10-08 16:29:07 -0700451static int find_vma_links(struct mm_struct *mm, unsigned long addr,
452 unsigned long end, struct vm_area_struct **pprev,
453 struct rb_node ***rb_link, struct rb_node **rb_parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
Hugh Dickins6597d782012-10-08 16:29:07 -0700455 struct rb_node **__rb_link, *__rb_parent, *rb_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457 __rb_link = &mm->mm_rb.rb_node;
458 rb_prev = __rb_parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460 while (*__rb_link) {
461 struct vm_area_struct *vma_tmp;
462
463 __rb_parent = *__rb_link;
464 vma_tmp = rb_entry(__rb_parent, struct vm_area_struct, vm_rb);
465
466 if (vma_tmp->vm_end > addr) {
Hugh Dickins6597d782012-10-08 16:29:07 -0700467 /* Fail if an existing vma overlaps the area */
468 if (vma_tmp->vm_start < end)
469 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 __rb_link = &__rb_parent->rb_left;
471 } else {
472 rb_prev = __rb_parent;
473 __rb_link = &__rb_parent->rb_right;
474 }
475 }
476
477 *pprev = NULL;
478 if (rb_prev)
479 *pprev = rb_entry(rb_prev, struct vm_area_struct, vm_rb);
480 *rb_link = __rb_link;
481 *rb_parent = __rb_parent;
Hugh Dickins6597d782012-10-08 16:29:07 -0700482 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
Cyril Hrubise8420a82013-04-29 15:08:33 -0700485static unsigned long count_vma_pages_range(struct mm_struct *mm,
486 unsigned long addr, unsigned long end)
487{
488 unsigned long nr_pages = 0;
489 struct vm_area_struct *vma;
490
491 /* Find first overlaping mapping */
492 vma = find_vma_intersection(mm, addr, end);
493 if (!vma)
494 return 0;
495
496 nr_pages = (min(end, vma->vm_end) -
497 max(addr, vma->vm_start)) >> PAGE_SHIFT;
498
499 /* Iterate over the rest of the overlaps */
500 for (vma = vma->vm_next; vma; vma = vma->vm_next) {
501 unsigned long overlap_len;
502
503 if (vma->vm_start > end)
504 break;
505
506 overlap_len = min(end, vma->vm_end) - vma->vm_start;
507 nr_pages += overlap_len >> PAGE_SHIFT;
508 }
509
510 return nr_pages;
511}
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513void __vma_link_rb(struct mm_struct *mm, struct vm_area_struct *vma,
514 struct rb_node **rb_link, struct rb_node *rb_parent)
515{
Michel Lespinassed3737182012-12-11 16:01:38 -0800516 /* Update tracking information for the gap following the new vma. */
517 if (vma->vm_next)
518 vma_gap_update(vma->vm_next);
519 else
520 mm->highest_vm_end = vma->vm_end;
521
522 /*
523 * vma->vm_prev wasn't known when we followed the rbtree to find the
524 * correct insertion point for that vma. As a result, we could not
525 * update the vma vm_rb parents rb_subtree_gap values on the way down.
526 * So, we first insert the vma with a zero rb_subtree_gap value
527 * (to be consistent with what we did on the way down), and then
528 * immediately update the gap to the correct value. Finally we
529 * rebalance the rbtree after all augmented values have been set.
530 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 rb_link_node(&vma->vm_rb, rb_parent, rb_link);
Michel Lespinassed3737182012-12-11 16:01:38 -0800532 vma->rb_subtree_gap = 0;
533 vma_gap_update(vma);
534 vma_rb_insert(vma, &mm->mm_rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
Denys Vlasenkocb8f4882008-10-18 20:27:01 -0700537static void __vma_link_file(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
ZhenwenXu48aae422009-01-06 14:40:21 -0800539 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 file = vma->vm_file;
542 if (file) {
543 struct address_space *mapping = file->f_mapping;
544
545 if (vma->vm_flags & VM_DENYWRITE)
Al Viro496ad9a2013-01-23 17:07:38 -0500546 atomic_dec(&file_inode(file)->i_writecount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 if (vma->vm_flags & VM_SHARED)
David Herrmann4bb5f5d2014-08-08 14:25:25 -0700548 atomic_inc(&mapping->i_mmap_writable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 flush_dcache_mmap_lock(mapping);
Kirill A. Shutemov27ba0642015-02-10 14:09:59 -0800551 vma_interval_tree_insert(vma, &mapping->i_mmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 flush_dcache_mmap_unlock(mapping);
553 }
554}
555
556static void
557__vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
558 struct vm_area_struct *prev, struct rb_node **rb_link,
559 struct rb_node *rb_parent)
560{
561 __vma_link_list(mm, vma, prev, rb_parent);
562 __vma_link_rb(mm, vma, rb_link, rb_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
565static void vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
566 struct vm_area_struct *prev, struct rb_node **rb_link,
567 struct rb_node *rb_parent)
568{
569 struct address_space *mapping = NULL;
570
Huang Shijie64ac4942014-06-04 16:07:33 -0700571 if (vma->vm_file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 mapping = vma->vm_file->f_mapping;
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800573 i_mmap_lock_write(mapping);
Huang Shijie64ac4942014-06-04 16:07:33 -0700574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576 __vma_link(mm, vma, prev, rb_link, rb_parent);
577 __vma_link_file(vma);
578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (mapping)
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800580 i_mmap_unlock_write(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 mm->map_count++;
583 validate_mm(mm);
584}
585
586/*
Kautuk Consul88f6b4c2012-03-21 16:34:16 -0700587 * Helper for vma_adjust() in the split_vma insert case: insert a vma into the
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700588 * mm's list and rbtree. It has already been inserted into the interval tree.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 */
ZhenwenXu48aae422009-01-06 14:40:21 -0800590static void __insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
Hugh Dickins6597d782012-10-08 16:29:07 -0700592 struct vm_area_struct *prev;
ZhenwenXu48aae422009-01-06 14:40:21 -0800593 struct rb_node **rb_link, *rb_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Hugh Dickins6597d782012-10-08 16:29:07 -0700595 if (find_vma_links(mm, vma->vm_start, vma->vm_end,
596 &prev, &rb_link, &rb_parent))
597 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 __vma_link(mm, vma, prev, rb_link, rb_parent);
599 mm->map_count++;
600}
601
602static inline void
603__vma_unlink(struct mm_struct *mm, struct vm_area_struct *vma,
604 struct vm_area_struct *prev)
605{
Michel Lespinassed3737182012-12-11 16:01:38 -0800606 struct vm_area_struct *next;
Linus Torvalds297c5ee2010-08-20 16:24:55 -0700607
Michel Lespinassed3737182012-12-11 16:01:38 -0800608 vma_rb_erase(vma, &mm->mm_rb);
609 prev->vm_next = next = vma->vm_next;
Linus Torvalds297c5ee2010-08-20 16:24:55 -0700610 if (next)
611 next->vm_prev = prev;
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700612
613 /* Kill the cache */
614 vmacache_invalidate(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
616
617/*
618 * We cannot adjust vm_start, vm_end, vm_pgoff fields of a vma that
619 * is already present in an i_mmap tree without adjusting the tree.
620 * The following helper function should be used when such adjustments
621 * are necessary. The "insert" vma (if any) is to be inserted
622 * before we drop the necessary locks.
623 */
Rik van Riel5beb4932010-03-05 13:42:07 -0800624int vma_adjust(struct vm_area_struct *vma, unsigned long start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert)
626{
627 struct mm_struct *mm = vma->vm_mm;
628 struct vm_area_struct *next = vma->vm_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 struct address_space *mapping = NULL;
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700630 struct rb_root *root = NULL;
Rik van Riel012f18002010-08-09 17:18:40 -0700631 struct anon_vma *anon_vma = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 struct file *file = vma->vm_file;
Michel Lespinassed3737182012-12-11 16:01:38 -0800633 bool start_changed = false, end_changed = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 long adjust_next = 0;
635 int remove_next = 0;
636
637 if (next && !insert) {
Kirill A. Shutemov734537c2016-07-28 15:49:01 -0700638 struct vm_area_struct *exporter = NULL, *importer = NULL;
Linus Torvalds287d97a2010-04-10 15:22:30 -0700639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 if (end >= next->vm_end) {
641 /*
642 * vma expands, overlapping all the next, and
643 * perhaps the one after too (mprotect case 6).
644 */
Kirill A. Shutemov734537c2016-07-28 15:49:01 -0700645 remove_next = 1 + (end > next->vm_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 end = next->vm_end;
Linus Torvalds287d97a2010-04-10 15:22:30 -0700647 exporter = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 importer = vma;
Kirill A. Shutemov734537c2016-07-28 15:49:01 -0700649
650 /*
651 * If next doesn't have anon_vma, import from vma after
652 * next, if the vma overlaps with it.
653 */
654 if (remove_next == 2 && next && !next->anon_vma)
655 exporter = next->vm_next;
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 } else if (end > next->vm_start) {
658 /*
659 * vma expands, overlapping part of the next:
660 * mprotect case 5 shifting the boundary up.
661 */
662 adjust_next = (end - next->vm_start) >> PAGE_SHIFT;
Linus Torvalds287d97a2010-04-10 15:22:30 -0700663 exporter = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 importer = vma;
665 } else if (end < vma->vm_end) {
666 /*
667 * vma shrinks, and !insert tells it's not
668 * split_vma inserting another: so it must be
669 * mprotect case 4 shifting the boundary down.
670 */
vishnu.pscc71aba2014-10-09 15:26:29 -0700671 adjust_next = -((vma->vm_end - end) >> PAGE_SHIFT);
Linus Torvalds287d97a2010-04-10 15:22:30 -0700672 exporter = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 importer = next;
674 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Rik van Riel5beb4932010-03-05 13:42:07 -0800676 /*
677 * Easily overlooked: when mprotect shifts the boundary,
678 * make sure the expanding vma has anon_vma set if the
679 * shrinking vma had, to cover any anon pages imported.
680 */
Linus Torvalds287d97a2010-04-10 15:22:30 -0700681 if (exporter && exporter->anon_vma && !importer->anon_vma) {
Daniel Forrestc4ea95d2014-12-02 15:59:42 -0800682 int error;
683
Linus Torvalds287d97a2010-04-10 15:22:30 -0700684 importer->anon_vma = exporter->anon_vma;
Konstantin Khlebnikovb800c912015-01-11 16:54:06 +0300685 error = anon_vma_clone(importer, exporter);
Leon Yu3fe89b32015-03-25 15:55:11 -0700686 if (error)
Konstantin Khlebnikovb800c912015-01-11 16:54:06 +0300687 return error;
Rik van Riel5beb4932010-03-05 13:42:07 -0800688 }
689 }
Kirill A. Shutemov734537c2016-07-28 15:49:01 -0700690again:
Kirill A. Shutemov37f9f552016-07-26 15:25:48 -0700691 vma_adjust_trans_huge(vma, start, end, adjust_next);
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (file) {
694 mapping = file->f_mapping;
Kirill A. Shutemov27ba0642015-02-10 14:09:59 -0800695 root = &mapping->i_mmap;
696 uprobe_munmap(vma, vma->vm_start, vma->vm_end);
Srikar Dronamraju682968e2012-03-30 23:56:46 +0530697
Kirill A. Shutemov27ba0642015-02-10 14:09:59 -0800698 if (adjust_next)
699 uprobe_munmap(next, next->vm_start, next->vm_end);
Srikar Dronamraju682968e2012-03-30 23:56:46 +0530700
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800701 i_mmap_lock_write(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 if (insert) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 /*
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700704 * Put into interval tree now, so instantiated pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 * are visible to arm/parisc __flush_dcache_page
706 * throughout; but we cannot insert into address
707 * space until vma start or end is updated.
708 */
709 __vma_link_file(insert);
710 }
711 }
712
Michel Lespinassebf181b92012-10-08 16:31:39 -0700713 anon_vma = vma->anon_vma;
714 if (!anon_vma && adjust_next)
715 anon_vma = next->anon_vma;
716 if (anon_vma) {
Sasha Levin81d1b092014-10-09 15:28:10 -0700717 VM_BUG_ON_VMA(adjust_next && next->anon_vma &&
718 anon_vma != next->anon_vma, next);
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000719 anon_vma_lock_write(anon_vma);
Michel Lespinassebf181b92012-10-08 16:31:39 -0700720 anon_vma_interval_tree_pre_update_vma(vma);
721 if (adjust_next)
722 anon_vma_interval_tree_pre_update_vma(next);
723 }
Rik van Riel012f18002010-08-09 17:18:40 -0700724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 if (root) {
726 flush_dcache_mmap_lock(mapping);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700727 vma_interval_tree_remove(vma, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 if (adjust_next)
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700729 vma_interval_tree_remove(next, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 }
731
Michel Lespinassed3737182012-12-11 16:01:38 -0800732 if (start != vma->vm_start) {
733 vma->vm_start = start;
734 start_changed = true;
735 }
736 if (end != vma->vm_end) {
737 vma->vm_end = end;
738 end_changed = true;
739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 vma->vm_pgoff = pgoff;
741 if (adjust_next) {
742 next->vm_start += adjust_next << PAGE_SHIFT;
743 next->vm_pgoff += adjust_next;
744 }
745
746 if (root) {
747 if (adjust_next)
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700748 vma_interval_tree_insert(next, root);
749 vma_interval_tree_insert(vma, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 flush_dcache_mmap_unlock(mapping);
751 }
752
753 if (remove_next) {
754 /*
755 * vma_merge has merged next into vma, and needs
756 * us to remove next before dropping the locks.
757 */
758 __vma_unlink(mm, next, vma);
759 if (file)
760 __remove_shared_vm_struct(next, file, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 } else if (insert) {
762 /*
763 * split_vma has split insert from vma, and needs
764 * us to insert it before dropping the locks
765 * (it may either follow vma or precede it).
766 */
767 __insert_vm_struct(mm, insert);
Michel Lespinassed3737182012-12-11 16:01:38 -0800768 } else {
769 if (start_changed)
770 vma_gap_update(vma);
771 if (end_changed) {
772 if (!next)
773 mm->highest_vm_end = end;
774 else if (!adjust_next)
775 vma_gap_update(next);
776 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 }
778
Michel Lespinassebf181b92012-10-08 16:31:39 -0700779 if (anon_vma) {
780 anon_vma_interval_tree_post_update_vma(vma);
781 if (adjust_next)
782 anon_vma_interval_tree_post_update_vma(next);
Konstantin Khlebnikov08b52702013-02-22 16:34:40 -0800783 anon_vma_unlock_write(anon_vma);
Michel Lespinassebf181b92012-10-08 16:31:39 -0700784 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 if (mapping)
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800786 i_mmap_unlock_write(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530788 if (root) {
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100789 uprobe_mmap(vma);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530790
791 if (adjust_next)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100792 uprobe_mmap(next);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530793 }
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 if (remove_next) {
Matt Helsley925d1c42008-04-29 01:01:36 -0700796 if (file) {
Srikar Dronamrajucbc91f72012-04-11 16:05:27 +0530797 uprobe_munmap(next, next->vm_start, next->vm_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 fput(file);
Matt Helsley925d1c42008-04-29 01:01:36 -0700799 }
Rik van Riel5beb4932010-03-05 13:42:07 -0800800 if (next->anon_vma)
801 anon_vma_merge(vma, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 mm->map_count--;
Oleg Nesterov3964acd2013-07-31 13:53:28 -0700803 mpol_put(vma_policy(next));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 kmem_cache_free(vm_area_cachep, next);
805 /*
806 * In mprotect's case 6 (see comments on vma_merge),
807 * we must remove another next too. It would clutter
808 * up the code too much to do both in one go.
809 */
Michel Lespinassed3737182012-12-11 16:01:38 -0800810 next = vma->vm_next;
Kirill A. Shutemov734537c2016-07-28 15:49:01 -0700811 if (remove_next == 2) {
812 remove_next = 1;
813 end = next->vm_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 goto again;
Kirill A. Shutemov734537c2016-07-28 15:49:01 -0700815 }
Michel Lespinassed3737182012-12-11 16:01:38 -0800816 else if (next)
817 vma_gap_update(next);
818 else
819 mm->highest_vm_end = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530821 if (insert && file)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100822 uprobe_mmap(insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 validate_mm(mm);
Rik van Riel5beb4932010-03-05 13:42:07 -0800825
826 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
829/*
830 * If the vma has a ->close operation then the driver probably needs to release
831 * per-vma resources, so we don't attempt to merge those.
832 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833static inline int is_mergeable_vma(struct vm_area_struct *vma,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -0700834 struct file *file, unsigned long vm_flags,
835 struct vm_userfaultfd_ctx vm_userfaultfd_ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836{
Cyrill Gorcunov34228d42014-01-23 15:53:42 -0800837 /*
838 * VM_SOFTDIRTY should not prevent from VMA merging, if we
839 * match the flags but dirty bit -- the caller should mark
840 * merged VMA as dirty. If dirty bit won't be excluded from
841 * comparison, we increase pressue on the memory system forcing
842 * the kernel to generate new VMAs when old one could be
843 * extended instead.
844 */
845 if ((vma->vm_flags ^ vm_flags) & ~VM_SOFTDIRTY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 return 0;
847 if (vma->vm_file != file)
848 return 0;
849 if (vma->vm_ops && vma->vm_ops->close)
850 return 0;
Andrea Arcangeli19a809a2015-09-04 15:46:24 -0700851 if (!is_mergeable_vm_userfaultfd_ctx(vma, vm_userfaultfd_ctx))
852 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 return 1;
854}
855
856static inline int is_mergeable_anon_vma(struct anon_vma *anon_vma1,
Shaohua Li965f55d2011-05-24 17:11:20 -0700857 struct anon_vma *anon_vma2,
858 struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
Shaohua Li965f55d2011-05-24 17:11:20 -0700860 /*
861 * The list_is_singular() test is to avoid merging VMA cloned from
862 * parents. This can improve scalability caused by anon_vma lock.
863 */
864 if ((!anon_vma1 || !anon_vma2) && (!vma ||
865 list_is_singular(&vma->anon_vma_chain)))
866 return 1;
867 return anon_vma1 == anon_vma2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
869
870/*
871 * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
872 * in front of (at a lower virtual address and file offset than) the vma.
873 *
874 * We cannot merge two vmas if they have differently assigned (non-NULL)
875 * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
876 *
877 * We don't check here for the merged mmap wrapping around the end of pagecache
878 * indices (16TB on ia32) because do_mmap_pgoff() does not permit mmap's which
879 * wrap, nor mmaps which cover the final page at index -1UL.
880 */
881static int
882can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -0700883 struct anon_vma *anon_vma, struct file *file,
884 pgoff_t vm_pgoff,
885 struct vm_userfaultfd_ctx vm_userfaultfd_ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
Andrea Arcangeli19a809a2015-09-04 15:46:24 -0700887 if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx) &&
Shaohua Li965f55d2011-05-24 17:11:20 -0700888 is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 if (vma->vm_pgoff == vm_pgoff)
890 return 1;
891 }
892 return 0;
893}
894
895/*
896 * Return true if we can merge this (vm_flags,anon_vma,file,vm_pgoff)
897 * beyond (at a higher virtual address and file offset than) the vma.
898 *
899 * We cannot merge two vmas if they have differently assigned (non-NULL)
900 * anon_vmas, nor if same anon_vma is assigned but offsets incompatible.
901 */
902static int
903can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -0700904 struct anon_vma *anon_vma, struct file *file,
905 pgoff_t vm_pgoff,
906 struct vm_userfaultfd_ctx vm_userfaultfd_ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Andrea Arcangeli19a809a2015-09-04 15:46:24 -0700908 if (is_mergeable_vma(vma, file, vm_flags, vm_userfaultfd_ctx) &&
Shaohua Li965f55d2011-05-24 17:11:20 -0700909 is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 pgoff_t vm_pglen;
Libind6e93212013-07-03 15:01:26 -0700911 vm_pglen = vma_pages(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 if (vma->vm_pgoff + vm_pglen == vm_pgoff)
913 return 1;
914 }
915 return 0;
916}
917
918/*
919 * Given a mapping request (addr,end,vm_flags,file,pgoff), figure out
920 * whether that can be merged with its predecessor or its successor.
921 * Or both (it neatly fills a hole).
922 *
923 * In most cases - when called for mmap, brk or mremap - [addr,end) is
924 * certain not to be mapped by the time vma_merge is called; but when
925 * called for mprotect, it is certain to be already mapped (either at
926 * an offset within prev, or at the start of next), and the flags of
927 * this area are about to be changed to vm_flags - and the no-change
928 * case has already been eliminated.
929 *
930 * The following mprotect cases have to be considered, where AAAA is
931 * the area passed down from mprotect_fixup, never extending beyond one
932 * vma, PPPPPP is the prev vma specified, and NNNNNN the next vma after:
933 *
934 * AAAA AAAA AAAA AAAA
935 * PPPPPPNNNNNN PPPPPPNNNNNN PPPPPPNNNNNN PPPPNNNNXXXX
936 * cannot merge might become might become might become
937 * PPNNNNNNNNNN PPPPPPPPPPNN PPPPPPPPPPPP 6 or
938 * mmap, brk or case 4 below case 5 below PPPPPPPPXXXX 7 or
939 * mremap move: PPPPNNNNNNNN 8
940 * AAAA
941 * PPPP NNNN PPPPPPPPPPPP PPPPPPPPNNNN PPPPNNNNNNNN
942 * might become case 1 below case 2 below case 3 below
943 *
944 * Odd one out? Case 8, because it extends NNNN but needs flags of XXXX:
945 * mprotect_fixup updates vm_flags & vm_page_prot on successful return.
946 */
947struct vm_area_struct *vma_merge(struct mm_struct *mm,
948 struct vm_area_struct *prev, unsigned long addr,
949 unsigned long end, unsigned long vm_flags,
vishnu.pscc71aba2014-10-09 15:26:29 -0700950 struct anon_vma *anon_vma, struct file *file,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -0700951 pgoff_t pgoff, struct mempolicy *policy,
952 struct vm_userfaultfd_ctx vm_userfaultfd_ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
954 pgoff_t pglen = (end - addr) >> PAGE_SHIFT;
955 struct vm_area_struct *area, *next;
Rik van Riel5beb4932010-03-05 13:42:07 -0800956 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958 /*
959 * We later require that vma->vm_flags == vm_flags,
960 * so this tests vma->vm_flags & VM_SPECIAL, too.
961 */
962 if (vm_flags & VM_SPECIAL)
963 return NULL;
964
965 if (prev)
966 next = prev->vm_next;
967 else
968 next = mm->mmap;
969 area = next;
970 if (next && next->vm_end == end) /* cases 6, 7, 8 */
971 next = next->vm_next;
972
973 /*
974 * Can it merge with the predecessor?
975 */
976 if (prev && prev->vm_end == addr &&
vishnu.pscc71aba2014-10-09 15:26:29 -0700977 mpol_equal(vma_policy(prev), policy) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 can_vma_merge_after(prev, vm_flags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -0700979 anon_vma, file, pgoff,
980 vm_userfaultfd_ctx)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 /*
982 * OK, it can. Can we now merge in the successor as well?
983 */
984 if (next && end == next->vm_start &&
985 mpol_equal(policy, vma_policy(next)) &&
986 can_vma_merge_before(next, vm_flags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -0700987 anon_vma, file,
988 pgoff+pglen,
989 vm_userfaultfd_ctx) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 is_mergeable_anon_vma(prev->anon_vma,
Shaohua Li965f55d2011-05-24 17:11:20 -0700991 next->anon_vma, NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 /* cases 1, 6 */
Rik van Riel5beb4932010-03-05 13:42:07 -0800993 err = vma_adjust(prev, prev->vm_start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 next->vm_end, prev->vm_pgoff, NULL);
995 } else /* cases 2, 5, 7 */
Rik van Riel5beb4932010-03-05 13:42:07 -0800996 err = vma_adjust(prev, prev->vm_start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 end, prev->vm_pgoff, NULL);
Rik van Riel5beb4932010-03-05 13:42:07 -0800998 if (err)
999 return NULL;
David Rientjes6d50e602014-10-29 14:50:31 -07001000 khugepaged_enter_vma_merge(prev, vm_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 return prev;
1002 }
1003
1004 /*
1005 * Can this new request be merged in front of next?
1006 */
1007 if (next && end == next->vm_start &&
vishnu.pscc71aba2014-10-09 15:26:29 -07001008 mpol_equal(policy, vma_policy(next)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 can_vma_merge_before(next, vm_flags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -07001010 anon_vma, file, pgoff+pglen,
1011 vm_userfaultfd_ctx)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 if (prev && addr < prev->vm_end) /* case 4 */
Rik van Riel5beb4932010-03-05 13:42:07 -08001013 err = vma_adjust(prev, prev->vm_start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 addr, prev->vm_pgoff, NULL);
1015 else /* cases 3, 8 */
Rik van Riel5beb4932010-03-05 13:42:07 -08001016 err = vma_adjust(area, addr, next->vm_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 next->vm_pgoff - pglen, NULL);
Rik van Riel5beb4932010-03-05 13:42:07 -08001018 if (err)
1019 return NULL;
David Rientjes6d50e602014-10-29 14:50:31 -07001020 khugepaged_enter_vma_merge(area, vm_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 return area;
1022 }
1023
1024 return NULL;
1025}
1026
1027/*
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001028 * Rough compatbility check to quickly see if it's even worth looking
1029 * at sharing an anon_vma.
1030 *
1031 * They need to have the same vm_file, and the flags can only differ
1032 * in things that mprotect may change.
1033 *
1034 * NOTE! The fact that we share an anon_vma doesn't _have_ to mean that
1035 * we can merge the two vma's. For example, we refuse to merge a vma if
1036 * there is a vm_ops->close() function, because that indicates that the
1037 * driver is doing some kind of reference counting. But that doesn't
1038 * really matter for the anon_vma sharing case.
1039 */
1040static int anon_vma_compatible(struct vm_area_struct *a, struct vm_area_struct *b)
1041{
1042 return a->vm_end == b->vm_start &&
1043 mpol_equal(vma_policy(a), vma_policy(b)) &&
1044 a->vm_file == b->vm_file &&
Cyrill Gorcunov34228d42014-01-23 15:53:42 -08001045 !((a->vm_flags ^ b->vm_flags) & ~(VM_READ|VM_WRITE|VM_EXEC|VM_SOFTDIRTY)) &&
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001046 b->vm_pgoff == a->vm_pgoff + ((b->vm_start - a->vm_start) >> PAGE_SHIFT);
1047}
1048
1049/*
1050 * Do some basic sanity checking to see if we can re-use the anon_vma
1051 * from 'old'. The 'a'/'b' vma's are in VM order - one of them will be
1052 * the same as 'old', the other will be the new one that is trying
1053 * to share the anon_vma.
1054 *
1055 * NOTE! This runs with mm_sem held for reading, so it is possible that
1056 * the anon_vma of 'old' is concurrently in the process of being set up
1057 * by another page fault trying to merge _that_. But that's ok: if it
1058 * is being set up, that automatically means that it will be a singleton
1059 * acceptable for merging, so we can do all of this optimistically. But
Jason Low4db0c3c2015-04-15 16:14:08 -07001060 * we do that READ_ONCE() to make sure that we never re-load the pointer.
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001061 *
1062 * IOW: that the "list_is_singular()" test on the anon_vma_chain only
1063 * matters for the 'stable anon_vma' case (ie the thing we want to avoid
1064 * is to return an anon_vma that is "complex" due to having gone through
1065 * a fork).
1066 *
1067 * We also make sure that the two vma's are compatible (adjacent,
1068 * and with the same memory policies). That's all stable, even with just
1069 * a read lock on the mm_sem.
1070 */
1071static struct anon_vma *reusable_anon_vma(struct vm_area_struct *old, struct vm_area_struct *a, struct vm_area_struct *b)
1072{
1073 if (anon_vma_compatible(a, b)) {
Jason Low4db0c3c2015-04-15 16:14:08 -07001074 struct anon_vma *anon_vma = READ_ONCE(old->anon_vma);
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001075
1076 if (anon_vma && list_is_singular(&old->anon_vma_chain))
1077 return anon_vma;
1078 }
1079 return NULL;
1080}
1081
1082/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 * find_mergeable_anon_vma is used by anon_vma_prepare, to check
1084 * neighbouring vmas for a suitable anon_vma, before it goes off
1085 * to allocate a new anon_vma. It checks because a repetitive
1086 * sequence of mprotects and faults may otherwise lead to distinct
1087 * anon_vmas being allocated, preventing vma merge in subsequent
1088 * mprotect.
1089 */
1090struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma)
1091{
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001092 struct anon_vma *anon_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 struct vm_area_struct *near;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095 near = vma->vm_next;
1096 if (!near)
1097 goto try_prev;
1098
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001099 anon_vma = reusable_anon_vma(near, vma, near);
1100 if (anon_vma)
1101 return anon_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102try_prev:
Linus Torvalds9be34c92011-06-16 00:35:09 -07001103 near = vma->vm_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 if (!near)
1105 goto none;
1106
Linus Torvaldsd0e9fe12010-04-10 10:36:19 -07001107 anon_vma = reusable_anon_vma(near, near, vma);
1108 if (anon_vma)
1109 return anon_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110none:
1111 /*
1112 * There's no absolute need to look only at touching neighbours:
1113 * we could search further afield for "compatible" anon_vmas.
1114 * But it would probably just be a waste of time searching,
1115 * or lead to too many vmas hanging off the same anon_vma.
1116 * We're trying to allow mprotect remerging later on,
1117 * not trying to minimize memory used for anon_vmas.
1118 */
1119 return NULL;
1120}
1121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122/*
Al Viro40401532012-02-13 03:58:52 +00001123 * If a hint addr is less than mmap_min_addr change hint to be as
1124 * low as possible but still greater than mmap_min_addr
1125 */
1126static inline unsigned long round_hint_to_min(unsigned long hint)
1127{
1128 hint &= PAGE_MASK;
1129 if (((void *)hint != NULL) &&
1130 (hint < mmap_min_addr))
1131 return PAGE_ALIGN(mmap_min_addr);
1132 return hint;
1133}
1134
Davidlohr Bueso363ee172014-01-21 15:49:15 -08001135static inline int mlock_future_check(struct mm_struct *mm,
1136 unsigned long flags,
1137 unsigned long len)
1138{
1139 unsigned long locked, lock_limit;
1140
1141 /* mlock MCL_FUTURE? */
1142 if (flags & VM_LOCKED) {
1143 locked = len >> PAGE_SHIFT;
1144 locked += mm->locked_vm;
1145 lock_limit = rlimit(RLIMIT_MEMLOCK);
1146 lock_limit >>= PAGE_SHIFT;
1147 if (locked > lock_limit && !capable(CAP_IPC_LOCK))
1148 return -EAGAIN;
1149 }
1150 return 0;
1151}
1152
Al Viro40401532012-02-13 03:58:52 +00001153/*
Jianjun Kong27f5de72009-09-17 19:26:26 -07001154 * The caller must hold down_write(&current->mm->mmap_sem).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 */
Oleg Nesterov1fcfd8d2015-09-09 15:39:29 -07001156unsigned long do_mmap(struct file *file, unsigned long addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 unsigned long len, unsigned long prot,
Oleg Nesterov1fcfd8d2015-09-09 15:39:29 -07001158 unsigned long flags, vm_flags_t vm_flags,
1159 unsigned long pgoff, unsigned long *populate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
vishnu.pscc71aba2014-10-09 15:26:29 -07001161 struct mm_struct *mm = current->mm;
Dave Hansen62b5f7d2016-02-12 13:02:40 -08001162 int pkey = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Michel Lespinasse41badc12013-02-22 16:32:47 -08001164 *populate = 0;
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001165
Piotr Kwapulinskie37609b2015-06-24 16:58:39 -07001166 if (!len)
1167 return -EINVAL;
1168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 /*
1170 * Does the application expect PROT_READ to imply PROT_EXEC?
1171 *
1172 * (the exception is when the underlying filesystem is noexec
1173 * mounted, in which case we dont add PROT_EXEC.)
1174 */
1175 if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
Eric W. Biederman90f85722015-06-29 14:42:03 -05001176 if (!(file && path_noexec(&file->f_path)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 prot |= PROT_EXEC;
1178
Eric Paris7cd94142007-11-26 18:47:40 -05001179 if (!(flags & MAP_FIXED))
1180 addr = round_hint_to_min(addr);
1181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 /* Careful about overflows.. */
1183 len = PAGE_ALIGN(len);
Al Viro9206de92009-12-03 15:23:11 -05001184 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 return -ENOMEM;
1186
1187 /* offset overflow? */
1188 if ((pgoff + (len >> PAGE_SHIFT)) < pgoff)
vishnu.pscc71aba2014-10-09 15:26:29 -07001189 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191 /* Too many mappings? */
1192 if (mm->map_count > sysctl_max_map_count)
1193 return -ENOMEM;
1194
1195 /* Obtain the address to map to. we verify (or select) it and ensure
1196 * that it represents a valid section of the address space.
1197 */
1198 addr = get_unmapped_area(file, addr, len, pgoff, flags);
Alexander Kuleshovde1741a2015-11-05 18:46:54 -08001199 if (offset_in_page(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 return addr;
1201
Dave Hansen62b5f7d2016-02-12 13:02:40 -08001202 if (prot == PROT_EXEC) {
1203 pkey = execute_only_pkey(mm);
1204 if (pkey < 0)
1205 pkey = 0;
1206 }
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 /* Do simple checking here so the lower-level routines won't have
1209 * to. we assume access permissions have been handled by the open
1210 * of the memory object, so we don't do any here.
1211 */
Dave Hansen62b5f7d2016-02-12 13:02:40 -08001212 vm_flags |= calc_vm_prot_bits(prot, pkey) | calc_vm_flag_bits(flags) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
1214
Huang Shijiecdf7b342009-09-21 17:03:36 -07001215 if (flags & MAP_LOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 if (!can_do_mlock())
1217 return -EPERM;
Rik van Rielba470de2008-10-18 20:26:50 -07001218
Davidlohr Bueso363ee172014-01-21 15:49:15 -08001219 if (mlock_future_check(mm, vm_flags, len))
1220 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 if (file) {
Oleg Nesterov077bf222013-09-11 14:20:19 -07001223 struct inode *inode = file_inode(file);
1224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 switch (flags & MAP_TYPE) {
1226 case MAP_SHARED:
1227 if ((prot&PROT_WRITE) && !(file->f_mode&FMODE_WRITE))
1228 return -EACCES;
1229
1230 /*
1231 * Make sure we don't allow writing to an append-only
1232 * file..
1233 */
1234 if (IS_APPEND(inode) && (file->f_mode & FMODE_WRITE))
1235 return -EACCES;
1236
1237 /*
1238 * Make sure there are no mandatory locks on the file.
1239 */
Jeff Laytond7a06982014-03-10 09:54:15 -04001240 if (locks_verify_locked(file))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 return -EAGAIN;
1242
1243 vm_flags |= VM_SHARED | VM_MAYSHARE;
1244 if (!(file->f_mode & FMODE_WRITE))
1245 vm_flags &= ~(VM_MAYWRITE | VM_SHARED);
1246
1247 /* fall through */
1248 case MAP_PRIVATE:
1249 if (!(file->f_mode & FMODE_READ))
1250 return -EACCES;
Eric W. Biederman90f85722015-06-29 14:42:03 -05001251 if (path_noexec(&file->f_path)) {
Linus Torvalds80c56062006-10-15 14:09:55 -07001252 if (vm_flags & VM_EXEC)
1253 return -EPERM;
1254 vm_flags &= ~VM_MAYEXEC;
1255 }
Linus Torvalds80c56062006-10-15 14:09:55 -07001256
Al Viro72c2d532013-09-22 16:27:52 -04001257 if (!file->f_op->mmap)
Linus Torvalds80c56062006-10-15 14:09:55 -07001258 return -ENODEV;
Oleg Nesterovb2c56e42013-09-11 14:20:18 -07001259 if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1260 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 break;
1262
1263 default:
1264 return -EINVAL;
1265 }
1266 } else {
1267 switch (flags & MAP_TYPE) {
1268 case MAP_SHARED:
Oleg Nesterovb2c56e42013-09-11 14:20:18 -07001269 if (vm_flags & (VM_GROWSDOWN|VM_GROWSUP))
1270 return -EINVAL;
Tejun Heoce363942008-09-03 16:09:47 +02001271 /*
1272 * Ignore pgoff.
1273 */
1274 pgoff = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 vm_flags |= VM_SHARED | VM_MAYSHARE;
1276 break;
1277 case MAP_PRIVATE:
1278 /*
1279 * Set pgoff according to addr for anon_vma.
1280 */
1281 pgoff = addr >> PAGE_SHIFT;
1282 break;
1283 default:
1284 return -EINVAL;
1285 }
1286 }
1287
Michel Lespinassec22c0d62013-02-22 16:32:43 -08001288 /*
1289 * Set 'VM_NORESERVE' if we should not account for the
1290 * memory use of this mapping.
1291 */
1292 if (flags & MAP_NORESERVE) {
1293 /* We honor MAP_NORESERVE if allowed to overcommit */
1294 if (sysctl_overcommit_memory != OVERCOMMIT_NEVER)
1295 vm_flags |= VM_NORESERVE;
1296
1297 /* hugetlb applies strict overcommit unless MAP_NORESERVE */
1298 if (file && is_file_hugepages(file))
1299 vm_flags |= VM_NORESERVE;
1300 }
1301
1302 addr = mmap_region(file, addr, len, vm_flags, pgoff);
Michel Lespinasse09a9f1d2013-03-28 16:26:23 -07001303 if (!IS_ERR_VALUE(addr) &&
1304 ((vm_flags & VM_LOCKED) ||
1305 (flags & (MAP_POPULATE | MAP_NONBLOCK)) == MAP_POPULATE))
Michel Lespinasse41badc12013-02-22 16:32:47 -08001306 *populate = len;
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001307 return addr;
Miklos Szeredi0165ab42007-07-15 23:38:26 -07001308}
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001309
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001310SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len,
1311 unsigned long, prot, unsigned long, flags,
1312 unsigned long, fd, unsigned long, pgoff)
1313{
1314 struct file *file = NULL;
Chen Gang1e3ee142015-11-05 18:48:35 -08001315 unsigned long retval;
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001316
1317 if (!(flags & MAP_ANONYMOUS)) {
Al Viro120a7952010-10-30 02:54:44 -04001318 audit_mmap_fd(fd, flags);
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001319 file = fget(fd);
1320 if (!file)
Chen Gang1e3ee142015-11-05 18:48:35 -08001321 return -EBADF;
Naoya Horiguchiaf73e4d2013-05-07 16:18:13 -07001322 if (is_file_hugepages(file))
1323 len = ALIGN(len, huge_page_size(hstate_file(file)));
Jörn Engel493af572013-07-08 16:00:26 -07001324 retval = -EINVAL;
1325 if (unlikely(flags & MAP_HUGETLB && !is_file_hugepages(file)))
1326 goto out_fput;
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001327 } else if (flags & MAP_HUGETLB) {
1328 struct user_struct *user = NULL;
Andrew Mortonc103a4d2013-07-08 16:01:08 -07001329 struct hstate *hs;
Naoya Horiguchiaf73e4d2013-05-07 16:18:13 -07001330
Andrew Mortonc103a4d2013-07-08 16:01:08 -07001331 hs = hstate_sizelog((flags >> MAP_HUGE_SHIFT) & SHM_HUGE_MASK);
Li Zefan091d0d52013-05-09 15:08:15 +08001332 if (!hs)
1333 return -EINVAL;
1334
1335 len = ALIGN(len, huge_page_size(hs));
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001336 /*
1337 * VM_NORESERVE is used because the reservations will be
1338 * taken when vm_ops->mmap() is called
1339 * A dummy user value is used because we are not locking
1340 * memory so no accounting is necessary
1341 */
Naoya Horiguchiaf73e4d2013-05-07 16:18:13 -07001342 file = hugetlb_file_setup(HUGETLB_ANON_FILE, len,
Andi Kleen42d73952012-12-11 16:01:34 -08001343 VM_NORESERVE,
1344 &user, HUGETLB_ANONHUGE_INODE,
1345 (flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK);
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001346 if (IS_ERR(file))
1347 return PTR_ERR(file);
1348 }
1349
1350 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
1351
Michal Hocko9fbeb5a2016-05-23 16:25:30 -07001352 retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff);
Jörn Engel493af572013-07-08 16:00:26 -07001353out_fput:
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001354 if (file)
1355 fput(file);
Hugh Dickins66f0dc42009-12-30 20:17:34 +00001356 return retval;
1357}
1358
Christoph Hellwiga4679372010-03-10 15:21:15 -08001359#ifdef __ARCH_WANT_SYS_OLD_MMAP
1360struct mmap_arg_struct {
1361 unsigned long addr;
1362 unsigned long len;
1363 unsigned long prot;
1364 unsigned long flags;
1365 unsigned long fd;
1366 unsigned long offset;
1367};
1368
1369SYSCALL_DEFINE1(old_mmap, struct mmap_arg_struct __user *, arg)
1370{
1371 struct mmap_arg_struct a;
1372
1373 if (copy_from_user(&a, arg, sizeof(a)))
1374 return -EFAULT;
Alexander Kuleshovde1741a2015-11-05 18:46:54 -08001375 if (offset_in_page(a.offset))
Christoph Hellwiga4679372010-03-10 15:21:15 -08001376 return -EINVAL;
1377
1378 return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
1379 a.offset >> PAGE_SHIFT);
1380}
1381#endif /* __ARCH_WANT_SYS_OLD_MMAP */
1382
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001383/*
1384 * Some shared mappigns will want the pages marked read-only
1385 * to track write events. If so, we'll downgrade vm_page_prot
1386 * to the private version (using protection_map[] without the
1387 * VM_SHARED bit).
1388 */
1389int vma_wants_writenotify(struct vm_area_struct *vma)
1390{
KOSAKI Motohiroca16d142011-05-26 19:16:19 +09001391 vm_flags_t vm_flags = vma->vm_flags;
Kirill A. Shutemov8a044462015-09-22 14:59:12 -07001392 const struct vm_operations_struct *vm_ops = vma->vm_ops;
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001393
1394 /* If it was private or non-writable, the write bit is already clear */
1395 if ((vm_flags & (VM_WRITE|VM_SHARED)) != ((VM_WRITE|VM_SHARED)))
1396 return 0;
1397
1398 /* The backer wishes to know when pages are first written to? */
Kirill A. Shutemov8a044462015-09-22 14:59:12 -07001399 if (vm_ops && (vm_ops->page_mkwrite || vm_ops->pfn_mkwrite))
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001400 return 1;
1401
Peter Feiner64e45502014-10-13 15:55:46 -07001402 /* The open routine did something to the protections that pgprot_modify
1403 * won't preserve? */
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001404 if (pgprot_val(vma->vm_page_prot) !=
Peter Feiner64e45502014-10-13 15:55:46 -07001405 pgprot_val(vm_pgprot_modify(vma->vm_page_prot, vm_flags)))
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001406 return 0;
1407
Peter Feiner64e45502014-10-13 15:55:46 -07001408 /* Do we need to track softdirty? */
1409 if (IS_ENABLED(CONFIG_MEM_SOFT_DIRTY) && !(vm_flags & VM_SOFTDIRTY))
1410 return 1;
1411
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001412 /* Specialty mapping? */
Konstantin Khlebnikov4b6e1e32012-10-08 16:28:40 -07001413 if (vm_flags & VM_PFNMAP)
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04001414 return 0;
1415
1416 /* Can the mapping track the dirty pages? */
1417 return vma->vm_file && vma->vm_file->f_mapping &&
1418 mapping_cap_account_dirty(vma->vm_file->f_mapping);
1419}
1420
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001421/*
1422 * We account for memory if it's a private writeable mapping,
Mel Gorman5a6fe122009-02-10 14:02:27 +00001423 * not hugepages and VM_NORESERVE wasn't set.
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001424 */
KOSAKI Motohiroca16d142011-05-26 19:16:19 +09001425static inline int accountable_mapping(struct file *file, vm_flags_t vm_flags)
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001426{
Mel Gorman5a6fe122009-02-10 14:02:27 +00001427 /*
1428 * hugetlb has its own accounting separate from the core VM
1429 * VM_HUGETLB may not be set yet so we cannot check for that flag.
1430 */
1431 if (file && is_file_hugepages(file))
1432 return 0;
1433
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001434 return (vm_flags & (VM_NORESERVE | VM_SHARED | VM_WRITE)) == VM_WRITE;
1435}
1436
Miklos Szeredi0165ab42007-07-15 23:38:26 -07001437unsigned long mmap_region(struct file *file, unsigned long addr,
Michel Lespinassec22c0d62013-02-22 16:32:43 -08001438 unsigned long len, vm_flags_t vm_flags, unsigned long pgoff)
Miklos Szeredi0165ab42007-07-15 23:38:26 -07001439{
1440 struct mm_struct *mm = current->mm;
1441 struct vm_area_struct *vma, *prev;
Miklos Szeredi0165ab42007-07-15 23:38:26 -07001442 int error;
1443 struct rb_node **rb_link, *rb_parent;
1444 unsigned long charged = 0;
Miklos Szeredi0165ab42007-07-15 23:38:26 -07001445
Cyril Hrubise8420a82013-04-29 15:08:33 -07001446 /* Check against address space limit. */
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08001447 if (!may_expand_vm(mm, vm_flags, len >> PAGE_SHIFT)) {
Cyril Hrubise8420a82013-04-29 15:08:33 -07001448 unsigned long nr_pages;
1449
1450 /*
1451 * MAP_FIXED may remove pages of mappings that intersects with
1452 * requested mapping. Account for the pages it would unmap.
1453 */
Cyril Hrubise8420a82013-04-29 15:08:33 -07001454 nr_pages = count_vma_pages_range(mm, addr, addr + len);
1455
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08001456 if (!may_expand_vm(mm, vm_flags,
1457 (len >> PAGE_SHIFT) - nr_pages))
Cyril Hrubise8420a82013-04-29 15:08:33 -07001458 return -ENOMEM;
1459 }
1460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 /* Clear old maps */
Rasmus Villemoes9fcd1452015-04-15 16:14:32 -07001462 while (find_vma_links(mm, addr, addr + len, &prev, &rb_link,
1463 &rb_parent)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 if (do_munmap(mm, addr, len))
1465 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 }
1467
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001468 /*
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001469 * Private writable mapping: check memory availability
1470 */
Mel Gorman5a6fe122009-02-10 14:02:27 +00001471 if (accountable_mapping(file, vm_flags)) {
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001472 charged = len >> PAGE_SHIFT;
Al Viro191c5422012-02-13 03:58:52 +00001473 if (security_vm_enough_memory_mm(mm, charged))
Linus Torvaldsfc8744a2009-01-31 15:08:56 -08001474 return -ENOMEM;
1475 vm_flags |= VM_ACCOUNT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 }
1477
1478 /*
Linus Torvaldsde33c8d2009-01-29 17:46:42 -08001479 * Can we just expand an old mapping?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 */
Andrea Arcangeli19a809a2015-09-04 15:46:24 -07001481 vma = vma_merge(mm, prev, addr, addr + len, vm_flags,
1482 NULL, file, pgoff, NULL, NULL_VM_UFFD_CTX);
Linus Torvaldsde33c8d2009-01-29 17:46:42 -08001483 if (vma)
1484 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
1486 /*
1487 * Determine the object being mapped and call the appropriate
1488 * specific mapper. the address has already been validated, but
1489 * not unmapped, but the maps are removed from the list.
1490 */
Pekka Enbergc5e3b832006-03-25 03:06:43 -08001491 vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 if (!vma) {
1493 error = -ENOMEM;
1494 goto unacct_error;
1495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 vma->vm_mm = mm;
1498 vma->vm_start = addr;
1499 vma->vm_end = addr + len;
1500 vma->vm_flags = vm_flags;
Coly Li3ed75eb2007-10-18 23:39:15 -07001501 vma->vm_page_prot = vm_get_page_prot(vm_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 vma->vm_pgoff = pgoff;
Rik van Riel5beb4932010-03-05 13:42:07 -08001503 INIT_LIST_HEAD(&vma->anon_vma_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
1505 if (file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 if (vm_flags & VM_DENYWRITE) {
1507 error = deny_write_access(file);
1508 if (error)
1509 goto free_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 }
David Herrmann4bb5f5d2014-08-08 14:25:25 -07001511 if (vm_flags & VM_SHARED) {
1512 error = mapping_map_writable(file->f_mapping);
1513 if (error)
1514 goto allow_write_and_free_vma;
1515 }
1516
1517 /* ->mmap() can change vma->vm_file, but must guarantee that
1518 * vma_link() below can deny write-access if VM_DENYWRITE is set
1519 * and map writably if VM_SHARED is set. This usually means the
1520 * new file must not have been exposed to user-space, yet.
1521 */
Al Virocb0942b2012-08-27 14:48:26 -04001522 vma->vm_file = get_file(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 error = file->f_op->mmap(file, vma);
1524 if (error)
1525 goto unmap_and_free_vma;
Huang Shijief8dbf0a72009-09-21 17:03:41 -07001526
1527 /* Can addr have changed??
1528 *
1529 * Answer: Yes, several device drivers can do it in their
1530 * f_op->mmap method. -DaveM
Joonsoo Kim2897b4d2012-12-12 13:51:53 -08001531 * Bug: If addr is changed, prev, rb_link, rb_parent should
1532 * be updated for vma_link()
Huang Shijief8dbf0a72009-09-21 17:03:41 -07001533 */
Joonsoo Kim2897b4d2012-12-12 13:51:53 -08001534 WARN_ON_ONCE(addr != vma->vm_start);
1535
Huang Shijief8dbf0a72009-09-21 17:03:41 -07001536 addr = vma->vm_start;
Huang Shijief8dbf0a72009-09-21 17:03:41 -07001537 vm_flags = vma->vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 } else if (vm_flags & VM_SHARED) {
1539 error = shmem_zero_setup(vma);
1540 if (error)
1541 goto free_vma;
1542 }
1543
Linus Torvaldsde33c8d2009-01-29 17:46:42 -08001544 vma_link(mm, vma, prev, rb_link, rb_parent);
Oleg Nesterov4d3d5b42008-04-28 02:12:10 -07001545 /* Once vma denies write, undo our temporary denial count */
David Herrmann4bb5f5d2014-08-08 14:25:25 -07001546 if (file) {
1547 if (vm_flags & VM_SHARED)
1548 mapping_unmap_writable(file->f_mapping);
1549 if (vm_flags & VM_DENYWRITE)
1550 allow_write_access(file);
1551 }
Oleg Nesterove8686772013-09-11 14:20:20 -07001552 file = vma->vm_file;
Oleg Nesterov4d3d5b42008-04-28 02:12:10 -07001553out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001554 perf_event_mmap(vma);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02001555
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08001556 vm_stat_account(mm, vm_flags, len >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 if (vm_flags & VM_LOCKED) {
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001558 if (!((vm_flags & VM_SPECIAL) || is_vm_hugetlb_page(vma) ||
1559 vma == get_gate_vma(current->mm)))
KOSAKI Motohiro06f9d8c2010-03-05 13:41:43 -08001560 mm->locked_vm += (len >> PAGE_SHIFT);
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001561 else
Eric B Munsonde60f5f2015-11-05 18:51:36 -08001562 vma->vm_flags &= VM_LOCKED_CLEAR_MASK;
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001563 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301564
Oleg Nesterovc7a3a882012-08-19 19:10:42 +02001565 if (file)
1566 uprobe_mmap(vma);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301567
Cyrill Gorcunovd9104d12013-09-11 14:22:24 -07001568 /*
1569 * New (or expanded) vma always get soft dirty status.
1570 * Otherwise user-space soft-dirty page tracker won't
1571 * be able to distinguish situation when vma area unmapped,
1572 * then new mapped in-place (which must be aimed as
1573 * a completely new data area).
1574 */
1575 vma->vm_flags |= VM_SOFTDIRTY;
1576
Peter Feiner64e45502014-10-13 15:55:46 -07001577 vma_set_page_prot(vma);
1578
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 return addr;
1580
1581unmap_and_free_vma:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 vma->vm_file = NULL;
1583 fput(file);
1584
1585 /* Undo any partial mapping done by a device driver. */
Hugh Dickinse0da3822005-04-19 13:29:15 -07001586 unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end);
1587 charged = 0;
David Herrmann4bb5f5d2014-08-08 14:25:25 -07001588 if (vm_flags & VM_SHARED)
1589 mapping_unmap_writable(file->f_mapping);
1590allow_write_and_free_vma:
1591 if (vm_flags & VM_DENYWRITE)
1592 allow_write_access(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593free_vma:
1594 kmem_cache_free(vm_area_cachep, vma);
1595unacct_error:
1596 if (charged)
1597 vm_unacct_memory(charged);
1598 return error;
1599}
1600
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001601unsigned long unmapped_area(struct vm_unmapped_area_info *info)
1602{
1603 /*
1604 * We implement the search by looking for an rbtree node that
1605 * immediately follows a suitable gap. That is,
1606 * - gap_start = vma->vm_prev->vm_end <= info->high_limit - length;
1607 * - gap_end = vma->vm_start >= info->low_limit + length;
1608 * - gap_end - gap_start >= length
1609 */
1610
1611 struct mm_struct *mm = current->mm;
1612 struct vm_area_struct *vma;
1613 unsigned long length, low_limit, high_limit, gap_start, gap_end;
1614
1615 /* Adjust search length to account for worst case alignment overhead */
1616 length = info->length + info->align_mask;
1617 if (length < info->length)
1618 return -ENOMEM;
1619
1620 /* Adjust search limits by the desired length */
1621 if (info->high_limit < length)
1622 return -ENOMEM;
1623 high_limit = info->high_limit - length;
1624
1625 if (info->low_limit > high_limit)
1626 return -ENOMEM;
1627 low_limit = info->low_limit + length;
1628
1629 /* Check if rbtree root looks promising */
1630 if (RB_EMPTY_ROOT(&mm->mm_rb))
1631 goto check_highest;
1632 vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb);
1633 if (vma->rb_subtree_gap < length)
1634 goto check_highest;
1635
1636 while (true) {
1637 /* Visit left subtree if it looks promising */
1638 gap_end = vma->vm_start;
1639 if (gap_end >= low_limit && vma->vm_rb.rb_left) {
1640 struct vm_area_struct *left =
1641 rb_entry(vma->vm_rb.rb_left,
1642 struct vm_area_struct, vm_rb);
1643 if (left->rb_subtree_gap >= length) {
1644 vma = left;
1645 continue;
1646 }
1647 }
1648
1649 gap_start = vma->vm_prev ? vma->vm_prev->vm_end : 0;
1650check_current:
1651 /* Check if current node has a suitable gap */
1652 if (gap_start > high_limit)
1653 return -ENOMEM;
1654 if (gap_end >= low_limit && gap_end - gap_start >= length)
1655 goto found;
1656
1657 /* Visit right subtree if it looks promising */
1658 if (vma->vm_rb.rb_right) {
1659 struct vm_area_struct *right =
1660 rb_entry(vma->vm_rb.rb_right,
1661 struct vm_area_struct, vm_rb);
1662 if (right->rb_subtree_gap >= length) {
1663 vma = right;
1664 continue;
1665 }
1666 }
1667
1668 /* Go back up the rbtree to find next candidate node */
1669 while (true) {
1670 struct rb_node *prev = &vma->vm_rb;
1671 if (!rb_parent(prev))
1672 goto check_highest;
1673 vma = rb_entry(rb_parent(prev),
1674 struct vm_area_struct, vm_rb);
1675 if (prev == vma->vm_rb.rb_left) {
1676 gap_start = vma->vm_prev->vm_end;
1677 gap_end = vma->vm_start;
1678 goto check_current;
1679 }
1680 }
1681 }
1682
1683check_highest:
1684 /* Check highest gap, which does not precede any rbtree node */
1685 gap_start = mm->highest_vm_end;
1686 gap_end = ULONG_MAX; /* Only for VM_BUG_ON below */
1687 if (gap_start > high_limit)
1688 return -ENOMEM;
1689
1690found:
1691 /* We found a suitable gap. Clip it with the original low_limit. */
1692 if (gap_start < info->low_limit)
1693 gap_start = info->low_limit;
1694
1695 /* Adjust gap address to the desired alignment */
1696 gap_start += (info->align_offset - gap_start) & info->align_mask;
1697
1698 VM_BUG_ON(gap_start + info->length > info->high_limit);
1699 VM_BUG_ON(gap_start + info->length > gap_end);
1700 return gap_start;
1701}
1702
1703unsigned long unmapped_area_topdown(struct vm_unmapped_area_info *info)
1704{
1705 struct mm_struct *mm = current->mm;
1706 struct vm_area_struct *vma;
1707 unsigned long length, low_limit, high_limit, gap_start, gap_end;
1708
1709 /* Adjust search length to account for worst case alignment overhead */
1710 length = info->length + info->align_mask;
1711 if (length < info->length)
1712 return -ENOMEM;
1713
1714 /*
1715 * Adjust search limits by the desired length.
1716 * See implementation comment at top of unmapped_area().
1717 */
1718 gap_end = info->high_limit;
1719 if (gap_end < length)
1720 return -ENOMEM;
1721 high_limit = gap_end - length;
1722
1723 if (info->low_limit > high_limit)
1724 return -ENOMEM;
1725 low_limit = info->low_limit + length;
1726
1727 /* Check highest gap, which does not precede any rbtree node */
1728 gap_start = mm->highest_vm_end;
1729 if (gap_start <= high_limit)
1730 goto found_highest;
1731
1732 /* Check if rbtree root looks promising */
1733 if (RB_EMPTY_ROOT(&mm->mm_rb))
1734 return -ENOMEM;
1735 vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb);
1736 if (vma->rb_subtree_gap < length)
1737 return -ENOMEM;
1738
1739 while (true) {
1740 /* Visit right subtree if it looks promising */
1741 gap_start = vma->vm_prev ? vma->vm_prev->vm_end : 0;
1742 if (gap_start <= high_limit && vma->vm_rb.rb_right) {
1743 struct vm_area_struct *right =
1744 rb_entry(vma->vm_rb.rb_right,
1745 struct vm_area_struct, vm_rb);
1746 if (right->rb_subtree_gap >= length) {
1747 vma = right;
1748 continue;
1749 }
1750 }
1751
1752check_current:
1753 /* Check if current node has a suitable gap */
1754 gap_end = vma->vm_start;
1755 if (gap_end < low_limit)
1756 return -ENOMEM;
1757 if (gap_start <= high_limit && gap_end - gap_start >= length)
1758 goto found;
1759
1760 /* Visit left subtree if it looks promising */
1761 if (vma->vm_rb.rb_left) {
1762 struct vm_area_struct *left =
1763 rb_entry(vma->vm_rb.rb_left,
1764 struct vm_area_struct, vm_rb);
1765 if (left->rb_subtree_gap >= length) {
1766 vma = left;
1767 continue;
1768 }
1769 }
1770
1771 /* Go back up the rbtree to find next candidate node */
1772 while (true) {
1773 struct rb_node *prev = &vma->vm_rb;
1774 if (!rb_parent(prev))
1775 return -ENOMEM;
1776 vma = rb_entry(rb_parent(prev),
1777 struct vm_area_struct, vm_rb);
1778 if (prev == vma->vm_rb.rb_right) {
1779 gap_start = vma->vm_prev ?
1780 vma->vm_prev->vm_end : 0;
1781 goto check_current;
1782 }
1783 }
1784 }
1785
1786found:
1787 /* We found a suitable gap. Clip it with the original high_limit. */
1788 if (gap_end > info->high_limit)
1789 gap_end = info->high_limit;
1790
1791found_highest:
1792 /* Compute highest gap address at the desired alignment */
1793 gap_end -= info->length;
1794 gap_end -= (gap_end - info->align_offset) & info->align_mask;
1795
1796 VM_BUG_ON(gap_end < info->low_limit);
1797 VM_BUG_ON(gap_end < gap_start);
1798 return gap_end;
1799}
1800
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801/* Get an address range which is currently unmapped.
1802 * For shmat() with addr=0.
1803 *
1804 * Ugly calling convention alert:
1805 * Return value with the low bits set means error value,
1806 * ie
1807 * if (ret & ~PAGE_MASK)
1808 * error = ret;
1809 *
1810 * This function "knows" that -ENOMEM has the bits set.
1811 */
1812#ifndef HAVE_ARCH_UNMAPPED_AREA
1813unsigned long
1814arch_get_unmapped_area(struct file *filp, unsigned long addr,
1815 unsigned long len, unsigned long pgoff, unsigned long flags)
1816{
1817 struct mm_struct *mm = current->mm;
1818 struct vm_area_struct *vma;
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001819 struct vm_unmapped_area_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Akira Takeuchi2afc7452013-11-12 15:08:21 -08001821 if (len > TASK_SIZE - mmap_min_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 return -ENOMEM;
1823
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07001824 if (flags & MAP_FIXED)
1825 return addr;
1826
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 if (addr) {
1828 addr = PAGE_ALIGN(addr);
1829 vma = find_vma(mm, addr);
Akira Takeuchi2afc7452013-11-12 15:08:21 -08001830 if (TASK_SIZE - len >= addr && addr >= mmap_min_addr &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 (!vma || addr + len <= vma->vm_start))
1832 return addr;
1833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001835 info.flags = 0;
1836 info.length = len;
Heiko Carstens4e99b022013-11-12 15:07:54 -08001837 info.low_limit = mm->mmap_base;
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001838 info.high_limit = TASK_SIZE;
1839 info.align_mask = 0;
1840 return vm_unmapped_area(&info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841}
vishnu.pscc71aba2014-10-09 15:26:29 -07001842#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844/*
1845 * This mmap-allocator allocates new areas top-down from below the
1846 * stack's low limit (the base):
1847 */
1848#ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
1849unsigned long
1850arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
1851 const unsigned long len, const unsigned long pgoff,
1852 const unsigned long flags)
1853{
1854 struct vm_area_struct *vma;
1855 struct mm_struct *mm = current->mm;
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001856 unsigned long addr = addr0;
1857 struct vm_unmapped_area_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
1859 /* requested length too big for entire address space */
Akira Takeuchi2afc7452013-11-12 15:08:21 -08001860 if (len > TASK_SIZE - mmap_min_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 return -ENOMEM;
1862
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07001863 if (flags & MAP_FIXED)
1864 return addr;
1865
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 /* requesting a specific address */
1867 if (addr) {
1868 addr = PAGE_ALIGN(addr);
1869 vma = find_vma(mm, addr);
Akira Takeuchi2afc7452013-11-12 15:08:21 -08001870 if (TASK_SIZE - len >= addr && addr >= mmap_min_addr &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 (!vma || addr + len <= vma->vm_start))
1872 return addr;
1873 }
1874
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001875 info.flags = VM_UNMAPPED_AREA_TOPDOWN;
1876 info.length = len;
Akira Takeuchi2afc7452013-11-12 15:08:21 -08001877 info.low_limit = max(PAGE_SIZE, mmap_min_addr);
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001878 info.high_limit = mm->mmap_base;
1879 info.align_mask = 0;
1880 addr = vm_unmapped_area(&info);
Xiao Guangrongb716ad92012-03-21 16:33:56 -07001881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 /*
1883 * A failed mmap() very likely causes application failure,
1884 * so fall back to the bottom-up function here. This scenario
1885 * can happen with large stack limits and large mmap()
1886 * allocations.
1887 */
Alexander Kuleshovde1741a2015-11-05 18:46:54 -08001888 if (offset_in_page(addr)) {
Michel Lespinassedb4fbfb2012-12-11 16:01:49 -08001889 VM_BUG_ON(addr != -ENOMEM);
1890 info.flags = 0;
1891 info.low_limit = TASK_UNMAPPED_BASE;
1892 info.high_limit = TASK_SIZE;
1893 addr = vm_unmapped_area(&info);
1894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
1896 return addr;
1897}
1898#endif
1899
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900unsigned long
1901get_unmapped_area(struct file *file, unsigned long addr, unsigned long len,
1902 unsigned long pgoff, unsigned long flags)
1903{
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07001904 unsigned long (*get_area)(struct file *, unsigned long,
1905 unsigned long, unsigned long, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Al Viro9206de92009-12-03 15:23:11 -05001907 unsigned long error = arch_mmap_check(addr, len, flags);
1908 if (error)
1909 return error;
1910
1911 /* Careful about overflows.. */
1912 if (len > TASK_SIZE)
1913 return -ENOMEM;
1914
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07001915 get_area = current->mm->get_unmapped_area;
Hugh Dickinsc01d5b32016-07-26 15:26:15 -07001916 if (file) {
1917 if (file->f_op->get_unmapped_area)
1918 get_area = file->f_op->get_unmapped_area;
1919 } else if (flags & MAP_SHARED) {
1920 /*
1921 * mmap_region() will call shmem_zero_setup() to create a file,
1922 * so use shmem's get_unmapped_area in case it can be huge.
1923 * do_mmap_pgoff() will clear pgoff, so match alignment.
1924 */
1925 pgoff = 0;
1926 get_area = shmem_get_unmapped_area;
1927 }
1928
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07001929 addr = get_area(file, addr, len, pgoff, flags);
1930 if (IS_ERR_VALUE(addr))
1931 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Linus Torvalds07ab67c2005-05-19 22:43:37 -07001933 if (addr > TASK_SIZE - len)
1934 return -ENOMEM;
Alexander Kuleshovde1741a2015-11-05 18:46:54 -08001935 if (offset_in_page(addr))
Linus Torvalds07ab67c2005-05-19 22:43:37 -07001936 return -EINVAL;
Benjamin Herrenschmidt06abdfb2007-05-06 14:50:13 -07001937
Al Viro9ac4ed42012-05-30 17:13:15 -04001938 error = security_mmap_addr(addr);
1939 return error ? error : addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940}
1941
1942EXPORT_SYMBOL(get_unmapped_area);
1943
1944/* Look up the first VMA which satisfies addr < vm_end, NULL if none. */
ZhenwenXu48aae422009-01-06 14:40:21 -08001945struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946{
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07001947 struct rb_node *rb_node;
1948 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Rajman Mekaco841e31e2012-05-29 15:06:21 -07001950 /* Check the cache first. */
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07001951 vma = vmacache_find(mm, addr);
1952 if (likely(vma))
1953 return vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07001955 rb_node = mm->mm_rb.rb_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07001957 while (rb_node) {
1958 struct vm_area_struct *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07001960 tmp = rb_entry(rb_node, struct vm_area_struct, vm_rb);
Rajman Mekaco841e31e2012-05-29 15:06:21 -07001961
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07001962 if (tmp->vm_end > addr) {
1963 vma = tmp;
1964 if (tmp->vm_start <= addr)
1965 break;
1966 rb_node = rb_node->rb_left;
1967 } else
1968 rb_node = rb_node->rb_right;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 }
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07001970
1971 if (vma)
1972 vmacache_update(addr, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 return vma;
1974}
1975
1976EXPORT_SYMBOL(find_vma);
1977
KOSAKI Motohiro6bd48372012-01-10 15:08:07 -08001978/*
1979 * Same as find_vma, but also return a pointer to the previous VMA in *pprev.
KOSAKI Motohiro6bd48372012-01-10 15:08:07 -08001980 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981struct vm_area_struct *
1982find_vma_prev(struct mm_struct *mm, unsigned long addr,
1983 struct vm_area_struct **pprev)
1984{
KOSAKI Motohiro6bd48372012-01-10 15:08:07 -08001985 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
KOSAKI Motohiro6bd48372012-01-10 15:08:07 -08001987 vma = find_vma(mm, addr);
Mikulas Patocka83cd9042012-03-04 19:52:03 -05001988 if (vma) {
1989 *pprev = vma->vm_prev;
1990 } else {
1991 struct rb_node *rb_node = mm->mm_rb.rb_node;
1992 *pprev = NULL;
1993 while (rb_node) {
1994 *pprev = rb_entry(rb_node, struct vm_area_struct, vm_rb);
1995 rb_node = rb_node->rb_right;
1996 }
1997 }
KOSAKI Motohiro6bd48372012-01-10 15:08:07 -08001998 return vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999}
2000
2001/*
2002 * Verify that the stack growth is acceptable and
2003 * update accounting. This is shared with both the
2004 * grow-up and grow-down cases.
2005 */
ZhenwenXu48aae422009-01-06 14:40:21 -08002006static int acct_stack_growth(struct vm_area_struct *vma, unsigned long size, unsigned long grow)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007{
2008 struct mm_struct *mm = vma->vm_mm;
2009 struct rlimit *rlim = current->signal->rlim;
Linus Torvalds690eac52015-01-11 11:33:57 -08002010 unsigned long new_start, actual_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
2012 /* address space limit tests */
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002013 if (!may_expand_vm(mm, vma->vm_flags, grow))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 return -ENOMEM;
2015
2016 /* Stack limit test */
Linus Torvalds690eac52015-01-11 11:33:57 -08002017 actual_size = size;
2018 if (size && (vma->vm_flags & (VM_GROWSUP | VM_GROWSDOWN)))
2019 actual_size -= PAGE_SIZE;
Jason Low4db0c3c2015-04-15 16:14:08 -07002020 if (actual_size > READ_ONCE(rlim[RLIMIT_STACK].rlim_cur))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 return -ENOMEM;
2022
2023 /* mlock limit tests */
2024 if (vma->vm_flags & VM_LOCKED) {
2025 unsigned long locked;
2026 unsigned long limit;
2027 locked = mm->locked_vm + grow;
Jason Low4db0c3c2015-04-15 16:14:08 -07002028 limit = READ_ONCE(rlim[RLIMIT_MEMLOCK].rlim_cur);
Jiri Slaby59e99e52010-03-05 13:41:44 -08002029 limit >>= PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 if (locked > limit && !capable(CAP_IPC_LOCK))
2031 return -ENOMEM;
2032 }
2033
Adam Litke0d59a012007-01-30 14:35:39 -08002034 /* Check to ensure the stack will not grow into a hugetlb-only region */
2035 new_start = (vma->vm_flags & VM_GROWSUP) ? vma->vm_start :
2036 vma->vm_end - size;
2037 if (is_hugepage_only_range(vma->vm_mm, new_start, size))
2038 return -EFAULT;
2039
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 /*
2041 * Overcommit.. This must be the final test, as it will
2042 * update security statistics.
2043 */
Hugh Dickins05fa1992009-04-16 21:58:12 +01002044 if (security_vm_enough_memory_mm(mm, grow))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 return -ENOMEM;
2046
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 return 0;
2048}
2049
Hugh Dickins46dea3d2005-10-29 18:16:20 -07002050#if defined(CONFIG_STACK_GROWSUP) || defined(CONFIG_IA64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051/*
Hugh Dickins46dea3d2005-10-29 18:16:20 -07002052 * PA-RISC uses this for its stack; IA64 for its Register Backing Store.
2053 * vma is the last one with address > vma->vm_end. Have to extend vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 */
Hugh Dickins46dea3d2005-10-29 18:16:20 -07002055int expand_upwards(struct vm_area_struct *vma, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056{
Oleg Nesterov09357812015-11-05 18:48:17 -08002057 struct mm_struct *mm = vma->vm_mm;
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002058 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
2060 if (!(vma->vm_flags & VM_GROWSUP))
2061 return -EFAULT;
2062
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002063 /* Guard against wrapping around to address 0. */
2064 if (address < PAGE_ALIGN(address+4))
2065 address = PAGE_ALIGN(address+4);
2066 else
2067 return -ENOMEM;
2068
2069 /* We must make sure the anon_vma is allocated. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 if (unlikely(anon_vma_prepare(vma)))
2071 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
2073 /*
2074 * vma->vm_start/vm_end cannot change under us because the caller
2075 * is required to hold the mmap_sem in read mode. We need the
2076 * anon_vma lock to serialize against concurrent expand_stacks.
2077 */
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002078 anon_vma_lock_write(vma->anon_vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080 /* Somebody else might have raced and expanded it already */
2081 if (address > vma->vm_end) {
2082 unsigned long size, grow;
2083
2084 size = address - vma->vm_start;
2085 grow = (address - vma->vm_end) >> PAGE_SHIFT;
2086
Hugh Dickins42c36f62011-05-09 17:44:42 -07002087 error = -ENOMEM;
2088 if (vma->vm_pgoff + (size >> PAGE_SHIFT) >= vma->vm_pgoff) {
2089 error = acct_stack_growth(vma, size, grow);
2090 if (!error) {
Michel Lespinasse41289972012-12-12 13:52:25 -08002091 /*
2092 * vma_gap_update() doesn't support concurrent
2093 * updates, but we only hold a shared mmap_sem
2094 * lock here, so we need to protect against
2095 * concurrent vma expansions.
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002096 * anon_vma_lock_write() doesn't help here, as
Michel Lespinasse41289972012-12-12 13:52:25 -08002097 * we don't guarantee that all growable vmas
2098 * in a mm share the same root anon vma.
2099 * So, we reuse mm->page_table_lock to guard
2100 * against concurrent vma expansions.
2101 */
Oleg Nesterov09357812015-11-05 18:48:17 -08002102 spin_lock(&mm->page_table_lock);
Oleg Nesterov87e88272015-11-05 18:48:14 -08002103 if (vma->vm_flags & VM_LOCKED)
Oleg Nesterov09357812015-11-05 18:48:17 -08002104 mm->locked_vm += grow;
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002105 vm_stat_account(mm, vma->vm_flags, grow);
Michel Lespinassebf181b92012-10-08 16:31:39 -07002106 anon_vma_interval_tree_pre_update_vma(vma);
Hugh Dickins42c36f62011-05-09 17:44:42 -07002107 vma->vm_end = address;
Michel Lespinassebf181b92012-10-08 16:31:39 -07002108 anon_vma_interval_tree_post_update_vma(vma);
Michel Lespinassed3737182012-12-11 16:01:38 -08002109 if (vma->vm_next)
2110 vma_gap_update(vma->vm_next);
2111 else
Oleg Nesterov09357812015-11-05 18:48:17 -08002112 mm->highest_vm_end = address;
2113 spin_unlock(&mm->page_table_lock);
Michel Lespinasse41289972012-12-12 13:52:25 -08002114
Hugh Dickins42c36f62011-05-09 17:44:42 -07002115 perf_event_mmap(vma);
2116 }
Eric B Munson3af9e852010-05-18 15:30:49 +01002117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 }
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002119 anon_vma_unlock_write(vma->anon_vma);
David Rientjes6d50e602014-10-29 14:50:31 -07002120 khugepaged_enter_vma_merge(vma, vma->vm_flags);
Oleg Nesterov09357812015-11-05 18:48:17 -08002121 validate_mm(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 return error;
2123}
Hugh Dickins46dea3d2005-10-29 18:16:20 -07002124#endif /* CONFIG_STACK_GROWSUP || CONFIG_IA64 */
2125
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126/*
2127 * vma is the first one with address < vma->vm_start. Have to extend vma.
2128 */
Michal Hockod05f3162011-05-24 17:11:44 -07002129int expand_downwards(struct vm_area_struct *vma,
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002130 unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131{
Oleg Nesterov09357812015-11-05 18:48:17 -08002132 struct mm_struct *mm = vma->vm_mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 int error;
2134
Eric Paris88694772007-11-26 18:47:26 -05002135 address &= PAGE_MASK;
Al Viroe5467852012-05-30 13:30:51 -04002136 error = security_mmap_addr(address);
Eric Paris88694772007-11-26 18:47:26 -05002137 if (error)
2138 return error;
2139
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002140 /* We must make sure the anon_vma is allocated. */
2141 if (unlikely(anon_vma_prepare(vma)))
2142 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
2144 /*
2145 * vma->vm_start/vm_end cannot change under us because the caller
2146 * is required to hold the mmap_sem in read mode. We need the
2147 * anon_vma lock to serialize against concurrent expand_stacks.
2148 */
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002149 anon_vma_lock_write(vma->anon_vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
2151 /* Somebody else might have raced and expanded it already */
2152 if (address < vma->vm_start) {
2153 unsigned long size, grow;
2154
2155 size = vma->vm_end - address;
2156 grow = (vma->vm_start - address) >> PAGE_SHIFT;
2157
Linus Torvaldsa626ca62011-04-13 08:07:28 -07002158 error = -ENOMEM;
2159 if (grow <= vma->vm_pgoff) {
2160 error = acct_stack_growth(vma, size, grow);
2161 if (!error) {
Michel Lespinasse41289972012-12-12 13:52:25 -08002162 /*
2163 * vma_gap_update() doesn't support concurrent
2164 * updates, but we only hold a shared mmap_sem
2165 * lock here, so we need to protect against
2166 * concurrent vma expansions.
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002167 * anon_vma_lock_write() doesn't help here, as
Michel Lespinasse41289972012-12-12 13:52:25 -08002168 * we don't guarantee that all growable vmas
2169 * in a mm share the same root anon vma.
2170 * So, we reuse mm->page_table_lock to guard
2171 * against concurrent vma expansions.
2172 */
Oleg Nesterov09357812015-11-05 18:48:17 -08002173 spin_lock(&mm->page_table_lock);
Oleg Nesterov87e88272015-11-05 18:48:14 -08002174 if (vma->vm_flags & VM_LOCKED)
Oleg Nesterov09357812015-11-05 18:48:17 -08002175 mm->locked_vm += grow;
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002176 vm_stat_account(mm, vma->vm_flags, grow);
Michel Lespinassebf181b92012-10-08 16:31:39 -07002177 anon_vma_interval_tree_pre_update_vma(vma);
Linus Torvaldsa626ca62011-04-13 08:07:28 -07002178 vma->vm_start = address;
2179 vma->vm_pgoff -= grow;
Michel Lespinassebf181b92012-10-08 16:31:39 -07002180 anon_vma_interval_tree_post_update_vma(vma);
Michel Lespinassed3737182012-12-11 16:01:38 -08002181 vma_gap_update(vma);
Oleg Nesterov09357812015-11-05 18:48:17 -08002182 spin_unlock(&mm->page_table_lock);
Michel Lespinasse41289972012-12-12 13:52:25 -08002183
Linus Torvaldsa626ca62011-04-13 08:07:28 -07002184 perf_event_mmap(vma);
2185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 }
2187 }
Konstantin Khlebnikov12352d32016-02-05 15:36:50 -08002188 anon_vma_unlock_write(vma->anon_vma);
David Rientjes6d50e602014-10-29 14:50:31 -07002189 khugepaged_enter_vma_merge(vma, vma->vm_flags);
Oleg Nesterov09357812015-11-05 18:48:17 -08002190 validate_mm(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 return error;
2192}
2193
Linus Torvalds09884962013-02-27 08:36:04 -08002194/*
2195 * Note how expand_stack() refuses to expand the stack all the way to
2196 * abut the next virtual mapping, *unless* that mapping itself is also
2197 * a stack mapping. We want to leave room for a guard page, after all
2198 * (the guard page itself is not added here, that is done by the
2199 * actual page faulting logic)
2200 *
2201 * This matches the behavior of the guard page logic (see mm/memory.c:
2202 * check_stack_guard_page()), which only allows the guard page to be
2203 * removed under these circumstances.
2204 */
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002205#ifdef CONFIG_STACK_GROWSUP
2206int expand_stack(struct vm_area_struct *vma, unsigned long address)
2207{
Linus Torvalds09884962013-02-27 08:36:04 -08002208 struct vm_area_struct *next;
2209
2210 address &= PAGE_MASK;
2211 next = vma->vm_next;
2212 if (next && next->vm_start == address + PAGE_SIZE) {
2213 if (!(next->vm_flags & VM_GROWSUP))
2214 return -ENOMEM;
2215 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002216 return expand_upwards(vma, address);
2217}
2218
2219struct vm_area_struct *
2220find_extend_vma(struct mm_struct *mm, unsigned long addr)
2221{
2222 struct vm_area_struct *vma, *prev;
2223
2224 addr &= PAGE_MASK;
2225 vma = find_vma_prev(mm, addr, &prev);
2226 if (vma && (vma->vm_start <= addr))
2227 return vma;
Denys Vlasenko1c127182008-11-12 01:24:41 +01002228 if (!prev || expand_stack(prev, addr))
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002229 return NULL;
Michel Lespinassecea10a12013-02-22 16:32:44 -08002230 if (prev->vm_flags & VM_LOCKED)
Kirill A. Shutemovfc05f562015-04-14 15:44:39 -07002231 populate_vma_page_range(prev, addr, prev->vm_end, NULL);
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002232 return prev;
2233}
2234#else
2235int expand_stack(struct vm_area_struct *vma, unsigned long address)
2236{
Linus Torvalds09884962013-02-27 08:36:04 -08002237 struct vm_area_struct *prev;
2238
2239 address &= PAGE_MASK;
2240 prev = vma->vm_prev;
2241 if (prev && prev->vm_end == address) {
2242 if (!(prev->vm_flags & VM_GROWSDOWN))
2243 return -ENOMEM;
2244 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -07002245 return expand_downwards(vma, address);
2246}
2247
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248struct vm_area_struct *
vishnu.pscc71aba2014-10-09 15:26:29 -07002249find_extend_vma(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250{
vishnu.pscc71aba2014-10-09 15:26:29 -07002251 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 unsigned long start;
2253
2254 addr &= PAGE_MASK;
vishnu.pscc71aba2014-10-09 15:26:29 -07002255 vma = find_vma(mm, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 if (!vma)
2257 return NULL;
2258 if (vma->vm_start <= addr)
2259 return vma;
2260 if (!(vma->vm_flags & VM_GROWSDOWN))
2261 return NULL;
2262 start = vma->vm_start;
2263 if (expand_stack(vma, addr))
2264 return NULL;
Michel Lespinassecea10a12013-02-22 16:32:44 -08002265 if (vma->vm_flags & VM_LOCKED)
Kirill A. Shutemovfc05f562015-04-14 15:44:39 -07002266 populate_vma_page_range(vma, addr, start, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 return vma;
2268}
2269#endif
2270
Jesse Barnese1d6d012014-12-12 16:55:27 -08002271EXPORT_SYMBOL_GPL(find_extend_vma);
2272
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273/*
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002274 * Ok - we have the memory areas we should free on the vma list,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 * so release them, and do the vma updates.
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002276 *
2277 * Called with the mm semaphore held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 */
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002279static void remove_vma_list(struct mm_struct *mm, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280{
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002281 unsigned long nr_accounted = 0;
2282
Hugh Dickins365e9c872005-10-29 18:16:18 -07002283 /* Update high watermark before we lower total_vm */
2284 update_hiwater_vm(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 do {
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002286 long nrpages = vma_pages(vma);
2287
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002288 if (vma->vm_flags & VM_ACCOUNT)
2289 nr_accounted += nrpages;
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002290 vm_stat_account(mm, vma->vm_flags, -nrpages);
Hugh Dickinsa8fb5612005-10-29 18:15:57 -07002291 vma = remove_vma(vma);
Hugh Dickins146425a2005-04-19 13:29:18 -07002292 } while (vma);
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002293 vm_unacct_memory(nr_accounted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 validate_mm(mm);
2295}
2296
2297/*
2298 * Get rid of page table information in the indicated region.
2299 *
Paolo 'Blaisorblade' Giarrussof10df682005-09-21 09:55:37 -07002300 * Called with the mm semaphore held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 */
2302static void unmap_region(struct mm_struct *mm,
Hugh Dickinse0da3822005-04-19 13:29:15 -07002303 struct vm_area_struct *vma, struct vm_area_struct *prev,
2304 unsigned long start, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305{
vishnu.pscc71aba2014-10-09 15:26:29 -07002306 struct vm_area_struct *next = prev ? prev->vm_next : mm->mmap;
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07002307 struct mmu_gather tlb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
2309 lru_add_drain();
Linus Torvalds2b047252013-08-15 11:42:25 -07002310 tlb_gather_mmu(&tlb, mm, start, end);
Hugh Dickins365e9c872005-10-29 18:16:18 -07002311 update_hiwater_rss(mm);
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002312 unmap_vmas(&tlb, vma, start, end);
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07002313 free_pgtables(&tlb, vma, prev ? prev->vm_end : FIRST_USER_ADDRESS,
Hugh Dickins6ee86302013-04-29 15:07:44 -07002314 next ? next->vm_start : USER_PGTABLES_CEILING);
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07002315 tlb_finish_mmu(&tlb, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316}
2317
2318/*
2319 * Create a list of vma's touched by the unmap, removing them from the mm's
2320 * vma list as we go..
2321 */
2322static void
2323detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma,
2324 struct vm_area_struct *prev, unsigned long end)
2325{
2326 struct vm_area_struct **insertion_point;
2327 struct vm_area_struct *tail_vma = NULL;
2328
2329 insertion_point = (prev ? &prev->vm_next : &mm->mmap);
Linus Torvalds297c5ee2010-08-20 16:24:55 -07002330 vma->vm_prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 do {
Michel Lespinassed3737182012-12-11 16:01:38 -08002332 vma_rb_erase(vma, &mm->mm_rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 mm->map_count--;
2334 tail_vma = vma;
2335 vma = vma->vm_next;
2336 } while (vma && vma->vm_start < end);
2337 *insertion_point = vma;
Michel Lespinassed3737182012-12-11 16:01:38 -08002338 if (vma) {
Linus Torvalds297c5ee2010-08-20 16:24:55 -07002339 vma->vm_prev = prev;
Michel Lespinassed3737182012-12-11 16:01:38 -08002340 vma_gap_update(vma);
2341 } else
2342 mm->highest_vm_end = prev ? prev->vm_end : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 tail_vma->vm_next = NULL;
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07002344
2345 /* Kill the cache */
2346 vmacache_invalidate(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347}
2348
2349/*
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08002350 * __split_vma() bypasses sysctl_max_map_count checking. We use this on the
2351 * munmap path where it doesn't make sense to fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 */
vishnu.pscc71aba2014-10-09 15:26:29 -07002353static int __split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 unsigned long addr, int new_below)
2355{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 struct vm_area_struct *new;
Chen Gange3975892015-09-08 15:03:38 -07002357 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
Andi Kleena5516432008-07-23 21:27:41 -07002359 if (is_vm_hugetlb_page(vma) && (addr &
2360 ~(huge_page_mask(hstate_vma(vma)))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 return -EINVAL;
2362
Christoph Lametere94b1762006-12-06 20:33:17 -08002363 new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 if (!new)
Chen Gange3975892015-09-08 15:03:38 -07002365 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
2367 /* most fields are the same, copy all, and then fixup */
2368 *new = *vma;
2369
Rik van Riel5beb4932010-03-05 13:42:07 -08002370 INIT_LIST_HEAD(&new->anon_vma_chain);
2371
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 if (new_below)
2373 new->vm_end = addr;
2374 else {
2375 new->vm_start = addr;
2376 new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT);
2377 }
2378
Oleg Nesterovef0855d2013-09-11 14:20:14 -07002379 err = vma_dup_policy(vma, new);
2380 if (err)
Rik van Riel5beb4932010-03-05 13:42:07 -08002381 goto out_free_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
Daniel Forrestc4ea95d2014-12-02 15:59:42 -08002383 err = anon_vma_clone(new, vma);
2384 if (err)
Rik van Riel5beb4932010-03-05 13:42:07 -08002385 goto out_free_mpol;
2386
Konstantin Khlebnikove9714ac2012-10-08 16:28:54 -07002387 if (new->vm_file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 get_file(new->vm_file);
2389
2390 if (new->vm_ops && new->vm_ops->open)
2391 new->vm_ops->open(new);
2392
2393 if (new_below)
Rik van Riel5beb4932010-03-05 13:42:07 -08002394 err = vma_adjust(vma, addr, vma->vm_end, vma->vm_pgoff +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 ((addr - new->vm_start) >> PAGE_SHIFT), new);
2396 else
Rik van Riel5beb4932010-03-05 13:42:07 -08002397 err = vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398
Rik van Riel5beb4932010-03-05 13:42:07 -08002399 /* Success. */
2400 if (!err)
2401 return 0;
2402
2403 /* Clean everything up if vma_adjust failed. */
Rik van Riel58927532010-04-26 12:33:03 -04002404 if (new->vm_ops && new->vm_ops->close)
2405 new->vm_ops->close(new);
Konstantin Khlebnikove9714ac2012-10-08 16:28:54 -07002406 if (new->vm_file)
Rik van Riel5beb4932010-03-05 13:42:07 -08002407 fput(new->vm_file);
Andrea Arcangeli2aeadc32010-09-22 13:05:12 -07002408 unlink_anon_vmas(new);
Rik van Riel5beb4932010-03-05 13:42:07 -08002409 out_free_mpol:
Oleg Nesterovef0855d2013-09-11 14:20:14 -07002410 mpol_put(vma_policy(new));
Rik van Riel5beb4932010-03-05 13:42:07 -08002411 out_free_vma:
2412 kmem_cache_free(vm_area_cachep, new);
Rik van Riel5beb4932010-03-05 13:42:07 -08002413 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414}
2415
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08002416/*
2417 * Split a vma into two pieces at address 'addr', a new vma is allocated
2418 * either for the first part or the tail.
2419 */
2420int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
2421 unsigned long addr, int new_below)
2422{
2423 if (mm->map_count >= sysctl_max_map_count)
2424 return -ENOMEM;
2425
2426 return __split_vma(mm, vma, addr, new_below);
2427}
2428
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429/* Munmap is split into 2 main parts -- this part which finds
2430 * what needs doing, and the areas themselves, which do the
2431 * work. This now handles partial unmappings.
2432 * Jeremy Fitzhardinge <jeremy@goop.org>
2433 */
2434int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
2435{
2436 unsigned long end;
Hugh Dickins146425a2005-04-19 13:29:18 -07002437 struct vm_area_struct *vma, *prev, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
Alexander Kuleshovde1741a2015-11-05 18:46:54 -08002439 if ((offset_in_page(start)) || start > TASK_SIZE || len > TASK_SIZE-start)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 return -EINVAL;
2441
vishnu.pscc71aba2014-10-09 15:26:29 -07002442 len = PAGE_ALIGN(len);
2443 if (len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 return -EINVAL;
2445
2446 /* Find the first overlapping VMA */
Linus Torvalds9be34c92011-06-16 00:35:09 -07002447 vma = find_vma(mm, start);
Hugh Dickins146425a2005-04-19 13:29:18 -07002448 if (!vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 return 0;
Linus Torvalds9be34c92011-06-16 00:35:09 -07002450 prev = vma->vm_prev;
Hugh Dickins146425a2005-04-19 13:29:18 -07002451 /* we have start < vma->vm_end */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
2453 /* if it doesn't overlap, we have nothing.. */
2454 end = start + len;
Hugh Dickins146425a2005-04-19 13:29:18 -07002455 if (vma->vm_start >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 return 0;
2457
2458 /*
2459 * If we need to split any vma, do it now to save pain later.
2460 *
2461 * Note: mremap's move_vma VM_ACCOUNT handling assumes a partially
2462 * unmapped vm_area_struct will remain in use: so lower split_vma
2463 * places tmp vma above, and higher split_vma places tmp vma below.
2464 */
Hugh Dickins146425a2005-04-19 13:29:18 -07002465 if (start > vma->vm_start) {
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08002466 int error;
2467
2468 /*
2469 * Make sure that map_count on return from munmap() will
2470 * not exceed its limit; but let map_count go just above
2471 * its limit temporarily, to help free resources as expected.
2472 */
2473 if (end < vma->vm_end && mm->map_count >= sysctl_max_map_count)
2474 return -ENOMEM;
2475
2476 error = __split_vma(mm, vma, start, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 if (error)
2478 return error;
Hugh Dickins146425a2005-04-19 13:29:18 -07002479 prev = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 }
2481
2482 /* Does it split the last one? */
2483 last = find_vma(mm, end);
2484 if (last && end > last->vm_start) {
KOSAKI Motohiro659ace52009-12-14 17:57:56 -08002485 int error = __split_vma(mm, last, end, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 if (error)
2487 return error;
2488 }
vishnu.pscc71aba2014-10-09 15:26:29 -07002489 vma = prev ? prev->vm_next : mm->mmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
2491 /*
Rik van Rielba470de2008-10-18 20:26:50 -07002492 * unlock any mlock()ed ranges before detaching vmas
2493 */
2494 if (mm->locked_vm) {
2495 struct vm_area_struct *tmp = vma;
2496 while (tmp && tmp->vm_start < end) {
2497 if (tmp->vm_flags & VM_LOCKED) {
2498 mm->locked_vm -= vma_pages(tmp);
2499 munlock_vma_pages_all(tmp);
2500 }
2501 tmp = tmp->vm_next;
2502 }
2503 }
2504
2505 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 * Remove the vma's, and unmap the actual pages
2507 */
Hugh Dickins146425a2005-04-19 13:29:18 -07002508 detach_vmas_to_be_unmapped(mm, vma, prev, end);
2509 unmap_region(mm, vma, prev, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510
Dave Hansen1de4fa12014-11-14 07:18:31 -08002511 arch_unmap(mm, vma, start, end);
2512
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 /* Fix up all other VM information */
Hugh Dickins2c0b3812005-10-29 18:15:56 -07002514 remove_vma_list(mm, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
2516 return 0;
2517}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
Al Virobfce2812012-04-20 21:57:04 -04002519int vm_munmap(unsigned long start, size_t len)
Linus Torvaldsa46ef992012-04-20 16:20:01 -07002520{
2521 int ret;
Al Virobfce2812012-04-20 21:57:04 -04002522 struct mm_struct *mm = current->mm;
Linus Torvaldsa46ef992012-04-20 16:20:01 -07002523
Michal Hockoae798782016-05-23 16:25:33 -07002524 if (down_write_killable(&mm->mmap_sem))
2525 return -EINTR;
2526
Linus Torvaldsa46ef992012-04-20 16:20:01 -07002527 ret = do_munmap(mm, start, len);
2528 up_write(&mm->mmap_sem);
2529 return ret;
2530}
2531EXPORT_SYMBOL(vm_munmap);
2532
Heiko Carstens6a6160a2009-01-14 14:14:15 +01002533SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534{
Michal Hockodc0ef0d2016-05-23 16:25:27 -07002535 int ret;
2536 struct mm_struct *mm = current->mm;
2537
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 profile_munmap(addr);
Michal Hockodc0ef0d2016-05-23 16:25:27 -07002539 if (down_write_killable(&mm->mmap_sem))
2540 return -EINTR;
2541 ret = do_munmap(mm, addr, len);
2542 up_write(&mm->mmap_sem);
2543 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544}
2545
Kirill A. Shutemovc8d78c12015-02-10 14:09:46 -08002546
2547/*
2548 * Emulation of deprecated remap_file_pages() syscall.
2549 */
2550SYSCALL_DEFINE5(remap_file_pages, unsigned long, start, unsigned long, size,
2551 unsigned long, prot, unsigned long, pgoff, unsigned long, flags)
2552{
2553
2554 struct mm_struct *mm = current->mm;
2555 struct vm_area_struct *vma;
2556 unsigned long populate = 0;
2557 unsigned long ret = -EINVAL;
2558 struct file *file;
2559
Joe Perches756a025f02016-03-17 14:19:47 -07002560 pr_warn_once("%s (%d) uses deprecated remap_file_pages() syscall. See Documentation/vm/remap_file_pages.txt.\n",
2561 current->comm, current->pid);
Kirill A. Shutemovc8d78c12015-02-10 14:09:46 -08002562
2563 if (prot)
2564 return ret;
2565 start = start & PAGE_MASK;
2566 size = size & PAGE_MASK;
2567
2568 if (start + size <= start)
2569 return ret;
2570
2571 /* Does pgoff wrap? */
2572 if (pgoff + (size >> PAGE_SHIFT) < pgoff)
2573 return ret;
2574
Michal Hockodc0ef0d2016-05-23 16:25:27 -07002575 if (down_write_killable(&mm->mmap_sem))
2576 return -EINTR;
2577
Kirill A. Shutemovc8d78c12015-02-10 14:09:46 -08002578 vma = find_vma(mm, start);
2579
2580 if (!vma || !(vma->vm_flags & VM_SHARED))
2581 goto out;
2582
Kirill A. Shutemov48f7df32016-02-17 13:11:15 -08002583 if (start < vma->vm_start)
Kirill A. Shutemovc8d78c12015-02-10 14:09:46 -08002584 goto out;
2585
Kirill A. Shutemov48f7df32016-02-17 13:11:15 -08002586 if (start + size > vma->vm_end) {
2587 struct vm_area_struct *next;
2588
2589 for (next = vma->vm_next; next; next = next->vm_next) {
2590 /* hole between vmas ? */
2591 if (next->vm_start != next->vm_prev->vm_end)
2592 goto out;
2593
2594 if (next->vm_file != vma->vm_file)
2595 goto out;
2596
2597 if (next->vm_flags != vma->vm_flags)
2598 goto out;
2599
2600 if (start + size <= next->vm_end)
2601 break;
2602 }
2603
2604 if (!next)
2605 goto out;
Kirill A. Shutemovc8d78c12015-02-10 14:09:46 -08002606 }
2607
2608 prot |= vma->vm_flags & VM_READ ? PROT_READ : 0;
2609 prot |= vma->vm_flags & VM_WRITE ? PROT_WRITE : 0;
2610 prot |= vma->vm_flags & VM_EXEC ? PROT_EXEC : 0;
2611
2612 flags &= MAP_NONBLOCK;
2613 flags |= MAP_SHARED | MAP_FIXED | MAP_POPULATE;
2614 if (vma->vm_flags & VM_LOCKED) {
Kirill A. Shutemov48f7df32016-02-17 13:11:15 -08002615 struct vm_area_struct *tmp;
Kirill A. Shutemovc8d78c12015-02-10 14:09:46 -08002616 flags |= MAP_LOCKED;
Kirill A. Shutemov48f7df32016-02-17 13:11:15 -08002617
Kirill A. Shutemovc8d78c12015-02-10 14:09:46 -08002618 /* drop PG_Mlocked flag for over-mapped range */
Kirill A. Shutemov48f7df32016-02-17 13:11:15 -08002619 for (tmp = vma; tmp->vm_start >= start + size;
2620 tmp = tmp->vm_next) {
Kirill A. Shutemov9a73f612016-07-26 15:25:53 -07002621 /*
2622 * Split pmd and munlock page on the border
2623 * of the range.
2624 */
2625 vma_adjust_trans_huge(tmp, start, start + size, 0);
2626
Kirill A. Shutemov48f7df32016-02-17 13:11:15 -08002627 munlock_vma_pages_range(tmp,
2628 max(tmp->vm_start, start),
2629 min(tmp->vm_end, start + size));
2630 }
Kirill A. Shutemovc8d78c12015-02-10 14:09:46 -08002631 }
2632
2633 file = get_file(vma->vm_file);
2634 ret = do_mmap_pgoff(vma->vm_file, start, size,
2635 prot, flags, pgoff, &populate);
2636 fput(file);
2637out:
2638 up_write(&mm->mmap_sem);
2639 if (populate)
2640 mm_populate(ret, populate);
2641 if (!IS_ERR_VALUE(ret))
2642 ret = 0;
2643 return ret;
2644}
2645
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646static inline void verify_mm_writelocked(struct mm_struct *mm)
2647{
Paul E. McKenneya241ec62005-10-30 15:03:12 -08002648#ifdef CONFIG_DEBUG_VM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 if (unlikely(down_read_trylock(&mm->mmap_sem))) {
2650 WARN_ON(1);
2651 up_read(&mm->mmap_sem);
2652 }
2653#endif
2654}
2655
2656/*
2657 * this is really a simplified "do_mmap". it only handles
2658 * anonymous maps. eventually we may be able to do some
2659 * brk-specific accounting here.
2660 */
Kees Cookba093a62016-08-02 14:04:54 -07002661static int do_brk(unsigned long addr, unsigned long request)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662{
vishnu.pscc71aba2014-10-09 15:26:29 -07002663 struct mm_struct *mm = current->mm;
2664 struct vm_area_struct *vma, *prev;
Kees Cookba093a62016-08-02 14:04:54 -07002665 unsigned long flags, len;
vishnu.pscc71aba2014-10-09 15:26:29 -07002666 struct rb_node **rb_link, *rb_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 pgoff_t pgoff = addr >> PAGE_SHIFT;
Kirill Korotaev3a459752006-09-07 14:17:04 +04002668 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
Kees Cookba093a62016-08-02 14:04:54 -07002670 len = PAGE_ALIGN(request);
2671 if (len < request)
2672 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 if (!len)
Linus Torvalds5d22fc22016-05-27 15:57:31 -07002674 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
Kirill Korotaev3a459752006-09-07 14:17:04 +04002676 flags = VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags;
2677
Al Viro2c6a1012009-12-03 19:40:46 -05002678 error = get_unmapped_area(NULL, addr, len, 0, MAP_FIXED);
Alexander Kuleshovde1741a2015-11-05 18:46:54 -08002679 if (offset_in_page(error))
Kirill Korotaev3a459752006-09-07 14:17:04 +04002680 return error;
2681
Davidlohr Bueso363ee172014-01-21 15:49:15 -08002682 error = mlock_future_check(mm, mm->def_flags, len);
2683 if (error)
2684 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685
2686 /*
2687 * mm->mmap_sem is required to protect against another thread
2688 * changing the mappings in case we sleep.
2689 */
2690 verify_mm_writelocked(mm);
2691
2692 /*
2693 * Clear old maps. this also does some error checking for us
2694 */
Rasmus Villemoes9fcd1452015-04-15 16:14:32 -07002695 while (find_vma_links(mm, addr, addr + len, &prev, &rb_link,
2696 &rb_parent)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 if (do_munmap(mm, addr, len))
2698 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 }
2700
2701 /* Check against address space limits *after* clearing old maps... */
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002702 if (!may_expand_vm(mm, flags, len >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 return -ENOMEM;
2704
2705 if (mm->map_count > sysctl_max_map_count)
2706 return -ENOMEM;
2707
Al Viro191c5422012-02-13 03:58:52 +00002708 if (security_vm_enough_memory_mm(mm, len >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 return -ENOMEM;
2710
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 /* Can we just expand an old private anonymous mapping? */
Rik van Rielba470de2008-10-18 20:26:50 -07002712 vma = vma_merge(mm, prev, addr, addr + len, flags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -07002713 NULL, NULL, pgoff, NULL, NULL_VM_UFFD_CTX);
Rik van Rielba470de2008-10-18 20:26:50 -07002714 if (vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 goto out;
2716
2717 /*
2718 * create a vma struct for an anonymous mapping
2719 */
Pekka Enbergc5e3b832006-03-25 03:06:43 -08002720 vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 if (!vma) {
2722 vm_unacct_memory(len >> PAGE_SHIFT);
2723 return -ENOMEM;
2724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725
Rik van Riel5beb4932010-03-05 13:42:07 -08002726 INIT_LIST_HEAD(&vma->anon_vma_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 vma->vm_mm = mm;
2728 vma->vm_start = addr;
2729 vma->vm_end = addr + len;
2730 vma->vm_pgoff = pgoff;
2731 vma->vm_flags = flags;
Coly Li3ed75eb2007-10-18 23:39:15 -07002732 vma->vm_page_prot = vm_get_page_prot(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 vma_link(mm, vma, prev, rb_link, rb_parent);
2734out:
Eric B Munson3af9e852010-05-18 15:30:49 +01002735 perf_event_mmap(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 mm->total_vm += len >> PAGE_SHIFT;
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002737 mm->data_vm += len >> PAGE_SHIFT;
Michel Lespinasse128557f2013-02-22 16:32:40 -08002738 if (flags & VM_LOCKED)
2739 mm->locked_vm += (len >> PAGE_SHIFT);
Cyrill Gorcunovd9104d12013-09-11 14:22:24 -07002740 vma->vm_flags |= VM_SOFTDIRTY;
Linus Torvalds5d22fc22016-05-27 15:57:31 -07002741 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742}
2743
Linus Torvalds5d22fc22016-05-27 15:57:31 -07002744int vm_brk(unsigned long addr, unsigned long len)
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -07002745{
2746 struct mm_struct *mm = current->mm;
Linus Torvalds5d22fc22016-05-27 15:57:31 -07002747 int ret;
Michel Lespinasse128557f2013-02-22 16:32:40 -08002748 bool populate;
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -07002749
Michal Hocko2d6c9282016-05-23 16:25:42 -07002750 if (down_write_killable(&mm->mmap_sem))
2751 return -EINTR;
2752
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -07002753 ret = do_brk(addr, len);
Michel Lespinasse128557f2013-02-22 16:32:40 -08002754 populate = ((mm->def_flags & VM_LOCKED) != 0);
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -07002755 up_write(&mm->mmap_sem);
Linus Torvalds5d22fc22016-05-27 15:57:31 -07002756 if (populate && !ret)
Michel Lespinasse128557f2013-02-22 16:32:40 -08002757 mm_populate(addr, len);
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -07002758 return ret;
2759}
2760EXPORT_SYMBOL(vm_brk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
2762/* Release all mmaps. */
2763void exit_mmap(struct mm_struct *mm)
2764{
Peter Zijlstrad16dfc52011-05-24 17:11:45 -07002765 struct mmu_gather tlb;
Rik van Rielba470de2008-10-18 20:26:50 -07002766 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 unsigned long nr_accounted = 0;
2768
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +02002769 /* mm's last user has gone, and its about to be pulled down */
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07002770 mmu_notifier_release(mm);
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +02002771
Rik van Rielba470de2008-10-18 20:26:50 -07002772 if (mm->locked_vm) {
2773 vma = mm->mmap;
2774 while (vma) {
2775 if (vma->vm_flags & VM_LOCKED)
2776 munlock_vma_pages_all(vma);
2777 vma = vma->vm_next;
2778 }
2779 }
Jeremy Fitzhardinge9480c532009-02-11 13:04:41 -08002780
2781 arch_exit_mmap(mm);
2782
Rik van Rielba470de2008-10-18 20:26:50 -07002783 vma = mm->mmap;
Jeremy Fitzhardinge9480c532009-02-11 13:04:41 -08002784 if (!vma) /* Can happen if dup_mmap() received an OOM */
2785 return;
2786
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 lru_add_drain();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 flush_cache_mm(mm);
Linus Torvalds2b047252013-08-15 11:42:25 -07002789 tlb_gather_mmu(&tlb, mm, 0, -1);
Oleg Nesterov901608d2009-01-06 14:40:29 -08002790 /* update_hiwater_rss(mm) here? but nobody should be looking */
Hugh Dickinse0da3822005-04-19 13:29:15 -07002791 /* Use -1 here to ensure all VMAs in the mm are unmapped */
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002792 unmap_vmas(&tlb, vma, 0, -1);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002793
Hugh Dickins6ee86302013-04-29 15:07:44 -07002794 free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, USER_PGTABLES_CEILING);
Al Viro853f5e22012-03-05 14:03:47 -05002795 tlb_finish_mmu(&tlb, 0, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 /*
Hugh Dickins8f4f8c12005-10-29 18:16:29 -07002798 * Walk the list again, actually closing and freeing it,
2799 * with preemption enabled, without holding any MM locks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 */
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002801 while (vma) {
2802 if (vma->vm_flags & VM_ACCOUNT)
2803 nr_accounted += vma_pages(vma);
Hugh Dickinsa8fb5612005-10-29 18:15:57 -07002804 vma = remove_vma(vma);
Linus Torvalds4f74d2c2012-05-06 13:54:06 -07002805 }
2806 vm_unacct_memory(nr_accounted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807}
2808
2809/* Insert vm structure into process list sorted by address
2810 * and into the inode's i_mmap tree. If vm_file is non-NULL
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -08002811 * then i_mmap_rwsem is taken here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 */
Hugh Dickins6597d782012-10-08 16:29:07 -07002813int insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814{
Hugh Dickins6597d782012-10-08 16:29:07 -07002815 struct vm_area_struct *prev;
2816 struct rb_node **rb_link, *rb_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817
Chen Gangc9d13f52015-09-08 15:04:08 -07002818 if (find_vma_links(mm, vma->vm_start, vma->vm_end,
2819 &prev, &rb_link, &rb_parent))
2820 return -ENOMEM;
2821 if ((vma->vm_flags & VM_ACCOUNT) &&
2822 security_vm_enough_memory_mm(mm, vma_pages(vma)))
2823 return -ENOMEM;
2824
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 /*
2826 * The vm_pgoff of a purely anonymous vma should be irrelevant
2827 * until its first write fault, when page's anon_vma and index
2828 * are set. But now set the vm_pgoff it will almost certainly
2829 * end up with (unless mremap moves it elsewhere before that
2830 * first wfault), so /proc/pid/maps tells a consistent story.
2831 *
2832 * By setting it to reflect the virtual start address of the
2833 * vma, merges and splits can happen in a seamless way, just
2834 * using the existing file pgoff checks and manipulations.
2835 * Similarly in do_mmap_pgoff and in do_brk.
2836 */
Oleg Nesterov8a9cc3b2015-09-08 14:58:31 -07002837 if (vma_is_anonymous(vma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 BUG_ON(vma->anon_vma);
2839 vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT;
2840 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +05302841
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 vma_link(mm, vma, prev, rb_link, rb_parent);
2843 return 0;
2844}
2845
2846/*
2847 * Copy the vma structure to a new location in the same mm,
2848 * prior to moving page table entries, to effect an mremap move.
2849 */
2850struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
Michel Lespinasse38a76012012-10-08 16:31:50 -07002851 unsigned long addr, unsigned long len, pgoff_t pgoff,
2852 bool *need_rmap_locks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853{
2854 struct vm_area_struct *vma = *vmap;
2855 unsigned long vma_start = vma->vm_start;
2856 struct mm_struct *mm = vma->vm_mm;
2857 struct vm_area_struct *new_vma, *prev;
2858 struct rb_node **rb_link, *rb_parent;
Andrea Arcangeli948f0172012-01-10 15:08:05 -08002859 bool faulted_in_anon_vma = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860
2861 /*
2862 * If anonymous vma has not yet been faulted, update new pgoff
2863 * to match new location, to increase its chance of merging.
2864 */
Oleg Nesterovce757992015-09-08 14:58:34 -07002865 if (unlikely(vma_is_anonymous(vma) && !vma->anon_vma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 pgoff = addr >> PAGE_SHIFT;
Andrea Arcangeli948f0172012-01-10 15:08:05 -08002867 faulted_in_anon_vma = false;
2868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
Hugh Dickins6597d782012-10-08 16:29:07 -07002870 if (find_vma_links(mm, addr, addr + len, &prev, &rb_link, &rb_parent))
2871 return NULL; /* should never get here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -07002873 vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma),
2874 vma->vm_userfaultfd_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 if (new_vma) {
2876 /*
2877 * Source vma may have been merged into new_vma
2878 */
Andrea Arcangeli948f0172012-01-10 15:08:05 -08002879 if (unlikely(vma_start >= new_vma->vm_start &&
2880 vma_start < new_vma->vm_end)) {
2881 /*
2882 * The only way we can get a vma_merge with
2883 * self during an mremap is if the vma hasn't
2884 * been faulted in yet and we were allowed to
2885 * reset the dst vma->vm_pgoff to the
2886 * destination address of the mremap to allow
2887 * the merge to happen. mremap must change the
2888 * vm_pgoff linearity between src and dst vmas
2889 * (in turn preventing a vma_merge) to be
2890 * safe. It is only safe to keep the vm_pgoff
2891 * linear if there are no pages mapped yet.
2892 */
Sasha Levin81d1b092014-10-09 15:28:10 -07002893 VM_BUG_ON_VMA(faulted_in_anon_vma, new_vma);
Michel Lespinasse38a76012012-10-08 16:31:50 -07002894 *vmap = vma = new_vma;
Michel Lespinasse108d6642012-10-08 16:31:36 -07002895 }
Michel Lespinasse38a76012012-10-08 16:31:50 -07002896 *need_rmap_locks = (new_vma->vm_pgoff <= vma->vm_pgoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 } else {
Christoph Lametere94b1762006-12-06 20:33:17 -08002898 new_vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
Chen Gange3975892015-09-08 15:03:38 -07002899 if (!new_vma)
2900 goto out;
2901 *new_vma = *vma;
2902 new_vma->vm_start = addr;
2903 new_vma->vm_end = addr + len;
2904 new_vma->vm_pgoff = pgoff;
2905 if (vma_dup_policy(vma, new_vma))
2906 goto out_free_vma;
2907 INIT_LIST_HEAD(&new_vma->anon_vma_chain);
2908 if (anon_vma_clone(new_vma, vma))
2909 goto out_free_mempol;
2910 if (new_vma->vm_file)
2911 get_file(new_vma->vm_file);
2912 if (new_vma->vm_ops && new_vma->vm_ops->open)
2913 new_vma->vm_ops->open(new_vma);
2914 vma_link(mm, new_vma, prev, rb_link, rb_parent);
2915 *need_rmap_locks = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 }
2917 return new_vma;
Rik van Riel5beb4932010-03-05 13:42:07 -08002918
Chen Gange3975892015-09-08 15:03:38 -07002919out_free_mempol:
Oleg Nesterovef0855d2013-09-11 14:20:14 -07002920 mpol_put(vma_policy(new_vma));
Chen Gange3975892015-09-08 15:03:38 -07002921out_free_vma:
Rik van Riel5beb4932010-03-05 13:42:07 -08002922 kmem_cache_free(vm_area_cachep, new_vma);
Chen Gange3975892015-09-08 15:03:38 -07002923out:
Rik van Riel5beb4932010-03-05 13:42:07 -08002924 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925}
akpm@osdl.org119f6572005-05-01 08:58:35 -07002926
2927/*
2928 * Return true if the calling process may expand its vm space by the passed
2929 * number of pages
2930 */
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002931bool may_expand_vm(struct mm_struct *mm, vm_flags_t flags, unsigned long npages)
akpm@osdl.org119f6572005-05-01 08:58:35 -07002932{
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002933 if (mm->total_vm + npages > rlimit(RLIMIT_AS) >> PAGE_SHIFT)
2934 return false;
akpm@osdl.org119f6572005-05-01 08:58:35 -07002935
Konstantin Khlebnikovd977d562016-02-02 16:57:43 -08002936 if (is_data_mapping(flags) &&
2937 mm->data_vm + npages > rlimit(RLIMIT_DATA) >> PAGE_SHIFT) {
Konstantin Khlebnikovf4fcd552016-05-20 16:57:45 -07002938 /* Workaround for Valgrind */
2939 if (rlimit(RLIMIT_DATA) == 0 &&
2940 mm->data_vm + npages <= rlimit_max(RLIMIT_DATA) >> PAGE_SHIFT)
2941 return true;
2942 if (!ignore_rlimit_data) {
2943 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 -08002944 current->comm, current->pid,
2945 (mm->data_vm + npages) << PAGE_SHIFT,
2946 rlimit(RLIMIT_DATA));
Konstantin Khlebnikovd977d562016-02-02 16:57:43 -08002947 return false;
Konstantin Khlebnikovf4fcd552016-05-20 16:57:45 -07002948 }
Konstantin Khlebnikovd977d562016-02-02 16:57:43 -08002949 }
akpm@osdl.org119f6572005-05-01 08:58:35 -07002950
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002951 return true;
2952}
2953
2954void vm_stat_account(struct mm_struct *mm, vm_flags_t flags, long npages)
2955{
2956 mm->total_vm += npages;
2957
Konstantin Khlebnikovd977d562016-02-02 16:57:43 -08002958 if (is_exec_mapping(flags))
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002959 mm->exec_vm += npages;
Konstantin Khlebnikovd977d562016-02-02 16:57:43 -08002960 else if (is_stack_mapping(flags))
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002961 mm->stack_vm += npages;
Konstantin Khlebnikovd977d562016-02-02 16:57:43 -08002962 else if (is_data_mapping(flags))
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08002963 mm->data_vm += npages;
akpm@osdl.org119f6572005-05-01 08:58:35 -07002964}
Roland McGrathfa5dc222007-02-08 14:20:41 -08002965
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07002966static int special_mapping_fault(struct vm_area_struct *vma,
2967 struct vm_fault *vmf);
2968
2969/*
2970 * Having a close hook prevents vma merging regardless of flags.
2971 */
2972static void special_mapping_close(struct vm_area_struct *vma)
2973{
2974}
2975
2976static const char *special_mapping_name(struct vm_area_struct *vma)
2977{
2978 return ((struct vm_special_mapping *)vma->vm_private_data)->name;
2979}
2980
Dmitry Safonovb059a452016-06-28 14:35:38 +03002981static int special_mapping_mremap(struct vm_area_struct *new_vma)
2982{
2983 struct vm_special_mapping *sm = new_vma->vm_private_data;
2984
2985 if (sm->mremap)
2986 return sm->mremap(sm, new_vma);
2987 return 0;
2988}
2989
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07002990static const struct vm_operations_struct special_mapping_vmops = {
2991 .close = special_mapping_close,
2992 .fault = special_mapping_fault,
Dmitry Safonovb059a452016-06-28 14:35:38 +03002993 .mremap = special_mapping_mremap,
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07002994 .name = special_mapping_name,
2995};
2996
2997static const struct vm_operations_struct legacy_special_mapping_vmops = {
2998 .close = special_mapping_close,
2999 .fault = special_mapping_fault,
3000};
Roland McGrathfa5dc222007-02-08 14:20:41 -08003001
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01003002static int special_mapping_fault(struct vm_area_struct *vma,
3003 struct vm_fault *vmf)
Roland McGrathfa5dc222007-02-08 14:20:41 -08003004{
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01003005 pgoff_t pgoff;
Roland McGrathfa5dc222007-02-08 14:20:41 -08003006 struct page **pages;
3007
Andy Lutomirskif872f542015-12-29 20:12:19 -08003008 if (vma->vm_ops == &legacy_special_mapping_vmops) {
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003009 pages = vma->vm_private_data;
Andy Lutomirskif872f542015-12-29 20:12:19 -08003010 } else {
3011 struct vm_special_mapping *sm = vma->vm_private_data;
3012
3013 if (sm->fault)
3014 return sm->fault(sm, vma, vmf);
3015
3016 pages = sm->pages;
3017 }
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003018
Oleg Nesterov8a9cc3b2015-09-08 14:58:31 -07003019 for (pgoff = vmf->pgoff; pgoff && *pages; ++pages)
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01003020 pgoff--;
Roland McGrathfa5dc222007-02-08 14:20:41 -08003021
3022 if (*pages) {
3023 struct page *page = *pages;
3024 get_page(page);
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01003025 vmf->page = page;
3026 return 0;
Roland McGrathfa5dc222007-02-08 14:20:41 -08003027 }
3028
Nick Pigginb1d0e4f2008-02-09 01:15:19 +01003029 return VM_FAULT_SIGBUS;
Roland McGrathfa5dc222007-02-08 14:20:41 -08003030}
3031
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003032static struct vm_area_struct *__install_special_mapping(
3033 struct mm_struct *mm,
3034 unsigned long addr, unsigned long len,
Chen Gang27f28b92015-11-05 18:48:41 -08003035 unsigned long vm_flags, void *priv,
3036 const struct vm_operations_struct *ops)
Roland McGrathfa5dc222007-02-08 14:20:41 -08003037{
Tavis Ormandy462e635e2010-12-09 15:29:42 +01003038 int ret;
Roland McGrathfa5dc222007-02-08 14:20:41 -08003039 struct vm_area_struct *vma;
3040
3041 vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
3042 if (unlikely(vma == NULL))
Stefani Seibold3935ed62014-03-17 23:22:02 +01003043 return ERR_PTR(-ENOMEM);
Roland McGrathfa5dc222007-02-08 14:20:41 -08003044
Rik van Riel5beb4932010-03-05 13:42:07 -08003045 INIT_LIST_HEAD(&vma->anon_vma_chain);
Roland McGrathfa5dc222007-02-08 14:20:41 -08003046 vma->vm_mm = mm;
3047 vma->vm_start = addr;
3048 vma->vm_end = addr + len;
3049
Cyrill Gorcunovd9104d12013-09-11 14:22:24 -07003050 vma->vm_flags = vm_flags | mm->def_flags | VM_DONTEXPAND | VM_SOFTDIRTY;
Coly Li3ed75eb2007-10-18 23:39:15 -07003051 vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
Roland McGrathfa5dc222007-02-08 14:20:41 -08003052
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003053 vma->vm_ops = ops;
3054 vma->vm_private_data = priv;
Roland McGrathfa5dc222007-02-08 14:20:41 -08003055
Tavis Ormandy462e635e2010-12-09 15:29:42 +01003056 ret = insert_vm_struct(mm, vma);
3057 if (ret)
3058 goto out;
Roland McGrathfa5dc222007-02-08 14:20:41 -08003059
Konstantin Khlebnikov84638332016-01-14 15:22:07 -08003060 vm_stat_account(mm, vma->vm_flags, len >> PAGE_SHIFT);
Roland McGrathfa5dc222007-02-08 14:20:41 -08003061
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003062 perf_event_mmap(vma);
Peter Zijlstra089dd792009-06-05 14:04:55 +02003063
Stefani Seibold3935ed62014-03-17 23:22:02 +01003064 return vma;
Tavis Ormandy462e635e2010-12-09 15:29:42 +01003065
3066out:
3067 kmem_cache_free(vm_area_cachep, vma);
Stefani Seibold3935ed62014-03-17 23:22:02 +01003068 return ERR_PTR(ret);
3069}
3070
Dmitry Safonov2eefd872016-09-05 16:33:05 +03003071bool vma_is_special_mapping(const struct vm_area_struct *vma,
3072 const struct vm_special_mapping *sm)
3073{
3074 return vma->vm_private_data == sm &&
3075 (vma->vm_ops == &special_mapping_vmops ||
3076 vma->vm_ops == &legacy_special_mapping_vmops);
3077}
3078
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003079/*
3080 * Called with mm->mmap_sem held for writing.
3081 * Insert a new vma covering the given region, with the given flags.
3082 * Its pages are supplied by the given array of struct page *.
3083 * The array can be shorter than len >> PAGE_SHIFT if it's null-terminated.
3084 * The region past the last page supplied will always produce SIGBUS.
3085 * The array pointer and the pages it points to are assumed to stay alive
3086 * for as long as this mapping might exist.
3087 */
3088struct vm_area_struct *_install_special_mapping(
3089 struct mm_struct *mm,
3090 unsigned long addr, unsigned long len,
3091 unsigned long vm_flags, const struct vm_special_mapping *spec)
3092{
Chen Gang27f28b92015-11-05 18:48:41 -08003093 return __install_special_mapping(mm, addr, len, vm_flags, (void *)spec,
3094 &special_mapping_vmops);
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003095}
3096
Stefani Seibold3935ed62014-03-17 23:22:02 +01003097int install_special_mapping(struct mm_struct *mm,
3098 unsigned long addr, unsigned long len,
3099 unsigned long vm_flags, struct page **pages)
3100{
Andy Lutomirskia62c34b2014-05-19 15:58:33 -07003101 struct vm_area_struct *vma = __install_special_mapping(
Chen Gang27f28b92015-11-05 18:48:41 -08003102 mm, addr, len, vm_flags, (void *)pages,
3103 &legacy_special_mapping_vmops);
Stefani Seibold3935ed62014-03-17 23:22:02 +01003104
Duan Jiong14bd5b42014-06-04 16:07:05 -07003105 return PTR_ERR_OR_ZERO(vma);
Roland McGrathfa5dc222007-02-08 14:20:41 -08003106}
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003107
3108static DEFINE_MUTEX(mm_all_locks_mutex);
3109
Peter Zijlstra454ed842008-08-11 09:30:25 +02003110static void vm_lock_anon_vma(struct mm_struct *mm, struct anon_vma *anon_vma)
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003111{
Michel Lespinassebf181b92012-10-08 16:31:39 -07003112 if (!test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_node)) {
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003113 /*
3114 * The LSB of head.next can't change from under us
3115 * because we hold the mm_all_locks_mutex.
3116 */
Jiri Kosina572043c2013-01-11 14:31:59 -08003117 down_write_nest_lock(&anon_vma->root->rwsem, &mm->mmap_sem);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003118 /*
3119 * We can safely modify head.next after taking the
Ingo Molnar5a505082012-12-02 19:56:46 +00003120 * anon_vma->root->rwsem. If some other vma in this mm shares
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003121 * the same anon_vma we won't take it again.
3122 *
3123 * No need of atomic instructions here, head.next
3124 * can't change from under us thanks to the
Ingo Molnar5a505082012-12-02 19:56:46 +00003125 * anon_vma->root->rwsem.
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003126 */
3127 if (__test_and_set_bit(0, (unsigned long *)
Michel Lespinassebf181b92012-10-08 16:31:39 -07003128 &anon_vma->root->rb_root.rb_node))
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003129 BUG();
3130 }
3131}
3132
Peter Zijlstra454ed842008-08-11 09:30:25 +02003133static void vm_lock_mapping(struct mm_struct *mm, struct address_space *mapping)
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003134{
3135 if (!test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
3136 /*
3137 * AS_MM_ALL_LOCKS can't change from under us because
3138 * we hold the mm_all_locks_mutex.
3139 *
3140 * Operations on ->flags have to be atomic because
3141 * even if AS_MM_ALL_LOCKS is stable thanks to the
3142 * mm_all_locks_mutex, there may be other cpus
3143 * changing other bitflags in parallel to us.
3144 */
3145 if (test_and_set_bit(AS_MM_ALL_LOCKS, &mapping->flags))
3146 BUG();
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -08003147 down_write_nest_lock(&mapping->i_mmap_rwsem, &mm->mmap_sem);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003148 }
3149}
3150
3151/*
3152 * This operation locks against the VM for all pte/vma/mm related
3153 * operations that could ever happen on a certain mm. This includes
3154 * vmtruncate, try_to_unmap, and all page faults.
3155 *
3156 * The caller must take the mmap_sem in write mode before calling
3157 * mm_take_all_locks(). The caller isn't allowed to release the
3158 * mmap_sem until mm_drop_all_locks() returns.
3159 *
3160 * mmap_sem in write mode is required in order to block all operations
3161 * that could modify pagetables and free pages without need of
Kirill A. Shutemov27ba0642015-02-10 14:09:59 -08003162 * altering the vma layout. It's also needed in write mode to avoid new
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003163 * anon_vmas to be associated with existing vmas.
3164 *
3165 * A single task can't take more than one mm_take_all_locks() in a row
3166 * or it would deadlock.
3167 *
Michel Lespinassebf181b92012-10-08 16:31:39 -07003168 * The LSB in anon_vma->rb_root.rb_node and the AS_MM_ALL_LOCKS bitflag in
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003169 * mapping->flags avoid to take the same lock twice, if more than one
3170 * vma in this mm is backed by the same anon_vma or address_space.
3171 *
Kirill A. Shutemov88f306b2016-01-15 16:57:31 -08003172 * We take locks in following order, accordingly to comment at beginning
3173 * of mm/rmap.c:
3174 * - all hugetlbfs_i_mmap_rwsem_key locks (aka mapping->i_mmap_rwsem for
3175 * hugetlb mapping);
3176 * - all i_mmap_rwsem locks;
3177 * - all anon_vma->rwseml
3178 *
3179 * We can take all locks within these types randomly because the VM code
3180 * doesn't nest them and we protected from parallel mm_take_all_locks() by
3181 * mm_all_locks_mutex.
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003182 *
3183 * mm_take_all_locks() and mm_drop_all_locks are expensive operations
3184 * that may have to take thousand of locks.
3185 *
3186 * mm_take_all_locks() can fail if it's interrupted by signals.
3187 */
3188int mm_take_all_locks(struct mm_struct *mm)
3189{
3190 struct vm_area_struct *vma;
Rik van Riel5beb4932010-03-05 13:42:07 -08003191 struct anon_vma_chain *avc;
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003192
3193 BUG_ON(down_read_trylock(&mm->mmap_sem));
3194
3195 mutex_lock(&mm_all_locks_mutex);
3196
3197 for (vma = mm->mmap; vma; vma = vma->vm_next) {
3198 if (signal_pending(current))
3199 goto out_unlock;
Kirill A. Shutemov88f306b2016-01-15 16:57:31 -08003200 if (vma->vm_file && vma->vm_file->f_mapping &&
3201 is_vm_hugetlb_page(vma))
3202 vm_lock_mapping(mm, vma->vm_file->f_mapping);
3203 }
3204
3205 for (vma = mm->mmap; vma; vma = vma->vm_next) {
3206 if (signal_pending(current))
3207 goto out_unlock;
3208 if (vma->vm_file && vma->vm_file->f_mapping &&
3209 !is_vm_hugetlb_page(vma))
Peter Zijlstra454ed842008-08-11 09:30:25 +02003210 vm_lock_mapping(mm, vma->vm_file->f_mapping);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003211 }
Peter Zijlstra7cd5a022008-08-11 09:30:25 +02003212
3213 for (vma = mm->mmap; vma; vma = vma->vm_next) {
3214 if (signal_pending(current))
3215 goto out_unlock;
3216 if (vma->anon_vma)
Rik van Riel5beb4932010-03-05 13:42:07 -08003217 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
3218 vm_lock_anon_vma(mm, avc->anon_vma);
Peter Zijlstra7cd5a022008-08-11 09:30:25 +02003219 }
3220
Kautuk Consul584cff52011-10-31 17:08:59 -07003221 return 0;
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003222
3223out_unlock:
Kautuk Consul584cff52011-10-31 17:08:59 -07003224 mm_drop_all_locks(mm);
3225 return -EINTR;
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003226}
3227
3228static void vm_unlock_anon_vma(struct anon_vma *anon_vma)
3229{
Michel Lespinassebf181b92012-10-08 16:31:39 -07003230 if (test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_node)) {
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003231 /*
3232 * The LSB of head.next can't change to 0 from under
3233 * us because we hold the mm_all_locks_mutex.
3234 *
3235 * We must however clear the bitflag before unlocking
Michel Lespinassebf181b92012-10-08 16:31:39 -07003236 * the vma so the users using the anon_vma->rb_root will
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003237 * never see our bitflag.
3238 *
3239 * No need of atomic instructions here, head.next
3240 * can't change from under us until we release the
Ingo Molnar5a505082012-12-02 19:56:46 +00003241 * anon_vma->root->rwsem.
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003242 */
3243 if (!__test_and_clear_bit(0, (unsigned long *)
Michel Lespinassebf181b92012-10-08 16:31:39 -07003244 &anon_vma->root->rb_root.rb_node))
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003245 BUG();
Konstantin Khlebnikov08b52702013-02-22 16:34:40 -08003246 anon_vma_unlock_write(anon_vma);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003247 }
3248}
3249
3250static void vm_unlock_mapping(struct address_space *mapping)
3251{
3252 if (test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) {
3253 /*
3254 * AS_MM_ALL_LOCKS can't change to 0 from under us
3255 * because we hold the mm_all_locks_mutex.
3256 */
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -08003257 i_mmap_unlock_write(mapping);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003258 if (!test_and_clear_bit(AS_MM_ALL_LOCKS,
3259 &mapping->flags))
3260 BUG();
3261 }
3262}
3263
3264/*
3265 * The mmap_sem cannot be released by the caller until
3266 * mm_drop_all_locks() returns.
3267 */
3268void mm_drop_all_locks(struct mm_struct *mm)
3269{
3270 struct vm_area_struct *vma;
Rik van Riel5beb4932010-03-05 13:42:07 -08003271 struct anon_vma_chain *avc;
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003272
3273 BUG_ON(down_read_trylock(&mm->mmap_sem));
3274 BUG_ON(!mutex_is_locked(&mm_all_locks_mutex));
3275
3276 for (vma = mm->mmap; vma; vma = vma->vm_next) {
3277 if (vma->anon_vma)
Rik van Riel5beb4932010-03-05 13:42:07 -08003278 list_for_each_entry(avc, &vma->anon_vma_chain, same_vma)
3279 vm_unlock_anon_vma(avc->anon_vma);
Andrea Arcangeli7906d002008-07-28 15:46:26 -07003280 if (vma->vm_file && vma->vm_file->f_mapping)
3281 vm_unlock_mapping(vma->vm_file->f_mapping);
3282 }
3283
3284 mutex_unlock(&mm_all_locks_mutex);
3285}
David Howells8feae132009-01-08 12:04:47 +00003286
3287/*
3288 * initialise the VMA slab
3289 */
3290void __init mmap_init(void)
3291{
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -07003292 int ret;
3293
Tejun Heo908c7f12014-09-08 09:51:29 +09003294 ret = percpu_counter_init(&vm_committed_as, 0, GFP_KERNEL);
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -07003295 VM_BUG_ON(ret);
David Howells8feae132009-01-08 12:04:47 +00003296}
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -07003297
3298/*
3299 * Initialise sysctl_user_reserve_kbytes.
3300 *
3301 * This is intended to prevent a user from starting a single memory hogging
3302 * process, such that they cannot recover (kill the hog) in OVERCOMMIT_NEVER
3303 * mode.
3304 *
3305 * The default value is min(3% of free memory, 128MB)
3306 * 128MB is enough to recover with sshd/login, bash, and top/kill.
3307 */
Andrew Shewmaker16408792013-04-29 15:08:12 -07003308static int init_user_reserve(void)
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -07003309{
3310 unsigned long free_kbytes;
3311
3312 free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
3313
3314 sysctl_user_reserve_kbytes = min(free_kbytes / 32, 1UL << 17);
3315 return 0;
3316}
Paul Gortmakera64fb3c2014-01-23 15:53:30 -08003317subsys_initcall(init_user_reserve);
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07003318
3319/*
3320 * Initialise sysctl_admin_reserve_kbytes.
3321 *
3322 * The purpose of sysctl_admin_reserve_kbytes is to allow the sys admin
3323 * to log in and kill a memory hogging process.
3324 *
3325 * Systems with more than 256MB will reserve 8MB, enough to recover
3326 * with sshd, bash, and top in OVERCOMMIT_GUESS. Smaller systems will
3327 * only reserve 3% of free pages by default.
3328 */
Andrew Shewmaker16408792013-04-29 15:08:12 -07003329static int init_admin_reserve(void)
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07003330{
3331 unsigned long free_kbytes;
3332
3333 free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
3334
3335 sysctl_admin_reserve_kbytes = min(free_kbytes / 32, 1UL << 13);
3336 return 0;
3337}
Paul Gortmakera64fb3c2014-01-23 15:53:30 -08003338subsys_initcall(init_admin_reserve);
Andrew Shewmaker16408792013-04-29 15:08:12 -07003339
3340/*
3341 * Reinititalise user and admin reserves if memory is added or removed.
3342 *
3343 * The default user reserve max is 128MB, and the default max for the
3344 * admin reserve is 8MB. These are usually, but not always, enough to
3345 * enable recovery from a memory hogging process using login/sshd, a shell,
3346 * and tools like top. It may make sense to increase or even disable the
3347 * reserve depending on the existence of swap or variations in the recovery
3348 * tools. So, the admin may have changed them.
3349 *
3350 * If memory is added and the reserves have been eliminated or increased above
3351 * the default max, then we'll trust the admin.
3352 *
3353 * If memory is removed and there isn't enough free memory, then we
3354 * need to reset the reserves.
3355 *
3356 * Otherwise keep the reserve set by the admin.
3357 */
3358static int reserve_mem_notifier(struct notifier_block *nb,
3359 unsigned long action, void *data)
3360{
3361 unsigned long tmp, free_kbytes;
3362
3363 switch (action) {
3364 case MEM_ONLINE:
3365 /* Default max is 128MB. Leave alone if modified by operator. */
3366 tmp = sysctl_user_reserve_kbytes;
3367 if (0 < tmp && tmp < (1UL << 17))
3368 init_user_reserve();
3369
3370 /* Default max is 8MB. Leave alone if modified by operator. */
3371 tmp = sysctl_admin_reserve_kbytes;
3372 if (0 < tmp && tmp < (1UL << 13))
3373 init_admin_reserve();
3374
3375 break;
3376 case MEM_OFFLINE:
3377 free_kbytes = global_page_state(NR_FREE_PAGES) << (PAGE_SHIFT - 10);
3378
3379 if (sysctl_user_reserve_kbytes > free_kbytes) {
3380 init_user_reserve();
3381 pr_info("vm.user_reserve_kbytes reset to %lu\n",
3382 sysctl_user_reserve_kbytes);
3383 }
3384
3385 if (sysctl_admin_reserve_kbytes > free_kbytes) {
3386 init_admin_reserve();
3387 pr_info("vm.admin_reserve_kbytes reset to %lu\n",
3388 sysctl_admin_reserve_kbytes);
3389 }
3390 break;
3391 default:
3392 break;
3393 }
3394 return NOTIFY_OK;
3395}
3396
3397static struct notifier_block reserve_mem_nb = {
3398 .notifier_call = reserve_mem_notifier,
3399};
3400
3401static int __meminit init_reserve_notifier(void)
3402{
3403 if (register_hotmemory_notifier(&reserve_mem_nb))
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -07003404 pr_err("Failed registering memory add/remove notifier for admin reserve\n");
Andrew Shewmaker16408792013-04-29 15:08:12 -07003405
3406 return 0;
3407}
Paul Gortmakera64fb3c2014-01-23 15:53:30 -08003408subsys_initcall(init_reserve_notifier);