]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - mm/memory.c
sched/headers: Prepare for new header dependencies before moving more code to <linux...
[mirror_ubuntu-artful-kernel.git] / mm / memory.c
CommitLineData
1da177e4
LT
1/*
2 * linux/mm/memory.c
3 *
4 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
5 */
6
7/*
8 * demand-loading started 01.12.91 - seems it is high on the list of
9 * things wanted, and it should be easy to implement. - Linus
10 */
11
12/*
13 * Ok, demand-loading was easy, shared pages a little bit tricker. Shared
14 * pages started 02.12.91, seems to work. - Linus.
15 *
16 * Tested sharing by executing about 30 /bin/sh: under the old kernel it
17 * would have taken more than the 6M I have free, but it worked well as
18 * far as I could see.
19 *
20 * Also corrected some "invalidate()"s - I wasn't doing enough of them.
21 */
22
23/*
24 * Real VM (paging to/from disk) started 18.12.91. Much more work and
25 * thought has to go into this. Oh, well..
26 * 19.12.91 - works, somewhat. Sometimes I get faults, don't know why.
27 * Found it. Everything seems to work now.
28 * 20.12.91 - Ok, making the swap-device changeable like the root.
29 */
30
31/*
32 * 05.04.94 - Multi-page memory management added for v1.1.
166f61b9 33 * Idea by Alex Bligh (alex@cconcepts.co.uk)
1da177e4
LT
34 *
35 * 16.07.99 - Support of BIGMEM added by Gerhard Wichert, Siemens AG
36 * (Gerhard.Wichert@pdb.siemens.de)
37 *
38 * Aug/Sep 2004 Changed to four level page tables (Andi Kleen)
39 */
40
41#include <linux/kernel_stat.h>
42#include <linux/mm.h>
6e84f315 43#include <linux/sched/mm.h>
f7ccbae4 44#include <linux/sched/coredump.h>
1da177e4
LT
45#include <linux/hugetlb.h>
46#include <linux/mman.h>
47#include <linux/swap.h>
48#include <linux/highmem.h>
49#include <linux/pagemap.h>
9a840895 50#include <linux/ksm.h>
1da177e4 51#include <linux/rmap.h>
b95f1b31 52#include <linux/export.h>
0ff92245 53#include <linux/delayacct.h>
1da177e4 54#include <linux/init.h>
01c8f1c4 55#include <linux/pfn_t.h>
edc79b2a 56#include <linux/writeback.h>
8a9f3ccd 57#include <linux/memcontrol.h>
cddb8a5c 58#include <linux/mmu_notifier.h>
3dc14741
HD
59#include <linux/kallsyms.h>
60#include <linux/swapops.h>
61#include <linux/elf.h>
5a0e3ad6 62#include <linux/gfp.h>
4daae3b4 63#include <linux/migrate.h>
2fbc57c5 64#include <linux/string.h>
0abdd7a8 65#include <linux/dma-debug.h>
1592eef0 66#include <linux/debugfs.h>
6b251fc9 67#include <linux/userfaultfd_k.h>
bc2466e4 68#include <linux/dax.h>
1da177e4 69
6952b61d 70#include <asm/io.h>
33a709b2 71#include <asm/mmu_context.h>
1da177e4 72#include <asm/pgalloc.h>
7c0f6ba6 73#include <linux/uaccess.h>
1da177e4
LT
74#include <asm/tlb.h>
75#include <asm/tlbflush.h>
76#include <asm/pgtable.h>
77
42b77728
JB
78#include "internal.h"
79
90572890
PZ
80#ifdef LAST_CPUPID_NOT_IN_PAGE_FLAGS
81#warning Unfortunate NUMA and NUMA Balancing config, growing page-frame for last_cpupid.
75980e97
PZ
82#endif
83
d41dee36 84#ifndef CONFIG_NEED_MULTIPLE_NODES
1da177e4
LT
85/* use the per-pgdat data instead for discontigmem - mbligh */
86unsigned long max_mapnr;
1da177e4 87EXPORT_SYMBOL(max_mapnr);
166f61b9
TH
88
89struct page *mem_map;
1da177e4
LT
90EXPORT_SYMBOL(mem_map);
91#endif
92
1da177e4
LT
93/*
94 * A number of key systems in x86 including ioremap() rely on the assumption
95 * that high_memory defines the upper bound on direct map memory, then end
96 * of ZONE_NORMAL. Under CONFIG_DISCONTIG this means that max_low_pfn and
97 * highstart_pfn must be the same; there must be no gap between ZONE_NORMAL
98 * and ZONE_HIGHMEM.
99 */
166f61b9 100void *high_memory;
1da177e4 101EXPORT_SYMBOL(high_memory);
1da177e4 102
32a93233
IM
103/*
104 * Randomize the address space (stacks, mmaps, brk, etc.).
105 *
106 * ( When CONFIG_COMPAT_BRK=y we exclude brk from randomization,
107 * as ancient (libc5 based) binaries can segfault. )
108 */
109int randomize_va_space __read_mostly =
110#ifdef CONFIG_COMPAT_BRK
111 1;
112#else
113 2;
114#endif
a62eaf15
AK
115
116static int __init disable_randmaps(char *s)
117{
118 randomize_va_space = 0;
9b41046c 119 return 1;
a62eaf15
AK
120}
121__setup("norandmaps", disable_randmaps);
122
62eede62 123unsigned long zero_pfn __read_mostly;
0b70068e
AB
124EXPORT_SYMBOL(zero_pfn);
125
166f61b9
TH
126unsigned long highest_memmap_pfn __read_mostly;
127
a13ea5b7
HD
128/*
129 * CONFIG_MMU architectures set up ZERO_PAGE in their paging_init()
130 */
131static int __init init_zero_pfn(void)
132{
133 zero_pfn = page_to_pfn(ZERO_PAGE(0));
134 return 0;
135}
136core_initcall(init_zero_pfn);
a62eaf15 137
d559db08 138
34e55232
KH
139#if defined(SPLIT_RSS_COUNTING)
140
ea48cf78 141void sync_mm_rss(struct mm_struct *mm)
34e55232
KH
142{
143 int i;
144
145 for (i = 0; i < NR_MM_COUNTERS; i++) {
05af2e10
DR
146 if (current->rss_stat.count[i]) {
147 add_mm_counter(mm, i, current->rss_stat.count[i]);
148 current->rss_stat.count[i] = 0;
34e55232
KH
149 }
150 }
05af2e10 151 current->rss_stat.events = 0;
34e55232
KH
152}
153
154static void add_mm_counter_fast(struct mm_struct *mm, int member, int val)
155{
156 struct task_struct *task = current;
157
158 if (likely(task->mm == mm))
159 task->rss_stat.count[member] += val;
160 else
161 add_mm_counter(mm, member, val);
162}
163#define inc_mm_counter_fast(mm, member) add_mm_counter_fast(mm, member, 1)
164#define dec_mm_counter_fast(mm, member) add_mm_counter_fast(mm, member, -1)
165
166/* sync counter once per 64 page faults */
167#define TASK_RSS_EVENTS_THRESH (64)
168static void check_sync_rss_stat(struct task_struct *task)
169{
170 if (unlikely(task != current))
171 return;
172 if (unlikely(task->rss_stat.events++ > TASK_RSS_EVENTS_THRESH))
ea48cf78 173 sync_mm_rss(task->mm);
34e55232 174}
9547d01b 175#else /* SPLIT_RSS_COUNTING */
34e55232
KH
176
177#define inc_mm_counter_fast(mm, member) inc_mm_counter(mm, member)
178#define dec_mm_counter_fast(mm, member) dec_mm_counter(mm, member)
179
180static void check_sync_rss_stat(struct task_struct *task)
181{
182}
183
9547d01b
PZ
184#endif /* SPLIT_RSS_COUNTING */
185
186#ifdef HAVE_GENERIC_MMU_GATHER
187
ca1d6c7d 188static bool tlb_next_batch(struct mmu_gather *tlb)
9547d01b
PZ
189{
190 struct mmu_gather_batch *batch;
191
192 batch = tlb->active;
193 if (batch->next) {
194 tlb->active = batch->next;
ca1d6c7d 195 return true;
9547d01b
PZ
196 }
197
53a59fc6 198 if (tlb->batch_count == MAX_GATHER_BATCH_COUNT)
ca1d6c7d 199 return false;
53a59fc6 200
9547d01b
PZ
201 batch = (void *)__get_free_pages(GFP_NOWAIT | __GFP_NOWARN, 0);
202 if (!batch)
ca1d6c7d 203 return false;
9547d01b 204
53a59fc6 205 tlb->batch_count++;
9547d01b
PZ
206 batch->next = NULL;
207 batch->nr = 0;
208 batch->max = MAX_GATHER_BATCH;
209
210 tlb->active->next = batch;
211 tlb->active = batch;
212
ca1d6c7d 213 return true;
9547d01b
PZ
214}
215
216/* tlb_gather_mmu
217 * Called to initialize an (on-stack) mmu_gather structure for page-table
218 * tear-down from @mm. The @fullmm argument is used when @mm is without
219 * users and we're going to destroy the full address space (exit/execve).
220 */
2b047252 221void tlb_gather_mmu(struct mmu_gather *tlb, struct mm_struct *mm, unsigned long start, unsigned long end)
9547d01b
PZ
222{
223 tlb->mm = mm;
224
2b047252
LT
225 /* Is it from 0 to ~0? */
226 tlb->fullmm = !(start | (end+1));
1de14c3c 227 tlb->need_flush_all = 0;
9547d01b
PZ
228 tlb->local.next = NULL;
229 tlb->local.nr = 0;
230 tlb->local.max = ARRAY_SIZE(tlb->__pages);
231 tlb->active = &tlb->local;
53a59fc6 232 tlb->batch_count = 0;
9547d01b
PZ
233
234#ifdef CONFIG_HAVE_RCU_TABLE_FREE
235 tlb->batch = NULL;
236#endif
e77b0852 237 tlb->page_size = 0;
fb7332a9
WD
238
239 __tlb_reset_range(tlb);
9547d01b
PZ
240}
241
1cf35d47 242static void tlb_flush_mmu_tlbonly(struct mmu_gather *tlb)
9547d01b 243{
721c21c1
WD
244 if (!tlb->end)
245 return;
246
9547d01b 247 tlb_flush(tlb);
34ee645e 248 mmu_notifier_invalidate_range(tlb->mm, tlb->start, tlb->end);
9547d01b
PZ
249#ifdef CONFIG_HAVE_RCU_TABLE_FREE
250 tlb_table_flush(tlb);
34e55232 251#endif
fb7332a9 252 __tlb_reset_range(tlb);
1cf35d47
LT
253}
254
255static void tlb_flush_mmu_free(struct mmu_gather *tlb)
256{
257 struct mmu_gather_batch *batch;
34e55232 258
721c21c1 259 for (batch = &tlb->local; batch && batch->nr; batch = batch->next) {
9547d01b
PZ
260 free_pages_and_swap_cache(batch->pages, batch->nr);
261 batch->nr = 0;
262 }
263 tlb->active = &tlb->local;
264}
265
1cf35d47
LT
266void tlb_flush_mmu(struct mmu_gather *tlb)
267{
1cf35d47
LT
268 tlb_flush_mmu_tlbonly(tlb);
269 tlb_flush_mmu_free(tlb);
270}
271
9547d01b
PZ
272/* tlb_finish_mmu
273 * Called at the end of the shootdown operation to free up any resources
274 * that were required.
275 */
276void tlb_finish_mmu(struct mmu_gather *tlb, unsigned long start, unsigned long end)
277{
278 struct mmu_gather_batch *batch, *next;
279
280 tlb_flush_mmu(tlb);
281
282 /* keep the page table cache within bounds */
283 check_pgt_cache();
284
285 for (batch = tlb->local.next; batch; batch = next) {
286 next = batch->next;
287 free_pages((unsigned long)batch, 0);
288 }
289 tlb->local.next = NULL;
290}
291
292/* __tlb_remove_page
293 * Must perform the equivalent to __free_pte(pte_get_and_clear(ptep)), while
294 * handling the additional races in SMP caused by other CPUs caching valid
295 * mappings in their TLBs. Returns the number of free page slots left.
296 * When out of page slots we must call tlb_flush_mmu().
e9d55e15 297 *returns true if the caller should flush.
9547d01b 298 */
e77b0852 299bool __tlb_remove_page_size(struct mmu_gather *tlb, struct page *page, int page_size)
9547d01b
PZ
300{
301 struct mmu_gather_batch *batch;
302
fb7332a9 303 VM_BUG_ON(!tlb->end);
692a68c1 304 VM_WARN_ON(tlb->page_size != page_size);
e77b0852 305
9547d01b 306 batch = tlb->active;
692a68c1
AK
307 /*
308 * Add the page and check if we are full. If so
309 * force a flush.
310 */
311 batch->pages[batch->nr++] = page;
9547d01b
PZ
312 if (batch->nr == batch->max) {
313 if (!tlb_next_batch(tlb))
e9d55e15 314 return true;
0b43c3aa 315 batch = tlb->active;
9547d01b 316 }
309381fe 317 VM_BUG_ON_PAGE(batch->nr > batch->max, page);
9547d01b 318
e9d55e15 319 return false;
9547d01b
PZ
320}
321
322#endif /* HAVE_GENERIC_MMU_GATHER */
323
26723911
PZ
324#ifdef CONFIG_HAVE_RCU_TABLE_FREE
325
326/*
327 * See the comment near struct mmu_table_batch.
328 */
329
330static void tlb_remove_table_smp_sync(void *arg)
331{
332 /* Simply deliver the interrupt */
333}
334
335static void tlb_remove_table_one(void *table)
336{
337 /*
338 * This isn't an RCU grace period and hence the page-tables cannot be
339 * assumed to be actually RCU-freed.
340 *
341 * It is however sufficient for software page-table walkers that rely on
342 * IRQ disabling. See the comment near struct mmu_table_batch.
343 */
344 smp_call_function(tlb_remove_table_smp_sync, NULL, 1);
345 __tlb_remove_table(table);
346}
347
348static void tlb_remove_table_rcu(struct rcu_head *head)
349{
350 struct mmu_table_batch *batch;
351 int i;
352
353 batch = container_of(head, struct mmu_table_batch, rcu);
354
355 for (i = 0; i < batch->nr; i++)
356 __tlb_remove_table(batch->tables[i]);
357
358 free_page((unsigned long)batch);
359}
360
361void tlb_table_flush(struct mmu_gather *tlb)
362{
363 struct mmu_table_batch **batch = &tlb->batch;
364
365 if (*batch) {
366 call_rcu_sched(&(*batch)->rcu, tlb_remove_table_rcu);
367 *batch = NULL;
368 }
369}
370
371void tlb_remove_table(struct mmu_gather *tlb, void *table)
372{
373 struct mmu_table_batch **batch = &tlb->batch;
374
26723911
PZ
375 /*
376 * When there's less then two users of this mm there cannot be a
377 * concurrent page-table walk.
378 */
379 if (atomic_read(&tlb->mm->mm_users) < 2) {
380 __tlb_remove_table(table);
381 return;
382 }
383
384 if (*batch == NULL) {
385 *batch = (struct mmu_table_batch *)__get_free_page(GFP_NOWAIT | __GFP_NOWARN);
386 if (*batch == NULL) {
387 tlb_remove_table_one(table);
388 return;
389 }
390 (*batch)->nr = 0;
391 }
392 (*batch)->tables[(*batch)->nr++] = table;
393 if ((*batch)->nr == MAX_TABLE_BATCH)
394 tlb_table_flush(tlb);
395}
396
9547d01b 397#endif /* CONFIG_HAVE_RCU_TABLE_FREE */
26723911 398
1da177e4
LT
399/*
400 * Note: this doesn't free the actual pages themselves. That
401 * has been handled earlier when unmapping all the memory regions.
402 */
9e1b32ca
BH
403static void free_pte_range(struct mmu_gather *tlb, pmd_t *pmd,
404 unsigned long addr)
1da177e4 405{
2f569afd 406 pgtable_t token = pmd_pgtable(*pmd);
e0da382c 407 pmd_clear(pmd);
9e1b32ca 408 pte_free_tlb(tlb, token, addr);
e1f56c89 409 atomic_long_dec(&tlb->mm->nr_ptes);
1da177e4
LT
410}
411
e0da382c
HD
412static inline void free_pmd_range(struct mmu_gather *tlb, pud_t *pud,
413 unsigned long addr, unsigned long end,
414 unsigned long floor, unsigned long ceiling)
1da177e4
LT
415{
416 pmd_t *pmd;
417 unsigned long next;
e0da382c 418 unsigned long start;
1da177e4 419
e0da382c 420 start = addr;
1da177e4 421 pmd = pmd_offset(pud, addr);
1da177e4
LT
422 do {
423 next = pmd_addr_end(addr, end);
424 if (pmd_none_or_clear_bad(pmd))
425 continue;
9e1b32ca 426 free_pte_range(tlb, pmd, addr);
1da177e4
LT
427 } while (pmd++, addr = next, addr != end);
428
e0da382c
HD
429 start &= PUD_MASK;
430 if (start < floor)
431 return;
432 if (ceiling) {
433 ceiling &= PUD_MASK;
434 if (!ceiling)
435 return;
1da177e4 436 }
e0da382c
HD
437 if (end - 1 > ceiling - 1)
438 return;
439
440 pmd = pmd_offset(pud, start);
441 pud_clear(pud);
9e1b32ca 442 pmd_free_tlb(tlb, pmd, start);
dc6c9a35 443 mm_dec_nr_pmds(tlb->mm);
1da177e4
LT
444}
445
e0da382c
HD
446static inline void free_pud_range(struct mmu_gather *tlb, pgd_t *pgd,
447 unsigned long addr, unsigned long end,
448 unsigned long floor, unsigned long ceiling)
1da177e4
LT
449{
450 pud_t *pud;
451 unsigned long next;
e0da382c 452 unsigned long start;
1da177e4 453
e0da382c 454 start = addr;
1da177e4 455 pud = pud_offset(pgd, addr);
1da177e4
LT
456 do {
457 next = pud_addr_end(addr, end);
458 if (pud_none_or_clear_bad(pud))
459 continue;
e0da382c 460 free_pmd_range(tlb, pud, addr, next, floor, ceiling);
1da177e4
LT
461 } while (pud++, addr = next, addr != end);
462
e0da382c
HD
463 start &= PGDIR_MASK;
464 if (start < floor)
465 return;
466 if (ceiling) {
467 ceiling &= PGDIR_MASK;
468 if (!ceiling)
469 return;
1da177e4 470 }
e0da382c
HD
471 if (end - 1 > ceiling - 1)
472 return;
473
474 pud = pud_offset(pgd, start);
475 pgd_clear(pgd);
9e1b32ca 476 pud_free_tlb(tlb, pud, start);
1da177e4
LT
477}
478
479/*
e0da382c 480 * This function frees user-level page tables of a process.
1da177e4 481 */
42b77728 482void free_pgd_range(struct mmu_gather *tlb,
e0da382c
HD
483 unsigned long addr, unsigned long end,
484 unsigned long floor, unsigned long ceiling)
1da177e4
LT
485{
486 pgd_t *pgd;
487 unsigned long next;
e0da382c
HD
488
489 /*
490 * The next few lines have given us lots of grief...
491 *
492 * Why are we testing PMD* at this top level? Because often
493 * there will be no work to do at all, and we'd prefer not to
494 * go all the way down to the bottom just to discover that.
495 *
496 * Why all these "- 1"s? Because 0 represents both the bottom
497 * of the address space and the top of it (using -1 for the
498 * top wouldn't help much: the masks would do the wrong thing).
499 * The rule is that addr 0 and floor 0 refer to the bottom of
500 * the address space, but end 0 and ceiling 0 refer to the top
501 * Comparisons need to use "end - 1" and "ceiling - 1" (though
502 * that end 0 case should be mythical).
503 *
504 * Wherever addr is brought up or ceiling brought down, we must
505 * be careful to reject "the opposite 0" before it confuses the
506 * subsequent tests. But what about where end is brought down
507 * by PMD_SIZE below? no, end can't go down to 0 there.
508 *
509 * Whereas we round start (addr) and ceiling down, by different
510 * masks at different levels, in order to test whether a table
511 * now has no other vmas using it, so can be freed, we don't
512 * bother to round floor or end up - the tests don't need that.
513 */
1da177e4 514
e0da382c
HD
515 addr &= PMD_MASK;
516 if (addr < floor) {
517 addr += PMD_SIZE;
518 if (!addr)
519 return;
520 }
521 if (ceiling) {
522 ceiling &= PMD_MASK;
523 if (!ceiling)
524 return;
525 }
526 if (end - 1 > ceiling - 1)
527 end -= PMD_SIZE;
528 if (addr > end - 1)
529 return;
07e32661
AK
530 /*
531 * We add page table cache pages with PAGE_SIZE,
532 * (see pte_free_tlb()), flush the tlb if we need
533 */
534 tlb_remove_check_page_size_change(tlb, PAGE_SIZE);
42b77728 535 pgd = pgd_offset(tlb->mm, addr);
1da177e4
LT
536 do {
537 next = pgd_addr_end(addr, end);
538 if (pgd_none_or_clear_bad(pgd))
539 continue;
42b77728 540 free_pud_range(tlb, pgd, addr, next, floor, ceiling);
1da177e4 541 } while (pgd++, addr = next, addr != end);
e0da382c
HD
542}
543
42b77728 544void free_pgtables(struct mmu_gather *tlb, struct vm_area_struct *vma,
3bf5ee95 545 unsigned long floor, unsigned long ceiling)
e0da382c
HD
546{
547 while (vma) {
548 struct vm_area_struct *next = vma->vm_next;
549 unsigned long addr = vma->vm_start;
550
8f4f8c16 551 /*
25d9e2d1 552 * Hide vma from rmap and truncate_pagecache before freeing
553 * pgtables
8f4f8c16 554 */
5beb4930 555 unlink_anon_vmas(vma);
8f4f8c16
HD
556 unlink_file_vma(vma);
557
9da61aef 558 if (is_vm_hugetlb_page(vma)) {
3bf5ee95 559 hugetlb_free_pgd_range(tlb, addr, vma->vm_end,
166f61b9 560 floor, next ? next->vm_start : ceiling);
3bf5ee95
HD
561 } else {
562 /*
563 * Optimization: gather nearby vmas into one call down
564 */
565 while (next && next->vm_start <= vma->vm_end + PMD_SIZE
4866920b 566 && !is_vm_hugetlb_page(next)) {
3bf5ee95
HD
567 vma = next;
568 next = vma->vm_next;
5beb4930 569 unlink_anon_vmas(vma);
8f4f8c16 570 unlink_file_vma(vma);
3bf5ee95
HD
571 }
572 free_pgd_range(tlb, addr, vma->vm_end,
166f61b9 573 floor, next ? next->vm_start : ceiling);
3bf5ee95 574 }
e0da382c
HD
575 vma = next;
576 }
1da177e4
LT
577}
578
3ed3a4f0 579int __pte_alloc(struct mm_struct *mm, pmd_t *pmd, unsigned long address)
1da177e4 580{
c4088ebd 581 spinlock_t *ptl;
2f569afd 582 pgtable_t new = pte_alloc_one(mm, address);
1bb3630e
HD
583 if (!new)
584 return -ENOMEM;
585
362a61ad
NP
586 /*
587 * Ensure all pte setup (eg. pte page lock and page clearing) are
588 * visible before the pte is made visible to other CPUs by being
589 * put into page tables.
590 *
591 * The other side of the story is the pointer chasing in the page
592 * table walking code (when walking the page table without locking;
593 * ie. most of the time). Fortunately, these data accesses consist
594 * of a chain of data-dependent loads, meaning most CPUs (alpha
595 * being the notable exception) will already guarantee loads are
596 * seen in-order. See the alpha page table accessors for the
597 * smp_read_barrier_depends() barriers in page table walking code.
598 */
599 smp_wmb(); /* Could be smp_wmb__xxx(before|after)_spin_lock */
600
c4088ebd 601 ptl = pmd_lock(mm, pmd);
8ac1f832 602 if (likely(pmd_none(*pmd))) { /* Has another populated it ? */
e1f56c89 603 atomic_long_inc(&mm->nr_ptes);
1da177e4 604 pmd_populate(mm, pmd, new);
2f569afd 605 new = NULL;
4b471e88 606 }
c4088ebd 607 spin_unlock(ptl);
2f569afd
MS
608 if (new)
609 pte_free(mm, new);
1bb3630e 610 return 0;
1da177e4
LT
611}
612
1bb3630e 613int __pte_alloc_kernel(pmd_t *pmd, unsigned long address)
1da177e4 614{
1bb3630e
HD
615 pte_t *new = pte_alloc_one_kernel(&init_mm, address);
616 if (!new)
617 return -ENOMEM;
618
362a61ad
NP
619 smp_wmb(); /* See comment in __pte_alloc */
620
1bb3630e 621 spin_lock(&init_mm.page_table_lock);
8ac1f832 622 if (likely(pmd_none(*pmd))) { /* Has another populated it ? */
1bb3630e 623 pmd_populate_kernel(&init_mm, pmd, new);
2f569afd 624 new = NULL;
4b471e88 625 }
1bb3630e 626 spin_unlock(&init_mm.page_table_lock);
2f569afd
MS
627 if (new)
628 pte_free_kernel(&init_mm, new);
1bb3630e 629 return 0;
1da177e4
LT
630}
631
d559db08
KH
632static inline void init_rss_vec(int *rss)
633{
634 memset(rss, 0, sizeof(int) * NR_MM_COUNTERS);
635}
636
637static inline void add_mm_rss_vec(struct mm_struct *mm, int *rss)
ae859762 638{
d559db08
KH
639 int i;
640
34e55232 641 if (current->mm == mm)
05af2e10 642 sync_mm_rss(mm);
d559db08
KH
643 for (i = 0; i < NR_MM_COUNTERS; i++)
644 if (rss[i])
645 add_mm_counter(mm, i, rss[i]);
ae859762
HD
646}
647
b5810039 648/*
6aab341e
LT
649 * This function is called to print an error when a bad pte
650 * is found. For example, we might have a PFN-mapped pte in
651 * a region that doesn't allow it.
b5810039
NP
652 *
653 * The calling function must still handle the error.
654 */
3dc14741
HD
655static void print_bad_pte(struct vm_area_struct *vma, unsigned long addr,
656 pte_t pte, struct page *page)
b5810039 657{
3dc14741
HD
658 pgd_t *pgd = pgd_offset(vma->vm_mm, addr);
659 pud_t *pud = pud_offset(pgd, addr);
660 pmd_t *pmd = pmd_offset(pud, addr);
661 struct address_space *mapping;
662 pgoff_t index;
d936cf9b
HD
663 static unsigned long resume;
664 static unsigned long nr_shown;
665 static unsigned long nr_unshown;
666
667 /*
668 * Allow a burst of 60 reports, then keep quiet for that minute;
669 * or allow a steady drip of one report per second.
670 */
671 if (nr_shown == 60) {
672 if (time_before(jiffies, resume)) {
673 nr_unshown++;
674 return;
675 }
676 if (nr_unshown) {
1170532b
JP
677 pr_alert("BUG: Bad page map: %lu messages suppressed\n",
678 nr_unshown);
d936cf9b
HD
679 nr_unshown = 0;
680 }
681 nr_shown = 0;
682 }
683 if (nr_shown++ == 0)
684 resume = jiffies + 60 * HZ;
3dc14741
HD
685
686 mapping = vma->vm_file ? vma->vm_file->f_mapping : NULL;
687 index = linear_page_index(vma, addr);
688
1170532b
JP
689 pr_alert("BUG: Bad page map in process %s pte:%08llx pmd:%08llx\n",
690 current->comm,
691 (long long)pte_val(pte), (long long)pmd_val(*pmd));
718a3821 692 if (page)
f0b791a3 693 dump_page(page, "bad pte");
1170532b
JP
694 pr_alert("addr:%p vm_flags:%08lx anon_vma:%p mapping:%p index:%lx\n",
695 (void *)addr, vma->vm_flags, vma->anon_vma, mapping, index);
3dc14741
HD
696 /*
697 * Choose text because data symbols depend on CONFIG_KALLSYMS_ALL=y
698 */
2682582a
KK
699 pr_alert("file:%pD fault:%pf mmap:%pf readpage:%pf\n",
700 vma->vm_file,
701 vma->vm_ops ? vma->vm_ops->fault : NULL,
702 vma->vm_file ? vma->vm_file->f_op->mmap : NULL,
703 mapping ? mapping->a_ops->readpage : NULL);
b5810039 704 dump_stack();
373d4d09 705 add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
b5810039
NP
706}
707
ee498ed7 708/*
7e675137 709 * vm_normal_page -- This function gets the "struct page" associated with a pte.
6aab341e 710 *
7e675137
NP
711 * "Special" mappings do not wish to be associated with a "struct page" (either
712 * it doesn't exist, or it exists but they don't want to touch it). In this
713 * case, NULL is returned here. "Normal" mappings do have a struct page.
b379d790 714 *
7e675137
NP
715 * There are 2 broad cases. Firstly, an architecture may define a pte_special()
716 * pte bit, in which case this function is trivial. Secondly, an architecture
717 * may not have a spare pte bit, which requires a more complicated scheme,
718 * described below.
719 *
720 * A raw VM_PFNMAP mapping (ie. one that is not COWed) is always considered a
721 * special mapping (even if there are underlying and valid "struct pages").
722 * COWed pages of a VM_PFNMAP are always normal.
6aab341e 723 *
b379d790
JH
724 * The way we recognize COWed pages within VM_PFNMAP mappings is through the
725 * rules set up by "remap_pfn_range()": the vma will have the VM_PFNMAP bit
7e675137
NP
726 * set, and the vm_pgoff will point to the first PFN mapped: thus every special
727 * mapping will always honor the rule
6aab341e
LT
728 *
729 * pfn_of_page == vma->vm_pgoff + ((addr - vma->vm_start) >> PAGE_SHIFT)
730 *
7e675137
NP
731 * And for normal mappings this is false.
732 *
733 * This restricts such mappings to be a linear translation from virtual address
734 * to pfn. To get around this restriction, we allow arbitrary mappings so long
735 * as the vma is not a COW mapping; in that case, we know that all ptes are
736 * special (because none can have been COWed).
b379d790 737 *
b379d790 738 *
7e675137 739 * In order to support COW of arbitrary special mappings, we have VM_MIXEDMAP.
b379d790
JH
740 *
741 * VM_MIXEDMAP mappings can likewise contain memory with or without "struct
742 * page" backing, however the difference is that _all_ pages with a struct
743 * page (that is, those where pfn_valid is true) are refcounted and considered
744 * normal pages by the VM. The disadvantage is that pages are refcounted
745 * (which can be slower and simply not an option for some PFNMAP users). The
746 * advantage is that we don't have to follow the strict linearity rule of
747 * PFNMAP mappings in order to support COWable mappings.
748 *
ee498ed7 749 */
7e675137
NP
750#ifdef __HAVE_ARCH_PTE_SPECIAL
751# define HAVE_PTE_SPECIAL 1
752#else
753# define HAVE_PTE_SPECIAL 0
754#endif
755struct page *vm_normal_page(struct vm_area_struct *vma, unsigned long addr,
756 pte_t pte)
ee498ed7 757{
22b31eec 758 unsigned long pfn = pte_pfn(pte);
7e675137
NP
759
760 if (HAVE_PTE_SPECIAL) {
b38af472 761 if (likely(!pte_special(pte)))
22b31eec 762 goto check_pfn;
667a0a06
DV
763 if (vma->vm_ops && vma->vm_ops->find_special_page)
764 return vma->vm_ops->find_special_page(vma, addr);
a13ea5b7
HD
765 if (vma->vm_flags & (VM_PFNMAP | VM_MIXEDMAP))
766 return NULL;
62eede62 767 if (!is_zero_pfn(pfn))
22b31eec 768 print_bad_pte(vma, addr, pte, NULL);
7e675137
NP
769 return NULL;
770 }
771
772 /* !HAVE_PTE_SPECIAL case follows: */
773
b379d790
JH
774 if (unlikely(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP))) {
775 if (vma->vm_flags & VM_MIXEDMAP) {
776 if (!pfn_valid(pfn))
777 return NULL;
778 goto out;
779 } else {
7e675137
NP
780 unsigned long off;
781 off = (addr - vma->vm_start) >> PAGE_SHIFT;
b379d790
JH
782 if (pfn == vma->vm_pgoff + off)
783 return NULL;
784 if (!is_cow_mapping(vma->vm_flags))
785 return NULL;
786 }
6aab341e
LT
787 }
788
b38af472
HD
789 if (is_zero_pfn(pfn))
790 return NULL;
22b31eec
HD
791check_pfn:
792 if (unlikely(pfn > highest_memmap_pfn)) {
793 print_bad_pte(vma, addr, pte, NULL);
794 return NULL;
795 }
6aab341e
LT
796
797 /*
7e675137 798 * NOTE! We still have PageReserved() pages in the page tables.
7e675137 799 * eg. VDSO mappings can cause them to exist.
6aab341e 800 */
b379d790 801out:
6aab341e 802 return pfn_to_page(pfn);
ee498ed7
HD
803}
804
28093f9f
GS
805#ifdef CONFIG_TRANSPARENT_HUGEPAGE
806struct page *vm_normal_page_pmd(struct vm_area_struct *vma, unsigned long addr,
807 pmd_t pmd)
808{
809 unsigned long pfn = pmd_pfn(pmd);
810
811 /*
812 * There is no pmd_special() but there may be special pmds, e.g.
813 * in a direct-access (dax) mapping, so let's just replicate the
814 * !HAVE_PTE_SPECIAL case from vm_normal_page() here.
815 */
816 if (unlikely(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP))) {
817 if (vma->vm_flags & VM_MIXEDMAP) {
818 if (!pfn_valid(pfn))
819 return NULL;
820 goto out;
821 } else {
822 unsigned long off;
823 off = (addr - vma->vm_start) >> PAGE_SHIFT;
824 if (pfn == vma->vm_pgoff + off)
825 return NULL;
826 if (!is_cow_mapping(vma->vm_flags))
827 return NULL;
828 }
829 }
830
831 if (is_zero_pfn(pfn))
832 return NULL;
833 if (unlikely(pfn > highest_memmap_pfn))
834 return NULL;
835
836 /*
837 * NOTE! We still have PageReserved() pages in the page tables.
838 * eg. VDSO mappings can cause them to exist.
839 */
840out:
841 return pfn_to_page(pfn);
842}
843#endif
844
1da177e4
LT
845/*
846 * copy one vm_area from one task to the other. Assumes the page tables
847 * already present in the new task to be cleared in the whole range
848 * covered by this vma.
1da177e4
LT
849 */
850
570a335b 851static inline unsigned long
1da177e4 852copy_one_pte(struct mm_struct *dst_mm, struct mm_struct *src_mm,
b5810039 853 pte_t *dst_pte, pte_t *src_pte, struct vm_area_struct *vma,
8c103762 854 unsigned long addr, int *rss)
1da177e4 855{
b5810039 856 unsigned long vm_flags = vma->vm_flags;
1da177e4
LT
857 pte_t pte = *src_pte;
858 struct page *page;
1da177e4
LT
859
860 /* pte contains position in swap or file, so copy. */
861 if (unlikely(!pte_present(pte))) {
0661a336
KS
862 swp_entry_t entry = pte_to_swp_entry(pte);
863
864 if (likely(!non_swap_entry(entry))) {
865 if (swap_duplicate(entry) < 0)
866 return entry.val;
867
868 /* make sure dst_mm is on swapoff's mmlist. */
869 if (unlikely(list_empty(&dst_mm->mmlist))) {
870 spin_lock(&mmlist_lock);
871 if (list_empty(&dst_mm->mmlist))
872 list_add(&dst_mm->mmlist,
873 &src_mm->mmlist);
874 spin_unlock(&mmlist_lock);
875 }
876 rss[MM_SWAPENTS]++;
877 } else if (is_migration_entry(entry)) {
878 page = migration_entry_to_page(entry);
879
eca56ff9 880 rss[mm_counter(page)]++;
0661a336
KS
881
882 if (is_write_migration_entry(entry) &&
883 is_cow_mapping(vm_flags)) {
884 /*
885 * COW mappings require pages in both
886 * parent and child to be set to read.
887 */
888 make_migration_entry_read(&entry);
889 pte = swp_entry_to_pte(entry);
890 if (pte_swp_soft_dirty(*src_pte))
891 pte = pte_swp_mksoft_dirty(pte);
892 set_pte_at(src_mm, addr, src_pte, pte);
0697212a 893 }
1da177e4 894 }
ae859762 895 goto out_set_pte;
1da177e4
LT
896 }
897
1da177e4
LT
898 /*
899 * If it's a COW mapping, write protect it both
900 * in the parent and the child
901 */
67121172 902 if (is_cow_mapping(vm_flags)) {
1da177e4 903 ptep_set_wrprotect(src_mm, addr, src_pte);
3dc90795 904 pte = pte_wrprotect(pte);
1da177e4
LT
905 }
906
907 /*
908 * If it's a shared mapping, mark it clean in
909 * the child
910 */
911 if (vm_flags & VM_SHARED)
912 pte = pte_mkclean(pte);
913 pte = pte_mkold(pte);
6aab341e
LT
914
915 page = vm_normal_page(vma, addr, pte);
916 if (page) {
917 get_page(page);
53f9263b 918 page_dup_rmap(page, false);
eca56ff9 919 rss[mm_counter(page)]++;
6aab341e 920 }
ae859762
HD
921
922out_set_pte:
923 set_pte_at(dst_mm, addr, dst_pte, pte);
570a335b 924 return 0;
1da177e4
LT
925}
926
21bda264 927static int copy_pte_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
71e3aac0
AA
928 pmd_t *dst_pmd, pmd_t *src_pmd, struct vm_area_struct *vma,
929 unsigned long addr, unsigned long end)
1da177e4 930{
c36987e2 931 pte_t *orig_src_pte, *orig_dst_pte;
1da177e4 932 pte_t *src_pte, *dst_pte;
c74df32c 933 spinlock_t *src_ptl, *dst_ptl;
e040f218 934 int progress = 0;
d559db08 935 int rss[NR_MM_COUNTERS];
570a335b 936 swp_entry_t entry = (swp_entry_t){0};
1da177e4
LT
937
938again:
d559db08
KH
939 init_rss_vec(rss);
940
c74df32c 941 dst_pte = pte_alloc_map_lock(dst_mm, dst_pmd, addr, &dst_ptl);
1da177e4
LT
942 if (!dst_pte)
943 return -ENOMEM;
ece0e2b6 944 src_pte = pte_offset_map(src_pmd, addr);
4c21e2f2 945 src_ptl = pte_lockptr(src_mm, src_pmd);
f20dc5f7 946 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
c36987e2
DN
947 orig_src_pte = src_pte;
948 orig_dst_pte = dst_pte;
6606c3e0 949 arch_enter_lazy_mmu_mode();
1da177e4 950
1da177e4
LT
951 do {
952 /*
953 * We are holding two locks at this point - either of them
954 * could generate latencies in another task on another CPU.
955 */
e040f218
HD
956 if (progress >= 32) {
957 progress = 0;
958 if (need_resched() ||
95c354fe 959 spin_needbreak(src_ptl) || spin_needbreak(dst_ptl))
e040f218
HD
960 break;
961 }
1da177e4
LT
962 if (pte_none(*src_pte)) {
963 progress++;
964 continue;
965 }
570a335b
HD
966 entry.val = copy_one_pte(dst_mm, src_mm, dst_pte, src_pte,
967 vma, addr, rss);
968 if (entry.val)
969 break;
1da177e4
LT
970 progress += 8;
971 } while (dst_pte++, src_pte++, addr += PAGE_SIZE, addr != end);
1da177e4 972
6606c3e0 973 arch_leave_lazy_mmu_mode();
c74df32c 974 spin_unlock(src_ptl);
ece0e2b6 975 pte_unmap(orig_src_pte);
d559db08 976 add_mm_rss_vec(dst_mm, rss);
c36987e2 977 pte_unmap_unlock(orig_dst_pte, dst_ptl);
c74df32c 978 cond_resched();
570a335b
HD
979
980 if (entry.val) {
981 if (add_swap_count_continuation(entry, GFP_KERNEL) < 0)
982 return -ENOMEM;
983 progress = 0;
984 }
1da177e4
LT
985 if (addr != end)
986 goto again;
987 return 0;
988}
989
990static inline int copy_pmd_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
991 pud_t *dst_pud, pud_t *src_pud, struct vm_area_struct *vma,
992 unsigned long addr, unsigned long end)
993{
994 pmd_t *src_pmd, *dst_pmd;
995 unsigned long next;
996
997 dst_pmd = pmd_alloc(dst_mm, dst_pud, addr);
998 if (!dst_pmd)
999 return -ENOMEM;
1000 src_pmd = pmd_offset(src_pud, addr);
1001 do {
1002 next = pmd_addr_end(addr, end);
5c7fb56e 1003 if (pmd_trans_huge(*src_pmd) || pmd_devmap(*src_pmd)) {
71e3aac0 1004 int err;
a00cc7d9 1005 VM_BUG_ON_VMA(next-addr != HPAGE_PMD_SIZE, vma);
71e3aac0
AA
1006 err = copy_huge_pmd(dst_mm, src_mm,
1007 dst_pmd, src_pmd, addr, vma);
1008 if (err == -ENOMEM)
1009 return -ENOMEM;
1010 if (!err)
1011 continue;
1012 /* fall through */
1013 }
1da177e4
LT
1014 if (pmd_none_or_clear_bad(src_pmd))
1015 continue;
1016 if (copy_pte_range(dst_mm, src_mm, dst_pmd, src_pmd,
1017 vma, addr, next))
1018 return -ENOMEM;
1019 } while (dst_pmd++, src_pmd++, addr = next, addr != end);
1020 return 0;
1021}
1022
1023static inline int copy_pud_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
1024 pgd_t *dst_pgd, pgd_t *src_pgd, struct vm_area_struct *vma,
1025 unsigned long addr, unsigned long end)
1026{
1027 pud_t *src_pud, *dst_pud;
1028 unsigned long next;
1029
1030 dst_pud = pud_alloc(dst_mm, dst_pgd, addr);
1031 if (!dst_pud)
1032 return -ENOMEM;
1033 src_pud = pud_offset(src_pgd, addr);
1034 do {
1035 next = pud_addr_end(addr, end);
a00cc7d9
MW
1036 if (pud_trans_huge(*src_pud) || pud_devmap(*src_pud)) {
1037 int err;
1038
1039 VM_BUG_ON_VMA(next-addr != HPAGE_PUD_SIZE, vma);
1040 err = copy_huge_pud(dst_mm, src_mm,
1041 dst_pud, src_pud, addr, vma);
1042 if (err == -ENOMEM)
1043 return -ENOMEM;
1044 if (!err)
1045 continue;
1046 /* fall through */
1047 }
1da177e4
LT
1048 if (pud_none_or_clear_bad(src_pud))
1049 continue;
1050 if (copy_pmd_range(dst_mm, src_mm, dst_pud, src_pud,
1051 vma, addr, next))
1052 return -ENOMEM;
1053 } while (dst_pud++, src_pud++, addr = next, addr != end);
1054 return 0;
1055}
1056
1057int copy_page_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
1058 struct vm_area_struct *vma)
1059{
1060 pgd_t *src_pgd, *dst_pgd;
1061 unsigned long next;
1062 unsigned long addr = vma->vm_start;
1063 unsigned long end = vma->vm_end;
2ec74c3e
SG
1064 unsigned long mmun_start; /* For mmu_notifiers */
1065 unsigned long mmun_end; /* For mmu_notifiers */
1066 bool is_cow;
cddb8a5c 1067 int ret;
1da177e4 1068
d992895b
NP
1069 /*
1070 * Don't copy ptes where a page fault will fill them correctly.
1071 * Fork becomes much lighter when there are big shared or private
1072 * readonly mappings. The tradeoff is that copy_page_range is more
1073 * efficient than faulting.
1074 */
0661a336
KS
1075 if (!(vma->vm_flags & (VM_HUGETLB | VM_PFNMAP | VM_MIXEDMAP)) &&
1076 !vma->anon_vma)
1077 return 0;
d992895b 1078
1da177e4
LT
1079 if (is_vm_hugetlb_page(vma))
1080 return copy_hugetlb_page_range(dst_mm, src_mm, vma);
1081
b3b9c293 1082 if (unlikely(vma->vm_flags & VM_PFNMAP)) {
2ab64037 1083 /*
1084 * We do not free on error cases below as remove_vma
1085 * gets called on error from higher level routine
1086 */
5180da41 1087 ret = track_pfn_copy(vma);
2ab64037 1088 if (ret)
1089 return ret;
1090 }
1091
cddb8a5c
AA
1092 /*
1093 * We need to invalidate the secondary MMU mappings only when
1094 * there could be a permission downgrade on the ptes of the
1095 * parent mm. And a permission downgrade will only happen if
1096 * is_cow_mapping() returns true.
1097 */
2ec74c3e
SG
1098 is_cow = is_cow_mapping(vma->vm_flags);
1099 mmun_start = addr;
1100 mmun_end = end;
1101 if (is_cow)
1102 mmu_notifier_invalidate_range_start(src_mm, mmun_start,
1103 mmun_end);
cddb8a5c
AA
1104
1105 ret = 0;
1da177e4
LT
1106 dst_pgd = pgd_offset(dst_mm, addr);
1107 src_pgd = pgd_offset(src_mm, addr);
1108 do {
1109 next = pgd_addr_end(addr, end);
1110 if (pgd_none_or_clear_bad(src_pgd))
1111 continue;
cddb8a5c
AA
1112 if (unlikely(copy_pud_range(dst_mm, src_mm, dst_pgd, src_pgd,
1113 vma, addr, next))) {
1114 ret = -ENOMEM;
1115 break;
1116 }
1da177e4 1117 } while (dst_pgd++, src_pgd++, addr = next, addr != end);
cddb8a5c 1118
2ec74c3e
SG
1119 if (is_cow)
1120 mmu_notifier_invalidate_range_end(src_mm, mmun_start, mmun_end);
cddb8a5c 1121 return ret;
1da177e4
LT
1122}
1123
51c6f666 1124static unsigned long zap_pte_range(struct mmu_gather *tlb,
b5810039 1125 struct vm_area_struct *vma, pmd_t *pmd,
1da177e4 1126 unsigned long addr, unsigned long end,
97a89413 1127 struct zap_details *details)
1da177e4 1128{
b5810039 1129 struct mm_struct *mm = tlb->mm;
d16dfc55 1130 int force_flush = 0;
d559db08 1131 int rss[NR_MM_COUNTERS];
97a89413 1132 spinlock_t *ptl;
5f1a1907 1133 pte_t *start_pte;
97a89413 1134 pte_t *pte;
8a5f14a2 1135 swp_entry_t entry;
d559db08 1136
07e32661 1137 tlb_remove_check_page_size_change(tlb, PAGE_SIZE);
d16dfc55 1138again:
e303297e 1139 init_rss_vec(rss);
5f1a1907
SR
1140 start_pte = pte_offset_map_lock(mm, pmd, addr, &ptl);
1141 pte = start_pte;
6606c3e0 1142 arch_enter_lazy_mmu_mode();
1da177e4
LT
1143 do {
1144 pte_t ptent = *pte;
166f61b9 1145 if (pte_none(ptent))
1da177e4 1146 continue;
6f5e6b9e 1147
1da177e4 1148 if (pte_present(ptent)) {
ee498ed7 1149 struct page *page;
51c6f666 1150
6aab341e 1151 page = vm_normal_page(vma, addr, ptent);
1da177e4
LT
1152 if (unlikely(details) && page) {
1153 /*
1154 * unmap_shared_mapping_pages() wants to
1155 * invalidate cache without truncating:
1156 * unmap shared but keep private pages.
1157 */
1158 if (details->check_mapping &&
800d8c63 1159 details->check_mapping != page_rmapping(page))
1da177e4 1160 continue;
1da177e4 1161 }
b5810039 1162 ptent = ptep_get_and_clear_full(mm, addr, pte,
a600388d 1163 tlb->fullmm);
1da177e4
LT
1164 tlb_remove_tlb_entry(tlb, pte, addr);
1165 if (unlikely(!page))
1166 continue;
eca56ff9
JM
1167
1168 if (!PageAnon(page)) {
1cf35d47
LT
1169 if (pte_dirty(ptent)) {
1170 force_flush = 1;
6237bcd9 1171 set_page_dirty(page);
1cf35d47 1172 }
4917e5d0 1173 if (pte_young(ptent) &&
64363aad 1174 likely(!(vma->vm_flags & VM_SEQ_READ)))
bf3f3bc5 1175 mark_page_accessed(page);
6237bcd9 1176 }
eca56ff9 1177 rss[mm_counter(page)]--;
d281ee61 1178 page_remove_rmap(page, false);
3dc14741
HD
1179 if (unlikely(page_mapcount(page) < 0))
1180 print_bad_pte(vma, addr, ptent, page);
e9d55e15 1181 if (unlikely(__tlb_remove_page(tlb, page))) {
1cf35d47 1182 force_flush = 1;
ce9ec37b 1183 addr += PAGE_SIZE;
d16dfc55 1184 break;
1cf35d47 1185 }
1da177e4
LT
1186 continue;
1187 }
3e8715fd
KS
1188 /* If details->check_mapping, we leave swap entries. */
1189 if (unlikely(details))
1da177e4 1190 continue;
b084d435 1191
8a5f14a2
KS
1192 entry = pte_to_swp_entry(ptent);
1193 if (!non_swap_entry(entry))
1194 rss[MM_SWAPENTS]--;
1195 else if (is_migration_entry(entry)) {
1196 struct page *page;
9f9f1acd 1197
8a5f14a2 1198 page = migration_entry_to_page(entry);
eca56ff9 1199 rss[mm_counter(page)]--;
b084d435 1200 }
8a5f14a2
KS
1201 if (unlikely(!free_swap_and_cache(entry)))
1202 print_bad_pte(vma, addr, ptent, NULL);
9888a1ca 1203 pte_clear_not_present_full(mm, addr, pte, tlb->fullmm);
97a89413 1204 } while (pte++, addr += PAGE_SIZE, addr != end);
ae859762 1205
d559db08 1206 add_mm_rss_vec(mm, rss);
6606c3e0 1207 arch_leave_lazy_mmu_mode();
51c6f666 1208
1cf35d47 1209 /* Do the actual TLB flush before dropping ptl */
fb7332a9 1210 if (force_flush)
1cf35d47 1211 tlb_flush_mmu_tlbonly(tlb);
1cf35d47
LT
1212 pte_unmap_unlock(start_pte, ptl);
1213
1214 /*
1215 * If we forced a TLB flush (either due to running out of
1216 * batch buffers or because we needed to flush dirty TLB
1217 * entries before releasing the ptl), free the batched
1218 * memory too. Restart if we didn't do everything.
1219 */
1220 if (force_flush) {
1221 force_flush = 0;
1222 tlb_flush_mmu_free(tlb);
2b047252 1223 if (addr != end)
d16dfc55
PZ
1224 goto again;
1225 }
1226
51c6f666 1227 return addr;
1da177e4
LT
1228}
1229
51c6f666 1230static inline unsigned long zap_pmd_range(struct mmu_gather *tlb,
b5810039 1231 struct vm_area_struct *vma, pud_t *pud,
1da177e4 1232 unsigned long addr, unsigned long end,
97a89413 1233 struct zap_details *details)
1da177e4
LT
1234{
1235 pmd_t *pmd;
1236 unsigned long next;
1237
1238 pmd = pmd_offset(pud, addr);
1239 do {
1240 next = pmd_addr_end(addr, end);
5c7fb56e 1241 if (pmd_trans_huge(*pmd) || pmd_devmap(*pmd)) {
1a5a9906 1242 if (next - addr != HPAGE_PMD_SIZE) {
68428398
HD
1243 VM_BUG_ON_VMA(vma_is_anonymous(vma) &&
1244 !rwsem_is_locked(&tlb->mm->mmap_sem), vma);
fd60775a 1245 __split_huge_pmd(vma, pmd, addr, false, NULL);
f21760b1 1246 } else if (zap_huge_pmd(tlb, vma, pmd, addr))
1a5a9906 1247 goto next;
71e3aac0
AA
1248 /* fall through */
1249 }
1a5a9906
AA
1250 /*
1251 * Here there can be other concurrent MADV_DONTNEED or
1252 * trans huge page faults running, and if the pmd is
1253 * none or trans huge it can change under us. This is
1254 * because MADV_DONTNEED holds the mmap_sem in read
1255 * mode.
1256 */
1257 if (pmd_none_or_trans_huge_or_clear_bad(pmd))
1258 goto next;
97a89413 1259 next = zap_pte_range(tlb, vma, pmd, addr, next, details);
1a5a9906 1260next:
97a89413
PZ
1261 cond_resched();
1262 } while (pmd++, addr = next, addr != end);
51c6f666
RH
1263
1264 return addr;
1da177e4
LT
1265}
1266
51c6f666 1267static inline unsigned long zap_pud_range(struct mmu_gather *tlb,
b5810039 1268 struct vm_area_struct *vma, pgd_t *pgd,
1da177e4 1269 unsigned long addr, unsigned long end,
97a89413 1270 struct zap_details *details)
1da177e4
LT
1271{
1272 pud_t *pud;
1273 unsigned long next;
1274
1275 pud = pud_offset(pgd, addr);
1276 do {
1277 next = pud_addr_end(addr, end);
a00cc7d9
MW
1278 if (pud_trans_huge(*pud) || pud_devmap(*pud)) {
1279 if (next - addr != HPAGE_PUD_SIZE) {
1280 VM_BUG_ON_VMA(!rwsem_is_locked(&tlb->mm->mmap_sem), vma);
1281 split_huge_pud(vma, pud, addr);
1282 } else if (zap_huge_pud(tlb, vma, pud, addr))
1283 goto next;
1284 /* fall through */
1285 }
97a89413 1286 if (pud_none_or_clear_bad(pud))
1da177e4 1287 continue;
97a89413 1288 next = zap_pmd_range(tlb, vma, pud, addr, next, details);
a00cc7d9
MW
1289next:
1290 cond_resched();
97a89413 1291 } while (pud++, addr = next, addr != end);
51c6f666
RH
1292
1293 return addr;
1da177e4
LT
1294}
1295
aac45363 1296void unmap_page_range(struct mmu_gather *tlb,
038c7aa1
AV
1297 struct vm_area_struct *vma,
1298 unsigned long addr, unsigned long end,
1299 struct zap_details *details)
1da177e4
LT
1300{
1301 pgd_t *pgd;
1302 unsigned long next;
1303
1da177e4
LT
1304 BUG_ON(addr >= end);
1305 tlb_start_vma(tlb, vma);
1306 pgd = pgd_offset(vma->vm_mm, addr);
1307 do {
1308 next = pgd_addr_end(addr, end);
97a89413 1309 if (pgd_none_or_clear_bad(pgd))
1da177e4 1310 continue;
97a89413
PZ
1311 next = zap_pud_range(tlb, vma, pgd, addr, next, details);
1312 } while (pgd++, addr = next, addr != end);
1da177e4
LT
1313 tlb_end_vma(tlb, vma);
1314}
51c6f666 1315
f5cc4eef
AV
1316
1317static void unmap_single_vma(struct mmu_gather *tlb,
1318 struct vm_area_struct *vma, unsigned long start_addr,
4f74d2c8 1319 unsigned long end_addr,
f5cc4eef
AV
1320 struct zap_details *details)
1321{
1322 unsigned long start = max(vma->vm_start, start_addr);
1323 unsigned long end;
1324
1325 if (start >= vma->vm_end)
1326 return;
1327 end = min(vma->vm_end, end_addr);
1328 if (end <= vma->vm_start)
1329 return;
1330
cbc91f71
SD
1331 if (vma->vm_file)
1332 uprobe_munmap(vma, start, end);
1333
b3b9c293 1334 if (unlikely(vma->vm_flags & VM_PFNMAP))
5180da41 1335 untrack_pfn(vma, 0, 0);
f5cc4eef
AV
1336
1337 if (start != end) {
1338 if (unlikely(is_vm_hugetlb_page(vma))) {
1339 /*
1340 * It is undesirable to test vma->vm_file as it
1341 * should be non-null for valid hugetlb area.
1342 * However, vm_file will be NULL in the error
7aa6b4ad 1343 * cleanup path of mmap_region. When
f5cc4eef 1344 * hugetlbfs ->mmap method fails,
7aa6b4ad 1345 * mmap_region() nullifies vma->vm_file
f5cc4eef
AV
1346 * before calling this function to clean up.
1347 * Since no pte has actually been setup, it is
1348 * safe to do nothing in this case.
1349 */
24669e58 1350 if (vma->vm_file) {
83cde9e8 1351 i_mmap_lock_write(vma->vm_file->f_mapping);
d833352a 1352 __unmap_hugepage_range_final(tlb, vma, start, end, NULL);
83cde9e8 1353 i_mmap_unlock_write(vma->vm_file->f_mapping);
24669e58 1354 }
f5cc4eef
AV
1355 } else
1356 unmap_page_range(tlb, vma, start, end, details);
1357 }
1da177e4
LT
1358}
1359
1da177e4
LT
1360/**
1361 * unmap_vmas - unmap a range of memory covered by a list of vma's
0164f69d 1362 * @tlb: address of the caller's struct mmu_gather
1da177e4
LT
1363 * @vma: the starting vma
1364 * @start_addr: virtual address at which to start unmapping
1365 * @end_addr: virtual address at which to end unmapping
1da177e4 1366 *
508034a3 1367 * Unmap all pages in the vma list.
1da177e4 1368 *
1da177e4
LT
1369 * Only addresses between `start' and `end' will be unmapped.
1370 *
1371 * The VMA list must be sorted in ascending virtual address order.
1372 *
1373 * unmap_vmas() assumes that the caller will flush the whole unmapped address
1374 * range after unmap_vmas() returns. So the only responsibility here is to
1375 * ensure that any thus-far unmapped pages are flushed before unmap_vmas()
1376 * drops the lock and schedules.
1377 */
6e8bb019 1378void unmap_vmas(struct mmu_gather *tlb,
1da177e4 1379 struct vm_area_struct *vma, unsigned long start_addr,
4f74d2c8 1380 unsigned long end_addr)
1da177e4 1381{
cddb8a5c 1382 struct mm_struct *mm = vma->vm_mm;
1da177e4 1383
cddb8a5c 1384 mmu_notifier_invalidate_range_start(mm, start_addr, end_addr);
f5cc4eef 1385 for ( ; vma && vma->vm_start < end_addr; vma = vma->vm_next)
4f74d2c8 1386 unmap_single_vma(tlb, vma, start_addr, end_addr, NULL);
cddb8a5c 1387 mmu_notifier_invalidate_range_end(mm, start_addr, end_addr);
1da177e4
LT
1388}
1389
1390/**
1391 * zap_page_range - remove user pages in a given range
1392 * @vma: vm_area_struct holding the applicable pages
eb4546bb 1393 * @start: starting address of pages to zap
1da177e4 1394 * @size: number of bytes to zap
f5cc4eef
AV
1395 *
1396 * Caller must protect the VMA list
1da177e4 1397 */
7e027b14 1398void zap_page_range(struct vm_area_struct *vma, unsigned long start,
ecf1385d 1399 unsigned long size)
1da177e4
LT
1400{
1401 struct mm_struct *mm = vma->vm_mm;
d16dfc55 1402 struct mmu_gather tlb;
7e027b14 1403 unsigned long end = start + size;
1da177e4 1404
1da177e4 1405 lru_add_drain();
2b047252 1406 tlb_gather_mmu(&tlb, mm, start, end);
365e9c87 1407 update_hiwater_rss(mm);
7e027b14
LT
1408 mmu_notifier_invalidate_range_start(mm, start, end);
1409 for ( ; vma && vma->vm_start < end; vma = vma->vm_next)
ecf1385d 1410 unmap_single_vma(&tlb, vma, start, end, NULL);
7e027b14
LT
1411 mmu_notifier_invalidate_range_end(mm, start, end);
1412 tlb_finish_mmu(&tlb, start, end);
1da177e4
LT
1413}
1414
f5cc4eef
AV
1415/**
1416 * zap_page_range_single - remove user pages in a given range
1417 * @vma: vm_area_struct holding the applicable pages
1418 * @address: starting address of pages to zap
1419 * @size: number of bytes to zap
8a5f14a2 1420 * @details: details of shared cache invalidation
f5cc4eef
AV
1421 *
1422 * The range must fit into one VMA.
1da177e4 1423 */
f5cc4eef 1424static void zap_page_range_single(struct vm_area_struct *vma, unsigned long address,
1da177e4
LT
1425 unsigned long size, struct zap_details *details)
1426{
1427 struct mm_struct *mm = vma->vm_mm;
d16dfc55 1428 struct mmu_gather tlb;
1da177e4 1429 unsigned long end = address + size;
1da177e4 1430
1da177e4 1431 lru_add_drain();
2b047252 1432 tlb_gather_mmu(&tlb, mm, address, end);
365e9c87 1433 update_hiwater_rss(mm);
f5cc4eef 1434 mmu_notifier_invalidate_range_start(mm, address, end);
4f74d2c8 1435 unmap_single_vma(&tlb, vma, address, end, details);
f5cc4eef 1436 mmu_notifier_invalidate_range_end(mm, address, end);
d16dfc55 1437 tlb_finish_mmu(&tlb, address, end);
1da177e4
LT
1438}
1439
c627f9cc
JS
1440/**
1441 * zap_vma_ptes - remove ptes mapping the vma
1442 * @vma: vm_area_struct holding ptes to be zapped
1443 * @address: starting address of pages to zap
1444 * @size: number of bytes to zap
1445 *
1446 * This function only unmaps ptes assigned to VM_PFNMAP vmas.
1447 *
1448 * The entire address range must be fully contained within the vma.
1449 *
1450 * Returns 0 if successful.
1451 */
1452int zap_vma_ptes(struct vm_area_struct *vma, unsigned long address,
1453 unsigned long size)
1454{
1455 if (address < vma->vm_start || address + size > vma->vm_end ||
1456 !(vma->vm_flags & VM_PFNMAP))
1457 return -1;
f5cc4eef 1458 zap_page_range_single(vma, address, size, NULL);
c627f9cc
JS
1459 return 0;
1460}
1461EXPORT_SYMBOL_GPL(zap_vma_ptes);
1462
25ca1d6c 1463pte_t *__get_locked_pte(struct mm_struct *mm, unsigned long addr,
920c7a5d 1464 spinlock_t **ptl)
c9cfcddf 1465{
166f61b9
TH
1466 pgd_t *pgd = pgd_offset(mm, addr);
1467 pud_t *pud = pud_alloc(mm, pgd, addr);
c9cfcddf 1468 if (pud) {
166f61b9 1469 pmd_t *pmd = pmd_alloc(mm, pud, addr);
f66055ab
AA
1470 if (pmd) {
1471 VM_BUG_ON(pmd_trans_huge(*pmd));
c9cfcddf 1472 return pte_alloc_map_lock(mm, pmd, addr, ptl);
f66055ab 1473 }
c9cfcddf
LT
1474 }
1475 return NULL;
1476}
1477
238f58d8
LT
1478/*
1479 * This is the old fallback for page remapping.
1480 *
1481 * For historical reasons, it only allows reserved pages. Only
1482 * old drivers should use this, and they needed to mark their
1483 * pages reserved for the old functions anyway.
1484 */
423bad60
NP
1485static int insert_page(struct vm_area_struct *vma, unsigned long addr,
1486 struct page *page, pgprot_t prot)
238f58d8 1487{
423bad60 1488 struct mm_struct *mm = vma->vm_mm;
238f58d8 1489 int retval;
c9cfcddf 1490 pte_t *pte;
8a9f3ccd
BS
1491 spinlock_t *ptl;
1492
238f58d8 1493 retval = -EINVAL;
a145dd41 1494 if (PageAnon(page))
5b4e655e 1495 goto out;
238f58d8
LT
1496 retval = -ENOMEM;
1497 flush_dcache_page(page);
c9cfcddf 1498 pte = get_locked_pte(mm, addr, &ptl);
238f58d8 1499 if (!pte)
5b4e655e 1500 goto out;
238f58d8
LT
1501 retval = -EBUSY;
1502 if (!pte_none(*pte))
1503 goto out_unlock;
1504
1505 /* Ok, finally just insert the thing.. */
1506 get_page(page);
eca56ff9 1507 inc_mm_counter_fast(mm, mm_counter_file(page));
dd78fedd 1508 page_add_file_rmap(page, false);
238f58d8
LT
1509 set_pte_at(mm, addr, pte, mk_pte(page, prot));
1510
1511 retval = 0;
8a9f3ccd
BS
1512 pte_unmap_unlock(pte, ptl);
1513 return retval;
238f58d8
LT
1514out_unlock:
1515 pte_unmap_unlock(pte, ptl);
1516out:
1517 return retval;
1518}
1519
bfa5bf6d
REB
1520/**
1521 * vm_insert_page - insert single page into user vma
1522 * @vma: user vma to map to
1523 * @addr: target user address of this page
1524 * @page: source kernel page
1525 *
a145dd41
LT
1526 * This allows drivers to insert individual pages they've allocated
1527 * into a user vma.
1528 *
1529 * The page has to be a nice clean _individual_ kernel allocation.
1530 * If you allocate a compound page, you need to have marked it as
1531 * such (__GFP_COMP), or manually just split the page up yourself
8dfcc9ba 1532 * (see split_page()).
a145dd41
LT
1533 *
1534 * NOTE! Traditionally this was done with "remap_pfn_range()" which
1535 * took an arbitrary page protection parameter. This doesn't allow
1536 * that. Your vma protection will have to be set up correctly, which
1537 * means that if you want a shared writable mapping, you'd better
1538 * ask for a shared writable mapping!
1539 *
1540 * The page does not need to be reserved.
4b6e1e37
KK
1541 *
1542 * Usually this function is called from f_op->mmap() handler
1543 * under mm->mmap_sem write-lock, so it can change vma->vm_flags.
1544 * Caller must set VM_MIXEDMAP on vma if it wants to call this
1545 * function from other places, for example from page-fault handler.
a145dd41 1546 */
423bad60
NP
1547int vm_insert_page(struct vm_area_struct *vma, unsigned long addr,
1548 struct page *page)
a145dd41
LT
1549{
1550 if (addr < vma->vm_start || addr >= vma->vm_end)
1551 return -EFAULT;
1552 if (!page_count(page))
1553 return -EINVAL;
4b6e1e37
KK
1554 if (!(vma->vm_flags & VM_MIXEDMAP)) {
1555 BUG_ON(down_read_trylock(&vma->vm_mm->mmap_sem));
1556 BUG_ON(vma->vm_flags & VM_PFNMAP);
1557 vma->vm_flags |= VM_MIXEDMAP;
1558 }
423bad60 1559 return insert_page(vma, addr, page, vma->vm_page_prot);
a145dd41 1560}
e3c3374f 1561EXPORT_SYMBOL(vm_insert_page);
a145dd41 1562
423bad60 1563static int insert_pfn(struct vm_area_struct *vma, unsigned long addr,
01c8f1c4 1564 pfn_t pfn, pgprot_t prot)
423bad60
NP
1565{
1566 struct mm_struct *mm = vma->vm_mm;
1567 int retval;
1568 pte_t *pte, entry;
1569 spinlock_t *ptl;
1570
1571 retval = -ENOMEM;
1572 pte = get_locked_pte(mm, addr, &ptl);
1573 if (!pte)
1574 goto out;
1575 retval = -EBUSY;
1576 if (!pte_none(*pte))
1577 goto out_unlock;
1578
1579 /* Ok, finally just insert the thing.. */
01c8f1c4
DW
1580 if (pfn_t_devmap(pfn))
1581 entry = pte_mkdevmap(pfn_t_pte(pfn, prot));
1582 else
1583 entry = pte_mkspecial(pfn_t_pte(pfn, prot));
423bad60 1584 set_pte_at(mm, addr, pte, entry);
4b3073e1 1585 update_mmu_cache(vma, addr, pte); /* XXX: why not for insert_page? */
423bad60
NP
1586
1587 retval = 0;
1588out_unlock:
1589 pte_unmap_unlock(pte, ptl);
1590out:
1591 return retval;
1592}
1593
e0dc0d8f
NP
1594/**
1595 * vm_insert_pfn - insert single pfn into user vma
1596 * @vma: user vma to map to
1597 * @addr: target user address of this page
1598 * @pfn: source kernel pfn
1599 *
c462f179 1600 * Similar to vm_insert_page, this allows drivers to insert individual pages
e0dc0d8f
NP
1601 * they've allocated into a user vma. Same comments apply.
1602 *
1603 * This function should only be called from a vm_ops->fault handler, and
1604 * in that case the handler should return NULL.
0d71d10a
NP
1605 *
1606 * vma cannot be a COW mapping.
1607 *
1608 * As this is called only for pages that do not currently exist, we
1609 * do not need to flush old virtual caches or the TLB.
e0dc0d8f
NP
1610 */
1611int vm_insert_pfn(struct vm_area_struct *vma, unsigned long addr,
423bad60 1612 unsigned long pfn)
1745cbc5
AL
1613{
1614 return vm_insert_pfn_prot(vma, addr, pfn, vma->vm_page_prot);
1615}
1616EXPORT_SYMBOL(vm_insert_pfn);
1617
1618/**
1619 * vm_insert_pfn_prot - insert single pfn into user vma with specified pgprot
1620 * @vma: user vma to map to
1621 * @addr: target user address of this page
1622 * @pfn: source kernel pfn
1623 * @pgprot: pgprot flags for the inserted page
1624 *
1625 * This is exactly like vm_insert_pfn, except that it allows drivers to
1626 * to override pgprot on a per-page basis.
1627 *
1628 * This only makes sense for IO mappings, and it makes no sense for
1629 * cow mappings. In general, using multiple vmas is preferable;
1630 * vm_insert_pfn_prot should only be used if using multiple VMAs is
1631 * impractical.
1632 */
1633int vm_insert_pfn_prot(struct vm_area_struct *vma, unsigned long addr,
1634 unsigned long pfn, pgprot_t pgprot)
e0dc0d8f 1635{
2ab64037 1636 int ret;
7e675137
NP
1637 /*
1638 * Technically, architectures with pte_special can avoid all these
1639 * restrictions (same for remap_pfn_range). However we would like
1640 * consistency in testing and feature parity among all, so we should
1641 * try to keep these invariants in place for everybody.
1642 */
b379d790
JH
1643 BUG_ON(!(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)));
1644 BUG_ON((vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) ==
1645 (VM_PFNMAP|VM_MIXEDMAP));
1646 BUG_ON((vma->vm_flags & VM_PFNMAP) && is_cow_mapping(vma->vm_flags));
1647 BUG_ON((vma->vm_flags & VM_MIXEDMAP) && pfn_valid(pfn));
e0dc0d8f 1648
423bad60
NP
1649 if (addr < vma->vm_start || addr >= vma->vm_end)
1650 return -EFAULT;
308a047c
BP
1651
1652 track_pfn_insert(vma, &pgprot, __pfn_to_pfn_t(pfn, PFN_DEV));
2ab64037 1653
01c8f1c4 1654 ret = insert_pfn(vma, addr, __pfn_to_pfn_t(pfn, PFN_DEV), pgprot);
2ab64037 1655
2ab64037 1656 return ret;
423bad60 1657}
1745cbc5 1658EXPORT_SYMBOL(vm_insert_pfn_prot);
e0dc0d8f 1659
423bad60 1660int vm_insert_mixed(struct vm_area_struct *vma, unsigned long addr,
01c8f1c4 1661 pfn_t pfn)
423bad60 1662{
87744ab3
DW
1663 pgprot_t pgprot = vma->vm_page_prot;
1664
423bad60 1665 BUG_ON(!(vma->vm_flags & VM_MIXEDMAP));
e0dc0d8f 1666
423bad60
NP
1667 if (addr < vma->vm_start || addr >= vma->vm_end)
1668 return -EFAULT;
308a047c
BP
1669
1670 track_pfn_insert(vma, &pgprot, pfn);
e0dc0d8f 1671
423bad60
NP
1672 /*
1673 * If we don't have pte special, then we have to use the pfn_valid()
1674 * based VM_MIXEDMAP scheme (see vm_normal_page), and thus we *must*
1675 * refcount the page if pfn_valid is true (hence insert_page rather
62eede62
HD
1676 * than insert_pfn). If a zero_pfn were inserted into a VM_MIXEDMAP
1677 * without pte special, it would there be refcounted as a normal page.
423bad60 1678 */
03fc2da6 1679 if (!HAVE_PTE_SPECIAL && !pfn_t_devmap(pfn) && pfn_t_valid(pfn)) {
423bad60
NP
1680 struct page *page;
1681
03fc2da6
DW
1682 /*
1683 * At this point we are committed to insert_page()
1684 * regardless of whether the caller specified flags that
1685 * result in pfn_t_has_page() == false.
1686 */
1687 page = pfn_to_page(pfn_t_to_pfn(pfn));
87744ab3 1688 return insert_page(vma, addr, page, pgprot);
423bad60 1689 }
87744ab3 1690 return insert_pfn(vma, addr, pfn, pgprot);
e0dc0d8f 1691}
423bad60 1692EXPORT_SYMBOL(vm_insert_mixed);
e0dc0d8f 1693
1da177e4
LT
1694/*
1695 * maps a range of physical memory into the requested pages. the old
1696 * mappings are removed. any references to nonexistent pages results
1697 * in null mappings (currently treated as "copy-on-access")
1698 */
1699static int remap_pte_range(struct mm_struct *mm, pmd_t *pmd,
1700 unsigned long addr, unsigned long end,
1701 unsigned long pfn, pgprot_t prot)
1702{
1703 pte_t *pte;
c74df32c 1704 spinlock_t *ptl;
1da177e4 1705
c74df32c 1706 pte = pte_alloc_map_lock(mm, pmd, addr, &ptl);
1da177e4
LT
1707 if (!pte)
1708 return -ENOMEM;
6606c3e0 1709 arch_enter_lazy_mmu_mode();
1da177e4
LT
1710 do {
1711 BUG_ON(!pte_none(*pte));
7e675137 1712 set_pte_at(mm, addr, pte, pte_mkspecial(pfn_pte(pfn, prot)));
1da177e4
LT
1713 pfn++;
1714 } while (pte++, addr += PAGE_SIZE, addr != end);
6606c3e0 1715 arch_leave_lazy_mmu_mode();
c74df32c 1716 pte_unmap_unlock(pte - 1, ptl);
1da177e4
LT
1717 return 0;
1718}
1719
1720static inline int remap_pmd_range(struct mm_struct *mm, pud_t *pud,
1721 unsigned long addr, unsigned long end,
1722 unsigned long pfn, pgprot_t prot)
1723{
1724 pmd_t *pmd;
1725 unsigned long next;
1726
1727 pfn -= addr >> PAGE_SHIFT;
1728 pmd = pmd_alloc(mm, pud, addr);
1729 if (!pmd)
1730 return -ENOMEM;
f66055ab 1731 VM_BUG_ON(pmd_trans_huge(*pmd));
1da177e4
LT
1732 do {
1733 next = pmd_addr_end(addr, end);
1734 if (remap_pte_range(mm, pmd, addr, next,
1735 pfn + (addr >> PAGE_SHIFT), prot))
1736 return -ENOMEM;
1737 } while (pmd++, addr = next, addr != end);
1738 return 0;
1739}
1740
1741static inline int remap_pud_range(struct mm_struct *mm, pgd_t *pgd,
1742 unsigned long addr, unsigned long end,
1743 unsigned long pfn, pgprot_t prot)
1744{
1745 pud_t *pud;
1746 unsigned long next;
1747
1748 pfn -= addr >> PAGE_SHIFT;
1749 pud = pud_alloc(mm, pgd, addr);
1750 if (!pud)
1751 return -ENOMEM;
1752 do {
1753 next = pud_addr_end(addr, end);
1754 if (remap_pmd_range(mm, pud, addr, next,
1755 pfn + (addr >> PAGE_SHIFT), prot))
1756 return -ENOMEM;
1757 } while (pud++, addr = next, addr != end);
1758 return 0;
1759}
1760
bfa5bf6d
REB
1761/**
1762 * remap_pfn_range - remap kernel memory to userspace
1763 * @vma: user vma to map to
1764 * @addr: target user address to start at
1765 * @pfn: physical address of kernel memory
1766 * @size: size of map area
1767 * @prot: page protection flags for this mapping
1768 *
1769 * Note: this is only safe if the mm semaphore is held when called.
1770 */
1da177e4
LT
1771int remap_pfn_range(struct vm_area_struct *vma, unsigned long addr,
1772 unsigned long pfn, unsigned long size, pgprot_t prot)
1773{
1774 pgd_t *pgd;
1775 unsigned long next;
2d15cab8 1776 unsigned long end = addr + PAGE_ALIGN(size);
1da177e4 1777 struct mm_struct *mm = vma->vm_mm;
d5957d2f 1778 unsigned long remap_pfn = pfn;
1da177e4
LT
1779 int err;
1780
1781 /*
1782 * Physically remapped pages are special. Tell the
1783 * rest of the world about it:
1784 * VM_IO tells people not to look at these pages
1785 * (accesses can have side effects).
6aab341e
LT
1786 * VM_PFNMAP tells the core MM that the base pages are just
1787 * raw PFN mappings, and do not have a "struct page" associated
1788 * with them.
314e51b9
KK
1789 * VM_DONTEXPAND
1790 * Disable vma merging and expanding with mremap().
1791 * VM_DONTDUMP
1792 * Omit vma from core dump, even when VM_IO turned off.
fb155c16
LT
1793 *
1794 * There's a horrible special case to handle copy-on-write
1795 * behaviour that some programs depend on. We mark the "original"
1796 * un-COW'ed pages by matching them up with "vma->vm_pgoff".
b3b9c293 1797 * See vm_normal_page() for details.
1da177e4 1798 */
b3b9c293
KK
1799 if (is_cow_mapping(vma->vm_flags)) {
1800 if (addr != vma->vm_start || end != vma->vm_end)
1801 return -EINVAL;
fb155c16 1802 vma->vm_pgoff = pfn;
b3b9c293
KK
1803 }
1804
d5957d2f 1805 err = track_pfn_remap(vma, &prot, remap_pfn, addr, PAGE_ALIGN(size));
b3b9c293 1806 if (err)
3c8bb73a 1807 return -EINVAL;
fb155c16 1808
314e51b9 1809 vma->vm_flags |= VM_IO | VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP;
1da177e4
LT
1810
1811 BUG_ON(addr >= end);
1812 pfn -= addr >> PAGE_SHIFT;
1813 pgd = pgd_offset(mm, addr);
1814 flush_cache_range(vma, addr, end);
1da177e4
LT
1815 do {
1816 next = pgd_addr_end(addr, end);
1817 err = remap_pud_range(mm, pgd, addr, next,
1818 pfn + (addr >> PAGE_SHIFT), prot);
1819 if (err)
1820 break;
1821 } while (pgd++, addr = next, addr != end);
2ab64037 1822
1823 if (err)
d5957d2f 1824 untrack_pfn(vma, remap_pfn, PAGE_ALIGN(size));
2ab64037 1825
1da177e4
LT
1826 return err;
1827}
1828EXPORT_SYMBOL(remap_pfn_range);
1829
b4cbb197
LT
1830/**
1831 * vm_iomap_memory - remap memory to userspace
1832 * @vma: user vma to map to
1833 * @start: start of area
1834 * @len: size of area
1835 *
1836 * This is a simplified io_remap_pfn_range() for common driver use. The
1837 * driver just needs to give us the physical memory range to be mapped,
1838 * we'll figure out the rest from the vma information.
1839 *
1840 * NOTE! Some drivers might want to tweak vma->vm_page_prot first to get
1841 * whatever write-combining details or similar.
1842 */
1843int vm_iomap_memory(struct vm_area_struct *vma, phys_addr_t start, unsigned long len)
1844{
1845 unsigned long vm_len, pfn, pages;
1846
1847 /* Check that the physical memory area passed in looks valid */
1848 if (start + len < start)
1849 return -EINVAL;
1850 /*
1851 * You *really* shouldn't map things that aren't page-aligned,
1852 * but we've historically allowed it because IO memory might
1853 * just have smaller alignment.
1854 */
1855 len += start & ~PAGE_MASK;
1856 pfn = start >> PAGE_SHIFT;
1857 pages = (len + ~PAGE_MASK) >> PAGE_SHIFT;
1858 if (pfn + pages < pfn)
1859 return -EINVAL;
1860
1861 /* We start the mapping 'vm_pgoff' pages into the area */
1862 if (vma->vm_pgoff > pages)
1863 return -EINVAL;
1864 pfn += vma->vm_pgoff;
1865 pages -= vma->vm_pgoff;
1866
1867 /* Can we fit all of the mapping? */
1868 vm_len = vma->vm_end - vma->vm_start;
1869 if (vm_len >> PAGE_SHIFT > pages)
1870 return -EINVAL;
1871
1872 /* Ok, let it rip */
1873 return io_remap_pfn_range(vma, vma->vm_start, pfn, vm_len, vma->vm_page_prot);
1874}
1875EXPORT_SYMBOL(vm_iomap_memory);
1876
aee16b3c
JF
1877static int apply_to_pte_range(struct mm_struct *mm, pmd_t *pmd,
1878 unsigned long addr, unsigned long end,
1879 pte_fn_t fn, void *data)
1880{
1881 pte_t *pte;
1882 int err;
2f569afd 1883 pgtable_t token;
94909914 1884 spinlock_t *uninitialized_var(ptl);
aee16b3c
JF
1885
1886 pte = (mm == &init_mm) ?
1887 pte_alloc_kernel(pmd, addr) :
1888 pte_alloc_map_lock(mm, pmd, addr, &ptl);
1889 if (!pte)
1890 return -ENOMEM;
1891
1892 BUG_ON(pmd_huge(*pmd));
1893
38e0edb1
JF
1894 arch_enter_lazy_mmu_mode();
1895
2f569afd 1896 token = pmd_pgtable(*pmd);
aee16b3c
JF
1897
1898 do {
c36987e2 1899 err = fn(pte++, token, addr, data);
aee16b3c
JF
1900 if (err)
1901 break;
c36987e2 1902 } while (addr += PAGE_SIZE, addr != end);
aee16b3c 1903
38e0edb1
JF
1904 arch_leave_lazy_mmu_mode();
1905
aee16b3c
JF
1906 if (mm != &init_mm)
1907 pte_unmap_unlock(pte-1, ptl);
1908 return err;
1909}
1910
1911static int apply_to_pmd_range(struct mm_struct *mm, pud_t *pud,
1912 unsigned long addr, unsigned long end,
1913 pte_fn_t fn, void *data)
1914{
1915 pmd_t *pmd;
1916 unsigned long next;
1917 int err;
1918
ceb86879
AK
1919 BUG_ON(pud_huge(*pud));
1920
aee16b3c
JF
1921 pmd = pmd_alloc(mm, pud, addr);
1922 if (!pmd)
1923 return -ENOMEM;
1924 do {
1925 next = pmd_addr_end(addr, end);
1926 err = apply_to_pte_range(mm, pmd, addr, next, fn, data);
1927 if (err)
1928 break;
1929 } while (pmd++, addr = next, addr != end);
1930 return err;
1931}
1932
1933static int apply_to_pud_range(struct mm_struct *mm, pgd_t *pgd,
1934 unsigned long addr, unsigned long end,
1935 pte_fn_t fn, void *data)
1936{
1937 pud_t *pud;
1938 unsigned long next;
1939 int err;
1940
1941 pud = pud_alloc(mm, pgd, addr);
1942 if (!pud)
1943 return -ENOMEM;
1944 do {
1945 next = pud_addr_end(addr, end);
1946 err = apply_to_pmd_range(mm, pud, addr, next, fn, data);
1947 if (err)
1948 break;
1949 } while (pud++, addr = next, addr != end);
1950 return err;
1951}
1952
1953/*
1954 * Scan a region of virtual memory, filling in page tables as necessary
1955 * and calling a provided function on each leaf page table.
1956 */
1957int apply_to_page_range(struct mm_struct *mm, unsigned long addr,
1958 unsigned long size, pte_fn_t fn, void *data)
1959{
1960 pgd_t *pgd;
1961 unsigned long next;
57250a5b 1962 unsigned long end = addr + size;
aee16b3c
JF
1963 int err;
1964
9cb65bc3
MP
1965 if (WARN_ON(addr >= end))
1966 return -EINVAL;
1967
aee16b3c
JF
1968 pgd = pgd_offset(mm, addr);
1969 do {
1970 next = pgd_addr_end(addr, end);
1971 err = apply_to_pud_range(mm, pgd, addr, next, fn, data);
1972 if (err)
1973 break;
1974 } while (pgd++, addr = next, addr != end);
57250a5b 1975
aee16b3c
JF
1976 return err;
1977}
1978EXPORT_SYMBOL_GPL(apply_to_page_range);
1979
8f4e2101 1980/*
9b4bdd2f
KS
1981 * handle_pte_fault chooses page fault handler according to an entry which was
1982 * read non-atomically. Before making any commitment, on those architectures
1983 * or configurations (e.g. i386 with PAE) which might give a mix of unmatched
1984 * parts, do_swap_page must check under lock before unmapping the pte and
1985 * proceeding (but do_wp_page is only called after already making such a check;
a335b2e1 1986 * and do_anonymous_page can safely check later on).
8f4e2101 1987 */
4c21e2f2 1988static inline int pte_unmap_same(struct mm_struct *mm, pmd_t *pmd,
8f4e2101
HD
1989 pte_t *page_table, pte_t orig_pte)
1990{
1991 int same = 1;
1992#if defined(CONFIG_SMP) || defined(CONFIG_PREEMPT)
1993 if (sizeof(pte_t) > sizeof(unsigned long)) {
4c21e2f2
HD
1994 spinlock_t *ptl = pte_lockptr(mm, pmd);
1995 spin_lock(ptl);
8f4e2101 1996 same = pte_same(*page_table, orig_pte);
4c21e2f2 1997 spin_unlock(ptl);
8f4e2101
HD
1998 }
1999#endif
2000 pte_unmap(page_table);
2001 return same;
2002}
2003
9de455b2 2004static inline void cow_user_page(struct page *dst, struct page *src, unsigned long va, struct vm_area_struct *vma)
6aab341e 2005{
0abdd7a8
DW
2006 debug_dma_assert_idle(src);
2007
6aab341e
LT
2008 /*
2009 * If the source page was a PFN mapping, we don't have
2010 * a "struct page" for it. We do a best-effort copy by
2011 * just copying from the original user address. If that
2012 * fails, we just zero-fill it. Live with it.
2013 */
2014 if (unlikely(!src)) {
9b04c5fe 2015 void *kaddr = kmap_atomic(dst);
5d2a2dbb
LT
2016 void __user *uaddr = (void __user *)(va & PAGE_MASK);
2017
2018 /*
2019 * This really shouldn't fail, because the page is there
2020 * in the page tables. But it might just be unreadable,
2021 * in which case we just give up and fill the result with
2022 * zeroes.
2023 */
2024 if (__copy_from_user_inatomic(kaddr, uaddr, PAGE_SIZE))
3ecb01df 2025 clear_page(kaddr);
9b04c5fe 2026 kunmap_atomic(kaddr);
c4ec7b0d 2027 flush_dcache_page(dst);
0ed361de
NP
2028 } else
2029 copy_user_highpage(dst, src, va, vma);
6aab341e
LT
2030}
2031
c20cd45e
MH
2032static gfp_t __get_fault_gfp_mask(struct vm_area_struct *vma)
2033{
2034 struct file *vm_file = vma->vm_file;
2035
2036 if (vm_file)
2037 return mapping_gfp_mask(vm_file->f_mapping) | __GFP_FS | __GFP_IO;
2038
2039 /*
2040 * Special mappings (e.g. VDSO) do not have any file so fake
2041 * a default GFP_KERNEL for them.
2042 */
2043 return GFP_KERNEL;
2044}
2045
fb09a464
KS
2046/*
2047 * Notify the address space that the page is about to become writable so that
2048 * it can prohibit this or wait for the page to get into an appropriate state.
2049 *
2050 * We do this without the lock held, so that it can sleep if it needs to.
2051 */
38b8cb7f 2052static int do_page_mkwrite(struct vm_fault *vmf)
fb09a464 2053{
fb09a464 2054 int ret;
38b8cb7f
JK
2055 struct page *page = vmf->page;
2056 unsigned int old_flags = vmf->flags;
fb09a464 2057
38b8cb7f 2058 vmf->flags = FAULT_FLAG_WRITE|FAULT_FLAG_MKWRITE;
fb09a464 2059
11bac800 2060 ret = vmf->vma->vm_ops->page_mkwrite(vmf);
38b8cb7f
JK
2061 /* Restore original flags so that caller is not surprised */
2062 vmf->flags = old_flags;
fb09a464
KS
2063 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE)))
2064 return ret;
2065 if (unlikely(!(ret & VM_FAULT_LOCKED))) {
2066 lock_page(page);
2067 if (!page->mapping) {
2068 unlock_page(page);
2069 return 0; /* retry */
2070 }
2071 ret |= VM_FAULT_LOCKED;
2072 } else
2073 VM_BUG_ON_PAGE(!PageLocked(page), page);
2074 return ret;
2075}
2076
97ba0c2b
JK
2077/*
2078 * Handle dirtying of a page in shared file mapping on a write fault.
2079 *
2080 * The function expects the page to be locked and unlocks it.
2081 */
2082static void fault_dirty_shared_page(struct vm_area_struct *vma,
2083 struct page *page)
2084{
2085 struct address_space *mapping;
2086 bool dirtied;
2087 bool page_mkwrite = vma->vm_ops && vma->vm_ops->page_mkwrite;
2088
2089 dirtied = set_page_dirty(page);
2090 VM_BUG_ON_PAGE(PageAnon(page), page);
2091 /*
2092 * Take a local copy of the address_space - page.mapping may be zeroed
2093 * by truncate after unlock_page(). The address_space itself remains
2094 * pinned by vma->vm_file's reference. We rely on unlock_page()'s
2095 * release semantics to prevent the compiler from undoing this copying.
2096 */
2097 mapping = page_rmapping(page);
2098 unlock_page(page);
2099
2100 if ((dirtied || page_mkwrite) && mapping) {
2101 /*
2102 * Some device drivers do not set page.mapping
2103 * but still dirty their pages
2104 */
2105 balance_dirty_pages_ratelimited(mapping);
2106 }
2107
2108 if (!page_mkwrite)
2109 file_update_time(vma->vm_file);
2110}
2111
4e047f89
SR
2112/*
2113 * Handle write page faults for pages that can be reused in the current vma
2114 *
2115 * This can happen either due to the mapping being with the VM_SHARED flag,
2116 * or due to us being the last reference standing to the page. In either
2117 * case, all we need to do here is to mark the page as writable and update
2118 * any related book-keeping.
2119 */
997dd98d 2120static inline void wp_page_reuse(struct vm_fault *vmf)
82b0f8c3 2121 __releases(vmf->ptl)
4e047f89 2122{
82b0f8c3 2123 struct vm_area_struct *vma = vmf->vma;
a41b70d6 2124 struct page *page = vmf->page;
4e047f89
SR
2125 pte_t entry;
2126 /*
2127 * Clear the pages cpupid information as the existing
2128 * information potentially belongs to a now completely
2129 * unrelated process.
2130 */
2131 if (page)
2132 page_cpupid_xchg_last(page, (1 << LAST_CPUPID_SHIFT) - 1);
2133
2994302b
JK
2134 flush_cache_page(vma, vmf->address, pte_pfn(vmf->orig_pte));
2135 entry = pte_mkyoung(vmf->orig_pte);
4e047f89 2136 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
82b0f8c3
JK
2137 if (ptep_set_access_flags(vma, vmf->address, vmf->pte, entry, 1))
2138 update_mmu_cache(vma, vmf->address, vmf->pte);
2139 pte_unmap_unlock(vmf->pte, vmf->ptl);
4e047f89
SR
2140}
2141
2f38ab2c
SR
2142/*
2143 * Handle the case of a page which we actually need to copy to a new page.
2144 *
2145 * Called with mmap_sem locked and the old page referenced, but
2146 * without the ptl held.
2147 *
2148 * High level logic flow:
2149 *
2150 * - Allocate a page, copy the content of the old page to the new one.
2151 * - Handle book keeping and accounting - cgroups, mmu-notifiers, etc.
2152 * - Take the PTL. If the pte changed, bail out and release the allocated page
2153 * - If the pte is still the way we remember it, update the page table and all
2154 * relevant references. This includes dropping the reference the page-table
2155 * held to the old page, as well as updating the rmap.
2156 * - In any case, unlock the PTL and drop the reference we took to the old page.
2157 */
a41b70d6 2158static int wp_page_copy(struct vm_fault *vmf)
2f38ab2c 2159{
82b0f8c3 2160 struct vm_area_struct *vma = vmf->vma;
bae473a4 2161 struct mm_struct *mm = vma->vm_mm;
a41b70d6 2162 struct page *old_page = vmf->page;
2f38ab2c 2163 struct page *new_page = NULL;
2f38ab2c
SR
2164 pte_t entry;
2165 int page_copied = 0;
82b0f8c3 2166 const unsigned long mmun_start = vmf->address & PAGE_MASK;
bae473a4 2167 const unsigned long mmun_end = mmun_start + PAGE_SIZE;
2f38ab2c
SR
2168 struct mem_cgroup *memcg;
2169
2170 if (unlikely(anon_vma_prepare(vma)))
2171 goto oom;
2172
2994302b 2173 if (is_zero_pfn(pte_pfn(vmf->orig_pte))) {
82b0f8c3
JK
2174 new_page = alloc_zeroed_user_highpage_movable(vma,
2175 vmf->address);
2f38ab2c
SR
2176 if (!new_page)
2177 goto oom;
2178 } else {
bae473a4 2179 new_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma,
82b0f8c3 2180 vmf->address);
2f38ab2c
SR
2181 if (!new_page)
2182 goto oom;
82b0f8c3 2183 cow_user_page(new_page, old_page, vmf->address, vma);
2f38ab2c 2184 }
2f38ab2c 2185
f627c2f5 2186 if (mem_cgroup_try_charge(new_page, mm, GFP_KERNEL, &memcg, false))
2f38ab2c
SR
2187 goto oom_free_new;
2188
eb3c24f3
MG
2189 __SetPageUptodate(new_page);
2190
2f38ab2c
SR
2191 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
2192
2193 /*
2194 * Re-check the pte - we dropped the lock
2195 */
82b0f8c3 2196 vmf->pte = pte_offset_map_lock(mm, vmf->pmd, vmf->address, &vmf->ptl);
2994302b 2197 if (likely(pte_same(*vmf->pte, vmf->orig_pte))) {
2f38ab2c
SR
2198 if (old_page) {
2199 if (!PageAnon(old_page)) {
eca56ff9
JM
2200 dec_mm_counter_fast(mm,
2201 mm_counter_file(old_page));
2f38ab2c
SR
2202 inc_mm_counter_fast(mm, MM_ANONPAGES);
2203 }
2204 } else {
2205 inc_mm_counter_fast(mm, MM_ANONPAGES);
2206 }
2994302b 2207 flush_cache_page(vma, vmf->address, pte_pfn(vmf->orig_pte));
2f38ab2c
SR
2208 entry = mk_pte(new_page, vma->vm_page_prot);
2209 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
2210 /*
2211 * Clear the pte entry and flush it first, before updating the
2212 * pte with the new entry. This will avoid a race condition
2213 * seen in the presence of one thread doing SMC and another
2214 * thread doing COW.
2215 */
82b0f8c3
JK
2216 ptep_clear_flush_notify(vma, vmf->address, vmf->pte);
2217 page_add_new_anon_rmap(new_page, vma, vmf->address, false);
f627c2f5 2218 mem_cgroup_commit_charge(new_page, memcg, false, false);
2f38ab2c
SR
2219 lru_cache_add_active_or_unevictable(new_page, vma);
2220 /*
2221 * We call the notify macro here because, when using secondary
2222 * mmu page tables (such as kvm shadow page tables), we want the
2223 * new page to be mapped directly into the secondary page table.
2224 */
82b0f8c3
JK
2225 set_pte_at_notify(mm, vmf->address, vmf->pte, entry);
2226 update_mmu_cache(vma, vmf->address, vmf->pte);
2f38ab2c
SR
2227 if (old_page) {
2228 /*
2229 * Only after switching the pte to the new page may
2230 * we remove the mapcount here. Otherwise another
2231 * process may come and find the rmap count decremented
2232 * before the pte is switched to the new page, and
2233 * "reuse" the old page writing into it while our pte
2234 * here still points into it and can be read by other
2235 * threads.
2236 *
2237 * The critical issue is to order this
2238 * page_remove_rmap with the ptp_clear_flush above.
2239 * Those stores are ordered by (if nothing else,)
2240 * the barrier present in the atomic_add_negative
2241 * in page_remove_rmap.
2242 *
2243 * Then the TLB flush in ptep_clear_flush ensures that
2244 * no process can access the old page before the
2245 * decremented mapcount is visible. And the old page
2246 * cannot be reused until after the decremented
2247 * mapcount is visible. So transitively, TLBs to
2248 * old page will be flushed before it can be reused.
2249 */
d281ee61 2250 page_remove_rmap(old_page, false);
2f38ab2c
SR
2251 }
2252
2253 /* Free the old page.. */
2254 new_page = old_page;
2255 page_copied = 1;
2256 } else {
f627c2f5 2257 mem_cgroup_cancel_charge(new_page, memcg, false);
2f38ab2c
SR
2258 }
2259
2260 if (new_page)
09cbfeaf 2261 put_page(new_page);
2f38ab2c 2262
82b0f8c3 2263 pte_unmap_unlock(vmf->pte, vmf->ptl);
2f38ab2c
SR
2264 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
2265 if (old_page) {
2266 /*
2267 * Don't let another task, with possibly unlocked vma,
2268 * keep the mlocked page.
2269 */
2270 if (page_copied && (vma->vm_flags & VM_LOCKED)) {
2271 lock_page(old_page); /* LRU manipulation */
e90309c9
KS
2272 if (PageMlocked(old_page))
2273 munlock_vma_page(old_page);
2f38ab2c
SR
2274 unlock_page(old_page);
2275 }
09cbfeaf 2276 put_page(old_page);
2f38ab2c
SR
2277 }
2278 return page_copied ? VM_FAULT_WRITE : 0;
2279oom_free_new:
09cbfeaf 2280 put_page(new_page);
2f38ab2c
SR
2281oom:
2282 if (old_page)
09cbfeaf 2283 put_page(old_page);
2f38ab2c
SR
2284 return VM_FAULT_OOM;
2285}
2286
66a6197c
JK
2287/**
2288 * finish_mkwrite_fault - finish page fault for a shared mapping, making PTE
2289 * writeable once the page is prepared
2290 *
2291 * @vmf: structure describing the fault
2292 *
2293 * This function handles all that is needed to finish a write page fault in a
2294 * shared mapping due to PTE being read-only once the mapped page is prepared.
2295 * It handles locking of PTE and modifying it. The function returns
2296 * VM_FAULT_WRITE on success, 0 when PTE got changed before we acquired PTE
2297 * lock.
2298 *
2299 * The function expects the page to be locked or other protection against
2300 * concurrent faults / writeback (such as DAX radix tree locks).
2301 */
2302int finish_mkwrite_fault(struct vm_fault *vmf)
2303{
2304 WARN_ON_ONCE(!(vmf->vma->vm_flags & VM_SHARED));
2305 vmf->pte = pte_offset_map_lock(vmf->vma->vm_mm, vmf->pmd, vmf->address,
2306 &vmf->ptl);
2307 /*
2308 * We might have raced with another page fault while we released the
2309 * pte_offset_map_lock.
2310 */
2311 if (!pte_same(*vmf->pte, vmf->orig_pte)) {
2312 pte_unmap_unlock(vmf->pte, vmf->ptl);
a19e2553 2313 return VM_FAULT_NOPAGE;
66a6197c
JK
2314 }
2315 wp_page_reuse(vmf);
a19e2553 2316 return 0;
66a6197c
JK
2317}
2318
dd906184
BH
2319/*
2320 * Handle write page faults for VM_MIXEDMAP or VM_PFNMAP for a VM_SHARED
2321 * mapping
2322 */
2994302b 2323static int wp_pfn_shared(struct vm_fault *vmf)
dd906184 2324{
82b0f8c3 2325 struct vm_area_struct *vma = vmf->vma;
bae473a4 2326
dd906184 2327 if (vma->vm_ops && vma->vm_ops->pfn_mkwrite) {
dd906184
BH
2328 int ret;
2329
82b0f8c3 2330 pte_unmap_unlock(vmf->pte, vmf->ptl);
fe82221f 2331 vmf->flags |= FAULT_FLAG_MKWRITE;
11bac800 2332 ret = vma->vm_ops->pfn_mkwrite(vmf);
2f89dc12 2333 if (ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE))
dd906184 2334 return ret;
66a6197c 2335 return finish_mkwrite_fault(vmf);
dd906184 2336 }
997dd98d
JK
2337 wp_page_reuse(vmf);
2338 return VM_FAULT_WRITE;
dd906184
BH
2339}
2340
a41b70d6 2341static int wp_page_shared(struct vm_fault *vmf)
82b0f8c3 2342 __releases(vmf->ptl)
93e478d4 2343{
82b0f8c3 2344 struct vm_area_struct *vma = vmf->vma;
93e478d4 2345
a41b70d6 2346 get_page(vmf->page);
93e478d4 2347
93e478d4
SR
2348 if (vma->vm_ops && vma->vm_ops->page_mkwrite) {
2349 int tmp;
2350
82b0f8c3 2351 pte_unmap_unlock(vmf->pte, vmf->ptl);
38b8cb7f 2352 tmp = do_page_mkwrite(vmf);
93e478d4
SR
2353 if (unlikely(!tmp || (tmp &
2354 (VM_FAULT_ERROR | VM_FAULT_NOPAGE)))) {
a41b70d6 2355 put_page(vmf->page);
93e478d4
SR
2356 return tmp;
2357 }
66a6197c 2358 tmp = finish_mkwrite_fault(vmf);
a19e2553 2359 if (unlikely(tmp & (VM_FAULT_ERROR | VM_FAULT_NOPAGE))) {
a41b70d6 2360 unlock_page(vmf->page);
a41b70d6 2361 put_page(vmf->page);
66a6197c 2362 return tmp;
93e478d4 2363 }
66a6197c
JK
2364 } else {
2365 wp_page_reuse(vmf);
997dd98d 2366 lock_page(vmf->page);
93e478d4 2367 }
997dd98d
JK
2368 fault_dirty_shared_page(vma, vmf->page);
2369 put_page(vmf->page);
93e478d4 2370
997dd98d 2371 return VM_FAULT_WRITE;
93e478d4
SR
2372}
2373
1da177e4
LT
2374/*
2375 * This routine handles present pages, when users try to write
2376 * to a shared page. It is done by copying the page to a new address
2377 * and decrementing the shared-page counter for the old page.
2378 *
1da177e4
LT
2379 * Note that this routine assumes that the protection checks have been
2380 * done by the caller (the low-level page fault routine in most cases).
2381 * Thus we can safely just mark it writable once we've done any necessary
2382 * COW.
2383 *
2384 * We also mark the page dirty at this point even though the page will
2385 * change only once the write actually happens. This avoids a few races,
2386 * and potentially makes it more efficient.
2387 *
8f4e2101
HD
2388 * We enter with non-exclusive mmap_sem (to exclude vma changes,
2389 * but allow concurrent faults), with pte both mapped and locked.
2390 * We return with mmap_sem still held, but pte unmapped and unlocked.
1da177e4 2391 */
2994302b 2392static int do_wp_page(struct vm_fault *vmf)
82b0f8c3 2393 __releases(vmf->ptl)
1da177e4 2394{
82b0f8c3 2395 struct vm_area_struct *vma = vmf->vma;
1da177e4 2396
a41b70d6
JK
2397 vmf->page = vm_normal_page(vma, vmf->address, vmf->orig_pte);
2398 if (!vmf->page) {
251b97f5 2399 /*
64e45507
PF
2400 * VM_MIXEDMAP !pfn_valid() case, or VM_SOFTDIRTY clear on a
2401 * VM_PFNMAP VMA.
251b97f5
PZ
2402 *
2403 * We should not cow pages in a shared writeable mapping.
dd906184 2404 * Just mark the pages writable and/or call ops->pfn_mkwrite.
251b97f5
PZ
2405 */
2406 if ((vma->vm_flags & (VM_WRITE|VM_SHARED)) ==
2407 (VM_WRITE|VM_SHARED))
2994302b 2408 return wp_pfn_shared(vmf);
2f38ab2c 2409
82b0f8c3 2410 pte_unmap_unlock(vmf->pte, vmf->ptl);
a41b70d6 2411 return wp_page_copy(vmf);
251b97f5 2412 }
1da177e4 2413
d08b3851 2414 /*
ee6a6457
PZ
2415 * Take out anonymous pages first, anonymous shared vmas are
2416 * not dirty accountable.
d08b3851 2417 */
a41b70d6 2418 if (PageAnon(vmf->page) && !PageKsm(vmf->page)) {
6d0a07ed 2419 int total_mapcount;
a41b70d6
JK
2420 if (!trylock_page(vmf->page)) {
2421 get_page(vmf->page);
82b0f8c3 2422 pte_unmap_unlock(vmf->pte, vmf->ptl);
a41b70d6 2423 lock_page(vmf->page);
82b0f8c3
JK
2424 vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd,
2425 vmf->address, &vmf->ptl);
2994302b 2426 if (!pte_same(*vmf->pte, vmf->orig_pte)) {
a41b70d6 2427 unlock_page(vmf->page);
82b0f8c3 2428 pte_unmap_unlock(vmf->pte, vmf->ptl);
a41b70d6 2429 put_page(vmf->page);
28766805 2430 return 0;
ab967d86 2431 }
a41b70d6 2432 put_page(vmf->page);
ee6a6457 2433 }
a41b70d6 2434 if (reuse_swap_page(vmf->page, &total_mapcount)) {
6d0a07ed
AA
2435 if (total_mapcount == 1) {
2436 /*
2437 * The page is all ours. Move it to
2438 * our anon_vma so the rmap code will
2439 * not search our parent or siblings.
2440 * Protected against the rmap code by
2441 * the page lock.
2442 */
a41b70d6 2443 page_move_anon_rmap(vmf->page, vma);
6d0a07ed 2444 }
a41b70d6 2445 unlock_page(vmf->page);
997dd98d
JK
2446 wp_page_reuse(vmf);
2447 return VM_FAULT_WRITE;
b009c024 2448 }
a41b70d6 2449 unlock_page(vmf->page);
ee6a6457 2450 } else if (unlikely((vma->vm_flags & (VM_WRITE|VM_SHARED)) ==
d08b3851 2451 (VM_WRITE|VM_SHARED))) {
a41b70d6 2452 return wp_page_shared(vmf);
1da177e4 2453 }
1da177e4
LT
2454
2455 /*
2456 * Ok, we need to copy. Oh, well..
2457 */
a41b70d6 2458 get_page(vmf->page);
28766805 2459
82b0f8c3 2460 pte_unmap_unlock(vmf->pte, vmf->ptl);
a41b70d6 2461 return wp_page_copy(vmf);
1da177e4
LT
2462}
2463
97a89413 2464static void unmap_mapping_range_vma(struct vm_area_struct *vma,
1da177e4
LT
2465 unsigned long start_addr, unsigned long end_addr,
2466 struct zap_details *details)
2467{
f5cc4eef 2468 zap_page_range_single(vma, start_addr, end_addr - start_addr, details);
1da177e4
LT
2469}
2470
6b2dbba8 2471static inline void unmap_mapping_range_tree(struct rb_root *root,
1da177e4
LT
2472 struct zap_details *details)
2473{
2474 struct vm_area_struct *vma;
1da177e4
LT
2475 pgoff_t vba, vea, zba, zea;
2476
6b2dbba8 2477 vma_interval_tree_foreach(vma, root,
1da177e4 2478 details->first_index, details->last_index) {
1da177e4
LT
2479
2480 vba = vma->vm_pgoff;
d6e93217 2481 vea = vba + vma_pages(vma) - 1;
1da177e4
LT
2482 zba = details->first_index;
2483 if (zba < vba)
2484 zba = vba;
2485 zea = details->last_index;
2486 if (zea > vea)
2487 zea = vea;
2488
97a89413 2489 unmap_mapping_range_vma(vma,
1da177e4
LT
2490 ((zba - vba) << PAGE_SHIFT) + vma->vm_start,
2491 ((zea - vba + 1) << PAGE_SHIFT) + vma->vm_start,
97a89413 2492 details);
1da177e4
LT
2493 }
2494}
2495
1da177e4 2496/**
8a5f14a2
KS
2497 * unmap_mapping_range - unmap the portion of all mmaps in the specified
2498 * address_space corresponding to the specified page range in the underlying
2499 * file.
2500 *
3d41088f 2501 * @mapping: the address space containing mmaps to be unmapped.
1da177e4
LT
2502 * @holebegin: byte in first page to unmap, relative to the start of
2503 * the underlying file. This will be rounded down to a PAGE_SIZE
25d9e2d1 2504 * boundary. Note that this is different from truncate_pagecache(), which
1da177e4
LT
2505 * must keep the partial page. In contrast, we must get rid of
2506 * partial pages.
2507 * @holelen: size of prospective hole in bytes. This will be rounded
2508 * up to a PAGE_SIZE boundary. A holelen of zero truncates to the
2509 * end of the file.
2510 * @even_cows: 1 when truncating a file, unmap even private COWed pages;
2511 * but 0 when invalidating pagecache, don't throw away private data.
2512 */
2513void unmap_mapping_range(struct address_space *mapping,
2514 loff_t const holebegin, loff_t const holelen, int even_cows)
2515{
aac45363 2516 struct zap_details details = { };
1da177e4
LT
2517 pgoff_t hba = holebegin >> PAGE_SHIFT;
2518 pgoff_t hlen = (holelen + PAGE_SIZE - 1) >> PAGE_SHIFT;
2519
2520 /* Check for overflow. */
2521 if (sizeof(holelen) > sizeof(hlen)) {
2522 long long holeend =
2523 (holebegin + holelen + PAGE_SIZE - 1) >> PAGE_SHIFT;
2524 if (holeend & ~(long long)ULONG_MAX)
2525 hlen = ULONG_MAX - hba + 1;
2526 }
2527
166f61b9 2528 details.check_mapping = even_cows ? NULL : mapping;
1da177e4
LT
2529 details.first_index = hba;
2530 details.last_index = hba + hlen - 1;
2531 if (details.last_index < details.first_index)
2532 details.last_index = ULONG_MAX;
1da177e4 2533
46c043ed 2534 i_mmap_lock_write(mapping);
6b2dbba8 2535 if (unlikely(!RB_EMPTY_ROOT(&mapping->i_mmap)))
1da177e4 2536 unmap_mapping_range_tree(&mapping->i_mmap, &details);
46c043ed 2537 i_mmap_unlock_write(mapping);
1da177e4
LT
2538}
2539EXPORT_SYMBOL(unmap_mapping_range);
2540
1da177e4 2541/*
8f4e2101
HD
2542 * We enter with non-exclusive mmap_sem (to exclude vma changes,
2543 * but allow concurrent faults), and pte mapped but not yet locked.
9a95f3cf
PC
2544 * We return with pte unmapped and unlocked.
2545 *
2546 * We return with the mmap_sem locked or unlocked in the same cases
2547 * as does filemap_fault().
1da177e4 2548 */
2994302b 2549int do_swap_page(struct vm_fault *vmf)
1da177e4 2550{
82b0f8c3 2551 struct vm_area_struct *vma = vmf->vma;
56f31801 2552 struct page *page, *swapcache;
00501b53 2553 struct mem_cgroup *memcg;
65500d23 2554 swp_entry_t entry;
1da177e4 2555 pte_t pte;
d065bd81 2556 int locked;
ad8c2ee8 2557 int exclusive = 0;
83c54070 2558 int ret = 0;
1da177e4 2559
2994302b 2560 if (!pte_unmap_same(vma->vm_mm, vmf->pmd, vmf->pte, vmf->orig_pte))
8f4e2101 2561 goto out;
65500d23 2562
2994302b 2563 entry = pte_to_swp_entry(vmf->orig_pte);
d1737fdb
AK
2564 if (unlikely(non_swap_entry(entry))) {
2565 if (is_migration_entry(entry)) {
82b0f8c3
JK
2566 migration_entry_wait(vma->vm_mm, vmf->pmd,
2567 vmf->address);
d1737fdb
AK
2568 } else if (is_hwpoison_entry(entry)) {
2569 ret = VM_FAULT_HWPOISON;
2570 } else {
2994302b 2571 print_bad_pte(vma, vmf->address, vmf->orig_pte, NULL);
d99be1a8 2572 ret = VM_FAULT_SIGBUS;
d1737fdb 2573 }
0697212a
CL
2574 goto out;
2575 }
0ff92245 2576 delayacct_set_flag(DELAYACCT_PF_SWAPIN);
1da177e4
LT
2577 page = lookup_swap_cache(entry);
2578 if (!page) {
82b0f8c3
JK
2579 page = swapin_readahead(entry, GFP_HIGHUSER_MOVABLE, vma,
2580 vmf->address);
1da177e4
LT
2581 if (!page) {
2582 /*
8f4e2101
HD
2583 * Back out if somebody else faulted in this pte
2584 * while we released the pte lock.
1da177e4 2585 */
82b0f8c3
JK
2586 vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd,
2587 vmf->address, &vmf->ptl);
2994302b 2588 if (likely(pte_same(*vmf->pte, vmf->orig_pte)))
1da177e4 2589 ret = VM_FAULT_OOM;
0ff92245 2590 delayacct_clear_flag(DELAYACCT_PF_SWAPIN);
65500d23 2591 goto unlock;
1da177e4
LT
2592 }
2593
2594 /* Had to read the page from swap area: Major fault */
2595 ret = VM_FAULT_MAJOR;
f8891e5e 2596 count_vm_event(PGMAJFAULT);
bae473a4 2597 mem_cgroup_count_vm_event(vma->vm_mm, PGMAJFAULT);
d1737fdb 2598 } else if (PageHWPoison(page)) {
71f72525
WF
2599 /*
2600 * hwpoisoned dirty swapcache pages are kept for killing
2601 * owner processes (which may be unknown at hwpoison time)
2602 */
d1737fdb
AK
2603 ret = VM_FAULT_HWPOISON;
2604 delayacct_clear_flag(DELAYACCT_PF_SWAPIN);
56f31801 2605 swapcache = page;
4779cb31 2606 goto out_release;
1da177e4
LT
2607 }
2608
56f31801 2609 swapcache = page;
82b0f8c3 2610 locked = lock_page_or_retry(page, vma->vm_mm, vmf->flags);
e709ffd6 2611
073e587e 2612 delayacct_clear_flag(DELAYACCT_PF_SWAPIN);
d065bd81
ML
2613 if (!locked) {
2614 ret |= VM_FAULT_RETRY;
2615 goto out_release;
2616 }
073e587e 2617
4969c119 2618 /*
31c4a3d3
HD
2619 * Make sure try_to_free_swap or reuse_swap_page or swapoff did not
2620 * release the swapcache from under us. The page pin, and pte_same
2621 * test below, are not enough to exclude that. Even if it is still
2622 * swapcache, we need to check that the page's swap has not changed.
4969c119 2623 */
31c4a3d3 2624 if (unlikely(!PageSwapCache(page) || page_private(page) != entry.val))
4969c119
AA
2625 goto out_page;
2626
82b0f8c3 2627 page = ksm_might_need_to_copy(page, vma, vmf->address);
cbf86cfe
HD
2628 if (unlikely(!page)) {
2629 ret = VM_FAULT_OOM;
2630 page = swapcache;
cbf86cfe 2631 goto out_page;
5ad64688
HD
2632 }
2633
bae473a4
KS
2634 if (mem_cgroup_try_charge(page, vma->vm_mm, GFP_KERNEL,
2635 &memcg, false)) {
8a9f3ccd 2636 ret = VM_FAULT_OOM;
bc43f75c 2637 goto out_page;
8a9f3ccd
BS
2638 }
2639
1da177e4 2640 /*
8f4e2101 2641 * Back out if somebody else already faulted in this pte.
1da177e4 2642 */
82b0f8c3
JK
2643 vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd, vmf->address,
2644 &vmf->ptl);
2994302b 2645 if (unlikely(!pte_same(*vmf->pte, vmf->orig_pte)))
b8107480 2646 goto out_nomap;
b8107480
KK
2647
2648 if (unlikely(!PageUptodate(page))) {
2649 ret = VM_FAULT_SIGBUS;
2650 goto out_nomap;
1da177e4
LT
2651 }
2652
8c7c6e34
KH
2653 /*
2654 * The page isn't present yet, go ahead with the fault.
2655 *
2656 * Be careful about the sequence of operations here.
2657 * To get its accounting right, reuse_swap_page() must be called
2658 * while the page is counted on swap but not yet in mapcount i.e.
2659 * before page_add_anon_rmap() and swap_free(); try_to_free_swap()
2660 * must be called after the swap_free(), or it will never succeed.
8c7c6e34 2661 */
1da177e4 2662
bae473a4
KS
2663 inc_mm_counter_fast(vma->vm_mm, MM_ANONPAGES);
2664 dec_mm_counter_fast(vma->vm_mm, MM_SWAPENTS);
1da177e4 2665 pte = mk_pte(page, vma->vm_page_prot);
82b0f8c3 2666 if ((vmf->flags & FAULT_FLAG_WRITE) && reuse_swap_page(page, NULL)) {
1da177e4 2667 pte = maybe_mkwrite(pte_mkdirty(pte), vma);
82b0f8c3 2668 vmf->flags &= ~FAULT_FLAG_WRITE;
9a5b489b 2669 ret |= VM_FAULT_WRITE;
d281ee61 2670 exclusive = RMAP_EXCLUSIVE;
1da177e4 2671 }
1da177e4 2672 flush_icache_page(vma, page);
2994302b 2673 if (pte_swp_soft_dirty(vmf->orig_pte))
179ef71c 2674 pte = pte_mksoft_dirty(pte);
82b0f8c3 2675 set_pte_at(vma->vm_mm, vmf->address, vmf->pte, pte);
2994302b 2676 vmf->orig_pte = pte;
00501b53 2677 if (page == swapcache) {
82b0f8c3 2678 do_page_add_anon_rmap(page, vma, vmf->address, exclusive);
f627c2f5 2679 mem_cgroup_commit_charge(page, memcg, true, false);
1a8018fb 2680 activate_page(page);
00501b53 2681 } else { /* ksm created a completely new copy */
82b0f8c3 2682 page_add_new_anon_rmap(page, vma, vmf->address, false);
f627c2f5 2683 mem_cgroup_commit_charge(page, memcg, false, false);
00501b53
JW
2684 lru_cache_add_active_or_unevictable(page, vma);
2685 }
1da177e4 2686
c475a8ab 2687 swap_free(entry);
5ccc5aba
VD
2688 if (mem_cgroup_swap_full(page) ||
2689 (vma->vm_flags & VM_LOCKED) || PageMlocked(page))
a2c43eed 2690 try_to_free_swap(page);
c475a8ab 2691 unlock_page(page);
56f31801 2692 if (page != swapcache) {
4969c119
AA
2693 /*
2694 * Hold the lock to avoid the swap entry to be reused
2695 * until we take the PT lock for the pte_same() check
2696 * (to avoid false positives from pte_same). For
2697 * further safety release the lock after the swap_free
2698 * so that the swap count won't change under a
2699 * parallel locked swapcache.
2700 */
2701 unlock_page(swapcache);
09cbfeaf 2702 put_page(swapcache);
4969c119 2703 }
c475a8ab 2704
82b0f8c3 2705 if (vmf->flags & FAULT_FLAG_WRITE) {
2994302b 2706 ret |= do_wp_page(vmf);
61469f1d
HD
2707 if (ret & VM_FAULT_ERROR)
2708 ret &= VM_FAULT_ERROR;
1da177e4
LT
2709 goto out;
2710 }
2711
2712 /* No need to invalidate - it was non-present before */
82b0f8c3 2713 update_mmu_cache(vma, vmf->address, vmf->pte);
65500d23 2714unlock:
82b0f8c3 2715 pte_unmap_unlock(vmf->pte, vmf->ptl);
1da177e4
LT
2716out:
2717 return ret;
b8107480 2718out_nomap:
f627c2f5 2719 mem_cgroup_cancel_charge(page, memcg, false);
82b0f8c3 2720 pte_unmap_unlock(vmf->pte, vmf->ptl);
bc43f75c 2721out_page:
b8107480 2722 unlock_page(page);
4779cb31 2723out_release:
09cbfeaf 2724 put_page(page);
56f31801 2725 if (page != swapcache) {
4969c119 2726 unlock_page(swapcache);
09cbfeaf 2727 put_page(swapcache);
4969c119 2728 }
65500d23 2729 return ret;
1da177e4
LT
2730}
2731
320b2b8d 2732/*
8ca3eb08
TL
2733 * This is like a special single-page "expand_{down|up}wards()",
2734 * except we must first make sure that 'address{-|+}PAGE_SIZE'
320b2b8d 2735 * doesn't hit another vma.
320b2b8d
LT
2736 */
2737static inline int check_stack_guard_page(struct vm_area_struct *vma, unsigned long address)
2738{
2739 address &= PAGE_MASK;
2740 if ((vma->vm_flags & VM_GROWSDOWN) && address == vma->vm_start) {
0e8e50e2
LT
2741 struct vm_area_struct *prev = vma->vm_prev;
2742
2743 /*
2744 * Is there a mapping abutting this one below?
2745 *
2746 * That's only ok if it's the same stack mapping
2747 * that has gotten split..
2748 */
2749 if (prev && prev->vm_end == address)
2750 return prev->vm_flags & VM_GROWSDOWN ? 0 : -ENOMEM;
320b2b8d 2751
fee7e49d 2752 return expand_downwards(vma, address - PAGE_SIZE);
320b2b8d 2753 }
8ca3eb08
TL
2754 if ((vma->vm_flags & VM_GROWSUP) && address + PAGE_SIZE == vma->vm_end) {
2755 struct vm_area_struct *next = vma->vm_next;
2756
2757 /* As VM_GROWSDOWN but s/below/above/ */
2758 if (next && next->vm_start == address + PAGE_SIZE)
2759 return next->vm_flags & VM_GROWSUP ? 0 : -ENOMEM;
2760
fee7e49d 2761 return expand_upwards(vma, address + PAGE_SIZE);
8ca3eb08 2762 }
320b2b8d
LT
2763 return 0;
2764}
2765
1da177e4 2766/*
8f4e2101
HD
2767 * We enter with non-exclusive mmap_sem (to exclude vma changes,
2768 * but allow concurrent faults), and pte mapped but not yet locked.
2769 * We return with mmap_sem still held, but pte unmapped and unlocked.
1da177e4 2770 */
82b0f8c3 2771static int do_anonymous_page(struct vm_fault *vmf)
1da177e4 2772{
82b0f8c3 2773 struct vm_area_struct *vma = vmf->vma;
00501b53 2774 struct mem_cgroup *memcg;
8f4e2101 2775 struct page *page;
1da177e4 2776 pte_t entry;
1da177e4 2777
6b7339f4
KS
2778 /* File mapping without ->vm_ops ? */
2779 if (vma->vm_flags & VM_SHARED)
2780 return VM_FAULT_SIGBUS;
2781
11ac5524 2782 /* Check if we need to add a guard page to the stack */
82b0f8c3 2783 if (check_stack_guard_page(vma, vmf->address) < 0)
9c145c56 2784 return VM_FAULT_SIGSEGV;
320b2b8d 2785
7267ec00
KS
2786 /*
2787 * Use pte_alloc() instead of pte_alloc_map(). We can't run
2788 * pte_offset_map() on pmds where a huge pmd might be created
2789 * from a different thread.
2790 *
2791 * pte_alloc_map() is safe to use under down_write(mmap_sem) or when
2792 * parallel threads are excluded by other means.
2793 *
2794 * Here we only have down_read(mmap_sem).
2795 */
82b0f8c3 2796 if (pte_alloc(vma->vm_mm, vmf->pmd, vmf->address))
7267ec00
KS
2797 return VM_FAULT_OOM;
2798
2799 /* See the comment in pte_alloc_one_map() */
82b0f8c3 2800 if (unlikely(pmd_trans_unstable(vmf->pmd)))
7267ec00
KS
2801 return 0;
2802
11ac5524 2803 /* Use the zero-page for reads */
82b0f8c3 2804 if (!(vmf->flags & FAULT_FLAG_WRITE) &&
bae473a4 2805 !mm_forbids_zeropage(vma->vm_mm)) {
82b0f8c3 2806 entry = pte_mkspecial(pfn_pte(my_zero_pfn(vmf->address),
62eede62 2807 vma->vm_page_prot));
82b0f8c3
JK
2808 vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd,
2809 vmf->address, &vmf->ptl);
2810 if (!pte_none(*vmf->pte))
a13ea5b7 2811 goto unlock;
6b251fc9
AA
2812 /* Deliver the page fault to userland, check inside PT lock */
2813 if (userfaultfd_missing(vma)) {
82b0f8c3
JK
2814 pte_unmap_unlock(vmf->pte, vmf->ptl);
2815 return handle_userfault(vmf, VM_UFFD_MISSING);
6b251fc9 2816 }
a13ea5b7
HD
2817 goto setpte;
2818 }
2819
557ed1fa 2820 /* Allocate our own private page. */
557ed1fa
NP
2821 if (unlikely(anon_vma_prepare(vma)))
2822 goto oom;
82b0f8c3 2823 page = alloc_zeroed_user_highpage_movable(vma, vmf->address);
557ed1fa
NP
2824 if (!page)
2825 goto oom;
eb3c24f3 2826
bae473a4 2827 if (mem_cgroup_try_charge(page, vma->vm_mm, GFP_KERNEL, &memcg, false))
eb3c24f3
MG
2828 goto oom_free_page;
2829
52f37629
MK
2830 /*
2831 * The memory barrier inside __SetPageUptodate makes sure that
2832 * preceeding stores to the page contents become visible before
2833 * the set_pte_at() write.
2834 */
0ed361de 2835 __SetPageUptodate(page);
8f4e2101 2836
557ed1fa 2837 entry = mk_pte(page, vma->vm_page_prot);
1ac0cb5d
HD
2838 if (vma->vm_flags & VM_WRITE)
2839 entry = pte_mkwrite(pte_mkdirty(entry));
1da177e4 2840
82b0f8c3
JK
2841 vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd, vmf->address,
2842 &vmf->ptl);
2843 if (!pte_none(*vmf->pte))
557ed1fa 2844 goto release;
9ba69294 2845
6b251fc9
AA
2846 /* Deliver the page fault to userland, check inside PT lock */
2847 if (userfaultfd_missing(vma)) {
82b0f8c3 2848 pte_unmap_unlock(vmf->pte, vmf->ptl);
f627c2f5 2849 mem_cgroup_cancel_charge(page, memcg, false);
09cbfeaf 2850 put_page(page);
82b0f8c3 2851 return handle_userfault(vmf, VM_UFFD_MISSING);
6b251fc9
AA
2852 }
2853
bae473a4 2854 inc_mm_counter_fast(vma->vm_mm, MM_ANONPAGES);
82b0f8c3 2855 page_add_new_anon_rmap(page, vma, vmf->address, false);
f627c2f5 2856 mem_cgroup_commit_charge(page, memcg, false, false);
00501b53 2857 lru_cache_add_active_or_unevictable(page, vma);
a13ea5b7 2858setpte:
82b0f8c3 2859 set_pte_at(vma->vm_mm, vmf->address, vmf->pte, entry);
1da177e4
LT
2860
2861 /* No need to invalidate - it was non-present before */
82b0f8c3 2862 update_mmu_cache(vma, vmf->address, vmf->pte);
65500d23 2863unlock:
82b0f8c3 2864 pte_unmap_unlock(vmf->pte, vmf->ptl);
83c54070 2865 return 0;
8f4e2101 2866release:
f627c2f5 2867 mem_cgroup_cancel_charge(page, memcg, false);
09cbfeaf 2868 put_page(page);
8f4e2101 2869 goto unlock;
8a9f3ccd 2870oom_free_page:
09cbfeaf 2871 put_page(page);
65500d23 2872oom:
1da177e4
LT
2873 return VM_FAULT_OOM;
2874}
2875
9a95f3cf
PC
2876/*
2877 * The mmap_sem must have been held on entry, and may have been
2878 * released depending on flags and vma->vm_ops->fault() return value.
2879 * See filemap_fault() and __lock_page_retry().
2880 */
936ca80d 2881static int __do_fault(struct vm_fault *vmf)
7eae74af 2882{
82b0f8c3 2883 struct vm_area_struct *vma = vmf->vma;
7eae74af
KS
2884 int ret;
2885
11bac800 2886 ret = vma->vm_ops->fault(vmf);
3917048d 2887 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY |
b1aa812b 2888 VM_FAULT_DONE_COW)))
bc2466e4 2889 return ret;
7eae74af 2890
667240e0 2891 if (unlikely(PageHWPoison(vmf->page))) {
7eae74af 2892 if (ret & VM_FAULT_LOCKED)
667240e0
JK
2893 unlock_page(vmf->page);
2894 put_page(vmf->page);
936ca80d 2895 vmf->page = NULL;
7eae74af
KS
2896 return VM_FAULT_HWPOISON;
2897 }
2898
2899 if (unlikely(!(ret & VM_FAULT_LOCKED)))
667240e0 2900 lock_page(vmf->page);
7eae74af 2901 else
667240e0 2902 VM_BUG_ON_PAGE(!PageLocked(vmf->page), vmf->page);
7eae74af 2903
7eae74af
KS
2904 return ret;
2905}
2906
82b0f8c3 2907static int pte_alloc_one_map(struct vm_fault *vmf)
7267ec00 2908{
82b0f8c3 2909 struct vm_area_struct *vma = vmf->vma;
7267ec00 2910
82b0f8c3 2911 if (!pmd_none(*vmf->pmd))
7267ec00 2912 goto map_pte;
82b0f8c3
JK
2913 if (vmf->prealloc_pte) {
2914 vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
2915 if (unlikely(!pmd_none(*vmf->pmd))) {
2916 spin_unlock(vmf->ptl);
7267ec00
KS
2917 goto map_pte;
2918 }
2919
2920 atomic_long_inc(&vma->vm_mm->nr_ptes);
82b0f8c3
JK
2921 pmd_populate(vma->vm_mm, vmf->pmd, vmf->prealloc_pte);
2922 spin_unlock(vmf->ptl);
7f2b6ce8 2923 vmf->prealloc_pte = NULL;
82b0f8c3 2924 } else if (unlikely(pte_alloc(vma->vm_mm, vmf->pmd, vmf->address))) {
7267ec00
KS
2925 return VM_FAULT_OOM;
2926 }
2927map_pte:
2928 /*
2929 * If a huge pmd materialized under us just retry later. Use
2930 * pmd_trans_unstable() instead of pmd_trans_huge() to ensure the pmd
2931 * didn't become pmd_trans_huge under us and then back to pmd_none, as
2932 * a result of MADV_DONTNEED running immediately after a huge pmd fault
2933 * in a different thread of this mm, in turn leading to a misleading
2934 * pmd_trans_huge() retval. All we have to ensure is that it is a
2935 * regular pmd that we can walk with pte_offset_map() and we can do that
2936 * through an atomic read in C, which is what pmd_trans_unstable()
2937 * provides.
2938 */
82b0f8c3 2939 if (pmd_trans_unstable(vmf->pmd) || pmd_devmap(*vmf->pmd))
7267ec00
KS
2940 return VM_FAULT_NOPAGE;
2941
82b0f8c3
JK
2942 vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd, vmf->address,
2943 &vmf->ptl);
7267ec00
KS
2944 return 0;
2945}
2946
e496cf3d 2947#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
10102459
KS
2948
2949#define HPAGE_CACHE_INDEX_MASK (HPAGE_PMD_NR - 1)
2950static inline bool transhuge_vma_suitable(struct vm_area_struct *vma,
2951 unsigned long haddr)
2952{
2953 if (((vma->vm_start >> PAGE_SHIFT) & HPAGE_CACHE_INDEX_MASK) !=
2954 (vma->vm_pgoff & HPAGE_CACHE_INDEX_MASK))
2955 return false;
2956 if (haddr < vma->vm_start || haddr + HPAGE_PMD_SIZE > vma->vm_end)
2957 return false;
2958 return true;
2959}
2960
82b0f8c3 2961static void deposit_prealloc_pte(struct vm_fault *vmf)
953c66c2 2962{
82b0f8c3 2963 struct vm_area_struct *vma = vmf->vma;
953c66c2 2964
82b0f8c3 2965 pgtable_trans_huge_deposit(vma->vm_mm, vmf->pmd, vmf->prealloc_pte);
953c66c2
AK
2966 /*
2967 * We are going to consume the prealloc table,
2968 * count that as nr_ptes.
2969 */
2970 atomic_long_inc(&vma->vm_mm->nr_ptes);
7f2b6ce8 2971 vmf->prealloc_pte = NULL;
953c66c2
AK
2972}
2973
82b0f8c3 2974static int do_set_pmd(struct vm_fault *vmf, struct page *page)
10102459 2975{
82b0f8c3
JK
2976 struct vm_area_struct *vma = vmf->vma;
2977 bool write = vmf->flags & FAULT_FLAG_WRITE;
2978 unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
10102459
KS
2979 pmd_t entry;
2980 int i, ret;
2981
2982 if (!transhuge_vma_suitable(vma, haddr))
2983 return VM_FAULT_FALLBACK;
2984
2985 ret = VM_FAULT_FALLBACK;
2986 page = compound_head(page);
2987
953c66c2
AK
2988 /*
2989 * Archs like ppc64 need additonal space to store information
2990 * related to pte entry. Use the preallocated table for that.
2991 */
82b0f8c3
JK
2992 if (arch_needs_pgtable_deposit() && !vmf->prealloc_pte) {
2993 vmf->prealloc_pte = pte_alloc_one(vma->vm_mm, vmf->address);
2994 if (!vmf->prealloc_pte)
953c66c2
AK
2995 return VM_FAULT_OOM;
2996 smp_wmb(); /* See comment in __pte_alloc() */
2997 }
2998
82b0f8c3
JK
2999 vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
3000 if (unlikely(!pmd_none(*vmf->pmd)))
10102459
KS
3001 goto out;
3002
3003 for (i = 0; i < HPAGE_PMD_NR; i++)
3004 flush_icache_page(vma, page + i);
3005
3006 entry = mk_huge_pmd(page, vma->vm_page_prot);
3007 if (write)
3008 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
3009
3010 add_mm_counter(vma->vm_mm, MM_FILEPAGES, HPAGE_PMD_NR);
3011 page_add_file_rmap(page, true);
953c66c2
AK
3012 /*
3013 * deposit and withdraw with pmd lock held
3014 */
3015 if (arch_needs_pgtable_deposit())
82b0f8c3 3016 deposit_prealloc_pte(vmf);
10102459 3017
82b0f8c3 3018 set_pmd_at(vma->vm_mm, haddr, vmf->pmd, entry);
10102459 3019
82b0f8c3 3020 update_mmu_cache_pmd(vma, haddr, vmf->pmd);
10102459
KS
3021
3022 /* fault is handled */
3023 ret = 0;
95ecedcd 3024 count_vm_event(THP_FILE_MAPPED);
10102459 3025out:
82b0f8c3 3026 spin_unlock(vmf->ptl);
10102459
KS
3027 return ret;
3028}
3029#else
82b0f8c3 3030static int do_set_pmd(struct vm_fault *vmf, struct page *page)
10102459
KS
3031{
3032 BUILD_BUG();
3033 return 0;
3034}
3035#endif
3036
8c6e50b0 3037/**
7267ec00
KS
3038 * alloc_set_pte - setup new PTE entry for given page and add reverse page
3039 * mapping. If needed, the fucntion allocates page table or use pre-allocated.
8c6e50b0 3040 *
82b0f8c3 3041 * @vmf: fault environment
7267ec00 3042 * @memcg: memcg to charge page (only for private mappings)
8c6e50b0 3043 * @page: page to map
8c6e50b0 3044 *
82b0f8c3
JK
3045 * Caller must take care of unlocking vmf->ptl, if vmf->pte is non-NULL on
3046 * return.
8c6e50b0
KS
3047 *
3048 * Target users are page handler itself and implementations of
3049 * vm_ops->map_pages.
3050 */
82b0f8c3 3051int alloc_set_pte(struct vm_fault *vmf, struct mem_cgroup *memcg,
7267ec00 3052 struct page *page)
3bb97794 3053{
82b0f8c3
JK
3054 struct vm_area_struct *vma = vmf->vma;
3055 bool write = vmf->flags & FAULT_FLAG_WRITE;
3bb97794 3056 pte_t entry;
10102459
KS
3057 int ret;
3058
82b0f8c3 3059 if (pmd_none(*vmf->pmd) && PageTransCompound(page) &&
e496cf3d 3060 IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE)) {
10102459
KS
3061 /* THP on COW? */
3062 VM_BUG_ON_PAGE(memcg, page);
3063
82b0f8c3 3064 ret = do_set_pmd(vmf, page);
10102459 3065 if (ret != VM_FAULT_FALLBACK)
b0b9b3df 3066 return ret;
10102459 3067 }
3bb97794 3068
82b0f8c3
JK
3069 if (!vmf->pte) {
3070 ret = pte_alloc_one_map(vmf);
7267ec00 3071 if (ret)
b0b9b3df 3072 return ret;
7267ec00
KS
3073 }
3074
3075 /* Re-check under ptl */
b0b9b3df
HD
3076 if (unlikely(!pte_none(*vmf->pte)))
3077 return VM_FAULT_NOPAGE;
7267ec00 3078
3bb97794
KS
3079 flush_icache_page(vma, page);
3080 entry = mk_pte(page, vma->vm_page_prot);
3081 if (write)
3082 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
bae473a4
KS
3083 /* copy-on-write page */
3084 if (write && !(vma->vm_flags & VM_SHARED)) {
3bb97794 3085 inc_mm_counter_fast(vma->vm_mm, MM_ANONPAGES);
82b0f8c3 3086 page_add_new_anon_rmap(page, vma, vmf->address, false);
7267ec00
KS
3087 mem_cgroup_commit_charge(page, memcg, false, false);
3088 lru_cache_add_active_or_unevictable(page, vma);
3bb97794 3089 } else {
eca56ff9 3090 inc_mm_counter_fast(vma->vm_mm, mm_counter_file(page));
dd78fedd 3091 page_add_file_rmap(page, false);
3bb97794 3092 }
82b0f8c3 3093 set_pte_at(vma->vm_mm, vmf->address, vmf->pte, entry);
3bb97794
KS
3094
3095 /* no need to invalidate: a not-present page won't be cached */
82b0f8c3 3096 update_mmu_cache(vma, vmf->address, vmf->pte);
7267ec00 3097
b0b9b3df 3098 return 0;
3bb97794
KS
3099}
3100
9118c0cb
JK
3101
3102/**
3103 * finish_fault - finish page fault once we have prepared the page to fault
3104 *
3105 * @vmf: structure describing the fault
3106 *
3107 * This function handles all that is needed to finish a page fault once the
3108 * page to fault in is prepared. It handles locking of PTEs, inserts PTE for
3109 * given page, adds reverse page mapping, handles memcg charges and LRU
3110 * addition. The function returns 0 on success, VM_FAULT_ code in case of
3111 * error.
3112 *
3113 * The function expects the page to be locked and on success it consumes a
3114 * reference of a page being mapped (for the PTE which maps it).
3115 */
3116int finish_fault(struct vm_fault *vmf)
3117{
3118 struct page *page;
3119 int ret;
3120
3121 /* Did we COW the page? */
3122 if ((vmf->flags & FAULT_FLAG_WRITE) &&
3123 !(vmf->vma->vm_flags & VM_SHARED))
3124 page = vmf->cow_page;
3125 else
3126 page = vmf->page;
3127 ret = alloc_set_pte(vmf, vmf->memcg, page);
3128 if (vmf->pte)
3129 pte_unmap_unlock(vmf->pte, vmf->ptl);
3130 return ret;
3131}
3132
3a91053a
KS
3133static unsigned long fault_around_bytes __read_mostly =
3134 rounddown_pow_of_two(65536);
a9b0f861 3135
a9b0f861
KS
3136#ifdef CONFIG_DEBUG_FS
3137static int fault_around_bytes_get(void *data, u64 *val)
1592eef0 3138{
a9b0f861 3139 *val = fault_around_bytes;
1592eef0
KS
3140 return 0;
3141}
3142
b4903d6e
AR
3143/*
3144 * fault_around_pages() and fault_around_mask() expects fault_around_bytes
3145 * rounded down to nearest page order. It's what do_fault_around() expects to
3146 * see.
3147 */
a9b0f861 3148static int fault_around_bytes_set(void *data, u64 val)
1592eef0 3149{
a9b0f861 3150 if (val / PAGE_SIZE > PTRS_PER_PTE)
1592eef0 3151 return -EINVAL;
b4903d6e
AR
3152 if (val > PAGE_SIZE)
3153 fault_around_bytes = rounddown_pow_of_two(val);
3154 else
3155 fault_around_bytes = PAGE_SIZE; /* rounddown_pow_of_two(0) is undefined */
1592eef0
KS
3156 return 0;
3157}
a9b0f861
KS
3158DEFINE_SIMPLE_ATTRIBUTE(fault_around_bytes_fops,
3159 fault_around_bytes_get, fault_around_bytes_set, "%llu\n");
1592eef0
KS
3160
3161static int __init fault_around_debugfs(void)
3162{
3163 void *ret;
3164
a9b0f861
KS
3165 ret = debugfs_create_file("fault_around_bytes", 0644, NULL, NULL,
3166 &fault_around_bytes_fops);
1592eef0 3167 if (!ret)
a9b0f861 3168 pr_warn("Failed to create fault_around_bytes in debugfs");
1592eef0
KS
3169 return 0;
3170}
3171late_initcall(fault_around_debugfs);
1592eef0 3172#endif
8c6e50b0 3173
1fdb412b
KS
3174/*
3175 * do_fault_around() tries to map few pages around the fault address. The hope
3176 * is that the pages will be needed soon and this will lower the number of
3177 * faults to handle.
3178 *
3179 * It uses vm_ops->map_pages() to map the pages, which skips the page if it's
3180 * not ready to be mapped: not up-to-date, locked, etc.
3181 *
3182 * This function is called with the page table lock taken. In the split ptlock
3183 * case the page table lock only protects only those entries which belong to
3184 * the page table corresponding to the fault address.
3185 *
3186 * This function doesn't cross the VMA boundaries, in order to call map_pages()
3187 * only once.
3188 *
3189 * fault_around_pages() defines how many pages we'll try to map.
3190 * do_fault_around() expects it to return a power of two less than or equal to
3191 * PTRS_PER_PTE.
3192 *
3193 * The virtual address of the area that we map is naturally aligned to the
3194 * fault_around_pages() value (and therefore to page order). This way it's
3195 * easier to guarantee that we don't cross page table boundaries.
3196 */
0721ec8b 3197static int do_fault_around(struct vm_fault *vmf)
8c6e50b0 3198{
82b0f8c3 3199 unsigned long address = vmf->address, nr_pages, mask;
0721ec8b 3200 pgoff_t start_pgoff = vmf->pgoff;
bae473a4 3201 pgoff_t end_pgoff;
7267ec00 3202 int off, ret = 0;
8c6e50b0 3203
4db0c3c2 3204 nr_pages = READ_ONCE(fault_around_bytes) >> PAGE_SHIFT;
aecd6f44
KS
3205 mask = ~(nr_pages * PAGE_SIZE - 1) & PAGE_MASK;
3206
82b0f8c3
JK
3207 vmf->address = max(address & mask, vmf->vma->vm_start);
3208 off = ((address - vmf->address) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1);
bae473a4 3209 start_pgoff -= off;
8c6e50b0
KS
3210
3211 /*
bae473a4
KS
3212 * end_pgoff is either end of page table or end of vma
3213 * or fault_around_pages() from start_pgoff, depending what is nearest.
8c6e50b0 3214 */
bae473a4 3215 end_pgoff = start_pgoff -
82b0f8c3 3216 ((vmf->address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1)) +
8c6e50b0 3217 PTRS_PER_PTE - 1;
82b0f8c3 3218 end_pgoff = min3(end_pgoff, vma_pages(vmf->vma) + vmf->vma->vm_pgoff - 1,
bae473a4 3219 start_pgoff + nr_pages - 1);
8c6e50b0 3220
82b0f8c3
JK
3221 if (pmd_none(*vmf->pmd)) {
3222 vmf->prealloc_pte = pte_alloc_one(vmf->vma->vm_mm,
3223 vmf->address);
3224 if (!vmf->prealloc_pte)
c5f88bd2 3225 goto out;
7267ec00 3226 smp_wmb(); /* See comment in __pte_alloc() */
8c6e50b0
KS
3227 }
3228
82b0f8c3 3229 vmf->vma->vm_ops->map_pages(vmf, start_pgoff, end_pgoff);
7267ec00 3230
7267ec00 3231 /* Huge page is mapped? Page fault is solved */
82b0f8c3 3232 if (pmd_trans_huge(*vmf->pmd)) {
7267ec00
KS
3233 ret = VM_FAULT_NOPAGE;
3234 goto out;
3235 }
3236
3237 /* ->map_pages() haven't done anything useful. Cold page cache? */
82b0f8c3 3238 if (!vmf->pte)
7267ec00
KS
3239 goto out;
3240
3241 /* check if the page fault is solved */
82b0f8c3
JK
3242 vmf->pte -= (vmf->address >> PAGE_SHIFT) - (address >> PAGE_SHIFT);
3243 if (!pte_none(*vmf->pte))
7267ec00 3244 ret = VM_FAULT_NOPAGE;
82b0f8c3 3245 pte_unmap_unlock(vmf->pte, vmf->ptl);
bae473a4 3246out:
82b0f8c3
JK
3247 vmf->address = address;
3248 vmf->pte = NULL;
7267ec00 3249 return ret;
8c6e50b0
KS
3250}
3251
0721ec8b 3252static int do_read_fault(struct vm_fault *vmf)
e655fb29 3253{
82b0f8c3 3254 struct vm_area_struct *vma = vmf->vma;
8c6e50b0
KS
3255 int ret = 0;
3256
3257 /*
3258 * Let's call ->map_pages() first and use ->fault() as fallback
3259 * if page by the offset is not ready to be mapped (cold cache or
3260 * something).
3261 */
9b4bdd2f 3262 if (vma->vm_ops->map_pages && fault_around_bytes >> PAGE_SHIFT > 1) {
0721ec8b 3263 ret = do_fault_around(vmf);
7267ec00
KS
3264 if (ret)
3265 return ret;
8c6e50b0 3266 }
e655fb29 3267
936ca80d 3268 ret = __do_fault(vmf);
e655fb29
KS
3269 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY)))
3270 return ret;
3271
9118c0cb 3272 ret |= finish_fault(vmf);
936ca80d 3273 unlock_page(vmf->page);
7267ec00 3274 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY)))
936ca80d 3275 put_page(vmf->page);
e655fb29
KS
3276 return ret;
3277}
3278
0721ec8b 3279static int do_cow_fault(struct vm_fault *vmf)
ec47c3b9 3280{
82b0f8c3 3281 struct vm_area_struct *vma = vmf->vma;
ec47c3b9
KS
3282 int ret;
3283
3284 if (unlikely(anon_vma_prepare(vma)))
3285 return VM_FAULT_OOM;
3286
936ca80d
JK
3287 vmf->cow_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, vmf->address);
3288 if (!vmf->cow_page)
ec47c3b9
KS
3289 return VM_FAULT_OOM;
3290
936ca80d 3291 if (mem_cgroup_try_charge(vmf->cow_page, vma->vm_mm, GFP_KERNEL,
3917048d 3292 &vmf->memcg, false)) {
936ca80d 3293 put_page(vmf->cow_page);
ec47c3b9
KS
3294 return VM_FAULT_OOM;
3295 }
3296
936ca80d 3297 ret = __do_fault(vmf);
ec47c3b9
KS
3298 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY)))
3299 goto uncharge_out;
3917048d
JK
3300 if (ret & VM_FAULT_DONE_COW)
3301 return ret;
ec47c3b9 3302
b1aa812b 3303 copy_user_highpage(vmf->cow_page, vmf->page, vmf->address, vma);
936ca80d 3304 __SetPageUptodate(vmf->cow_page);
ec47c3b9 3305
9118c0cb 3306 ret |= finish_fault(vmf);
b1aa812b
JK
3307 unlock_page(vmf->page);
3308 put_page(vmf->page);
7267ec00
KS
3309 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY)))
3310 goto uncharge_out;
ec47c3b9
KS
3311 return ret;
3312uncharge_out:
3917048d 3313 mem_cgroup_cancel_charge(vmf->cow_page, vmf->memcg, false);
936ca80d 3314 put_page(vmf->cow_page);
ec47c3b9
KS
3315 return ret;
3316}
3317
0721ec8b 3318static int do_shared_fault(struct vm_fault *vmf)
1da177e4 3319{
82b0f8c3 3320 struct vm_area_struct *vma = vmf->vma;
f0c6d4d2 3321 int ret, tmp;
1d65f86d 3322
936ca80d 3323 ret = __do_fault(vmf);
7eae74af 3324 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY)))
f0c6d4d2 3325 return ret;
1da177e4
LT
3326
3327 /*
f0c6d4d2
KS
3328 * Check if the backing address space wants to know that the page is
3329 * about to become writable
1da177e4 3330 */
fb09a464 3331 if (vma->vm_ops->page_mkwrite) {
936ca80d 3332 unlock_page(vmf->page);
38b8cb7f 3333 tmp = do_page_mkwrite(vmf);
fb09a464
KS
3334 if (unlikely(!tmp ||
3335 (tmp & (VM_FAULT_ERROR | VM_FAULT_NOPAGE)))) {
936ca80d 3336 put_page(vmf->page);
fb09a464 3337 return tmp;
4294621f 3338 }
fb09a464
KS
3339 }
3340
9118c0cb 3341 ret |= finish_fault(vmf);
7267ec00
KS
3342 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE |
3343 VM_FAULT_RETRY))) {
936ca80d
JK
3344 unlock_page(vmf->page);
3345 put_page(vmf->page);
f0c6d4d2 3346 return ret;
1da177e4 3347 }
b827e496 3348
97ba0c2b 3349 fault_dirty_shared_page(vma, vmf->page);
1d65f86d 3350 return ret;
54cb8821 3351}
d00806b1 3352
9a95f3cf
PC
3353/*
3354 * We enter with non-exclusive mmap_sem (to exclude vma changes,
3355 * but allow concurrent faults).
3356 * The mmap_sem may have been released depending on flags and our
3357 * return value. See filemap_fault() and __lock_page_or_retry().
3358 */
82b0f8c3 3359static int do_fault(struct vm_fault *vmf)
54cb8821 3360{
82b0f8c3 3361 struct vm_area_struct *vma = vmf->vma;
b0b9b3df 3362 int ret;
54cb8821 3363
6b7339f4
KS
3364 /* The VMA was not fully populated on mmap() or missing VM_DONTEXPAND */
3365 if (!vma->vm_ops->fault)
b0b9b3df
HD
3366 ret = VM_FAULT_SIGBUS;
3367 else if (!(vmf->flags & FAULT_FLAG_WRITE))
3368 ret = do_read_fault(vmf);
3369 else if (!(vma->vm_flags & VM_SHARED))
3370 ret = do_cow_fault(vmf);
3371 else
3372 ret = do_shared_fault(vmf);
3373
3374 /* preallocated pagetable is unused: free it */
3375 if (vmf->prealloc_pte) {
3376 pte_free(vma->vm_mm, vmf->prealloc_pte);
7f2b6ce8 3377 vmf->prealloc_pte = NULL;
b0b9b3df
HD
3378 }
3379 return ret;
54cb8821
NP
3380}
3381
b19a9939 3382static int numa_migrate_prep(struct page *page, struct vm_area_struct *vma,
04bb2f94
RR
3383 unsigned long addr, int page_nid,
3384 int *flags)
9532fec1
MG
3385{
3386 get_page(page);
3387
3388 count_vm_numa_event(NUMA_HINT_FAULTS);
04bb2f94 3389 if (page_nid == numa_node_id()) {
9532fec1 3390 count_vm_numa_event(NUMA_HINT_FAULTS_LOCAL);
04bb2f94
RR
3391 *flags |= TNF_FAULT_LOCAL;
3392 }
9532fec1
MG
3393
3394 return mpol_misplaced(page, vma, addr);
3395}
3396
2994302b 3397static int do_numa_page(struct vm_fault *vmf)
d10e63f2 3398{
82b0f8c3 3399 struct vm_area_struct *vma = vmf->vma;
4daae3b4 3400 struct page *page = NULL;
8191acbd 3401 int page_nid = -1;
90572890 3402 int last_cpupid;
cbee9f88 3403 int target_nid;
b8593bfd 3404 bool migrated = false;
cee216a6 3405 pte_t pte;
288bc549 3406 bool was_writable = pte_savedwrite(vmf->orig_pte);
6688cc05 3407 int flags = 0;
d10e63f2
MG
3408
3409 /*
166f61b9
TH
3410 * The "pte" at this point cannot be used safely without
3411 * validation through pte_unmap_same(). It's of NUMA type but
3412 * the pfn may be screwed if the read is non atomic.
166f61b9 3413 */
82b0f8c3
JK
3414 vmf->ptl = pte_lockptr(vma->vm_mm, vmf->pmd);
3415 spin_lock(vmf->ptl);
cee216a6 3416 if (unlikely(!pte_same(*vmf->pte, vmf->orig_pte))) {
82b0f8c3 3417 pte_unmap_unlock(vmf->pte, vmf->ptl);
4daae3b4
MG
3418 goto out;
3419 }
3420
cee216a6
AK
3421 /*
3422 * Make it present again, Depending on how arch implementes non
3423 * accessible ptes, some can allow access by kernel mode.
3424 */
3425 pte = ptep_modify_prot_start(vma->vm_mm, vmf->address, vmf->pte);
4d942466
MG
3426 pte = pte_modify(pte, vma->vm_page_prot);
3427 pte = pte_mkyoung(pte);
b191f9b1
MG
3428 if (was_writable)
3429 pte = pte_mkwrite(pte);
cee216a6 3430 ptep_modify_prot_commit(vma->vm_mm, vmf->address, vmf->pte, pte);
82b0f8c3 3431 update_mmu_cache(vma, vmf->address, vmf->pte);
d10e63f2 3432
82b0f8c3 3433 page = vm_normal_page(vma, vmf->address, pte);
d10e63f2 3434 if (!page) {
82b0f8c3 3435 pte_unmap_unlock(vmf->pte, vmf->ptl);
d10e63f2
MG
3436 return 0;
3437 }
3438
e81c4802
KS
3439 /* TODO: handle PTE-mapped THP */
3440 if (PageCompound(page)) {
82b0f8c3 3441 pte_unmap_unlock(vmf->pte, vmf->ptl);
e81c4802
KS
3442 return 0;
3443 }
3444
6688cc05 3445 /*
bea66fbd
MG
3446 * Avoid grouping on RO pages in general. RO pages shouldn't hurt as
3447 * much anyway since they can be in shared cache state. This misses
3448 * the case where a mapping is writable but the process never writes
3449 * to it but pte_write gets cleared during protection updates and
3450 * pte_dirty has unpredictable behaviour between PTE scan updates,
3451 * background writeback, dirty balancing and application behaviour.
6688cc05 3452 */
d59dc7bc 3453 if (!pte_write(pte))
6688cc05
PZ
3454 flags |= TNF_NO_GROUP;
3455
dabe1d99
RR
3456 /*
3457 * Flag if the page is shared between multiple address spaces. This
3458 * is later used when determining whether to group tasks together
3459 */
3460 if (page_mapcount(page) > 1 && (vma->vm_flags & VM_SHARED))
3461 flags |= TNF_SHARED;
3462
90572890 3463 last_cpupid = page_cpupid_last(page);
8191acbd 3464 page_nid = page_to_nid(page);
82b0f8c3 3465 target_nid = numa_migrate_prep(page, vma, vmf->address, page_nid,
bae473a4 3466 &flags);
82b0f8c3 3467 pte_unmap_unlock(vmf->pte, vmf->ptl);
4daae3b4 3468 if (target_nid == -1) {
4daae3b4
MG
3469 put_page(page);
3470 goto out;
3471 }
3472
3473 /* Migrate to the requested node */
1bc115d8 3474 migrated = migrate_misplaced_page(page, vma, target_nid);
6688cc05 3475 if (migrated) {
8191acbd 3476 page_nid = target_nid;
6688cc05 3477 flags |= TNF_MIGRATED;
074c2381
MG
3478 } else
3479 flags |= TNF_MIGRATE_FAIL;
4daae3b4
MG
3480
3481out:
8191acbd 3482 if (page_nid != -1)
6688cc05 3483 task_numa_fault(last_cpupid, page_nid, 1, flags);
d10e63f2
MG
3484 return 0;
3485}
3486
82b0f8c3 3487static int create_huge_pmd(struct vm_fault *vmf)
b96375f7 3488{
f4200391 3489 if (vma_is_anonymous(vmf->vma))
82b0f8c3 3490 return do_huge_pmd_anonymous_page(vmf);
a2d58167 3491 if (vmf->vma->vm_ops->huge_fault)
c791ace1 3492 return vmf->vma->vm_ops->huge_fault(vmf, PE_SIZE_PMD);
b96375f7
MW
3493 return VM_FAULT_FALLBACK;
3494}
3495
82b0f8c3 3496static int wp_huge_pmd(struct vm_fault *vmf, pmd_t orig_pmd)
b96375f7 3497{
82b0f8c3
JK
3498 if (vma_is_anonymous(vmf->vma))
3499 return do_huge_pmd_wp_page(vmf, orig_pmd);
a2d58167 3500 if (vmf->vma->vm_ops->huge_fault)
c791ace1 3501 return vmf->vma->vm_ops->huge_fault(vmf, PE_SIZE_PMD);
af9e4d5f
KS
3502
3503 /* COW handled on pte level: split pmd */
82b0f8c3
JK
3504 VM_BUG_ON_VMA(vmf->vma->vm_flags & VM_SHARED, vmf->vma);
3505 __split_huge_pmd(vmf->vma, vmf->pmd, vmf->address, false, NULL);
af9e4d5f 3506
b96375f7
MW
3507 return VM_FAULT_FALLBACK;
3508}
3509
38e08854
LS
3510static inline bool vma_is_accessible(struct vm_area_struct *vma)
3511{
3512 return vma->vm_flags & (VM_READ | VM_EXEC | VM_WRITE);
3513}
3514
a00cc7d9
MW
3515static int create_huge_pud(struct vm_fault *vmf)
3516{
3517#ifdef CONFIG_TRANSPARENT_HUGEPAGE
3518 /* No support for anonymous transparent PUD pages yet */
3519 if (vma_is_anonymous(vmf->vma))
3520 return VM_FAULT_FALLBACK;
3521 if (vmf->vma->vm_ops->huge_fault)
c791ace1 3522 return vmf->vma->vm_ops->huge_fault(vmf, PE_SIZE_PUD);
a00cc7d9
MW
3523#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
3524 return VM_FAULT_FALLBACK;
3525}
3526
3527static int wp_huge_pud(struct vm_fault *vmf, pud_t orig_pud)
3528{
3529#ifdef CONFIG_TRANSPARENT_HUGEPAGE
3530 /* No support for anonymous transparent PUD pages yet */
3531 if (vma_is_anonymous(vmf->vma))
3532 return VM_FAULT_FALLBACK;
3533 if (vmf->vma->vm_ops->huge_fault)
c791ace1 3534 return vmf->vma->vm_ops->huge_fault(vmf, PE_SIZE_PUD);
a00cc7d9
MW
3535#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
3536 return VM_FAULT_FALLBACK;
3537}
3538
1da177e4
LT
3539/*
3540 * These routines also need to handle stuff like marking pages dirty
3541 * and/or accessed for architectures that don't do it in hardware (most
3542 * RISC architectures). The early dirtying is also good on the i386.
3543 *
3544 * There is also a hook called "update_mmu_cache()" that architectures
3545 * with external mmu caches can use to update those (ie the Sparc or
3546 * PowerPC hashed page tables that act as extended TLBs).
3547 *
7267ec00
KS
3548 * We enter with non-exclusive mmap_sem (to exclude vma changes, but allow
3549 * concurrent faults).
9a95f3cf 3550 *
7267ec00
KS
3551 * The mmap_sem may have been released depending on flags and our return value.
3552 * See filemap_fault() and __lock_page_or_retry().
1da177e4 3553 */
82b0f8c3 3554static int handle_pte_fault(struct vm_fault *vmf)
1da177e4
LT
3555{
3556 pte_t entry;
3557
82b0f8c3 3558 if (unlikely(pmd_none(*vmf->pmd))) {
7267ec00
KS
3559 /*
3560 * Leave __pte_alloc() until later: because vm_ops->fault may
3561 * want to allocate huge page, and if we expose page table
3562 * for an instant, it will be difficult to retract from
3563 * concurrent faults and from rmap lookups.
3564 */
82b0f8c3 3565 vmf->pte = NULL;
7267ec00
KS
3566 } else {
3567 /* See comment in pte_alloc_one_map() */
82b0f8c3 3568 if (pmd_trans_unstable(vmf->pmd) || pmd_devmap(*vmf->pmd))
7267ec00
KS
3569 return 0;
3570 /*
3571 * A regular pmd is established and it can't morph into a huge
3572 * pmd from under us anymore at this point because we hold the
3573 * mmap_sem read mode and khugepaged takes it in write mode.
3574 * So now it's safe to run pte_offset_map().
3575 */
82b0f8c3 3576 vmf->pte = pte_offset_map(vmf->pmd, vmf->address);
2994302b 3577 vmf->orig_pte = *vmf->pte;
7267ec00
KS
3578
3579 /*
3580 * some architectures can have larger ptes than wordsize,
3581 * e.g.ppc44x-defconfig has CONFIG_PTE_64BIT=y and
3582 * CONFIG_32BIT=y, so READ_ONCE or ACCESS_ONCE cannot guarantee
3583 * atomic accesses. The code below just needs a consistent
3584 * view for the ifs and we later double check anyway with the
3585 * ptl lock held. So here a barrier will do.
3586 */
3587 barrier();
2994302b 3588 if (pte_none(vmf->orig_pte)) {
82b0f8c3
JK
3589 pte_unmap(vmf->pte);
3590 vmf->pte = NULL;
65500d23 3591 }
1da177e4
LT
3592 }
3593
82b0f8c3
JK
3594 if (!vmf->pte) {
3595 if (vma_is_anonymous(vmf->vma))
3596 return do_anonymous_page(vmf);
7267ec00 3597 else
82b0f8c3 3598 return do_fault(vmf);
7267ec00
KS
3599 }
3600
2994302b
JK
3601 if (!pte_present(vmf->orig_pte))
3602 return do_swap_page(vmf);
7267ec00 3603
2994302b
JK
3604 if (pte_protnone(vmf->orig_pte) && vma_is_accessible(vmf->vma))
3605 return do_numa_page(vmf);
d10e63f2 3606
82b0f8c3
JK
3607 vmf->ptl = pte_lockptr(vmf->vma->vm_mm, vmf->pmd);
3608 spin_lock(vmf->ptl);
2994302b 3609 entry = vmf->orig_pte;
82b0f8c3 3610 if (unlikely(!pte_same(*vmf->pte, entry)))
8f4e2101 3611 goto unlock;
82b0f8c3 3612 if (vmf->flags & FAULT_FLAG_WRITE) {
1da177e4 3613 if (!pte_write(entry))
2994302b 3614 return do_wp_page(vmf);
1da177e4
LT
3615 entry = pte_mkdirty(entry);
3616 }
3617 entry = pte_mkyoung(entry);
82b0f8c3
JK
3618 if (ptep_set_access_flags(vmf->vma, vmf->address, vmf->pte, entry,
3619 vmf->flags & FAULT_FLAG_WRITE)) {
3620 update_mmu_cache(vmf->vma, vmf->address, vmf->pte);
1a44e149
AA
3621 } else {
3622 /*
3623 * This is needed only for protection faults but the arch code
3624 * is not yet telling us if this is a protection fault or not.
3625 * This still avoids useless tlb flushes for .text page faults
3626 * with threads.
3627 */
82b0f8c3
JK
3628 if (vmf->flags & FAULT_FLAG_WRITE)
3629 flush_tlb_fix_spurious_fault(vmf->vma, vmf->address);
1a44e149 3630 }
8f4e2101 3631unlock:
82b0f8c3 3632 pte_unmap_unlock(vmf->pte, vmf->ptl);
83c54070 3633 return 0;
1da177e4
LT
3634}
3635
3636/*
3637 * By the time we get here, we already hold the mm semaphore
9a95f3cf
PC
3638 *
3639 * The mmap_sem may have been released depending on flags and our
3640 * return value. See filemap_fault() and __lock_page_or_retry().
1da177e4 3641 */
dcddffd4
KS
3642static int __handle_mm_fault(struct vm_area_struct *vma, unsigned long address,
3643 unsigned int flags)
1da177e4 3644{
82b0f8c3 3645 struct vm_fault vmf = {
bae473a4 3646 .vma = vma,
1a29d85e 3647 .address = address & PAGE_MASK,
bae473a4 3648 .flags = flags,
0721ec8b 3649 .pgoff = linear_page_index(vma, address),
667240e0 3650 .gfp_mask = __get_fault_gfp_mask(vma),
bae473a4 3651 };
dcddffd4 3652 struct mm_struct *mm = vma->vm_mm;
1da177e4 3653 pgd_t *pgd;
a2d58167 3654 int ret;
1da177e4 3655
1da177e4 3656 pgd = pgd_offset(mm, address);
a00cc7d9
MW
3657
3658 vmf.pud = pud_alloc(mm, pgd, address);
3659 if (!vmf.pud)
c74df32c 3660 return VM_FAULT_OOM;
a00cc7d9 3661 if (pud_none(*vmf.pud) && transparent_hugepage_enabled(vma)) {
a00cc7d9
MW
3662 ret = create_huge_pud(&vmf);
3663 if (!(ret & VM_FAULT_FALLBACK))
3664 return ret;
3665 } else {
3666 pud_t orig_pud = *vmf.pud;
3667
3668 barrier();
3669 if (pud_trans_huge(orig_pud) || pud_devmap(orig_pud)) {
3670 unsigned int dirty = flags & FAULT_FLAG_WRITE;
3671
a00cc7d9
MW
3672 /* NUMA case for anonymous PUDs would go here */
3673
3674 if (dirty && !pud_write(orig_pud)) {
3675 ret = wp_huge_pud(&vmf, orig_pud);
3676 if (!(ret & VM_FAULT_FALLBACK))
3677 return ret;
3678 } else {
3679 huge_pud_set_accessed(&vmf, orig_pud);
3680 return 0;
3681 }
3682 }
3683 }
3684
3685 vmf.pmd = pmd_alloc(mm, vmf.pud, address);
82b0f8c3 3686 if (!vmf.pmd)
c74df32c 3687 return VM_FAULT_OOM;
82b0f8c3 3688 if (pmd_none(*vmf.pmd) && transparent_hugepage_enabled(vma)) {
a2d58167 3689 ret = create_huge_pmd(&vmf);
c0292554
KS
3690 if (!(ret & VM_FAULT_FALLBACK))
3691 return ret;
71e3aac0 3692 } else {
82b0f8c3 3693 pmd_t orig_pmd = *vmf.pmd;
1f1d06c3 3694
71e3aac0 3695 barrier();
5c7fb56e 3696 if (pmd_trans_huge(orig_pmd) || pmd_devmap(orig_pmd)) {
38e08854 3697 if (pmd_protnone(orig_pmd) && vma_is_accessible(vma))
82b0f8c3 3698 return do_huge_pmd_numa_page(&vmf, orig_pmd);
d10e63f2 3699
82b0f8c3 3700 if ((vmf.flags & FAULT_FLAG_WRITE) &&
bae473a4 3701 !pmd_write(orig_pmd)) {
82b0f8c3 3702 ret = wp_huge_pmd(&vmf, orig_pmd);
9845cbbd
KS
3703 if (!(ret & VM_FAULT_FALLBACK))
3704 return ret;
a1dd450b 3705 } else {
82b0f8c3 3706 huge_pmd_set_accessed(&vmf, orig_pmd);
9845cbbd 3707 return 0;
1f1d06c3 3708 }
71e3aac0
AA
3709 }
3710 }
3711
82b0f8c3 3712 return handle_pte_fault(&vmf);
1da177e4
LT
3713}
3714
9a95f3cf
PC
3715/*
3716 * By the time we get here, we already hold the mm semaphore
3717 *
3718 * The mmap_sem may have been released depending on flags and our
3719 * return value. See filemap_fault() and __lock_page_or_retry().
3720 */
dcddffd4
KS
3721int handle_mm_fault(struct vm_area_struct *vma, unsigned long address,
3722 unsigned int flags)
519e5247
JW
3723{
3724 int ret;
3725
3726 __set_current_state(TASK_RUNNING);
3727
3728 count_vm_event(PGFAULT);
dcddffd4 3729 mem_cgroup_count_vm_event(vma->vm_mm, PGFAULT);
519e5247
JW
3730
3731 /* do counter updates before entering really critical section. */
3732 check_sync_rss_stat(current);
3733
3734 /*
3735 * Enable the memcg OOM handling for faults triggered in user
3736 * space. Kernel faults are handled more gracefully.
3737 */
3738 if (flags & FAULT_FLAG_USER)
49426420 3739 mem_cgroup_oom_enable();
519e5247 3740
bae473a4
KS
3741 if (!arch_vma_access_permitted(vma, flags & FAULT_FLAG_WRITE,
3742 flags & FAULT_FLAG_INSTRUCTION,
3743 flags & FAULT_FLAG_REMOTE))
3744 return VM_FAULT_SIGSEGV;
3745
3746 if (unlikely(is_vm_hugetlb_page(vma)))
3747 ret = hugetlb_fault(vma->vm_mm, vma, address, flags);
3748 else
3749 ret = __handle_mm_fault(vma, address, flags);
519e5247 3750
49426420
JW
3751 if (flags & FAULT_FLAG_USER) {
3752 mem_cgroup_oom_disable();
166f61b9
TH
3753 /*
3754 * The task may have entered a memcg OOM situation but
3755 * if the allocation error was handled gracefully (no
3756 * VM_FAULT_OOM), there is no need to kill anything.
3757 * Just clean up the OOM state peacefully.
3758 */
3759 if (task_in_memcg_oom(current) && !(ret & VM_FAULT_OOM))
3760 mem_cgroup_oom_synchronize(false);
49426420 3761 }
3812c8c8 3762
3f70dc38
MH
3763 /*
3764 * This mm has been already reaped by the oom reaper and so the
3765 * refault cannot be trusted in general. Anonymous refaults would
3766 * lose data and give a zero page instead e.g. This is especially
3767 * problem for use_mm() because regular tasks will just die and
3768 * the corrupted data will not be visible anywhere while kthread
3769 * will outlive the oom victim and potentially propagate the date
3770 * further.
3771 */
3772 if (unlikely((current->flags & PF_KTHREAD) && !(ret & VM_FAULT_ERROR)
3773 && test_bit(MMF_UNSTABLE, &vma->vm_mm->flags)))
3774 ret = VM_FAULT_SIGBUS;
3775
519e5247
JW
3776 return ret;
3777}
e1d6d01a 3778EXPORT_SYMBOL_GPL(handle_mm_fault);
519e5247 3779
1da177e4
LT
3780#ifndef __PAGETABLE_PUD_FOLDED
3781/*
3782 * Allocate page upper directory.
872fec16 3783 * We've already handled the fast-path in-line.
1da177e4 3784 */
1bb3630e 3785int __pud_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address)
1da177e4 3786{
c74df32c
HD
3787 pud_t *new = pud_alloc_one(mm, address);
3788 if (!new)
1bb3630e 3789 return -ENOMEM;
1da177e4 3790
362a61ad
NP
3791 smp_wmb(); /* See comment in __pte_alloc */
3792
872fec16 3793 spin_lock(&mm->page_table_lock);
1bb3630e 3794 if (pgd_present(*pgd)) /* Another has populated it */
5e541973 3795 pud_free(mm, new);
1bb3630e
HD
3796 else
3797 pgd_populate(mm, pgd, new);
c74df32c 3798 spin_unlock(&mm->page_table_lock);
1bb3630e 3799 return 0;
1da177e4
LT
3800}
3801#endif /* __PAGETABLE_PUD_FOLDED */
3802
3803#ifndef __PAGETABLE_PMD_FOLDED
3804/*
3805 * Allocate page middle directory.
872fec16 3806 * We've already handled the fast-path in-line.
1da177e4 3807 */
1bb3630e 3808int __pmd_alloc(struct mm_struct *mm, pud_t *pud, unsigned long address)
1da177e4 3809{
a00cc7d9 3810 spinlock_t *ptl;
c74df32c
HD
3811 pmd_t *new = pmd_alloc_one(mm, address);
3812 if (!new)
1bb3630e 3813 return -ENOMEM;
1da177e4 3814
362a61ad
NP
3815 smp_wmb(); /* See comment in __pte_alloc */
3816
a00cc7d9 3817 ptl = pud_lock(mm, pud);
1da177e4 3818#ifndef __ARCH_HAS_4LEVEL_HACK
dc6c9a35
KS
3819 if (!pud_present(*pud)) {
3820 mm_inc_nr_pmds(mm);
1bb3630e 3821 pud_populate(mm, pud, new);
dc6c9a35 3822 } else /* Another has populated it */
5e541973 3823 pmd_free(mm, new);
dc6c9a35
KS
3824#else
3825 if (!pgd_present(*pud)) {
3826 mm_inc_nr_pmds(mm);
1bb3630e 3827 pgd_populate(mm, pud, new);
dc6c9a35
KS
3828 } else /* Another has populated it */
3829 pmd_free(mm, new);
1da177e4 3830#endif /* __ARCH_HAS_4LEVEL_HACK */
a00cc7d9 3831 spin_unlock(ptl);
1bb3630e 3832 return 0;
e0f39591 3833}
1da177e4
LT
3834#endif /* __PAGETABLE_PMD_FOLDED */
3835
09796395
RZ
3836static int __follow_pte_pmd(struct mm_struct *mm, unsigned long address,
3837 pte_t **ptepp, pmd_t **pmdpp, spinlock_t **ptlp)
f8ad0f49
JW
3838{
3839 pgd_t *pgd;
3840 pud_t *pud;
3841 pmd_t *pmd;
3842 pte_t *ptep;
3843
3844 pgd = pgd_offset(mm, address);
3845 if (pgd_none(*pgd) || unlikely(pgd_bad(*pgd)))
3846 goto out;
3847
3848 pud = pud_offset(pgd, address);
3849 if (pud_none(*pud) || unlikely(pud_bad(*pud)))
3850 goto out;
3851
3852 pmd = pmd_offset(pud, address);
f66055ab 3853 VM_BUG_ON(pmd_trans_huge(*pmd));
f8ad0f49 3854
09796395
RZ
3855 if (pmd_huge(*pmd)) {
3856 if (!pmdpp)
3857 goto out;
3858
3859 *ptlp = pmd_lock(mm, pmd);
3860 if (pmd_huge(*pmd)) {
3861 *pmdpp = pmd;
3862 return 0;
3863 }
3864 spin_unlock(*ptlp);
3865 }
3866
3867 if (pmd_none(*pmd) || unlikely(pmd_bad(*pmd)))
f8ad0f49
JW
3868 goto out;
3869
3870 ptep = pte_offset_map_lock(mm, pmd, address, ptlp);
3871 if (!ptep)
3872 goto out;
3873 if (!pte_present(*ptep))
3874 goto unlock;
3875 *ptepp = ptep;
3876 return 0;
3877unlock:
3878 pte_unmap_unlock(ptep, *ptlp);
3879out:
3880 return -EINVAL;
3881}
3882
f729c8c9
RZ
3883static inline int follow_pte(struct mm_struct *mm, unsigned long address,
3884 pte_t **ptepp, spinlock_t **ptlp)
1b36ba81
NK
3885{
3886 int res;
3887
3888 /* (void) is needed to make gcc happy */
3889 (void) __cond_lock(*ptlp,
09796395
RZ
3890 !(res = __follow_pte_pmd(mm, address, ptepp, NULL,
3891 ptlp)));
3892 return res;
3893}
3894
3895int follow_pte_pmd(struct mm_struct *mm, unsigned long address,
3896 pte_t **ptepp, pmd_t **pmdpp, spinlock_t **ptlp)
3897{
3898 int res;
3899
3900 /* (void) is needed to make gcc happy */
3901 (void) __cond_lock(*ptlp,
3902 !(res = __follow_pte_pmd(mm, address, ptepp, pmdpp,
3903 ptlp)));
1b36ba81
NK
3904 return res;
3905}
09796395 3906EXPORT_SYMBOL(follow_pte_pmd);
1b36ba81 3907
3b6748e2
JW
3908/**
3909 * follow_pfn - look up PFN at a user virtual address
3910 * @vma: memory mapping
3911 * @address: user virtual address
3912 * @pfn: location to store found PFN
3913 *
3914 * Only IO mappings and raw PFN mappings are allowed.
3915 *
3916 * Returns zero and the pfn at @pfn on success, -ve otherwise.
3917 */
3918int follow_pfn(struct vm_area_struct *vma, unsigned long address,
3919 unsigned long *pfn)
3920{
3921 int ret = -EINVAL;
3922 spinlock_t *ptl;
3923 pte_t *ptep;
3924
3925 if (!(vma->vm_flags & (VM_IO | VM_PFNMAP)))
3926 return ret;
3927
3928 ret = follow_pte(vma->vm_mm, address, &ptep, &ptl);
3929 if (ret)
3930 return ret;
3931 *pfn = pte_pfn(*ptep);
3932 pte_unmap_unlock(ptep, ptl);
3933 return 0;
3934}
3935EXPORT_SYMBOL(follow_pfn);
3936
28b2ee20 3937#ifdef CONFIG_HAVE_IOREMAP_PROT
d87fe660 3938int follow_phys(struct vm_area_struct *vma,
3939 unsigned long address, unsigned int flags,
3940 unsigned long *prot, resource_size_t *phys)
28b2ee20 3941{
03668a4d 3942 int ret = -EINVAL;
28b2ee20
RR
3943 pte_t *ptep, pte;
3944 spinlock_t *ptl;
28b2ee20 3945
d87fe660 3946 if (!(vma->vm_flags & (VM_IO | VM_PFNMAP)))
3947 goto out;
28b2ee20 3948
03668a4d 3949 if (follow_pte(vma->vm_mm, address, &ptep, &ptl))
d87fe660 3950 goto out;
28b2ee20 3951 pte = *ptep;
03668a4d 3952
28b2ee20
RR
3953 if ((flags & FOLL_WRITE) && !pte_write(pte))
3954 goto unlock;
28b2ee20
RR
3955
3956 *prot = pgprot_val(pte_pgprot(pte));
03668a4d 3957 *phys = (resource_size_t)pte_pfn(pte) << PAGE_SHIFT;
28b2ee20 3958
03668a4d 3959 ret = 0;
28b2ee20
RR
3960unlock:
3961 pte_unmap_unlock(ptep, ptl);
3962out:
d87fe660 3963 return ret;
28b2ee20
RR
3964}
3965
3966int generic_access_phys(struct vm_area_struct *vma, unsigned long addr,
3967 void *buf, int len, int write)
3968{
3969 resource_size_t phys_addr;
3970 unsigned long prot = 0;
2bc7273b 3971 void __iomem *maddr;
28b2ee20
RR
3972 int offset = addr & (PAGE_SIZE-1);
3973
d87fe660 3974 if (follow_phys(vma, addr, write, &prot, &phys_addr))
28b2ee20
RR
3975 return -EINVAL;
3976
9cb12d7b 3977 maddr = ioremap_prot(phys_addr, PAGE_ALIGN(len + offset), prot);
28b2ee20
RR
3978 if (write)
3979 memcpy_toio(maddr + offset, buf, len);
3980 else
3981 memcpy_fromio(buf, maddr + offset, len);
3982 iounmap(maddr);
3983
3984 return len;
3985}
5a73633e 3986EXPORT_SYMBOL_GPL(generic_access_phys);
28b2ee20
RR
3987#endif
3988
0ec76a11 3989/*
206cb636
SW
3990 * Access another process' address space as given in mm. If non-NULL, use the
3991 * given task for page fault accounting.
0ec76a11 3992 */
84d77d3f 3993int __access_remote_vm(struct task_struct *tsk, struct mm_struct *mm,
442486ec 3994 unsigned long addr, void *buf, int len, unsigned int gup_flags)
0ec76a11 3995{
0ec76a11 3996 struct vm_area_struct *vma;
0ec76a11 3997 void *old_buf = buf;
442486ec 3998 int write = gup_flags & FOLL_WRITE;
0ec76a11 3999
0ec76a11 4000 down_read(&mm->mmap_sem);
183ff22b 4001 /* ignore errors, just check how much was successfully transferred */
0ec76a11
DH
4002 while (len) {
4003 int bytes, ret, offset;
4004 void *maddr;
28b2ee20 4005 struct page *page = NULL;
0ec76a11 4006
1e987790 4007 ret = get_user_pages_remote(tsk, mm, addr, 1,
5b56d49f 4008 gup_flags, &page, &vma, NULL);
28b2ee20 4009 if (ret <= 0) {
dbffcd03
RR
4010#ifndef CONFIG_HAVE_IOREMAP_PROT
4011 break;
4012#else
28b2ee20
RR
4013 /*
4014 * Check if this is a VM_IO | VM_PFNMAP VMA, which
4015 * we can access using slightly different code.
4016 */
28b2ee20 4017 vma = find_vma(mm, addr);
fe936dfc 4018 if (!vma || vma->vm_start > addr)
28b2ee20
RR
4019 break;
4020 if (vma->vm_ops && vma->vm_ops->access)
4021 ret = vma->vm_ops->access(vma, addr, buf,
4022 len, write);
4023 if (ret <= 0)
28b2ee20
RR
4024 break;
4025 bytes = ret;
dbffcd03 4026#endif
0ec76a11 4027 } else {
28b2ee20
RR
4028 bytes = len;
4029 offset = addr & (PAGE_SIZE-1);
4030 if (bytes > PAGE_SIZE-offset)
4031 bytes = PAGE_SIZE-offset;
4032
4033 maddr = kmap(page);
4034 if (write) {
4035 copy_to_user_page(vma, page, addr,
4036 maddr + offset, buf, bytes);
4037 set_page_dirty_lock(page);
4038 } else {
4039 copy_from_user_page(vma, page, addr,
4040 buf, maddr + offset, bytes);
4041 }
4042 kunmap(page);
09cbfeaf 4043 put_page(page);
0ec76a11 4044 }
0ec76a11
DH
4045 len -= bytes;
4046 buf += bytes;
4047 addr += bytes;
4048 }
4049 up_read(&mm->mmap_sem);
0ec76a11
DH
4050
4051 return buf - old_buf;
4052}
03252919 4053
5ddd36b9 4054/**
ae91dbfc 4055 * access_remote_vm - access another process' address space
5ddd36b9
SW
4056 * @mm: the mm_struct of the target address space
4057 * @addr: start address to access
4058 * @buf: source or destination buffer
4059 * @len: number of bytes to transfer
6347e8d5 4060 * @gup_flags: flags modifying lookup behaviour
5ddd36b9
SW
4061 *
4062 * The caller must hold a reference on @mm.
4063 */
4064int access_remote_vm(struct mm_struct *mm, unsigned long addr,
6347e8d5 4065 void *buf, int len, unsigned int gup_flags)
5ddd36b9 4066{
6347e8d5 4067 return __access_remote_vm(NULL, mm, addr, buf, len, gup_flags);
5ddd36b9
SW
4068}
4069
206cb636
SW
4070/*
4071 * Access another process' address space.
4072 * Source/target buffer must be kernel space,
4073 * Do not walk the page table directly, use get_user_pages
4074 */
4075int access_process_vm(struct task_struct *tsk, unsigned long addr,
f307ab6d 4076 void *buf, int len, unsigned int gup_flags)
206cb636
SW
4077{
4078 struct mm_struct *mm;
4079 int ret;
4080
4081 mm = get_task_mm(tsk);
4082 if (!mm)
4083 return 0;
4084
f307ab6d 4085 ret = __access_remote_vm(tsk, mm, addr, buf, len, gup_flags);
442486ec 4086
206cb636
SW
4087 mmput(mm);
4088
4089 return ret;
4090}
fcd35857 4091EXPORT_SYMBOL_GPL(access_process_vm);
206cb636 4092
03252919
AK
4093/*
4094 * Print the name of a VMA.
4095 */
4096void print_vma_addr(char *prefix, unsigned long ip)
4097{
4098 struct mm_struct *mm = current->mm;
4099 struct vm_area_struct *vma;
4100
e8bff74a
IM
4101 /*
4102 * Do not print if we are in atomic
4103 * contexts (in exception stacks, etc.):
4104 */
4105 if (preempt_count())
4106 return;
4107
03252919
AK
4108 down_read(&mm->mmap_sem);
4109 vma = find_vma(mm, ip);
4110 if (vma && vma->vm_file) {
4111 struct file *f = vma->vm_file;
4112 char *buf = (char *)__get_free_page(GFP_KERNEL);
4113 if (buf) {
2fbc57c5 4114 char *p;
03252919 4115
9bf39ab2 4116 p = file_path(f, buf, PAGE_SIZE);
03252919
AK
4117 if (IS_ERR(p))
4118 p = "?";
2fbc57c5 4119 printk("%s%s[%lx+%lx]", prefix, kbasename(p),
03252919
AK
4120 vma->vm_start,
4121 vma->vm_end - vma->vm_start);
4122 free_page((unsigned long)buf);
4123 }
4124 }
51a07e50 4125 up_read(&mm->mmap_sem);
03252919 4126}
3ee1afa3 4127
662bbcb2 4128#if defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_DEBUG_ATOMIC_SLEEP)
9ec23531 4129void __might_fault(const char *file, int line)
3ee1afa3 4130{
95156f00
PZ
4131 /*
4132 * Some code (nfs/sunrpc) uses socket ops on kernel memory while
4133 * holding the mmap_sem, this is safe because kernel memory doesn't
4134 * get paged out, therefore we'll never actually fault, and the
4135 * below annotations will generate false positives.
4136 */
4137 if (segment_eq(get_fs(), KERNEL_DS))
4138 return;
9ec23531 4139 if (pagefault_disabled())
662bbcb2 4140 return;
9ec23531
DH
4141 __might_sleep(file, line, 0);
4142#if defined(CONFIG_DEBUG_ATOMIC_SLEEP)
662bbcb2 4143 if (current->mm)
3ee1afa3 4144 might_lock_read(&current->mm->mmap_sem);
9ec23531 4145#endif
3ee1afa3 4146}
9ec23531 4147EXPORT_SYMBOL(__might_fault);
3ee1afa3 4148#endif
47ad8475
AA
4149
4150#if defined(CONFIG_TRANSPARENT_HUGEPAGE) || defined(CONFIG_HUGETLBFS)
4151static void clear_gigantic_page(struct page *page,
4152 unsigned long addr,
4153 unsigned int pages_per_huge_page)
4154{
4155 int i;
4156 struct page *p = page;
4157
4158 might_sleep();
4159 for (i = 0; i < pages_per_huge_page;
4160 i++, p = mem_map_next(p, page, i)) {
4161 cond_resched();
4162 clear_user_highpage(p, addr + i * PAGE_SIZE);
4163 }
4164}
4165void clear_huge_page(struct page *page,
4166 unsigned long addr, unsigned int pages_per_huge_page)
4167{
4168 int i;
4169
4170 if (unlikely(pages_per_huge_page > MAX_ORDER_NR_PAGES)) {
4171 clear_gigantic_page(page, addr, pages_per_huge_page);
4172 return;
4173 }
4174
4175 might_sleep();
4176 for (i = 0; i < pages_per_huge_page; i++) {
4177 cond_resched();
4178 clear_user_highpage(page + i, addr + i * PAGE_SIZE);
4179 }
4180}
4181
4182static void copy_user_gigantic_page(struct page *dst, struct page *src,
4183 unsigned long addr,
4184 struct vm_area_struct *vma,
4185 unsigned int pages_per_huge_page)
4186{
4187 int i;
4188 struct page *dst_base = dst;
4189 struct page *src_base = src;
4190
4191 for (i = 0; i < pages_per_huge_page; ) {
4192 cond_resched();
4193 copy_user_highpage(dst, src, addr + i*PAGE_SIZE, vma);
4194
4195 i++;
4196 dst = mem_map_next(dst, dst_base, i);
4197 src = mem_map_next(src, src_base, i);
4198 }
4199}
4200
4201void copy_user_huge_page(struct page *dst, struct page *src,
4202 unsigned long addr, struct vm_area_struct *vma,
4203 unsigned int pages_per_huge_page)
4204{
4205 int i;
4206
4207 if (unlikely(pages_per_huge_page > MAX_ORDER_NR_PAGES)) {
4208 copy_user_gigantic_page(dst, src, addr, vma,
4209 pages_per_huge_page);
4210 return;
4211 }
4212
4213 might_sleep();
4214 for (i = 0; i < pages_per_huge_page; i++) {
4215 cond_resched();
4216 copy_user_highpage(dst + i, src + i, addr + i*PAGE_SIZE, vma);
4217 }
4218}
fa4d75c1
MK
4219
4220long copy_huge_page_from_user(struct page *dst_page,
4221 const void __user *usr_src,
810a56b9
MK
4222 unsigned int pages_per_huge_page,
4223 bool allow_pagefault)
fa4d75c1
MK
4224{
4225 void *src = (void *)usr_src;
4226 void *page_kaddr;
4227 unsigned long i, rc = 0;
4228 unsigned long ret_val = pages_per_huge_page * PAGE_SIZE;
4229
4230 for (i = 0; i < pages_per_huge_page; i++) {
810a56b9
MK
4231 if (allow_pagefault)
4232 page_kaddr = kmap(dst_page + i);
4233 else
4234 page_kaddr = kmap_atomic(dst_page + i);
fa4d75c1
MK
4235 rc = copy_from_user(page_kaddr,
4236 (const void __user *)(src + i * PAGE_SIZE),
4237 PAGE_SIZE);
810a56b9
MK
4238 if (allow_pagefault)
4239 kunmap(dst_page + i);
4240 else
4241 kunmap_atomic(page_kaddr);
fa4d75c1
MK
4242
4243 ret_val -= (PAGE_SIZE - rc);
4244 if (rc)
4245 break;
4246
4247 cond_resched();
4248 }
4249 return ret_val;
4250}
47ad8475 4251#endif /* CONFIG_TRANSPARENT_HUGEPAGE || CONFIG_HUGETLBFS */
49076ec2 4252
40b64acd 4253#if USE_SPLIT_PTE_PTLOCKS && ALLOC_SPLIT_PTLOCKS
b35f1819
KS
4254
4255static struct kmem_cache *page_ptl_cachep;
4256
4257void __init ptlock_cache_init(void)
4258{
4259 page_ptl_cachep = kmem_cache_create("page->ptl", sizeof(spinlock_t), 0,
4260 SLAB_PANIC, NULL);
4261}
4262
539edb58 4263bool ptlock_alloc(struct page *page)
49076ec2
KS
4264{
4265 spinlock_t *ptl;
4266
b35f1819 4267 ptl = kmem_cache_alloc(page_ptl_cachep, GFP_KERNEL);
49076ec2
KS
4268 if (!ptl)
4269 return false;
539edb58 4270 page->ptl = ptl;
49076ec2
KS
4271 return true;
4272}
4273
539edb58 4274void ptlock_free(struct page *page)
49076ec2 4275{
b35f1819 4276 kmem_cache_free(page_ptl_cachep, page->ptl);
49076ec2
KS
4277}
4278#endif