blob: dc5927c812d3d1f9a209fbdbea3a36a61cbde17d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/mm/madvise.c
3 *
4 * Copyright (C) 1999 Linus Torvalds
5 * Copyright (C) 2002 Christoph Hellwig
6 */
7
8#include <linux/mman.h>
9#include <linux/pagemap.h>
10#include <linux/syscalls.h>
Prasanna Meda05b74382005-06-21 17:14:37 -070011#include <linux/mempolicy.h>
Andi Kleenafcf9382009-12-16 12:20:00 +010012#include <linux/page-isolation.h>
Pavel Emelyanov05ce7722017-02-22 15:42:40 -080013#include <linux/userfaultfd_k.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/hugetlb.h>
Hugh Dickins3f31d072012-05-29 15:06:40 -070015#include <linux/falloc.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040016#include <linux/sched.h>
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070017#include <linux/ksm.h>
Hugh Dickins3f31d072012-05-29 15:06:40 -070018#include <linux/fs.h>
Andy Lutomirski9ab42332012-07-05 16:00:11 -070019#include <linux/file.h>
Shaohua Li1998cc02013-02-22 16:32:31 -080020#include <linux/blkdev.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040021#include <linux/backing-dev.h>
Shaohua Li1998cc02013-02-22 16:32:31 -080022#include <linux/swap.h>
23#include <linux/swapops.h>
Hugh Dickins3a4f8a02017-02-24 14:59:36 -080024#include <linux/shmem_fs.h>
Minchan Kim854e9ed2016-01-15 16:54:53 -080025#include <linux/mmu_notifier.h>
26
27#include <asm/tlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Kirill A. Shutemov23519072017-02-22 15:46:39 -080029#include "internal.h"
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031/*
Nick Piggin0a27a142007-05-06 14:49:53 -070032 * Any behaviour which results in changes to the vma->vm_flags needs to
33 * take mmap_sem for writing. Others, which simply traverse vmas, need
34 * to only take it for reading.
35 */
36static int madvise_need_mmap_write(int behavior)
37{
38 switch (behavior) {
39 case MADV_REMOVE:
40 case MADV_WILLNEED:
41 case MADV_DONTNEED:
Minchan Kim854e9ed2016-01-15 16:54:53 -080042 case MADV_FREE:
Nick Piggin0a27a142007-05-06 14:49:53 -070043 return 0;
44 default:
45 /* be safe, default to 1. list exceptions explicitly */
46 return 1;
47 }
48}
49
50/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 * We can potentially split a vm area into separate
52 * areas, each area with its own behavior.
53 */
Vladimir Cernovec9bed92013-09-11 14:20:15 -070054static long madvise_behavior(struct vm_area_struct *vma,
Prasanna Meda05b74382005-06-21 17:14:37 -070055 struct vm_area_struct **prev,
56 unsigned long start, unsigned long end, int behavior)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
Vladimir Cernovec9bed92013-09-11 14:20:15 -070058 struct mm_struct *mm = vma->vm_mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 int error = 0;
Prasanna Meda05b74382005-06-21 17:14:37 -070060 pgoff_t pgoff;
Hugh Dickins3866ea92009-09-21 17:01:52 -070061 unsigned long new_flags = vma->vm_flags;
Prasanna Medae798c6e2005-06-21 17:14:36 -070062
63 switch (behavior) {
Michael S. Tsirkinf8225662006-02-14 13:53:08 -080064 case MADV_NORMAL:
65 new_flags = new_flags & ~VM_RAND_READ & ~VM_SEQ_READ;
66 break;
Prasanna Medae798c6e2005-06-21 17:14:36 -070067 case MADV_SEQUENTIAL:
Michael S. Tsirkinf8225662006-02-14 13:53:08 -080068 new_flags = (new_flags & ~VM_RAND_READ) | VM_SEQ_READ;
Prasanna Medae798c6e2005-06-21 17:14:36 -070069 break;
70 case MADV_RANDOM:
Michael S. Tsirkinf8225662006-02-14 13:53:08 -080071 new_flags = (new_flags & ~VM_SEQ_READ) | VM_RAND_READ;
Prasanna Medae798c6e2005-06-21 17:14:36 -070072 break;
Michael S. Tsirkinf8225662006-02-14 13:53:08 -080073 case MADV_DONTFORK:
74 new_flags |= VM_DONTCOPY;
75 break;
76 case MADV_DOFORK:
Hugh Dickins3866ea92009-09-21 17:01:52 -070077 if (vma->vm_flags & VM_IO) {
78 error = -EINVAL;
79 goto out;
80 }
Michael S. Tsirkinf8225662006-02-14 13:53:08 -080081 new_flags &= ~VM_DONTCOPY;
Prasanna Medae798c6e2005-06-21 17:14:36 -070082 break;
Jason Baronaccb61f2012-03-23 15:02:51 -070083 case MADV_DONTDUMP:
Konstantin Khlebnikov0103bd12012-10-08 16:28:59 -070084 new_flags |= VM_DONTDUMP;
Jason Baronaccb61f2012-03-23 15:02:51 -070085 break;
86 case MADV_DODUMP:
Konstantin Khlebnikov0103bd12012-10-08 16:28:59 -070087 if (new_flags & VM_SPECIAL) {
88 error = -EINVAL;
89 goto out;
90 }
91 new_flags &= ~VM_DONTDUMP;
Jason Baronaccb61f2012-03-23 15:02:51 -070092 break;
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070093 case MADV_MERGEABLE:
94 case MADV_UNMERGEABLE:
95 error = ksm_madvise(vma, start, end, behavior, &new_flags);
David Rientjesdef5efe2017-02-24 14:58:47 -080096 if (error) {
97 /*
98 * madvise() returns EAGAIN if kernel resources, such as
99 * slab, are temporarily unavailable.
100 */
101 if (error == -ENOMEM)
102 error = -EAGAIN;
Hugh Dickinsf8af4da2009-09-21 17:01:57 -0700103 goto out;
David Rientjesdef5efe2017-02-24 14:58:47 -0800104 }
Hugh Dickinsf8af4da2009-09-21 17:01:57 -0700105 break;
Andrea Arcangeli0af4e982011-01-13 15:46:55 -0800106 case MADV_HUGEPAGE:
Andrea Arcangelia664b2d2011-01-13 15:47:17 -0800107 case MADV_NOHUGEPAGE:
Andrea Arcangeli60ab3242011-01-13 15:47:18 -0800108 error = hugepage_madvise(vma, &new_flags, behavior);
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;
Andrea Arcangeli0af4e982011-01-13 15:46:55 -0800116 goto out;
David Rientjesdef5efe2017-02-24 14:58:47 -0800117 }
Andrea Arcangeli0af4e982011-01-13 15:46:55 -0800118 break;
Prasanna Medae798c6e2005-06-21 17:14:36 -0700119 }
120
Prasanna Meda05b74382005-06-21 17:14:37 -0700121 if (new_flags == vma->vm_flags) {
122 *prev = vma;
Hugh Dickins836d5ff2005-09-03 15:54:53 -0700123 goto out;
Prasanna Meda05b74382005-06-21 17:14:37 -0700124 }
125
126 pgoff = vma->vm_pgoff + ((start - vma->vm_start) >> PAGE_SHIFT);
127 *prev = vma_merge(mm, *prev, start, end, new_flags, vma->anon_vma,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -0700128 vma->vm_file, pgoff, vma_policy(vma),
129 vma->vm_userfaultfd_ctx);
Prasanna Meda05b74382005-06-21 17:14:37 -0700130 if (*prev) {
131 vma = *prev;
132 goto success;
133 }
134
135 *prev = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 if (start != vma->vm_start) {
David Rientjesdef5efe2017-02-24 14:58:47 -0800138 if (unlikely(mm->map_count >= sysctl_max_map_count)) {
139 error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 goto out;
David Rientjesdef5efe2017-02-24 14:58:47 -0800141 }
142 error = __split_vma(mm, vma, start, 1);
143 if (error) {
144 /*
145 * madvise() returns EAGAIN if kernel resources, such as
146 * slab, are temporarily unavailable.
147 */
148 if (error == -ENOMEM)
149 error = -EAGAIN;
150 goto out;
151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 }
153
154 if (end != vma->vm_end) {
David Rientjesdef5efe2017-02-24 14:58:47 -0800155 if (unlikely(mm->map_count >= sysctl_max_map_count)) {
156 error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 goto out;
David Rientjesdef5efe2017-02-24 14:58:47 -0800158 }
159 error = __split_vma(mm, vma, end, 0);
160 if (error) {
161 /*
162 * madvise() returns EAGAIN if kernel resources, such as
163 * slab, are temporarily unavailable.
164 */
165 if (error == -ENOMEM)
166 error = -EAGAIN;
167 goto out;
168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 }
170
Hugh Dickins836d5ff2005-09-03 15:54:53 -0700171success:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 /*
173 * vm_flags is protected by the mmap_sem held in write mode.
174 */
Prasanna Medae798c6e2005-06-21 17:14:36 -0700175 vma->vm_flags = new_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 return error;
178}
179
Shaohua Li1998cc02013-02-22 16:32:31 -0800180#ifdef CONFIG_SWAP
181static int swapin_walk_pmd_entry(pmd_t *pmd, unsigned long start,
182 unsigned long end, struct mm_walk *walk)
183{
184 pte_t *orig_pte;
185 struct vm_area_struct *vma = walk->private;
186 unsigned long index;
187
188 if (pmd_none_or_trans_huge_or_clear_bad(pmd))
189 return 0;
190
191 for (index = start; index != end; index += PAGE_SIZE) {
192 pte_t pte;
193 swp_entry_t entry;
194 struct page *page;
195 spinlock_t *ptl;
196
197 orig_pte = pte_offset_map_lock(vma->vm_mm, pmd, start, &ptl);
198 pte = *(orig_pte + ((index - start) / PAGE_SIZE));
199 pte_unmap_unlock(orig_pte, ptl);
200
Kirill A. Shutemov0661a332015-02-10 14:10:04 -0800201 if (pte_present(pte) || pte_none(pte))
Shaohua Li1998cc02013-02-22 16:32:31 -0800202 continue;
203 entry = pte_to_swp_entry(pte);
204 if (unlikely(non_swap_entry(entry)))
205 continue;
206
207 page = read_swap_cache_async(entry, GFP_HIGHUSER_MOVABLE,
208 vma, index);
209 if (page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300210 put_page(page);
Shaohua Li1998cc02013-02-22 16:32:31 -0800211 }
212
213 return 0;
214}
215
216static void force_swapin_readahead(struct vm_area_struct *vma,
217 unsigned long start, unsigned long end)
218{
219 struct mm_walk walk = {
220 .mm = vma->vm_mm,
221 .pmd_entry = swapin_walk_pmd_entry,
222 .private = vma,
223 };
224
225 walk_page_range(start, end, &walk);
226
227 lru_add_drain(); /* Push any new pages onto the LRU now */
228}
229
230static void force_shm_swapin_readahead(struct vm_area_struct *vma,
231 unsigned long start, unsigned long end,
232 struct address_space *mapping)
233{
234 pgoff_t index;
235 struct page *page;
236 swp_entry_t swap;
237
238 for (; start < end; start += PAGE_SIZE) {
239 index = ((start - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
240
Johannes Weiner55231e52014-05-22 11:54:17 -0700241 page = find_get_entry(mapping, index);
Shaohua Li1998cc02013-02-22 16:32:31 -0800242 if (!radix_tree_exceptional_entry(page)) {
243 if (page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300244 put_page(page);
Shaohua Li1998cc02013-02-22 16:32:31 -0800245 continue;
246 }
247 swap = radix_to_swp_entry(page);
248 page = read_swap_cache_async(swap, GFP_HIGHUSER_MOVABLE,
249 NULL, 0);
250 if (page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300251 put_page(page);
Shaohua Li1998cc02013-02-22 16:32:31 -0800252 }
253
254 lru_add_drain(); /* Push any new pages onto the LRU now */
255}
256#endif /* CONFIG_SWAP */
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258/*
259 * Schedule all required I/O operations. Do not wait for completion.
260 */
Vladimir Cernovec9bed92013-09-11 14:20:15 -0700261static long madvise_willneed(struct vm_area_struct *vma,
262 struct vm_area_struct **prev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 unsigned long start, unsigned long end)
264{
265 struct file *file = vma->vm_file;
266
Shaohua Li1998cc02013-02-22 16:32:31 -0800267#ifdef CONFIG_SWAP
Christoph Hellwig97b713b2015-01-14 10:42:31 +0100268 if (!file) {
Shaohua Li1998cc02013-02-22 16:32:31 -0800269 *prev = vma;
Christoph Hellwig97b713b2015-01-14 10:42:31 +0100270 force_swapin_readahead(vma, start, end);
Shaohua Li1998cc02013-02-22 16:32:31 -0800271 return 0;
272 }
Shaohua Li1998cc02013-02-22 16:32:31 -0800273
Christoph Hellwig97b713b2015-01-14 10:42:31 +0100274 if (shmem_mapping(file->f_mapping)) {
275 *prev = vma;
276 force_shm_swapin_readahead(vma, start, end,
277 file->f_mapping);
278 return 0;
279 }
280#else
Suzuki1bef4002005-10-11 08:29:06 -0700281 if (!file)
282 return -EBADF;
Christoph Hellwig97b713b2015-01-14 10:42:31 +0100283#endif
Suzuki1bef4002005-10-11 08:29:06 -0700284
Matthew Wilcoxe748dcd2015-02-16 15:59:12 -0800285 if (IS_DAX(file_inode(file))) {
Carsten Ottefe77ba62005-06-23 22:05:29 -0700286 /* no bad return value, but ignore advice */
287 return 0;
288 }
289
Prasanna Meda05b74382005-06-21 17:14:37 -0700290 *prev = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 start = ((start - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
292 if (end > vma->vm_end)
293 end = vma->vm_end;
294 end = ((end - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
295
Wu Fengguangf7e839d2009-06-16 15:31:20 -0700296 force_page_cache_readahead(file->f_mapping, file, start, end - start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 return 0;
298}
299
Minchan Kim854e9ed2016-01-15 16:54:53 -0800300static int madvise_free_pte_range(pmd_t *pmd, unsigned long addr,
301 unsigned long end, struct mm_walk *walk)
302
303{
304 struct mmu_gather *tlb = walk->private;
305 struct mm_struct *mm = tlb->mm;
306 struct vm_area_struct *vma = walk->vma;
307 spinlock_t *ptl;
308 pte_t *orig_pte, *pte, ptent;
309 struct page *page;
Minchan Kim64b42bc2016-01-15 16:55:06 -0800310 int nr_swap = 0;
Minchan Kimb8d3c4c2016-01-15 16:55:42 -0800311 unsigned long next;
Minchan Kim854e9ed2016-01-15 16:54:53 -0800312
Minchan Kimb8d3c4c2016-01-15 16:55:42 -0800313 next = pmd_addr_end(addr, end);
314 if (pmd_trans_huge(*pmd))
315 if (madvise_free_huge_pmd(tlb, vma, pmd, addr, next))
316 goto next;
317
Minchan Kim854e9ed2016-01-15 16:54:53 -0800318 if (pmd_trans_unstable(pmd))
319 return 0;
320
Aneesh Kumar K.V07e32662016-12-12 16:42:40 -0800321 tlb_remove_check_page_size_change(tlb, PAGE_SIZE);
Minchan Kim854e9ed2016-01-15 16:54:53 -0800322 orig_pte = pte = pte_offset_map_lock(mm, pmd, addr, &ptl);
323 arch_enter_lazy_mmu_mode();
324 for (; addr != end; pte++, addr += PAGE_SIZE) {
325 ptent = *pte;
326
Minchan Kim64b42bc2016-01-15 16:55:06 -0800327 if (pte_none(ptent))
Minchan Kim854e9ed2016-01-15 16:54:53 -0800328 continue;
Minchan Kim64b42bc2016-01-15 16:55:06 -0800329 /*
330 * If the pte has swp_entry, just clear page table to
331 * prevent swap-in which is more expensive rather than
332 * (page allocation + zeroing).
333 */
334 if (!pte_present(ptent)) {
335 swp_entry_t entry;
336
337 entry = pte_to_swp_entry(ptent);
338 if (non_swap_entry(entry))
339 continue;
340 nr_swap--;
341 free_swap_and_cache(entry);
342 pte_clear_not_present_full(mm, addr, pte, tlb->fullmm);
343 continue;
344 }
Minchan Kim854e9ed2016-01-15 16:54:53 -0800345
346 page = vm_normal_page(vma, addr, ptent);
347 if (!page)
348 continue;
349
350 /*
351 * If pmd isn't transhuge but the page is THP and
352 * is owned by only this process, split it and
353 * deactivate all pages.
354 */
355 if (PageTransCompound(page)) {
356 if (page_mapcount(page) != 1)
357 goto out;
358 get_page(page);
359 if (!trylock_page(page)) {
360 put_page(page);
361 goto out;
362 }
363 pte_unmap_unlock(orig_pte, ptl);
364 if (split_huge_page(page)) {
365 unlock_page(page);
366 put_page(page);
367 pte_offset_map_lock(mm, pmd, addr, &ptl);
368 goto out;
369 }
370 put_page(page);
371 unlock_page(page);
372 pte = pte_offset_map_lock(mm, pmd, addr, &ptl);
373 pte--;
374 addr -= PAGE_SIZE;
375 continue;
376 }
377
378 VM_BUG_ON_PAGE(PageTransCompound(page), page);
379
380 if (PageSwapCache(page) || PageDirty(page)) {
381 if (!trylock_page(page))
382 continue;
383 /*
384 * If page is shared with others, we couldn't clear
385 * PG_dirty of the page.
386 */
387 if (page_mapcount(page) != 1) {
388 unlock_page(page);
389 continue;
390 }
391
392 if (PageSwapCache(page) && !try_to_free_swap(page)) {
393 unlock_page(page);
394 continue;
395 }
396
397 ClearPageDirty(page);
398 unlock_page(page);
399 }
400
401 if (pte_young(ptent) || pte_dirty(ptent)) {
402 /*
403 * Some of architecture(ex, PPC) don't update TLB
404 * with set_pte_at and tlb_remove_tlb_entry so for
405 * the portability, remap the pte with old|clean
406 * after pte clearing.
407 */
408 ptent = ptep_get_and_clear_full(mm, addr, pte,
409 tlb->fullmm);
410
411 ptent = pte_mkold(ptent);
412 ptent = pte_mkclean(ptent);
413 set_pte_at(mm, addr, pte, ptent);
Minchan Kim10853a02016-01-15 16:55:11 -0800414 if (PageActive(page))
415 deactivate_page(page);
Minchan Kim854e9ed2016-01-15 16:54:53 -0800416 tlb_remove_tlb_entry(tlb, pte, addr);
417 }
418 }
419out:
Minchan Kim64b42bc2016-01-15 16:55:06 -0800420 if (nr_swap) {
421 if (current->mm == mm)
422 sync_mm_rss(mm);
423
424 add_mm_counter(mm, MM_SWAPENTS, nr_swap);
425 }
Minchan Kim854e9ed2016-01-15 16:54:53 -0800426 arch_leave_lazy_mmu_mode();
427 pte_unmap_unlock(orig_pte, ptl);
428 cond_resched();
Minchan Kimb8d3c4c2016-01-15 16:55:42 -0800429next:
Minchan Kim854e9ed2016-01-15 16:54:53 -0800430 return 0;
431}
432
433static void madvise_free_page_range(struct mmu_gather *tlb,
434 struct vm_area_struct *vma,
435 unsigned long addr, unsigned long end)
436{
437 struct mm_walk free_walk = {
438 .pmd_entry = madvise_free_pte_range,
439 .mm = vma->vm_mm,
440 .private = tlb,
441 };
442
443 tlb_start_vma(tlb, vma);
444 walk_page_range(addr, end, &free_walk);
445 tlb_end_vma(tlb, vma);
446}
447
448static int madvise_free_single_vma(struct vm_area_struct *vma,
449 unsigned long start_addr, unsigned long end_addr)
450{
451 unsigned long start, end;
452 struct mm_struct *mm = vma->vm_mm;
453 struct mmu_gather tlb;
454
455 if (vma->vm_flags & (VM_LOCKED|VM_HUGETLB|VM_PFNMAP))
456 return -EINVAL;
457
458 /* MADV_FREE works for only anon vma at the moment */
459 if (!vma_is_anonymous(vma))
460 return -EINVAL;
461
462 start = max(vma->vm_start, start_addr);
463 if (start >= vma->vm_end)
464 return -EINVAL;
465 end = min(vma->vm_end, end_addr);
466 if (end <= vma->vm_start)
467 return -EINVAL;
468
469 lru_add_drain();
470 tlb_gather_mmu(&tlb, mm, start, end);
471 update_hiwater_rss(mm);
472
473 mmu_notifier_invalidate_range_start(mm, start, end);
474 madvise_free_page_range(&tlb, vma, start, end);
475 mmu_notifier_invalidate_range_end(mm, start, end);
476 tlb_finish_mmu(&tlb, start, end);
477
478 return 0;
479}
480
481static long madvise_free(struct vm_area_struct *vma,
482 struct vm_area_struct **prev,
483 unsigned long start, unsigned long end)
484{
485 *prev = vma;
486 return madvise_free_single_vma(vma, start, end);
487}
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489/*
490 * Application no longer needs these pages. If the pages are dirty,
491 * it's OK to just throw them away. The app will be more careful about
492 * data it wants to keep. Be sure to free swap resources too. The
Fernando Luis Vazquez Cao7e6cbea2008-07-29 22:33:39 -0700493 * zap_page_range call sets things up for shrink_active_list to actually free
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 * these pages later if no one else has touched them in the meantime,
495 * although we could add these pages to a global reuse list for
Fernando Luis Vazquez Cao7e6cbea2008-07-29 22:33:39 -0700496 * shrink_active_list to pick up before reclaiming other pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 *
498 * NB: This interface discards data rather than pushes it out to swap,
499 * as some implementations do. This has performance implications for
500 * applications like large transactional databases which want to discard
501 * pages in anonymous maps after committing to backing store the data
502 * that was kept in them. There is no reason to write this data out to
503 * the swap area if the application is discarding it.
504 *
505 * An interface that causes the system to free clean pages and flush
506 * dirty pages is already available as msync(MS_INVALIDATE).
507 */
Vladimir Cernovec9bed92013-09-11 14:20:15 -0700508static long madvise_dontneed(struct vm_area_struct *vma,
509 struct vm_area_struct **prev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 unsigned long start, unsigned long end)
511{
Prasanna Meda05b74382005-06-21 17:14:37 -0700512 *prev = vma;
Kirill A. Shutemov23519072017-02-22 15:46:39 -0800513 if (!can_madv_dontneed_vma(vma))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 return -EINVAL;
515
Mike Rapoportd8119142017-02-24 14:56:02 -0800516 userfaultfd_remove(vma, prev, start, end);
Kirill A. Shutemovecf13852017-02-22 15:46:37 -0800517 zap_page_range(vma, start, end - start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 return 0;
519}
520
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800521/*
522 * Application wants to free up the pages and associated backing store.
523 * This is effectively punching a hole into the middle of a file.
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800524 */
525static long madvise_remove(struct vm_area_struct *vma,
Nick Piggin00e9fa22007-03-16 13:38:10 -0800526 struct vm_area_struct **prev,
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800527 unsigned long start, unsigned long end)
528{
Hugh Dickins3f31d072012-05-29 15:06:40 -0700529 loff_t offset;
Hugh Dickins90ed52e2007-03-29 01:20:38 -0700530 int error;
Andy Lutomirski9ab42332012-07-05 16:00:11 -0700531 struct file *f;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800532
Hugh Dickins90ed52e2007-03-29 01:20:38 -0700533 *prev = NULL; /* tell sys_madvise we drop mmap_sem */
Nick Piggin00e9fa22007-03-16 13:38:10 -0800534
Mike Kravetz72079ba2015-09-08 15:01:57 -0700535 if (vma->vm_flags & VM_LOCKED)
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800536 return -EINVAL;
537
Andy Lutomirski9ab42332012-07-05 16:00:11 -0700538 f = vma->vm_file;
539
540 if (!f || !f->f_mapping || !f->f_mapping->host) {
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800541 return -EINVAL;
542 }
543
Hugh Dickins69cf0fa2006-04-17 22:46:32 +0100544 if ((vma->vm_flags & (VM_SHARED|VM_WRITE)) != (VM_SHARED|VM_WRITE))
545 return -EACCES;
546
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800547 offset = (loff_t)(start - vma->vm_start)
548 + ((loff_t)vma->vm_pgoff << PAGE_SHIFT);
Hugh Dickins90ed52e2007-03-29 01:20:38 -0700549
Andy Lutomirski9ab42332012-07-05 16:00:11 -0700550 /*
551 * Filesystem's fallocate may need to take i_mutex. We need to
552 * explicitly grab a reference because the vma (and hence the
553 * vma's reference to the file) can go away as soon as we drop
554 * mmap_sem.
555 */
556 get_file(f);
Mike Rapoporta6bf53eb2017-02-24 14:56:05 -0800557 userfaultfd_remove(vma, prev, start, end);
Nick Piggin0a27a142007-05-06 14:49:53 -0700558 up_read(&current->mm->mmap_sem);
Anna Schumaker72c72bd2014-11-07 14:44:25 -0500559 error = vfs_fallocate(f,
Hugh Dickins3f31d072012-05-29 15:06:40 -0700560 FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
561 offset, end - start);
Andy Lutomirski9ab42332012-07-05 16:00:11 -0700562 fput(f);
Nick Piggin0a27a142007-05-06 14:49:53 -0700563 down_read(&current->mm->mmap_sem);
Hugh Dickins90ed52e2007-03-29 01:20:38 -0700564 return error;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800565}
566
Andi Kleen9893e492009-09-16 11:50:17 +0200567#ifdef CONFIG_MEMORY_FAILURE
568/*
569 * Error injection support for memory error handling.
570 */
Andi Kleenafcf9382009-12-16 12:20:00 +0100571static int madvise_hwpoison(int bhv, unsigned long start, unsigned long end)
Andi Kleen9893e492009-09-16 11:50:17 +0200572{
Wanpeng Li20cb6ca2013-09-30 13:45:21 -0700573 struct page *p;
Andi Kleen9893e492009-09-16 11:50:17 +0200574 if (!capable(CAP_SYS_ADMIN))
575 return -EPERM;
Wanpeng Li20cb6ca2013-09-30 13:45:21 -0700576 for (; start < end; start += PAGE_SIZE <<
577 compound_order(compound_head(p))) {
Andrew Morton325c4ef2013-09-11 14:23:03 -0700578 int ret;
579
580 ret = get_user_pages_fast(start, 1, 0, &p);
Andi Kleen9893e492009-09-16 11:50:17 +0200581 if (ret != 1)
582 return ret;
Andrew Morton325c4ef2013-09-11 14:23:03 -0700583
Wanpeng Li29b4eed2013-09-11 14:22:59 -0700584 if (PageHWPoison(p)) {
585 put_page(p);
586 continue;
587 }
Andi Kleenafcf9382009-12-16 12:20:00 +0100588 if (bhv == MADV_SOFT_OFFLINE) {
Wanpeng Lib194b8c2013-09-11 14:22:57 -0700589 pr_info("Soft offlining page %#lx at %#lx\n",
Andi Kleenafcf9382009-12-16 12:20:00 +0100590 page_to_pfn(p), start);
591 ret = soft_offline_page(p, MF_COUNT_INCREASED);
592 if (ret)
Wanpeng Li83024232013-09-11 14:23:02 -0700593 return ret;
Andi Kleenafcf9382009-12-16 12:20:00 +0100594 continue;
595 }
Wanpeng Lib194b8c2013-09-11 14:22:57 -0700596 pr_info("Injecting memory failure for page %#lx at %#lx\n",
Andi Kleen9893e492009-09-16 11:50:17 +0200597 page_to_pfn(p), start);
Naoya Horiguchi23a003b2016-03-15 14:56:36 -0700598 ret = memory_failure(page_to_pfn(p), 0, MF_COUNT_INCREASED);
599 if (ret)
600 return ret;
Andi Kleen9893e492009-09-16 11:50:17 +0200601 }
Andrew Morton325c4ef2013-09-11 14:23:03 -0700602 return 0;
Andi Kleen9893e492009-09-16 11:50:17 +0200603}
604#endif
605
suzuki165cd402005-07-27 11:43:59 -0700606static long
607madvise_vma(struct vm_area_struct *vma, struct vm_area_struct **prev,
608 unsigned long start, unsigned long end, int behavior)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 switch (behavior) {
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800611 case MADV_REMOVE:
Hugh Dickins3866ea92009-09-21 17:01:52 -0700612 return madvise_remove(vma, prev, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 case MADV_WILLNEED:
Hugh Dickins3866ea92009-09-21 17:01:52 -0700614 return madvise_willneed(vma, prev, start, end);
Minchan Kim854e9ed2016-01-15 16:54:53 -0800615 case MADV_FREE:
616 /*
617 * XXX: In this implementation, MADV_FREE works like
618 * MADV_DONTNEED on swapless system or full swap.
619 */
620 if (get_nr_swap_pages() > 0)
621 return madvise_free(vma, prev, start, end);
622 /* passthrough */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 case MADV_DONTNEED:
Hugh Dickins3866ea92009-09-21 17:01:52 -0700624 return madvise_dontneed(vma, prev, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 default:
Hugh Dickins3866ea92009-09-21 17:01:52 -0700626 return madvise_behavior(vma, prev, start, end, behavior);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628}
629
Nicholas Krause1ecef9e2015-09-04 15:48:24 -0700630static bool
Nick Piggin75927af2009-06-16 15:32:38 -0700631madvise_behavior_valid(int behavior)
632{
633 switch (behavior) {
634 case MADV_DOFORK:
635 case MADV_DONTFORK:
636 case MADV_NORMAL:
637 case MADV_SEQUENTIAL:
638 case MADV_RANDOM:
639 case MADV_REMOVE:
640 case MADV_WILLNEED:
641 case MADV_DONTNEED:
Minchan Kim854e9ed2016-01-15 16:54:53 -0800642 case MADV_FREE:
Hugh Dickinsf8af4da2009-09-21 17:01:57 -0700643#ifdef CONFIG_KSM
644 case MADV_MERGEABLE:
645 case MADV_UNMERGEABLE:
646#endif
Andrea Arcangeli0af4e982011-01-13 15:46:55 -0800647#ifdef CONFIG_TRANSPARENT_HUGEPAGE
648 case MADV_HUGEPAGE:
Andrea Arcangelia664b2d2011-01-13 15:47:17 -0800649 case MADV_NOHUGEPAGE:
Andrea Arcangeli0af4e982011-01-13 15:46:55 -0800650#endif
Jason Baronaccb61f2012-03-23 15:02:51 -0700651 case MADV_DONTDUMP:
652 case MADV_DODUMP:
Nicholas Krause1ecef9e2015-09-04 15:48:24 -0700653 return true;
Nick Piggin75927af2009-06-16 15:32:38 -0700654
655 default:
Nicholas Krause1ecef9e2015-09-04 15:48:24 -0700656 return false;
Nick Piggin75927af2009-06-16 15:32:38 -0700657 }
658}
Hugh Dickins3866ea92009-09-21 17:01:52 -0700659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660/*
661 * The madvise(2) system call.
662 *
663 * Applications can use madvise() to advise the kernel how it should
664 * handle paging I/O in this VM area. The idea is to help the kernel
665 * use appropriate read-ahead and caching techniques. The information
666 * provided is advisory only, and can be safely disregarded by the
667 * kernel without affecting the correct operation of the application.
668 *
669 * behavior values:
670 * MADV_NORMAL - the default behavior is to read clusters. This
671 * results in some read-ahead and read-behind.
672 * MADV_RANDOM - the system should read the minimum amount of data
673 * on any access, since it is unlikely that the appli-
674 * cation will need more than what it asks for.
675 * MADV_SEQUENTIAL - pages in the given range will probably be accessed
676 * once, so they can be aggressively read ahead, and
677 * can be freed soon after they are accessed.
678 * MADV_WILLNEED - the application is notifying the system to read
679 * some pages ahead.
680 * MADV_DONTNEED - the application is finished with the given range,
681 * so the kernel can free resources associated with it.
Naoya Horiguchid7206a72016-03-15 14:56:58 -0700682 * MADV_FREE - the application marks pages in the given range as lazy free,
683 * where actual purges are postponed until memory pressure happens.
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800684 * MADV_REMOVE - the application wants to free up the given range of
685 * pages and associated backing store.
Hugh Dickins3866ea92009-09-21 17:01:52 -0700686 * MADV_DONTFORK - omit this area from child's address space when forking:
687 * typically, to avoid COWing pages pinned by get_user_pages().
688 * MADV_DOFORK - cancel MADV_DONTFORK: no longer omit this area when forking.
Naoya Horiguchid7206a72016-03-15 14:56:58 -0700689 * MADV_HWPOISON - trigger memory error handler as if the given memory range
690 * were corrupted by unrecoverable hardware memory failure.
691 * MADV_SOFT_OFFLINE - try to soft-offline the given range of memory.
Hugh Dickinsf8af4da2009-09-21 17:01:57 -0700692 * MADV_MERGEABLE - the application recommends that KSM try to merge pages in
693 * this area with pages of identical content from other such areas.
694 * MADV_UNMERGEABLE- cancel MADV_MERGEABLE: no longer merge pages with others.
Naoya Horiguchid7206a72016-03-15 14:56:58 -0700695 * MADV_HUGEPAGE - the application wants to back the given range by transparent
696 * huge pages in the future. Existing pages might be coalesced and
697 * new pages might be allocated as THP.
698 * MADV_NOHUGEPAGE - mark the given range as not worth being backed by
699 * transparent huge pages so the existing pages will not be
700 * coalesced into THP and new pages will not be allocated as THP.
701 * MADV_DONTDUMP - the application wants to prevent pages in the given range
702 * from being included in its core dump.
703 * MADV_DODUMP - cancel MADV_DONTDUMP: no longer exclude from core dump.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 *
705 * return values:
706 * zero - success
707 * -EINVAL - start + len < 0, start is not page-aligned,
708 * "behavior" is not a valid value, or application
709 * is attempting to release locked or shared pages.
710 * -ENOMEM - addresses in the specified range are not currently
711 * mapped, or are outside the AS of the process.
712 * -EIO - an I/O error occurred while paging in data.
713 * -EBADF - map exists, but area maps something that isn't a file.
714 * -EAGAIN - a kernel resource was temporarily unavailable.
715 */
Heiko Carstens3480b252009-01-14 14:14:16 +0100716SYSCALL_DEFINE3(madvise, unsigned long, start, size_t, len_in, int, behavior)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Prasanna Meda05b74382005-06-21 17:14:37 -0700718 unsigned long end, tmp;
Vladimir Cernovec9bed92013-09-11 14:20:15 -0700719 struct vm_area_struct *vma, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 int unmapped_error = 0;
721 int error = -EINVAL;
Jason Baronf7977792007-07-15 23:38:21 -0700722 int write;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 size_t len;
Shaohua Li1998cc02013-02-22 16:32:31 -0800724 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Andi Kleen9893e492009-09-16 11:50:17 +0200726#ifdef CONFIG_MEMORY_FAILURE
Andi Kleenafcf9382009-12-16 12:20:00 +0100727 if (behavior == MADV_HWPOISON || behavior == MADV_SOFT_OFFLINE)
728 return madvise_hwpoison(behavior, start, start+len_in);
Andi Kleen9893e492009-09-16 11:50:17 +0200729#endif
Nick Piggin75927af2009-06-16 15:32:38 -0700730 if (!madvise_behavior_valid(behavior))
731 return error;
732
Rasmus Villemoes84d96d82013-04-29 15:08:23 -0700733 if (start & ~PAGE_MASK)
734 return error;
735 len = (len_in + ~PAGE_MASK) & PAGE_MASK;
736
737 /* Check to see whether len was rounded up from small -ve to zero */
738 if (len_in && !len)
739 return error;
740
741 end = start + len;
742 if (end < start)
743 return error;
744
745 error = 0;
746 if (end == start)
747 return error;
748
Jason Baronf7977792007-07-15 23:38:21 -0700749 write = madvise_need_mmap_write(behavior);
Michal Hockodc0ef0d2016-05-23 16:25:27 -0700750 if (write) {
751 if (down_write_killable(&current->mm->mmap_sem))
752 return -EINTR;
753 } else {
Nick Piggin0a27a142007-05-06 14:49:53 -0700754 down_read(&current->mm->mmap_sem);
Michal Hockodc0ef0d2016-05-23 16:25:27 -0700755 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 /*
758 * If the interval [start,end) covers some unmapped address
759 * ranges, just ignore them, but return -ENOMEM at the end.
Prasanna Meda05b74382005-06-21 17:14:37 -0700760 * - different from the way of handling in mlock etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 */
Prasanna Meda05b74382005-06-21 17:14:37 -0700762 vma = find_vma_prev(current->mm, start, &prev);
Hugh Dickins836d5ff2005-09-03 15:54:53 -0700763 if (vma && start > vma->vm_start)
764 prev = vma;
765
Shaohua Li1998cc02013-02-22 16:32:31 -0800766 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 for (;;) {
768 /* Still start < end. */
769 error = -ENOMEM;
770 if (!vma)
Rasmus Villemoes84d96d82013-04-29 15:08:23 -0700771 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Prasanna Meda05b74382005-06-21 17:14:37 -0700773 /* Here start < (end|vma->vm_end). */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 if (start < vma->vm_start) {
775 unmapped_error = -ENOMEM;
776 start = vma->vm_start;
Prasanna Meda05b74382005-06-21 17:14:37 -0700777 if (start >= end)
Rasmus Villemoes84d96d82013-04-29 15:08:23 -0700778 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
780
Prasanna Meda05b74382005-06-21 17:14:37 -0700781 /* Here vma->vm_start <= start < (end|vma->vm_end) */
782 tmp = vma->vm_end;
783 if (end < tmp)
784 tmp = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Prasanna Meda05b74382005-06-21 17:14:37 -0700786 /* Here vma->vm_start <= start < tmp <= (end|vma->vm_end). */
787 error = madvise_vma(vma, &prev, start, tmp, behavior);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 if (error)
Rasmus Villemoes84d96d82013-04-29 15:08:23 -0700789 goto out;
Prasanna Meda05b74382005-06-21 17:14:37 -0700790 start = tmp;
Hugh Dickins90ed52e2007-03-29 01:20:38 -0700791 if (prev && start < prev->vm_end)
Prasanna Meda05b74382005-06-21 17:14:37 -0700792 start = prev->vm_end;
793 error = unmapped_error;
794 if (start >= end)
Rasmus Villemoes84d96d82013-04-29 15:08:23 -0700795 goto out;
Hugh Dickins90ed52e2007-03-29 01:20:38 -0700796 if (prev)
797 vma = prev->vm_next;
798 else /* madvise_remove dropped mmap_sem */
799 vma = find_vma(current->mm, start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801out:
Rasmus Villemoes84d96d82013-04-29 15:08:23 -0700802 blk_finish_plug(&plug);
Jason Baronf7977792007-07-15 23:38:21 -0700803 if (write)
Nick Piggin0a27a142007-05-06 14:49:53 -0700804 up_write(&current->mm->mmap_sem);
805 else
806 up_read(&current->mm->mmap_sem);
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 return error;
809}