drbd: Fix build error when CONFIG_CRYPTO_HMAC is not set
[linux-block.git] / mm / mlock.c
CommitLineData
1da177e4
LT
1/*
2 * linux/mm/mlock.c
3 *
4 * (C) Copyright 1995 Linus Torvalds
5 * (C) Copyright 2002 Christoph Hellwig
6 */
7
c59ede7b 8#include <linux/capability.h>
1da177e4
LT
9#include <linux/mman.h>
10#include <linux/mm.h>
b291f000
NP
11#include <linux/swap.h>
12#include <linux/swapops.h>
13#include <linux/pagemap.h>
1da177e4
LT
14#include <linux/mempolicy.h>
15#include <linux/syscalls.h>
e8edc6e0 16#include <linux/sched.h>
b95f1b31 17#include <linux/export.h>
b291f000
NP
18#include <linux/rmap.h>
19#include <linux/mmzone.h>
20#include <linux/hugetlb.h>
21
22#include "internal.h"
1da177e4 23
e8edc6e0
AD
24int can_do_mlock(void)
25{
26 if (capable(CAP_IPC_LOCK))
27 return 1;
59e99e5b 28 if (rlimit(RLIMIT_MEMLOCK) != 0)
e8edc6e0
AD
29 return 1;
30 return 0;
31}
32EXPORT_SYMBOL(can_do_mlock);
1da177e4 33
b291f000
NP
34/*
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 */
e6c509f8 54void clear_page_mlock(struct page *page)
b291f000 55{
e6c509f8 56 if (!TestClearPageMlocked(page))
b291f000 57 return;
b291f000 58
8449d21f
DR
59 mod_zone_page_state(page_zone(page), NR_MLOCK,
60 -hpage_nr_pages(page));
5344b7e6 61 count_vm_event(UNEVICTABLE_PGCLEARED);
b291f000
NP
62 if (!isolate_lru_page(page)) {
63 putback_lru_page(page);
64 } else {
65 /*
8891d6da 66 * We lost the race. the page already moved to evictable list.
b291f000 67 */
8891d6da 68 if (PageUnevictable(page))
5344b7e6 69 count_vm_event(UNEVICTABLE_PGSTRANDED);
b291f000
NP
70 }
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
5344b7e6 81 if (!TestSetPageMlocked(page)) {
8449d21f
DR
82 mod_zone_page_state(page_zone(page), NR_MLOCK,
83 hpage_nr_pages(page));
5344b7e6
NP
84 count_vm_event(UNEVICTABLE_PGMLOCKED);
85 if (!isolate_lru_page(page))
86 putback_lru_page(page);
87 }
b291f000
NP
88}
89
6927c1dd
LS
90/**
91 * munlock_vma_page - munlock a vma page
92 * @page - page to be unlocked
b291f000 93 *
6927c1dd
LS
94 * 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.
b291f000 104 */
ff6a6da6 105unsigned int munlock_vma_page(struct page *page)
b291f000 106{
ff6a6da6
ML
107 unsigned int page_mask = 0;
108
b291f000
NP
109 BUG_ON(!PageLocked(page));
110
5344b7e6 111 if (TestClearPageMlocked(page)) {
ff6a6da6
ML
112 unsigned int nr_pages = hpage_nr_pages(page);
113 mod_zone_page_state(page_zone(page), NR_MLOCK, -nr_pages);
114 page_mask = nr_pages - 1;
5344b7e6 115 if (!isolate_lru_page(page)) {
3d470fc3
HD
116 int ret = SWAP_AGAIN;
117
118 /*
119 * Optimization: if the page was mapped just once,
120 * that's our mapping and we don't need to check all the
121 * other vmas.
122 */
123 if (page_mapcount(page) > 1)
124 ret = try_to_munlock(page);
5344b7e6
NP
125 /*
126 * did try_to_unlock() succeed or punt?
127 */
53f79acb 128 if (ret != SWAP_MLOCK)
5344b7e6
NP
129 count_vm_event(UNEVICTABLE_PGMUNLOCKED);
130
131 putback_lru_page(page);
132 } else {
133 /*
6927c1dd
LS
134 * Some other task has removed the page from the LRU.
135 * putback_lru_page() will take care of removing the
136 * page from the unevictable list, if necessary.
137 * vmscan [page_referenced()] will move the page back
138 * to the unevictable list if some other vma has it
139 * mlocked.
5344b7e6
NP
140 */
141 if (PageUnevictable(page))
142 count_vm_event(UNEVICTABLE_PGSTRANDED);
143 else
144 count_vm_event(UNEVICTABLE_PGMUNLOCKED);
145 }
b291f000 146 }
ff6a6da6
ML
147
148 return page_mask;
b291f000
NP
149}
150
ba470de4 151/**
408e82b7 152 * __mlock_vma_pages_range() - mlock a range of pages in the vma.
ba470de4
RR
153 * @vma: target vma
154 * @start: start address
155 * @end: end address
ba470de4 156 *
408e82b7 157 * This takes care of making the pages present too.
b291f000 158 *
ba470de4 159 * return 0 on success, negative error code on error.
b291f000 160 *
ba470de4 161 * vma->vm_mm->mmap_sem must be held for at least read.
b291f000 162 */
cea10a19
ML
163long __mlock_vma_pages_range(struct vm_area_struct *vma,
164 unsigned long start, unsigned long end, int *nonblocking)
b291f000
NP
165{
166 struct mm_struct *mm = vma->vm_mm;
28a35716 167 unsigned long nr_pages = (end - start) / PAGE_SIZE;
408e82b7 168 int gup_flags;
ba470de4
RR
169
170 VM_BUG_ON(start & ~PAGE_MASK);
171 VM_BUG_ON(end & ~PAGE_MASK);
172 VM_BUG_ON(start < vma->vm_start);
173 VM_BUG_ON(end > vma->vm_end);
408e82b7 174 VM_BUG_ON(!rwsem_is_locked(&mm->mmap_sem));
b291f000 175
a1fde08c 176 gup_flags = FOLL_TOUCH | FOLL_MLOCK;
5ecfda04
ML
177 /*
178 * We want to touch writable mappings with a write fault in order
179 * to break COW, except for shared mappings because these don't COW
180 * and we would not want to dirty them for nothing.
181 */
182 if ((vma->vm_flags & (VM_WRITE | VM_SHARED)) == VM_WRITE)
58fa879e 183 gup_flags |= FOLL_WRITE;
b291f000 184
fdf4c587
ML
185 /*
186 * We want mlock to succeed for regions that have any permissions
187 * other than PROT_NONE.
188 */
189 if (vma->vm_flags & (VM_READ | VM_WRITE | VM_EXEC))
190 gup_flags |= FOLL_FORCE;
191
4805b02e
JW
192 /*
193 * We made sure addr is within a VMA, so the following will
194 * not result in a stack expansion that recurses back here.
195 */
ff6a6da6 196 return __get_user_pages(current, mm, start, nr_pages, gup_flags,
53a7706d 197 NULL, NULL, nonblocking);
9978ad58
LS
198}
199
200/*
201 * convert get_user_pages() return value to posix mlock() error
202 */
203static int __mlock_posix_error_return(long retval)
204{
205 if (retval == -EFAULT)
206 retval = -ENOMEM;
207 else if (retval == -ENOMEM)
208 retval = -EAGAIN;
209 return retval;
b291f000
NP
210}
211
b291f000 212/*
ba470de4
RR
213 * munlock_vma_pages_range() - munlock all pages in the vma range.'
214 * @vma - vma containing range to be munlock()ed.
215 * @start - start address in @vma of the range
216 * @end - end of range in @vma.
217 *
218 * For mremap(), munmap() and exit().
219 *
220 * Called with @vma VM_LOCKED.
221 *
222 * Returns with VM_LOCKED cleared. Callers must be prepared to
223 * deal with this.
224 *
225 * We don't save and restore VM_LOCKED here because pages are
226 * still on lru. In unmap path, pages might be scanned by reclaim
227 * and re-mlocked by try_to_{munlock|unmap} before we unmap and
228 * free them. This will result in freeing mlocked pages.
b291f000 229 */
ba470de4 230void munlock_vma_pages_range(struct vm_area_struct *vma,
408e82b7 231 unsigned long start, unsigned long end)
b291f000
NP
232{
233 vma->vm_flags &= ~VM_LOCKED;
408e82b7 234
ff6a6da6 235 while (start < end) {
6e919717 236 struct page *page;
ff6a6da6
ML
237 unsigned int page_mask, page_increm;
238
6e919717
HD
239 /*
240 * Although FOLL_DUMP is intended for get_dump_page(),
241 * it just so happens that its special treatment of the
242 * ZERO_PAGE (returning an error instead of doing get_page)
243 * suits munlock very well (and if somehow an abnormal page
244 * has sneaked into the range, we won't oops here: great).
245 */
ff6a6da6
ML
246 page = follow_page_mask(vma, start, FOLL_GET | FOLL_DUMP,
247 &page_mask);
6e919717 248 if (page && !IS_ERR(page)) {
408e82b7 249 lock_page(page);
ff6a6da6
ML
250 lru_add_drain();
251 /*
252 * Any THP page found by follow_page_mask() may have
253 * gotten split before reaching munlock_vma_page(),
254 * so we need to recompute the page_mask here.
255 */
256 page_mask = munlock_vma_page(page);
408e82b7
HD
257 unlock_page(page);
258 put_page(page);
259 }
ff6a6da6
ML
260 page_increm = 1 + (~(start >> PAGE_SHIFT) & page_mask);
261 start += page_increm * PAGE_SIZE;
408e82b7
HD
262 cond_resched();
263 }
b291f000
NP
264}
265
266/*
267 * mlock_fixup - handle mlock[all]/munlock[all] requests.
268 *
269 * Filters out "special" vmas -- VM_LOCKED never gets set for these, and
270 * munlock is a no-op. However, for some special vmas, we go ahead and
cea10a19 271 * populate the ptes.
b291f000
NP
272 *
273 * For vmas that pass the filters, merge/split as appropriate.
274 */
1da177e4 275static int mlock_fixup(struct vm_area_struct *vma, struct vm_area_struct **prev,
ca16d140 276 unsigned long start, unsigned long end, vm_flags_t newflags)
1da177e4 277{
b291f000 278 struct mm_struct *mm = vma->vm_mm;
1da177e4 279 pgoff_t pgoff;
b291f000 280 int nr_pages;
1da177e4 281 int ret = 0;
ca16d140 282 int lock = !!(newflags & VM_LOCKED);
1da177e4 283
fed067da 284 if (newflags == vma->vm_flags || (vma->vm_flags & VM_SPECIAL) ||
31db58b3 285 is_vm_hugetlb_page(vma) || vma == get_gate_vma(current->mm))
b291f000
NP
286 goto out; /* don't set VM_LOCKED, don't count */
287
1da177e4
LT
288 pgoff = vma->vm_pgoff + ((start - vma->vm_start) >> PAGE_SHIFT);
289 *prev = vma_merge(mm, *prev, start, end, newflags, vma->anon_vma,
290 vma->vm_file, pgoff, vma_policy(vma));
291 if (*prev) {
292 vma = *prev;
293 goto success;
294 }
295
1da177e4
LT
296 if (start != vma->vm_start) {
297 ret = split_vma(mm, vma, start, 1);
298 if (ret)
299 goto out;
300 }
301
302 if (end != vma->vm_end) {
303 ret = split_vma(mm, vma, end, 0);
304 if (ret)
305 goto out;
306 }
307
308success:
b291f000
NP
309 /*
310 * Keep track of amount of locked VM.
311 */
312 nr_pages = (end - start) >> PAGE_SHIFT;
313 if (!lock)
314 nr_pages = -nr_pages;
315 mm->locked_vm += nr_pages;
316
1da177e4
LT
317 /*
318 * vm_flags is protected by the mmap_sem held in write mode.
319 * It's okay if try_to_unmap_one unmaps a page just after we
b291f000 320 * set VM_LOCKED, __mlock_vma_pages_range will bring it back.
1da177e4 321 */
1da177e4 322
fed067da 323 if (lock)
408e82b7 324 vma->vm_flags = newflags;
fed067da 325 else
408e82b7 326 munlock_vma_pages_range(vma, start, end);
1da177e4 327
1da177e4 328out:
b291f000 329 *prev = vma;
1da177e4
LT
330 return ret;
331}
332
333static int do_mlock(unsigned long start, size_t len, int on)
334{
335 unsigned long nstart, end, tmp;
336 struct vm_area_struct * vma, * prev;
337 int error;
338
fed067da
ML
339 VM_BUG_ON(start & ~PAGE_MASK);
340 VM_BUG_ON(len != PAGE_ALIGN(len));
1da177e4
LT
341 end = start + len;
342 if (end < start)
343 return -EINVAL;
344 if (end == start)
345 return 0;
097d5910 346 vma = find_vma(current->mm, start);
1da177e4
LT
347 if (!vma || vma->vm_start > start)
348 return -ENOMEM;
349
097d5910 350 prev = vma->vm_prev;
1da177e4
LT
351 if (start > vma->vm_start)
352 prev = vma;
353
354 for (nstart = start ; ; ) {
ca16d140 355 vm_flags_t newflags;
1da177e4
LT
356
357 /* Here we know that vma->vm_start <= nstart < vma->vm_end. */
358
18693050
ML
359 newflags = vma->vm_flags & ~VM_LOCKED;
360 if (on)
361 newflags |= VM_LOCKED | VM_POPULATE;
1da177e4
LT
362
363 tmp = vma->vm_end;
364 if (tmp > end)
365 tmp = end;
366 error = mlock_fixup(vma, &prev, nstart, tmp, newflags);
367 if (error)
368 break;
369 nstart = tmp;
370 if (nstart < prev->vm_end)
371 nstart = prev->vm_end;
372 if (nstart >= end)
373 break;
374
375 vma = prev->vm_next;
376 if (!vma || vma->vm_start != nstart) {
377 error = -ENOMEM;
378 break;
379 }
380 }
381 return error;
382}
383
bebeb3d6
ML
384/*
385 * __mm_populate - populate and/or mlock pages within a range of address space.
386 *
387 * This is used to implement mlock() and the MAP_POPULATE / MAP_LOCKED mmap
388 * flags. VMAs must be already marked with the desired vm_flags, and
389 * mmap_sem must not be held.
390 */
391int __mm_populate(unsigned long start, unsigned long len, int ignore_errors)
fed067da
ML
392{
393 struct mm_struct *mm = current->mm;
394 unsigned long end, nstart, nend;
395 struct vm_area_struct *vma = NULL;
53a7706d 396 int locked = 0;
28a35716 397 long ret = 0;
fed067da
ML
398
399 VM_BUG_ON(start & ~PAGE_MASK);
400 VM_BUG_ON(len != PAGE_ALIGN(len));
401 end = start + len;
402
fed067da
ML
403 for (nstart = start; nstart < end; nstart = nend) {
404 /*
405 * We want to fault in pages for [nstart; end) address range.
406 * Find first corresponding VMA.
407 */
53a7706d
ML
408 if (!locked) {
409 locked = 1;
410 down_read(&mm->mmap_sem);
fed067da 411 vma = find_vma(mm, nstart);
53a7706d 412 } else if (nstart >= vma->vm_end)
fed067da
ML
413 vma = vma->vm_next;
414 if (!vma || vma->vm_start >= end)
415 break;
416 /*
417 * Set [nstart; nend) to intersection of desired address
418 * range with the first VMA. Also, skip undesirable VMA types.
419 */
420 nend = min(end, vma->vm_end);
18693050
ML
421 if ((vma->vm_flags & (VM_IO | VM_PFNMAP | VM_POPULATE)) !=
422 VM_POPULATE)
fed067da
ML
423 continue;
424 if (nstart < vma->vm_start)
425 nstart = vma->vm_start;
426 /*
53a7706d
ML
427 * Now fault in a range of pages. __mlock_vma_pages_range()
428 * double checks the vma flags, so that it won't mlock pages
429 * if the vma was already munlocked.
fed067da 430 */
53a7706d
ML
431 ret = __mlock_vma_pages_range(vma, nstart, nend, &locked);
432 if (ret < 0) {
433 if (ignore_errors) {
434 ret = 0;
435 continue; /* continue at next VMA */
436 }
5fdb2002
ML
437 ret = __mlock_posix_error_return(ret);
438 break;
439 }
53a7706d
ML
440 nend = nstart + ret * PAGE_SIZE;
441 ret = 0;
fed067da 442 }
53a7706d
ML
443 if (locked)
444 up_read(&mm->mmap_sem);
fed067da
ML
445 return ret; /* 0 or negative error code */
446}
447
6a6160a7 448SYSCALL_DEFINE2(mlock, unsigned long, start, size_t, len)
1da177e4
LT
449{
450 unsigned long locked;
451 unsigned long lock_limit;
452 int error = -ENOMEM;
453
454 if (!can_do_mlock())
455 return -EPERM;
456
8891d6da
KM
457 lru_add_drain_all(); /* flush pagevec */
458
1da177e4
LT
459 down_write(&current->mm->mmap_sem);
460 len = PAGE_ALIGN(len + (start & ~PAGE_MASK));
461 start &= PAGE_MASK;
462
463 locked = len >> PAGE_SHIFT;
464 locked += current->mm->locked_vm;
465
59e99e5b 466 lock_limit = rlimit(RLIMIT_MEMLOCK);
1da177e4
LT
467 lock_limit >>= PAGE_SHIFT;
468
469 /* check against resource limits */
470 if ((locked <= lock_limit) || capable(CAP_IPC_LOCK))
471 error = do_mlock(start, len, 1);
472 up_write(&current->mm->mmap_sem);
fed067da 473 if (!error)
bebeb3d6 474 error = __mm_populate(start, len, 0);
1da177e4
LT
475 return error;
476}
477
6a6160a7 478SYSCALL_DEFINE2(munlock, unsigned long, start, size_t, len)
1da177e4
LT
479{
480 int ret;
481
482 down_write(&current->mm->mmap_sem);
483 len = PAGE_ALIGN(len + (start & ~PAGE_MASK));
484 start &= PAGE_MASK;
485 ret = do_mlock(start, len, 0);
486 up_write(&current->mm->mmap_sem);
487 return ret;
488}
489
490static int do_mlockall(int flags)
491{
492 struct vm_area_struct * vma, * prev = NULL;
1da177e4
LT
493
494 if (flags & MCL_FUTURE)
18693050 495 current->mm->def_flags |= VM_LOCKED | VM_POPULATE;
9977f0f1 496 else
18693050 497 current->mm->def_flags &= ~(VM_LOCKED | VM_POPULATE);
1da177e4
LT
498 if (flags == MCL_FUTURE)
499 goto out;
500
501 for (vma = current->mm->mmap; vma ; vma = prev->vm_next) {
ca16d140 502 vm_flags_t newflags;
1da177e4 503
18693050
ML
504 newflags = vma->vm_flags & ~VM_LOCKED;
505 if (flags & MCL_CURRENT)
506 newflags |= VM_LOCKED | VM_POPULATE;
1da177e4
LT
507
508 /* Ignore errors */
509 mlock_fixup(vma, &prev, vma->vm_start, vma->vm_end, newflags);
510 }
511out:
512 return 0;
513}
514
3480b257 515SYSCALL_DEFINE1(mlockall, int, flags)
1da177e4
LT
516{
517 unsigned long lock_limit;
518 int ret = -EINVAL;
519
520 if (!flags || (flags & ~(MCL_CURRENT | MCL_FUTURE)))
521 goto out;
522
523 ret = -EPERM;
524 if (!can_do_mlock())
525 goto out;
526
df9d6985
CL
527 if (flags & MCL_CURRENT)
528 lru_add_drain_all(); /* flush pagevec */
8891d6da 529
1da177e4
LT
530 down_write(&current->mm->mmap_sem);
531
59e99e5b 532 lock_limit = rlimit(RLIMIT_MEMLOCK);
1da177e4
LT
533 lock_limit >>= PAGE_SHIFT;
534
535 ret = -ENOMEM;
536 if (!(flags & MCL_CURRENT) || (current->mm->total_vm <= lock_limit) ||
537 capable(CAP_IPC_LOCK))
538 ret = do_mlockall(flags);
539 up_write(&current->mm->mmap_sem);
bebeb3d6
ML
540 if (!ret && (flags & MCL_CURRENT))
541 mm_populate(0, TASK_SIZE);
1da177e4
LT
542out:
543 return ret;
544}
545
3480b257 546SYSCALL_DEFINE0(munlockall)
1da177e4
LT
547{
548 int ret;
549
550 down_write(&current->mm->mmap_sem);
551 ret = do_mlockall(0);
552 up_write(&current->mm->mmap_sem);
553 return ret;
554}
555
556/*
557 * Objects with different lifetime than processes (SHM_LOCK and SHM_HUGETLB
558 * shm segments) get accounted against the user_struct instead.
559 */
560static DEFINE_SPINLOCK(shmlock_user_lock);
561
562int user_shm_lock(size_t size, struct user_struct *user)
563{
564 unsigned long lock_limit, locked;
565 int allowed = 0;
566
567 locked = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
59e99e5b 568 lock_limit = rlimit(RLIMIT_MEMLOCK);
5ed44a40
HB
569 if (lock_limit == RLIM_INFINITY)
570 allowed = 1;
1da177e4
LT
571 lock_limit >>= PAGE_SHIFT;
572 spin_lock(&shmlock_user_lock);
5ed44a40
HB
573 if (!allowed &&
574 locked + user->locked_shm > lock_limit && !capable(CAP_IPC_LOCK))
1da177e4
LT
575 goto out;
576 get_uid(user);
577 user->locked_shm += locked;
578 allowed = 1;
579out:
580 spin_unlock(&shmlock_user_lock);
581 return allowed;
582}
583
584void user_shm_unlock(size_t size, struct user_struct *user)
585{
586 spin_lock(&shmlock_user_lock);
587 user->locked_shm -= (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
588 spin_unlock(&shmlock_user_lock);
589 free_uid(user);
590}