blob: bac973b9f2cc71a11a5d010f38cc672adbdc1772 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/mm/madvise.c
4 *
5 * Copyright (C) 1999 Linus Torvalds
6 * Copyright (C) 2002 Christoph Hellwig
7 */
8
9#include <linux/mman.h>
10#include <linux/pagemap.h>
11#include <linux/syscalls.h>
Prasanna Meda05b74382005-06-21 17:14:37 -070012#include <linux/mempolicy.h>
Andi Kleenafcf9382009-12-16 12:20:00 +010013#include <linux/page-isolation.h>
Pavel Emelyanov05ce7722017-02-22 15:42:40 -080014#include <linux/userfaultfd_k.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/hugetlb.h>
Hugh Dickins3f31d072012-05-29 15:06:40 -070016#include <linux/falloc.h>
Jan Kara692fe622019-08-29 09:04:11 -070017#include <linux/fadvise.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040018#include <linux/sched.h>
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070019#include <linux/ksm.h>
Hugh Dickins3f31d072012-05-29 15:06:40 -070020#include <linux/fs.h>
Andy Lutomirski9ab42332012-07-05 16:00:11 -070021#include <linux/file.h>
Shaohua Li1998cc02013-02-22 16:32:31 -080022#include <linux/blkdev.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040023#include <linux/backing-dev.h>
Shaohua Li1998cc02013-02-22 16:32:31 -080024#include <linux/swap.h>
25#include <linux/swapops.h>
Hugh Dickins3a4f8a02017-02-24 14:59:36 -080026#include <linux/shmem_fs.h>
Minchan Kim854e9ed2016-01-15 16:54:53 -080027#include <linux/mmu_notifier.h>
28
29#include <asm/tlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Kirill A. Shutemov23519072017-02-22 15:46:39 -080031#include "internal.h"
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/*
Nick Piggin0a27a142007-05-06 14:49:53 -070034 * Any behaviour which results in changes to the vma->vm_flags needs to
35 * take mmap_sem for writing. Others, which simply traverse vmas, need
36 * to only take it for reading.
37 */
38static int madvise_need_mmap_write(int behavior)
39{
40 switch (behavior) {
41 case MADV_REMOVE:
42 case MADV_WILLNEED:
43 case MADV_DONTNEED:
Minchan Kim854e9ed2016-01-15 16:54:53 -080044 case MADV_FREE:
Nick Piggin0a27a142007-05-06 14:49:53 -070045 return 0;
46 default:
47 /* be safe, default to 1. list exceptions explicitly */
48 return 1;
49 }
50}
51
52/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 * We can potentially split a vm area into separate
54 * areas, each area with its own behavior.
55 */
Vladimir Cernovec9bed92013-09-11 14:20:15 -070056static long madvise_behavior(struct vm_area_struct *vma,
Prasanna Meda05b74382005-06-21 17:14:37 -070057 struct vm_area_struct **prev,
58 unsigned long start, unsigned long end, int behavior)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
Vladimir Cernovec9bed92013-09-11 14:20:15 -070060 struct mm_struct *mm = vma->vm_mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 int error = 0;
Prasanna Meda05b74382005-06-21 17:14:37 -070062 pgoff_t pgoff;
Hugh Dickins3866ea92009-09-21 17:01:52 -070063 unsigned long new_flags = vma->vm_flags;
Prasanna Medae798c6e2005-06-21 17:14:36 -070064
65 switch (behavior) {
Michael S. Tsirkinf8225662006-02-14 13:53:08 -080066 case MADV_NORMAL:
67 new_flags = new_flags & ~VM_RAND_READ & ~VM_SEQ_READ;
68 break;
Prasanna Medae798c6e2005-06-21 17:14:36 -070069 case MADV_SEQUENTIAL:
Michael S. Tsirkinf8225662006-02-14 13:53:08 -080070 new_flags = (new_flags & ~VM_RAND_READ) | VM_SEQ_READ;
Prasanna Medae798c6e2005-06-21 17:14:36 -070071 break;
72 case MADV_RANDOM:
Michael S. Tsirkinf8225662006-02-14 13:53:08 -080073 new_flags = (new_flags & ~VM_SEQ_READ) | VM_RAND_READ;
Prasanna Medae798c6e2005-06-21 17:14:36 -070074 break;
Michael S. Tsirkinf8225662006-02-14 13:53:08 -080075 case MADV_DONTFORK:
76 new_flags |= VM_DONTCOPY;
77 break;
78 case MADV_DOFORK:
Hugh Dickins3866ea92009-09-21 17:01:52 -070079 if (vma->vm_flags & VM_IO) {
80 error = -EINVAL;
81 goto out;
82 }
Michael S. Tsirkinf8225662006-02-14 13:53:08 -080083 new_flags &= ~VM_DONTCOPY;
Prasanna Medae798c6e2005-06-21 17:14:36 -070084 break;
Rik van Rield2cd9ed2017-09-06 16:25:15 -070085 case MADV_WIPEONFORK:
86 /* MADV_WIPEONFORK is only supported on anonymous memory. */
87 if (vma->vm_file || vma->vm_flags & VM_SHARED) {
88 error = -EINVAL;
89 goto out;
90 }
91 new_flags |= VM_WIPEONFORK;
92 break;
93 case MADV_KEEPONFORK:
94 new_flags &= ~VM_WIPEONFORK;
95 break;
Jason Baronaccb61f2012-03-23 15:02:51 -070096 case MADV_DONTDUMP:
Konstantin Khlebnikov0103bd12012-10-08 16:28:59 -070097 new_flags |= VM_DONTDUMP;
Jason Baronaccb61f2012-03-23 15:02:51 -070098 break;
99 case MADV_DODUMP:
Daniel Blackd41aa522018-10-05 15:52:19 -0700100 if (!is_vm_hugetlb_page(vma) && new_flags & VM_SPECIAL) {
Konstantin Khlebnikov0103bd12012-10-08 16:28:59 -0700101 error = -EINVAL;
102 goto out;
103 }
104 new_flags &= ~VM_DONTDUMP;
Jason Baronaccb61f2012-03-23 15:02:51 -0700105 break;
Hugh Dickinsf8af4da2009-09-21 17:01:57 -0700106 case MADV_MERGEABLE:
107 case MADV_UNMERGEABLE:
108 error = ksm_madvise(vma, start, end, behavior, &new_flags);
David Rientjesdef5efe2017-02-24 14:58:47 -0800109 if (error) {
110 /*
111 * madvise() returns EAGAIN if kernel resources, such as
112 * slab, are temporarily unavailable.
113 */
114 if (error == -ENOMEM)
115 error = -EAGAIN;
Hugh Dickinsf8af4da2009-09-21 17:01:57 -0700116 goto out;
David Rientjesdef5efe2017-02-24 14:58:47 -0800117 }
Hugh Dickinsf8af4da2009-09-21 17:01:57 -0700118 break;
Andrea Arcangeli0af4e982011-01-13 15:46:55 -0800119 case MADV_HUGEPAGE:
Andrea Arcangelia664b2d2011-01-13 15:47:17 -0800120 case MADV_NOHUGEPAGE:
Andrea Arcangeli60ab3242011-01-13 15:47:18 -0800121 error = hugepage_madvise(vma, &new_flags, behavior);
David Rientjesdef5efe2017-02-24 14:58:47 -0800122 if (error) {
123 /*
124 * madvise() returns EAGAIN if kernel resources, such as
125 * slab, are temporarily unavailable.
126 */
127 if (error == -ENOMEM)
128 error = -EAGAIN;
Andrea Arcangeli0af4e982011-01-13 15:46:55 -0800129 goto out;
David Rientjesdef5efe2017-02-24 14:58:47 -0800130 }
Andrea Arcangeli0af4e982011-01-13 15:46:55 -0800131 break;
Prasanna Medae798c6e2005-06-21 17:14:36 -0700132 }
133
Prasanna Meda05b74382005-06-21 17:14:37 -0700134 if (new_flags == vma->vm_flags) {
135 *prev = vma;
Hugh Dickins836d5ff2005-09-03 15:54:53 -0700136 goto out;
Prasanna Meda05b74382005-06-21 17:14:37 -0700137 }
138
139 pgoff = vma->vm_pgoff + ((start - vma->vm_start) >> PAGE_SHIFT);
140 *prev = vma_merge(mm, *prev, start, end, new_flags, vma->anon_vma,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -0700141 vma->vm_file, pgoff, vma_policy(vma),
142 vma->vm_userfaultfd_ctx);
Prasanna Meda05b74382005-06-21 17:14:37 -0700143 if (*prev) {
144 vma = *prev;
145 goto success;
146 }
147
148 *prev = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 if (start != vma->vm_start) {
David Rientjesdef5efe2017-02-24 14:58:47 -0800151 if (unlikely(mm->map_count >= sysctl_max_map_count)) {
152 error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 goto out;
David Rientjesdef5efe2017-02-24 14:58:47 -0800154 }
155 error = __split_vma(mm, vma, start, 1);
156 if (error) {
157 /*
158 * madvise() returns EAGAIN if kernel resources, such as
159 * slab, are temporarily unavailable.
160 */
161 if (error == -ENOMEM)
162 error = -EAGAIN;
163 goto out;
164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
166
167 if (end != vma->vm_end) {
David Rientjesdef5efe2017-02-24 14:58:47 -0800168 if (unlikely(mm->map_count >= sysctl_max_map_count)) {
169 error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 goto out;
David Rientjesdef5efe2017-02-24 14:58:47 -0800171 }
172 error = __split_vma(mm, vma, end, 0);
173 if (error) {
174 /*
175 * madvise() returns EAGAIN if kernel resources, such as
176 * slab, are temporarily unavailable.
177 */
178 if (error == -ENOMEM)
179 error = -EAGAIN;
180 goto out;
181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
183
Hugh Dickins836d5ff2005-09-03 15:54:53 -0700184success:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 /*
186 * vm_flags is protected by the mmap_sem held in write mode.
187 */
Prasanna Medae798c6e2005-06-21 17:14:36 -0700188 vma->vm_flags = new_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return error;
191}
192
Shaohua Li1998cc02013-02-22 16:32:31 -0800193#ifdef CONFIG_SWAP
194static int swapin_walk_pmd_entry(pmd_t *pmd, unsigned long start,
195 unsigned long end, struct mm_walk *walk)
196{
197 pte_t *orig_pte;
198 struct vm_area_struct *vma = walk->private;
199 unsigned long index;
200
201 if (pmd_none_or_trans_huge_or_clear_bad(pmd))
202 return 0;
203
204 for (index = start; index != end; index += PAGE_SIZE) {
205 pte_t pte;
206 swp_entry_t entry;
207 struct page *page;
208 spinlock_t *ptl;
209
210 orig_pte = pte_offset_map_lock(vma->vm_mm, pmd, start, &ptl);
211 pte = *(orig_pte + ((index - start) / PAGE_SIZE));
212 pte_unmap_unlock(orig_pte, ptl);
213
Kirill A. Shutemov0661a332015-02-10 14:10:04 -0800214 if (pte_present(pte) || pte_none(pte))
Shaohua Li1998cc02013-02-22 16:32:31 -0800215 continue;
216 entry = pte_to_swp_entry(pte);
217 if (unlikely(non_swap_entry(entry)))
218 continue;
219
220 page = read_swap_cache_async(entry, GFP_HIGHUSER_MOVABLE,
Shaohua Li23955622017-07-10 15:47:11 -0700221 vma, index, false);
Shaohua Li1998cc02013-02-22 16:32:31 -0800222 if (page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300223 put_page(page);
Shaohua Li1998cc02013-02-22 16:32:31 -0800224 }
225
226 return 0;
227}
228
229static void force_swapin_readahead(struct vm_area_struct *vma,
230 unsigned long start, unsigned long end)
231{
232 struct mm_walk walk = {
233 .mm = vma->vm_mm,
234 .pmd_entry = swapin_walk_pmd_entry,
235 .private = vma,
236 };
237
238 walk_page_range(start, end, &walk);
239
240 lru_add_drain(); /* Push any new pages onto the LRU now */
241}
242
243static void force_shm_swapin_readahead(struct vm_area_struct *vma,
244 unsigned long start, unsigned long end,
245 struct address_space *mapping)
246{
247 pgoff_t index;
248 struct page *page;
249 swp_entry_t swap;
250
251 for (; start < end; start += PAGE_SIZE) {
252 index = ((start - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
253
Johannes Weiner55231e52014-05-22 11:54:17 -0700254 page = find_get_entry(mapping, index);
Matthew Wilcox3159f942017-11-03 13:30:42 -0400255 if (!xa_is_value(page)) {
Shaohua Li1998cc02013-02-22 16:32:31 -0800256 if (page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300257 put_page(page);
Shaohua Li1998cc02013-02-22 16:32:31 -0800258 continue;
259 }
260 swap = radix_to_swp_entry(page);
261 page = read_swap_cache_async(swap, GFP_HIGHUSER_MOVABLE,
Shaohua Li23955622017-07-10 15:47:11 -0700262 NULL, 0, false);
Shaohua Li1998cc02013-02-22 16:32:31 -0800263 if (page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300264 put_page(page);
Shaohua Li1998cc02013-02-22 16:32:31 -0800265 }
266
267 lru_add_drain(); /* Push any new pages onto the LRU now */
268}
269#endif /* CONFIG_SWAP */
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271/*
272 * Schedule all required I/O operations. Do not wait for completion.
273 */
Vladimir Cernovec9bed92013-09-11 14:20:15 -0700274static long madvise_willneed(struct vm_area_struct *vma,
275 struct vm_area_struct **prev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 unsigned long start, unsigned long end)
277{
278 struct file *file = vma->vm_file;
Jan Kara692fe622019-08-29 09:04:11 -0700279 loff_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
chenjie6ea8d952017-11-29 16:10:54 -0800281 *prev = vma;
Shaohua Li1998cc02013-02-22 16:32:31 -0800282#ifdef CONFIG_SWAP
Christoph Hellwig97b713b2015-01-14 10:42:31 +0100283 if (!file) {
Christoph Hellwig97b713b2015-01-14 10:42:31 +0100284 force_swapin_readahead(vma, start, end);
Shaohua Li1998cc02013-02-22 16:32:31 -0800285 return 0;
286 }
Shaohua Li1998cc02013-02-22 16:32:31 -0800287
Christoph Hellwig97b713b2015-01-14 10:42:31 +0100288 if (shmem_mapping(file->f_mapping)) {
Christoph Hellwig97b713b2015-01-14 10:42:31 +0100289 force_shm_swapin_readahead(vma, start, end,
290 file->f_mapping);
291 return 0;
292 }
293#else
Suzuki1bef4002005-10-11 08:29:06 -0700294 if (!file)
295 return -EBADF;
Christoph Hellwig97b713b2015-01-14 10:42:31 +0100296#endif
Suzuki1bef4002005-10-11 08:29:06 -0700297
Matthew Wilcoxe748dcd2015-02-16 15:59:12 -0800298 if (IS_DAX(file_inode(file))) {
Carsten Ottefe77ba62005-06-23 22:05:29 -0700299 /* no bad return value, but ignore advice */
300 return 0;
301 }
302
Jan Kara692fe622019-08-29 09:04:11 -0700303 /*
304 * Filesystem's fadvise may need to take various locks. We need to
305 * explicitly grab a reference because the vma (and hence the
306 * vma's reference to the file) can go away as soon as we drop
307 * mmap_sem.
308 */
309 *prev = NULL; /* tell sys_madvise we drop mmap_sem */
310 get_file(file);
311 up_read(&current->mm->mmap_sem);
312 offset = (loff_t)(start - vma->vm_start)
313 + ((loff_t)vma->vm_pgoff << PAGE_SHIFT);
314 vfs_fadvise(file, offset, end - start, POSIX_FADV_WILLNEED);
315 fput(file);
316 down_read(&current->mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 return 0;
318}
319
Minchan Kim854e9ed2016-01-15 16:54:53 -0800320static int madvise_free_pte_range(pmd_t *pmd, unsigned long addr,
321 unsigned long end, struct mm_walk *walk)
322
323{
324 struct mmu_gather *tlb = walk->private;
325 struct mm_struct *mm = tlb->mm;
326 struct vm_area_struct *vma = walk->vma;
327 spinlock_t *ptl;
328 pte_t *orig_pte, *pte, ptent;
329 struct page *page;
Minchan Kim64b42bc2016-01-15 16:55:06 -0800330 int nr_swap = 0;
Minchan Kimb8d3c4c2016-01-15 16:55:42 -0800331 unsigned long next;
Minchan Kim854e9ed2016-01-15 16:54:53 -0800332
Minchan Kimb8d3c4c2016-01-15 16:55:42 -0800333 next = pmd_addr_end(addr, end);
334 if (pmd_trans_huge(*pmd))
335 if (madvise_free_huge_pmd(tlb, vma, pmd, addr, next))
336 goto next;
337
Minchan Kim854e9ed2016-01-15 16:54:53 -0800338 if (pmd_trans_unstable(pmd))
339 return 0;
340
Peter Zijlstraed6a7932018-08-31 14:46:08 +0200341 tlb_change_page_size(tlb, PAGE_SIZE);
Minchan Kim854e9ed2016-01-15 16:54:53 -0800342 orig_pte = pte = pte_offset_map_lock(mm, pmd, addr, &ptl);
Mel Gorman3ea27712017-08-02 13:31:52 -0700343 flush_tlb_batched_pending(mm);
Minchan Kim854e9ed2016-01-15 16:54:53 -0800344 arch_enter_lazy_mmu_mode();
345 for (; addr != end; pte++, addr += PAGE_SIZE) {
346 ptent = *pte;
347
Minchan Kim64b42bc2016-01-15 16:55:06 -0800348 if (pte_none(ptent))
Minchan Kim854e9ed2016-01-15 16:54:53 -0800349 continue;
Minchan Kim64b42bc2016-01-15 16:55:06 -0800350 /*
351 * If the pte has swp_entry, just clear page table to
352 * prevent swap-in which is more expensive rather than
353 * (page allocation + zeroing).
354 */
355 if (!pte_present(ptent)) {
356 swp_entry_t entry;
357
358 entry = pte_to_swp_entry(ptent);
359 if (non_swap_entry(entry))
360 continue;
361 nr_swap--;
362 free_swap_and_cache(entry);
363 pte_clear_not_present_full(mm, addr, pte, tlb->fullmm);
364 continue;
365 }
Minchan Kim854e9ed2016-01-15 16:54:53 -0800366
Christoph Hellwig25b29952019-06-13 22:50:49 +0200367 page = vm_normal_page(vma, addr, ptent);
Minchan Kim854e9ed2016-01-15 16:54:53 -0800368 if (!page)
369 continue;
370
371 /*
372 * If pmd isn't transhuge but the page is THP and
373 * is owned by only this process, split it and
374 * deactivate all pages.
375 */
376 if (PageTransCompound(page)) {
377 if (page_mapcount(page) != 1)
378 goto out;
379 get_page(page);
380 if (!trylock_page(page)) {
381 put_page(page);
382 goto out;
383 }
384 pte_unmap_unlock(orig_pte, ptl);
385 if (split_huge_page(page)) {
386 unlock_page(page);
387 put_page(page);
388 pte_offset_map_lock(mm, pmd, addr, &ptl);
389 goto out;
390 }
Minchan Kim854e9ed2016-01-15 16:54:53 -0800391 unlock_page(page);
Eric Biggers263630e2017-08-25 15:55:39 -0700392 put_page(page);
Minchan Kim854e9ed2016-01-15 16:54:53 -0800393 pte = pte_offset_map_lock(mm, pmd, addr, &ptl);
394 pte--;
395 addr -= PAGE_SIZE;
396 continue;
397 }
398
399 VM_BUG_ON_PAGE(PageTransCompound(page), page);
400
401 if (PageSwapCache(page) || PageDirty(page)) {
402 if (!trylock_page(page))
403 continue;
404 /*
405 * If page is shared with others, we couldn't clear
406 * PG_dirty of the page.
407 */
408 if (page_mapcount(page) != 1) {
409 unlock_page(page);
410 continue;
411 }
412
413 if (PageSwapCache(page) && !try_to_free_swap(page)) {
414 unlock_page(page);
415 continue;
416 }
417
418 ClearPageDirty(page);
419 unlock_page(page);
420 }
421
422 if (pte_young(ptent) || pte_dirty(ptent)) {
423 /*
424 * Some of architecture(ex, PPC) don't update TLB
425 * with set_pte_at and tlb_remove_tlb_entry so for
426 * the portability, remap the pte with old|clean
427 * after pte clearing.
428 */
429 ptent = ptep_get_and_clear_full(mm, addr, pte,
430 tlb->fullmm);
431
432 ptent = pte_mkold(ptent);
433 ptent = pte_mkclean(ptent);
434 set_pte_at(mm, addr, pte, ptent);
435 tlb_remove_tlb_entry(tlb, pte, addr);
436 }
Shaohua Li802a3a92017-05-03 14:52:32 -0700437 mark_page_lazyfree(page);
Minchan Kim854e9ed2016-01-15 16:54:53 -0800438 }
439out:
Minchan Kim64b42bc2016-01-15 16:55:06 -0800440 if (nr_swap) {
441 if (current->mm == mm)
442 sync_mm_rss(mm);
443
444 add_mm_counter(mm, MM_SWAPENTS, nr_swap);
445 }
Minchan Kim854e9ed2016-01-15 16:54:53 -0800446 arch_leave_lazy_mmu_mode();
447 pte_unmap_unlock(orig_pte, ptl);
448 cond_resched();
Minchan Kimb8d3c4c2016-01-15 16:55:42 -0800449next:
Minchan Kim854e9ed2016-01-15 16:54:53 -0800450 return 0;
451}
452
453static void madvise_free_page_range(struct mmu_gather *tlb,
454 struct vm_area_struct *vma,
455 unsigned long addr, unsigned long end)
456{
457 struct mm_walk free_walk = {
458 .pmd_entry = madvise_free_pte_range,
459 .mm = vma->vm_mm,
460 .private = tlb,
461 };
462
463 tlb_start_vma(tlb, vma);
464 walk_page_range(addr, end, &free_walk);
465 tlb_end_vma(tlb, vma);
466}
467
468static int madvise_free_single_vma(struct vm_area_struct *vma,
469 unsigned long start_addr, unsigned long end_addr)
470{
Minchan Kim854e9ed2016-01-15 16:54:53 -0800471 struct mm_struct *mm = vma->vm_mm;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -0800472 struct mmu_notifier_range range;
Minchan Kim854e9ed2016-01-15 16:54:53 -0800473 struct mmu_gather tlb;
474
Minchan Kim854e9ed2016-01-15 16:54:53 -0800475 /* MADV_FREE works for only anon vma at the moment */
476 if (!vma_is_anonymous(vma))
477 return -EINVAL;
478
Jérôme Glisseac46d4f2018-12-28 00:38:09 -0800479 range.start = max(vma->vm_start, start_addr);
480 if (range.start >= vma->vm_end)
Minchan Kim854e9ed2016-01-15 16:54:53 -0800481 return -EINVAL;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -0800482 range.end = min(vma->vm_end, end_addr);
483 if (range.end <= vma->vm_start)
Minchan Kim854e9ed2016-01-15 16:54:53 -0800484 return -EINVAL;
Jérôme Glisse7269f992019-05-13 17:20:53 -0700485 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, mm,
Jérôme Glisse6f4f13e2019-05-13 17:20:49 -0700486 range.start, range.end);
Minchan Kim854e9ed2016-01-15 16:54:53 -0800487
488 lru_add_drain();
Jérôme Glisseac46d4f2018-12-28 00:38:09 -0800489 tlb_gather_mmu(&tlb, mm, range.start, range.end);
Minchan Kim854e9ed2016-01-15 16:54:53 -0800490 update_hiwater_rss(mm);
491
Jérôme Glisseac46d4f2018-12-28 00:38:09 -0800492 mmu_notifier_invalidate_range_start(&range);
493 madvise_free_page_range(&tlb, vma, range.start, range.end);
494 mmu_notifier_invalidate_range_end(&range);
495 tlb_finish_mmu(&tlb, range.start, range.end);
Minchan Kim854e9ed2016-01-15 16:54:53 -0800496
497 return 0;
498}
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500/*
501 * Application no longer needs these pages. If the pages are dirty,
502 * it's OK to just throw them away. The app will be more careful about
503 * data it wants to keep. Be sure to free swap resources too. The
Fernando Luis Vazquez Cao7e6cbea2008-07-29 22:33:39 -0700504 * zap_page_range call sets things up for shrink_active_list to actually free
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 * these pages later if no one else has touched them in the meantime,
506 * although we could add these pages to a global reuse list for
Fernando Luis Vazquez Cao7e6cbea2008-07-29 22:33:39 -0700507 * shrink_active_list to pick up before reclaiming other pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 *
509 * NB: This interface discards data rather than pushes it out to swap,
510 * as some implementations do. This has performance implications for
511 * applications like large transactional databases which want to discard
512 * pages in anonymous maps after committing to backing store the data
513 * that was kept in them. There is no reason to write this data out to
514 * the swap area if the application is discarding it.
515 *
516 * An interface that causes the system to free clean pages and flush
517 * dirty pages is already available as msync(MS_INVALIDATE).
518 */
Mike Rapoport230ca982017-07-10 15:49:02 -0700519static long madvise_dontneed_single_vma(struct vm_area_struct *vma,
520 unsigned long start, unsigned long end)
521{
522 zap_page_range(vma, start, end - start);
523 return 0;
524}
525
526static long madvise_dontneed_free(struct vm_area_struct *vma,
527 struct vm_area_struct **prev,
528 unsigned long start, unsigned long end,
529 int behavior)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Prasanna Meda05b74382005-06-21 17:14:37 -0700531 *prev = vma;
Kirill A. Shutemov23519072017-02-22 15:46:39 -0800532 if (!can_madv_dontneed_vma(vma))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return -EINVAL;
534
Andrea Arcangeli70ccb922017-03-09 16:17:11 -0800535 if (!userfaultfd_remove(vma, start, end)) {
536 *prev = NULL; /* mmap_sem has been dropped, prev is stale */
537
538 down_read(&current->mm->mmap_sem);
539 vma = find_vma(current->mm, start);
540 if (!vma)
541 return -ENOMEM;
542 if (start < vma->vm_start) {
543 /*
544 * This "vma" under revalidation is the one
545 * with the lowest vma->vm_start where start
546 * is also < vma->vm_end. If start <
547 * vma->vm_start it means an hole materialized
548 * in the user address space within the
Mike Rapoport230ca982017-07-10 15:49:02 -0700549 * virtual range passed to MADV_DONTNEED
550 * or MADV_FREE.
Andrea Arcangeli70ccb922017-03-09 16:17:11 -0800551 */
552 return -ENOMEM;
553 }
554 if (!can_madv_dontneed_vma(vma))
555 return -EINVAL;
556 if (end > vma->vm_end) {
557 /*
558 * Don't fail if end > vma->vm_end. If the old
559 * vma was splitted while the mmap_sem was
560 * released the effect of the concurrent
Mike Rapoport230ca982017-07-10 15:49:02 -0700561 * operation may not cause madvise() to
Andrea Arcangeli70ccb922017-03-09 16:17:11 -0800562 * have an undefined result. There may be an
563 * adjacent next vma that we'll walk
564 * next. userfaultfd_remove() will generate an
565 * UFFD_EVENT_REMOVE repetition on the
566 * end-vma->vm_end range, but the manager can
567 * handle a repetition fine.
568 */
569 end = vma->vm_end;
570 }
571 VM_WARN_ON(start >= end);
572 }
Mike Rapoport230ca982017-07-10 15:49:02 -0700573
574 if (behavior == MADV_DONTNEED)
575 return madvise_dontneed_single_vma(vma, start, end);
576 else if (behavior == MADV_FREE)
577 return madvise_free_single_vma(vma, start, end);
578 else
579 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800582/*
583 * Application wants to free up the pages and associated backing store.
584 * This is effectively punching a hole into the middle of a file.
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800585 */
586static long madvise_remove(struct vm_area_struct *vma,
Nick Piggin00e9fa22007-03-16 13:38:10 -0800587 struct vm_area_struct **prev,
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800588 unsigned long start, unsigned long end)
589{
Hugh Dickins3f31d072012-05-29 15:06:40 -0700590 loff_t offset;
Hugh Dickins90ed52e2007-03-29 01:20:38 -0700591 int error;
Andy Lutomirski9ab42332012-07-05 16:00:11 -0700592 struct file *f;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800593
Hugh Dickins90ed52e2007-03-29 01:20:38 -0700594 *prev = NULL; /* tell sys_madvise we drop mmap_sem */
Nick Piggin00e9fa22007-03-16 13:38:10 -0800595
Mike Kravetz72079ba2015-09-08 15:01:57 -0700596 if (vma->vm_flags & VM_LOCKED)
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800597 return -EINVAL;
598
Andy Lutomirski9ab42332012-07-05 16:00:11 -0700599 f = vma->vm_file;
600
601 if (!f || !f->f_mapping || !f->f_mapping->host) {
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800602 return -EINVAL;
603 }
604
Hugh Dickins69cf0fa2006-04-17 22:46:32 +0100605 if ((vma->vm_flags & (VM_SHARED|VM_WRITE)) != (VM_SHARED|VM_WRITE))
606 return -EACCES;
607
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800608 offset = (loff_t)(start - vma->vm_start)
609 + ((loff_t)vma->vm_pgoff << PAGE_SHIFT);
Hugh Dickins90ed52e2007-03-29 01:20:38 -0700610
Andy Lutomirski9ab42332012-07-05 16:00:11 -0700611 /*
612 * Filesystem's fallocate may need to take i_mutex. We need to
613 * explicitly grab a reference because the vma (and hence the
614 * vma's reference to the file) can go away as soon as we drop
615 * mmap_sem.
616 */
617 get_file(f);
Andrea Arcangeli70ccb922017-03-09 16:17:11 -0800618 if (userfaultfd_remove(vma, start, end)) {
619 /* mmap_sem was not released by userfaultfd_remove() */
620 up_read(&current->mm->mmap_sem);
621 }
Anna Schumaker72c72bd2014-11-07 14:44:25 -0500622 error = vfs_fallocate(f,
Hugh Dickins3f31d072012-05-29 15:06:40 -0700623 FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
624 offset, end - start);
Andy Lutomirski9ab42332012-07-05 16:00:11 -0700625 fput(f);
Nick Piggin0a27a142007-05-06 14:49:53 -0700626 down_read(&current->mm->mmap_sem);
Hugh Dickins90ed52e2007-03-29 01:20:38 -0700627 return error;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800628}
629
Andi Kleen9893e492009-09-16 11:50:17 +0200630#ifdef CONFIG_MEMORY_FAILURE
631/*
632 * Error injection support for memory error handling.
633 */
Anshuman Khandual97167a72017-05-03 14:55:25 -0700634static int madvise_inject_error(int behavior,
635 unsigned long start, unsigned long end)
Andi Kleen9893e492009-09-16 11:50:17 +0200636{
Anshuman Khandual97167a72017-05-03 14:55:25 -0700637 struct page *page;
Mel Gormanc461ad62017-08-31 16:15:30 -0700638 struct zone *zone;
Alexandru Moise19bfbe22017-10-03 16:14:31 -0700639 unsigned int order;
Anshuman Khandual97167a72017-05-03 14:55:25 -0700640
Andi Kleen9893e492009-09-16 11:50:17 +0200641 if (!capable(CAP_SYS_ADMIN))
642 return -EPERM;
Anshuman Khandual97167a72017-05-03 14:55:25 -0700643
Alexandru Moise19bfbe22017-10-03 16:14:31 -0700644
645 for (; start < end; start += PAGE_SIZE << order) {
Dan Williams23e7b5c2018-07-13 21:50:06 -0700646 unsigned long pfn;
Andrew Morton325c4ef2013-09-11 14:23:03 -0700647 int ret;
648
Anshuman Khandual97167a72017-05-03 14:55:25 -0700649 ret = get_user_pages_fast(start, 1, 0, &page);
Andi Kleen9893e492009-09-16 11:50:17 +0200650 if (ret != 1)
651 return ret;
Dan Williams23e7b5c2018-07-13 21:50:06 -0700652 pfn = page_to_pfn(page);
Andrew Morton325c4ef2013-09-11 14:23:03 -0700653
Alexandru Moise19bfbe22017-10-03 16:14:31 -0700654 /*
655 * When soft offlining hugepages, after migrating the page
656 * we dissolve it, therefore in the second loop "page" will
657 * no longer be a compound page, and order will be 0.
658 */
659 order = compound_order(compound_head(page));
660
Anshuman Khandual97167a72017-05-03 14:55:25 -0700661 if (PageHWPoison(page)) {
662 put_page(page);
Wanpeng Li29b4eed2013-09-11 14:22:59 -0700663 continue;
664 }
Anshuman Khandual97167a72017-05-03 14:55:25 -0700665
666 if (behavior == MADV_SOFT_OFFLINE) {
667 pr_info("Soft offlining pfn %#lx at process virtual address %#lx\n",
Dan Williams23e7b5c2018-07-13 21:50:06 -0700668 pfn, start);
Anshuman Khandual97167a72017-05-03 14:55:25 -0700669
670 ret = soft_offline_page(page, MF_COUNT_INCREASED);
Andi Kleenafcf9382009-12-16 12:20:00 +0100671 if (ret)
Wanpeng Li83024232013-09-11 14:23:02 -0700672 return ret;
Andi Kleenafcf9382009-12-16 12:20:00 +0100673 continue;
674 }
Anshuman Khandual97167a72017-05-03 14:55:25 -0700675
Dan Williams23e7b5c2018-07-13 21:50:06 -0700676 pr_info("Injecting memory failure for pfn %#lx at process virtual address %#lx\n",
677 pfn, start);
678
679 /*
680 * Drop the page reference taken by get_user_pages_fast(). In
681 * the absence of MF_COUNT_INCREASED the memory_failure()
682 * routine is responsible for pinning the page to prevent it
683 * from being released back to the page allocator.
684 */
685 put_page(page);
686 ret = memory_failure(pfn, 0);
Naoya Horiguchi23a003b2016-03-15 14:56:36 -0700687 if (ret)
688 return ret;
Andi Kleen9893e492009-09-16 11:50:17 +0200689 }
Mel Gormanc461ad62017-08-31 16:15:30 -0700690
691 /* Ensure that all poisoned pages are removed from per-cpu lists */
692 for_each_populated_zone(zone)
693 drain_all_pages(zone);
694
Andrew Morton325c4ef2013-09-11 14:23:03 -0700695 return 0;
Andi Kleen9893e492009-09-16 11:50:17 +0200696}
697#endif
698
suzuki165cd402005-07-27 11:43:59 -0700699static long
700madvise_vma(struct vm_area_struct *vma, struct vm_area_struct **prev,
701 unsigned long start, unsigned long end, int behavior)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 switch (behavior) {
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800704 case MADV_REMOVE:
Hugh Dickins3866ea92009-09-21 17:01:52 -0700705 return madvise_remove(vma, prev, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 case MADV_WILLNEED:
Hugh Dickins3866ea92009-09-21 17:01:52 -0700707 return madvise_willneed(vma, prev, start, end);
Minchan Kim854e9ed2016-01-15 16:54:53 -0800708 case MADV_FREE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 case MADV_DONTNEED:
Mike Rapoport230ca982017-07-10 15:49:02 -0700710 return madvise_dontneed_free(vma, prev, start, end, behavior);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 default:
Hugh Dickins3866ea92009-09-21 17:01:52 -0700712 return madvise_behavior(vma, prev, start, end, behavior);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714}
715
Nicholas Krause1ecef9e2015-09-04 15:48:24 -0700716static bool
Nick Piggin75927af2009-06-16 15:32:38 -0700717madvise_behavior_valid(int behavior)
718{
719 switch (behavior) {
720 case MADV_DOFORK:
721 case MADV_DONTFORK:
722 case MADV_NORMAL:
723 case MADV_SEQUENTIAL:
724 case MADV_RANDOM:
725 case MADV_REMOVE:
726 case MADV_WILLNEED:
727 case MADV_DONTNEED:
Minchan Kim854e9ed2016-01-15 16:54:53 -0800728 case MADV_FREE:
Hugh Dickinsf8af4da2009-09-21 17:01:57 -0700729#ifdef CONFIG_KSM
730 case MADV_MERGEABLE:
731 case MADV_UNMERGEABLE:
732#endif
Andrea Arcangeli0af4e982011-01-13 15:46:55 -0800733#ifdef CONFIG_TRANSPARENT_HUGEPAGE
734 case MADV_HUGEPAGE:
Andrea Arcangelia664b2d2011-01-13 15:47:17 -0800735 case MADV_NOHUGEPAGE:
Andrea Arcangeli0af4e982011-01-13 15:46:55 -0800736#endif
Jason Baronaccb61f2012-03-23 15:02:51 -0700737 case MADV_DONTDUMP:
738 case MADV_DODUMP:
Rik van Rield2cd9ed2017-09-06 16:25:15 -0700739 case MADV_WIPEONFORK:
740 case MADV_KEEPONFORK:
Anshuman Khandual5e451be2017-05-03 14:55:28 -0700741#ifdef CONFIG_MEMORY_FAILURE
742 case MADV_SOFT_OFFLINE:
743 case MADV_HWPOISON:
744#endif
Nicholas Krause1ecef9e2015-09-04 15:48:24 -0700745 return true;
Nick Piggin75927af2009-06-16 15:32:38 -0700746
747 default:
Nicholas Krause1ecef9e2015-09-04 15:48:24 -0700748 return false;
Nick Piggin75927af2009-06-16 15:32:38 -0700749 }
750}
Hugh Dickins3866ea92009-09-21 17:01:52 -0700751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752/*
753 * The madvise(2) system call.
754 *
755 * Applications can use madvise() to advise the kernel how it should
756 * handle paging I/O in this VM area. The idea is to help the kernel
757 * use appropriate read-ahead and caching techniques. The information
758 * provided is advisory only, and can be safely disregarded by the
759 * kernel without affecting the correct operation of the application.
760 *
761 * behavior values:
762 * MADV_NORMAL - the default behavior is to read clusters. This
763 * results in some read-ahead and read-behind.
764 * MADV_RANDOM - the system should read the minimum amount of data
765 * on any access, since it is unlikely that the appli-
766 * cation will need more than what it asks for.
767 * MADV_SEQUENTIAL - pages in the given range will probably be accessed
768 * once, so they can be aggressively read ahead, and
769 * can be freed soon after they are accessed.
770 * MADV_WILLNEED - the application is notifying the system to read
771 * some pages ahead.
772 * MADV_DONTNEED - the application is finished with the given range,
773 * so the kernel can free resources associated with it.
Naoya Horiguchid7206a72016-03-15 14:56:58 -0700774 * MADV_FREE - the application marks pages in the given range as lazy free,
775 * where actual purges are postponed until memory pressure happens.
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800776 * MADV_REMOVE - the application wants to free up the given range of
777 * pages and associated backing store.
Hugh Dickins3866ea92009-09-21 17:01:52 -0700778 * MADV_DONTFORK - omit this area from child's address space when forking:
779 * typically, to avoid COWing pages pinned by get_user_pages().
780 * MADV_DOFORK - cancel MADV_DONTFORK: no longer omit this area when forking.
Yang Shic02c3002017-10-13 15:57:37 -0700781 * MADV_WIPEONFORK - present the child process with zero-filled memory in this
782 * range after a fork.
783 * MADV_KEEPONFORK - undo the effect of MADV_WIPEONFORK
Naoya Horiguchid7206a72016-03-15 14:56:58 -0700784 * MADV_HWPOISON - trigger memory error handler as if the given memory range
785 * were corrupted by unrecoverable hardware memory failure.
786 * MADV_SOFT_OFFLINE - try to soft-offline the given range of memory.
Hugh Dickinsf8af4da2009-09-21 17:01:57 -0700787 * MADV_MERGEABLE - the application recommends that KSM try to merge pages in
788 * this area with pages of identical content from other such areas.
789 * MADV_UNMERGEABLE- cancel MADV_MERGEABLE: no longer merge pages with others.
Naoya Horiguchid7206a72016-03-15 14:56:58 -0700790 * MADV_HUGEPAGE - the application wants to back the given range by transparent
791 * huge pages in the future. Existing pages might be coalesced and
792 * new pages might be allocated as THP.
793 * MADV_NOHUGEPAGE - mark the given range as not worth being backed by
794 * transparent huge pages so the existing pages will not be
795 * coalesced into THP and new pages will not be allocated as THP.
796 * MADV_DONTDUMP - the application wants to prevent pages in the given range
797 * from being included in its core dump.
798 * MADV_DODUMP - cancel MADV_DONTDUMP: no longer exclude from core dump.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 *
800 * return values:
801 * zero - success
802 * -EINVAL - start + len < 0, start is not page-aligned,
803 * "behavior" is not a valid value, or application
Yang Shic02c3002017-10-13 15:57:37 -0700804 * is attempting to release locked or shared pages,
805 * or the specified address range includes file, Huge TLB,
806 * MAP_SHARED or VMPFNMAP range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 * -ENOMEM - addresses in the specified range are not currently
808 * mapped, or are outside the AS of the process.
809 * -EIO - an I/O error occurred while paging in data.
810 * -EBADF - map exists, but area maps something that isn't a file.
811 * -EAGAIN - a kernel resource was temporarily unavailable.
812 */
Heiko Carstens3480b252009-01-14 14:14:16 +0100813SYSCALL_DEFINE3(madvise, unsigned long, start, size_t, len_in, int, behavior)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Prasanna Meda05b74382005-06-21 17:14:37 -0700815 unsigned long end, tmp;
Vladimir Cernovec9bed92013-09-11 14:20:15 -0700816 struct vm_area_struct *vma, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 int unmapped_error = 0;
818 int error = -EINVAL;
Jason Baronf7977792007-07-15 23:38:21 -0700819 int write;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 size_t len;
Shaohua Li1998cc02013-02-22 16:32:31 -0800821 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Nick Piggin75927af2009-06-16 15:32:38 -0700823 if (!madvise_behavior_valid(behavior))
824 return error;
825
Rasmus Villemoes84d96d82013-04-29 15:08:23 -0700826 if (start & ~PAGE_MASK)
827 return error;
828 len = (len_in + ~PAGE_MASK) & PAGE_MASK;
829
830 /* Check to see whether len was rounded up from small -ve to zero */
831 if (len_in && !len)
832 return error;
833
834 end = start + len;
835 if (end < start)
836 return error;
837
838 error = 0;
839 if (end == start)
840 return error;
841
Anshuman Khandual5e451be2017-05-03 14:55:28 -0700842#ifdef CONFIG_MEMORY_FAILURE
843 if (behavior == MADV_HWPOISON || behavior == MADV_SOFT_OFFLINE)
844 return madvise_inject_error(behavior, start, start + len_in);
845#endif
846
Jason Baronf7977792007-07-15 23:38:21 -0700847 write = madvise_need_mmap_write(behavior);
Michal Hockodc0ef0d2016-05-23 16:25:27 -0700848 if (write) {
849 if (down_write_killable(&current->mm->mmap_sem))
850 return -EINTR;
851 } else {
Nick Piggin0a27a142007-05-06 14:49:53 -0700852 down_read(&current->mm->mmap_sem);
Michal Hockodc0ef0d2016-05-23 16:25:27 -0700853 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 /*
856 * If the interval [start,end) covers some unmapped address
857 * ranges, just ignore them, but return -ENOMEM at the end.
Prasanna Meda05b74382005-06-21 17:14:37 -0700858 * - different from the way of handling in mlock etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 */
Prasanna Meda05b74382005-06-21 17:14:37 -0700860 vma = find_vma_prev(current->mm, start, &prev);
Hugh Dickins836d5ff2005-09-03 15:54:53 -0700861 if (vma && start > vma->vm_start)
862 prev = vma;
863
Shaohua Li1998cc02013-02-22 16:32:31 -0800864 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 for (;;) {
866 /* Still start < end. */
867 error = -ENOMEM;
868 if (!vma)
Rasmus Villemoes84d96d82013-04-29 15:08:23 -0700869 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Prasanna Meda05b74382005-06-21 17:14:37 -0700871 /* Here start < (end|vma->vm_end). */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 if (start < vma->vm_start) {
873 unmapped_error = -ENOMEM;
874 start = vma->vm_start;
Prasanna Meda05b74382005-06-21 17:14:37 -0700875 if (start >= end)
Rasmus Villemoes84d96d82013-04-29 15:08:23 -0700876 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
878
Prasanna Meda05b74382005-06-21 17:14:37 -0700879 /* Here vma->vm_start <= start < (end|vma->vm_end) */
880 tmp = vma->vm_end;
881 if (end < tmp)
882 tmp = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Prasanna Meda05b74382005-06-21 17:14:37 -0700884 /* Here vma->vm_start <= start < tmp <= (end|vma->vm_end). */
885 error = madvise_vma(vma, &prev, start, tmp, behavior);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 if (error)
Rasmus Villemoes84d96d82013-04-29 15:08:23 -0700887 goto out;
Prasanna Meda05b74382005-06-21 17:14:37 -0700888 start = tmp;
Hugh Dickins90ed52e2007-03-29 01:20:38 -0700889 if (prev && start < prev->vm_end)
Prasanna Meda05b74382005-06-21 17:14:37 -0700890 start = prev->vm_end;
891 error = unmapped_error;
892 if (start >= end)
Rasmus Villemoes84d96d82013-04-29 15:08:23 -0700893 goto out;
Hugh Dickins90ed52e2007-03-29 01:20:38 -0700894 if (prev)
895 vma = prev->vm_next;
896 else /* madvise_remove dropped mmap_sem */
897 vma = find_vma(current->mm, start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899out:
Rasmus Villemoes84d96d82013-04-29 15:08:23 -0700900 blk_finish_plug(&plug);
Jason Baronf7977792007-07-15 23:38:21 -0700901 if (write)
Nick Piggin0a27a142007-05-06 14:49:53 -0700902 up_write(&current->mm->mmap_sem);
903 else
904 up_read(&current->mm->mmap_sem);
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 return error;
907}