blob: d6378feb2950678f1799e7ffecac9630a2bb3996 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/mm/mlock.c
3 *
4 * (C) Copyright 1995 Linus Torvalds
5 * (C) Copyright 2002 Christoph Hellwig
6 */
7
Randy.Dunlapc59ede72006-01-11 12:17:46 -08008#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/mman.h>
10#include <linux/mm.h>
Nick Pigginb291f002008-10-18 20:26:44 -070011#include <linux/swap.h>
12#include <linux/swapops.h>
13#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/mempolicy.h>
15#include <linux/syscalls.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040016#include <linux/sched.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040017#include <linux/export.h>
Nick Pigginb291f002008-10-18 20:26:44 -070018#include <linux/rmap.h>
19#include <linux/mmzone.h>
20#include <linux/hugetlb.h>
21
22#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040024int can_do_mlock(void)
25{
26 if (capable(CAP_IPC_LOCK))
27 return 1;
Jiri Slaby59e99e52010-03-05 13:41:44 -080028 if (rlimit(RLIMIT_MEMLOCK) != 0)
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040029 return 1;
30 return 0;
31}
32EXPORT_SYMBOL(can_do_mlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Nick Pigginb291f002008-10-18 20:26:44 -070034/*
35 * Mlocked pages are marked with PageMlocked() flag for efficient testing
36 * in vmscan and, possibly, the fault path; and to support semi-accurate
37 * statistics.
38 *
39 * An mlocked page [PageMlocked(page)] is unevictable. As such, it will
40 * be placed on the LRU "unevictable" list, rather than the [in]active lists.
41 * The unevictable list is an LRU sibling list to the [in]active lists.
42 * PageUnevictable is set to indicate the unevictable state.
43 *
44 * When lazy mlocking via vmscan, it is important to ensure that the
45 * vma's VM_LOCKED status is not concurrently being modified, otherwise we
46 * may have mlocked a page that is being munlocked. So lazy mlock must take
47 * the mmap_sem for read, and verify that the vma really is locked
48 * (see mm/rmap.c).
49 */
50
51/*
52 * LRU accounting for clear_page_mlock()
53 */
Hugh Dickinse6c509f2012-10-08 16:33:19 -070054void clear_page_mlock(struct page *page)
Nick Pigginb291f002008-10-18 20:26:44 -070055{
Hugh Dickinse6c509f2012-10-08 16:33:19 -070056 if (!TestClearPageMlocked(page))
Nick Pigginb291f002008-10-18 20:26:44 -070057 return;
Nick Pigginb291f002008-10-18 20:26:44 -070058
David Rientjes8449d212012-10-08 16:34:06 -070059 mod_zone_page_state(page_zone(page), NR_MLOCK,
60 -hpage_nr_pages(page));
Nick Piggin5344b7e2008-10-18 20:26:51 -070061 count_vm_event(UNEVICTABLE_PGCLEARED);
Nick Pigginb291f002008-10-18 20:26:44 -070062 if (!isolate_lru_page(page)) {
63 putback_lru_page(page);
64 } else {
65 /*
KOSAKI Motohiro8891d6d2008-11-12 13:26:53 -080066 * We lost the race. the page already moved to evictable list.
Nick Pigginb291f002008-10-18 20:26:44 -070067 */
KOSAKI Motohiro8891d6d2008-11-12 13:26:53 -080068 if (PageUnevictable(page))
Nick Piggin5344b7e2008-10-18 20:26:51 -070069 count_vm_event(UNEVICTABLE_PGSTRANDED);
Nick Pigginb291f002008-10-18 20:26:44 -070070 }
71}
72
73/*
74 * Mark page as mlocked if not already.
75 * If page on LRU, isolate and putback to move to unevictable list.
76 */
77void mlock_vma_page(struct page *page)
78{
79 BUG_ON(!PageLocked(page));
80
Nick Piggin5344b7e2008-10-18 20:26:51 -070081 if (!TestSetPageMlocked(page)) {
David Rientjes8449d212012-10-08 16:34:06 -070082 mod_zone_page_state(page_zone(page), NR_MLOCK,
83 hpage_nr_pages(page));
Nick Piggin5344b7e2008-10-18 20:26:51 -070084 count_vm_event(UNEVICTABLE_PGMLOCKED);
85 if (!isolate_lru_page(page))
86 putback_lru_page(page);
87 }
Nick Pigginb291f002008-10-18 20:26:44 -070088}
89
Lee Schermerhorn6927c1d2009-12-14 17:59:55 -080090/**
91 * munlock_vma_page - munlock a vma page
92 * @page - page to be unlocked
Nick Pigginb291f002008-10-18 20:26:44 -070093 *
Lee Schermerhorn6927c1d2009-12-14 17:59:55 -080094 * called from munlock()/munmap() path with page supposedly on the LRU.
95 * When we munlock a page, because the vma where we found the page is being
96 * munlock()ed or munmap()ed, we want to check whether other vmas hold the
97 * page locked so that we can leave it on the unevictable lru list and not
98 * bother vmscan with it. However, to walk the page's rmap list in
99 * try_to_munlock() we must isolate the page from the LRU. If some other
100 * task has removed the page from the LRU, we won't be able to do that.
101 * So we clear the PageMlocked as we might not get another chance. If we
102 * can't isolate the page, we leave it for putback_lru_page() and vmscan
103 * [page_referenced()/try_to_unmap()] to deal with.
Nick Pigginb291f002008-10-18 20:26:44 -0700104 */
Hugh Dickins73848b42009-12-14 17:59:22 -0800105void munlock_vma_page(struct page *page)
Nick Pigginb291f002008-10-18 20:26:44 -0700106{
107 BUG_ON(!PageLocked(page));
108
Nick Piggin5344b7e2008-10-18 20:26:51 -0700109 if (TestClearPageMlocked(page)) {
David Rientjes8449d212012-10-08 16:34:06 -0700110 mod_zone_page_state(page_zone(page), NR_MLOCK,
111 -hpage_nr_pages(page));
Nick Piggin5344b7e2008-10-18 20:26:51 -0700112 if (!isolate_lru_page(page)) {
Hugh Dickins3d470fc2011-10-31 17:09:43 -0700113 int ret = SWAP_AGAIN;
114
115 /*
116 * Optimization: if the page was mapped just once,
117 * that's our mapping and we don't need to check all the
118 * other vmas.
119 */
120 if (page_mapcount(page) > 1)
121 ret = try_to_munlock(page);
Nick Piggin5344b7e2008-10-18 20:26:51 -0700122 /*
123 * did try_to_unlock() succeed or punt?
124 */
Hugh Dickins53f79ac2009-12-14 17:58:58 -0800125 if (ret != SWAP_MLOCK)
Nick Piggin5344b7e2008-10-18 20:26:51 -0700126 count_vm_event(UNEVICTABLE_PGMUNLOCKED);
127
128 putback_lru_page(page);
129 } else {
130 /*
Lee Schermerhorn6927c1d2009-12-14 17:59:55 -0800131 * Some other task has removed the page from the LRU.
132 * putback_lru_page() will take care of removing the
133 * page from the unevictable list, if necessary.
134 * vmscan [page_referenced()] will move the page back
135 * to the unevictable list if some other vma has it
136 * mlocked.
Nick Piggin5344b7e2008-10-18 20:26:51 -0700137 */
138 if (PageUnevictable(page))
139 count_vm_event(UNEVICTABLE_PGSTRANDED);
140 else
141 count_vm_event(UNEVICTABLE_PGMUNLOCKED);
142 }
Nick Pigginb291f002008-10-18 20:26:44 -0700143 }
144}
145
Rik van Rielba470de2008-10-18 20:26:50 -0700146/**
Hugh Dickins408e82b2009-09-21 17:03:23 -0700147 * __mlock_vma_pages_range() - mlock a range of pages in the vma.
Rik van Rielba470de2008-10-18 20:26:50 -0700148 * @vma: target vma
149 * @start: start address
150 * @end: end address
Nick Pigginb291f002008-10-18 20:26:44 -0700151 *
Hugh Dickins408e82b2009-09-21 17:03:23 -0700152 * This takes care of making the pages present too.
Nick Pigginb291f002008-10-18 20:26:44 -0700153 *
Rik van Rielba470de2008-10-18 20:26:50 -0700154 * return 0 on success, negative error code on error.
155 *
156 * vma->vm_mm->mmap_sem must be held for at least read.
Nick Pigginb291f002008-10-18 20:26:44 -0700157 */
Michel Lespinassecea10a12013-02-22 16:32:44 -0800158long __mlock_vma_pages_range(struct vm_area_struct *vma,
159 unsigned long start, unsigned long end, int *nonblocking)
Nick Pigginb291f002008-10-18 20:26:44 -0700160{
161 struct mm_struct *mm = vma->vm_mm;
162 unsigned long addr = start;
Nick Pigginb291f002008-10-18 20:26:44 -0700163 int nr_pages = (end - start) / PAGE_SIZE;
Hugh Dickins408e82b2009-09-21 17:03:23 -0700164 int gup_flags;
Nick Pigginb291f002008-10-18 20:26:44 -0700165
Rik van Rielba470de2008-10-18 20:26:50 -0700166 VM_BUG_ON(start & ~PAGE_MASK);
167 VM_BUG_ON(end & ~PAGE_MASK);
168 VM_BUG_ON(start < vma->vm_start);
169 VM_BUG_ON(end > vma->vm_end);
Hugh Dickins408e82b2009-09-21 17:03:23 -0700170 VM_BUG_ON(!rwsem_is_locked(&mm->mmap_sem));
Rik van Rielba470de2008-10-18 20:26:50 -0700171
Linus Torvaldsa1fde082011-05-04 21:30:28 -0700172 gup_flags = FOLL_TOUCH | FOLL_MLOCK;
Michel Lespinasse5ecfda02011-01-13 15:46:09 -0800173 /*
174 * We want to touch writable mappings with a write fault in order
175 * to break COW, except for shared mappings because these don't COW
176 * and we would not want to dirty them for nothing.
177 */
178 if ((vma->vm_flags & (VM_WRITE | VM_SHARED)) == VM_WRITE)
Hugh Dickins58fa8792009-09-21 17:03:31 -0700179 gup_flags |= FOLL_WRITE;
Nick Pigginb291f002008-10-18 20:26:44 -0700180
Michel Lespinassefdf4c582011-01-31 17:03:41 -0800181 /*
182 * We want mlock to succeed for regions that have any permissions
183 * other than PROT_NONE.
184 */
185 if (vma->vm_flags & (VM_READ | VM_WRITE | VM_EXEC))
186 gup_flags |= FOLL_FORCE;
187
Michel Lespinasse53a77062011-01-13 15:46:14 -0800188 return __get_user_pages(current, mm, addr, nr_pages, gup_flags,
189 NULL, NULL, nonblocking);
Lee Schermerhorn9978ad52008-10-18 20:26:56 -0700190}
191
192/*
193 * convert get_user_pages() return value to posix mlock() error
194 */
195static int __mlock_posix_error_return(long retval)
196{
197 if (retval == -EFAULT)
198 retval = -ENOMEM;
199 else if (retval == -ENOMEM)
200 retval = -EAGAIN;
201 return retval;
Nick Pigginb291f002008-10-18 20:26:44 -0700202}
203
Nick Pigginb291f002008-10-18 20:26:44 -0700204/*
Rik van Rielba470de2008-10-18 20:26:50 -0700205 * munlock_vma_pages_range() - munlock all pages in the vma range.'
206 * @vma - vma containing range to be munlock()ed.
207 * @start - start address in @vma of the range
208 * @end - end of range in @vma.
209 *
210 * For mremap(), munmap() and exit().
211 *
212 * Called with @vma VM_LOCKED.
213 *
214 * Returns with VM_LOCKED cleared. Callers must be prepared to
215 * deal with this.
216 *
217 * We don't save and restore VM_LOCKED here because pages are
218 * still on lru. In unmap path, pages might be scanned by reclaim
219 * and re-mlocked by try_to_{munlock|unmap} before we unmap and
220 * free them. This will result in freeing mlocked pages.
Nick Pigginb291f002008-10-18 20:26:44 -0700221 */
Rik van Rielba470de2008-10-18 20:26:50 -0700222void munlock_vma_pages_range(struct vm_area_struct *vma,
Hugh Dickins408e82b2009-09-21 17:03:23 -0700223 unsigned long start, unsigned long end)
Nick Pigginb291f002008-10-18 20:26:44 -0700224{
Hugh Dickins408e82b2009-09-21 17:03:23 -0700225 unsigned long addr;
226
227 lru_add_drain();
Nick Pigginb291f002008-10-18 20:26:44 -0700228 vma->vm_flags &= ~VM_LOCKED;
Hugh Dickins408e82b2009-09-21 17:03:23 -0700229
230 for (addr = start; addr < end; addr += PAGE_SIZE) {
Hugh Dickins6e919712009-09-21 17:03:32 -0700231 struct page *page;
232 /*
233 * Although FOLL_DUMP is intended for get_dump_page(),
234 * it just so happens that its special treatment of the
235 * ZERO_PAGE (returning an error instead of doing get_page)
236 * suits munlock very well (and if somehow an abnormal page
237 * has sneaked into the range, we won't oops here: great).
238 */
239 page = follow_page(vma, addr, FOLL_GET | FOLL_DUMP);
240 if (page && !IS_ERR(page)) {
Hugh Dickins408e82b2009-09-21 17:03:23 -0700241 lock_page(page);
Hugh Dickinse6c509f2012-10-08 16:33:19 -0700242 munlock_vma_page(page);
Hugh Dickins408e82b2009-09-21 17:03:23 -0700243 unlock_page(page);
244 put_page(page);
245 }
246 cond_resched();
247 }
Nick Pigginb291f002008-10-18 20:26:44 -0700248}
249
250/*
251 * mlock_fixup - handle mlock[all]/munlock[all] requests.
252 *
253 * Filters out "special" vmas -- VM_LOCKED never gets set for these, and
254 * munlock is a no-op. However, for some special vmas, we go ahead and
Michel Lespinassecea10a12013-02-22 16:32:44 -0800255 * populate the ptes.
Nick Pigginb291f002008-10-18 20:26:44 -0700256 *
257 * For vmas that pass the filters, merge/split as appropriate.
258 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259static int mlock_fixup(struct vm_area_struct *vma, struct vm_area_struct **prev,
KOSAKI Motohiroca16d142011-05-26 19:16:19 +0900260 unsigned long start, unsigned long end, vm_flags_t newflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Nick Pigginb291f002008-10-18 20:26:44 -0700262 struct mm_struct *mm = vma->vm_mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 pgoff_t pgoff;
Nick Pigginb291f002008-10-18 20:26:44 -0700264 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 int ret = 0;
KOSAKI Motohiroca16d142011-05-26 19:16:19 +0900266 int lock = !!(newflags & VM_LOCKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Michel Lespinassefed067d2011-01-13 15:46:10 -0800268 if (newflags == vma->vm_flags || (vma->vm_flags & VM_SPECIAL) ||
Stephen Wilson31db58b2011-03-13 15:49:15 -0400269 is_vm_hugetlb_page(vma) || vma == get_gate_vma(current->mm))
Nick Pigginb291f002008-10-18 20:26:44 -0700270 goto out; /* don't set VM_LOCKED, don't count */
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 pgoff = vma->vm_pgoff + ((start - vma->vm_start) >> PAGE_SHIFT);
273 *prev = vma_merge(mm, *prev, start, end, newflags, vma->anon_vma,
274 vma->vm_file, pgoff, vma_policy(vma));
275 if (*prev) {
276 vma = *prev;
277 goto success;
278 }
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (start != vma->vm_start) {
281 ret = split_vma(mm, vma, start, 1);
282 if (ret)
283 goto out;
284 }
285
286 if (end != vma->vm_end) {
287 ret = split_vma(mm, vma, end, 0);
288 if (ret)
289 goto out;
290 }
291
292success:
293 /*
Nick Pigginb291f002008-10-18 20:26:44 -0700294 * Keep track of amount of locked VM.
295 */
296 nr_pages = (end - start) >> PAGE_SHIFT;
297 if (!lock)
298 nr_pages = -nr_pages;
299 mm->locked_vm += nr_pages;
300
301 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 * vm_flags is protected by the mmap_sem held in write mode.
303 * It's okay if try_to_unmap_one unmaps a page just after we
Nick Pigginb291f002008-10-18 20:26:44 -0700304 * set VM_LOCKED, __mlock_vma_pages_range will bring it back.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Michel Lespinassefed067d2011-01-13 15:46:10 -0800307 if (lock)
Hugh Dickins408e82b2009-09-21 17:03:23 -0700308 vma->vm_flags = newflags;
Michel Lespinassefed067d2011-01-13 15:46:10 -0800309 else
Hugh Dickins408e82b2009-09-21 17:03:23 -0700310 munlock_vma_pages_range(vma, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312out:
Nick Pigginb291f002008-10-18 20:26:44 -0700313 *prev = vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return ret;
315}
316
317static int do_mlock(unsigned long start, size_t len, int on)
318{
319 unsigned long nstart, end, tmp;
320 struct vm_area_struct * vma, * prev;
321 int error;
322
Michel Lespinassefed067d2011-01-13 15:46:10 -0800323 VM_BUG_ON(start & ~PAGE_MASK);
324 VM_BUG_ON(len != PAGE_ALIGN(len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 end = start + len;
326 if (end < start)
327 return -EINVAL;
328 if (end == start)
329 return 0;
Linus Torvalds097d5912012-03-06 18:23:36 -0800330 vma = find_vma(current->mm, start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (!vma || vma->vm_start > start)
332 return -ENOMEM;
333
Linus Torvalds097d5912012-03-06 18:23:36 -0800334 prev = vma->vm_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 if (start > vma->vm_start)
336 prev = vma;
337
338 for (nstart = start ; ; ) {
KOSAKI Motohiroca16d142011-05-26 19:16:19 +0900339 vm_flags_t newflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 /* Here we know that vma->vm_start <= nstart < vma->vm_end. */
342
Michel Lespinasse18693052013-02-22 16:32:46 -0800343 newflags = vma->vm_flags & ~VM_LOCKED;
344 if (on)
345 newflags |= VM_LOCKED | VM_POPULATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 tmp = vma->vm_end;
348 if (tmp > end)
349 tmp = end;
350 error = mlock_fixup(vma, &prev, nstart, tmp, newflags);
351 if (error)
352 break;
353 nstart = tmp;
354 if (nstart < prev->vm_end)
355 nstart = prev->vm_end;
356 if (nstart >= end)
357 break;
358
359 vma = prev->vm_next;
360 if (!vma || vma->vm_start != nstart) {
361 error = -ENOMEM;
362 break;
363 }
364 }
365 return error;
366}
367
Michel Lespinassebebeb3d2013-02-22 16:32:37 -0800368/*
369 * __mm_populate - populate and/or mlock pages within a range of address space.
370 *
371 * This is used to implement mlock() and the MAP_POPULATE / MAP_LOCKED mmap
372 * flags. VMAs must be already marked with the desired vm_flags, and
373 * mmap_sem must not be held.
374 */
375int __mm_populate(unsigned long start, unsigned long len, int ignore_errors)
Michel Lespinassefed067d2011-01-13 15:46:10 -0800376{
377 struct mm_struct *mm = current->mm;
378 unsigned long end, nstart, nend;
379 struct vm_area_struct *vma = NULL;
Michel Lespinasse53a77062011-01-13 15:46:14 -0800380 int locked = 0;
Michel Lespinassefed067d2011-01-13 15:46:10 -0800381 int ret = 0;
382
383 VM_BUG_ON(start & ~PAGE_MASK);
384 VM_BUG_ON(len != PAGE_ALIGN(len));
385 end = start + len;
386
Michel Lespinassefed067d2011-01-13 15:46:10 -0800387 for (nstart = start; nstart < end; nstart = nend) {
388 /*
389 * We want to fault in pages for [nstart; end) address range.
390 * Find first corresponding VMA.
391 */
Michel Lespinasse53a77062011-01-13 15:46:14 -0800392 if (!locked) {
393 locked = 1;
394 down_read(&mm->mmap_sem);
Michel Lespinassefed067d2011-01-13 15:46:10 -0800395 vma = find_vma(mm, nstart);
Michel Lespinasse53a77062011-01-13 15:46:14 -0800396 } else if (nstart >= vma->vm_end)
Michel Lespinassefed067d2011-01-13 15:46:10 -0800397 vma = vma->vm_next;
398 if (!vma || vma->vm_start >= end)
399 break;
400 /*
401 * Set [nstart; nend) to intersection of desired address
402 * range with the first VMA. Also, skip undesirable VMA types.
403 */
404 nend = min(end, vma->vm_end);
Michel Lespinasse18693052013-02-22 16:32:46 -0800405 if ((vma->vm_flags & (VM_IO | VM_PFNMAP | VM_POPULATE)) !=
406 VM_POPULATE)
Michel Lespinassefed067d2011-01-13 15:46:10 -0800407 continue;
408 if (nstart < vma->vm_start)
409 nstart = vma->vm_start;
410 /*
Michel Lespinasse53a77062011-01-13 15:46:14 -0800411 * Now fault in a range of pages. __mlock_vma_pages_range()
412 * double checks the vma flags, so that it won't mlock pages
413 * if the vma was already munlocked.
Michel Lespinassefed067d2011-01-13 15:46:10 -0800414 */
Michel Lespinasse53a77062011-01-13 15:46:14 -0800415 ret = __mlock_vma_pages_range(vma, nstart, nend, &locked);
416 if (ret < 0) {
417 if (ignore_errors) {
418 ret = 0;
419 continue; /* continue at next VMA */
420 }
Michel Lespinasse5fdb2002011-01-13 15:46:12 -0800421 ret = __mlock_posix_error_return(ret);
422 break;
423 }
Michel Lespinasse53a77062011-01-13 15:46:14 -0800424 nend = nstart + ret * PAGE_SIZE;
425 ret = 0;
Michel Lespinassefed067d2011-01-13 15:46:10 -0800426 }
Michel Lespinasse53a77062011-01-13 15:46:14 -0800427 if (locked)
428 up_read(&mm->mmap_sem);
Michel Lespinassefed067d2011-01-13 15:46:10 -0800429 return ret; /* 0 or negative error code */
430}
431
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100432SYSCALL_DEFINE2(mlock, unsigned long, start, size_t, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
434 unsigned long locked;
435 unsigned long lock_limit;
436 int error = -ENOMEM;
437
438 if (!can_do_mlock())
439 return -EPERM;
440
KOSAKI Motohiro8891d6d2008-11-12 13:26:53 -0800441 lru_add_drain_all(); /* flush pagevec */
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 down_write(&current->mm->mmap_sem);
444 len = PAGE_ALIGN(len + (start & ~PAGE_MASK));
445 start &= PAGE_MASK;
446
447 locked = len >> PAGE_SHIFT;
448 locked += current->mm->locked_vm;
449
Jiri Slaby59e99e52010-03-05 13:41:44 -0800450 lock_limit = rlimit(RLIMIT_MEMLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 lock_limit >>= PAGE_SHIFT;
452
453 /* check against resource limits */
454 if ((locked <= lock_limit) || capable(CAP_IPC_LOCK))
455 error = do_mlock(start, len, 1);
456 up_write(&current->mm->mmap_sem);
Michel Lespinassefed067d2011-01-13 15:46:10 -0800457 if (!error)
Michel Lespinassebebeb3d2013-02-22 16:32:37 -0800458 error = __mm_populate(start, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 return error;
460}
461
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100462SYSCALL_DEFINE2(munlock, unsigned long, start, size_t, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464 int ret;
465
466 down_write(&current->mm->mmap_sem);
467 len = PAGE_ALIGN(len + (start & ~PAGE_MASK));
468 start &= PAGE_MASK;
469 ret = do_mlock(start, len, 0);
470 up_write(&current->mm->mmap_sem);
471 return ret;
472}
473
474static int do_mlockall(int flags)
475{
476 struct vm_area_struct * vma, * prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 if (flags & MCL_FUTURE)
Michel Lespinasse18693052013-02-22 16:32:46 -0800479 current->mm->def_flags |= VM_LOCKED | VM_POPULATE;
Gerald Schaefer9977f0f2013-02-12 13:46:20 -0800480 else
Michel Lespinasse18693052013-02-22 16:32:46 -0800481 current->mm->def_flags &= ~(VM_LOCKED | VM_POPULATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 if (flags == MCL_FUTURE)
483 goto out;
484
485 for (vma = current->mm->mmap; vma ; vma = prev->vm_next) {
KOSAKI Motohiroca16d142011-05-26 19:16:19 +0900486 vm_flags_t newflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Michel Lespinasse18693052013-02-22 16:32:46 -0800488 newflags = vma->vm_flags & ~VM_LOCKED;
489 if (flags & MCL_CURRENT)
490 newflags |= VM_LOCKED | VM_POPULATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 /* Ignore errors */
493 mlock_fixup(vma, &prev, vma->vm_start, vma->vm_end, newflags);
494 }
495out:
496 return 0;
497}
498
Heiko Carstens3480b252009-01-14 14:14:16 +0100499SYSCALL_DEFINE1(mlockall, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
501 unsigned long lock_limit;
502 int ret = -EINVAL;
503
504 if (!flags || (flags & ~(MCL_CURRENT | MCL_FUTURE)))
505 goto out;
506
507 ret = -EPERM;
508 if (!can_do_mlock())
509 goto out;
510
Christoph Lameterdf9d6982011-10-31 17:09:35 -0700511 if (flags & MCL_CURRENT)
512 lru_add_drain_all(); /* flush pagevec */
KOSAKI Motohiro8891d6d2008-11-12 13:26:53 -0800513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 down_write(&current->mm->mmap_sem);
515
Jiri Slaby59e99e52010-03-05 13:41:44 -0800516 lock_limit = rlimit(RLIMIT_MEMLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 lock_limit >>= PAGE_SHIFT;
518
519 ret = -ENOMEM;
520 if (!(flags & MCL_CURRENT) || (current->mm->total_vm <= lock_limit) ||
521 capable(CAP_IPC_LOCK))
522 ret = do_mlockall(flags);
523 up_write(&current->mm->mmap_sem);
Michel Lespinassebebeb3d2013-02-22 16:32:37 -0800524 if (!ret && (flags & MCL_CURRENT))
525 mm_populate(0, TASK_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526out:
527 return ret;
528}
529
Heiko Carstens3480b252009-01-14 14:14:16 +0100530SYSCALL_DEFINE0(munlockall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
532 int ret;
533
534 down_write(&current->mm->mmap_sem);
535 ret = do_mlockall(0);
536 up_write(&current->mm->mmap_sem);
537 return ret;
538}
539
540/*
541 * Objects with different lifetime than processes (SHM_LOCK and SHM_HUGETLB
542 * shm segments) get accounted against the user_struct instead.
543 */
544static DEFINE_SPINLOCK(shmlock_user_lock);
545
546int user_shm_lock(size_t size, struct user_struct *user)
547{
548 unsigned long lock_limit, locked;
549 int allowed = 0;
550
551 locked = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
Jiri Slaby59e99e52010-03-05 13:41:44 -0800552 lock_limit = rlimit(RLIMIT_MEMLOCK);
Herbert van den Bergh5ed44a42007-07-15 23:38:25 -0700553 if (lock_limit == RLIM_INFINITY)
554 allowed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 lock_limit >>= PAGE_SHIFT;
556 spin_lock(&shmlock_user_lock);
Herbert van den Bergh5ed44a42007-07-15 23:38:25 -0700557 if (!allowed &&
558 locked + user->locked_shm > lock_limit && !capable(CAP_IPC_LOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 goto out;
560 get_uid(user);
561 user->locked_shm += locked;
562 allowed = 1;
563out:
564 spin_unlock(&shmlock_user_lock);
565 return allowed;
566}
567
568void user_shm_unlock(size_t size, struct user_struct *user)
569{
570 spin_lock(&shmlock_user_lock);
571 user->locked_shm -= (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
572 spin_unlock(&shmlock_user_lock);
573 free_uid(user);
574}