blob: 66c31264f06204874b8c2990ee9c512c7b9f5e2b [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/hugetlb.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040013#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15/*
Nick Piggin0a27a142007-05-06 14:49:53 -070016 * Any behaviour which results in changes to the vma->vm_flags needs to
17 * take mmap_sem for writing. Others, which simply traverse vmas, need
18 * to only take it for reading.
19 */
20static int madvise_need_mmap_write(int behavior)
21{
22 switch (behavior) {
23 case MADV_REMOVE:
24 case MADV_WILLNEED:
25 case MADV_DONTNEED:
26 return 0;
27 default:
28 /* be safe, default to 1. list exceptions explicitly */
29 return 1;
30 }
31}
32
33/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 * We can potentially split a vm area into separate
35 * areas, each area with its own behavior.
36 */
Prasanna Meda05b74382005-06-21 17:14:37 -070037static long madvise_behavior(struct vm_area_struct * vma,
38 struct vm_area_struct **prev,
39 unsigned long start, unsigned long end, int behavior)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040{
41 struct mm_struct * mm = vma->vm_mm;
42 int error = 0;
Prasanna Meda05b74382005-06-21 17:14:37 -070043 pgoff_t pgoff;
Hugh Dickins3866ea92009-09-21 17:01:52 -070044 unsigned long new_flags = vma->vm_flags;
Prasanna Medae798c6e2005-06-21 17:14:36 -070045
46 switch (behavior) {
Michael S. Tsirkinf8225662006-02-14 13:53:08 -080047 case MADV_NORMAL:
48 new_flags = new_flags & ~VM_RAND_READ & ~VM_SEQ_READ;
49 break;
Prasanna Medae798c6e2005-06-21 17:14:36 -070050 case MADV_SEQUENTIAL:
Michael S. Tsirkinf8225662006-02-14 13:53:08 -080051 new_flags = (new_flags & ~VM_RAND_READ) | VM_SEQ_READ;
Prasanna Medae798c6e2005-06-21 17:14:36 -070052 break;
53 case MADV_RANDOM:
Michael S. Tsirkinf8225662006-02-14 13:53:08 -080054 new_flags = (new_flags & ~VM_SEQ_READ) | VM_RAND_READ;
Prasanna Medae798c6e2005-06-21 17:14:36 -070055 break;
Michael S. Tsirkinf8225662006-02-14 13:53:08 -080056 case MADV_DONTFORK:
57 new_flags |= VM_DONTCOPY;
58 break;
59 case MADV_DOFORK:
Hugh Dickins3866ea92009-09-21 17:01:52 -070060 if (vma->vm_flags & VM_IO) {
61 error = -EINVAL;
62 goto out;
63 }
Michael S. Tsirkinf8225662006-02-14 13:53:08 -080064 new_flags &= ~VM_DONTCOPY;
Prasanna Medae798c6e2005-06-21 17:14:36 -070065 break;
66 }
67
Prasanna Meda05b74382005-06-21 17:14:37 -070068 if (new_flags == vma->vm_flags) {
69 *prev = vma;
Hugh Dickins836d5ff2005-09-03 15:54:53 -070070 goto out;
Prasanna Meda05b74382005-06-21 17:14:37 -070071 }
72
73 pgoff = vma->vm_pgoff + ((start - vma->vm_start) >> PAGE_SHIFT);
74 *prev = vma_merge(mm, *prev, start, end, new_flags, vma->anon_vma,
75 vma->vm_file, pgoff, vma_policy(vma));
76 if (*prev) {
77 vma = *prev;
78 goto success;
79 }
80
81 *prev = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 if (start != vma->vm_start) {
84 error = split_vma(mm, vma, start, 1);
85 if (error)
86 goto out;
87 }
88
89 if (end != vma->vm_end) {
90 error = split_vma(mm, vma, end, 0);
91 if (error)
92 goto out;
93 }
94
Hugh Dickins836d5ff2005-09-03 15:54:53 -070095success:
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 /*
97 * vm_flags is protected by the mmap_sem held in write mode.
98 */
Prasanna Medae798c6e2005-06-21 17:14:36 -070099 vma->vm_flags = new_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101out:
102 if (error == -ENOMEM)
103 error = -EAGAIN;
104 return error;
105}
106
107/*
108 * Schedule all required I/O operations. Do not wait for completion.
109 */
110static long madvise_willneed(struct vm_area_struct * vma,
Prasanna Meda05b74382005-06-21 17:14:37 -0700111 struct vm_area_struct ** prev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 unsigned long start, unsigned long end)
113{
114 struct file *file = vma->vm_file;
115
Suzuki1bef4002005-10-11 08:29:06 -0700116 if (!file)
117 return -EBADF;
118
Nick Piggin70688e42008-04-28 02:13:02 -0700119 if (file->f_mapping->a_ops->get_xip_mem) {
Carsten Ottefe77ba62005-06-23 22:05:29 -0700120 /* no bad return value, but ignore advice */
121 return 0;
122 }
123
Prasanna Meda05b74382005-06-21 17:14:37 -0700124 *prev = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 start = ((start - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
126 if (end > vma->vm_end)
127 end = vma->vm_end;
128 end = ((end - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
129
Wu Fengguangf7e839d2009-06-16 15:31:20 -0700130 force_page_cache_readahead(file->f_mapping, file, start, end - start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 return 0;
132}
133
134/*
135 * Application no longer needs these pages. If the pages are dirty,
136 * it's OK to just throw them away. The app will be more careful about
137 * data it wants to keep. Be sure to free swap resources too. The
Fernando Luis Vazquez Cao7e6cbea2008-07-29 22:33:39 -0700138 * zap_page_range call sets things up for shrink_active_list to actually free
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 * these pages later if no one else has touched them in the meantime,
140 * although we could add these pages to a global reuse list for
Fernando Luis Vazquez Cao7e6cbea2008-07-29 22:33:39 -0700141 * shrink_active_list to pick up before reclaiming other pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 *
143 * NB: This interface discards data rather than pushes it out to swap,
144 * as some implementations do. This has performance implications for
145 * applications like large transactional databases which want to discard
146 * pages in anonymous maps after committing to backing store the data
147 * that was kept in them. There is no reason to write this data out to
148 * the swap area if the application is discarding it.
149 *
150 * An interface that causes the system to free clean pages and flush
151 * dirty pages is already available as msync(MS_INVALIDATE).
152 */
153static long madvise_dontneed(struct vm_area_struct * vma,
Prasanna Meda05b74382005-06-21 17:14:37 -0700154 struct vm_area_struct ** prev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 unsigned long start, unsigned long end)
156{
Prasanna Meda05b74382005-06-21 17:14:37 -0700157 *prev = vma;
Linus Torvalds6aab3412005-11-28 14:34:23 -0800158 if (vma->vm_flags & (VM_LOCKED|VM_HUGETLB|VM_PFNMAP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return -EINVAL;
160
161 if (unlikely(vma->vm_flags & VM_NONLINEAR)) {
162 struct zap_details details = {
163 .nonlinear_vma = vma,
164 .last_index = ULONG_MAX,
165 };
166 zap_page_range(vma, start, end - start, &details);
167 } else
168 zap_page_range(vma, start, end - start, NULL);
169 return 0;
170}
171
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800172/*
173 * Application wants to free up the pages and associated backing store.
174 * This is effectively punching a hole into the middle of a file.
175 *
176 * NOTE: Currently, only shmfs/tmpfs is supported for this operation.
177 * Other filesystems return -ENOSYS.
178 */
179static long madvise_remove(struct vm_area_struct *vma,
Nick Piggin00e9fa22007-03-16 13:38:10 -0800180 struct vm_area_struct **prev,
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800181 unsigned long start, unsigned long end)
182{
183 struct address_space *mapping;
Hugh Dickins90ed52e2007-03-29 01:20:38 -0700184 loff_t offset, endoff;
185 int error;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800186
Hugh Dickins90ed52e2007-03-29 01:20:38 -0700187 *prev = NULL; /* tell sys_madvise we drop mmap_sem */
Nick Piggin00e9fa22007-03-16 13:38:10 -0800188
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800189 if (vma->vm_flags & (VM_LOCKED|VM_NONLINEAR|VM_HUGETLB))
190 return -EINVAL;
191
192 if (!vma->vm_file || !vma->vm_file->f_mapping
193 || !vma->vm_file->f_mapping->host) {
194 return -EINVAL;
195 }
196
Hugh Dickins69cf0fa2006-04-17 22:46:32 +0100197 if ((vma->vm_flags & (VM_SHARED|VM_WRITE)) != (VM_SHARED|VM_WRITE))
198 return -EACCES;
199
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800200 mapping = vma->vm_file->f_mapping;
201
202 offset = (loff_t)(start - vma->vm_start)
203 + ((loff_t)vma->vm_pgoff << PAGE_SHIFT);
204 endoff = (loff_t)(end - vma->vm_start - 1)
205 + ((loff_t)vma->vm_pgoff << PAGE_SHIFT);
Hugh Dickins90ed52e2007-03-29 01:20:38 -0700206
207 /* vmtruncate_range needs to take i_mutex and i_alloc_sem */
Nick Piggin0a27a142007-05-06 14:49:53 -0700208 up_read(&current->mm->mmap_sem);
Hugh Dickins90ed52e2007-03-29 01:20:38 -0700209 error = vmtruncate_range(mapping->host, offset, endoff);
Nick Piggin0a27a142007-05-06 14:49:53 -0700210 down_read(&current->mm->mmap_sem);
Hugh Dickins90ed52e2007-03-29 01:20:38 -0700211 return error;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800212}
213
suzuki165cd402005-07-27 11:43:59 -0700214static long
215madvise_vma(struct vm_area_struct *vma, struct vm_area_struct **prev,
216 unsigned long start, unsigned long end, int behavior)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 switch (behavior) {
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800219 case MADV_REMOVE:
Hugh Dickins3866ea92009-09-21 17:01:52 -0700220 return madvise_remove(vma, prev, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 case MADV_WILLNEED:
Hugh Dickins3866ea92009-09-21 17:01:52 -0700222 return madvise_willneed(vma, prev, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 case MADV_DONTNEED:
Hugh Dickins3866ea92009-09-21 17:01:52 -0700224 return madvise_dontneed(vma, prev, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 default:
Hugh Dickins3866ea92009-09-21 17:01:52 -0700226 return madvise_behavior(vma, prev, start, end, behavior);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
Nick Piggin75927af2009-06-16 15:32:38 -0700230static int
231madvise_behavior_valid(int behavior)
232{
233 switch (behavior) {
234 case MADV_DOFORK:
235 case MADV_DONTFORK:
236 case MADV_NORMAL:
237 case MADV_SEQUENTIAL:
238 case MADV_RANDOM:
239 case MADV_REMOVE:
240 case MADV_WILLNEED:
241 case MADV_DONTNEED:
242 return 1;
243
244 default:
245 return 0;
246 }
247}
Hugh Dickins3866ea92009-09-21 17:01:52 -0700248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249/*
250 * The madvise(2) system call.
251 *
252 * Applications can use madvise() to advise the kernel how it should
253 * handle paging I/O in this VM area. The idea is to help the kernel
254 * use appropriate read-ahead and caching techniques. The information
255 * provided is advisory only, and can be safely disregarded by the
256 * kernel without affecting the correct operation of the application.
257 *
258 * behavior values:
259 * MADV_NORMAL - the default behavior is to read clusters. This
260 * results in some read-ahead and read-behind.
261 * MADV_RANDOM - the system should read the minimum amount of data
262 * on any access, since it is unlikely that the appli-
263 * cation will need more than what it asks for.
264 * MADV_SEQUENTIAL - pages in the given range will probably be accessed
265 * once, so they can be aggressively read ahead, and
266 * can be freed soon after they are accessed.
267 * MADV_WILLNEED - the application is notifying the system to read
268 * some pages ahead.
269 * MADV_DONTNEED - the application is finished with the given range,
270 * so the kernel can free resources associated with it.
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800271 * MADV_REMOVE - the application wants to free up the given range of
272 * pages and associated backing store.
Hugh Dickins3866ea92009-09-21 17:01:52 -0700273 * MADV_DONTFORK - omit this area from child's address space when forking:
274 * typically, to avoid COWing pages pinned by get_user_pages().
275 * MADV_DOFORK - cancel MADV_DONTFORK: no longer omit this area when forking.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 *
277 * return values:
278 * zero - success
279 * -EINVAL - start + len < 0, start is not page-aligned,
280 * "behavior" is not a valid value, or application
281 * is attempting to release locked or shared pages.
282 * -ENOMEM - addresses in the specified range are not currently
283 * mapped, or are outside the AS of the process.
284 * -EIO - an I/O error occurred while paging in data.
285 * -EBADF - map exists, but area maps something that isn't a file.
286 * -EAGAIN - a kernel resource was temporarily unavailable.
287 */
Heiko Carstens3480b252009-01-14 14:14:16 +0100288SYSCALL_DEFINE3(madvise, unsigned long, start, size_t, len_in, int, behavior)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Prasanna Meda05b74382005-06-21 17:14:37 -0700290 unsigned long end, tmp;
291 struct vm_area_struct * vma, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 int unmapped_error = 0;
293 int error = -EINVAL;
Jason Baronf7977792007-07-15 23:38:21 -0700294 int write;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 size_t len;
296
Nick Piggin75927af2009-06-16 15:32:38 -0700297 if (!madvise_behavior_valid(behavior))
298 return error;
299
Jason Baronf7977792007-07-15 23:38:21 -0700300 write = madvise_need_mmap_write(behavior);
301 if (write)
Nick Piggin0a27a142007-05-06 14:49:53 -0700302 down_write(&current->mm->mmap_sem);
303 else
304 down_read(&current->mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 if (start & ~PAGE_MASK)
307 goto out;
308 len = (len_in + ~PAGE_MASK) & PAGE_MASK;
309
310 /* Check to see whether len was rounded up from small -ve to zero */
311 if (len_in && !len)
312 goto out;
313
314 end = start + len;
315 if (end < start)
316 goto out;
317
318 error = 0;
319 if (end == start)
320 goto out;
321
322 /*
323 * If the interval [start,end) covers some unmapped address
324 * ranges, just ignore them, but return -ENOMEM at the end.
Prasanna Meda05b74382005-06-21 17:14:37 -0700325 * - different from the way of handling in mlock etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 */
Prasanna Meda05b74382005-06-21 17:14:37 -0700327 vma = find_vma_prev(current->mm, start, &prev);
Hugh Dickins836d5ff2005-09-03 15:54:53 -0700328 if (vma && start > vma->vm_start)
329 prev = vma;
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 for (;;) {
332 /* Still start < end. */
333 error = -ENOMEM;
334 if (!vma)
335 goto out;
336
Prasanna Meda05b74382005-06-21 17:14:37 -0700337 /* Here start < (end|vma->vm_end). */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if (start < vma->vm_start) {
339 unmapped_error = -ENOMEM;
340 start = vma->vm_start;
Prasanna Meda05b74382005-06-21 17:14:37 -0700341 if (start >= end)
342 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
344
Prasanna Meda05b74382005-06-21 17:14:37 -0700345 /* Here vma->vm_start <= start < (end|vma->vm_end) */
346 tmp = vma->vm_end;
347 if (end < tmp)
348 tmp = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Prasanna Meda05b74382005-06-21 17:14:37 -0700350 /* Here vma->vm_start <= start < tmp <= (end|vma->vm_end). */
351 error = madvise_vma(vma, &prev, start, tmp, behavior);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (error)
353 goto out;
Prasanna Meda05b74382005-06-21 17:14:37 -0700354 start = tmp;
Hugh Dickins90ed52e2007-03-29 01:20:38 -0700355 if (prev && start < prev->vm_end)
Prasanna Meda05b74382005-06-21 17:14:37 -0700356 start = prev->vm_end;
357 error = unmapped_error;
358 if (start >= end)
359 goto out;
Hugh Dickins90ed52e2007-03-29 01:20:38 -0700360 if (prev)
361 vma = prev->vm_next;
362 else /* madvise_remove dropped mmap_sem */
363 vma = find_vma(current->mm, start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365out:
Jason Baronf7977792007-07-15 23:38:21 -0700366 if (write)
Nick Piggin0a27a142007-05-06 14:49:53 -0700367 up_write(&current->mm->mmap_sem);
368 else
369 up_read(&current->mm->mmap_sem);
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return error;
372}