xref: /linux/mm/memory.c (revision ec8832d007cb7b50229ad5745eec35b847cc9120)
1457c8996SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
21da177e4SLinus Torvalds /*
31da177e4SLinus Torvalds  *  linux/mm/memory.c
41da177e4SLinus Torvalds  *
51da177e4SLinus Torvalds  *  Copyright (C) 1991, 1992, 1993, 1994  Linus Torvalds
61da177e4SLinus Torvalds  */
71da177e4SLinus Torvalds 
81da177e4SLinus Torvalds /*
91da177e4SLinus Torvalds  * demand-loading started 01.12.91 - seems it is high on the list of
101da177e4SLinus Torvalds  * things wanted, and it should be easy to implement. - Linus
111da177e4SLinus Torvalds  */
121da177e4SLinus Torvalds 
131da177e4SLinus Torvalds /*
141da177e4SLinus Torvalds  * Ok, demand-loading was easy, shared pages a little bit tricker. Shared
151da177e4SLinus Torvalds  * pages started 02.12.91, seems to work. - Linus.
161da177e4SLinus Torvalds  *
171da177e4SLinus Torvalds  * Tested sharing by executing about 30 /bin/sh: under the old kernel it
181da177e4SLinus Torvalds  * would have taken more than the 6M I have free, but it worked well as
191da177e4SLinus Torvalds  * far as I could see.
201da177e4SLinus Torvalds  *
211da177e4SLinus Torvalds  * Also corrected some "invalidate()"s - I wasn't doing enough of them.
221da177e4SLinus Torvalds  */
231da177e4SLinus Torvalds 
241da177e4SLinus Torvalds /*
251da177e4SLinus Torvalds  * Real VM (paging to/from disk) started 18.12.91. Much more work and
261da177e4SLinus Torvalds  * thought has to go into this. Oh, well..
271da177e4SLinus Torvalds  * 19.12.91  -  works, somewhat. Sometimes I get faults, don't know why.
281da177e4SLinus Torvalds  *		Found it. Everything seems to work now.
291da177e4SLinus Torvalds  * 20.12.91  -  Ok, making the swap-device changeable like the root.
301da177e4SLinus Torvalds  */
311da177e4SLinus Torvalds 
321da177e4SLinus Torvalds /*
331da177e4SLinus Torvalds  * 05.04.94  -  Multi-page memory management added for v1.1.
341da177e4SLinus Torvalds  *              Idea by Alex Bligh (alex@cconcepts.co.uk)
351da177e4SLinus Torvalds  *
361da177e4SLinus Torvalds  * 16.07.99  -  Support of BIGMEM added by Gerhard Wichert, Siemens AG
371da177e4SLinus Torvalds  *		(Gerhard.Wichert@pdb.siemens.de)
381da177e4SLinus Torvalds  *
391da177e4SLinus Torvalds  * Aug/Sep 2004 Changed to four level page tables (Andi Kleen)
401da177e4SLinus Torvalds  */
411da177e4SLinus Torvalds 
421da177e4SLinus Torvalds #include <linux/kernel_stat.h>
431da177e4SLinus Torvalds #include <linux/mm.h>
4436090defSArnd Bergmann #include <linux/mm_inline.h>
456e84f315SIngo Molnar #include <linux/sched/mm.h>
46f7ccbae4SIngo Molnar #include <linux/sched/coredump.h>
476a3827d7SIngo Molnar #include <linux/sched/numa_balancing.h>
4829930025SIngo Molnar #include <linux/sched/task.h>
491da177e4SLinus Torvalds #include <linux/hugetlb.h>
501da177e4SLinus Torvalds #include <linux/mman.h>
511da177e4SLinus Torvalds #include <linux/swap.h>
521da177e4SLinus Torvalds #include <linux/highmem.h>
531da177e4SLinus Torvalds #include <linux/pagemap.h>
545042db43SJérôme Glisse #include <linux/memremap.h>
55b073d7f8SAlexander Potapenko #include <linux/kmsan.h>
569a840895SHugh Dickins #include <linux/ksm.h>
571da177e4SLinus Torvalds #include <linux/rmap.h>
58b95f1b31SPaul Gortmaker #include <linux/export.h>
590ff92245SShailabh Nagar #include <linux/delayacct.h>
601da177e4SLinus Torvalds #include <linux/init.h>
6101c8f1c4SDan Williams #include <linux/pfn_t.h>
62edc79b2aSPeter Zijlstra #include <linux/writeback.h>
638a9f3ccdSBalbir Singh #include <linux/memcontrol.h>
64cddb8a5cSAndrea Arcangeli #include <linux/mmu_notifier.h>
653dc14741SHugh Dickins #include <linux/swapops.h>
663dc14741SHugh Dickins #include <linux/elf.h>
675a0e3ad6STejun Heo #include <linux/gfp.h>
684daae3b4SMel Gorman #include <linux/migrate.h>
692fbc57c5SAndy Shevchenko #include <linux/string.h>
70467b171aSAneesh Kumar K.V #include <linux/memory-tiers.h>
711592eef0SKirill A. Shutemov #include <linux/debugfs.h>
726b251fc9SAndrea Arcangeli #include <linux/userfaultfd_k.h>
73bc2466e4SJan Kara #include <linux/dax.h>
746b31d595SMichal Hocko #include <linux/oom.h>
7598fa15f3SAnshuman Khandual #include <linux/numa.h>
76bce617edSPeter Xu #include <linux/perf_event.h>
77bce617edSPeter Xu #include <linux/ptrace.h>
78e80d3909SJoerg Roedel #include <linux/vmalloc.h>
7933024536SHuang Ying #include <linux/sched/sysctl.h>
807a7f0946SArjun Roy #include <linux/net_mm.h>
811da177e4SLinus Torvalds 
82b3d1411bSJoel Fernandes (Google) #include <trace/events/kmem.h>
83b3d1411bSJoel Fernandes (Google) 
846952b61dSAlexey Dobriyan #include <asm/io.h>
8533a709b2SDave Hansen #include <asm/mmu_context.h>
861da177e4SLinus Torvalds #include <asm/pgalloc.h>
877c0f6ba6SLinus Torvalds #include <linux/uaccess.h>
881da177e4SLinus Torvalds #include <asm/tlb.h>
891da177e4SLinus Torvalds #include <asm/tlbflush.h>
901da177e4SLinus Torvalds 
91e80d3909SJoerg Roedel #include "pgalloc-track.h"
9242b77728SJan Beulich #include "internal.h"
93014bb1deSNeilBrown #include "swap.h"
9442b77728SJan Beulich 
95af27d940SArnd Bergmann #if defined(LAST_CPUPID_NOT_IN_PAGE_FLAGS) && !defined(CONFIG_COMPILE_TEST)
9690572890SPeter Zijlstra #warning Unfortunate NUMA and NUMA Balancing config, growing page-frame for last_cpupid.
9775980e97SPeter Zijlstra #endif
9875980e97SPeter Zijlstra 
99a9ee6cf5SMike Rapoport #ifndef CONFIG_NUMA
1001da177e4SLinus Torvalds unsigned long max_mapnr;
1011da177e4SLinus Torvalds EXPORT_SYMBOL(max_mapnr);
102166f61b9STobin C Harding 
103166f61b9STobin C Harding struct page *mem_map;
1041da177e4SLinus Torvalds EXPORT_SYMBOL(mem_map);
1051da177e4SLinus Torvalds #endif
1061da177e4SLinus Torvalds 
1075c041f5dSPeter Xu static vm_fault_t do_fault(struct vm_fault *vmf);
1082bad466cSPeter Xu static vm_fault_t do_anonymous_page(struct vm_fault *vmf);
1092bad466cSPeter Xu static bool vmf_pte_changed(struct vm_fault *vmf);
1102bad466cSPeter Xu 
1112bad466cSPeter Xu /*
1122bad466cSPeter Xu  * Return true if the original pte was a uffd-wp pte marker (so the pte was
1132bad466cSPeter Xu  * wr-protected).
1142bad466cSPeter Xu  */
1152bad466cSPeter Xu static bool vmf_orig_pte_uffd_wp(struct vm_fault *vmf)
1162bad466cSPeter Xu {
1172bad466cSPeter Xu 	if (!(vmf->flags & FAULT_FLAG_ORIG_PTE_VALID))
1182bad466cSPeter Xu 		return false;
1192bad466cSPeter Xu 
1202bad466cSPeter Xu 	return pte_marker_uffd_wp(vmf->orig_pte);
1212bad466cSPeter Xu }
1225c041f5dSPeter Xu 
1231da177e4SLinus Torvalds /*
1241da177e4SLinus Torvalds  * A number of key systems in x86 including ioremap() rely on the assumption
1251da177e4SLinus Torvalds  * that high_memory defines the upper bound on direct map memory, then end
1261da177e4SLinus Torvalds  * of ZONE_NORMAL.  Under CONFIG_DISCONTIG this means that max_low_pfn and
1271da177e4SLinus Torvalds  * highstart_pfn must be the same; there must be no gap between ZONE_NORMAL
1281da177e4SLinus Torvalds  * and ZONE_HIGHMEM.
1291da177e4SLinus Torvalds  */
1301da177e4SLinus Torvalds void *high_memory;
1311da177e4SLinus Torvalds EXPORT_SYMBOL(high_memory);
1321da177e4SLinus Torvalds 
13332a93233SIngo Molnar /*
13432a93233SIngo Molnar  * Randomize the address space (stacks, mmaps, brk, etc.).
13532a93233SIngo Molnar  *
13632a93233SIngo Molnar  * ( When CONFIG_COMPAT_BRK=y we exclude brk from randomization,
13732a93233SIngo Molnar  *   as ancient (libc5 based) binaries can segfault. )
13832a93233SIngo Molnar  */
13932a93233SIngo Molnar int randomize_va_space __read_mostly =
14032a93233SIngo Molnar #ifdef CONFIG_COMPAT_BRK
14132a93233SIngo Molnar 					1;
14232a93233SIngo Molnar #else
14332a93233SIngo Molnar 					2;
14432a93233SIngo Molnar #endif
145a62eaf15SAndi Kleen 
14646bdb427SWill Deacon #ifndef arch_wants_old_prefaulted_pte
14746bdb427SWill Deacon static inline bool arch_wants_old_prefaulted_pte(void)
14846bdb427SWill Deacon {
14946bdb427SWill Deacon 	/*
15046bdb427SWill Deacon 	 * Transitioning a PTE from 'old' to 'young' can be expensive on
15146bdb427SWill Deacon 	 * some architectures, even if it's performed in hardware. By
15246bdb427SWill Deacon 	 * default, "false" means prefaulted entries will be 'young'.
15346bdb427SWill Deacon 	 */
15446bdb427SWill Deacon 	return false;
15546bdb427SWill Deacon }
15646bdb427SWill Deacon #endif
15746bdb427SWill Deacon 
158a62eaf15SAndi Kleen static int __init disable_randmaps(char *s)
159a62eaf15SAndi Kleen {
160a62eaf15SAndi Kleen 	randomize_va_space = 0;
1619b41046cSOGAWA Hirofumi 	return 1;
162a62eaf15SAndi Kleen }
163a62eaf15SAndi Kleen __setup("norandmaps", disable_randmaps);
164a62eaf15SAndi Kleen 
16562eede62SHugh Dickins unsigned long zero_pfn __read_mostly;
1660b70068eSArd Biesheuvel EXPORT_SYMBOL(zero_pfn);
1670b70068eSArd Biesheuvel 
168166f61b9STobin C Harding unsigned long highest_memmap_pfn __read_mostly;
169166f61b9STobin C Harding 
170a13ea5b7SHugh Dickins /*
171a13ea5b7SHugh Dickins  * CONFIG_MMU architectures set up ZERO_PAGE in their paging_init()
172a13ea5b7SHugh Dickins  */
173a13ea5b7SHugh Dickins static int __init init_zero_pfn(void)
174a13ea5b7SHugh Dickins {
175a13ea5b7SHugh Dickins 	zero_pfn = page_to_pfn(ZERO_PAGE(0));
176a13ea5b7SHugh Dickins 	return 0;
177a13ea5b7SHugh Dickins }
178e720e7d0SIlya Lipnitskiy early_initcall(init_zero_pfn);
179a62eaf15SAndi Kleen 
180f1a79412SShakeel Butt void mm_trace_rss_stat(struct mm_struct *mm, int member)
181b3d1411bSJoel Fernandes (Google) {
182f1a79412SShakeel Butt 	trace_rss_stat(mm, member);
183b3d1411bSJoel Fernandes (Google) }
184d559db08SKAMEZAWA Hiroyuki 
1851da177e4SLinus Torvalds /*
1861da177e4SLinus Torvalds  * Note: this doesn't free the actual pages themselves. That
1871da177e4SLinus Torvalds  * has been handled earlier when unmapping all the memory regions.
1881da177e4SLinus Torvalds  */
1899e1b32caSBenjamin Herrenschmidt static void free_pte_range(struct mmu_gather *tlb, pmd_t *pmd,
1909e1b32caSBenjamin Herrenschmidt 			   unsigned long addr)
1911da177e4SLinus Torvalds {
1922f569afdSMartin Schwidefsky 	pgtable_t token = pmd_pgtable(*pmd);
1931da177e4SLinus Torvalds 	pmd_clear(pmd);
1949e1b32caSBenjamin Herrenschmidt 	pte_free_tlb(tlb, token, addr);
195c4812909SKirill A. Shutemov 	mm_dec_nr_ptes(tlb->mm);
1961da177e4SLinus Torvalds }
1971da177e4SLinus Torvalds 
198e0da382cSHugh Dickins static inline void free_pmd_range(struct mmu_gather *tlb, pud_t *pud,
199e0da382cSHugh Dickins 				unsigned long addr, unsigned long end,
200e0da382cSHugh Dickins 				unsigned long floor, unsigned long ceiling)
2011da177e4SLinus Torvalds {
2021da177e4SLinus Torvalds 	pmd_t *pmd;
2031da177e4SLinus Torvalds 	unsigned long next;
204e0da382cSHugh Dickins 	unsigned long start;
2051da177e4SLinus Torvalds 
206e0da382cSHugh Dickins 	start = addr;
2071da177e4SLinus Torvalds 	pmd = pmd_offset(pud, addr);
2081da177e4SLinus Torvalds 	do {
2091da177e4SLinus Torvalds 		next = pmd_addr_end(addr, end);
2101da177e4SLinus Torvalds 		if (pmd_none_or_clear_bad(pmd))
2111da177e4SLinus Torvalds 			continue;
2129e1b32caSBenjamin Herrenschmidt 		free_pte_range(tlb, pmd, addr);
2131da177e4SLinus Torvalds 	} while (pmd++, addr = next, addr != end);
2141da177e4SLinus Torvalds 
215e0da382cSHugh Dickins 	start &= PUD_MASK;
216e0da382cSHugh Dickins 	if (start < floor)
217e0da382cSHugh Dickins 		return;
218e0da382cSHugh Dickins 	if (ceiling) {
219e0da382cSHugh Dickins 		ceiling &= PUD_MASK;
220e0da382cSHugh Dickins 		if (!ceiling)
221e0da382cSHugh Dickins 			return;
2221da177e4SLinus Torvalds 	}
223e0da382cSHugh Dickins 	if (end - 1 > ceiling - 1)
224e0da382cSHugh Dickins 		return;
225e0da382cSHugh Dickins 
226e0da382cSHugh Dickins 	pmd = pmd_offset(pud, start);
227e0da382cSHugh Dickins 	pud_clear(pud);
2289e1b32caSBenjamin Herrenschmidt 	pmd_free_tlb(tlb, pmd, start);
229dc6c9a35SKirill A. Shutemov 	mm_dec_nr_pmds(tlb->mm);
2301da177e4SLinus Torvalds }
2311da177e4SLinus Torvalds 
232c2febafcSKirill A. Shutemov static inline void free_pud_range(struct mmu_gather *tlb, p4d_t *p4d,
233e0da382cSHugh Dickins 				unsigned long addr, unsigned long end,
234e0da382cSHugh Dickins 				unsigned long floor, unsigned long ceiling)
2351da177e4SLinus Torvalds {
2361da177e4SLinus Torvalds 	pud_t *pud;
2371da177e4SLinus Torvalds 	unsigned long next;
238e0da382cSHugh Dickins 	unsigned long start;
2391da177e4SLinus Torvalds 
240e0da382cSHugh Dickins 	start = addr;
241c2febafcSKirill A. Shutemov 	pud = pud_offset(p4d, addr);
2421da177e4SLinus Torvalds 	do {
2431da177e4SLinus Torvalds 		next = pud_addr_end(addr, end);
2441da177e4SLinus Torvalds 		if (pud_none_or_clear_bad(pud))
2451da177e4SLinus Torvalds 			continue;
246e0da382cSHugh Dickins 		free_pmd_range(tlb, pud, addr, next, floor, ceiling);
2471da177e4SLinus Torvalds 	} while (pud++, addr = next, addr != end);
2481da177e4SLinus Torvalds 
249c2febafcSKirill A. Shutemov 	start &= P4D_MASK;
250c2febafcSKirill A. Shutemov 	if (start < floor)
251c2febafcSKirill A. Shutemov 		return;
252c2febafcSKirill A. Shutemov 	if (ceiling) {
253c2febafcSKirill A. Shutemov 		ceiling &= P4D_MASK;
254c2febafcSKirill A. Shutemov 		if (!ceiling)
255c2febafcSKirill A. Shutemov 			return;
256c2febafcSKirill A. Shutemov 	}
257c2febafcSKirill A. Shutemov 	if (end - 1 > ceiling - 1)
258c2febafcSKirill A. Shutemov 		return;
259c2febafcSKirill A. Shutemov 
260c2febafcSKirill A. Shutemov 	pud = pud_offset(p4d, start);
261c2febafcSKirill A. Shutemov 	p4d_clear(p4d);
262c2febafcSKirill A. Shutemov 	pud_free_tlb(tlb, pud, start);
263b4e98d9aSKirill A. Shutemov 	mm_dec_nr_puds(tlb->mm);
264c2febafcSKirill A. Shutemov }
265c2febafcSKirill A. Shutemov 
266c2febafcSKirill A. Shutemov static inline void free_p4d_range(struct mmu_gather *tlb, pgd_t *pgd,
267c2febafcSKirill A. Shutemov 				unsigned long addr, unsigned long end,
268c2febafcSKirill A. Shutemov 				unsigned long floor, unsigned long ceiling)
269c2febafcSKirill A. Shutemov {
270c2febafcSKirill A. Shutemov 	p4d_t *p4d;
271c2febafcSKirill A. Shutemov 	unsigned long next;
272c2febafcSKirill A. Shutemov 	unsigned long start;
273c2febafcSKirill A. Shutemov 
274c2febafcSKirill A. Shutemov 	start = addr;
275c2febafcSKirill A. Shutemov 	p4d = p4d_offset(pgd, addr);
276c2febafcSKirill A. Shutemov 	do {
277c2febafcSKirill A. Shutemov 		next = p4d_addr_end(addr, end);
278c2febafcSKirill A. Shutemov 		if (p4d_none_or_clear_bad(p4d))
279c2febafcSKirill A. Shutemov 			continue;
280c2febafcSKirill A. Shutemov 		free_pud_range(tlb, p4d, addr, next, floor, ceiling);
281c2febafcSKirill A. Shutemov 	} while (p4d++, addr = next, addr != end);
282c2febafcSKirill A. Shutemov 
283e0da382cSHugh Dickins 	start &= PGDIR_MASK;
284e0da382cSHugh Dickins 	if (start < floor)
285e0da382cSHugh Dickins 		return;
286e0da382cSHugh Dickins 	if (ceiling) {
287e0da382cSHugh Dickins 		ceiling &= PGDIR_MASK;
288e0da382cSHugh Dickins 		if (!ceiling)
289e0da382cSHugh Dickins 			return;
2901da177e4SLinus Torvalds 	}
291e0da382cSHugh Dickins 	if (end - 1 > ceiling - 1)
292e0da382cSHugh Dickins 		return;
293e0da382cSHugh Dickins 
294c2febafcSKirill A. Shutemov 	p4d = p4d_offset(pgd, start);
295e0da382cSHugh Dickins 	pgd_clear(pgd);
296c2febafcSKirill A. Shutemov 	p4d_free_tlb(tlb, p4d, start);
2971da177e4SLinus Torvalds }
2981da177e4SLinus Torvalds 
2991da177e4SLinus Torvalds /*
300e0da382cSHugh Dickins  * This function frees user-level page tables of a process.
3011da177e4SLinus Torvalds  */
30242b77728SJan Beulich void free_pgd_range(struct mmu_gather *tlb,
303e0da382cSHugh Dickins 			unsigned long addr, unsigned long end,
304e0da382cSHugh Dickins 			unsigned long floor, unsigned long ceiling)
3051da177e4SLinus Torvalds {
3061da177e4SLinus Torvalds 	pgd_t *pgd;
3071da177e4SLinus Torvalds 	unsigned long next;
3081da177e4SLinus Torvalds 
309e0da382cSHugh Dickins 	/*
310e0da382cSHugh Dickins 	 * The next few lines have given us lots of grief...
311e0da382cSHugh Dickins 	 *
312e0da382cSHugh Dickins 	 * Why are we testing PMD* at this top level?  Because often
313e0da382cSHugh Dickins 	 * there will be no work to do at all, and we'd prefer not to
314e0da382cSHugh Dickins 	 * go all the way down to the bottom just to discover that.
315e0da382cSHugh Dickins 	 *
316e0da382cSHugh Dickins 	 * Why all these "- 1"s?  Because 0 represents both the bottom
317e0da382cSHugh Dickins 	 * of the address space and the top of it (using -1 for the
318e0da382cSHugh Dickins 	 * top wouldn't help much: the masks would do the wrong thing).
319e0da382cSHugh Dickins 	 * The rule is that addr 0 and floor 0 refer to the bottom of
320e0da382cSHugh Dickins 	 * the address space, but end 0 and ceiling 0 refer to the top
321e0da382cSHugh Dickins 	 * Comparisons need to use "end - 1" and "ceiling - 1" (though
322e0da382cSHugh Dickins 	 * that end 0 case should be mythical).
323e0da382cSHugh Dickins 	 *
324e0da382cSHugh Dickins 	 * Wherever addr is brought up or ceiling brought down, we must
325e0da382cSHugh Dickins 	 * be careful to reject "the opposite 0" before it confuses the
326e0da382cSHugh Dickins 	 * subsequent tests.  But what about where end is brought down
327e0da382cSHugh Dickins 	 * by PMD_SIZE below? no, end can't go down to 0 there.
328e0da382cSHugh Dickins 	 *
329e0da382cSHugh Dickins 	 * Whereas we round start (addr) and ceiling down, by different
330e0da382cSHugh Dickins 	 * masks at different levels, in order to test whether a table
331e0da382cSHugh Dickins 	 * now has no other vmas using it, so can be freed, we don't
332e0da382cSHugh Dickins 	 * bother to round floor or end up - the tests don't need that.
333e0da382cSHugh Dickins 	 */
334e0da382cSHugh Dickins 
335e0da382cSHugh Dickins 	addr &= PMD_MASK;
336e0da382cSHugh Dickins 	if (addr < floor) {
337e0da382cSHugh Dickins 		addr += PMD_SIZE;
338e0da382cSHugh Dickins 		if (!addr)
339e0da382cSHugh Dickins 			return;
340e0da382cSHugh Dickins 	}
341e0da382cSHugh Dickins 	if (ceiling) {
342e0da382cSHugh Dickins 		ceiling &= PMD_MASK;
343e0da382cSHugh Dickins 		if (!ceiling)
344e0da382cSHugh Dickins 			return;
345e0da382cSHugh Dickins 	}
346e0da382cSHugh Dickins 	if (end - 1 > ceiling - 1)
347e0da382cSHugh Dickins 		end -= PMD_SIZE;
348e0da382cSHugh Dickins 	if (addr > end - 1)
349e0da382cSHugh Dickins 		return;
35007e32661SAneesh Kumar K.V 	/*
35107e32661SAneesh Kumar K.V 	 * We add page table cache pages with PAGE_SIZE,
35207e32661SAneesh Kumar K.V 	 * (see pte_free_tlb()), flush the tlb if we need
35307e32661SAneesh Kumar K.V 	 */
354ed6a7935SPeter Zijlstra 	tlb_change_page_size(tlb, PAGE_SIZE);
35542b77728SJan Beulich 	pgd = pgd_offset(tlb->mm, addr);
3561da177e4SLinus Torvalds 	do {
3571da177e4SLinus Torvalds 		next = pgd_addr_end(addr, end);
3581da177e4SLinus Torvalds 		if (pgd_none_or_clear_bad(pgd))
3591da177e4SLinus Torvalds 			continue;
360c2febafcSKirill A. Shutemov 		free_p4d_range(tlb, pgd, addr, next, floor, ceiling);
3611da177e4SLinus Torvalds 	} while (pgd++, addr = next, addr != end);
362e0da382cSHugh Dickins }
363e0da382cSHugh Dickins 
364763ecb03SLiam R. Howlett void free_pgtables(struct mmu_gather *tlb, struct maple_tree *mt,
365763ecb03SLiam R. Howlett 		   struct vm_area_struct *vma, unsigned long floor,
36698e51a22SSuren Baghdasaryan 		   unsigned long ceiling, bool mm_wr_locked)
367e0da382cSHugh Dickins {
368763ecb03SLiam R. Howlett 	MA_STATE(mas, mt, vma->vm_end, vma->vm_end);
369763ecb03SLiam R. Howlett 
370763ecb03SLiam R. Howlett 	do {
371e0da382cSHugh Dickins 		unsigned long addr = vma->vm_start;
372763ecb03SLiam R. Howlett 		struct vm_area_struct *next;
373763ecb03SLiam R. Howlett 
374763ecb03SLiam R. Howlett 		/*
375763ecb03SLiam R. Howlett 		 * Note: USER_PGTABLES_CEILING may be passed as ceiling and may
376763ecb03SLiam R. Howlett 		 * be 0.  This will underflow and is okay.
377763ecb03SLiam R. Howlett 		 */
378763ecb03SLiam R. Howlett 		next = mas_find(&mas, ceiling - 1);
379e0da382cSHugh Dickins 
3808f4f8c16SHugh Dickins 		/*
38125d9e2d1Snpiggin@suse.de 		 * Hide vma from rmap and truncate_pagecache before freeing
38225d9e2d1Snpiggin@suse.de 		 * pgtables
3838f4f8c16SHugh Dickins 		 */
38498e51a22SSuren Baghdasaryan 		if (mm_wr_locked)
38598e51a22SSuren Baghdasaryan 			vma_start_write(vma);
3865beb4930SRik van Riel 		unlink_anon_vmas(vma);
3878f4f8c16SHugh Dickins 		unlink_file_vma(vma);
3888f4f8c16SHugh Dickins 
3899da61aefSDavid Gibson 		if (is_vm_hugetlb_page(vma)) {
3903bf5ee95SHugh Dickins 			hugetlb_free_pgd_range(tlb, addr, vma->vm_end,
3913bf5ee95SHugh Dickins 				floor, next ? next->vm_start : ceiling);
3923bf5ee95SHugh Dickins 		} else {
3933bf5ee95SHugh Dickins 			/*
3943bf5ee95SHugh Dickins 			 * Optimization: gather nearby vmas into one call down
3953bf5ee95SHugh Dickins 			 */
3963bf5ee95SHugh Dickins 			while (next && next->vm_start <= vma->vm_end + PMD_SIZE
3974866920bSDavid Gibson 			       && !is_vm_hugetlb_page(next)) {
398e0da382cSHugh Dickins 				vma = next;
399763ecb03SLiam R. Howlett 				next = mas_find(&mas, ceiling - 1);
40098e51a22SSuren Baghdasaryan 				if (mm_wr_locked)
40198e51a22SSuren Baghdasaryan 					vma_start_write(vma);
4025beb4930SRik van Riel 				unlink_anon_vmas(vma);
4038f4f8c16SHugh Dickins 				unlink_file_vma(vma);
404e0da382cSHugh Dickins 			}
4053bf5ee95SHugh Dickins 			free_pgd_range(tlb, addr, vma->vm_end,
406e0da382cSHugh Dickins 				floor, next ? next->vm_start : ceiling);
4073bf5ee95SHugh Dickins 		}
408e0da382cSHugh Dickins 		vma = next;
409763ecb03SLiam R. Howlett 	} while (vma);
4101da177e4SLinus Torvalds }
4111da177e4SLinus Torvalds 
41203c4f204SQi Zheng void pmd_install(struct mm_struct *mm, pmd_t *pmd, pgtable_t *pte)
4131da177e4SLinus Torvalds {
41403c4f204SQi Zheng 	spinlock_t *ptl = pmd_lock(mm, pmd);
4151bb3630eSHugh Dickins 
41603c4f204SQi Zheng 	if (likely(pmd_none(*pmd))) {	/* Has another populated it ? */
41703c4f204SQi Zheng 		mm_inc_nr_ptes(mm);
418362a61adSNick Piggin 		/*
419362a61adSNick Piggin 		 * Ensure all pte setup (eg. pte page lock and page clearing) are
420362a61adSNick Piggin 		 * visible before the pte is made visible to other CPUs by being
421362a61adSNick Piggin 		 * put into page tables.
422362a61adSNick Piggin 		 *
423362a61adSNick Piggin 		 * The other side of the story is the pointer chasing in the page
424362a61adSNick Piggin 		 * table walking code (when walking the page table without locking;
425362a61adSNick Piggin 		 * ie. most of the time). Fortunately, these data accesses consist
426362a61adSNick Piggin 		 * of a chain of data-dependent loads, meaning most CPUs (alpha
427362a61adSNick Piggin 		 * being the notable exception) will already guarantee loads are
428362a61adSNick Piggin 		 * seen in-order. See the alpha page table accessors for the
429bb7cdd38SWill Deacon 		 * smp_rmb() barriers in page table walking code.
430362a61adSNick Piggin 		 */
431362a61adSNick Piggin 		smp_wmb(); /* Could be smp_wmb__xxx(before|after)_spin_lock */
432ed33b5a6SQi Zheng 		pmd_populate(mm, pmd, *pte);
433ed33b5a6SQi Zheng 		*pte = NULL;
4344b471e88SKirill A. Shutemov 	}
435c4088ebdSKirill A. Shutemov 	spin_unlock(ptl);
436ed33b5a6SQi Zheng }
437ed33b5a6SQi Zheng 
438ed33b5a6SQi Zheng int __pte_alloc(struct mm_struct *mm, pmd_t *pmd)
439ed33b5a6SQi Zheng {
440ed33b5a6SQi Zheng 	pgtable_t new = pte_alloc_one(mm);
441ed33b5a6SQi Zheng 	if (!new)
442ed33b5a6SQi Zheng 		return -ENOMEM;
4438ac1f832SAndrea Arcangeli 
44403c4f204SQi Zheng 	pmd_install(mm, pmd, &new);
4452f569afdSMartin Schwidefsky 	if (new)
4462f569afdSMartin Schwidefsky 		pte_free(mm, new);
4471bb3630eSHugh Dickins 	return 0;
4481da177e4SLinus Torvalds }
4491da177e4SLinus Torvalds 
4504cf58924SJoel Fernandes (Google) int __pte_alloc_kernel(pmd_t *pmd)
4511da177e4SLinus Torvalds {
4524cf58924SJoel Fernandes (Google) 	pte_t *new = pte_alloc_one_kernel(&init_mm);
4531da177e4SLinus Torvalds 	if (!new)
4541bb3630eSHugh Dickins 		return -ENOMEM;
4551da177e4SLinus Torvalds 
456872fec16SHugh Dickins 	spin_lock(&init_mm.page_table_lock);
4578ac1f832SAndrea Arcangeli 	if (likely(pmd_none(*pmd))) {	/* Has another populated it ? */
458ed33b5a6SQi Zheng 		smp_wmb(); /* See comment in pmd_install() */
459872fec16SHugh Dickins 		pmd_populate_kernel(&init_mm, pmd, new);
4602f569afdSMartin Schwidefsky 		new = NULL;
4614b471e88SKirill A. Shutemov 	}
462872fec16SHugh Dickins 	spin_unlock(&init_mm.page_table_lock);
4632f569afdSMartin Schwidefsky 	if (new)
4642f569afdSMartin Schwidefsky 		pte_free_kernel(&init_mm, new);
4651bb3630eSHugh Dickins 	return 0;
4661da177e4SLinus Torvalds }
4671da177e4SLinus Torvalds 
468d559db08SKAMEZAWA Hiroyuki static inline void init_rss_vec(int *rss)
469ae859762SHugh Dickins {
470d559db08SKAMEZAWA Hiroyuki 	memset(rss, 0, sizeof(int) * NR_MM_COUNTERS);
471d559db08SKAMEZAWA Hiroyuki }
472d559db08SKAMEZAWA Hiroyuki 
473d559db08SKAMEZAWA Hiroyuki static inline void add_mm_rss_vec(struct mm_struct *mm, int *rss)
474d559db08SKAMEZAWA Hiroyuki {
475d559db08SKAMEZAWA Hiroyuki 	int i;
476d559db08SKAMEZAWA Hiroyuki 
47734e55232SKAMEZAWA Hiroyuki 	if (current->mm == mm)
47805af2e10SDavid Rientjes 		sync_mm_rss(mm);
479d559db08SKAMEZAWA Hiroyuki 	for (i = 0; i < NR_MM_COUNTERS; i++)
480d559db08SKAMEZAWA Hiroyuki 		if (rss[i])
481d559db08SKAMEZAWA Hiroyuki 			add_mm_counter(mm, i, rss[i]);
482ae859762SHugh Dickins }
483ae859762SHugh Dickins 
4841da177e4SLinus Torvalds /*
4856aab341eSLinus Torvalds  * This function is called to print an error when a bad pte
4866aab341eSLinus Torvalds  * is found. For example, we might have a PFN-mapped pte in
4876aab341eSLinus Torvalds  * a region that doesn't allow it.
488b5810039SNick Piggin  *
489b5810039SNick Piggin  * The calling function must still handle the error.
490b5810039SNick Piggin  */
4913dc14741SHugh Dickins static void print_bad_pte(struct vm_area_struct *vma, unsigned long addr,
4923dc14741SHugh Dickins 			  pte_t pte, struct page *page)
493b5810039SNick Piggin {
4943dc14741SHugh Dickins 	pgd_t *pgd = pgd_offset(vma->vm_mm, addr);
495c2febafcSKirill A. Shutemov 	p4d_t *p4d = p4d_offset(pgd, addr);
496c2febafcSKirill A. Shutemov 	pud_t *pud = pud_offset(p4d, addr);
4973dc14741SHugh Dickins 	pmd_t *pmd = pmd_offset(pud, addr);
4983dc14741SHugh Dickins 	struct address_space *mapping;
4993dc14741SHugh Dickins 	pgoff_t index;
500d936cf9bSHugh Dickins 	static unsigned long resume;
501d936cf9bSHugh Dickins 	static unsigned long nr_shown;
502d936cf9bSHugh Dickins 	static unsigned long nr_unshown;
503d936cf9bSHugh Dickins 
504d936cf9bSHugh Dickins 	/*
505d936cf9bSHugh Dickins 	 * Allow a burst of 60 reports, then keep quiet for that minute;
506d936cf9bSHugh Dickins 	 * or allow a steady drip of one report per second.
507d936cf9bSHugh Dickins 	 */
508d936cf9bSHugh Dickins 	if (nr_shown == 60) {
509d936cf9bSHugh Dickins 		if (time_before(jiffies, resume)) {
510d936cf9bSHugh Dickins 			nr_unshown++;
511d936cf9bSHugh Dickins 			return;
512d936cf9bSHugh Dickins 		}
513d936cf9bSHugh Dickins 		if (nr_unshown) {
5141170532bSJoe Perches 			pr_alert("BUG: Bad page map: %lu messages suppressed\n",
515d936cf9bSHugh Dickins 				 nr_unshown);
516d936cf9bSHugh Dickins 			nr_unshown = 0;
517d936cf9bSHugh Dickins 		}
518d936cf9bSHugh Dickins 		nr_shown = 0;
519d936cf9bSHugh Dickins 	}
520d936cf9bSHugh Dickins 	if (nr_shown++ == 0)
521d936cf9bSHugh Dickins 		resume = jiffies + 60 * HZ;
5223dc14741SHugh Dickins 
5233dc14741SHugh Dickins 	mapping = vma->vm_file ? vma->vm_file->f_mapping : NULL;
5243dc14741SHugh Dickins 	index = linear_page_index(vma, addr);
5253dc14741SHugh Dickins 
5261170532bSJoe Perches 	pr_alert("BUG: Bad page map in process %s  pte:%08llx pmd:%08llx\n",
5273dc14741SHugh Dickins 		 current->comm,
5283dc14741SHugh Dickins 		 (long long)pte_val(pte), (long long)pmd_val(*pmd));
529718a3821SWu Fengguang 	if (page)
530f0b791a3SDave Hansen 		dump_page(page, "bad pte");
5316aa9b8b2SKefeng Wang 	pr_alert("addr:%px vm_flags:%08lx anon_vma:%px mapping:%px index:%lx\n",
5323dc14741SHugh Dickins 		 (void *)addr, vma->vm_flags, vma->anon_vma, mapping, index);
5337e0a1265SMatthew Wilcox (Oracle) 	pr_alert("file:%pD fault:%ps mmap:%ps read_folio:%ps\n",
5342682582aSKonstantin Khlebnikov 		 vma->vm_file,
5352682582aSKonstantin Khlebnikov 		 vma->vm_ops ? vma->vm_ops->fault : NULL,
5362682582aSKonstantin Khlebnikov 		 vma->vm_file ? vma->vm_file->f_op->mmap : NULL,
5377e0a1265SMatthew Wilcox (Oracle) 		 mapping ? mapping->a_ops->read_folio : NULL);
538b5810039SNick Piggin 	dump_stack();
539373d4d09SRusty Russell 	add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
540b5810039SNick Piggin }
541b5810039SNick Piggin 
542b5810039SNick Piggin /*
5437e675137SNick Piggin  * vm_normal_page -- This function gets the "struct page" associated with a pte.
5446aab341eSLinus Torvalds  *
5457e675137SNick Piggin  * "Special" mappings do not wish to be associated with a "struct page" (either
5467e675137SNick Piggin  * it doesn't exist, or it exists but they don't want to touch it). In this
5477e675137SNick Piggin  * case, NULL is returned here. "Normal" mappings do have a struct page.
548b379d790SJared Hulbert  *
5497e675137SNick Piggin  * There are 2 broad cases. Firstly, an architecture may define a pte_special()
5507e675137SNick Piggin  * pte bit, in which case this function is trivial. Secondly, an architecture
5517e675137SNick Piggin  * may not have a spare pte bit, which requires a more complicated scheme,
5527e675137SNick Piggin  * described below.
5537e675137SNick Piggin  *
5547e675137SNick Piggin  * A raw VM_PFNMAP mapping (ie. one that is not COWed) is always considered a
5557e675137SNick Piggin  * special mapping (even if there are underlying and valid "struct pages").
5567e675137SNick Piggin  * COWed pages of a VM_PFNMAP are always normal.
5576aab341eSLinus Torvalds  *
558b379d790SJared Hulbert  * The way we recognize COWed pages within VM_PFNMAP mappings is through the
559b379d790SJared Hulbert  * rules set up by "remap_pfn_range()": the vma will have the VM_PFNMAP bit
5607e675137SNick Piggin  * set, and the vm_pgoff will point to the first PFN mapped: thus every special
5617e675137SNick Piggin  * mapping will always honor the rule
5626aab341eSLinus Torvalds  *
5636aab341eSLinus Torvalds  *	pfn_of_page == vma->vm_pgoff + ((addr - vma->vm_start) >> PAGE_SHIFT)
5646aab341eSLinus Torvalds  *
5657e675137SNick Piggin  * And for normal mappings this is false.
566b379d790SJared Hulbert  *
5677e675137SNick Piggin  * This restricts such mappings to be a linear translation from virtual address
5687e675137SNick Piggin  * to pfn. To get around this restriction, we allow arbitrary mappings so long
5697e675137SNick Piggin  * as the vma is not a COW mapping; in that case, we know that all ptes are
5707e675137SNick Piggin  * special (because none can have been COWed).
571b379d790SJared Hulbert  *
572b379d790SJared Hulbert  *
5737e675137SNick Piggin  * In order to support COW of arbitrary special mappings, we have VM_MIXEDMAP.
5747e675137SNick Piggin  *
575b379d790SJared Hulbert  * VM_MIXEDMAP mappings can likewise contain memory with or without "struct
576b379d790SJared Hulbert  * page" backing, however the difference is that _all_ pages with a struct
577b379d790SJared Hulbert  * page (that is, those where pfn_valid is true) are refcounted and considered
578b379d790SJared Hulbert  * normal pages by the VM. The disadvantage is that pages are refcounted
579b379d790SJared Hulbert  * (which can be slower and simply not an option for some PFNMAP users). The
580b379d790SJared Hulbert  * advantage is that we don't have to follow the strict linearity rule of
581b379d790SJared Hulbert  * PFNMAP mappings in order to support COWable mappings.
582b379d790SJared Hulbert  *
583ee498ed7SHugh Dickins  */
58425b2995aSChristoph Hellwig struct page *vm_normal_page(struct vm_area_struct *vma, unsigned long addr,
58525b2995aSChristoph Hellwig 			    pte_t pte)
586ee498ed7SHugh Dickins {
58722b31eecSHugh Dickins 	unsigned long pfn = pte_pfn(pte);
5887e675137SNick Piggin 
58900b3a331SLaurent Dufour 	if (IS_ENABLED(CONFIG_ARCH_HAS_PTE_SPECIAL)) {
590b38af472SHugh Dickins 		if (likely(!pte_special(pte)))
59122b31eecSHugh Dickins 			goto check_pfn;
592667a0a06SDavid Vrabel 		if (vma->vm_ops && vma->vm_ops->find_special_page)
593667a0a06SDavid Vrabel 			return vma->vm_ops->find_special_page(vma, addr);
594a13ea5b7SHugh Dickins 		if (vma->vm_flags & (VM_PFNMAP | VM_MIXEDMAP))
595a13ea5b7SHugh Dickins 			return NULL;
596df6ad698SJérôme Glisse 		if (is_zero_pfn(pfn))
597df6ad698SJérôme Glisse 			return NULL;
598e1fb4a08SDave Jiang 		if (pte_devmap(pte))
5993218f871SAlex Sierra 		/*
6003218f871SAlex Sierra 		 * NOTE: New users of ZONE_DEVICE will not set pte_devmap()
6013218f871SAlex Sierra 		 * and will have refcounts incremented on their struct pages
6023218f871SAlex Sierra 		 * when they are inserted into PTEs, thus they are safe to
6033218f871SAlex Sierra 		 * return here. Legacy ZONE_DEVICE pages that set pte_devmap()
6043218f871SAlex Sierra 		 * do not have refcounts. Example of legacy ZONE_DEVICE is
6053218f871SAlex Sierra 		 * MEMORY_DEVICE_FS_DAX type in pmem or virtio_fs drivers.
6063218f871SAlex Sierra 		 */
607e1fb4a08SDave Jiang 			return NULL;
608e1fb4a08SDave Jiang 
60922b31eecSHugh Dickins 		print_bad_pte(vma, addr, pte, NULL);
6107e675137SNick Piggin 		return NULL;
6117e675137SNick Piggin 	}
6127e675137SNick Piggin 
61300b3a331SLaurent Dufour 	/* !CONFIG_ARCH_HAS_PTE_SPECIAL case follows: */
6147e675137SNick Piggin 
615b379d790SJared Hulbert 	if (unlikely(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP))) {
616b379d790SJared Hulbert 		if (vma->vm_flags & VM_MIXEDMAP) {
617b379d790SJared Hulbert 			if (!pfn_valid(pfn))
618b379d790SJared Hulbert 				return NULL;
619b379d790SJared Hulbert 			goto out;
620b379d790SJared Hulbert 		} else {
6217e675137SNick Piggin 			unsigned long off;
6227e675137SNick Piggin 			off = (addr - vma->vm_start) >> PAGE_SHIFT;
6236aab341eSLinus Torvalds 			if (pfn == vma->vm_pgoff + off)
6246aab341eSLinus Torvalds 				return NULL;
62567121172SLinus Torvalds 			if (!is_cow_mapping(vma->vm_flags))
626fb155c16SLinus Torvalds 				return NULL;
6276aab341eSLinus Torvalds 		}
628b379d790SJared Hulbert 	}
6296aab341eSLinus Torvalds 
630b38af472SHugh Dickins 	if (is_zero_pfn(pfn))
631b38af472SHugh Dickins 		return NULL;
63200b3a331SLaurent Dufour 
63322b31eecSHugh Dickins check_pfn:
63422b31eecSHugh Dickins 	if (unlikely(pfn > highest_memmap_pfn)) {
63522b31eecSHugh Dickins 		print_bad_pte(vma, addr, pte, NULL);
63622b31eecSHugh Dickins 		return NULL;
63722b31eecSHugh Dickins 	}
6386aab341eSLinus Torvalds 
6396aab341eSLinus Torvalds 	/*
6407e675137SNick Piggin 	 * NOTE! We still have PageReserved() pages in the page tables.
6417e675137SNick Piggin 	 * eg. VDSO mappings can cause them to exist.
6426aab341eSLinus Torvalds 	 */
643b379d790SJared Hulbert out:
6446aab341eSLinus Torvalds 	return pfn_to_page(pfn);
645ee498ed7SHugh Dickins }
646ee498ed7SHugh Dickins 
647318e9342SVishal Moola (Oracle) struct folio *vm_normal_folio(struct vm_area_struct *vma, unsigned long addr,
648318e9342SVishal Moola (Oracle) 			    pte_t pte)
649318e9342SVishal Moola (Oracle) {
650318e9342SVishal Moola (Oracle) 	struct page *page = vm_normal_page(vma, addr, pte);
651318e9342SVishal Moola (Oracle) 
652318e9342SVishal Moola (Oracle) 	if (page)
653318e9342SVishal Moola (Oracle) 		return page_folio(page);
654318e9342SVishal Moola (Oracle) 	return NULL;
655318e9342SVishal Moola (Oracle) }
656318e9342SVishal Moola (Oracle) 
65728093f9fSGerald Schaefer #ifdef CONFIG_TRANSPARENT_HUGEPAGE
65828093f9fSGerald Schaefer struct page *vm_normal_page_pmd(struct vm_area_struct *vma, unsigned long addr,
65928093f9fSGerald Schaefer 				pmd_t pmd)
66028093f9fSGerald Schaefer {
66128093f9fSGerald Schaefer 	unsigned long pfn = pmd_pfn(pmd);
66228093f9fSGerald Schaefer 
66328093f9fSGerald Schaefer 	/*
66428093f9fSGerald Schaefer 	 * There is no pmd_special() but there may be special pmds, e.g.
66528093f9fSGerald Schaefer 	 * in a direct-access (dax) mapping, so let's just replicate the
66600b3a331SLaurent Dufour 	 * !CONFIG_ARCH_HAS_PTE_SPECIAL case from vm_normal_page() here.
66728093f9fSGerald Schaefer 	 */
66828093f9fSGerald Schaefer 	if (unlikely(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP))) {
66928093f9fSGerald Schaefer 		if (vma->vm_flags & VM_MIXEDMAP) {
67028093f9fSGerald Schaefer 			if (!pfn_valid(pfn))
67128093f9fSGerald Schaefer 				return NULL;
67228093f9fSGerald Schaefer 			goto out;
67328093f9fSGerald Schaefer 		} else {
67428093f9fSGerald Schaefer 			unsigned long off;
67528093f9fSGerald Schaefer 			off = (addr - vma->vm_start) >> PAGE_SHIFT;
67628093f9fSGerald Schaefer 			if (pfn == vma->vm_pgoff + off)
67728093f9fSGerald Schaefer 				return NULL;
67828093f9fSGerald Schaefer 			if (!is_cow_mapping(vma->vm_flags))
67928093f9fSGerald Schaefer 				return NULL;
68028093f9fSGerald Schaefer 		}
68128093f9fSGerald Schaefer 	}
68228093f9fSGerald Schaefer 
683e1fb4a08SDave Jiang 	if (pmd_devmap(pmd))
684e1fb4a08SDave Jiang 		return NULL;
6853cde287bSYu Zhao 	if (is_huge_zero_pmd(pmd))
68628093f9fSGerald Schaefer 		return NULL;
68728093f9fSGerald Schaefer 	if (unlikely(pfn > highest_memmap_pfn))
68828093f9fSGerald Schaefer 		return NULL;
68928093f9fSGerald Schaefer 
69028093f9fSGerald Schaefer 	/*
69128093f9fSGerald Schaefer 	 * NOTE! We still have PageReserved() pages in the page tables.
69228093f9fSGerald Schaefer 	 * eg. VDSO mappings can cause them to exist.
69328093f9fSGerald Schaefer 	 */
69428093f9fSGerald Schaefer out:
69528093f9fSGerald Schaefer 	return pfn_to_page(pfn);
69628093f9fSGerald Schaefer }
69728093f9fSGerald Schaefer #endif
69828093f9fSGerald Schaefer 
699b756a3b5SAlistair Popple static void restore_exclusive_pte(struct vm_area_struct *vma,
700b756a3b5SAlistair Popple 				  struct page *page, unsigned long address,
701b756a3b5SAlistair Popple 				  pte_t *ptep)
702b756a3b5SAlistair Popple {
703c33c7948SRyan Roberts 	pte_t orig_pte;
704b756a3b5SAlistair Popple 	pte_t pte;
705b756a3b5SAlistair Popple 	swp_entry_t entry;
706b756a3b5SAlistair Popple 
707c33c7948SRyan Roberts 	orig_pte = ptep_get(ptep);
708b756a3b5SAlistair Popple 	pte = pte_mkold(mk_pte(page, READ_ONCE(vma->vm_page_prot)));
709c33c7948SRyan Roberts 	if (pte_swp_soft_dirty(orig_pte))
710b756a3b5SAlistair Popple 		pte = pte_mksoft_dirty(pte);
711b756a3b5SAlistair Popple 
712c33c7948SRyan Roberts 	entry = pte_to_swp_entry(orig_pte);
713c33c7948SRyan Roberts 	if (pte_swp_uffd_wp(orig_pte))
714b756a3b5SAlistair Popple 		pte = pte_mkuffd_wp(pte);
715b756a3b5SAlistair Popple 	else if (is_writable_device_exclusive_entry(entry))
716b756a3b5SAlistair Popple 		pte = maybe_mkwrite(pte_mkdirty(pte), vma);
717b756a3b5SAlistair Popple 
7186c287605SDavid Hildenbrand 	VM_BUG_ON(pte_write(pte) && !(PageAnon(page) && PageAnonExclusive(page)));
7196c287605SDavid Hildenbrand 
720b756a3b5SAlistair Popple 	/*
721b756a3b5SAlistair Popple 	 * No need to take a page reference as one was already
722b756a3b5SAlistair Popple 	 * created when the swap entry was made.
723b756a3b5SAlistair Popple 	 */
724b756a3b5SAlistair Popple 	if (PageAnon(page))
725f1e2db12SDavid Hildenbrand 		page_add_anon_rmap(page, vma, address, RMAP_NONE);
726b756a3b5SAlistair Popple 	else
727b756a3b5SAlistair Popple 		/*
728b756a3b5SAlistair Popple 		 * Currently device exclusive access only supports anonymous
729b756a3b5SAlistair Popple 		 * memory so the entry shouldn't point to a filebacked page.
730b756a3b5SAlistair Popple 		 */
7314d8ff640SMiaohe Lin 		WARN_ON_ONCE(1);
732b756a3b5SAlistair Popple 
7331eba86c0SPasha Tatashin 	set_pte_at(vma->vm_mm, address, ptep, pte);
7341eba86c0SPasha Tatashin 
735b756a3b5SAlistair Popple 	/*
736b756a3b5SAlistair Popple 	 * No need to invalidate - it was non-present before. However
737b756a3b5SAlistair Popple 	 * secondary CPUs may have mappings that need invalidating.
738b756a3b5SAlistair Popple 	 */
739b756a3b5SAlistair Popple 	update_mmu_cache(vma, address, ptep);
740b756a3b5SAlistair Popple }
741b756a3b5SAlistair Popple 
742b756a3b5SAlistair Popple /*
743b756a3b5SAlistair Popple  * Tries to restore an exclusive pte if the page lock can be acquired without
744b756a3b5SAlistair Popple  * sleeping.
745b756a3b5SAlistair Popple  */
746b756a3b5SAlistair Popple static int
747b756a3b5SAlistair Popple try_restore_exclusive_pte(pte_t *src_pte, struct vm_area_struct *vma,
748b756a3b5SAlistair Popple 			unsigned long addr)
749b756a3b5SAlistair Popple {
750c33c7948SRyan Roberts 	swp_entry_t entry = pte_to_swp_entry(ptep_get(src_pte));
751b756a3b5SAlistair Popple 	struct page *page = pfn_swap_entry_to_page(entry);
752b756a3b5SAlistair Popple 
753b756a3b5SAlistair Popple 	if (trylock_page(page)) {
754b756a3b5SAlistair Popple 		restore_exclusive_pte(vma, page, addr, src_pte);
755b756a3b5SAlistair Popple 		unlock_page(page);
756b756a3b5SAlistair Popple 		return 0;
757b756a3b5SAlistair Popple 	}
758b756a3b5SAlistair Popple 
759b756a3b5SAlistair Popple 	return -EBUSY;
760b756a3b5SAlistair Popple }
761b756a3b5SAlistair Popple 
762ee498ed7SHugh Dickins /*
7631da177e4SLinus Torvalds  * copy one vm_area from one task to the other. Assumes the page tables
7641da177e4SLinus Torvalds  * already present in the new task to be cleared in the whole range
7651da177e4SLinus Torvalds  * covered by this vma.
7661da177e4SLinus Torvalds  */
7671da177e4SLinus Torvalds 
768df3a57d1SLinus Torvalds static unsigned long
769df3a57d1SLinus Torvalds copy_nonpresent_pte(struct mm_struct *dst_mm, struct mm_struct *src_mm,
7708f34f1eaSPeter Xu 		pte_t *dst_pte, pte_t *src_pte, struct vm_area_struct *dst_vma,
7718f34f1eaSPeter Xu 		struct vm_area_struct *src_vma, unsigned long addr, int *rss)
7721da177e4SLinus Torvalds {
7738f34f1eaSPeter Xu 	unsigned long vm_flags = dst_vma->vm_flags;
774c33c7948SRyan Roberts 	pte_t orig_pte = ptep_get(src_pte);
775c33c7948SRyan Roberts 	pte_t pte = orig_pte;
7761da177e4SLinus Torvalds 	struct page *page;
777c33c7948SRyan Roberts 	swp_entry_t entry = pte_to_swp_entry(orig_pte);
7780697212aSChristoph Lameter 
7792022b4d1SHugh Dickins 	if (likely(!non_swap_entry(entry))) {
780570a335bSHugh Dickins 		if (swap_duplicate(entry) < 0)
7819a5cc85cSAlistair Popple 			return -EIO;
782570a335bSHugh Dickins 
7831da177e4SLinus Torvalds 		/* make sure dst_mm is on swapoff's mmlist. */
7841da177e4SLinus Torvalds 		if (unlikely(list_empty(&dst_mm->mmlist))) {
7851da177e4SLinus Torvalds 			spin_lock(&mmlist_lock);
786f412ac08SHugh Dickins 			if (list_empty(&dst_mm->mmlist))
787f412ac08SHugh Dickins 				list_add(&dst_mm->mmlist,
788f412ac08SHugh Dickins 						&src_mm->mmlist);
7891da177e4SLinus Torvalds 			spin_unlock(&mmlist_lock);
7901da177e4SLinus Torvalds 		}
7911493a191SDavid Hildenbrand 		/* Mark the swap entry as shared. */
792c33c7948SRyan Roberts 		if (pte_swp_exclusive(orig_pte)) {
793c33c7948SRyan Roberts 			pte = pte_swp_clear_exclusive(orig_pte);
7941493a191SDavid Hildenbrand 			set_pte_at(src_mm, addr, src_pte, pte);
7951493a191SDavid Hildenbrand 		}
796b084d435SKAMEZAWA Hiroyuki 		rss[MM_SWAPENTS]++;
7972022b4d1SHugh Dickins 	} else if (is_migration_entry(entry)) {
798af5cdaf8SAlistair Popple 		page = pfn_swap_entry_to_page(entry);
7999f9f1acdSKonstantin Khlebnikov 
800eca56ff9SJerome Marchand 		rss[mm_counter(page)]++;
8019f9f1acdSKonstantin Khlebnikov 
8026c287605SDavid Hildenbrand 		if (!is_readable_migration_entry(entry) &&
8030697212aSChristoph Lameter 				is_cow_mapping(vm_flags)) {
8040697212aSChristoph Lameter 			/*
8056c287605SDavid Hildenbrand 			 * COW mappings require pages in both parent and child
8066c287605SDavid Hildenbrand 			 * to be set to read. A previously exclusive entry is
8076c287605SDavid Hildenbrand 			 * now shared.
8080697212aSChristoph Lameter 			 */
8094dd845b5SAlistair Popple 			entry = make_readable_migration_entry(
8104dd845b5SAlistair Popple 							swp_offset(entry));
8110697212aSChristoph Lameter 			pte = swp_entry_to_pte(entry);
812c33c7948SRyan Roberts 			if (pte_swp_soft_dirty(orig_pte))
813c3d16e16SCyrill Gorcunov 				pte = pte_swp_mksoft_dirty(pte);
814c33c7948SRyan Roberts 			if (pte_swp_uffd_wp(orig_pte))
815f45ec5ffSPeter Xu 				pte = pte_swp_mkuffd_wp(pte);
8160697212aSChristoph Lameter 			set_pte_at(src_mm, addr, src_pte, pte);
8170697212aSChristoph Lameter 		}
8185042db43SJérôme Glisse 	} else if (is_device_private_entry(entry)) {
819af5cdaf8SAlistair Popple 		page = pfn_swap_entry_to_page(entry);
8205042db43SJérôme Glisse 
8215042db43SJérôme Glisse 		/*
8225042db43SJérôme Glisse 		 * Update rss count even for unaddressable pages, as
8235042db43SJérôme Glisse 		 * they should treated just like normal pages in this
8245042db43SJérôme Glisse 		 * respect.
8255042db43SJérôme Glisse 		 *
8265042db43SJérôme Glisse 		 * We will likely want to have some new rss counters
8275042db43SJérôme Glisse 		 * for unaddressable pages, at some point. But for now
8285042db43SJérôme Glisse 		 * keep things as they are.
8295042db43SJérôme Glisse 		 */
8305042db43SJérôme Glisse 		get_page(page);
8315042db43SJérôme Glisse 		rss[mm_counter(page)]++;
832fb3d824dSDavid Hildenbrand 		/* Cannot fail as these pages cannot get pinned. */
833fb3d824dSDavid Hildenbrand 		BUG_ON(page_try_dup_anon_rmap(page, false, src_vma));
8345042db43SJérôme Glisse 
8355042db43SJérôme Glisse 		/*
8365042db43SJérôme Glisse 		 * We do not preserve soft-dirty information, because so
8375042db43SJérôme Glisse 		 * far, checkpoint/restore is the only feature that
8385042db43SJérôme Glisse 		 * requires that. And checkpoint/restore does not work
8395042db43SJérôme Glisse 		 * when a device driver is involved (you cannot easily
8405042db43SJérôme Glisse 		 * save and restore device driver state).
8415042db43SJérôme Glisse 		 */
8424dd845b5SAlistair Popple 		if (is_writable_device_private_entry(entry) &&
8435042db43SJérôme Glisse 		    is_cow_mapping(vm_flags)) {
8444dd845b5SAlistair Popple 			entry = make_readable_device_private_entry(
8454dd845b5SAlistair Popple 							swp_offset(entry));
8465042db43SJérôme Glisse 			pte = swp_entry_to_pte(entry);
847c33c7948SRyan Roberts 			if (pte_swp_uffd_wp(orig_pte))
848f45ec5ffSPeter Xu 				pte = pte_swp_mkuffd_wp(pte);
8495042db43SJérôme Glisse 			set_pte_at(src_mm, addr, src_pte, pte);
8505042db43SJérôme Glisse 		}
851b756a3b5SAlistair Popple 	} else if (is_device_exclusive_entry(entry)) {
852b756a3b5SAlistair Popple 		/*
853b756a3b5SAlistair Popple 		 * Make device exclusive entries present by restoring the
854b756a3b5SAlistair Popple 		 * original entry then copying as for a present pte. Device
855b756a3b5SAlistair Popple 		 * exclusive entries currently only support private writable
856b756a3b5SAlistair Popple 		 * (ie. COW) mappings.
857b756a3b5SAlistair Popple 		 */
858b756a3b5SAlistair Popple 		VM_BUG_ON(!is_cow_mapping(src_vma->vm_flags));
859b756a3b5SAlistair Popple 		if (try_restore_exclusive_pte(src_pte, src_vma, addr))
860b756a3b5SAlistair Popple 			return -EBUSY;
861b756a3b5SAlistair Popple 		return -ENOENT;
862c56d1b62SPeter Xu 	} else if (is_pte_marker_entry(entry)) {
863af19487fSAxel Rasmussen 		pte_marker marker = copy_pte_marker(entry, dst_vma);
864af19487fSAxel Rasmussen 
865af19487fSAxel Rasmussen 		if (marker)
866af19487fSAxel Rasmussen 			set_pte_at(dst_mm, addr, dst_pte,
867af19487fSAxel Rasmussen 				   make_pte_marker(marker));
868c56d1b62SPeter Xu 		return 0;
8691da177e4SLinus Torvalds 	}
8708f34f1eaSPeter Xu 	if (!userfaultfd_wp(dst_vma))
8718f34f1eaSPeter Xu 		pte = pte_swp_clear_uffd_wp(pte);
872df3a57d1SLinus Torvalds 	set_pte_at(dst_mm, addr, dst_pte, pte);
873df3a57d1SLinus Torvalds 	return 0;
8741da177e4SLinus Torvalds }
8751da177e4SLinus Torvalds 
87670e806e4SPeter Xu /*
877b51ad4f8SDavid Hildenbrand  * Copy a present and normal page.
87870e806e4SPeter Xu  *
879b51ad4f8SDavid Hildenbrand  * NOTE! The usual case is that this isn't required;
880b51ad4f8SDavid Hildenbrand  * instead, the caller can just increase the page refcount
881b51ad4f8SDavid Hildenbrand  * and re-use the pte the traditional way.
88270e806e4SPeter Xu  *
88370e806e4SPeter Xu  * And if we need a pre-allocated page but don't yet have
88470e806e4SPeter Xu  * one, return a negative error to let the preallocation
88570e806e4SPeter Xu  * code know so that it can do so outside the page table
88670e806e4SPeter Xu  * lock.
88770e806e4SPeter Xu  */
88870e806e4SPeter Xu static inline int
889c78f4636SPeter Xu copy_present_page(struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma,
890c78f4636SPeter Xu 		  pte_t *dst_pte, pte_t *src_pte, unsigned long addr, int *rss,
891edf50470SMatthew Wilcox (Oracle) 		  struct folio **prealloc, struct page *page)
89270e806e4SPeter Xu {
893edf50470SMatthew Wilcox (Oracle) 	struct folio *new_folio;
894b51ad4f8SDavid Hildenbrand 	pte_t pte;
89570e806e4SPeter Xu 
896edf50470SMatthew Wilcox (Oracle) 	new_folio = *prealloc;
897edf50470SMatthew Wilcox (Oracle) 	if (!new_folio)
89870e806e4SPeter Xu 		return -EAGAIN;
89970e806e4SPeter Xu 
90070e806e4SPeter Xu 	/*
90170e806e4SPeter Xu 	 * We have a prealloc page, all good!  Take it
90270e806e4SPeter Xu 	 * over and copy the page & arm it.
90370e806e4SPeter Xu 	 */
90470e806e4SPeter Xu 	*prealloc = NULL;
905edf50470SMatthew Wilcox (Oracle) 	copy_user_highpage(&new_folio->page, page, addr, src_vma);
906edf50470SMatthew Wilcox (Oracle) 	__folio_mark_uptodate(new_folio);
907edf50470SMatthew Wilcox (Oracle) 	folio_add_new_anon_rmap(new_folio, dst_vma, addr);
908edf50470SMatthew Wilcox (Oracle) 	folio_add_lru_vma(new_folio, dst_vma);
909edf50470SMatthew Wilcox (Oracle) 	rss[MM_ANONPAGES]++;
91070e806e4SPeter Xu 
91170e806e4SPeter Xu 	/* All done, just insert the new page copy in the child */
912edf50470SMatthew Wilcox (Oracle) 	pte = mk_pte(&new_folio->page, dst_vma->vm_page_prot);
913c78f4636SPeter Xu 	pte = maybe_mkwrite(pte_mkdirty(pte), dst_vma);
914c33c7948SRyan Roberts 	if (userfaultfd_pte_wp(dst_vma, ptep_get(src_pte)))
9158f34f1eaSPeter Xu 		/* Uffd-wp needs to be delivered to dest pte as well */
916f1eb1bacSPeter Xu 		pte = pte_mkuffd_wp(pte);
917c78f4636SPeter Xu 	set_pte_at(dst_vma->vm_mm, addr, dst_pte, pte);
91870e806e4SPeter Xu 	return 0;
91970e806e4SPeter Xu }
92070e806e4SPeter Xu 
92170e806e4SPeter Xu /*
92270e806e4SPeter Xu  * Copy one pte.  Returns 0 if succeeded, or -EAGAIN if one preallocated page
92370e806e4SPeter Xu  * is required to copy this pte.
92470e806e4SPeter Xu  */
92570e806e4SPeter Xu static inline int
926c78f4636SPeter Xu copy_present_pte(struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma,
927c78f4636SPeter Xu 		 pte_t *dst_pte, pte_t *src_pte, unsigned long addr, int *rss,
928edf50470SMatthew Wilcox (Oracle) 		 struct folio **prealloc)
929df3a57d1SLinus Torvalds {
930c78f4636SPeter Xu 	struct mm_struct *src_mm = src_vma->vm_mm;
931c78f4636SPeter Xu 	unsigned long vm_flags = src_vma->vm_flags;
932c33c7948SRyan Roberts 	pte_t pte = ptep_get(src_pte);
933df3a57d1SLinus Torvalds 	struct page *page;
93414ddee41SMatthew Wilcox (Oracle) 	struct folio *folio;
935df3a57d1SLinus Torvalds 
936c78f4636SPeter Xu 	page = vm_normal_page(src_vma, addr, pte);
93714ddee41SMatthew Wilcox (Oracle) 	if (page)
93814ddee41SMatthew Wilcox (Oracle) 		folio = page_folio(page);
93914ddee41SMatthew Wilcox (Oracle) 	if (page && folio_test_anon(folio)) {
940b51ad4f8SDavid Hildenbrand 		/*
941b51ad4f8SDavid Hildenbrand 		 * If this page may have been pinned by the parent process,
942b51ad4f8SDavid Hildenbrand 		 * copy the page immediately for the child so that we'll always
943b51ad4f8SDavid Hildenbrand 		 * guarantee the pinned page won't be randomly replaced in the
944b51ad4f8SDavid Hildenbrand 		 * future.
945b51ad4f8SDavid Hildenbrand 		 */
94614ddee41SMatthew Wilcox (Oracle) 		folio_get(folio);
947fb3d824dSDavid Hildenbrand 		if (unlikely(page_try_dup_anon_rmap(page, false, src_vma))) {
948fb3d824dSDavid Hildenbrand 			/* Page may be pinned, we have to copy. */
94914ddee41SMatthew Wilcox (Oracle) 			folio_put(folio);
950b51ad4f8SDavid Hildenbrand 			return copy_present_page(dst_vma, src_vma, dst_pte, src_pte,
951b51ad4f8SDavid Hildenbrand 						 addr, rss, prealloc, page);
952fb3d824dSDavid Hildenbrand 		}
953edf50470SMatthew Wilcox (Oracle) 		rss[MM_ANONPAGES]++;
954b51ad4f8SDavid Hildenbrand 	} else if (page) {
95514ddee41SMatthew Wilcox (Oracle) 		folio_get(folio);
956fb3d824dSDavid Hildenbrand 		page_dup_file_rmap(page, false);
957edf50470SMatthew Wilcox (Oracle) 		rss[mm_counter_file(page)]++;
95870e806e4SPeter Xu 	}
95970e806e4SPeter Xu 
9601da177e4SLinus Torvalds 	/*
9611da177e4SLinus Torvalds 	 * If it's a COW mapping, write protect it both
9621da177e4SLinus Torvalds 	 * in the parent and the child
9631da177e4SLinus Torvalds 	 */
9641b2de5d0SLinus Torvalds 	if (is_cow_mapping(vm_flags) && pte_write(pte)) {
9651da177e4SLinus Torvalds 		ptep_set_wrprotect(src_mm, addr, src_pte);
9663dc90795SZachary Amsden 		pte = pte_wrprotect(pte);
9671da177e4SLinus Torvalds 	}
96814ddee41SMatthew Wilcox (Oracle) 	VM_BUG_ON(page && folio_test_anon(folio) && PageAnonExclusive(page));
9691da177e4SLinus Torvalds 
9701da177e4SLinus Torvalds 	/*
9711da177e4SLinus Torvalds 	 * If it's a shared mapping, mark it clean in
9721da177e4SLinus Torvalds 	 * the child
9731da177e4SLinus Torvalds 	 */
9741da177e4SLinus Torvalds 	if (vm_flags & VM_SHARED)
9751da177e4SLinus Torvalds 		pte = pte_mkclean(pte);
9761da177e4SLinus Torvalds 	pte = pte_mkold(pte);
9776aab341eSLinus Torvalds 
9788f34f1eaSPeter Xu 	if (!userfaultfd_wp(dst_vma))
979b569a176SPeter Xu 		pte = pte_clear_uffd_wp(pte);
980b569a176SPeter Xu 
981c78f4636SPeter Xu 	set_pte_at(dst_vma->vm_mm, addr, dst_pte, pte);
98270e806e4SPeter Xu 	return 0;
9836aab341eSLinus Torvalds }
984ae859762SHugh Dickins 
985edf50470SMatthew Wilcox (Oracle) static inline struct folio *page_copy_prealloc(struct mm_struct *src_mm,
986edf50470SMatthew Wilcox (Oracle) 		struct vm_area_struct *vma, unsigned long addr)
98770e806e4SPeter Xu {
988edf50470SMatthew Wilcox (Oracle) 	struct folio *new_folio;
98970e806e4SPeter Xu 
990edf50470SMatthew Wilcox (Oracle) 	new_folio = vma_alloc_folio(GFP_HIGHUSER_MOVABLE, 0, vma, addr, false);
991edf50470SMatthew Wilcox (Oracle) 	if (!new_folio)
99270e806e4SPeter Xu 		return NULL;
99370e806e4SPeter Xu 
994edf50470SMatthew Wilcox (Oracle) 	if (mem_cgroup_charge(new_folio, src_mm, GFP_KERNEL)) {
995edf50470SMatthew Wilcox (Oracle) 		folio_put(new_folio);
99670e806e4SPeter Xu 		return NULL;
99770e806e4SPeter Xu 	}
998e601ded4SKefeng Wang 	folio_throttle_swaprate(new_folio, GFP_KERNEL);
99970e806e4SPeter Xu 
1000edf50470SMatthew Wilcox (Oracle) 	return new_folio;
10011da177e4SLinus Torvalds }
10021da177e4SLinus Torvalds 
1003c78f4636SPeter Xu static int
1004c78f4636SPeter Xu copy_pte_range(struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma,
1005c78f4636SPeter Xu 	       pmd_t *dst_pmd, pmd_t *src_pmd, unsigned long addr,
1006c78f4636SPeter Xu 	       unsigned long end)
10071da177e4SLinus Torvalds {
1008c78f4636SPeter Xu 	struct mm_struct *dst_mm = dst_vma->vm_mm;
1009c78f4636SPeter Xu 	struct mm_struct *src_mm = src_vma->vm_mm;
1010c36987e2SDaisuke Nishimura 	pte_t *orig_src_pte, *orig_dst_pte;
10111da177e4SLinus Torvalds 	pte_t *src_pte, *dst_pte;
1012c33c7948SRyan Roberts 	pte_t ptent;
1013c74df32cSHugh Dickins 	spinlock_t *src_ptl, *dst_ptl;
101470e806e4SPeter Xu 	int progress, ret = 0;
1015d559db08SKAMEZAWA Hiroyuki 	int rss[NR_MM_COUNTERS];
1016570a335bSHugh Dickins 	swp_entry_t entry = (swp_entry_t){0};
1017edf50470SMatthew Wilcox (Oracle) 	struct folio *prealloc = NULL;
10181da177e4SLinus Torvalds 
10191da177e4SLinus Torvalds again:
102070e806e4SPeter Xu 	progress = 0;
1021d559db08SKAMEZAWA Hiroyuki 	init_rss_vec(rss);
1022d559db08SKAMEZAWA Hiroyuki 
10233db82b93SHugh Dickins 	/*
10243db82b93SHugh Dickins 	 * copy_pmd_range()'s prior pmd_none_or_clear_bad(src_pmd), and the
10253db82b93SHugh Dickins 	 * error handling here, assume that exclusive mmap_lock on dst and src
10263db82b93SHugh Dickins 	 * protects anon from unexpected THP transitions; with shmem and file
10273db82b93SHugh Dickins 	 * protected by mmap_lock-less collapse skipping areas with anon_vma
10283db82b93SHugh Dickins 	 * (whereas vma_needs_copy() skips areas without anon_vma).  A rework
10293db82b93SHugh Dickins 	 * can remove such assumptions later, but this is good enough for now.
10303db82b93SHugh Dickins 	 */
1031c74df32cSHugh Dickins 	dst_pte = pte_alloc_map_lock(dst_mm, dst_pmd, addr, &dst_ptl);
103270e806e4SPeter Xu 	if (!dst_pte) {
103370e806e4SPeter Xu 		ret = -ENOMEM;
103470e806e4SPeter Xu 		goto out;
103570e806e4SPeter Xu 	}
10363db82b93SHugh Dickins 	src_pte = pte_offset_map_nolock(src_mm, src_pmd, addr, &src_ptl);
10373db82b93SHugh Dickins 	if (!src_pte) {
10383db82b93SHugh Dickins 		pte_unmap_unlock(dst_pte, dst_ptl);
10393db82b93SHugh Dickins 		/* ret == 0 */
10403db82b93SHugh Dickins 		goto out;
10413db82b93SHugh Dickins 	}
1042f20dc5f7SIngo Molnar 	spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
1043c36987e2SDaisuke Nishimura 	orig_src_pte = src_pte;
1044c36987e2SDaisuke Nishimura 	orig_dst_pte = dst_pte;
10456606c3e0SZachary Amsden 	arch_enter_lazy_mmu_mode();
10461da177e4SLinus Torvalds 
10471da177e4SLinus Torvalds 	do {
10481da177e4SLinus Torvalds 		/*
10491da177e4SLinus Torvalds 		 * We are holding two locks at this point - either of them
10501da177e4SLinus Torvalds 		 * could generate latencies in another task on another CPU.
10511da177e4SLinus Torvalds 		 */
1052e040f218SHugh Dickins 		if (progress >= 32) {
1053e040f218SHugh Dickins 			progress = 0;
1054e040f218SHugh Dickins 			if (need_resched() ||
105595c354feSNick Piggin 			    spin_needbreak(src_ptl) || spin_needbreak(dst_ptl))
10561da177e4SLinus Torvalds 				break;
1057e040f218SHugh Dickins 		}
1058c33c7948SRyan Roberts 		ptent = ptep_get(src_pte);
1059c33c7948SRyan Roberts 		if (pte_none(ptent)) {
10601da177e4SLinus Torvalds 			progress++;
10611da177e4SLinus Torvalds 			continue;
10621da177e4SLinus Torvalds 		}
1063c33c7948SRyan Roberts 		if (unlikely(!pte_present(ptent))) {
10649a5cc85cSAlistair Popple 			ret = copy_nonpresent_pte(dst_mm, src_mm,
106579a1971cSLinus Torvalds 						  dst_pte, src_pte,
10668f34f1eaSPeter Xu 						  dst_vma, src_vma,
10678f34f1eaSPeter Xu 						  addr, rss);
10689a5cc85cSAlistair Popple 			if (ret == -EIO) {
1069c33c7948SRyan Roberts 				entry = pte_to_swp_entry(ptep_get(src_pte));
1070570a335bSHugh Dickins 				break;
1071b756a3b5SAlistair Popple 			} else if (ret == -EBUSY) {
1072b756a3b5SAlistair Popple 				break;
1073b756a3b5SAlistair Popple 			} else if (!ret) {
10741da177e4SLinus Torvalds 				progress += 8;
107579a1971cSLinus Torvalds 				continue;
107679a1971cSLinus Torvalds 			}
1077b756a3b5SAlistair Popple 
1078b756a3b5SAlistair Popple 			/*
1079b756a3b5SAlistair Popple 			 * Device exclusive entry restored, continue by copying
1080b756a3b5SAlistair Popple 			 * the now present pte.
1081b756a3b5SAlistair Popple 			 */
1082b756a3b5SAlistair Popple 			WARN_ON_ONCE(ret != -ENOENT);
1083b756a3b5SAlistair Popple 		}
108470e806e4SPeter Xu 		/* copy_present_pte() will clear `*prealloc' if consumed */
1085c78f4636SPeter Xu 		ret = copy_present_pte(dst_vma, src_vma, dst_pte, src_pte,
1086c78f4636SPeter Xu 				       addr, rss, &prealloc);
108770e806e4SPeter Xu 		/*
108870e806e4SPeter Xu 		 * If we need a pre-allocated page for this pte, drop the
108970e806e4SPeter Xu 		 * locks, allocate, and try again.
109070e806e4SPeter Xu 		 */
109170e806e4SPeter Xu 		if (unlikely(ret == -EAGAIN))
109270e806e4SPeter Xu 			break;
109370e806e4SPeter Xu 		if (unlikely(prealloc)) {
109470e806e4SPeter Xu 			/*
109570e806e4SPeter Xu 			 * pre-alloc page cannot be reused by next time so as
109670e806e4SPeter Xu 			 * to strictly follow mempolicy (e.g., alloc_page_vma()
109770e806e4SPeter Xu 			 * will allocate page according to address).  This
109870e806e4SPeter Xu 			 * could only happen if one pinned pte changed.
109970e806e4SPeter Xu 			 */
1100edf50470SMatthew Wilcox (Oracle) 			folio_put(prealloc);
110170e806e4SPeter Xu 			prealloc = NULL;
110270e806e4SPeter Xu 		}
110379a1971cSLinus Torvalds 		progress += 8;
11041da177e4SLinus Torvalds 	} while (dst_pte++, src_pte++, addr += PAGE_SIZE, addr != end);
11051da177e4SLinus Torvalds 
11066606c3e0SZachary Amsden 	arch_leave_lazy_mmu_mode();
11073db82b93SHugh Dickins 	pte_unmap_unlock(orig_src_pte, src_ptl);
1108d559db08SKAMEZAWA Hiroyuki 	add_mm_rss_vec(dst_mm, rss);
1109c36987e2SDaisuke Nishimura 	pte_unmap_unlock(orig_dst_pte, dst_ptl);
1110c74df32cSHugh Dickins 	cond_resched();
1111570a335bSHugh Dickins 
11129a5cc85cSAlistair Popple 	if (ret == -EIO) {
11139a5cc85cSAlistair Popple 		VM_WARN_ON_ONCE(!entry.val);
111470e806e4SPeter Xu 		if (add_swap_count_continuation(entry, GFP_KERNEL) < 0) {
111570e806e4SPeter Xu 			ret = -ENOMEM;
111670e806e4SPeter Xu 			goto out;
111770e806e4SPeter Xu 		}
111870e806e4SPeter Xu 		entry.val = 0;
1119b756a3b5SAlistair Popple 	} else if (ret == -EBUSY) {
1120b756a3b5SAlistair Popple 		goto out;
11219a5cc85cSAlistair Popple 	} else if (ret ==  -EAGAIN) {
1122c78f4636SPeter Xu 		prealloc = page_copy_prealloc(src_mm, src_vma, addr);
112370e806e4SPeter Xu 		if (!prealloc)
1124570a335bSHugh Dickins 			return -ENOMEM;
11259a5cc85cSAlistair Popple 	} else if (ret) {
11269a5cc85cSAlistair Popple 		VM_WARN_ON_ONCE(1);
11279a5cc85cSAlistair Popple 	}
11289a5cc85cSAlistair Popple 
112970e806e4SPeter Xu 	/* We've captured and resolved the error. Reset, try again. */
113070e806e4SPeter Xu 	ret = 0;
11319a5cc85cSAlistair Popple 
11321da177e4SLinus Torvalds 	if (addr != end)
11331da177e4SLinus Torvalds 		goto again;
113470e806e4SPeter Xu out:
113570e806e4SPeter Xu 	if (unlikely(prealloc))
1136edf50470SMatthew Wilcox (Oracle) 		folio_put(prealloc);
113770e806e4SPeter Xu 	return ret;
11381da177e4SLinus Torvalds }
11391da177e4SLinus Torvalds 
1140c78f4636SPeter Xu static inline int
1141c78f4636SPeter Xu copy_pmd_range(struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma,
1142c78f4636SPeter Xu 	       pud_t *dst_pud, pud_t *src_pud, unsigned long addr,
1143c78f4636SPeter Xu 	       unsigned long end)
11441da177e4SLinus Torvalds {
1145c78f4636SPeter Xu 	struct mm_struct *dst_mm = dst_vma->vm_mm;
1146c78f4636SPeter Xu 	struct mm_struct *src_mm = src_vma->vm_mm;
11471da177e4SLinus Torvalds 	pmd_t *src_pmd, *dst_pmd;
11481da177e4SLinus Torvalds 	unsigned long next;
11491da177e4SLinus Torvalds 
11501da177e4SLinus Torvalds 	dst_pmd = pmd_alloc(dst_mm, dst_pud, addr);
11511da177e4SLinus Torvalds 	if (!dst_pmd)
11521da177e4SLinus Torvalds 		return -ENOMEM;
11531da177e4SLinus Torvalds 	src_pmd = pmd_offset(src_pud, addr);
11541da177e4SLinus Torvalds 	do {
11551da177e4SLinus Torvalds 		next = pmd_addr_end(addr, end);
115684c3fc4eSZi Yan 		if (is_swap_pmd(*src_pmd) || pmd_trans_huge(*src_pmd)
115784c3fc4eSZi Yan 			|| pmd_devmap(*src_pmd)) {
115871e3aac0SAndrea Arcangeli 			int err;
1159c78f4636SPeter Xu 			VM_BUG_ON_VMA(next-addr != HPAGE_PMD_SIZE, src_vma);
11608f34f1eaSPeter Xu 			err = copy_huge_pmd(dst_mm, src_mm, dst_pmd, src_pmd,
11618f34f1eaSPeter Xu 					    addr, dst_vma, src_vma);
116271e3aac0SAndrea Arcangeli 			if (err == -ENOMEM)
116371e3aac0SAndrea Arcangeli 				return -ENOMEM;
116471e3aac0SAndrea Arcangeli 			if (!err)
116571e3aac0SAndrea Arcangeli 				continue;
116671e3aac0SAndrea Arcangeli 			/* fall through */
116771e3aac0SAndrea Arcangeli 		}
11681da177e4SLinus Torvalds 		if (pmd_none_or_clear_bad(src_pmd))
11691da177e4SLinus Torvalds 			continue;
1170c78f4636SPeter Xu 		if (copy_pte_range(dst_vma, src_vma, dst_pmd, src_pmd,
1171c78f4636SPeter Xu 				   addr, next))
11721da177e4SLinus Torvalds 			return -ENOMEM;
11731da177e4SLinus Torvalds 	} while (dst_pmd++, src_pmd++, addr = next, addr != end);
11741da177e4SLinus Torvalds 	return 0;
11751da177e4SLinus Torvalds }
11761da177e4SLinus Torvalds 
1177c78f4636SPeter Xu static inline int
1178c78f4636SPeter Xu copy_pud_range(struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma,
1179c78f4636SPeter Xu 	       p4d_t *dst_p4d, p4d_t *src_p4d, unsigned long addr,
1180c78f4636SPeter Xu 	       unsigned long end)
11811da177e4SLinus Torvalds {
1182c78f4636SPeter Xu 	struct mm_struct *dst_mm = dst_vma->vm_mm;
1183c78f4636SPeter Xu 	struct mm_struct *src_mm = src_vma->vm_mm;
11841da177e4SLinus Torvalds 	pud_t *src_pud, *dst_pud;
11851da177e4SLinus Torvalds 	unsigned long next;
11861da177e4SLinus Torvalds 
1187c2febafcSKirill A. Shutemov 	dst_pud = pud_alloc(dst_mm, dst_p4d, addr);
11881da177e4SLinus Torvalds 	if (!dst_pud)
11891da177e4SLinus Torvalds 		return -ENOMEM;
1190c2febafcSKirill A. Shutemov 	src_pud = pud_offset(src_p4d, addr);
11911da177e4SLinus Torvalds 	do {
11921da177e4SLinus Torvalds 		next = pud_addr_end(addr, end);
1193a00cc7d9SMatthew Wilcox 		if (pud_trans_huge(*src_pud) || pud_devmap(*src_pud)) {
1194a00cc7d9SMatthew Wilcox 			int err;
1195a00cc7d9SMatthew Wilcox 
1196c78f4636SPeter Xu 			VM_BUG_ON_VMA(next-addr != HPAGE_PUD_SIZE, src_vma);
1197a00cc7d9SMatthew Wilcox 			err = copy_huge_pud(dst_mm, src_mm,
1198c78f4636SPeter Xu 					    dst_pud, src_pud, addr, src_vma);
1199a00cc7d9SMatthew Wilcox 			if (err == -ENOMEM)
1200a00cc7d9SMatthew Wilcox 				return -ENOMEM;
1201a00cc7d9SMatthew Wilcox 			if (!err)
1202a00cc7d9SMatthew Wilcox 				continue;
1203a00cc7d9SMatthew Wilcox 			/* fall through */
1204a00cc7d9SMatthew Wilcox 		}
12051da177e4SLinus Torvalds 		if (pud_none_or_clear_bad(src_pud))
12061da177e4SLinus Torvalds 			continue;
1207c78f4636SPeter Xu 		if (copy_pmd_range(dst_vma, src_vma, dst_pud, src_pud,
1208c78f4636SPeter Xu 				   addr, next))
12091da177e4SLinus Torvalds 			return -ENOMEM;
12101da177e4SLinus Torvalds 	} while (dst_pud++, src_pud++, addr = next, addr != end);
12111da177e4SLinus Torvalds 	return 0;
12121da177e4SLinus Torvalds }
12131da177e4SLinus Torvalds 
1214c78f4636SPeter Xu static inline int
1215c78f4636SPeter Xu copy_p4d_range(struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma,
1216c78f4636SPeter Xu 	       pgd_t *dst_pgd, pgd_t *src_pgd, unsigned long addr,
1217c78f4636SPeter Xu 	       unsigned long end)
1218c2febafcSKirill A. Shutemov {
1219c78f4636SPeter Xu 	struct mm_struct *dst_mm = dst_vma->vm_mm;
1220c2febafcSKirill A. Shutemov 	p4d_t *src_p4d, *dst_p4d;
1221c2febafcSKirill A. Shutemov 	unsigned long next;
1222c2febafcSKirill A. Shutemov 
1223c2febafcSKirill A. Shutemov 	dst_p4d = p4d_alloc(dst_mm, dst_pgd, addr);
1224c2febafcSKirill A. Shutemov 	if (!dst_p4d)
1225c2febafcSKirill A. Shutemov 		return -ENOMEM;
1226c2febafcSKirill A. Shutemov 	src_p4d = p4d_offset(src_pgd, addr);
1227c2febafcSKirill A. Shutemov 	do {
1228c2febafcSKirill A. Shutemov 		next = p4d_addr_end(addr, end);
1229c2febafcSKirill A. Shutemov 		if (p4d_none_or_clear_bad(src_p4d))
1230c2febafcSKirill A. Shutemov 			continue;
1231c78f4636SPeter Xu 		if (copy_pud_range(dst_vma, src_vma, dst_p4d, src_p4d,
1232c78f4636SPeter Xu 				   addr, next))
1233c2febafcSKirill A. Shutemov 			return -ENOMEM;
1234c2febafcSKirill A. Shutemov 	} while (dst_p4d++, src_p4d++, addr = next, addr != end);
1235c2febafcSKirill A. Shutemov 	return 0;
1236c2febafcSKirill A. Shutemov }
1237c2febafcSKirill A. Shutemov 
1238c56d1b62SPeter Xu /*
1239c56d1b62SPeter Xu  * Return true if the vma needs to copy the pgtable during this fork().  Return
1240c56d1b62SPeter Xu  * false when we can speed up fork() by allowing lazy page faults later until
1241c56d1b62SPeter Xu  * when the child accesses the memory range.
1242c56d1b62SPeter Xu  */
1243bc70fbf2SPeter Xu static bool
1244c56d1b62SPeter Xu vma_needs_copy(struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma)
1245c56d1b62SPeter Xu {
1246c56d1b62SPeter Xu 	/*
1247c56d1b62SPeter Xu 	 * Always copy pgtables when dst_vma has uffd-wp enabled even if it's
1248c56d1b62SPeter Xu 	 * file-backed (e.g. shmem). Because when uffd-wp is enabled, pgtable
1249c56d1b62SPeter Xu 	 * contains uffd-wp protection information, that's something we can't
1250c56d1b62SPeter Xu 	 * retrieve from page cache, and skip copying will lose those info.
1251c56d1b62SPeter Xu 	 */
1252c56d1b62SPeter Xu 	if (userfaultfd_wp(dst_vma))
1253c56d1b62SPeter Xu 		return true;
1254c56d1b62SPeter Xu 
1255bcd51a3cSMike Kravetz 	if (src_vma->vm_flags & (VM_PFNMAP | VM_MIXEDMAP))
1256c56d1b62SPeter Xu 		return true;
1257c56d1b62SPeter Xu 
1258c56d1b62SPeter Xu 	if (src_vma->anon_vma)
1259c56d1b62SPeter Xu 		return true;
1260c56d1b62SPeter Xu 
1261c56d1b62SPeter Xu 	/*
1262c56d1b62SPeter Xu 	 * Don't copy ptes where a page fault will fill them correctly.  Fork
1263c56d1b62SPeter Xu 	 * becomes much lighter when there are big shared or private readonly
1264c56d1b62SPeter Xu 	 * mappings. The tradeoff is that copy_page_range is more efficient
1265c56d1b62SPeter Xu 	 * than faulting.
1266c56d1b62SPeter Xu 	 */
1267c56d1b62SPeter Xu 	return false;
1268c56d1b62SPeter Xu }
1269c56d1b62SPeter Xu 
1270c78f4636SPeter Xu int
1271c78f4636SPeter Xu copy_page_range(struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma)
12721da177e4SLinus Torvalds {
12731da177e4SLinus Torvalds 	pgd_t *src_pgd, *dst_pgd;
12741da177e4SLinus Torvalds 	unsigned long next;
1275c78f4636SPeter Xu 	unsigned long addr = src_vma->vm_start;
1276c78f4636SPeter Xu 	unsigned long end = src_vma->vm_end;
1277c78f4636SPeter Xu 	struct mm_struct *dst_mm = dst_vma->vm_mm;
1278c78f4636SPeter Xu 	struct mm_struct *src_mm = src_vma->vm_mm;
1279ac46d4f3SJérôme Glisse 	struct mmu_notifier_range range;
12802ec74c3eSSagi Grimberg 	bool is_cow;
1281cddb8a5cSAndrea Arcangeli 	int ret;
12821da177e4SLinus Torvalds 
1283c56d1b62SPeter Xu 	if (!vma_needs_copy(dst_vma, src_vma))
1284d992895bSNick Piggin 		return 0;
1285d992895bSNick Piggin 
1286c78f4636SPeter Xu 	if (is_vm_hugetlb_page(src_vma))
1287bc70fbf2SPeter Xu 		return copy_hugetlb_page_range(dst_mm, src_mm, dst_vma, src_vma);
12881da177e4SLinus Torvalds 
1289c78f4636SPeter Xu 	if (unlikely(src_vma->vm_flags & VM_PFNMAP)) {
12902ab64037Svenkatesh.pallipadi@intel.com 		/*
12912ab64037Svenkatesh.pallipadi@intel.com 		 * We do not free on error cases below as remove_vma
12922ab64037Svenkatesh.pallipadi@intel.com 		 * gets called on error from higher level routine
12932ab64037Svenkatesh.pallipadi@intel.com 		 */
1294c78f4636SPeter Xu 		ret = track_pfn_copy(src_vma);
12952ab64037Svenkatesh.pallipadi@intel.com 		if (ret)
12962ab64037Svenkatesh.pallipadi@intel.com 			return ret;
12972ab64037Svenkatesh.pallipadi@intel.com 	}
12982ab64037Svenkatesh.pallipadi@intel.com 
1299cddb8a5cSAndrea Arcangeli 	/*
1300cddb8a5cSAndrea Arcangeli 	 * We need to invalidate the secondary MMU mappings only when
1301cddb8a5cSAndrea Arcangeli 	 * there could be a permission downgrade on the ptes of the
1302cddb8a5cSAndrea Arcangeli 	 * parent mm. And a permission downgrade will only happen if
1303cddb8a5cSAndrea Arcangeli 	 * is_cow_mapping() returns true.
1304cddb8a5cSAndrea Arcangeli 	 */
1305c78f4636SPeter Xu 	is_cow = is_cow_mapping(src_vma->vm_flags);
1306ac46d4f3SJérôme Glisse 
1307ac46d4f3SJérôme Glisse 	if (is_cow) {
13087269f999SJérôme Glisse 		mmu_notifier_range_init(&range, MMU_NOTIFY_PROTECTION_PAGE,
13097d4a8be0SAlistair Popple 					0, src_mm, addr, end);
1310ac46d4f3SJérôme Glisse 		mmu_notifier_invalidate_range_start(&range);
131157efa1feSJason Gunthorpe 		/*
131257efa1feSJason Gunthorpe 		 * Disabling preemption is not needed for the write side, as
131357efa1feSJason Gunthorpe 		 * the read side doesn't spin, but goes to the mmap_lock.
131457efa1feSJason Gunthorpe 		 *
131557efa1feSJason Gunthorpe 		 * Use the raw variant of the seqcount_t write API to avoid
131657efa1feSJason Gunthorpe 		 * lockdep complaining about preemptibility.
131757efa1feSJason Gunthorpe 		 */
131857efa1feSJason Gunthorpe 		mmap_assert_write_locked(src_mm);
131957efa1feSJason Gunthorpe 		raw_write_seqcount_begin(&src_mm->write_protect_seq);
1320ac46d4f3SJérôme Glisse 	}
1321cddb8a5cSAndrea Arcangeli 
1322cddb8a5cSAndrea Arcangeli 	ret = 0;
13231da177e4SLinus Torvalds 	dst_pgd = pgd_offset(dst_mm, addr);
13241da177e4SLinus Torvalds 	src_pgd = pgd_offset(src_mm, addr);
13251da177e4SLinus Torvalds 	do {
13261da177e4SLinus Torvalds 		next = pgd_addr_end(addr, end);
13271da177e4SLinus Torvalds 		if (pgd_none_or_clear_bad(src_pgd))
13281da177e4SLinus Torvalds 			continue;
1329c78f4636SPeter Xu 		if (unlikely(copy_p4d_range(dst_vma, src_vma, dst_pgd, src_pgd,
1330c78f4636SPeter Xu 					    addr, next))) {
1331d155df53SMa Wupeng 			untrack_pfn_clear(dst_vma);
1332cddb8a5cSAndrea Arcangeli 			ret = -ENOMEM;
1333cddb8a5cSAndrea Arcangeli 			break;
1334cddb8a5cSAndrea Arcangeli 		}
13351da177e4SLinus Torvalds 	} while (dst_pgd++, src_pgd++, addr = next, addr != end);
1336cddb8a5cSAndrea Arcangeli 
133757efa1feSJason Gunthorpe 	if (is_cow) {
133857efa1feSJason Gunthorpe 		raw_write_seqcount_end(&src_mm->write_protect_seq);
1339ac46d4f3SJérôme Glisse 		mmu_notifier_invalidate_range_end(&range);
134057efa1feSJason Gunthorpe 	}
1341cddb8a5cSAndrea Arcangeli 	return ret;
13421da177e4SLinus Torvalds }
13431da177e4SLinus Torvalds 
13445abfd71dSPeter Xu /* Whether we should zap all COWed (private) pages too */
13455abfd71dSPeter Xu static inline bool should_zap_cows(struct zap_details *details)
13465abfd71dSPeter Xu {
13475abfd71dSPeter Xu 	/* By default, zap all pages */
13485abfd71dSPeter Xu 	if (!details)
13495abfd71dSPeter Xu 		return true;
13505abfd71dSPeter Xu 
13515abfd71dSPeter Xu 	/* Or, we zap COWed pages only if the caller wants to */
13522e148f1eSPeter Xu 	return details->even_cows;
13535abfd71dSPeter Xu }
13545abfd71dSPeter Xu 
13552e148f1eSPeter Xu /* Decides whether we should zap this page with the page pointer specified */
1356254ab940SPeter Xu static inline bool should_zap_page(struct zap_details *details, struct page *page)
13573506659eSMatthew Wilcox (Oracle) {
13585abfd71dSPeter Xu 	/* If we can make a decision without *page.. */
13595abfd71dSPeter Xu 	if (should_zap_cows(details))
1360254ab940SPeter Xu 		return true;
13613506659eSMatthew Wilcox (Oracle) 
13625abfd71dSPeter Xu 	/* E.g. the caller passes NULL for the case of a zero page */
13635abfd71dSPeter Xu 	if (!page)
1364254ab940SPeter Xu 		return true;
13655abfd71dSPeter Xu 
13662e148f1eSPeter Xu 	/* Otherwise we should only zap non-anon pages */
13672e148f1eSPeter Xu 	return !PageAnon(page);
13683506659eSMatthew Wilcox (Oracle) }
13693506659eSMatthew Wilcox (Oracle) 
1370999dad82SPeter Xu static inline bool zap_drop_file_uffd_wp(struct zap_details *details)
1371999dad82SPeter Xu {
1372999dad82SPeter Xu 	if (!details)
1373999dad82SPeter Xu 		return false;
1374999dad82SPeter Xu 
1375999dad82SPeter Xu 	return details->zap_flags & ZAP_FLAG_DROP_MARKER;
1376999dad82SPeter Xu }
1377999dad82SPeter Xu 
1378999dad82SPeter Xu /*
1379999dad82SPeter Xu  * This function makes sure that we'll replace the none pte with an uffd-wp
1380999dad82SPeter Xu  * swap special pte marker when necessary. Must be with the pgtable lock held.
1381999dad82SPeter Xu  */
1382999dad82SPeter Xu static inline void
1383999dad82SPeter Xu zap_install_uffd_wp_if_needed(struct vm_area_struct *vma,
1384999dad82SPeter Xu 			      unsigned long addr, pte_t *pte,
1385999dad82SPeter Xu 			      struct zap_details *details, pte_t pteval)
1386999dad82SPeter Xu {
13872bad466cSPeter Xu 	/* Zap on anonymous always means dropping everything */
13882bad466cSPeter Xu 	if (vma_is_anonymous(vma))
13892bad466cSPeter Xu 		return;
13902bad466cSPeter Xu 
1391999dad82SPeter Xu 	if (zap_drop_file_uffd_wp(details))
1392999dad82SPeter Xu 		return;
1393999dad82SPeter Xu 
1394999dad82SPeter Xu 	pte_install_uffd_wp_if_needed(vma, addr, pte, pteval);
1395999dad82SPeter Xu }
1396999dad82SPeter Xu 
139751c6f666SRobin Holt static unsigned long zap_pte_range(struct mmu_gather *tlb,
1398b5810039SNick Piggin 				struct vm_area_struct *vma, pmd_t *pmd,
13991da177e4SLinus Torvalds 				unsigned long addr, unsigned long end,
140097a89413SPeter Zijlstra 				struct zap_details *details)
14011da177e4SLinus Torvalds {
1402b5810039SNick Piggin 	struct mm_struct *mm = tlb->mm;
1403d16dfc55SPeter Zijlstra 	int force_flush = 0;
1404d559db08SKAMEZAWA Hiroyuki 	int rss[NR_MM_COUNTERS];
140597a89413SPeter Zijlstra 	spinlock_t *ptl;
14065f1a1907SSteven Rostedt 	pte_t *start_pte;
140797a89413SPeter Zijlstra 	pte_t *pte;
14088a5f14a2SKirill A. Shutemov 	swp_entry_t entry;
1409d559db08SKAMEZAWA Hiroyuki 
1410ed6a7935SPeter Zijlstra 	tlb_change_page_size(tlb, PAGE_SIZE);
1411e303297eSPeter Zijlstra 	init_rss_vec(rss);
14123db82b93SHugh Dickins 	start_pte = pte = pte_offset_map_lock(mm, pmd, addr, &ptl);
14133db82b93SHugh Dickins 	if (!pte)
14143db82b93SHugh Dickins 		return addr;
14153db82b93SHugh Dickins 
14163ea27719SMel Gorman 	flush_tlb_batched_pending(mm);
14176606c3e0SZachary Amsden 	arch_enter_lazy_mmu_mode();
14181da177e4SLinus Torvalds 	do {
1419c33c7948SRyan Roberts 		pte_t ptent = ptep_get(pte);
14208018db85SPeter Xu 		struct page *page;
14218018db85SPeter Xu 
1422166f61b9STobin C Harding 		if (pte_none(ptent))
14231da177e4SLinus Torvalds 			continue;
142451c6f666SRobin Holt 
14257b167b68SMinchan Kim 		if (need_resched())
14267b167b68SMinchan Kim 			break;
14277b167b68SMinchan Kim 
14286f5e6b9eSHugh Dickins 		if (pte_present(ptent)) {
14295df397deSLinus Torvalds 			unsigned int delay_rmap;
14305df397deSLinus Torvalds 
143125b2995aSChristoph Hellwig 			page = vm_normal_page(vma, addr, ptent);
1432254ab940SPeter Xu 			if (unlikely(!should_zap_page(details, page)))
14331da177e4SLinus Torvalds 				continue;
1434b5810039SNick Piggin 			ptent = ptep_get_and_clear_full(mm, addr, pte,
1435a600388dSZachary Amsden 							tlb->fullmm);
14361da177e4SLinus Torvalds 			tlb_remove_tlb_entry(tlb, pte, addr);
1437999dad82SPeter Xu 			zap_install_uffd_wp_if_needed(vma, addr, pte, details,
1438999dad82SPeter Xu 						      ptent);
1439e2942062Sxu xin 			if (unlikely(!page)) {
14406080d19fSxu xin 				ksm_might_unmap_zero_page(mm, ptent);
14411da177e4SLinus Torvalds 				continue;
1442e2942062Sxu xin 			}
1443eca56ff9SJerome Marchand 
14445df397deSLinus Torvalds 			delay_rmap = 0;
1445eca56ff9SJerome Marchand 			if (!PageAnon(page)) {
14461cf35d47SLinus Torvalds 				if (pte_dirty(ptent)) {
14476237bcd9SHugh Dickins 					set_page_dirty(page);
14485df397deSLinus Torvalds 					if (tlb_delay_rmap(tlb)) {
14495df397deSLinus Torvalds 						delay_rmap = 1;
14505df397deSLinus Torvalds 						force_flush = 1;
14515df397deSLinus Torvalds 					}
14521cf35d47SLinus Torvalds 				}
14538788f678SYu Zhao 				if (pte_young(ptent) && likely(vma_has_recency(vma)))
1454bf3f3bc5SNick Piggin 					mark_page_accessed(page);
14556237bcd9SHugh Dickins 			}
1456eca56ff9SJerome Marchand 			rss[mm_counter(page)]--;
14575df397deSLinus Torvalds 			if (!delay_rmap) {
1458cea86fe2SHugh Dickins 				page_remove_rmap(page, vma, false);
14593dc14741SHugh Dickins 				if (unlikely(page_mapcount(page) < 0))
14603dc14741SHugh Dickins 					print_bad_pte(vma, addr, ptent, page);
14615df397deSLinus Torvalds 			}
14625df397deSLinus Torvalds 			if (unlikely(__tlb_remove_page(tlb, page, delay_rmap))) {
14631cf35d47SLinus Torvalds 				force_flush = 1;
1464ce9ec37bSWill Deacon 				addr += PAGE_SIZE;
1465d16dfc55SPeter Zijlstra 				break;
14661cf35d47SLinus Torvalds 			}
14671da177e4SLinus Torvalds 			continue;
14681da177e4SLinus Torvalds 		}
14695042db43SJérôme Glisse 
14705042db43SJérôme Glisse 		entry = pte_to_swp_entry(ptent);
1471b756a3b5SAlistair Popple 		if (is_device_private_entry(entry) ||
1472b756a3b5SAlistair Popple 		    is_device_exclusive_entry(entry)) {
14738018db85SPeter Xu 			page = pfn_swap_entry_to_page(entry);
1474254ab940SPeter Xu 			if (unlikely(!should_zap_page(details, page)))
14755042db43SJérôme Glisse 				continue;
1476999dad82SPeter Xu 			/*
1477999dad82SPeter Xu 			 * Both device private/exclusive mappings should only
1478999dad82SPeter Xu 			 * work with anonymous page so far, so we don't need to
1479999dad82SPeter Xu 			 * consider uffd-wp bit when zap. For more information,
1480999dad82SPeter Xu 			 * see zap_install_uffd_wp_if_needed().
1481999dad82SPeter Xu 			 */
1482999dad82SPeter Xu 			WARN_ON_ONCE(!vma_is_anonymous(vma));
14835042db43SJérôme Glisse 			rss[mm_counter(page)]--;
1484b756a3b5SAlistair Popple 			if (is_device_private_entry(entry))
1485cea86fe2SHugh Dickins 				page_remove_rmap(page, vma, false);
14865042db43SJérôme Glisse 			put_page(page);
14878018db85SPeter Xu 		} else if (!non_swap_entry(entry)) {
14885abfd71dSPeter Xu 			/* Genuine swap entry, hence a private anon page */
14895abfd71dSPeter Xu 			if (!should_zap_cows(details))
14901da177e4SLinus Torvalds 				continue;
1491b084d435SKAMEZAWA Hiroyuki 			rss[MM_SWAPENTS]--;
14928018db85SPeter Xu 			if (unlikely(!free_swap_and_cache(entry)))
14938018db85SPeter Xu 				print_bad_pte(vma, addr, ptent, NULL);
14945abfd71dSPeter Xu 		} else if (is_migration_entry(entry)) {
1495af5cdaf8SAlistair Popple 			page = pfn_swap_entry_to_page(entry);
1496254ab940SPeter Xu 			if (!should_zap_page(details, page))
14975abfd71dSPeter Xu 				continue;
1498eca56ff9SJerome Marchand 			rss[mm_counter(page)]--;
1499999dad82SPeter Xu 		} else if (pte_marker_entry_uffd_wp(entry)) {
15002bad466cSPeter Xu 			/*
15012bad466cSPeter Xu 			 * For anon: always drop the marker; for file: only
15022bad466cSPeter Xu 			 * drop the marker if explicitly requested.
15032bad466cSPeter Xu 			 */
15042bad466cSPeter Xu 			if (!vma_is_anonymous(vma) &&
15052bad466cSPeter Xu 			    !zap_drop_file_uffd_wp(details))
1506999dad82SPeter Xu 				continue;
15079f186f9eSMiaohe Lin 		} else if (is_hwpoison_entry(entry) ||
1508af19487fSAxel Rasmussen 			   is_poisoned_swp_entry(entry)) {
15095abfd71dSPeter Xu 			if (!should_zap_cows(details))
15105abfd71dSPeter Xu 				continue;
15115abfd71dSPeter Xu 		} else {
15125abfd71dSPeter Xu 			/* We should have covered all the swap entry types */
15135abfd71dSPeter Xu 			WARN_ON_ONCE(1);
15149f9f1acdSKonstantin Khlebnikov 		}
15159888a1caSZachary Amsden 		pte_clear_not_present_full(mm, addr, pte, tlb->fullmm);
1516999dad82SPeter Xu 		zap_install_uffd_wp_if_needed(vma, addr, pte, details, ptent);
151797a89413SPeter Zijlstra 	} while (pte++, addr += PAGE_SIZE, addr != end);
1518ae859762SHugh Dickins 
1519d559db08SKAMEZAWA Hiroyuki 	add_mm_rss_vec(mm, rss);
15206606c3e0SZachary Amsden 	arch_leave_lazy_mmu_mode();
152151c6f666SRobin Holt 
15221cf35d47SLinus Torvalds 	/* Do the actual TLB flush before dropping ptl */
15235df397deSLinus Torvalds 	if (force_flush) {
15241cf35d47SLinus Torvalds 		tlb_flush_mmu_tlbonly(tlb);
15255df397deSLinus Torvalds 		tlb_flush_rmaps(tlb, vma);
15265df397deSLinus Torvalds 	}
15271cf35d47SLinus Torvalds 	pte_unmap_unlock(start_pte, ptl);
15281cf35d47SLinus Torvalds 
15291cf35d47SLinus Torvalds 	/*
15301cf35d47SLinus Torvalds 	 * If we forced a TLB flush (either due to running out of
15311cf35d47SLinus Torvalds 	 * batch buffers or because we needed to flush dirty TLB
15321cf35d47SLinus Torvalds 	 * entries before releasing the ptl), free the batched
15333db82b93SHugh Dickins 	 * memory too. Come back again if we didn't do everything.
15341cf35d47SLinus Torvalds 	 */
15353db82b93SHugh Dickins 	if (force_flush)
1536fa0aafb8SPeter Zijlstra 		tlb_flush_mmu(tlb);
1537d16dfc55SPeter Zijlstra 
153851c6f666SRobin Holt 	return addr;
15391da177e4SLinus Torvalds }
15401da177e4SLinus Torvalds 
154151c6f666SRobin Holt static inline unsigned long zap_pmd_range(struct mmu_gather *tlb,
1542b5810039SNick Piggin 				struct vm_area_struct *vma, pud_t *pud,
15431da177e4SLinus Torvalds 				unsigned long addr, unsigned long end,
154497a89413SPeter Zijlstra 				struct zap_details *details)
15451da177e4SLinus Torvalds {
15461da177e4SLinus Torvalds 	pmd_t *pmd;
15471da177e4SLinus Torvalds 	unsigned long next;
15481da177e4SLinus Torvalds 
15491da177e4SLinus Torvalds 	pmd = pmd_offset(pud, addr);
15501da177e4SLinus Torvalds 	do {
15511da177e4SLinus Torvalds 		next = pmd_addr_end(addr, end);
155284c3fc4eSZi Yan 		if (is_swap_pmd(*pmd) || pmd_trans_huge(*pmd) || pmd_devmap(*pmd)) {
155353406ed1SHugh Dickins 			if (next - addr != HPAGE_PMD_SIZE)
1554fd60775aSDavid Rientjes 				__split_huge_pmd(vma, pmd, addr, false, NULL);
15553db82b93SHugh Dickins 			else if (zap_huge_pmd(tlb, vma, pmd, addr)) {
15563db82b93SHugh Dickins 				addr = next;
15573db82b93SHugh Dickins 				continue;
15583db82b93SHugh Dickins 			}
155971e3aac0SAndrea Arcangeli 			/* fall through */
15603506659eSMatthew Wilcox (Oracle) 		} else if (details && details->single_folio &&
15613506659eSMatthew Wilcox (Oracle) 			   folio_test_pmd_mappable(details->single_folio) &&
156222061a1fSHugh Dickins 			   next - addr == HPAGE_PMD_SIZE && pmd_none(*pmd)) {
156322061a1fSHugh Dickins 			spinlock_t *ptl = pmd_lock(tlb->mm, pmd);
156422061a1fSHugh Dickins 			/*
156522061a1fSHugh Dickins 			 * Take and drop THP pmd lock so that we cannot return
156622061a1fSHugh Dickins 			 * prematurely, while zap_huge_pmd() has cleared *pmd,
156722061a1fSHugh Dickins 			 * but not yet decremented compound_mapcount().
156822061a1fSHugh Dickins 			 */
156922061a1fSHugh Dickins 			spin_unlock(ptl);
157071e3aac0SAndrea Arcangeli 		}
15713db82b93SHugh Dickins 		if (pmd_none(*pmd)) {
15723db82b93SHugh Dickins 			addr = next;
15733db82b93SHugh Dickins 			continue;
15743db82b93SHugh Dickins 		}
15753db82b93SHugh Dickins 		addr = zap_pte_range(tlb, vma, pmd, addr, next, details);
15763db82b93SHugh Dickins 		if (addr != next)
15773db82b93SHugh Dickins 			pmd--;
15783db82b93SHugh Dickins 	} while (pmd++, cond_resched(), addr != end);
157951c6f666SRobin Holt 
158051c6f666SRobin Holt 	return addr;
15811da177e4SLinus Torvalds }
15821da177e4SLinus Torvalds 
158351c6f666SRobin Holt static inline unsigned long zap_pud_range(struct mmu_gather *tlb,
1584c2febafcSKirill A. Shutemov 				struct vm_area_struct *vma, p4d_t *p4d,
15851da177e4SLinus Torvalds 				unsigned long addr, unsigned long end,
158697a89413SPeter Zijlstra 				struct zap_details *details)
15871da177e4SLinus Torvalds {
15881da177e4SLinus Torvalds 	pud_t *pud;
15891da177e4SLinus Torvalds 	unsigned long next;
15901da177e4SLinus Torvalds 
1591c2febafcSKirill A. Shutemov 	pud = pud_offset(p4d, addr);
15921da177e4SLinus Torvalds 	do {
15931da177e4SLinus Torvalds 		next = pud_addr_end(addr, end);
1594a00cc7d9SMatthew Wilcox 		if (pud_trans_huge(*pud) || pud_devmap(*pud)) {
1595a00cc7d9SMatthew Wilcox 			if (next - addr != HPAGE_PUD_SIZE) {
159642fc5414SMichel Lespinasse 				mmap_assert_locked(tlb->mm);
1597a00cc7d9SMatthew Wilcox 				split_huge_pud(vma, pud, addr);
1598a00cc7d9SMatthew Wilcox 			} else if (zap_huge_pud(tlb, vma, pud, addr))
1599a00cc7d9SMatthew Wilcox 				goto next;
1600a00cc7d9SMatthew Wilcox 			/* fall through */
1601a00cc7d9SMatthew Wilcox 		}
160297a89413SPeter Zijlstra 		if (pud_none_or_clear_bad(pud))
16031da177e4SLinus Torvalds 			continue;
160497a89413SPeter Zijlstra 		next = zap_pmd_range(tlb, vma, pud, addr, next, details);
1605a00cc7d9SMatthew Wilcox next:
1606a00cc7d9SMatthew Wilcox 		cond_resched();
160797a89413SPeter Zijlstra 	} while (pud++, addr = next, addr != end);
160851c6f666SRobin Holt 
160951c6f666SRobin Holt 	return addr;
16101da177e4SLinus Torvalds }
16111da177e4SLinus Torvalds 
1612c2febafcSKirill A. Shutemov static inline unsigned long zap_p4d_range(struct mmu_gather *tlb,
1613c2febafcSKirill A. Shutemov 				struct vm_area_struct *vma, pgd_t *pgd,
1614c2febafcSKirill A. Shutemov 				unsigned long addr, unsigned long end,
1615c2febafcSKirill A. Shutemov 				struct zap_details *details)
1616c2febafcSKirill A. Shutemov {
1617c2febafcSKirill A. Shutemov 	p4d_t *p4d;
1618c2febafcSKirill A. Shutemov 	unsigned long next;
1619c2febafcSKirill A. Shutemov 
1620c2febafcSKirill A. Shutemov 	p4d = p4d_offset(pgd, addr);
1621c2febafcSKirill A. Shutemov 	do {
1622c2febafcSKirill A. Shutemov 		next = p4d_addr_end(addr, end);
1623c2febafcSKirill A. Shutemov 		if (p4d_none_or_clear_bad(p4d))
1624c2febafcSKirill A. Shutemov 			continue;
1625c2febafcSKirill A. Shutemov 		next = zap_pud_range(tlb, vma, p4d, addr, next, details);
1626c2febafcSKirill A. Shutemov 	} while (p4d++, addr = next, addr != end);
1627c2febafcSKirill A. Shutemov 
1628c2febafcSKirill A. Shutemov 	return addr;
1629c2febafcSKirill A. Shutemov }
1630c2febafcSKirill A. Shutemov 
1631aac45363SMichal Hocko void unmap_page_range(struct mmu_gather *tlb,
163251c6f666SRobin Holt 			     struct vm_area_struct *vma,
16331da177e4SLinus Torvalds 			     unsigned long addr, unsigned long end,
163497a89413SPeter Zijlstra 			     struct zap_details *details)
16351da177e4SLinus Torvalds {
16361da177e4SLinus Torvalds 	pgd_t *pgd;
16371da177e4SLinus Torvalds 	unsigned long next;
16381da177e4SLinus Torvalds 
16391da177e4SLinus Torvalds 	BUG_ON(addr >= end);
16401da177e4SLinus Torvalds 	tlb_start_vma(tlb, vma);
16411da177e4SLinus Torvalds 	pgd = pgd_offset(vma->vm_mm, addr);
16421da177e4SLinus Torvalds 	do {
16431da177e4SLinus Torvalds 		next = pgd_addr_end(addr, end);
164497a89413SPeter Zijlstra 		if (pgd_none_or_clear_bad(pgd))
16451da177e4SLinus Torvalds 			continue;
1646c2febafcSKirill A. Shutemov 		next = zap_p4d_range(tlb, vma, pgd, addr, next, details);
164797a89413SPeter Zijlstra 	} while (pgd++, addr = next, addr != end);
16481da177e4SLinus Torvalds 	tlb_end_vma(tlb, vma);
16491da177e4SLinus Torvalds }
16501da177e4SLinus Torvalds 
1651f5cc4eefSAl Viro 
1652f5cc4eefSAl Viro static void unmap_single_vma(struct mmu_gather *tlb,
16531da177e4SLinus Torvalds 		struct vm_area_struct *vma, unsigned long start_addr,
16544f74d2c8SLinus Torvalds 		unsigned long end_addr,
165568f48381SSuren Baghdasaryan 		struct zap_details *details, bool mm_wr_locked)
16561da177e4SLinus Torvalds {
1657f5cc4eefSAl Viro 	unsigned long start = max(vma->vm_start, start_addr);
16581da177e4SLinus Torvalds 	unsigned long end;
16591da177e4SLinus Torvalds 
16601da177e4SLinus Torvalds 	if (start >= vma->vm_end)
1661f5cc4eefSAl Viro 		return;
16621da177e4SLinus Torvalds 	end = min(vma->vm_end, end_addr);
16631da177e4SLinus Torvalds 	if (end <= vma->vm_start)
1664f5cc4eefSAl Viro 		return;
16651da177e4SLinus Torvalds 
1666cbc91f71SSrikar Dronamraju 	if (vma->vm_file)
1667cbc91f71SSrikar Dronamraju 		uprobe_munmap(vma, start, end);
1668cbc91f71SSrikar Dronamraju 
1669b3b9c293SKonstantin Khlebnikov 	if (unlikely(vma->vm_flags & VM_PFNMAP))
167068f48381SSuren Baghdasaryan 		untrack_pfn(vma, 0, 0, mm_wr_locked);
16712ab64037Svenkatesh.pallipadi@intel.com 
16728b2a1238SAl Viro 	if (start != end) {
167351c6f666SRobin Holt 		if (unlikely(is_vm_hugetlb_page(vma))) {
1674a137e1ccSAndi Kleen 			/*
1675a137e1ccSAndi Kleen 			 * It is undesirable to test vma->vm_file as it
1676a137e1ccSAndi Kleen 			 * should be non-null for valid hugetlb area.
1677a137e1ccSAndi Kleen 			 * However, vm_file will be NULL in the error
16787aa6b4adSDavidlohr Bueso 			 * cleanup path of mmap_region. When
1679a137e1ccSAndi Kleen 			 * hugetlbfs ->mmap method fails,
16807aa6b4adSDavidlohr Bueso 			 * mmap_region() nullifies vma->vm_file
1681a137e1ccSAndi Kleen 			 * before calling this function to clean up.
1682a137e1ccSAndi Kleen 			 * Since no pte has actually been setup, it is
1683a137e1ccSAndi Kleen 			 * safe to do nothing in this case.
1684a137e1ccSAndi Kleen 			 */
168524669e58SAneesh Kumar K.V 			if (vma->vm_file) {
168605e90bd0SPeter Xu 				zap_flags_t zap_flags = details ?
168705e90bd0SPeter Xu 				    details->zap_flags : 0;
168805e90bd0SPeter Xu 				__unmap_hugepage_range_final(tlb, vma, start, end,
168905e90bd0SPeter Xu 							     NULL, zap_flags);
169024669e58SAneesh Kumar K.V 			}
169151c6f666SRobin Holt 		} else
1692038c7aa1SAl Viro 			unmap_page_range(tlb, vma, start, end, details);
169397a89413SPeter Zijlstra 	}
169451c6f666SRobin Holt }
16951da177e4SLinus Torvalds 
1696f5cc4eefSAl Viro /**
1697f5cc4eefSAl Viro  * unmap_vmas - unmap a range of memory covered by a list of vma's
1698f5cc4eefSAl Viro  * @tlb: address of the caller's struct mmu_gather
1699763ecb03SLiam R. Howlett  * @mt: the maple tree
1700f5cc4eefSAl Viro  * @vma: the starting vma
1701f5cc4eefSAl Viro  * @start_addr: virtual address at which to start unmapping
1702f5cc4eefSAl Viro  * @end_addr: virtual address at which to end unmapping
1703809ef83cSYang Li  * @mm_wr_locked: lock flag
1704f5cc4eefSAl Viro  *
1705f5cc4eefSAl Viro  * Unmap all pages in the vma list.
1706f5cc4eefSAl Viro  *
1707f5cc4eefSAl Viro  * Only addresses between `start' and `end' will be unmapped.
1708f5cc4eefSAl Viro  *
1709f5cc4eefSAl Viro  * The VMA list must be sorted in ascending virtual address order.
1710f5cc4eefSAl Viro  *
1711f5cc4eefSAl Viro  * unmap_vmas() assumes that the caller will flush the whole unmapped address
1712f5cc4eefSAl Viro  * range after unmap_vmas() returns.  So the only responsibility here is to
1713f5cc4eefSAl Viro  * ensure that any thus-far unmapped pages are flushed before unmap_vmas()
1714f5cc4eefSAl Viro  * drops the lock and schedules.
1715f5cc4eefSAl Viro  */
1716763ecb03SLiam R. Howlett void unmap_vmas(struct mmu_gather *tlb, struct maple_tree *mt,
1717f5cc4eefSAl Viro 		struct vm_area_struct *vma, unsigned long start_addr,
171868f48381SSuren Baghdasaryan 		unsigned long end_addr, bool mm_wr_locked)
1719f5cc4eefSAl Viro {
1720ac46d4f3SJérôme Glisse 	struct mmu_notifier_range range;
1721999dad82SPeter Xu 	struct zap_details details = {
172204ada095SMike Kravetz 		.zap_flags = ZAP_FLAG_DROP_MARKER | ZAP_FLAG_UNMAP,
1723999dad82SPeter Xu 		/* Careful - we need to zap private pages too! */
1724999dad82SPeter Xu 		.even_cows = true,
1725999dad82SPeter Xu 	};
1726763ecb03SLiam R. Howlett 	MA_STATE(mas, mt, vma->vm_end, vma->vm_end);
1727f5cc4eefSAl Viro 
17287d4a8be0SAlistair Popple 	mmu_notifier_range_init(&range, MMU_NOTIFY_UNMAP, 0, vma->vm_mm,
17296f4f13e8SJérôme Glisse 				start_addr, end_addr);
1730ac46d4f3SJérôme Glisse 	mmu_notifier_invalidate_range_start(&range);
1731763ecb03SLiam R. Howlett 	do {
173268f48381SSuren Baghdasaryan 		unmap_single_vma(tlb, vma, start_addr, end_addr, &details,
173368f48381SSuren Baghdasaryan 				 mm_wr_locked);
1734763ecb03SLiam R. Howlett 	} while ((vma = mas_find(&mas, end_addr - 1)) != NULL);
1735ac46d4f3SJérôme Glisse 	mmu_notifier_invalidate_range_end(&range);
17361da177e4SLinus Torvalds }
17371da177e4SLinus Torvalds 
17381da177e4SLinus Torvalds /**
1739f5cc4eefSAl Viro  * zap_page_range_single - remove user pages in a given range
1740f5cc4eefSAl Viro  * @vma: vm_area_struct holding the applicable pages
1741f5cc4eefSAl Viro  * @address: starting address of pages to zap
1742f5cc4eefSAl Viro  * @size: number of bytes to zap
17438a5f14a2SKirill A. Shutemov  * @details: details of shared cache invalidation
1744f5cc4eefSAl Viro  *
1745f5cc4eefSAl Viro  * The range must fit into one VMA.
1746f5cc4eefSAl Viro  */
174721b85b09SMike Kravetz void zap_page_range_single(struct vm_area_struct *vma, unsigned long address,
1748f5cc4eefSAl Viro 		unsigned long size, struct zap_details *details)
1749f5cc4eefSAl Viro {
175021b85b09SMike Kravetz 	const unsigned long end = address + size;
1751ac46d4f3SJérôme Glisse 	struct mmu_notifier_range range;
1752f5cc4eefSAl Viro 	struct mmu_gather tlb;
1753f5cc4eefSAl Viro 
1754f5cc4eefSAl Viro 	lru_add_drain();
17557d4a8be0SAlistair Popple 	mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma->vm_mm,
175621b85b09SMike Kravetz 				address, end);
175721b85b09SMike Kravetz 	if (is_vm_hugetlb_page(vma))
175821b85b09SMike Kravetz 		adjust_range_if_pmd_sharing_possible(vma, &range.start,
175921b85b09SMike Kravetz 						     &range.end);
1760a72afd87SWill Deacon 	tlb_gather_mmu(&tlb, vma->vm_mm);
1761ac46d4f3SJérôme Glisse 	update_hiwater_rss(vma->vm_mm);
1762ac46d4f3SJérôme Glisse 	mmu_notifier_invalidate_range_start(&range);
176321b85b09SMike Kravetz 	/*
176421b85b09SMike Kravetz 	 * unmap 'address-end' not 'range.start-range.end' as range
176521b85b09SMike Kravetz 	 * could have been expanded for hugetlb pmd sharing.
176621b85b09SMike Kravetz 	 */
176768f48381SSuren Baghdasaryan 	unmap_single_vma(&tlb, vma, address, end, details, false);
1768ac46d4f3SJérôme Glisse 	mmu_notifier_invalidate_range_end(&range);
1769ae8eba8bSWill Deacon 	tlb_finish_mmu(&tlb);
17701da177e4SLinus Torvalds }
17711da177e4SLinus Torvalds 
1772c627f9ccSJack Steiner /**
1773c627f9ccSJack Steiner  * zap_vma_ptes - remove ptes mapping the vma
1774c627f9ccSJack Steiner  * @vma: vm_area_struct holding ptes to be zapped
1775c627f9ccSJack Steiner  * @address: starting address of pages to zap
1776c627f9ccSJack Steiner  * @size: number of bytes to zap
1777c627f9ccSJack Steiner  *
1778c627f9ccSJack Steiner  * This function only unmaps ptes assigned to VM_PFNMAP vmas.
1779c627f9ccSJack Steiner  *
1780c627f9ccSJack Steiner  * The entire address range must be fully contained within the vma.
1781c627f9ccSJack Steiner  *
1782c627f9ccSJack Steiner  */
178327d036e3SLeon Romanovsky void zap_vma_ptes(struct vm_area_struct *vma, unsigned long address,
1784c627f9ccSJack Steiner 		unsigned long size)
1785c627f9ccSJack Steiner {
178688a35912SMiaohe Lin 	if (!range_in_vma(vma, address, address + size) ||
1787c627f9ccSJack Steiner 	    		!(vma->vm_flags & VM_PFNMAP))
178827d036e3SLeon Romanovsky 		return;
178927d036e3SLeon Romanovsky 
1790f5cc4eefSAl Viro 	zap_page_range_single(vma, address, size, NULL);
1791c627f9ccSJack Steiner }
1792c627f9ccSJack Steiner EXPORT_SYMBOL_GPL(zap_vma_ptes);
1793c627f9ccSJack Steiner 
17948cd3984dSArjun Roy static pmd_t *walk_to_pmd(struct mm_struct *mm, unsigned long addr)
1795c9cfcddfSLinus Torvalds {
1796c2febafcSKirill A. Shutemov 	pgd_t *pgd;
1797c2febafcSKirill A. Shutemov 	p4d_t *p4d;
1798c2febafcSKirill A. Shutemov 	pud_t *pud;
1799c2febafcSKirill A. Shutemov 	pmd_t *pmd;
1800c2febafcSKirill A. Shutemov 
1801c2febafcSKirill A. Shutemov 	pgd = pgd_offset(mm, addr);
1802c2febafcSKirill A. Shutemov 	p4d = p4d_alloc(mm, pgd, addr);
1803c2febafcSKirill A. Shutemov 	if (!p4d)
1804c2febafcSKirill A. Shutemov 		return NULL;
1805c2febafcSKirill A. Shutemov 	pud = pud_alloc(mm, p4d, addr);
1806c2febafcSKirill A. Shutemov 	if (!pud)
1807c2febafcSKirill A. Shutemov 		return NULL;
1808c2febafcSKirill A. Shutemov 	pmd = pmd_alloc(mm, pud, addr);
1809c2febafcSKirill A. Shutemov 	if (!pmd)
1810c2febafcSKirill A. Shutemov 		return NULL;
1811c2febafcSKirill A. Shutemov 
1812f66055abSAndrea Arcangeli 	VM_BUG_ON(pmd_trans_huge(*pmd));
18138cd3984dSArjun Roy 	return pmd;
18148cd3984dSArjun Roy }
18158cd3984dSArjun Roy 
18168cd3984dSArjun Roy pte_t *__get_locked_pte(struct mm_struct *mm, unsigned long addr,
18178cd3984dSArjun Roy 			spinlock_t **ptl)
18188cd3984dSArjun Roy {
18198cd3984dSArjun Roy 	pmd_t *pmd = walk_to_pmd(mm, addr);
18208cd3984dSArjun Roy 
18218cd3984dSArjun Roy 	if (!pmd)
18228cd3984dSArjun Roy 		return NULL;
1823c9cfcddfSLinus Torvalds 	return pte_alloc_map_lock(mm, pmd, addr, ptl);
1824c9cfcddfSLinus Torvalds }
1825c9cfcddfSLinus Torvalds 
18268efd6f5bSArjun Roy static int validate_page_before_insert(struct page *page)
18278efd6f5bSArjun Roy {
18288efd6f5bSArjun Roy 	if (PageAnon(page) || PageSlab(page) || page_has_type(page))
18298efd6f5bSArjun Roy 		return -EINVAL;
18308efd6f5bSArjun Roy 	flush_dcache_page(page);
18318efd6f5bSArjun Roy 	return 0;
18328efd6f5bSArjun Roy }
18338efd6f5bSArjun Roy 
1834cea86fe2SHugh Dickins static int insert_page_into_pte_locked(struct vm_area_struct *vma, pte_t *pte,
18358efd6f5bSArjun Roy 			unsigned long addr, struct page *page, pgprot_t prot)
18368efd6f5bSArjun Roy {
1837c33c7948SRyan Roberts 	if (!pte_none(ptep_get(pte)))
18388efd6f5bSArjun Roy 		return -EBUSY;
18398efd6f5bSArjun Roy 	/* Ok, finally just insert the thing.. */
18408efd6f5bSArjun Roy 	get_page(page);
1841f1a79412SShakeel Butt 	inc_mm_counter(vma->vm_mm, mm_counter_file(page));
1842cea86fe2SHugh Dickins 	page_add_file_rmap(page, vma, false);
1843cea86fe2SHugh Dickins 	set_pte_at(vma->vm_mm, addr, pte, mk_pte(page, prot));
18448efd6f5bSArjun Roy 	return 0;
18458efd6f5bSArjun Roy }
18468efd6f5bSArjun Roy 
18471da177e4SLinus Torvalds /*
1848238f58d8SLinus Torvalds  * This is the old fallback for page remapping.
1849238f58d8SLinus Torvalds  *
1850238f58d8SLinus Torvalds  * For historical reasons, it only allows reserved pages. Only
1851238f58d8SLinus Torvalds  * old drivers should use this, and they needed to mark their
1852238f58d8SLinus Torvalds  * pages reserved for the old functions anyway.
1853238f58d8SLinus Torvalds  */
1854423bad60SNick Piggin static int insert_page(struct vm_area_struct *vma, unsigned long addr,
1855423bad60SNick Piggin 			struct page *page, pgprot_t prot)
1856238f58d8SLinus Torvalds {
1857238f58d8SLinus Torvalds 	int retval;
1858238f58d8SLinus Torvalds 	pte_t *pte;
1859238f58d8SLinus Torvalds 	spinlock_t *ptl;
1860238f58d8SLinus Torvalds 
18618efd6f5bSArjun Roy 	retval = validate_page_before_insert(page);
18628efd6f5bSArjun Roy 	if (retval)
18635b4e655eSKAMEZAWA Hiroyuki 		goto out;
1864238f58d8SLinus Torvalds 	retval = -ENOMEM;
1865cea86fe2SHugh Dickins 	pte = get_locked_pte(vma->vm_mm, addr, &ptl);
1866238f58d8SLinus Torvalds 	if (!pte)
18675b4e655eSKAMEZAWA Hiroyuki 		goto out;
1868cea86fe2SHugh Dickins 	retval = insert_page_into_pte_locked(vma, pte, addr, page, prot);
1869238f58d8SLinus Torvalds 	pte_unmap_unlock(pte, ptl);
1870238f58d8SLinus Torvalds out:
1871238f58d8SLinus Torvalds 	return retval;
1872238f58d8SLinus Torvalds }
1873238f58d8SLinus Torvalds 
18748cd3984dSArjun Roy #ifdef pte_index
1875cea86fe2SHugh Dickins static int insert_page_in_batch_locked(struct vm_area_struct *vma, pte_t *pte,
18768cd3984dSArjun Roy 			unsigned long addr, struct page *page, pgprot_t prot)
18778cd3984dSArjun Roy {
18788cd3984dSArjun Roy 	int err;
18798cd3984dSArjun Roy 
18808cd3984dSArjun Roy 	if (!page_count(page))
18818cd3984dSArjun Roy 		return -EINVAL;
18828cd3984dSArjun Roy 	err = validate_page_before_insert(page);
18837f70c2a6SArjun Roy 	if (err)
18847f70c2a6SArjun Roy 		return err;
1885cea86fe2SHugh Dickins 	return insert_page_into_pte_locked(vma, pte, addr, page, prot);
18868cd3984dSArjun Roy }
18878cd3984dSArjun Roy 
18888cd3984dSArjun Roy /* insert_pages() amortizes the cost of spinlock operations
18898cd3984dSArjun Roy  * when inserting pages in a loop. Arch *must* define pte_index.
18908cd3984dSArjun Roy  */
18918cd3984dSArjun Roy static int insert_pages(struct vm_area_struct *vma, unsigned long addr,
18928cd3984dSArjun Roy 			struct page **pages, unsigned long *num, pgprot_t prot)
18938cd3984dSArjun Roy {
18948cd3984dSArjun Roy 	pmd_t *pmd = NULL;
18957f70c2a6SArjun Roy 	pte_t *start_pte, *pte;
18967f70c2a6SArjun Roy 	spinlock_t *pte_lock;
18978cd3984dSArjun Roy 	struct mm_struct *const mm = vma->vm_mm;
18988cd3984dSArjun Roy 	unsigned long curr_page_idx = 0;
18998cd3984dSArjun Roy 	unsigned long remaining_pages_total = *num;
19008cd3984dSArjun Roy 	unsigned long pages_to_write_in_pmd;
19018cd3984dSArjun Roy 	int ret;
19028cd3984dSArjun Roy more:
19038cd3984dSArjun Roy 	ret = -EFAULT;
19048cd3984dSArjun Roy 	pmd = walk_to_pmd(mm, addr);
19058cd3984dSArjun Roy 	if (!pmd)
19068cd3984dSArjun Roy 		goto out;
19078cd3984dSArjun Roy 
19088cd3984dSArjun Roy 	pages_to_write_in_pmd = min_t(unsigned long,
19098cd3984dSArjun Roy 		remaining_pages_total, PTRS_PER_PTE - pte_index(addr));
19108cd3984dSArjun Roy 
19118cd3984dSArjun Roy 	/* Allocate the PTE if necessary; takes PMD lock once only. */
19128cd3984dSArjun Roy 	ret = -ENOMEM;
19138cd3984dSArjun Roy 	if (pte_alloc(mm, pmd))
19148cd3984dSArjun Roy 		goto out;
19158cd3984dSArjun Roy 
19168cd3984dSArjun Roy 	while (pages_to_write_in_pmd) {
19178cd3984dSArjun Roy 		int pte_idx = 0;
19188cd3984dSArjun Roy 		const int batch_size = min_t(int, pages_to_write_in_pmd, 8);
19198cd3984dSArjun Roy 
19207f70c2a6SArjun Roy 		start_pte = pte_offset_map_lock(mm, pmd, addr, &pte_lock);
19213db82b93SHugh Dickins 		if (!start_pte) {
19223db82b93SHugh Dickins 			ret = -EFAULT;
19233db82b93SHugh Dickins 			goto out;
19243db82b93SHugh Dickins 		}
19257f70c2a6SArjun Roy 		for (pte = start_pte; pte_idx < batch_size; ++pte, ++pte_idx) {
1926cea86fe2SHugh Dickins 			int err = insert_page_in_batch_locked(vma, pte,
19278cd3984dSArjun Roy 				addr, pages[curr_page_idx], prot);
19288cd3984dSArjun Roy 			if (unlikely(err)) {
19297f70c2a6SArjun Roy 				pte_unmap_unlock(start_pte, pte_lock);
19308cd3984dSArjun Roy 				ret = err;
19318cd3984dSArjun Roy 				remaining_pages_total -= pte_idx;
19328cd3984dSArjun Roy 				goto out;
19338cd3984dSArjun Roy 			}
19348cd3984dSArjun Roy 			addr += PAGE_SIZE;
19358cd3984dSArjun Roy 			++curr_page_idx;
19368cd3984dSArjun Roy 		}
19377f70c2a6SArjun Roy 		pte_unmap_unlock(start_pte, pte_lock);
19388cd3984dSArjun Roy 		pages_to_write_in_pmd -= batch_size;
19398cd3984dSArjun Roy 		remaining_pages_total -= batch_size;
19408cd3984dSArjun Roy 	}
19418cd3984dSArjun Roy 	if (remaining_pages_total)
19428cd3984dSArjun Roy 		goto more;
19438cd3984dSArjun Roy 	ret = 0;
19448cd3984dSArjun Roy out:
19458cd3984dSArjun Roy 	*num = remaining_pages_total;
19468cd3984dSArjun Roy 	return ret;
19478cd3984dSArjun Roy }
19488cd3984dSArjun Roy #endif  /* ifdef pte_index */
19498cd3984dSArjun Roy 
19508cd3984dSArjun Roy /**
19518cd3984dSArjun Roy  * vm_insert_pages - insert multiple pages into user vma, batching the pmd lock.
19528cd3984dSArjun Roy  * @vma: user vma to map to
19538cd3984dSArjun Roy  * @addr: target start user address of these pages
19548cd3984dSArjun Roy  * @pages: source kernel pages
19558cd3984dSArjun Roy  * @num: in: number of pages to map. out: number of pages that were *not*
19568cd3984dSArjun Roy  * mapped. (0 means all pages were successfully mapped).
19578cd3984dSArjun Roy  *
19588cd3984dSArjun Roy  * Preferred over vm_insert_page() when inserting multiple pages.
19598cd3984dSArjun Roy  *
19608cd3984dSArjun Roy  * In case of error, we may have mapped a subset of the provided
19618cd3984dSArjun Roy  * pages. It is the caller's responsibility to account for this case.
19628cd3984dSArjun Roy  *
19638cd3984dSArjun Roy  * The same restrictions apply as in vm_insert_page().
19648cd3984dSArjun Roy  */
19658cd3984dSArjun Roy int vm_insert_pages(struct vm_area_struct *vma, unsigned long addr,
19668cd3984dSArjun Roy 			struct page **pages, unsigned long *num)
19678cd3984dSArjun Roy {
19688cd3984dSArjun Roy #ifdef pte_index
19698cd3984dSArjun Roy 	const unsigned long end_addr = addr + (*num * PAGE_SIZE) - 1;
19708cd3984dSArjun Roy 
19718cd3984dSArjun Roy 	if (addr < vma->vm_start || end_addr >= vma->vm_end)
19728cd3984dSArjun Roy 		return -EFAULT;
19738cd3984dSArjun Roy 	if (!(vma->vm_flags & VM_MIXEDMAP)) {
1974d8ed45c5SMichel Lespinasse 		BUG_ON(mmap_read_trylock(vma->vm_mm));
19758cd3984dSArjun Roy 		BUG_ON(vma->vm_flags & VM_PFNMAP);
19761c71222eSSuren Baghdasaryan 		vm_flags_set(vma, VM_MIXEDMAP);
19778cd3984dSArjun Roy 	}
19788cd3984dSArjun Roy 	/* Defer page refcount checking till we're about to map that page. */
19798cd3984dSArjun Roy 	return insert_pages(vma, addr, pages, num, vma->vm_page_prot);
19808cd3984dSArjun Roy #else
19818cd3984dSArjun Roy 	unsigned long idx = 0, pgcount = *num;
198245779b03STom Rix 	int err = -EINVAL;
19838cd3984dSArjun Roy 
19848cd3984dSArjun Roy 	for (; idx < pgcount; ++idx) {
19858cd3984dSArjun Roy 		err = vm_insert_page(vma, addr + (PAGE_SIZE * idx), pages[idx]);
19868cd3984dSArjun Roy 		if (err)
19878cd3984dSArjun Roy 			break;
19888cd3984dSArjun Roy 	}
19898cd3984dSArjun Roy 	*num = pgcount - idx;
19908cd3984dSArjun Roy 	return err;
19918cd3984dSArjun Roy #endif  /* ifdef pte_index */
19928cd3984dSArjun Roy }
19938cd3984dSArjun Roy EXPORT_SYMBOL(vm_insert_pages);
19948cd3984dSArjun Roy 
1995bfa5bf6dSRolf Eike Beer /**
1996bfa5bf6dSRolf Eike Beer  * vm_insert_page - insert single page into user vma
1997bfa5bf6dSRolf Eike Beer  * @vma: user vma to map to
1998bfa5bf6dSRolf Eike Beer  * @addr: target user address of this page
1999bfa5bf6dSRolf Eike Beer  * @page: source kernel page
2000bfa5bf6dSRolf Eike Beer  *
2001a145dd41SLinus Torvalds  * This allows drivers to insert individual pages they've allocated
2002a145dd41SLinus Torvalds  * into a user vma.
2003a145dd41SLinus Torvalds  *
2004a145dd41SLinus Torvalds  * The page has to be a nice clean _individual_ kernel allocation.
2005a145dd41SLinus Torvalds  * If you allocate a compound page, you need to have marked it as
2006a145dd41SLinus Torvalds  * such (__GFP_COMP), or manually just split the page up yourself
20078dfcc9baSNick Piggin  * (see split_page()).
2008a145dd41SLinus Torvalds  *
2009a145dd41SLinus Torvalds  * NOTE! Traditionally this was done with "remap_pfn_range()" which
2010a145dd41SLinus Torvalds  * took an arbitrary page protection parameter. This doesn't allow
2011a145dd41SLinus Torvalds  * that. Your vma protection will have to be set up correctly, which
2012a145dd41SLinus Torvalds  * means that if you want a shared writable mapping, you'd better
2013a145dd41SLinus Torvalds  * ask for a shared writable mapping!
2014a145dd41SLinus Torvalds  *
2015a145dd41SLinus Torvalds  * The page does not need to be reserved.
20164b6e1e37SKonstantin Khlebnikov  *
20174b6e1e37SKonstantin Khlebnikov  * Usually this function is called from f_op->mmap() handler
2018c1e8d7c6SMichel Lespinasse  * under mm->mmap_lock write-lock, so it can change vma->vm_flags.
20194b6e1e37SKonstantin Khlebnikov  * Caller must set VM_MIXEDMAP on vma if it wants to call this
20204b6e1e37SKonstantin Khlebnikov  * function from other places, for example from page-fault handler.
2021a862f68aSMike Rapoport  *
2022a862f68aSMike Rapoport  * Return: %0 on success, negative error code otherwise.
2023a145dd41SLinus Torvalds  */
2024423bad60SNick Piggin int vm_insert_page(struct vm_area_struct *vma, unsigned long addr,
2025423bad60SNick Piggin 			struct page *page)
2026a145dd41SLinus Torvalds {
2027a145dd41SLinus Torvalds 	if (addr < vma->vm_start || addr >= vma->vm_end)
2028a145dd41SLinus Torvalds 		return -EFAULT;
2029a145dd41SLinus Torvalds 	if (!page_count(page))
2030a145dd41SLinus Torvalds 		return -EINVAL;
20314b6e1e37SKonstantin Khlebnikov 	if (!(vma->vm_flags & VM_MIXEDMAP)) {
2032d8ed45c5SMichel Lespinasse 		BUG_ON(mmap_read_trylock(vma->vm_mm));
20334b6e1e37SKonstantin Khlebnikov 		BUG_ON(vma->vm_flags & VM_PFNMAP);
20341c71222eSSuren Baghdasaryan 		vm_flags_set(vma, VM_MIXEDMAP);
20354b6e1e37SKonstantin Khlebnikov 	}
2036423bad60SNick Piggin 	return insert_page(vma, addr, page, vma->vm_page_prot);
2037a145dd41SLinus Torvalds }
2038e3c3374fSLinus Torvalds EXPORT_SYMBOL(vm_insert_page);
2039a145dd41SLinus Torvalds 
2040a667d745SSouptick Joarder /*
2041a667d745SSouptick Joarder  * __vm_map_pages - maps range of kernel pages into user vma
2042a667d745SSouptick Joarder  * @vma: user vma to map to
2043a667d745SSouptick Joarder  * @pages: pointer to array of source kernel pages
2044a667d745SSouptick Joarder  * @num: number of pages in page array
2045a667d745SSouptick Joarder  * @offset: user's requested vm_pgoff
2046a667d745SSouptick Joarder  *
2047a667d745SSouptick Joarder  * This allows drivers to map range of kernel pages into a user vma.
2048a667d745SSouptick Joarder  *
2049a667d745SSouptick Joarder  * Return: 0 on success and error code otherwise.
2050a667d745SSouptick Joarder  */
2051a667d745SSouptick Joarder static int __vm_map_pages(struct vm_area_struct *vma, struct page **pages,
2052a667d745SSouptick Joarder 				unsigned long num, unsigned long offset)
2053a667d745SSouptick Joarder {
2054a667d745SSouptick Joarder 	unsigned long count = vma_pages(vma);
2055a667d745SSouptick Joarder 	unsigned long uaddr = vma->vm_start;
2056a667d745SSouptick Joarder 	int ret, i;
2057a667d745SSouptick Joarder 
2058a667d745SSouptick Joarder 	/* Fail if the user requested offset is beyond the end of the object */
205996756fcbSMiguel Ojeda 	if (offset >= num)
2060a667d745SSouptick Joarder 		return -ENXIO;
2061a667d745SSouptick Joarder 
2062a667d745SSouptick Joarder 	/* Fail if the user requested size exceeds available object size */
2063a667d745SSouptick Joarder 	if (count > num - offset)
2064a667d745SSouptick Joarder 		return -ENXIO;
2065a667d745SSouptick Joarder 
2066a667d745SSouptick Joarder 	for (i = 0; i < count; i++) {
2067a667d745SSouptick Joarder 		ret = vm_insert_page(vma, uaddr, pages[offset + i]);
2068a667d745SSouptick Joarder 		if (ret < 0)
2069a667d745SSouptick Joarder 			return ret;
2070a667d745SSouptick Joarder 		uaddr += PAGE_SIZE;
2071a667d745SSouptick Joarder 	}
2072a667d745SSouptick Joarder 
2073a667d745SSouptick Joarder 	return 0;
2074a667d745SSouptick Joarder }
2075a667d745SSouptick Joarder 
2076a667d745SSouptick Joarder /**
2077a667d745SSouptick Joarder  * vm_map_pages - maps range of kernel pages starts with non zero offset
2078a667d745SSouptick Joarder  * @vma: user vma to map to
2079a667d745SSouptick Joarder  * @pages: pointer to array of source kernel pages
2080a667d745SSouptick Joarder  * @num: number of pages in page array
2081a667d745SSouptick Joarder  *
2082a667d745SSouptick Joarder  * Maps an object consisting of @num pages, catering for the user's
2083a667d745SSouptick Joarder  * requested vm_pgoff
2084a667d745SSouptick Joarder  *
2085a667d745SSouptick Joarder  * If we fail to insert any page into the vma, the function will return
2086a667d745SSouptick Joarder  * immediately leaving any previously inserted pages present.  Callers
2087a667d745SSouptick Joarder  * from the mmap handler may immediately return the error as their caller
2088a667d745SSouptick Joarder  * will destroy the vma, removing any successfully inserted pages. Other
2089a667d745SSouptick Joarder  * callers should make their own arrangements for calling unmap_region().
2090a667d745SSouptick Joarder  *
2091a667d745SSouptick Joarder  * Context: Process context. Called by mmap handlers.
2092a667d745SSouptick Joarder  * Return: 0 on success and error code otherwise.
2093a667d745SSouptick Joarder  */
2094a667d745SSouptick Joarder int vm_map_pages(struct vm_area_struct *vma, struct page **pages,
2095a667d745SSouptick Joarder 				unsigned long num)
2096a667d745SSouptick Joarder {
2097a667d745SSouptick Joarder 	return __vm_map_pages(vma, pages, num, vma->vm_pgoff);
2098a667d745SSouptick Joarder }
2099a667d745SSouptick Joarder EXPORT_SYMBOL(vm_map_pages);
2100a667d745SSouptick Joarder 
2101a667d745SSouptick Joarder /**
2102a667d745SSouptick Joarder  * vm_map_pages_zero - map range of kernel pages starts with zero offset
2103a667d745SSouptick Joarder  * @vma: user vma to map to
2104a667d745SSouptick Joarder  * @pages: pointer to array of source kernel pages
2105a667d745SSouptick Joarder  * @num: number of pages in page array
2106a667d745SSouptick Joarder  *
2107a667d745SSouptick Joarder  * Similar to vm_map_pages(), except that it explicitly sets the offset
2108a667d745SSouptick Joarder  * to 0. This function is intended for the drivers that did not consider
2109a667d745SSouptick Joarder  * vm_pgoff.
2110a667d745SSouptick Joarder  *
2111a667d745SSouptick Joarder  * Context: Process context. Called by mmap handlers.
2112a667d745SSouptick Joarder  * Return: 0 on success and error code otherwise.
2113a667d745SSouptick Joarder  */
2114a667d745SSouptick Joarder int vm_map_pages_zero(struct vm_area_struct *vma, struct page **pages,
2115a667d745SSouptick Joarder 				unsigned long num)
2116a667d745SSouptick Joarder {
2117a667d745SSouptick Joarder 	return __vm_map_pages(vma, pages, num, 0);
2118a667d745SSouptick Joarder }
2119a667d745SSouptick Joarder EXPORT_SYMBOL(vm_map_pages_zero);
2120a667d745SSouptick Joarder 
21219b5a8e00SMatthew Wilcox static vm_fault_t insert_pfn(struct vm_area_struct *vma, unsigned long addr,
2122b2770da6SRoss Zwisler 			pfn_t pfn, pgprot_t prot, bool mkwrite)
2123423bad60SNick Piggin {
2124423bad60SNick Piggin 	struct mm_struct *mm = vma->vm_mm;
2125423bad60SNick Piggin 	pte_t *pte, entry;
2126423bad60SNick Piggin 	spinlock_t *ptl;
2127423bad60SNick Piggin 
2128423bad60SNick Piggin 	pte = get_locked_pte(mm, addr, &ptl);
2129423bad60SNick Piggin 	if (!pte)
21309b5a8e00SMatthew Wilcox 		return VM_FAULT_OOM;
2131c33c7948SRyan Roberts 	entry = ptep_get(pte);
2132c33c7948SRyan Roberts 	if (!pte_none(entry)) {
2133b2770da6SRoss Zwisler 		if (mkwrite) {
2134b2770da6SRoss Zwisler 			/*
2135b2770da6SRoss Zwisler 			 * For read faults on private mappings the PFN passed
2136b2770da6SRoss Zwisler 			 * in may not match the PFN we have mapped if the
2137b2770da6SRoss Zwisler 			 * mapped PFN is a writeable COW page.  In the mkwrite
2138b2770da6SRoss Zwisler 			 * case we are creating a writable PTE for a shared
2139f2c57d91SJan Kara 			 * mapping and we expect the PFNs to match. If they
2140f2c57d91SJan Kara 			 * don't match, we are likely racing with block
2141f2c57d91SJan Kara 			 * allocation and mapping invalidation so just skip the
2142f2c57d91SJan Kara 			 * update.
2143b2770da6SRoss Zwisler 			 */
2144c33c7948SRyan Roberts 			if (pte_pfn(entry) != pfn_t_to_pfn(pfn)) {
2145c33c7948SRyan Roberts 				WARN_ON_ONCE(!is_zero_pfn(pte_pfn(entry)));
2146423bad60SNick Piggin 				goto out_unlock;
2147f2c57d91SJan Kara 			}
2148c33c7948SRyan Roberts 			entry = pte_mkyoung(entry);
2149cae85cb8SJan Kara 			entry = maybe_mkwrite(pte_mkdirty(entry), vma);
2150cae85cb8SJan Kara 			if (ptep_set_access_flags(vma, addr, pte, entry, 1))
2151cae85cb8SJan Kara 				update_mmu_cache(vma, addr, pte);
2152cae85cb8SJan Kara 		}
2153b2770da6SRoss Zwisler 		goto out_unlock;
2154b2770da6SRoss Zwisler 	}
2155423bad60SNick Piggin 
2156423bad60SNick Piggin 	/* Ok, finally just insert the thing.. */
215701c8f1c4SDan Williams 	if (pfn_t_devmap(pfn))
215801c8f1c4SDan Williams 		entry = pte_mkdevmap(pfn_t_pte(pfn, prot));
215901c8f1c4SDan Williams 	else
216001c8f1c4SDan Williams 		entry = pte_mkspecial(pfn_t_pte(pfn, prot));
2161b2770da6SRoss Zwisler 
2162b2770da6SRoss Zwisler 	if (mkwrite) {
2163b2770da6SRoss Zwisler 		entry = pte_mkyoung(entry);
2164b2770da6SRoss Zwisler 		entry = maybe_mkwrite(pte_mkdirty(entry), vma);
2165b2770da6SRoss Zwisler 	}
2166b2770da6SRoss Zwisler 
2167423bad60SNick Piggin 	set_pte_at(mm, addr, pte, entry);
21684b3073e1SRussell King 	update_mmu_cache(vma, addr, pte); /* XXX: why not for insert_page? */
2169423bad60SNick Piggin 
2170423bad60SNick Piggin out_unlock:
2171423bad60SNick Piggin 	pte_unmap_unlock(pte, ptl);
21729b5a8e00SMatthew Wilcox 	return VM_FAULT_NOPAGE;
2173423bad60SNick Piggin }
2174423bad60SNick Piggin 
2175f5e6d1d5SMatthew Wilcox /**
2176f5e6d1d5SMatthew Wilcox  * vmf_insert_pfn_prot - insert single pfn into user vma with specified pgprot
2177f5e6d1d5SMatthew Wilcox  * @vma: user vma to map to
2178f5e6d1d5SMatthew Wilcox  * @addr: target user address of this page
2179f5e6d1d5SMatthew Wilcox  * @pfn: source kernel pfn
2180f5e6d1d5SMatthew Wilcox  * @pgprot: pgprot flags for the inserted page
2181f5e6d1d5SMatthew Wilcox  *
2182a1a0aea5SRandy Dunlap  * This is exactly like vmf_insert_pfn(), except that it allows drivers
2183f5e6d1d5SMatthew Wilcox  * to override pgprot on a per-page basis.
2184f5e6d1d5SMatthew Wilcox  *
2185f5e6d1d5SMatthew Wilcox  * This only makes sense for IO mappings, and it makes no sense for
2186f5e6d1d5SMatthew Wilcox  * COW mappings.  In general, using multiple vmas is preferable;
2187ae2b01f3SMatthew Wilcox  * vmf_insert_pfn_prot should only be used if using multiple VMAs is
2188f5e6d1d5SMatthew Wilcox  * impractical.
2189f5e6d1d5SMatthew Wilcox  *
219028d8b812SLorenzo Stoakes  * pgprot typically only differs from @vma->vm_page_prot when drivers set
219128d8b812SLorenzo Stoakes  * caching- and encryption bits different than those of @vma->vm_page_prot,
219228d8b812SLorenzo Stoakes  * because the caching- or encryption mode may not be known at mmap() time.
219328d8b812SLorenzo Stoakes  *
219428d8b812SLorenzo Stoakes  * This is ok as long as @vma->vm_page_prot is not used by the core vm
219528d8b812SLorenzo Stoakes  * to set caching and encryption bits for those vmas (except for COW pages).
219628d8b812SLorenzo Stoakes  * This is ensured by core vm only modifying these page table entries using
219728d8b812SLorenzo Stoakes  * functions that don't touch caching- or encryption bits, using pte_modify()
219828d8b812SLorenzo Stoakes  * if needed. (See for example mprotect()).
219928d8b812SLorenzo Stoakes  *
220028d8b812SLorenzo Stoakes  * Also when new page-table entries are created, this is only done using the
220128d8b812SLorenzo Stoakes  * fault() callback, and never using the value of vma->vm_page_prot,
220228d8b812SLorenzo Stoakes  * except for page-table entries that point to anonymous pages as the result
220328d8b812SLorenzo Stoakes  * of COW.
2204574c5b3dSThomas Hellstrom  *
2205ae2b01f3SMatthew Wilcox  * Context: Process context.  May allocate using %GFP_KERNEL.
2206f5e6d1d5SMatthew Wilcox  * Return: vm_fault_t value.
2207f5e6d1d5SMatthew Wilcox  */
2208f5e6d1d5SMatthew Wilcox vm_fault_t vmf_insert_pfn_prot(struct vm_area_struct *vma, unsigned long addr,
2209f5e6d1d5SMatthew Wilcox 			unsigned long pfn, pgprot_t pgprot)
2210f5e6d1d5SMatthew Wilcox {
22116d958546SMatthew Wilcox 	/*
22126d958546SMatthew Wilcox 	 * Technically, architectures with pte_special can avoid all these
22136d958546SMatthew Wilcox 	 * restrictions (same for remap_pfn_range).  However we would like
22146d958546SMatthew Wilcox 	 * consistency in testing and feature parity among all, so we should
22156d958546SMatthew Wilcox 	 * try to keep these invariants in place for everybody.
22166d958546SMatthew Wilcox 	 */
22176d958546SMatthew Wilcox 	BUG_ON(!(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)));
22186d958546SMatthew Wilcox 	BUG_ON((vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) ==
22196d958546SMatthew Wilcox 						(VM_PFNMAP|VM_MIXEDMAP));
22206d958546SMatthew Wilcox 	BUG_ON((vma->vm_flags & VM_PFNMAP) && is_cow_mapping(vma->vm_flags));
22216d958546SMatthew Wilcox 	BUG_ON((vma->vm_flags & VM_MIXEDMAP) && pfn_valid(pfn));
22226d958546SMatthew Wilcox 
22236d958546SMatthew Wilcox 	if (addr < vma->vm_start || addr >= vma->vm_end)
22246d958546SMatthew Wilcox 		return VM_FAULT_SIGBUS;
22256d958546SMatthew Wilcox 
22266d958546SMatthew Wilcox 	if (!pfn_modify_allowed(pfn, pgprot))
22276d958546SMatthew Wilcox 		return VM_FAULT_SIGBUS;
22286d958546SMatthew Wilcox 
22296d958546SMatthew Wilcox 	track_pfn_insert(vma, &pgprot, __pfn_to_pfn_t(pfn, PFN_DEV));
22306d958546SMatthew Wilcox 
22319b5a8e00SMatthew Wilcox 	return insert_pfn(vma, addr, __pfn_to_pfn_t(pfn, PFN_DEV), pgprot,
22326d958546SMatthew Wilcox 			false);
2233f5e6d1d5SMatthew Wilcox }
2234f5e6d1d5SMatthew Wilcox EXPORT_SYMBOL(vmf_insert_pfn_prot);
2235e0dc0d8fSNick Piggin 
2236ae2b01f3SMatthew Wilcox /**
2237ae2b01f3SMatthew Wilcox  * vmf_insert_pfn - insert single pfn into user vma
2238ae2b01f3SMatthew Wilcox  * @vma: user vma to map to
2239ae2b01f3SMatthew Wilcox  * @addr: target user address of this page
2240ae2b01f3SMatthew Wilcox  * @pfn: source kernel pfn
2241ae2b01f3SMatthew Wilcox  *
2242ae2b01f3SMatthew Wilcox  * Similar to vm_insert_page, this allows drivers to insert individual pages
2243ae2b01f3SMatthew Wilcox  * they've allocated into a user vma. Same comments apply.
2244ae2b01f3SMatthew Wilcox  *
2245ae2b01f3SMatthew Wilcox  * This function should only be called from a vm_ops->fault handler, and
2246ae2b01f3SMatthew Wilcox  * in that case the handler should return the result of this function.
2247ae2b01f3SMatthew Wilcox  *
2248ae2b01f3SMatthew Wilcox  * vma cannot be a COW mapping.
2249ae2b01f3SMatthew Wilcox  *
2250ae2b01f3SMatthew Wilcox  * As this is called only for pages that do not currently exist, we
2251ae2b01f3SMatthew Wilcox  * do not need to flush old virtual caches or the TLB.
2252ae2b01f3SMatthew Wilcox  *
2253ae2b01f3SMatthew Wilcox  * Context: Process context.  May allocate using %GFP_KERNEL.
2254ae2b01f3SMatthew Wilcox  * Return: vm_fault_t value.
2255ae2b01f3SMatthew Wilcox  */
2256ae2b01f3SMatthew Wilcox vm_fault_t vmf_insert_pfn(struct vm_area_struct *vma, unsigned long addr,
2257ae2b01f3SMatthew Wilcox 			unsigned long pfn)
2258ae2b01f3SMatthew Wilcox {
2259ae2b01f3SMatthew Wilcox 	return vmf_insert_pfn_prot(vma, addr, pfn, vma->vm_page_prot);
2260ae2b01f3SMatthew Wilcox }
2261ae2b01f3SMatthew Wilcox EXPORT_SYMBOL(vmf_insert_pfn);
2262ae2b01f3SMatthew Wilcox 
2263785a3fabSDan Williams static bool vm_mixed_ok(struct vm_area_struct *vma, pfn_t pfn)
2264785a3fabSDan Williams {
2265785a3fabSDan Williams 	/* these checks mirror the abort conditions in vm_normal_page */
2266785a3fabSDan Williams 	if (vma->vm_flags & VM_MIXEDMAP)
2267785a3fabSDan Williams 		return true;
2268785a3fabSDan Williams 	if (pfn_t_devmap(pfn))
2269785a3fabSDan Williams 		return true;
2270785a3fabSDan Williams 	if (pfn_t_special(pfn))
2271785a3fabSDan Williams 		return true;
2272785a3fabSDan Williams 	if (is_zero_pfn(pfn_t_to_pfn(pfn)))
2273785a3fabSDan Williams 		return true;
2274785a3fabSDan Williams 	return false;
2275785a3fabSDan Williams }
2276785a3fabSDan Williams 
227779f3aa5bSMatthew Wilcox static vm_fault_t __vm_insert_mixed(struct vm_area_struct *vma,
227828d8b812SLorenzo Stoakes 		unsigned long addr, pfn_t pfn, bool mkwrite)
2279423bad60SNick Piggin {
228028d8b812SLorenzo Stoakes 	pgprot_t pgprot = vma->vm_page_prot;
228179f3aa5bSMatthew Wilcox 	int err;
228287744ab3SDan Williams 
2283785a3fabSDan Williams 	BUG_ON(!vm_mixed_ok(vma, pfn));
2284423bad60SNick Piggin 
2285423bad60SNick Piggin 	if (addr < vma->vm_start || addr >= vma->vm_end)
228679f3aa5bSMatthew Wilcox 		return VM_FAULT_SIGBUS;
2287308a047cSBorislav Petkov 
2288308a047cSBorislav Petkov 	track_pfn_insert(vma, &pgprot, pfn);
2289423bad60SNick Piggin 
229042e4089cSAndi Kleen 	if (!pfn_modify_allowed(pfn_t_to_pfn(pfn), pgprot))
229179f3aa5bSMatthew Wilcox 		return VM_FAULT_SIGBUS;
229242e4089cSAndi Kleen 
2293423bad60SNick Piggin 	/*
2294423bad60SNick Piggin 	 * If we don't have pte special, then we have to use the pfn_valid()
2295423bad60SNick Piggin 	 * based VM_MIXEDMAP scheme (see vm_normal_page), and thus we *must*
2296423bad60SNick Piggin 	 * refcount the page if pfn_valid is true (hence insert_page rather
229762eede62SHugh Dickins 	 * than insert_pfn).  If a zero_pfn were inserted into a VM_MIXEDMAP
229862eede62SHugh Dickins 	 * without pte special, it would there be refcounted as a normal page.
2299423bad60SNick Piggin 	 */
230000b3a331SLaurent Dufour 	if (!IS_ENABLED(CONFIG_ARCH_HAS_PTE_SPECIAL) &&
230100b3a331SLaurent Dufour 	    !pfn_t_devmap(pfn) && pfn_t_valid(pfn)) {
2302423bad60SNick Piggin 		struct page *page;
2303423bad60SNick Piggin 
230403fc2da6SDan Williams 		/*
230503fc2da6SDan Williams 		 * At this point we are committed to insert_page()
230603fc2da6SDan Williams 		 * regardless of whether the caller specified flags that
230703fc2da6SDan Williams 		 * result in pfn_t_has_page() == false.
230803fc2da6SDan Williams 		 */
230903fc2da6SDan Williams 		page = pfn_to_page(pfn_t_to_pfn(pfn));
231079f3aa5bSMatthew Wilcox 		err = insert_page(vma, addr, page, pgprot);
231179f3aa5bSMatthew Wilcox 	} else {
23129b5a8e00SMatthew Wilcox 		return insert_pfn(vma, addr, pfn, pgprot, mkwrite);
2313423bad60SNick Piggin 	}
2314b2770da6SRoss Zwisler 
23155d747637SMatthew Wilcox 	if (err == -ENOMEM)
23165d747637SMatthew Wilcox 		return VM_FAULT_OOM;
23175d747637SMatthew Wilcox 	if (err < 0 && err != -EBUSY)
23185d747637SMatthew Wilcox 		return VM_FAULT_SIGBUS;
23195d747637SMatthew Wilcox 
23205d747637SMatthew Wilcox 	return VM_FAULT_NOPAGE;
2321423bad60SNick Piggin }
232279f3aa5bSMatthew Wilcox 
232379f3aa5bSMatthew Wilcox vm_fault_t vmf_insert_mixed(struct vm_area_struct *vma, unsigned long addr,
232479f3aa5bSMatthew Wilcox 		pfn_t pfn)
232579f3aa5bSMatthew Wilcox {
232628d8b812SLorenzo Stoakes 	return __vm_insert_mixed(vma, addr, pfn, false);
232779f3aa5bSMatthew Wilcox }
23285d747637SMatthew Wilcox EXPORT_SYMBOL(vmf_insert_mixed);
2329423bad60SNick Piggin 
2330ab77dab4SSouptick Joarder /*
2331ab77dab4SSouptick Joarder  *  If the insertion of PTE failed because someone else already added a
2332ab77dab4SSouptick Joarder  *  different entry in the mean time, we treat that as success as we assume
2333ab77dab4SSouptick Joarder  *  the same entry was actually inserted.
2334ab77dab4SSouptick Joarder  */
2335ab77dab4SSouptick Joarder vm_fault_t vmf_insert_mixed_mkwrite(struct vm_area_struct *vma,
2336ab77dab4SSouptick Joarder 		unsigned long addr, pfn_t pfn)
2337b2770da6SRoss Zwisler {
233828d8b812SLorenzo Stoakes 	return __vm_insert_mixed(vma, addr, pfn, true);
2339b2770da6SRoss Zwisler }
2340ab77dab4SSouptick Joarder EXPORT_SYMBOL(vmf_insert_mixed_mkwrite);
2341b2770da6SRoss Zwisler 
2342a145dd41SLinus Torvalds /*
23431da177e4SLinus Torvalds  * maps a range of physical memory into the requested pages. the old
23441da177e4SLinus Torvalds  * mappings are removed. any references to nonexistent pages results
23451da177e4SLinus Torvalds  * in null mappings (currently treated as "copy-on-access")
23461da177e4SLinus Torvalds  */
23471da177e4SLinus Torvalds static int remap_pte_range(struct mm_struct *mm, pmd_t *pmd,
23481da177e4SLinus Torvalds 			unsigned long addr, unsigned long end,
23491da177e4SLinus Torvalds 			unsigned long pfn, pgprot_t prot)
23501da177e4SLinus Torvalds {
235190a3e375SMiaohe Lin 	pte_t *pte, *mapped_pte;
2352c74df32cSHugh Dickins 	spinlock_t *ptl;
235342e4089cSAndi Kleen 	int err = 0;
23541da177e4SLinus Torvalds 
235590a3e375SMiaohe Lin 	mapped_pte = pte = pte_alloc_map_lock(mm, pmd, addr, &ptl);
23561da177e4SLinus Torvalds 	if (!pte)
23571da177e4SLinus Torvalds 		return -ENOMEM;
23586606c3e0SZachary Amsden 	arch_enter_lazy_mmu_mode();
23591da177e4SLinus Torvalds 	do {
2360c33c7948SRyan Roberts 		BUG_ON(!pte_none(ptep_get(pte)));
236142e4089cSAndi Kleen 		if (!pfn_modify_allowed(pfn, prot)) {
236242e4089cSAndi Kleen 			err = -EACCES;
236342e4089cSAndi Kleen 			break;
236442e4089cSAndi Kleen 		}
23657e675137SNick Piggin 		set_pte_at(mm, addr, pte, pte_mkspecial(pfn_pte(pfn, prot)));
23661da177e4SLinus Torvalds 		pfn++;
23671da177e4SLinus Torvalds 	} while (pte++, addr += PAGE_SIZE, addr != end);
23686606c3e0SZachary Amsden 	arch_leave_lazy_mmu_mode();
236990a3e375SMiaohe Lin 	pte_unmap_unlock(mapped_pte, ptl);
237042e4089cSAndi Kleen 	return err;
23711da177e4SLinus Torvalds }
23721da177e4SLinus Torvalds 
23731da177e4SLinus Torvalds static inline int remap_pmd_range(struct mm_struct *mm, pud_t *pud,
23741da177e4SLinus Torvalds 			unsigned long addr, unsigned long end,
23751da177e4SLinus Torvalds 			unsigned long pfn, pgprot_t prot)
23761da177e4SLinus Torvalds {
23771da177e4SLinus Torvalds 	pmd_t *pmd;
23781da177e4SLinus Torvalds 	unsigned long next;
237942e4089cSAndi Kleen 	int err;
23801da177e4SLinus Torvalds 
23811da177e4SLinus Torvalds 	pfn -= addr >> PAGE_SHIFT;
23821da177e4SLinus Torvalds 	pmd = pmd_alloc(mm, pud, addr);
23831da177e4SLinus Torvalds 	if (!pmd)
23841da177e4SLinus Torvalds 		return -ENOMEM;
2385f66055abSAndrea Arcangeli 	VM_BUG_ON(pmd_trans_huge(*pmd));
23861da177e4SLinus Torvalds 	do {
23871da177e4SLinus Torvalds 		next = pmd_addr_end(addr, end);
238842e4089cSAndi Kleen 		err = remap_pte_range(mm, pmd, addr, next,
238942e4089cSAndi Kleen 				pfn + (addr >> PAGE_SHIFT), prot);
239042e4089cSAndi Kleen 		if (err)
239142e4089cSAndi Kleen 			return err;
23921da177e4SLinus Torvalds 	} while (pmd++, addr = next, addr != end);
23931da177e4SLinus Torvalds 	return 0;
23941da177e4SLinus Torvalds }
23951da177e4SLinus Torvalds 
2396c2febafcSKirill A. Shutemov static inline int remap_pud_range(struct mm_struct *mm, p4d_t *p4d,
23971da177e4SLinus Torvalds 			unsigned long addr, unsigned long end,
23981da177e4SLinus Torvalds 			unsigned long pfn, pgprot_t prot)
23991da177e4SLinus Torvalds {
24001da177e4SLinus Torvalds 	pud_t *pud;
24011da177e4SLinus Torvalds 	unsigned long next;
240242e4089cSAndi Kleen 	int err;
24031da177e4SLinus Torvalds 
24041da177e4SLinus Torvalds 	pfn -= addr >> PAGE_SHIFT;
2405c2febafcSKirill A. Shutemov 	pud = pud_alloc(mm, p4d, addr);
24061da177e4SLinus Torvalds 	if (!pud)
24071da177e4SLinus Torvalds 		return -ENOMEM;
24081da177e4SLinus Torvalds 	do {
24091da177e4SLinus Torvalds 		next = pud_addr_end(addr, end);
241042e4089cSAndi Kleen 		err = remap_pmd_range(mm, pud, addr, next,
241142e4089cSAndi Kleen 				pfn + (addr >> PAGE_SHIFT), prot);
241242e4089cSAndi Kleen 		if (err)
241342e4089cSAndi Kleen 			return err;
24141da177e4SLinus Torvalds 	} while (pud++, addr = next, addr != end);
24151da177e4SLinus Torvalds 	return 0;
24161da177e4SLinus Torvalds }
24171da177e4SLinus Torvalds 
2418c2febafcSKirill A. Shutemov static inline int remap_p4d_range(struct mm_struct *mm, pgd_t *pgd,
2419c2febafcSKirill A. Shutemov 			unsigned long addr, unsigned long end,
2420c2febafcSKirill A. Shutemov 			unsigned long pfn, pgprot_t prot)
2421c2febafcSKirill A. Shutemov {
2422c2febafcSKirill A. Shutemov 	p4d_t *p4d;
2423c2febafcSKirill A. Shutemov 	unsigned long next;
242442e4089cSAndi Kleen 	int err;
2425c2febafcSKirill A. Shutemov 
2426c2febafcSKirill A. Shutemov 	pfn -= addr >> PAGE_SHIFT;
2427c2febafcSKirill A. Shutemov 	p4d = p4d_alloc(mm, pgd, addr);
2428c2febafcSKirill A. Shutemov 	if (!p4d)
2429c2febafcSKirill A. Shutemov 		return -ENOMEM;
2430c2febafcSKirill A. Shutemov 	do {
2431c2febafcSKirill A. Shutemov 		next = p4d_addr_end(addr, end);
243242e4089cSAndi Kleen 		err = remap_pud_range(mm, p4d, addr, next,
243342e4089cSAndi Kleen 				pfn + (addr >> PAGE_SHIFT), prot);
243442e4089cSAndi Kleen 		if (err)
243542e4089cSAndi Kleen 			return err;
2436c2febafcSKirill A. Shutemov 	} while (p4d++, addr = next, addr != end);
2437c2febafcSKirill A. Shutemov 	return 0;
2438c2febafcSKirill A. Shutemov }
2439c2febafcSKirill A. Shutemov 
244074ffa5a3SChristoph Hellwig /*
244174ffa5a3SChristoph Hellwig  * Variant of remap_pfn_range that does not call track_pfn_remap.  The caller
244274ffa5a3SChristoph Hellwig  * must have pre-validated the caching bits of the pgprot_t.
2443bfa5bf6dSRolf Eike Beer  */
244474ffa5a3SChristoph Hellwig int remap_pfn_range_notrack(struct vm_area_struct *vma, unsigned long addr,
24451da177e4SLinus Torvalds 		unsigned long pfn, unsigned long size, pgprot_t prot)
24461da177e4SLinus Torvalds {
24471da177e4SLinus Torvalds 	pgd_t *pgd;
24481da177e4SLinus Torvalds 	unsigned long next;
24492d15cab8SHugh Dickins 	unsigned long end = addr + PAGE_ALIGN(size);
24501da177e4SLinus Torvalds 	struct mm_struct *mm = vma->vm_mm;
24511da177e4SLinus Torvalds 	int err;
24521da177e4SLinus Torvalds 
24530c4123e3SAlex Zhang 	if (WARN_ON_ONCE(!PAGE_ALIGNED(addr)))
24540c4123e3SAlex Zhang 		return -EINVAL;
24550c4123e3SAlex Zhang 
24561da177e4SLinus Torvalds 	/*
24571da177e4SLinus Torvalds 	 * Physically remapped pages are special. Tell the
24581da177e4SLinus Torvalds 	 * rest of the world about it:
24591da177e4SLinus Torvalds 	 *   VM_IO tells people not to look at these pages
24601da177e4SLinus Torvalds 	 *	(accesses can have side effects).
24616aab341eSLinus Torvalds 	 *   VM_PFNMAP tells the core MM that the base pages are just
24626aab341eSLinus Torvalds 	 *	raw PFN mappings, and do not have a "struct page" associated
24636aab341eSLinus Torvalds 	 *	with them.
2464314e51b9SKonstantin Khlebnikov 	 *   VM_DONTEXPAND
2465314e51b9SKonstantin Khlebnikov 	 *      Disable vma merging and expanding with mremap().
2466314e51b9SKonstantin Khlebnikov 	 *   VM_DONTDUMP
2467314e51b9SKonstantin Khlebnikov 	 *      Omit vma from core dump, even when VM_IO turned off.
2468fb155c16SLinus Torvalds 	 *
2469fb155c16SLinus Torvalds 	 * There's a horrible special case to handle copy-on-write
2470fb155c16SLinus Torvalds 	 * behaviour that some programs depend on. We mark the "original"
2471fb155c16SLinus Torvalds 	 * un-COW'ed pages by matching them up with "vma->vm_pgoff".
2472b3b9c293SKonstantin Khlebnikov 	 * See vm_normal_page() for details.
24731da177e4SLinus Torvalds 	 */
2474b3b9c293SKonstantin Khlebnikov 	if (is_cow_mapping(vma->vm_flags)) {
2475b3b9c293SKonstantin Khlebnikov 		if (addr != vma->vm_start || end != vma->vm_end)
2476b3b9c293SKonstantin Khlebnikov 			return -EINVAL;
24776aab341eSLinus Torvalds 		vma->vm_pgoff = pfn;
2478b3b9c293SKonstantin Khlebnikov 	}
2479b3b9c293SKonstantin Khlebnikov 
24801c71222eSSuren Baghdasaryan 	vm_flags_set(vma, VM_IO | VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP);
24811da177e4SLinus Torvalds 
24821da177e4SLinus Torvalds 	BUG_ON(addr >= end);
24831da177e4SLinus Torvalds 	pfn -= addr >> PAGE_SHIFT;
24841da177e4SLinus Torvalds 	pgd = pgd_offset(mm, addr);
24851da177e4SLinus Torvalds 	flush_cache_range(vma, addr, end);
24861da177e4SLinus Torvalds 	do {
24871da177e4SLinus Torvalds 		next = pgd_addr_end(addr, end);
2488c2febafcSKirill A. Shutemov 		err = remap_p4d_range(mm, pgd, addr, next,
24891da177e4SLinus Torvalds 				pfn + (addr >> PAGE_SHIFT), prot);
24901da177e4SLinus Torvalds 		if (err)
249174ffa5a3SChristoph Hellwig 			return err;
24921da177e4SLinus Torvalds 	} while (pgd++, addr = next, addr != end);
24932ab64037Svenkatesh.pallipadi@intel.com 
249474ffa5a3SChristoph Hellwig 	return 0;
249574ffa5a3SChristoph Hellwig }
24962ab64037Svenkatesh.pallipadi@intel.com 
249774ffa5a3SChristoph Hellwig /**
249874ffa5a3SChristoph Hellwig  * remap_pfn_range - remap kernel memory to userspace
249974ffa5a3SChristoph Hellwig  * @vma: user vma to map to
250074ffa5a3SChristoph Hellwig  * @addr: target page aligned user address to start at
250174ffa5a3SChristoph Hellwig  * @pfn: page frame number of kernel physical memory address
250274ffa5a3SChristoph Hellwig  * @size: size of mapping area
250374ffa5a3SChristoph Hellwig  * @prot: page protection flags for this mapping
250474ffa5a3SChristoph Hellwig  *
250574ffa5a3SChristoph Hellwig  * Note: this is only safe if the mm semaphore is held when called.
250674ffa5a3SChristoph Hellwig  *
250774ffa5a3SChristoph Hellwig  * Return: %0 on success, negative error code otherwise.
250874ffa5a3SChristoph Hellwig  */
250974ffa5a3SChristoph Hellwig int remap_pfn_range(struct vm_area_struct *vma, unsigned long addr,
251074ffa5a3SChristoph Hellwig 		    unsigned long pfn, unsigned long size, pgprot_t prot)
251174ffa5a3SChristoph Hellwig {
251274ffa5a3SChristoph Hellwig 	int err;
251374ffa5a3SChristoph Hellwig 
251474ffa5a3SChristoph Hellwig 	err = track_pfn_remap(vma, &prot, pfn, addr, PAGE_ALIGN(size));
251574ffa5a3SChristoph Hellwig 	if (err)
251674ffa5a3SChristoph Hellwig 		return -EINVAL;
251774ffa5a3SChristoph Hellwig 
251874ffa5a3SChristoph Hellwig 	err = remap_pfn_range_notrack(vma, addr, pfn, size, prot);
251974ffa5a3SChristoph Hellwig 	if (err)
252068f48381SSuren Baghdasaryan 		untrack_pfn(vma, pfn, PAGE_ALIGN(size), true);
25211da177e4SLinus Torvalds 	return err;
25221da177e4SLinus Torvalds }
25231da177e4SLinus Torvalds EXPORT_SYMBOL(remap_pfn_range);
25241da177e4SLinus Torvalds 
2525b4cbb197SLinus Torvalds /**
2526b4cbb197SLinus Torvalds  * vm_iomap_memory - remap memory to userspace
2527b4cbb197SLinus Torvalds  * @vma: user vma to map to
2528abd69b9eSWang Wenhu  * @start: start of the physical memory to be mapped
2529b4cbb197SLinus Torvalds  * @len: size of area
2530b4cbb197SLinus Torvalds  *
2531b4cbb197SLinus Torvalds  * This is a simplified io_remap_pfn_range() for common driver use. The
2532b4cbb197SLinus Torvalds  * driver just needs to give us the physical memory range to be mapped,
2533b4cbb197SLinus Torvalds  * we'll figure out the rest from the vma information.
2534b4cbb197SLinus Torvalds  *
2535b4cbb197SLinus Torvalds  * NOTE! Some drivers might want to tweak vma->vm_page_prot first to get
2536b4cbb197SLinus Torvalds  * whatever write-combining details or similar.
2537a862f68aSMike Rapoport  *
2538a862f68aSMike Rapoport  * Return: %0 on success, negative error code otherwise.
2539b4cbb197SLinus Torvalds  */
2540b4cbb197SLinus Torvalds int vm_iomap_memory(struct vm_area_struct *vma, phys_addr_t start, unsigned long len)
2541b4cbb197SLinus Torvalds {
2542b4cbb197SLinus Torvalds 	unsigned long vm_len, pfn, pages;
2543b4cbb197SLinus Torvalds 
2544b4cbb197SLinus Torvalds 	/* Check that the physical memory area passed in looks valid */
2545b4cbb197SLinus Torvalds 	if (start + len < start)
2546b4cbb197SLinus Torvalds 		return -EINVAL;
2547b4cbb197SLinus Torvalds 	/*
2548b4cbb197SLinus Torvalds 	 * You *really* shouldn't map things that aren't page-aligned,
2549b4cbb197SLinus Torvalds 	 * but we've historically allowed it because IO memory might
2550b4cbb197SLinus Torvalds 	 * just have smaller alignment.
2551b4cbb197SLinus Torvalds 	 */
2552b4cbb197SLinus Torvalds 	len += start & ~PAGE_MASK;
2553b4cbb197SLinus Torvalds 	pfn = start >> PAGE_SHIFT;
2554b4cbb197SLinus Torvalds 	pages = (len + ~PAGE_MASK) >> PAGE_SHIFT;
2555b4cbb197SLinus Torvalds 	if (pfn + pages < pfn)
2556b4cbb197SLinus Torvalds 		return -EINVAL;
2557b4cbb197SLinus Torvalds 
2558b4cbb197SLinus Torvalds 	/* We start the mapping 'vm_pgoff' pages into the area */
2559b4cbb197SLinus Torvalds 	if (vma->vm_pgoff > pages)
2560b4cbb197SLinus Torvalds 		return -EINVAL;
2561b4cbb197SLinus Torvalds 	pfn += vma->vm_pgoff;
2562b4cbb197SLinus Torvalds 	pages -= vma->vm_pgoff;
2563b4cbb197SLinus Torvalds 
2564b4cbb197SLinus Torvalds 	/* Can we fit all of the mapping? */
2565b4cbb197SLinus Torvalds 	vm_len = vma->vm_end - vma->vm_start;
2566b4cbb197SLinus Torvalds 	if (vm_len >> PAGE_SHIFT > pages)
2567b4cbb197SLinus Torvalds 		return -EINVAL;
2568b4cbb197SLinus Torvalds 
2569b4cbb197SLinus Torvalds 	/* Ok, let it rip */
2570b4cbb197SLinus Torvalds 	return io_remap_pfn_range(vma, vma->vm_start, pfn, vm_len, vma->vm_page_prot);
2571b4cbb197SLinus Torvalds }
2572b4cbb197SLinus Torvalds EXPORT_SYMBOL(vm_iomap_memory);
2573b4cbb197SLinus Torvalds 
2574aee16b3cSJeremy Fitzhardinge static int apply_to_pte_range(struct mm_struct *mm, pmd_t *pmd,
2575aee16b3cSJeremy Fitzhardinge 				     unsigned long addr, unsigned long end,
2576e80d3909SJoerg Roedel 				     pte_fn_t fn, void *data, bool create,
2577e80d3909SJoerg Roedel 				     pgtbl_mod_mask *mask)
2578aee16b3cSJeremy Fitzhardinge {
25798abb50c7SMiaohe Lin 	pte_t *pte, *mapped_pte;
2580be1db475SDaniel Axtens 	int err = 0;
25813f649ab7SKees Cook 	spinlock_t *ptl;
2582aee16b3cSJeremy Fitzhardinge 
2583be1db475SDaniel Axtens 	if (create) {
25848abb50c7SMiaohe Lin 		mapped_pte = pte = (mm == &init_mm) ?
2585e80d3909SJoerg Roedel 			pte_alloc_kernel_track(pmd, addr, mask) :
2586aee16b3cSJeremy Fitzhardinge 			pte_alloc_map_lock(mm, pmd, addr, &ptl);
2587aee16b3cSJeremy Fitzhardinge 		if (!pte)
2588aee16b3cSJeremy Fitzhardinge 			return -ENOMEM;
2589be1db475SDaniel Axtens 	} else {
25908abb50c7SMiaohe Lin 		mapped_pte = pte = (mm == &init_mm) ?
2591be1db475SDaniel Axtens 			pte_offset_kernel(pmd, addr) :
2592be1db475SDaniel Axtens 			pte_offset_map_lock(mm, pmd, addr, &ptl);
25933db82b93SHugh Dickins 		if (!pte)
25943db82b93SHugh Dickins 			return -EINVAL;
2595be1db475SDaniel Axtens 	}
2596aee16b3cSJeremy Fitzhardinge 
259738e0edb1SJeremy Fitzhardinge 	arch_enter_lazy_mmu_mode();
259838e0edb1SJeremy Fitzhardinge 
2599eeb4a05fSChristoph Hellwig 	if (fn) {
2600aee16b3cSJeremy Fitzhardinge 		do {
2601c33c7948SRyan Roberts 			if (create || !pte_none(ptep_get(pte))) {
26028b1e0f81SAnshuman Khandual 				err = fn(pte++, addr, data);
2603aee16b3cSJeremy Fitzhardinge 				if (err)
2604aee16b3cSJeremy Fitzhardinge 					break;
2605be1db475SDaniel Axtens 			}
2606c36987e2SDaisuke Nishimura 		} while (addr += PAGE_SIZE, addr != end);
2607eeb4a05fSChristoph Hellwig 	}
2608e80d3909SJoerg Roedel 	*mask |= PGTBL_PTE_MODIFIED;
2609aee16b3cSJeremy Fitzhardinge 
261038e0edb1SJeremy Fitzhardinge 	arch_leave_lazy_mmu_mode();
261138e0edb1SJeremy Fitzhardinge 
2612aee16b3cSJeremy Fitzhardinge 	if (mm != &init_mm)
26138abb50c7SMiaohe Lin 		pte_unmap_unlock(mapped_pte, ptl);
2614aee16b3cSJeremy Fitzhardinge 	return err;
2615aee16b3cSJeremy Fitzhardinge }
2616aee16b3cSJeremy Fitzhardinge 
2617aee16b3cSJeremy Fitzhardinge static int apply_to_pmd_range(struct mm_struct *mm, pud_t *pud,
2618aee16b3cSJeremy Fitzhardinge 				     unsigned long addr, unsigned long end,
2619e80d3909SJoerg Roedel 				     pte_fn_t fn, void *data, bool create,
2620e80d3909SJoerg Roedel 				     pgtbl_mod_mask *mask)
2621aee16b3cSJeremy Fitzhardinge {
2622aee16b3cSJeremy Fitzhardinge 	pmd_t *pmd;
2623aee16b3cSJeremy Fitzhardinge 	unsigned long next;
2624be1db475SDaniel Axtens 	int err = 0;
2625aee16b3cSJeremy Fitzhardinge 
2626ceb86879SAndi Kleen 	BUG_ON(pud_huge(*pud));
2627ceb86879SAndi Kleen 
2628be1db475SDaniel Axtens 	if (create) {
2629e80d3909SJoerg Roedel 		pmd = pmd_alloc_track(mm, pud, addr, mask);
2630aee16b3cSJeremy Fitzhardinge 		if (!pmd)
2631aee16b3cSJeremy Fitzhardinge 			return -ENOMEM;
2632be1db475SDaniel Axtens 	} else {
2633be1db475SDaniel Axtens 		pmd = pmd_offset(pud, addr);
2634be1db475SDaniel Axtens 	}
2635aee16b3cSJeremy Fitzhardinge 	do {
2636aee16b3cSJeremy Fitzhardinge 		next = pmd_addr_end(addr, end);
26370c95cba4SNicholas Piggin 		if (pmd_none(*pmd) && !create)
26380c95cba4SNicholas Piggin 			continue;
26390c95cba4SNicholas Piggin 		if (WARN_ON_ONCE(pmd_leaf(*pmd)))
26400c95cba4SNicholas Piggin 			return -EINVAL;
26410c95cba4SNicholas Piggin 		if (!pmd_none(*pmd) && WARN_ON_ONCE(pmd_bad(*pmd))) {
26420c95cba4SNicholas Piggin 			if (!create)
26430c95cba4SNicholas Piggin 				continue;
26440c95cba4SNicholas Piggin 			pmd_clear_bad(pmd);
26450c95cba4SNicholas Piggin 		}
26460c95cba4SNicholas Piggin 		err = apply_to_pte_range(mm, pmd, addr, next,
26470c95cba4SNicholas Piggin 					 fn, data, create, mask);
2648aee16b3cSJeremy Fitzhardinge 		if (err)
2649aee16b3cSJeremy Fitzhardinge 			break;
2650aee16b3cSJeremy Fitzhardinge 	} while (pmd++, addr = next, addr != end);
26510c95cba4SNicholas Piggin 
2652aee16b3cSJeremy Fitzhardinge 	return err;
2653aee16b3cSJeremy Fitzhardinge }
2654aee16b3cSJeremy Fitzhardinge 
2655c2febafcSKirill A. Shutemov static int apply_to_pud_range(struct mm_struct *mm, p4d_t *p4d,
2656aee16b3cSJeremy Fitzhardinge 				     unsigned long addr, unsigned long end,
2657e80d3909SJoerg Roedel 				     pte_fn_t fn, void *data, bool create,
2658e80d3909SJoerg Roedel 				     pgtbl_mod_mask *mask)
2659aee16b3cSJeremy Fitzhardinge {
2660aee16b3cSJeremy Fitzhardinge 	pud_t *pud;
2661aee16b3cSJeremy Fitzhardinge 	unsigned long next;
2662be1db475SDaniel Axtens 	int err = 0;
2663aee16b3cSJeremy Fitzhardinge 
2664be1db475SDaniel Axtens 	if (create) {
2665e80d3909SJoerg Roedel 		pud = pud_alloc_track(mm, p4d, addr, mask);
2666aee16b3cSJeremy Fitzhardinge 		if (!pud)
2667aee16b3cSJeremy Fitzhardinge 			return -ENOMEM;
2668be1db475SDaniel Axtens 	} else {
2669be1db475SDaniel Axtens 		pud = pud_offset(p4d, addr);
2670be1db475SDaniel Axtens 	}
2671aee16b3cSJeremy Fitzhardinge 	do {
2672aee16b3cSJeremy Fitzhardinge 		next = pud_addr_end(addr, end);
26730c95cba4SNicholas Piggin 		if (pud_none(*pud) && !create)
26740c95cba4SNicholas Piggin 			continue;
26750c95cba4SNicholas Piggin 		if (WARN_ON_ONCE(pud_leaf(*pud)))
26760c95cba4SNicholas Piggin 			return -EINVAL;
26770c95cba4SNicholas Piggin 		if (!pud_none(*pud) && WARN_ON_ONCE(pud_bad(*pud))) {
26780c95cba4SNicholas Piggin 			if (!create)
26790c95cba4SNicholas Piggin 				continue;
26800c95cba4SNicholas Piggin 			pud_clear_bad(pud);
26810c95cba4SNicholas Piggin 		}
26820c95cba4SNicholas Piggin 		err = apply_to_pmd_range(mm, pud, addr, next,
26830c95cba4SNicholas Piggin 					 fn, data, create, mask);
2684aee16b3cSJeremy Fitzhardinge 		if (err)
2685aee16b3cSJeremy Fitzhardinge 			break;
2686aee16b3cSJeremy Fitzhardinge 	} while (pud++, addr = next, addr != end);
26870c95cba4SNicholas Piggin 
2688aee16b3cSJeremy Fitzhardinge 	return err;
2689aee16b3cSJeremy Fitzhardinge }
2690aee16b3cSJeremy Fitzhardinge 
2691c2febafcSKirill A. Shutemov static int apply_to_p4d_range(struct mm_struct *mm, pgd_t *pgd,
2692c2febafcSKirill A. Shutemov 				     unsigned long addr, unsigned long end,
2693e80d3909SJoerg Roedel 				     pte_fn_t fn, void *data, bool create,
2694e80d3909SJoerg Roedel 				     pgtbl_mod_mask *mask)
2695c2febafcSKirill A. Shutemov {
2696c2febafcSKirill A. Shutemov 	p4d_t *p4d;
2697c2febafcSKirill A. Shutemov 	unsigned long next;
2698be1db475SDaniel Axtens 	int err = 0;
2699c2febafcSKirill A. Shutemov 
2700be1db475SDaniel Axtens 	if (create) {
2701e80d3909SJoerg Roedel 		p4d = p4d_alloc_track(mm, pgd, addr, mask);
2702c2febafcSKirill A. Shutemov 		if (!p4d)
2703c2febafcSKirill A. Shutemov 			return -ENOMEM;
2704be1db475SDaniel Axtens 	} else {
2705be1db475SDaniel Axtens 		p4d = p4d_offset(pgd, addr);
2706be1db475SDaniel Axtens 	}
2707c2febafcSKirill A. Shutemov 	do {
2708c2febafcSKirill A. Shutemov 		next = p4d_addr_end(addr, end);
27090c95cba4SNicholas Piggin 		if (p4d_none(*p4d) && !create)
27100c95cba4SNicholas Piggin 			continue;
27110c95cba4SNicholas Piggin 		if (WARN_ON_ONCE(p4d_leaf(*p4d)))
27120c95cba4SNicholas Piggin 			return -EINVAL;
27130c95cba4SNicholas Piggin 		if (!p4d_none(*p4d) && WARN_ON_ONCE(p4d_bad(*p4d))) {
27140c95cba4SNicholas Piggin 			if (!create)
27150c95cba4SNicholas Piggin 				continue;
27160c95cba4SNicholas Piggin 			p4d_clear_bad(p4d);
27170c95cba4SNicholas Piggin 		}
27180c95cba4SNicholas Piggin 		err = apply_to_pud_range(mm, p4d, addr, next,
27190c95cba4SNicholas Piggin 					 fn, data, create, mask);
2720c2febafcSKirill A. Shutemov 		if (err)
2721c2febafcSKirill A. Shutemov 			break;
2722c2febafcSKirill A. Shutemov 	} while (p4d++, addr = next, addr != end);
27230c95cba4SNicholas Piggin 
2724c2febafcSKirill A. Shutemov 	return err;
2725c2febafcSKirill A. Shutemov }
2726c2febafcSKirill A. Shutemov 
2727be1db475SDaniel Axtens static int __apply_to_page_range(struct mm_struct *mm, unsigned long addr,
2728be1db475SDaniel Axtens 				 unsigned long size, pte_fn_t fn,
2729be1db475SDaniel Axtens 				 void *data, bool create)
2730be1db475SDaniel Axtens {
2731be1db475SDaniel Axtens 	pgd_t *pgd;
2732e80d3909SJoerg Roedel 	unsigned long start = addr, next;
2733be1db475SDaniel Axtens 	unsigned long end = addr + size;
2734e80d3909SJoerg Roedel 	pgtbl_mod_mask mask = 0;
2735be1db475SDaniel Axtens 	int err = 0;
2736be1db475SDaniel Axtens 
2737be1db475SDaniel Axtens 	if (WARN_ON(addr >= end))
2738be1db475SDaniel Axtens 		return -EINVAL;
2739be1db475SDaniel Axtens 
2740be1db475SDaniel Axtens 	pgd = pgd_offset(mm, addr);
2741be1db475SDaniel Axtens 	do {
2742be1db475SDaniel Axtens 		next = pgd_addr_end(addr, end);
27430c95cba4SNicholas Piggin 		if (pgd_none(*pgd) && !create)
2744be1db475SDaniel Axtens 			continue;
27450c95cba4SNicholas Piggin 		if (WARN_ON_ONCE(pgd_leaf(*pgd)))
27460c95cba4SNicholas Piggin 			return -EINVAL;
27470c95cba4SNicholas Piggin 		if (!pgd_none(*pgd) && WARN_ON_ONCE(pgd_bad(*pgd))) {
27480c95cba4SNicholas Piggin 			if (!create)
27490c95cba4SNicholas Piggin 				continue;
27500c95cba4SNicholas Piggin 			pgd_clear_bad(pgd);
27510c95cba4SNicholas Piggin 		}
27520c95cba4SNicholas Piggin 		err = apply_to_p4d_range(mm, pgd, addr, next,
27530c95cba4SNicholas Piggin 					 fn, data, create, &mask);
2754be1db475SDaniel Axtens 		if (err)
2755be1db475SDaniel Axtens 			break;
2756be1db475SDaniel Axtens 	} while (pgd++, addr = next, addr != end);
2757be1db475SDaniel Axtens 
2758e80d3909SJoerg Roedel 	if (mask & ARCH_PAGE_TABLE_SYNC_MASK)
2759e80d3909SJoerg Roedel 		arch_sync_kernel_mappings(start, start + size);
2760e80d3909SJoerg Roedel 
2761be1db475SDaniel Axtens 	return err;
2762be1db475SDaniel Axtens }
2763be1db475SDaniel Axtens 
2764aee16b3cSJeremy Fitzhardinge /*
2765aee16b3cSJeremy Fitzhardinge  * Scan a region of virtual memory, filling in page tables as necessary
2766aee16b3cSJeremy Fitzhardinge  * and calling a provided function on each leaf page table.
2767aee16b3cSJeremy Fitzhardinge  */
2768aee16b3cSJeremy Fitzhardinge int apply_to_page_range(struct mm_struct *mm, unsigned long addr,
2769aee16b3cSJeremy Fitzhardinge 			unsigned long size, pte_fn_t fn, void *data)
2770aee16b3cSJeremy Fitzhardinge {
2771be1db475SDaniel Axtens 	return __apply_to_page_range(mm, addr, size, fn, data, true);
2772aee16b3cSJeremy Fitzhardinge }
2773aee16b3cSJeremy Fitzhardinge EXPORT_SYMBOL_GPL(apply_to_page_range);
2774aee16b3cSJeremy Fitzhardinge 
27751da177e4SLinus Torvalds /*
2776be1db475SDaniel Axtens  * Scan a region of virtual memory, calling a provided function on
2777be1db475SDaniel Axtens  * each leaf page table where it exists.
2778be1db475SDaniel Axtens  *
2779be1db475SDaniel Axtens  * Unlike apply_to_page_range, this does _not_ fill in page tables
2780be1db475SDaniel Axtens  * where they are absent.
2781be1db475SDaniel Axtens  */
2782be1db475SDaniel Axtens int apply_to_existing_page_range(struct mm_struct *mm, unsigned long addr,
2783be1db475SDaniel Axtens 				 unsigned long size, pte_fn_t fn, void *data)
2784be1db475SDaniel Axtens {
2785be1db475SDaniel Axtens 	return __apply_to_page_range(mm, addr, size, fn, data, false);
2786be1db475SDaniel Axtens }
2787be1db475SDaniel Axtens EXPORT_SYMBOL_GPL(apply_to_existing_page_range);
2788be1db475SDaniel Axtens 
2789be1db475SDaniel Axtens /*
27909b4bdd2fSKirill A. Shutemov  * handle_pte_fault chooses page fault handler according to an entry which was
27919b4bdd2fSKirill A. Shutemov  * read non-atomically.  Before making any commitment, on those architectures
27929b4bdd2fSKirill A. Shutemov  * or configurations (e.g. i386 with PAE) which might give a mix of unmatched
27939b4bdd2fSKirill A. Shutemov  * parts, do_swap_page must check under lock before unmapping the pte and
27949b4bdd2fSKirill A. Shutemov  * proceeding (but do_wp_page is only called after already making such a check;
2795a335b2e1SRyota Ozaki  * and do_anonymous_page can safely check later on).
27968f4e2101SHugh Dickins  */
27972ca99358SPeter Xu static inline int pte_unmap_same(struct vm_fault *vmf)
27988f4e2101SHugh Dickins {
27998f4e2101SHugh Dickins 	int same = 1;
2800923717cbSThomas Gleixner #if defined(CONFIG_SMP) || defined(CONFIG_PREEMPTION)
28018f4e2101SHugh Dickins 	if (sizeof(pte_t) > sizeof(unsigned long)) {
2802c7ad0880SHugh Dickins 		spin_lock(vmf->ptl);
2803c33c7948SRyan Roberts 		same = pte_same(ptep_get(vmf->pte), vmf->orig_pte);
2804c7ad0880SHugh Dickins 		spin_unlock(vmf->ptl);
28058f4e2101SHugh Dickins 	}
28068f4e2101SHugh Dickins #endif
28072ca99358SPeter Xu 	pte_unmap(vmf->pte);
28082ca99358SPeter Xu 	vmf->pte = NULL;
28098f4e2101SHugh Dickins 	return same;
28108f4e2101SHugh Dickins }
28118f4e2101SHugh Dickins 
2812a873dfe1STony Luck /*
2813a873dfe1STony Luck  * Return:
2814a873dfe1STony Luck  *	0:		copied succeeded
2815a873dfe1STony Luck  *	-EHWPOISON:	copy failed due to hwpoison in source page
2816a873dfe1STony Luck  *	-EAGAIN:	copied failed (some other reason)
2817a873dfe1STony Luck  */
2818a873dfe1STony Luck static inline int __wp_page_copy_user(struct page *dst, struct page *src,
281983d116c5SJia He 				      struct vm_fault *vmf)
28206aab341eSLinus Torvalds {
2821a873dfe1STony Luck 	int ret;
282283d116c5SJia He 	void *kaddr;
282383d116c5SJia He 	void __user *uaddr;
282483d116c5SJia He 	struct vm_area_struct *vma = vmf->vma;
282583d116c5SJia He 	struct mm_struct *mm = vma->vm_mm;
282683d116c5SJia He 	unsigned long addr = vmf->address;
282783d116c5SJia He 
282883d116c5SJia He 	if (likely(src)) {
2829d302c239STony Luck 		if (copy_mc_user_highpage(dst, src, addr, vma)) {
2830d302c239STony Luck 			memory_failure_queue(page_to_pfn(src), 0);
2831a873dfe1STony Luck 			return -EHWPOISON;
2832d302c239STony Luck 		}
2833a873dfe1STony Luck 		return 0;
283483d116c5SJia He 	}
283583d116c5SJia He 
28366aab341eSLinus Torvalds 	/*
28376aab341eSLinus Torvalds 	 * If the source page was a PFN mapping, we don't have
28386aab341eSLinus Torvalds 	 * a "struct page" for it. We do a best-effort copy by
28396aab341eSLinus Torvalds 	 * just copying from the original user address. If that
28406aab341eSLinus Torvalds 	 * fails, we just zero-fill it. Live with it.
28416aab341eSLinus Torvalds 	 */
284283d116c5SJia He 	kaddr = kmap_atomic(dst);
284383d116c5SJia He 	uaddr = (void __user *)(addr & PAGE_MASK);
284483d116c5SJia He 
284583d116c5SJia He 	/*
284683d116c5SJia He 	 * On architectures with software "accessed" bits, we would
284783d116c5SJia He 	 * take a double page fault, so mark it accessed here.
284883d116c5SJia He 	 */
28493db82b93SHugh Dickins 	vmf->pte = NULL;
2850e1fd09e3SYu Zhao 	if (!arch_has_hw_pte_young() && !pte_young(vmf->orig_pte)) {
285183d116c5SJia He 		pte_t entry;
285283d116c5SJia He 
285383d116c5SJia He 		vmf->pte = pte_offset_map_lock(mm, vmf->pmd, addr, &vmf->ptl);
2854c33c7948SRyan Roberts 		if (unlikely(!vmf->pte || !pte_same(ptep_get(vmf->pte), vmf->orig_pte))) {
285583d116c5SJia He 			/*
285683d116c5SJia He 			 * Other thread has already handled the fault
28577df67697SBibo Mao 			 * and update local tlb only
285883d116c5SJia He 			 */
2859a92cbb82SHugh Dickins 			if (vmf->pte)
28607df67697SBibo Mao 				update_mmu_tlb(vma, addr, vmf->pte);
2861a873dfe1STony Luck 			ret = -EAGAIN;
286283d116c5SJia He 			goto pte_unlock;
286383d116c5SJia He 		}
286483d116c5SJia He 
286583d116c5SJia He 		entry = pte_mkyoung(vmf->orig_pte);
286683d116c5SJia He 		if (ptep_set_access_flags(vma, addr, vmf->pte, entry, 0))
286783d116c5SJia He 			update_mmu_cache(vma, addr, vmf->pte);
286883d116c5SJia He 	}
28695d2a2dbbSLinus Torvalds 
28705d2a2dbbSLinus Torvalds 	/*
28715d2a2dbbSLinus Torvalds 	 * This really shouldn't fail, because the page is there
28725d2a2dbbSLinus Torvalds 	 * in the page tables. But it might just be unreadable,
28735d2a2dbbSLinus Torvalds 	 * in which case we just give up and fill the result with
28745d2a2dbbSLinus Torvalds 	 * zeroes.
28755d2a2dbbSLinus Torvalds 	 */
287683d116c5SJia He 	if (__copy_from_user_inatomic(kaddr, uaddr, PAGE_SIZE)) {
28773db82b93SHugh Dickins 		if (vmf->pte)
2878c3e5ea6eSKirill A. Shutemov 			goto warn;
2879c3e5ea6eSKirill A. Shutemov 
2880c3e5ea6eSKirill A. Shutemov 		/* Re-validate under PTL if the page is still mapped */
2881c3e5ea6eSKirill A. Shutemov 		vmf->pte = pte_offset_map_lock(mm, vmf->pmd, addr, &vmf->ptl);
2882c33c7948SRyan Roberts 		if (unlikely(!vmf->pte || !pte_same(ptep_get(vmf->pte), vmf->orig_pte))) {
28837df67697SBibo Mao 			/* The PTE changed under us, update local tlb */
2884a92cbb82SHugh Dickins 			if (vmf->pte)
28857df67697SBibo Mao 				update_mmu_tlb(vma, addr, vmf->pte);
2886a873dfe1STony Luck 			ret = -EAGAIN;
2887c3e5ea6eSKirill A. Shutemov 			goto pte_unlock;
2888c3e5ea6eSKirill A. Shutemov 		}
2889c3e5ea6eSKirill A. Shutemov 
2890c3e5ea6eSKirill A. Shutemov 		/*
2891985ba004SEthon Paul 		 * The same page can be mapped back since last copy attempt.
2892c3e5ea6eSKirill A. Shutemov 		 * Try to copy again under PTL.
2893c3e5ea6eSKirill A. Shutemov 		 */
2894c3e5ea6eSKirill A. Shutemov 		if (__copy_from_user_inatomic(kaddr, uaddr, PAGE_SIZE)) {
289583d116c5SJia He 			/*
289683d116c5SJia He 			 * Give a warn in case there can be some obscure
289783d116c5SJia He 			 * use-case
289883d116c5SJia He 			 */
2899c3e5ea6eSKirill A. Shutemov warn:
290083d116c5SJia He 			WARN_ON_ONCE(1);
29013ecb01dfSJan Beulich 			clear_page(kaddr);
290283d116c5SJia He 		}
2903c3e5ea6eSKirill A. Shutemov 	}
290483d116c5SJia He 
2905a873dfe1STony Luck 	ret = 0;
290683d116c5SJia He 
290783d116c5SJia He pte_unlock:
29083db82b93SHugh Dickins 	if (vmf->pte)
290983d116c5SJia He 		pte_unmap_unlock(vmf->pte, vmf->ptl);
29109b04c5feSCong Wang 	kunmap_atomic(kaddr);
2911c4ec7b0dSDmitriy Monakhov 	flush_dcache_page(dst);
291283d116c5SJia He 
291383d116c5SJia He 	return ret;
29146aab341eSLinus Torvalds }
29156aab341eSLinus Torvalds 
2916c20cd45eSMichal Hocko static gfp_t __get_fault_gfp_mask(struct vm_area_struct *vma)
2917c20cd45eSMichal Hocko {
2918c20cd45eSMichal Hocko 	struct file *vm_file = vma->vm_file;
2919c20cd45eSMichal Hocko 
2920c20cd45eSMichal Hocko 	if (vm_file)
2921c20cd45eSMichal Hocko 		return mapping_gfp_mask(vm_file->f_mapping) | __GFP_FS | __GFP_IO;
2922c20cd45eSMichal Hocko 
2923c20cd45eSMichal Hocko 	/*
2924c20cd45eSMichal Hocko 	 * Special mappings (e.g. VDSO) do not have any file so fake
2925c20cd45eSMichal Hocko 	 * a default GFP_KERNEL for them.
2926c20cd45eSMichal Hocko 	 */
2927c20cd45eSMichal Hocko 	return GFP_KERNEL;
2928c20cd45eSMichal Hocko }
2929c20cd45eSMichal Hocko 
29301da177e4SLinus Torvalds /*
2931fb09a464SKirill A. Shutemov  * Notify the address space that the page is about to become writable so that
2932fb09a464SKirill A. Shutemov  * it can prohibit this or wait for the page to get into an appropriate state.
2933fb09a464SKirill A. Shutemov  *
2934fb09a464SKirill A. Shutemov  * We do this without the lock held, so that it can sleep if it needs to.
2935fb09a464SKirill A. Shutemov  */
293686aa6998SSidhartha Kumar static vm_fault_t do_page_mkwrite(struct vm_fault *vmf, struct folio *folio)
2937fb09a464SKirill A. Shutemov {
29382b740303SSouptick Joarder 	vm_fault_t ret;
293938b8cb7fSJan Kara 	unsigned int old_flags = vmf->flags;
2940fb09a464SKirill A. Shutemov 
294138b8cb7fSJan Kara 	vmf->flags = FAULT_FLAG_WRITE|FAULT_FLAG_MKWRITE;
2942fb09a464SKirill A. Shutemov 
2943dc617f29SDarrick J. Wong 	if (vmf->vma->vm_file &&
2944dc617f29SDarrick J. Wong 	    IS_SWAPFILE(vmf->vma->vm_file->f_mapping->host))
2945dc617f29SDarrick J. Wong 		return VM_FAULT_SIGBUS;
2946dc617f29SDarrick J. Wong 
294711bac800SDave Jiang 	ret = vmf->vma->vm_ops->page_mkwrite(vmf);
294838b8cb7fSJan Kara 	/* Restore original flags so that caller is not surprised */
294938b8cb7fSJan Kara 	vmf->flags = old_flags;
2950fb09a464SKirill A. Shutemov 	if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE)))
2951fb09a464SKirill A. Shutemov 		return ret;
2952fb09a464SKirill A. Shutemov 	if (unlikely(!(ret & VM_FAULT_LOCKED))) {
29533d243659SSidhartha Kumar 		folio_lock(folio);
29543d243659SSidhartha Kumar 		if (!folio->mapping) {
29553d243659SSidhartha Kumar 			folio_unlock(folio);
2956fb09a464SKirill A. Shutemov 			return 0; /* retry */
2957fb09a464SKirill A. Shutemov 		}
2958fb09a464SKirill A. Shutemov 		ret |= VM_FAULT_LOCKED;
2959fb09a464SKirill A. Shutemov 	} else
29603d243659SSidhartha Kumar 		VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
2961fb09a464SKirill A. Shutemov 	return ret;
2962fb09a464SKirill A. Shutemov }
2963fb09a464SKirill A. Shutemov 
2964fb09a464SKirill A. Shutemov /*
296597ba0c2bSJan Kara  * Handle dirtying of a page in shared file mapping on a write fault.
29664e047f89SShachar Raindel  *
296797ba0c2bSJan Kara  * The function expects the page to be locked and unlocks it.
29684e047f89SShachar Raindel  */
296989b15332SJohannes Weiner static vm_fault_t fault_dirty_shared_page(struct vm_fault *vmf)
29704e047f89SShachar Raindel {
297189b15332SJohannes Weiner 	struct vm_area_struct *vma = vmf->vma;
29724e047f89SShachar Raindel 	struct address_space *mapping;
297315b4919aSZhangPeng 	struct folio *folio = page_folio(vmf->page);
297497ba0c2bSJan Kara 	bool dirtied;
297597ba0c2bSJan Kara 	bool page_mkwrite = vma->vm_ops && vma->vm_ops->page_mkwrite;
29764e047f89SShachar Raindel 
297715b4919aSZhangPeng 	dirtied = folio_mark_dirty(folio);
297815b4919aSZhangPeng 	VM_BUG_ON_FOLIO(folio_test_anon(folio), folio);
297997ba0c2bSJan Kara 	/*
298015b4919aSZhangPeng 	 * Take a local copy of the address_space - folio.mapping may be zeroed
298115b4919aSZhangPeng 	 * by truncate after folio_unlock().   The address_space itself remains
298215b4919aSZhangPeng 	 * pinned by vma->vm_file's reference.  We rely on folio_unlock()'s
298397ba0c2bSJan Kara 	 * release semantics to prevent the compiler from undoing this copying.
298497ba0c2bSJan Kara 	 */
298515b4919aSZhangPeng 	mapping = folio_raw_mapping(folio);
298615b4919aSZhangPeng 	folio_unlock(folio);
29874e047f89SShachar Raindel 
29884e047f89SShachar Raindel 	if (!page_mkwrite)
29894e047f89SShachar Raindel 		file_update_time(vma->vm_file);
299089b15332SJohannes Weiner 
299189b15332SJohannes Weiner 	/*
299289b15332SJohannes Weiner 	 * Throttle page dirtying rate down to writeback speed.
299389b15332SJohannes Weiner 	 *
299489b15332SJohannes Weiner 	 * mapping may be NULL here because some device drivers do not
299589b15332SJohannes Weiner 	 * set page.mapping but still dirty their pages
299689b15332SJohannes Weiner 	 *
2997c1e8d7c6SMichel Lespinasse 	 * Drop the mmap_lock before waiting on IO, if we can. The file
299889b15332SJohannes Weiner 	 * is pinning the mapping, as per above.
299989b15332SJohannes Weiner 	 */
300089b15332SJohannes Weiner 	if ((dirtied || page_mkwrite) && mapping) {
300189b15332SJohannes Weiner 		struct file *fpin;
300289b15332SJohannes Weiner 
300389b15332SJohannes Weiner 		fpin = maybe_unlock_mmap_for_io(vmf, NULL);
300489b15332SJohannes Weiner 		balance_dirty_pages_ratelimited(mapping);
300589b15332SJohannes Weiner 		if (fpin) {
300689b15332SJohannes Weiner 			fput(fpin);
3007d9272525SPeter Xu 			return VM_FAULT_COMPLETED;
300889b15332SJohannes Weiner 		}
300989b15332SJohannes Weiner 	}
301089b15332SJohannes Weiner 
301189b15332SJohannes Weiner 	return 0;
30124e047f89SShachar Raindel }
30134e047f89SShachar Raindel 
301497ba0c2bSJan Kara /*
30154e047f89SShachar Raindel  * Handle write page faults for pages that can be reused in the current vma
30164e047f89SShachar Raindel  *
30174e047f89SShachar Raindel  * This can happen either due to the mapping being with the VM_SHARED flag,
30184e047f89SShachar Raindel  * or due to us being the last reference standing to the page. In either
30194e047f89SShachar Raindel  * case, all we need to do here is to mark the page as writable and update
30204e047f89SShachar Raindel  * any related book-keeping.
30214e047f89SShachar Raindel  */
3022997dd98dSJan Kara static inline void wp_page_reuse(struct vm_fault *vmf)
302382b0f8c3SJan Kara 	__releases(vmf->ptl)
30244e047f89SShachar Raindel {
302582b0f8c3SJan Kara 	struct vm_area_struct *vma = vmf->vma;
3026a41b70d6SJan Kara 	struct page *page = vmf->page;
30274e047f89SShachar Raindel 	pte_t entry;
30286c287605SDavid Hildenbrand 
3029c89357e2SDavid Hildenbrand 	VM_BUG_ON(!(vmf->flags & FAULT_FLAG_WRITE));
3030cdb281e6SQi Zheng 	VM_BUG_ON(page && PageAnon(page) && !PageAnonExclusive(page));
30316c287605SDavid Hildenbrand 
30324e047f89SShachar Raindel 	/*
30334e047f89SShachar Raindel 	 * Clear the pages cpupid information as the existing
30344e047f89SShachar Raindel 	 * information potentially belongs to a now completely
30354e047f89SShachar Raindel 	 * unrelated process.
30364e047f89SShachar Raindel 	 */
30374e047f89SShachar Raindel 	if (page)
30384e047f89SShachar Raindel 		page_cpupid_xchg_last(page, (1 << LAST_CPUPID_SHIFT) - 1);
30394e047f89SShachar Raindel 
30402994302bSJan Kara 	flush_cache_page(vma, vmf->address, pte_pfn(vmf->orig_pte));
30412994302bSJan Kara 	entry = pte_mkyoung(vmf->orig_pte);
30424e047f89SShachar Raindel 	entry = maybe_mkwrite(pte_mkdirty(entry), vma);
304382b0f8c3SJan Kara 	if (ptep_set_access_flags(vma, vmf->address, vmf->pte, entry, 1))
304482b0f8c3SJan Kara 		update_mmu_cache(vma, vmf->address, vmf->pte);
304582b0f8c3SJan Kara 	pte_unmap_unlock(vmf->pte, vmf->ptl);
3046798a6b87SPeter Xu 	count_vm_event(PGREUSE);
30474e047f89SShachar Raindel }
30484e047f89SShachar Raindel 
30494e047f89SShachar Raindel /*
3050c89357e2SDavid Hildenbrand  * Handle the case of a page which we actually need to copy to a new page,
3051c89357e2SDavid Hildenbrand  * either due to COW or unsharing.
30522f38ab2cSShachar Raindel  *
3053c1e8d7c6SMichel Lespinasse  * Called with mmap_lock locked and the old page referenced, but
30542f38ab2cSShachar Raindel  * without the ptl held.
30552f38ab2cSShachar Raindel  *
30562f38ab2cSShachar Raindel  * High level logic flow:
30572f38ab2cSShachar Raindel  *
30582f38ab2cSShachar Raindel  * - Allocate a page, copy the content of the old page to the new one.
30592f38ab2cSShachar Raindel  * - Handle book keeping and accounting - cgroups, mmu-notifiers, etc.
30602f38ab2cSShachar Raindel  * - Take the PTL. If the pte changed, bail out and release the allocated page
30612f38ab2cSShachar Raindel  * - If the pte is still the way we remember it, update the page table and all
30622f38ab2cSShachar Raindel  *   relevant references. This includes dropping the reference the page-table
30632f38ab2cSShachar Raindel  *   held to the old page, as well as updating the rmap.
30642f38ab2cSShachar Raindel  * - In any case, unlock the PTL and drop the reference we took to the old page.
30652f38ab2cSShachar Raindel  */
30662b740303SSouptick Joarder static vm_fault_t wp_page_copy(struct vm_fault *vmf)
30672f38ab2cSShachar Raindel {
3068c89357e2SDavid Hildenbrand 	const bool unshare = vmf->flags & FAULT_FLAG_UNSHARE;
306982b0f8c3SJan Kara 	struct vm_area_struct *vma = vmf->vma;
3070bae473a4SKirill A. Shutemov 	struct mm_struct *mm = vma->vm_mm;
307128d41a48SMatthew Wilcox (Oracle) 	struct folio *old_folio = NULL;
307228d41a48SMatthew Wilcox (Oracle) 	struct folio *new_folio = NULL;
30732f38ab2cSShachar Raindel 	pte_t entry;
30742f38ab2cSShachar Raindel 	int page_copied = 0;
3075ac46d4f3SJérôme Glisse 	struct mmu_notifier_range range;
3076a873dfe1STony Luck 	int ret;
30772f38ab2cSShachar Raindel 
3078662ce1dcSYang Yang 	delayacct_wpcopy_start();
3079662ce1dcSYang Yang 
308028d41a48SMatthew Wilcox (Oracle) 	if (vmf->page)
308128d41a48SMatthew Wilcox (Oracle) 		old_folio = page_folio(vmf->page);
30822f38ab2cSShachar Raindel 	if (unlikely(anon_vma_prepare(vma)))
30832f38ab2cSShachar Raindel 		goto oom;
30842f38ab2cSShachar Raindel 
30852994302bSJan Kara 	if (is_zero_pfn(pte_pfn(vmf->orig_pte))) {
30866bc56a4dSMatthew Wilcox (Oracle) 		new_folio = vma_alloc_zeroed_movable_folio(vma, vmf->address);
30876bc56a4dSMatthew Wilcox (Oracle) 		if (!new_folio)
30882f38ab2cSShachar Raindel 			goto oom;
30892f38ab2cSShachar Raindel 	} else {
309028d41a48SMatthew Wilcox (Oracle) 		new_folio = vma_alloc_folio(GFP_HIGHUSER_MOVABLE, 0, vma,
309128d41a48SMatthew Wilcox (Oracle) 				vmf->address, false);
309228d41a48SMatthew Wilcox (Oracle) 		if (!new_folio)
30932f38ab2cSShachar Raindel 			goto oom;
309483d116c5SJia He 
309528d41a48SMatthew Wilcox (Oracle) 		ret = __wp_page_copy_user(&new_folio->page, vmf->page, vmf);
3096a873dfe1STony Luck 		if (ret) {
309783d116c5SJia He 			/*
309883d116c5SJia He 			 * COW failed, if the fault was solved by other,
309983d116c5SJia He 			 * it's fine. If not, userspace would re-fault on
310083d116c5SJia He 			 * the same address and we will handle the fault
310183d116c5SJia He 			 * from the second attempt.
3102a873dfe1STony Luck 			 * The -EHWPOISON case will not be retried.
310383d116c5SJia He 			 */
310428d41a48SMatthew Wilcox (Oracle) 			folio_put(new_folio);
310528d41a48SMatthew Wilcox (Oracle) 			if (old_folio)
310628d41a48SMatthew Wilcox (Oracle) 				folio_put(old_folio);
3107662ce1dcSYang Yang 
3108662ce1dcSYang Yang 			delayacct_wpcopy_end();
3109a873dfe1STony Luck 			return ret == -EHWPOISON ? VM_FAULT_HWPOISON : 0;
311083d116c5SJia He 		}
311128d41a48SMatthew Wilcox (Oracle) 		kmsan_copy_page_meta(&new_folio->page, vmf->page);
31122f38ab2cSShachar Raindel 	}
31132f38ab2cSShachar Raindel 
311428d41a48SMatthew Wilcox (Oracle) 	if (mem_cgroup_charge(new_folio, mm, GFP_KERNEL))
31152f38ab2cSShachar Raindel 		goto oom_free_new;
31164d4f75bfSKefeng Wang 	folio_throttle_swaprate(new_folio, GFP_KERNEL);
31172f38ab2cSShachar Raindel 
311828d41a48SMatthew Wilcox (Oracle) 	__folio_mark_uptodate(new_folio);
3119eb3c24f3SMel Gorman 
31207d4a8be0SAlistair Popple 	mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, mm,
31216f4f13e8SJérôme Glisse 				vmf->address & PAGE_MASK,
3122ac46d4f3SJérôme Glisse 				(vmf->address & PAGE_MASK) + PAGE_SIZE);
3123ac46d4f3SJérôme Glisse 	mmu_notifier_invalidate_range_start(&range);
31242f38ab2cSShachar Raindel 
31252f38ab2cSShachar Raindel 	/*
31262f38ab2cSShachar Raindel 	 * Re-check the pte - we dropped the lock
31272f38ab2cSShachar Raindel 	 */
312882b0f8c3SJan Kara 	vmf->pte = pte_offset_map_lock(mm, vmf->pmd, vmf->address, &vmf->ptl);
3129c33c7948SRyan Roberts 	if (likely(vmf->pte && pte_same(ptep_get(vmf->pte), vmf->orig_pte))) {
313028d41a48SMatthew Wilcox (Oracle) 		if (old_folio) {
313128d41a48SMatthew Wilcox (Oracle) 			if (!folio_test_anon(old_folio)) {
313228d41a48SMatthew Wilcox (Oracle) 				dec_mm_counter(mm, mm_counter_file(&old_folio->page));
3133f1a79412SShakeel Butt 				inc_mm_counter(mm, MM_ANONPAGES);
31342f38ab2cSShachar Raindel 			}
31352f38ab2cSShachar Raindel 		} else {
31366080d19fSxu xin 			ksm_might_unmap_zero_page(mm, vmf->orig_pte);
3137f1a79412SShakeel Butt 			inc_mm_counter(mm, MM_ANONPAGES);
31382f38ab2cSShachar Raindel 		}
31392994302bSJan Kara 		flush_cache_page(vma, vmf->address, pte_pfn(vmf->orig_pte));
314028d41a48SMatthew Wilcox (Oracle) 		entry = mk_pte(&new_folio->page, vma->vm_page_prot);
314150c25ee9SThomas Bogendoerfer 		entry = pte_sw_mkyoung(entry);
3142c89357e2SDavid Hildenbrand 		if (unlikely(unshare)) {
3143c89357e2SDavid Hildenbrand 			if (pte_soft_dirty(vmf->orig_pte))
3144c89357e2SDavid Hildenbrand 				entry = pte_mksoft_dirty(entry);
3145c89357e2SDavid Hildenbrand 			if (pte_uffd_wp(vmf->orig_pte))
3146c89357e2SDavid Hildenbrand 				entry = pte_mkuffd_wp(entry);
3147c89357e2SDavid Hildenbrand 		} else {
31482f38ab2cSShachar Raindel 			entry = maybe_mkwrite(pte_mkdirty(entry), vma);
3149c89357e2SDavid Hildenbrand 		}
3150111fe718SNicholas Piggin 
31512f38ab2cSShachar Raindel 		/*
31522f38ab2cSShachar Raindel 		 * Clear the pte entry and flush it first, before updating the
3153111fe718SNicholas Piggin 		 * pte with the new entry, to keep TLBs on different CPUs in
3154111fe718SNicholas Piggin 		 * sync. This code used to set the new PTE then flush TLBs, but
3155111fe718SNicholas Piggin 		 * that left a window where the new PTE could be loaded into
3156111fe718SNicholas Piggin 		 * some TLBs while the old PTE remains in others.
31572f38ab2cSShachar Raindel 		 */
3158*ec8832d0SAlistair Popple 		ptep_clear_flush(vma, vmf->address, vmf->pte);
315928d41a48SMatthew Wilcox (Oracle) 		folio_add_new_anon_rmap(new_folio, vma, vmf->address);
316028d41a48SMatthew Wilcox (Oracle) 		folio_add_lru_vma(new_folio, vma);
31612f38ab2cSShachar Raindel 		/*
31622f38ab2cSShachar Raindel 		 * We call the notify macro here because, when using secondary
31632f38ab2cSShachar Raindel 		 * mmu page tables (such as kvm shadow page tables), we want the
31642f38ab2cSShachar Raindel 		 * new page to be mapped directly into the secondary page table.
31652f38ab2cSShachar Raindel 		 */
3166c89357e2SDavid Hildenbrand 		BUG_ON(unshare && pte_write(entry));
316782b0f8c3SJan Kara 		set_pte_at_notify(mm, vmf->address, vmf->pte, entry);
316882b0f8c3SJan Kara 		update_mmu_cache(vma, vmf->address, vmf->pte);
316928d41a48SMatthew Wilcox (Oracle) 		if (old_folio) {
31702f38ab2cSShachar Raindel 			/*
31712f38ab2cSShachar Raindel 			 * Only after switching the pte to the new page may
31722f38ab2cSShachar Raindel 			 * we remove the mapcount here. Otherwise another
31732f38ab2cSShachar Raindel 			 * process may come and find the rmap count decremented
31742f38ab2cSShachar Raindel 			 * before the pte is switched to the new page, and
31752f38ab2cSShachar Raindel 			 * "reuse" the old page writing into it while our pte
31762f38ab2cSShachar Raindel 			 * here still points into it and can be read by other
31772f38ab2cSShachar Raindel 			 * threads.
31782f38ab2cSShachar Raindel 			 *
31792f38ab2cSShachar Raindel 			 * The critical issue is to order this
31802f38ab2cSShachar Raindel 			 * page_remove_rmap with the ptp_clear_flush above.
31812f38ab2cSShachar Raindel 			 * Those stores are ordered by (if nothing else,)
31822f38ab2cSShachar Raindel 			 * the barrier present in the atomic_add_negative
31832f38ab2cSShachar Raindel 			 * in page_remove_rmap.
31842f38ab2cSShachar Raindel 			 *
31852f38ab2cSShachar Raindel 			 * Then the TLB flush in ptep_clear_flush ensures that
31862f38ab2cSShachar Raindel 			 * no process can access the old page before the
31872f38ab2cSShachar Raindel 			 * decremented mapcount is visible. And the old page
31882f38ab2cSShachar Raindel 			 * cannot be reused until after the decremented
31892f38ab2cSShachar Raindel 			 * mapcount is visible. So transitively, TLBs to
31902f38ab2cSShachar Raindel 			 * old page will be flushed before it can be reused.
31912f38ab2cSShachar Raindel 			 */
319228d41a48SMatthew Wilcox (Oracle) 			page_remove_rmap(vmf->page, vma, false);
31932f38ab2cSShachar Raindel 		}
31942f38ab2cSShachar Raindel 
31952f38ab2cSShachar Raindel 		/* Free the old page.. */
319628d41a48SMatthew Wilcox (Oracle) 		new_folio = old_folio;
31972f38ab2cSShachar Raindel 		page_copied = 1;
31983db82b93SHugh Dickins 		pte_unmap_unlock(vmf->pte, vmf->ptl);
31993db82b93SHugh Dickins 	} else if (vmf->pte) {
32007df67697SBibo Mao 		update_mmu_tlb(vma, vmf->address, vmf->pte);
32013db82b93SHugh Dickins 		pte_unmap_unlock(vmf->pte, vmf->ptl);
32022f38ab2cSShachar Raindel 	}
32032f38ab2cSShachar Raindel 
3204*ec8832d0SAlistair Popple 	mmu_notifier_invalidate_range_end(&range);
32053db82b93SHugh Dickins 
32063db82b93SHugh Dickins 	if (new_folio)
32073db82b93SHugh Dickins 		folio_put(new_folio);
320828d41a48SMatthew Wilcox (Oracle) 	if (old_folio) {
3209f4c4a3f4SHuang Ying 		if (page_copied)
321028d41a48SMatthew Wilcox (Oracle) 			free_swap_cache(&old_folio->page);
321128d41a48SMatthew Wilcox (Oracle) 		folio_put(old_folio);
32122f38ab2cSShachar Raindel 	}
3213662ce1dcSYang Yang 
3214662ce1dcSYang Yang 	delayacct_wpcopy_end();
3215cb8d8633SDavid Hildenbrand 	return 0;
32162f38ab2cSShachar Raindel oom_free_new:
321728d41a48SMatthew Wilcox (Oracle) 	folio_put(new_folio);
32182f38ab2cSShachar Raindel oom:
321928d41a48SMatthew Wilcox (Oracle) 	if (old_folio)
322028d41a48SMatthew Wilcox (Oracle) 		folio_put(old_folio);
3221662ce1dcSYang Yang 
3222662ce1dcSYang Yang 	delayacct_wpcopy_end();
32232f38ab2cSShachar Raindel 	return VM_FAULT_OOM;
32242f38ab2cSShachar Raindel }
32252f38ab2cSShachar Raindel 
322666a6197cSJan Kara /**
322766a6197cSJan Kara  * finish_mkwrite_fault - finish page fault for a shared mapping, making PTE
322866a6197cSJan Kara  *			  writeable once the page is prepared
322966a6197cSJan Kara  *
323066a6197cSJan Kara  * @vmf: structure describing the fault
323166a6197cSJan Kara  *
323266a6197cSJan Kara  * This function handles all that is needed to finish a write page fault in a
323366a6197cSJan Kara  * shared mapping due to PTE being read-only once the mapped page is prepared.
3234a862f68aSMike Rapoport  * It handles locking of PTE and modifying it.
323566a6197cSJan Kara  *
323666a6197cSJan Kara  * The function expects the page to be locked or other protection against
323766a6197cSJan Kara  * concurrent faults / writeback (such as DAX radix tree locks).
3238a862f68aSMike Rapoport  *
32392797e79fSLiu Xiang  * Return: %0 on success, %VM_FAULT_NOPAGE when PTE got changed before
3240a862f68aSMike Rapoport  * we acquired PTE lock.
324166a6197cSJan Kara  */
32422b740303SSouptick Joarder vm_fault_t finish_mkwrite_fault(struct vm_fault *vmf)
324366a6197cSJan Kara {
324466a6197cSJan Kara 	WARN_ON_ONCE(!(vmf->vma->vm_flags & VM_SHARED));
324566a6197cSJan Kara 	vmf->pte = pte_offset_map_lock(vmf->vma->vm_mm, vmf->pmd, vmf->address,
324666a6197cSJan Kara 				       &vmf->ptl);
32473db82b93SHugh Dickins 	if (!vmf->pte)
32483db82b93SHugh Dickins 		return VM_FAULT_NOPAGE;
324966a6197cSJan Kara 	/*
325066a6197cSJan Kara 	 * We might have raced with another page fault while we released the
325166a6197cSJan Kara 	 * pte_offset_map_lock.
325266a6197cSJan Kara 	 */
3253c33c7948SRyan Roberts 	if (!pte_same(ptep_get(vmf->pte), vmf->orig_pte)) {
32547df67697SBibo Mao 		update_mmu_tlb(vmf->vma, vmf->address, vmf->pte);
325566a6197cSJan Kara 		pte_unmap_unlock(vmf->pte, vmf->ptl);
3256a19e2553SJan Kara 		return VM_FAULT_NOPAGE;
325766a6197cSJan Kara 	}
325866a6197cSJan Kara 	wp_page_reuse(vmf);
3259a19e2553SJan Kara 	return 0;
326066a6197cSJan Kara }
326166a6197cSJan Kara 
3262dd906184SBoaz Harrosh /*
3263dd906184SBoaz Harrosh  * Handle write page faults for VM_MIXEDMAP or VM_PFNMAP for a VM_SHARED
3264dd906184SBoaz Harrosh  * mapping
3265dd906184SBoaz Harrosh  */
32662b740303SSouptick Joarder static vm_fault_t wp_pfn_shared(struct vm_fault *vmf)
3267dd906184SBoaz Harrosh {
326882b0f8c3SJan Kara 	struct vm_area_struct *vma = vmf->vma;
3269bae473a4SKirill A. Shutemov 
3270dd906184SBoaz Harrosh 	if (vma->vm_ops && vma->vm_ops->pfn_mkwrite) {
32712b740303SSouptick Joarder 		vm_fault_t ret;
3272dd906184SBoaz Harrosh 
327382b0f8c3SJan Kara 		pte_unmap_unlock(vmf->pte, vmf->ptl);
3274fe82221fSJan Kara 		vmf->flags |= FAULT_FLAG_MKWRITE;
327511bac800SDave Jiang 		ret = vma->vm_ops->pfn_mkwrite(vmf);
32762f89dc12SJan Kara 		if (ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE))
3277dd906184SBoaz Harrosh 			return ret;
327866a6197cSJan Kara 		return finish_mkwrite_fault(vmf);
3279dd906184SBoaz Harrosh 	}
3280997dd98dSJan Kara 	wp_page_reuse(vmf);
3281cb8d8633SDavid Hildenbrand 	return 0;
3282dd906184SBoaz Harrosh }
3283dd906184SBoaz Harrosh 
32845a97858bSSidhartha Kumar static vm_fault_t wp_page_shared(struct vm_fault *vmf, struct folio *folio)
328582b0f8c3SJan Kara 	__releases(vmf->ptl)
328693e478d4SShachar Raindel {
328782b0f8c3SJan Kara 	struct vm_area_struct *vma = vmf->vma;
3288cb8d8633SDavid Hildenbrand 	vm_fault_t ret = 0;
328993e478d4SShachar Raindel 
32905a97858bSSidhartha Kumar 	folio_get(folio);
329193e478d4SShachar Raindel 
329293e478d4SShachar Raindel 	if (vma->vm_ops && vma->vm_ops->page_mkwrite) {
32932b740303SSouptick Joarder 		vm_fault_t tmp;
329493e478d4SShachar Raindel 
329582b0f8c3SJan Kara 		pte_unmap_unlock(vmf->pte, vmf->ptl);
329686aa6998SSidhartha Kumar 		tmp = do_page_mkwrite(vmf, folio);
329793e478d4SShachar Raindel 		if (unlikely(!tmp || (tmp &
329893e478d4SShachar Raindel 				      (VM_FAULT_ERROR | VM_FAULT_NOPAGE)))) {
32995a97858bSSidhartha Kumar 			folio_put(folio);
330093e478d4SShachar Raindel 			return tmp;
330193e478d4SShachar Raindel 		}
330266a6197cSJan Kara 		tmp = finish_mkwrite_fault(vmf);
3303a19e2553SJan Kara 		if (unlikely(tmp & (VM_FAULT_ERROR | VM_FAULT_NOPAGE))) {
33045a97858bSSidhartha Kumar 			folio_unlock(folio);
33055a97858bSSidhartha Kumar 			folio_put(folio);
330666a6197cSJan Kara 			return tmp;
330793e478d4SShachar Raindel 		}
330866a6197cSJan Kara 	} else {
3309997dd98dSJan Kara 		wp_page_reuse(vmf);
33105a97858bSSidhartha Kumar 		folio_lock(folio);
331193e478d4SShachar Raindel 	}
331289b15332SJohannes Weiner 	ret |= fault_dirty_shared_page(vmf);
33135a97858bSSidhartha Kumar 	folio_put(folio);
331493e478d4SShachar Raindel 
331589b15332SJohannes Weiner 	return ret;
331693e478d4SShachar Raindel }
331793e478d4SShachar Raindel 
33182f38ab2cSShachar Raindel /*
3319c89357e2SDavid Hildenbrand  * This routine handles present pages, when
3320c89357e2SDavid Hildenbrand  * * users try to write to a shared page (FAULT_FLAG_WRITE)
3321c89357e2SDavid Hildenbrand  * * GUP wants to take a R/O pin on a possibly shared anonymous page
3322c89357e2SDavid Hildenbrand  *   (FAULT_FLAG_UNSHARE)
3323c89357e2SDavid Hildenbrand  *
3324c89357e2SDavid Hildenbrand  * It is done by copying the page to a new address and decrementing the
3325c89357e2SDavid Hildenbrand  * shared-page counter for the old page.
33261da177e4SLinus Torvalds  *
33271da177e4SLinus Torvalds  * Note that this routine assumes that the protection checks have been
33281da177e4SLinus Torvalds  * done by the caller (the low-level page fault routine in most cases).
3329c89357e2SDavid Hildenbrand  * Thus, with FAULT_FLAG_WRITE, we can safely just mark it writable once we've
3330c89357e2SDavid Hildenbrand  * done any necessary COW.
33311da177e4SLinus Torvalds  *
3332c89357e2SDavid Hildenbrand  * In case of FAULT_FLAG_WRITE, we also mark the page dirty at this point even
3333c89357e2SDavid Hildenbrand  * though the page will change only once the write actually happens. This
3334c89357e2SDavid Hildenbrand  * avoids a few races, and potentially makes it more efficient.
33351da177e4SLinus Torvalds  *
3336c1e8d7c6SMichel Lespinasse  * We enter with non-exclusive mmap_lock (to exclude vma changes,
33378f4e2101SHugh Dickins  * but allow concurrent faults), with pte both mapped and locked.
3338c1e8d7c6SMichel Lespinasse  * We return with mmap_lock still held, but pte unmapped and unlocked.
33391da177e4SLinus Torvalds  */
33402b740303SSouptick Joarder static vm_fault_t do_wp_page(struct vm_fault *vmf)
334182b0f8c3SJan Kara 	__releases(vmf->ptl)
33421da177e4SLinus Torvalds {
3343c89357e2SDavid Hildenbrand 	const bool unshare = vmf->flags & FAULT_FLAG_UNSHARE;
334482b0f8c3SJan Kara 	struct vm_area_struct *vma = vmf->vma;
3345b9086fdeSDavid Hildenbrand 	struct folio *folio = NULL;
33461da177e4SLinus Torvalds 
3347c89357e2SDavid Hildenbrand 	if (likely(!unshare)) {
3348c33c7948SRyan Roberts 		if (userfaultfd_pte_wp(vma, ptep_get(vmf->pte))) {
3349529b930bSAndrea Arcangeli 			pte_unmap_unlock(vmf->pte, vmf->ptl);
3350529b930bSAndrea Arcangeli 			return handle_userfault(vmf, VM_UFFD_WP);
3351529b930bSAndrea Arcangeli 		}
3352529b930bSAndrea Arcangeli 
33536ce64428SNadav Amit 		/*
33546ce64428SNadav Amit 		 * Userfaultfd write-protect can defer flushes. Ensure the TLB
33556ce64428SNadav Amit 		 * is flushed in this case before copying.
33566ce64428SNadav Amit 		 */
33576ce64428SNadav Amit 		if (unlikely(userfaultfd_wp(vmf->vma) &&
33586ce64428SNadav Amit 			     mm_tlb_flush_pending(vmf->vma->vm_mm)))
33596ce64428SNadav Amit 			flush_tlb_page(vmf->vma, vmf->address);
3360c89357e2SDavid Hildenbrand 	}
33616ce64428SNadav Amit 
3362a41b70d6SJan Kara 	vmf->page = vm_normal_page(vma, vmf->address, vmf->orig_pte);
3363c89357e2SDavid Hildenbrand 
33645a97858bSSidhartha Kumar 	if (vmf->page)
33655a97858bSSidhartha Kumar 		folio = page_folio(vmf->page);
33665a97858bSSidhartha Kumar 
3367251b97f5SPeter Zijlstra 	/*
3368b9086fdeSDavid Hildenbrand 	 * Shared mapping: we are guaranteed to have VM_WRITE and
3369b9086fdeSDavid Hildenbrand 	 * FAULT_FLAG_WRITE set at this point.
3370b9086fdeSDavid Hildenbrand 	 */
3371b9086fdeSDavid Hildenbrand 	if (vma->vm_flags & (VM_SHARED | VM_MAYSHARE)) {
3372b9086fdeSDavid Hildenbrand 		/*
337364e45507SPeter Feiner 		 * VM_MIXEDMAP !pfn_valid() case, or VM_SOFTDIRTY clear on a
337464e45507SPeter Feiner 		 * VM_PFNMAP VMA.
3375251b97f5SPeter Zijlstra 		 *
3376251b97f5SPeter Zijlstra 		 * We should not cow pages in a shared writeable mapping.
3377dd906184SBoaz Harrosh 		 * Just mark the pages writable and/or call ops->pfn_mkwrite.
3378251b97f5SPeter Zijlstra 		 */
3379b9086fdeSDavid Hildenbrand 		if (!vmf->page)
33802994302bSJan Kara 			return wp_pfn_shared(vmf);
33815a97858bSSidhartha Kumar 		return wp_page_shared(vmf, folio);
3382251b97f5SPeter Zijlstra 	}
33831da177e4SLinus Torvalds 
3384b9086fdeSDavid Hildenbrand 	/*
3385b9086fdeSDavid Hildenbrand 	 * Private mapping: create an exclusive anonymous page copy if reuse
3386b9086fdeSDavid Hildenbrand 	 * is impossible. We might miss VM_WRITE for FOLL_FORCE handling.
3387b9086fdeSDavid Hildenbrand 	 */
3388b9086fdeSDavid Hildenbrand 	if (folio && folio_test_anon(folio)) {
338953a05ad9SDavid Hildenbrand 		/*
33906c287605SDavid Hildenbrand 		 * If the page is exclusive to this process we must reuse the
33916c287605SDavid Hildenbrand 		 * page without further checks.
33926c287605SDavid Hildenbrand 		 */
3393e4a2ed94SMatthew Wilcox (Oracle) 		if (PageAnonExclusive(vmf->page))
33946c287605SDavid Hildenbrand 			goto reuse;
33956c287605SDavid Hildenbrand 
33966c287605SDavid Hildenbrand 		/*
3397e4a2ed94SMatthew Wilcox (Oracle) 		 * We have to verify under folio lock: these early checks are
3398e4a2ed94SMatthew Wilcox (Oracle) 		 * just an optimization to avoid locking the folio and freeing
339953a05ad9SDavid Hildenbrand 		 * the swapcache if there is little hope that we can reuse.
340053a05ad9SDavid Hildenbrand 		 *
3401e4a2ed94SMatthew Wilcox (Oracle) 		 * KSM doesn't necessarily raise the folio refcount.
340253a05ad9SDavid Hildenbrand 		 */
3403e4a2ed94SMatthew Wilcox (Oracle) 		if (folio_test_ksm(folio) || folio_ref_count(folio) > 3)
3404d4c47097SDavid Hildenbrand 			goto copy;
3405e4a2ed94SMatthew Wilcox (Oracle) 		if (!folio_test_lru(folio))
3406d4c47097SDavid Hildenbrand 			/*
34071fec6890SMatthew Wilcox (Oracle) 			 * We cannot easily detect+handle references from
34081fec6890SMatthew Wilcox (Oracle) 			 * remote LRU caches or references to LRU folios.
3409d4c47097SDavid Hildenbrand 			 */
3410d4c47097SDavid Hildenbrand 			lru_add_drain();
3411e4a2ed94SMatthew Wilcox (Oracle) 		if (folio_ref_count(folio) > 1 + folio_test_swapcache(folio))
341252d1e606SKirill Tkhai 			goto copy;
3413e4a2ed94SMatthew Wilcox (Oracle) 		if (!folio_trylock(folio))
341452d1e606SKirill Tkhai 			goto copy;
3415e4a2ed94SMatthew Wilcox (Oracle) 		if (folio_test_swapcache(folio))
3416e4a2ed94SMatthew Wilcox (Oracle) 			folio_free_swap(folio);
3417e4a2ed94SMatthew Wilcox (Oracle) 		if (folio_test_ksm(folio) || folio_ref_count(folio) != 1) {
3418e4a2ed94SMatthew Wilcox (Oracle) 			folio_unlock(folio);
341909854ba9SLinus Torvalds 			goto copy;
342052d1e606SKirill Tkhai 		}
3421c44b6743SRik van Riel 		/*
3422e4a2ed94SMatthew Wilcox (Oracle) 		 * Ok, we've got the only folio reference from our mapping
3423e4a2ed94SMatthew Wilcox (Oracle) 		 * and the folio is locked, it's dark out, and we're wearing
342453a05ad9SDavid Hildenbrand 		 * sunglasses. Hit it.
3425c44b6743SRik van Riel 		 */
3426e4a2ed94SMatthew Wilcox (Oracle) 		page_move_anon_rmap(vmf->page, vma);
3427e4a2ed94SMatthew Wilcox (Oracle) 		folio_unlock(folio);
34286c287605SDavid Hildenbrand reuse:
3429c89357e2SDavid Hildenbrand 		if (unlikely(unshare)) {
3430c89357e2SDavid Hildenbrand 			pte_unmap_unlock(vmf->pte, vmf->ptl);
3431c89357e2SDavid Hildenbrand 			return 0;
3432c89357e2SDavid Hildenbrand 		}
3433be068f29SLinus Torvalds 		wp_page_reuse(vmf);
3434cb8d8633SDavid Hildenbrand 		return 0;
34351da177e4SLinus Torvalds 	}
343652d1e606SKirill Tkhai copy:
34371da177e4SLinus Torvalds 	/*
34381da177e4SLinus Torvalds 	 * Ok, we need to copy. Oh, well..
34391da177e4SLinus Torvalds 	 */
3440b9086fdeSDavid Hildenbrand 	if (folio)
3441b9086fdeSDavid Hildenbrand 		folio_get(folio);
344228766805SShachar Raindel 
344382b0f8c3SJan Kara 	pte_unmap_unlock(vmf->pte, vmf->ptl);
344494bfe85bSYang Yang #ifdef CONFIG_KSM
3445b9086fdeSDavid Hildenbrand 	if (folio && folio_test_ksm(folio))
344694bfe85bSYang Yang 		count_vm_event(COW_KSM);
344794bfe85bSYang Yang #endif
3448a41b70d6SJan Kara 	return wp_page_copy(vmf);
34491da177e4SLinus Torvalds }
34501da177e4SLinus Torvalds 
345197a89413SPeter Zijlstra static void unmap_mapping_range_vma(struct vm_area_struct *vma,
34521da177e4SLinus Torvalds 		unsigned long start_addr, unsigned long end_addr,
34531da177e4SLinus Torvalds 		struct zap_details *details)
34541da177e4SLinus Torvalds {
3455f5cc4eefSAl Viro 	zap_page_range_single(vma, start_addr, end_addr - start_addr, details);
34561da177e4SLinus Torvalds }
34571da177e4SLinus Torvalds 
3458f808c13fSDavidlohr Bueso static inline void unmap_mapping_range_tree(struct rb_root_cached *root,
3459232a6a1cSPeter Xu 					    pgoff_t first_index,
3460232a6a1cSPeter Xu 					    pgoff_t last_index,
34611da177e4SLinus Torvalds 					    struct zap_details *details)
34621da177e4SLinus Torvalds {
34631da177e4SLinus Torvalds 	struct vm_area_struct *vma;
34641da177e4SLinus Torvalds 	pgoff_t vba, vea, zba, zea;
34651da177e4SLinus Torvalds 
3466232a6a1cSPeter Xu 	vma_interval_tree_foreach(vma, root, first_index, last_index) {
34671da177e4SLinus Torvalds 		vba = vma->vm_pgoff;
3468d6e93217SLibin 		vea = vba + vma_pages(vma) - 1;
3469f9871da9SMiaohe Lin 		zba = max(first_index, vba);
3470f9871da9SMiaohe Lin 		zea = min(last_index, vea);
34711da177e4SLinus Torvalds 
347297a89413SPeter Zijlstra 		unmap_mapping_range_vma(vma,
34731da177e4SLinus Torvalds 			((zba - vba) << PAGE_SHIFT) + vma->vm_start,
34741da177e4SLinus Torvalds 			((zea - vba + 1) << PAGE_SHIFT) + vma->vm_start,
347597a89413SPeter Zijlstra 				details);
34761da177e4SLinus Torvalds 	}
34771da177e4SLinus Torvalds }
34781da177e4SLinus Torvalds 
34791da177e4SLinus Torvalds /**
34803506659eSMatthew Wilcox (Oracle)  * unmap_mapping_folio() - Unmap single folio from processes.
34813506659eSMatthew Wilcox (Oracle)  * @folio: The locked folio to be unmapped.
348222061a1fSHugh Dickins  *
34833506659eSMatthew Wilcox (Oracle)  * Unmap this folio from any userspace process which still has it mmaped.
348422061a1fSHugh Dickins  * Typically, for efficiency, the range of nearby pages has already been
348522061a1fSHugh Dickins  * unmapped by unmap_mapping_pages() or unmap_mapping_range().  But once
34863506659eSMatthew Wilcox (Oracle)  * truncation or invalidation holds the lock on a folio, it may find that
34873506659eSMatthew Wilcox (Oracle)  * the page has been remapped again: and then uses unmap_mapping_folio()
348822061a1fSHugh Dickins  * to unmap it finally.
348922061a1fSHugh Dickins  */
34903506659eSMatthew Wilcox (Oracle) void unmap_mapping_folio(struct folio *folio)
349122061a1fSHugh Dickins {
34923506659eSMatthew Wilcox (Oracle) 	struct address_space *mapping = folio->mapping;
349322061a1fSHugh Dickins 	struct zap_details details = { };
3494232a6a1cSPeter Xu 	pgoff_t	first_index;
3495232a6a1cSPeter Xu 	pgoff_t	last_index;
349622061a1fSHugh Dickins 
34973506659eSMatthew Wilcox (Oracle) 	VM_BUG_ON(!folio_test_locked(folio));
349822061a1fSHugh Dickins 
34993506659eSMatthew Wilcox (Oracle) 	first_index = folio->index;
350087b11f86SSidhartha Kumar 	last_index = folio_next_index(folio) - 1;
3501232a6a1cSPeter Xu 
35022e148f1eSPeter Xu 	details.even_cows = false;
35033506659eSMatthew Wilcox (Oracle) 	details.single_folio = folio;
3504999dad82SPeter Xu 	details.zap_flags = ZAP_FLAG_DROP_MARKER;
350522061a1fSHugh Dickins 
35062c865995SHugh Dickins 	i_mmap_lock_read(mapping);
350722061a1fSHugh Dickins 	if (unlikely(!RB_EMPTY_ROOT(&mapping->i_mmap.rb_root)))
3508232a6a1cSPeter Xu 		unmap_mapping_range_tree(&mapping->i_mmap, first_index,
3509232a6a1cSPeter Xu 					 last_index, &details);
35102c865995SHugh Dickins 	i_mmap_unlock_read(mapping);
351122061a1fSHugh Dickins }
351222061a1fSHugh Dickins 
351322061a1fSHugh Dickins /**
3514977fbdcdSMatthew Wilcox  * unmap_mapping_pages() - Unmap pages from processes.
3515977fbdcdSMatthew Wilcox  * @mapping: The address space containing pages to be unmapped.
3516977fbdcdSMatthew Wilcox  * @start: Index of first page to be unmapped.
3517977fbdcdSMatthew Wilcox  * @nr: Number of pages to be unmapped.  0 to unmap to end of file.
3518977fbdcdSMatthew Wilcox  * @even_cows: Whether to unmap even private COWed pages.
3519977fbdcdSMatthew Wilcox  *
3520977fbdcdSMatthew Wilcox  * Unmap the pages in this address space from any userspace process which
3521977fbdcdSMatthew Wilcox  * has them mmaped.  Generally, you want to remove COWed pages as well when
3522977fbdcdSMatthew Wilcox  * a file is being truncated, but not when invalidating pages from the page
3523977fbdcdSMatthew Wilcox  * cache.
3524977fbdcdSMatthew Wilcox  */
3525977fbdcdSMatthew Wilcox void unmap_mapping_pages(struct address_space *mapping, pgoff_t start,
3526977fbdcdSMatthew Wilcox 		pgoff_t nr, bool even_cows)
3527977fbdcdSMatthew Wilcox {
3528977fbdcdSMatthew Wilcox 	struct zap_details details = { };
3529232a6a1cSPeter Xu 	pgoff_t	first_index = start;
3530232a6a1cSPeter Xu 	pgoff_t	last_index = start + nr - 1;
3531977fbdcdSMatthew Wilcox 
35322e148f1eSPeter Xu 	details.even_cows = even_cows;
3533232a6a1cSPeter Xu 	if (last_index < first_index)
3534232a6a1cSPeter Xu 		last_index = ULONG_MAX;
3535977fbdcdSMatthew Wilcox 
35362c865995SHugh Dickins 	i_mmap_lock_read(mapping);
3537977fbdcdSMatthew Wilcox 	if (unlikely(!RB_EMPTY_ROOT(&mapping->i_mmap.rb_root)))
3538232a6a1cSPeter Xu 		unmap_mapping_range_tree(&mapping->i_mmap, first_index,
3539232a6a1cSPeter Xu 					 last_index, &details);
35402c865995SHugh Dickins 	i_mmap_unlock_read(mapping);
3541977fbdcdSMatthew Wilcox }
35426e0e99d5SDavid Howells EXPORT_SYMBOL_GPL(unmap_mapping_pages);
3543977fbdcdSMatthew Wilcox 
3544977fbdcdSMatthew Wilcox /**
35458a5f14a2SKirill A. Shutemov  * unmap_mapping_range - unmap the portion of all mmaps in the specified
3546977fbdcdSMatthew Wilcox  * address_space corresponding to the specified byte range in the underlying
35478a5f14a2SKirill A. Shutemov  * file.
35488a5f14a2SKirill A. Shutemov  *
35493d41088fSMartin Waitz  * @mapping: the address space containing mmaps to be unmapped.
35501da177e4SLinus Torvalds  * @holebegin: byte in first page to unmap, relative to the start of
35511da177e4SLinus Torvalds  * the underlying file.  This will be rounded down to a PAGE_SIZE
355225d9e2d1Snpiggin@suse.de  * boundary.  Note that this is different from truncate_pagecache(), which
35531da177e4SLinus Torvalds  * must keep the partial page.  In contrast, we must get rid of
35541da177e4SLinus Torvalds  * partial pages.
35551da177e4SLinus Torvalds  * @holelen: size of prospective hole in bytes.  This will be rounded
35561da177e4SLinus Torvalds  * up to a PAGE_SIZE boundary.  A holelen of zero truncates to the
35571da177e4SLinus Torvalds  * end of the file.
35581da177e4SLinus Torvalds  * @even_cows: 1 when truncating a file, unmap even private COWed pages;
35591da177e4SLinus Torvalds  * but 0 when invalidating pagecache, don't throw away private data.
35601da177e4SLinus Torvalds  */
35611da177e4SLinus Torvalds void unmap_mapping_range(struct address_space *mapping,
35621da177e4SLinus Torvalds 		loff_t const holebegin, loff_t const holelen, int even_cows)
35631da177e4SLinus Torvalds {
35641da177e4SLinus Torvalds 	pgoff_t hba = holebegin >> PAGE_SHIFT;
35651da177e4SLinus Torvalds 	pgoff_t hlen = (holelen + PAGE_SIZE - 1) >> PAGE_SHIFT;
35661da177e4SLinus Torvalds 
35671da177e4SLinus Torvalds 	/* Check for overflow. */
35681da177e4SLinus Torvalds 	if (sizeof(holelen) > sizeof(hlen)) {
35691da177e4SLinus Torvalds 		long long holeend =
35701da177e4SLinus Torvalds 			(holebegin + holelen + PAGE_SIZE - 1) >> PAGE_SHIFT;
35711da177e4SLinus Torvalds 		if (holeend & ~(long long)ULONG_MAX)
35721da177e4SLinus Torvalds 			hlen = ULONG_MAX - hba + 1;
35731da177e4SLinus Torvalds 	}
35741da177e4SLinus Torvalds 
3575977fbdcdSMatthew Wilcox 	unmap_mapping_pages(mapping, hba, hlen, even_cows);
35761da177e4SLinus Torvalds }
35771da177e4SLinus Torvalds EXPORT_SYMBOL(unmap_mapping_range);
35781da177e4SLinus Torvalds 
35791da177e4SLinus Torvalds /*
3580b756a3b5SAlistair Popple  * Restore a potential device exclusive pte to a working pte entry
3581b756a3b5SAlistair Popple  */
3582b756a3b5SAlistair Popple static vm_fault_t remove_device_exclusive_entry(struct vm_fault *vmf)
3583b756a3b5SAlistair Popple {
358419672a9eSMatthew Wilcox (Oracle) 	struct folio *folio = page_folio(vmf->page);
3585b756a3b5SAlistair Popple 	struct vm_area_struct *vma = vmf->vma;
3586b756a3b5SAlistair Popple 	struct mmu_notifier_range range;
3587b756a3b5SAlistair Popple 
35887c7b9629SAlistair Popple 	/*
35897c7b9629SAlistair Popple 	 * We need a reference to lock the folio because we don't hold
35907c7b9629SAlistair Popple 	 * the PTL so a racing thread can remove the device-exclusive
35917c7b9629SAlistair Popple 	 * entry and unmap it. If the folio is free the entry must
35927c7b9629SAlistair Popple 	 * have been removed already. If it happens to have already
35937c7b9629SAlistair Popple 	 * been re-allocated after being freed all we do is lock and
35947c7b9629SAlistair Popple 	 * unlock it.
35957c7b9629SAlistair Popple 	 */
35967c7b9629SAlistair Popple 	if (!folio_try_get(folio))
35977c7b9629SAlistair Popple 		return 0;
35987c7b9629SAlistair Popple 
35997c7b9629SAlistair Popple 	if (!folio_lock_or_retry(folio, vma->vm_mm, vmf->flags)) {
36007c7b9629SAlistair Popple 		folio_put(folio);
3601b756a3b5SAlistair Popple 		return VM_FAULT_RETRY;
36027c7b9629SAlistair Popple 	}
36037d4a8be0SAlistair Popple 	mmu_notifier_range_init_owner(&range, MMU_NOTIFY_EXCLUSIVE, 0,
3604b756a3b5SAlistair Popple 				vma->vm_mm, vmf->address & PAGE_MASK,
3605b756a3b5SAlistair Popple 				(vmf->address & PAGE_MASK) + PAGE_SIZE, NULL);
3606b756a3b5SAlistair Popple 	mmu_notifier_invalidate_range_start(&range);
3607b756a3b5SAlistair Popple 
3608b756a3b5SAlistair Popple 	vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd, vmf->address,
3609b756a3b5SAlistair Popple 				&vmf->ptl);
3610c33c7948SRyan Roberts 	if (likely(vmf->pte && pte_same(ptep_get(vmf->pte), vmf->orig_pte)))
361119672a9eSMatthew Wilcox (Oracle) 		restore_exclusive_pte(vma, vmf->page, vmf->address, vmf->pte);
3612b756a3b5SAlistair Popple 
36133db82b93SHugh Dickins 	if (vmf->pte)
3614b756a3b5SAlistair Popple 		pte_unmap_unlock(vmf->pte, vmf->ptl);
361519672a9eSMatthew Wilcox (Oracle) 	folio_unlock(folio);
36167c7b9629SAlistair Popple 	folio_put(folio);
3617b756a3b5SAlistair Popple 
3618b756a3b5SAlistair Popple 	mmu_notifier_invalidate_range_end(&range);
3619b756a3b5SAlistair Popple 	return 0;
3620b756a3b5SAlistair Popple }
3621b756a3b5SAlistair Popple 
3622a160e537SMatthew Wilcox (Oracle) static inline bool should_try_to_free_swap(struct folio *folio,
3623c145e0b4SDavid Hildenbrand 					   struct vm_area_struct *vma,
3624c145e0b4SDavid Hildenbrand 					   unsigned int fault_flags)
3625c145e0b4SDavid Hildenbrand {
3626a160e537SMatthew Wilcox (Oracle) 	if (!folio_test_swapcache(folio))
3627c145e0b4SDavid Hildenbrand 		return false;
36289202d527SMatthew Wilcox (Oracle) 	if (mem_cgroup_swap_full(folio) || (vma->vm_flags & VM_LOCKED) ||
3629a160e537SMatthew Wilcox (Oracle) 	    folio_test_mlocked(folio))
3630c145e0b4SDavid Hildenbrand 		return true;
3631c145e0b4SDavid Hildenbrand 	/*
3632c145e0b4SDavid Hildenbrand 	 * If we want to map a page that's in the swapcache writable, we
3633c145e0b4SDavid Hildenbrand 	 * have to detect via the refcount if we're really the exclusive
3634c145e0b4SDavid Hildenbrand 	 * user. Try freeing the swapcache to get rid of the swapcache
3635c145e0b4SDavid Hildenbrand 	 * reference only in case it's likely that we'll be the exlusive user.
3636c145e0b4SDavid Hildenbrand 	 */
3637a160e537SMatthew Wilcox (Oracle) 	return (fault_flags & FAULT_FLAG_WRITE) && !folio_test_ksm(folio) &&
3638a160e537SMatthew Wilcox (Oracle) 		folio_ref_count(folio) == 2;
3639c145e0b4SDavid Hildenbrand }
3640c145e0b4SDavid Hildenbrand 
36419c28a205SPeter Xu static vm_fault_t pte_marker_clear(struct vm_fault *vmf)
36429c28a205SPeter Xu {
36439c28a205SPeter Xu 	vmf->pte = pte_offset_map_lock(vmf->vma->vm_mm, vmf->pmd,
36449c28a205SPeter Xu 				       vmf->address, &vmf->ptl);
36453db82b93SHugh Dickins 	if (!vmf->pte)
36463db82b93SHugh Dickins 		return 0;
36479c28a205SPeter Xu 	/*
36489c28a205SPeter Xu 	 * Be careful so that we will only recover a special uffd-wp pte into a
36499c28a205SPeter Xu 	 * none pte.  Otherwise it means the pte could have changed, so retry.
36507e3ce3f8SPeter Xu 	 *
36517e3ce3f8SPeter Xu 	 * This should also cover the case where e.g. the pte changed
3652af19487fSAxel Rasmussen 	 * quickly from a PTE_MARKER_UFFD_WP into PTE_MARKER_POISONED.
36537e3ce3f8SPeter Xu 	 * So is_pte_marker() check is not enough to safely drop the pte.
36549c28a205SPeter Xu 	 */
3655c33c7948SRyan Roberts 	if (pte_same(vmf->orig_pte, ptep_get(vmf->pte)))
36569c28a205SPeter Xu 		pte_clear(vmf->vma->vm_mm, vmf->address, vmf->pte);
36579c28a205SPeter Xu 	pte_unmap_unlock(vmf->pte, vmf->ptl);
36589c28a205SPeter Xu 	return 0;
36599c28a205SPeter Xu }
36609c28a205SPeter Xu 
36612bad466cSPeter Xu static vm_fault_t do_pte_missing(struct vm_fault *vmf)
36622bad466cSPeter Xu {
36632bad466cSPeter Xu 	if (vma_is_anonymous(vmf->vma))
36642bad466cSPeter Xu 		return do_anonymous_page(vmf);
36652bad466cSPeter Xu 	else
36662bad466cSPeter Xu 		return do_fault(vmf);
36672bad466cSPeter Xu }
36682bad466cSPeter Xu 
36699c28a205SPeter Xu /*
36709c28a205SPeter Xu  * This is actually a page-missing access, but with uffd-wp special pte
36719c28a205SPeter Xu  * installed.  It means this pte was wr-protected before being unmapped.
36729c28a205SPeter Xu  */
36739c28a205SPeter Xu static vm_fault_t pte_marker_handle_uffd_wp(struct vm_fault *vmf)
36749c28a205SPeter Xu {
36759c28a205SPeter Xu 	/*
36769c28a205SPeter Xu 	 * Just in case there're leftover special ptes even after the region
36777a079ba2SPeter Xu 	 * got unregistered - we can simply clear them.
36789c28a205SPeter Xu 	 */
36792bad466cSPeter Xu 	if (unlikely(!userfaultfd_wp(vmf->vma)))
36809c28a205SPeter Xu 		return pte_marker_clear(vmf);
36819c28a205SPeter Xu 
36822bad466cSPeter Xu 	return do_pte_missing(vmf);
36839c28a205SPeter Xu }
36849c28a205SPeter Xu 
36855c041f5dSPeter Xu static vm_fault_t handle_pte_marker(struct vm_fault *vmf)
36865c041f5dSPeter Xu {
36875c041f5dSPeter Xu 	swp_entry_t entry = pte_to_swp_entry(vmf->orig_pte);
36885c041f5dSPeter Xu 	unsigned long marker = pte_marker_get(entry);
36895c041f5dSPeter Xu 
36905c041f5dSPeter Xu 	/*
3691ca92ea3dSPeter Xu 	 * PTE markers should never be empty.  If anything weird happened,
3692ca92ea3dSPeter Xu 	 * the best thing to do is to kill the process along with its mm.
36935c041f5dSPeter Xu 	 */
3694ca92ea3dSPeter Xu 	if (WARN_ON_ONCE(!marker))
36955c041f5dSPeter Xu 		return VM_FAULT_SIGBUS;
36965c041f5dSPeter Xu 
369715520a3fSPeter Xu 	/* Higher priority than uffd-wp when data corrupted */
3698af19487fSAxel Rasmussen 	if (marker & PTE_MARKER_POISONED)
3699af19487fSAxel Rasmussen 		return VM_FAULT_HWPOISON;
370015520a3fSPeter Xu 
37019c28a205SPeter Xu 	if (pte_marker_entry_uffd_wp(entry))
37029c28a205SPeter Xu 		return pte_marker_handle_uffd_wp(vmf);
37039c28a205SPeter Xu 
37049c28a205SPeter Xu 	/* This is an unknown pte marker */
37059c28a205SPeter Xu 	return VM_FAULT_SIGBUS;
37065c041f5dSPeter Xu }
37075c041f5dSPeter Xu 
3708b756a3b5SAlistair Popple /*
3709c1e8d7c6SMichel Lespinasse  * We enter with non-exclusive mmap_lock (to exclude vma changes,
37108f4e2101SHugh Dickins  * but allow concurrent faults), and pte mapped but not yet locked.
37119a95f3cfSPaul Cassella  * We return with pte unmapped and unlocked.
37129a95f3cfSPaul Cassella  *
3713c1e8d7c6SMichel Lespinasse  * We return with the mmap_lock locked or unlocked in the same cases
37149a95f3cfSPaul Cassella  * as does filemap_fault().
37151da177e4SLinus Torvalds  */
37162b740303SSouptick Joarder vm_fault_t do_swap_page(struct vm_fault *vmf)
37171da177e4SLinus Torvalds {
371882b0f8c3SJan Kara 	struct vm_area_struct *vma = vmf->vma;
3719d4f9565aSMatthew Wilcox (Oracle) 	struct folio *swapcache, *folio = NULL;
3720d4f9565aSMatthew Wilcox (Oracle) 	struct page *page;
37212799e775SMiaohe Lin 	struct swap_info_struct *si = NULL;
372214f9135dSDavid Hildenbrand 	rmap_t rmap_flags = RMAP_NONE;
37231493a191SDavid Hildenbrand 	bool exclusive = false;
372465500d23SHugh Dickins 	swp_entry_t entry;
37251da177e4SLinus Torvalds 	pte_t pte;
3726d065bd81SMichel Lespinasse 	int locked;
37272b740303SSouptick Joarder 	vm_fault_t ret = 0;
3728aae466b0SJoonsoo Kim 	void *shadow = NULL;
37291da177e4SLinus Torvalds 
37302ca99358SPeter Xu 	if (!pte_unmap_same(vmf))
37318f4e2101SHugh Dickins 		goto out;
373265500d23SHugh Dickins 
373317c05f18SSuren Baghdasaryan 	if (vmf->flags & FAULT_FLAG_VMA_LOCK) {
373417c05f18SSuren Baghdasaryan 		ret = VM_FAULT_RETRY;
373517c05f18SSuren Baghdasaryan 		goto out;
373617c05f18SSuren Baghdasaryan 	}
373717c05f18SSuren Baghdasaryan 
37382994302bSJan Kara 	entry = pte_to_swp_entry(vmf->orig_pte);
3739d1737fdbSAndi Kleen 	if (unlikely(non_swap_entry(entry))) {
37400697212aSChristoph Lameter 		if (is_migration_entry(entry)) {
374182b0f8c3SJan Kara 			migration_entry_wait(vma->vm_mm, vmf->pmd,
374282b0f8c3SJan Kara 					     vmf->address);
3743b756a3b5SAlistair Popple 		} else if (is_device_exclusive_entry(entry)) {
3744b756a3b5SAlistair Popple 			vmf->page = pfn_swap_entry_to_page(entry);
3745b756a3b5SAlistair Popple 			ret = remove_device_exclusive_entry(vmf);
37465042db43SJérôme Glisse 		} else if (is_device_private_entry(entry)) {
3747af5cdaf8SAlistair Popple 			vmf->page = pfn_swap_entry_to_page(entry);
374816ce101dSAlistair Popple 			vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd,
374916ce101dSAlistair Popple 					vmf->address, &vmf->ptl);
37503db82b93SHugh Dickins 			if (unlikely(!vmf->pte ||
3751c33c7948SRyan Roberts 				     !pte_same(ptep_get(vmf->pte),
3752c33c7948SRyan Roberts 							vmf->orig_pte)))
37533b65f437SRyan Roberts 				goto unlock;
375416ce101dSAlistair Popple 
375516ce101dSAlistair Popple 			/*
375616ce101dSAlistair Popple 			 * Get a page reference while we know the page can't be
375716ce101dSAlistair Popple 			 * freed.
375816ce101dSAlistair Popple 			 */
375916ce101dSAlistair Popple 			get_page(vmf->page);
376016ce101dSAlistair Popple 			pte_unmap_unlock(vmf->pte, vmf->ptl);
37614a955bedSAlistair Popple 			ret = vmf->page->pgmap->ops->migrate_to_ram(vmf);
376216ce101dSAlistair Popple 			put_page(vmf->page);
3763d1737fdbSAndi Kleen 		} else if (is_hwpoison_entry(entry)) {
3764d1737fdbSAndi Kleen 			ret = VM_FAULT_HWPOISON;
37655c041f5dSPeter Xu 		} else if (is_pte_marker_entry(entry)) {
37665c041f5dSPeter Xu 			ret = handle_pte_marker(vmf);
3767d1737fdbSAndi Kleen 		} else {
37682994302bSJan Kara 			print_bad_pte(vma, vmf->address, vmf->orig_pte, NULL);
3769d99be1a8SHugh Dickins 			ret = VM_FAULT_SIGBUS;
3770d1737fdbSAndi Kleen 		}
37710697212aSChristoph Lameter 		goto out;
37720697212aSChristoph Lameter 	}
37730bcac06fSMinchan Kim 
37742799e775SMiaohe Lin 	/* Prevent swapoff from happening to us. */
37752799e775SMiaohe Lin 	si = get_swap_device(entry);
37762799e775SMiaohe Lin 	if (unlikely(!si))
37772799e775SMiaohe Lin 		goto out;
37780bcac06fSMinchan Kim 
37795a423081SMatthew Wilcox (Oracle) 	folio = swap_cache_get_folio(entry, vma, vmf->address);
37805a423081SMatthew Wilcox (Oracle) 	if (folio)
37815a423081SMatthew Wilcox (Oracle) 		page = folio_file_page(folio, swp_offset(entry));
3782d4f9565aSMatthew Wilcox (Oracle) 	swapcache = folio;
3783f8020772SMinchan Kim 
3784d4f9565aSMatthew Wilcox (Oracle) 	if (!folio) {
3785a449bf58SQian Cai 		if (data_race(si->flags & SWP_SYNCHRONOUS_IO) &&
3786eb085574SHuang Ying 		    __swap_count(entry) == 1) {
37870bcac06fSMinchan Kim 			/* skip swapcache */
378863ad4addSMatthew Wilcox (Oracle) 			folio = vma_alloc_folio(GFP_HIGHUSER_MOVABLE, 0,
378963ad4addSMatthew Wilcox (Oracle) 						vma, vmf->address, false);
379063ad4addSMatthew Wilcox (Oracle) 			page = &folio->page;
379163ad4addSMatthew Wilcox (Oracle) 			if (folio) {
379263ad4addSMatthew Wilcox (Oracle) 				__folio_set_locked(folio);
379363ad4addSMatthew Wilcox (Oracle) 				__folio_set_swapbacked(folio);
37944c6355b2SJohannes Weiner 
379565995918SMatthew Wilcox (Oracle) 				if (mem_cgroup_swapin_charge_folio(folio,
379663ad4addSMatthew Wilcox (Oracle) 							vma->vm_mm, GFP_KERNEL,
379763ad4addSMatthew Wilcox (Oracle) 							entry)) {
3798545b1b07SMichal Hocko 					ret = VM_FAULT_OOM;
37994c6355b2SJohannes Weiner 					goto out_page;
3800545b1b07SMichal Hocko 				}
38010add0c77SShakeel Butt 				mem_cgroup_swapin_uncharge_swap(entry);
38024c6355b2SJohannes Weiner 
3803aae466b0SJoonsoo Kim 				shadow = get_shadow_from_swap_cache(entry);
3804aae466b0SJoonsoo Kim 				if (shadow)
380563ad4addSMatthew Wilcox (Oracle) 					workingset_refault(folio, shadow);
38060076f029SJoonsoo Kim 
380763ad4addSMatthew Wilcox (Oracle) 				folio_add_lru(folio);
38080add0c77SShakeel Butt 
38090add0c77SShakeel Butt 				/* To provide entry to swap_readpage() */
381063ad4addSMatthew Wilcox (Oracle) 				folio_set_swap_entry(folio, entry);
38115169b844SNeilBrown 				swap_readpage(page, true, NULL);
381263ad4addSMatthew Wilcox (Oracle) 				folio->private = NULL;
38130bcac06fSMinchan Kim 			}
3814aa8d22a1SMinchan Kim 		} else {
3815e9e9b7ecSMinchan Kim 			page = swapin_readahead(entry, GFP_HIGHUSER_MOVABLE,
3816e9e9b7ecSMinchan Kim 						vmf);
381763ad4addSMatthew Wilcox (Oracle) 			if (page)
381863ad4addSMatthew Wilcox (Oracle) 				folio = page_folio(page);
3819d4f9565aSMatthew Wilcox (Oracle) 			swapcache = folio;
38200bcac06fSMinchan Kim 		}
38210bcac06fSMinchan Kim 
3822d4f9565aSMatthew Wilcox (Oracle) 		if (!folio) {
38231da177e4SLinus Torvalds 			/*
38248f4e2101SHugh Dickins 			 * Back out if somebody else faulted in this pte
38258f4e2101SHugh Dickins 			 * while we released the pte lock.
38261da177e4SLinus Torvalds 			 */
382782b0f8c3SJan Kara 			vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd,
382882b0f8c3SJan Kara 					vmf->address, &vmf->ptl);
3829c33c7948SRyan Roberts 			if (likely(vmf->pte &&
3830c33c7948SRyan Roberts 				   pte_same(ptep_get(vmf->pte), vmf->orig_pte)))
38311da177e4SLinus Torvalds 				ret = VM_FAULT_OOM;
383265500d23SHugh Dickins 			goto unlock;
38331da177e4SLinus Torvalds 		}
38341da177e4SLinus Torvalds 
38351da177e4SLinus Torvalds 		/* Had to read the page from swap area: Major fault */
38361da177e4SLinus Torvalds 		ret = VM_FAULT_MAJOR;
3837f8891e5eSChristoph Lameter 		count_vm_event(PGMAJFAULT);
38382262185cSRoman Gushchin 		count_memcg_event_mm(vma->vm_mm, PGMAJFAULT);
3839d1737fdbSAndi Kleen 	} else if (PageHWPoison(page)) {
384071f72525SWu Fengguang 		/*
384171f72525SWu Fengguang 		 * hwpoisoned dirty swapcache pages are kept for killing
384271f72525SWu Fengguang 		 * owner processes (which may be unknown at hwpoison time)
384371f72525SWu Fengguang 		 */
3844d1737fdbSAndi Kleen 		ret = VM_FAULT_HWPOISON;
38454779cb31SAndi Kleen 		goto out_release;
38461da177e4SLinus Torvalds 	}
38471da177e4SLinus Torvalds 
384819672a9eSMatthew Wilcox (Oracle) 	locked = folio_lock_or_retry(folio, vma->vm_mm, vmf->flags);
3849e709ffd6SRik van Riel 
3850d065bd81SMichel Lespinasse 	if (!locked) {
3851d065bd81SMichel Lespinasse 		ret |= VM_FAULT_RETRY;
3852d065bd81SMichel Lespinasse 		goto out_release;
3853d065bd81SMichel Lespinasse 	}
38541da177e4SLinus Torvalds 
385584d60fddSDavid Hildenbrand 	if (swapcache) {
38564969c119SAndrea Arcangeli 		/*
38573b344157SMatthew Wilcox (Oracle) 		 * Make sure folio_free_swap() or swapoff did not release the
385884d60fddSDavid Hildenbrand 		 * swapcache from under us.  The page pin, and pte_same test
385984d60fddSDavid Hildenbrand 		 * below, are not enough to exclude that.  Even if it is still
386084d60fddSDavid Hildenbrand 		 * swapcache, we need to check that the page's swap has not
386184d60fddSDavid Hildenbrand 		 * changed.
38624969c119SAndrea Arcangeli 		 */
386363ad4addSMatthew Wilcox (Oracle) 		if (unlikely(!folio_test_swapcache(folio) ||
386484d60fddSDavid Hildenbrand 			     page_private(page) != entry.val))
38654969c119SAndrea Arcangeli 			goto out_page;
38664969c119SAndrea Arcangeli 
386784d60fddSDavid Hildenbrand 		/*
386884d60fddSDavid Hildenbrand 		 * KSM sometimes has to copy on read faults, for example, if
386984d60fddSDavid Hildenbrand 		 * page->index of !PageKSM() pages would be nonlinear inside the
387084d60fddSDavid Hildenbrand 		 * anon VMA -- PageKSM() is lost on actual swapout.
387184d60fddSDavid Hildenbrand 		 */
387282b0f8c3SJan Kara 		page = ksm_might_need_to_copy(page, vma, vmf->address);
38734969c119SAndrea Arcangeli 		if (unlikely(!page)) {
38745ad64688SHugh Dickins 			ret = VM_FAULT_OOM;
38754969c119SAndrea Arcangeli 			goto out_page;
38766b970599SKefeng Wang 		} else if (unlikely(PTR_ERR(page) == -EHWPOISON)) {
38776b970599SKefeng Wang 			ret = VM_FAULT_HWPOISON;
38786b970599SKefeng Wang 			goto out_page;
38794969c119SAndrea Arcangeli 		}
388063ad4addSMatthew Wilcox (Oracle) 		folio = page_folio(page);
3881c145e0b4SDavid Hildenbrand 
3882c145e0b4SDavid Hildenbrand 		/*
3883c145e0b4SDavid Hildenbrand 		 * If we want to map a page that's in the swapcache writable, we
3884c145e0b4SDavid Hildenbrand 		 * have to detect via the refcount if we're really the exclusive
3885c145e0b4SDavid Hildenbrand 		 * owner. Try removing the extra reference from the local LRU
38861fec6890SMatthew Wilcox (Oracle) 		 * caches if required.
3887c145e0b4SDavid Hildenbrand 		 */
3888d4f9565aSMatthew Wilcox (Oracle) 		if ((vmf->flags & FAULT_FLAG_WRITE) && folio == swapcache &&
388963ad4addSMatthew Wilcox (Oracle) 		    !folio_test_ksm(folio) && !folio_test_lru(folio))
3890c145e0b4SDavid Hildenbrand 			lru_add_drain();
389184d60fddSDavid Hildenbrand 	}
38925ad64688SHugh Dickins 
38934231f842SKefeng Wang 	folio_throttle_swaprate(folio, GFP_KERNEL);
3894073e587eSKAMEZAWA Hiroyuki 
38951da177e4SLinus Torvalds 	/*
38968f4e2101SHugh Dickins 	 * Back out if somebody else already faulted in this pte.
38971da177e4SLinus Torvalds 	 */
389882b0f8c3SJan Kara 	vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd, vmf->address,
389982b0f8c3SJan Kara 			&vmf->ptl);
3900c33c7948SRyan Roberts 	if (unlikely(!vmf->pte || !pte_same(ptep_get(vmf->pte), vmf->orig_pte)))
3901b8107480SKirill Korotaev 		goto out_nomap;
3902b8107480SKirill Korotaev 
390363ad4addSMatthew Wilcox (Oracle) 	if (unlikely(!folio_test_uptodate(folio))) {
3904b8107480SKirill Korotaev 		ret = VM_FAULT_SIGBUS;
3905b8107480SKirill Korotaev 		goto out_nomap;
39061da177e4SLinus Torvalds 	}
39071da177e4SLinus Torvalds 
39088c7c6e34SKAMEZAWA Hiroyuki 	/*
390978fbe906SDavid Hildenbrand 	 * PG_anon_exclusive reuses PG_mappedtodisk for anon pages. A swap pte
391078fbe906SDavid Hildenbrand 	 * must never point at an anonymous page in the swapcache that is
391178fbe906SDavid Hildenbrand 	 * PG_anon_exclusive. Sanity check that this holds and especially, that
391278fbe906SDavid Hildenbrand 	 * no filesystem set PG_mappedtodisk on a page in the swapcache. Sanity
391378fbe906SDavid Hildenbrand 	 * check after taking the PT lock and making sure that nobody
391478fbe906SDavid Hildenbrand 	 * concurrently faulted in this page and set PG_anon_exclusive.
391578fbe906SDavid Hildenbrand 	 */
391663ad4addSMatthew Wilcox (Oracle) 	BUG_ON(!folio_test_anon(folio) && folio_test_mappedtodisk(folio));
391763ad4addSMatthew Wilcox (Oracle) 	BUG_ON(folio_test_anon(folio) && PageAnonExclusive(page));
391878fbe906SDavid Hildenbrand 
391978fbe906SDavid Hildenbrand 	/*
39201493a191SDavid Hildenbrand 	 * Check under PT lock (to protect against concurrent fork() sharing
39211493a191SDavid Hildenbrand 	 * the swap entry concurrently) for certainly exclusive pages.
39221493a191SDavid Hildenbrand 	 */
392363ad4addSMatthew Wilcox (Oracle) 	if (!folio_test_ksm(folio)) {
39241493a191SDavid Hildenbrand 		exclusive = pte_swp_exclusive(vmf->orig_pte);
3925d4f9565aSMatthew Wilcox (Oracle) 		if (folio != swapcache) {
39261493a191SDavid Hildenbrand 			/*
39271493a191SDavid Hildenbrand 			 * We have a fresh page that is not exposed to the
39281493a191SDavid Hildenbrand 			 * swapcache -> certainly exclusive.
39291493a191SDavid Hildenbrand 			 */
39301493a191SDavid Hildenbrand 			exclusive = true;
393163ad4addSMatthew Wilcox (Oracle) 		} else if (exclusive && folio_test_writeback(folio) &&
3932eacde327SMiaohe Lin 			  data_race(si->flags & SWP_STABLE_WRITES)) {
39331493a191SDavid Hildenbrand 			/*
39341493a191SDavid Hildenbrand 			 * This is tricky: not all swap backends support
39351493a191SDavid Hildenbrand 			 * concurrent page modifications while under writeback.
39361493a191SDavid Hildenbrand 			 *
39371493a191SDavid Hildenbrand 			 * So if we stumble over such a page in the swapcache
39381493a191SDavid Hildenbrand 			 * we must not set the page exclusive, otherwise we can
39391493a191SDavid Hildenbrand 			 * map it writable without further checks and modify it
39401493a191SDavid Hildenbrand 			 * while still under writeback.
39411493a191SDavid Hildenbrand 			 *
39421493a191SDavid Hildenbrand 			 * For these problematic swap backends, simply drop the
39431493a191SDavid Hildenbrand 			 * exclusive marker: this is perfectly fine as we start
39441493a191SDavid Hildenbrand 			 * writeback only if we fully unmapped the page and
39451493a191SDavid Hildenbrand 			 * there are no unexpected references on the page after
39461493a191SDavid Hildenbrand 			 * unmapping succeeded. After fully unmapped, no
39471493a191SDavid Hildenbrand 			 * further GUP references (FOLL_GET and FOLL_PIN) can
39481493a191SDavid Hildenbrand 			 * appear, so dropping the exclusive marker and mapping
39491493a191SDavid Hildenbrand 			 * it only R/O is fine.
39501493a191SDavid Hildenbrand 			 */
39511493a191SDavid Hildenbrand 			exclusive = false;
39521493a191SDavid Hildenbrand 		}
39531493a191SDavid Hildenbrand 	}
39541493a191SDavid Hildenbrand 
39551493a191SDavid Hildenbrand 	/*
39566dca4ac6SPeter Collingbourne 	 * Some architectures may have to restore extra metadata to the page
39576dca4ac6SPeter Collingbourne 	 * when reading from swap. This metadata may be indexed by swap entry
39586dca4ac6SPeter Collingbourne 	 * so this must be called before swap_free().
39596dca4ac6SPeter Collingbourne 	 */
39606dca4ac6SPeter Collingbourne 	arch_swap_restore(entry, folio);
39616dca4ac6SPeter Collingbourne 
39626dca4ac6SPeter Collingbourne 	/*
3963c145e0b4SDavid Hildenbrand 	 * Remove the swap entry and conditionally try to free up the swapcache.
3964c145e0b4SDavid Hildenbrand 	 * We're already holding a reference on the page but haven't mapped it
3965c145e0b4SDavid Hildenbrand 	 * yet.
39668c7c6e34SKAMEZAWA Hiroyuki 	 */
3967c145e0b4SDavid Hildenbrand 	swap_free(entry);
3968a160e537SMatthew Wilcox (Oracle) 	if (should_try_to_free_swap(folio, vma, vmf->flags))
3969a160e537SMatthew Wilcox (Oracle) 		folio_free_swap(folio);
39701da177e4SLinus Torvalds 
3971f1a79412SShakeel Butt 	inc_mm_counter(vma->vm_mm, MM_ANONPAGES);
3972f1a79412SShakeel Butt 	dec_mm_counter(vma->vm_mm, MM_SWAPENTS);
39731da177e4SLinus Torvalds 	pte = mk_pte(page, vma->vm_page_prot);
3974c145e0b4SDavid Hildenbrand 
3975c145e0b4SDavid Hildenbrand 	/*
39761493a191SDavid Hildenbrand 	 * Same logic as in do_wp_page(); however, optimize for pages that are
39771493a191SDavid Hildenbrand 	 * certainly not shared either because we just allocated them without
39781493a191SDavid Hildenbrand 	 * exposing them to the swapcache or because the swap entry indicates
39791493a191SDavid Hildenbrand 	 * exclusivity.
3980c145e0b4SDavid Hildenbrand 	 */
398163ad4addSMatthew Wilcox (Oracle) 	if (!folio_test_ksm(folio) &&
398263ad4addSMatthew Wilcox (Oracle) 	    (exclusive || folio_ref_count(folio) == 1)) {
39836c287605SDavid Hildenbrand 		if (vmf->flags & FAULT_FLAG_WRITE) {
39841da177e4SLinus Torvalds 			pte = maybe_mkwrite(pte_mkdirty(pte), vma);
398582b0f8c3SJan Kara 			vmf->flags &= ~FAULT_FLAG_WRITE;
39866c287605SDavid Hildenbrand 		}
398714f9135dSDavid Hildenbrand 		rmap_flags |= RMAP_EXCLUSIVE;
39881da177e4SLinus Torvalds 	}
39891da177e4SLinus Torvalds 	flush_icache_page(vma, page);
39902994302bSJan Kara 	if (pte_swp_soft_dirty(vmf->orig_pte))
3991179ef71cSCyrill Gorcunov 		pte = pte_mksoft_dirty(pte);
3992f1eb1bacSPeter Xu 	if (pte_swp_uffd_wp(vmf->orig_pte))
3993f45ec5ffSPeter Xu 		pte = pte_mkuffd_wp(pte);
39942994302bSJan Kara 	vmf->orig_pte = pte;
39950bcac06fSMinchan Kim 
39960bcac06fSMinchan Kim 	/* ksm created a completely new copy */
3997d4f9565aSMatthew Wilcox (Oracle) 	if (unlikely(folio != swapcache && swapcache)) {
399840f2bbf7SDavid Hildenbrand 		page_add_new_anon_rmap(page, vma, vmf->address);
399963ad4addSMatthew Wilcox (Oracle) 		folio_add_lru_vma(folio, vma);
40000bcac06fSMinchan Kim 	} else {
4001f1e2db12SDavid Hildenbrand 		page_add_anon_rmap(page, vma, vmf->address, rmap_flags);
400200501b53SJohannes Weiner 	}
40031da177e4SLinus Torvalds 
400463ad4addSMatthew Wilcox (Oracle) 	VM_BUG_ON(!folio_test_anon(folio) ||
400563ad4addSMatthew Wilcox (Oracle) 			(pte_write(pte) && !PageAnonExclusive(page)));
40061eba86c0SPasha Tatashin 	set_pte_at(vma->vm_mm, vmf->address, vmf->pte, pte);
40071eba86c0SPasha Tatashin 	arch_do_swap_page(vma->vm_mm, vma, vmf->address, pte, vmf->orig_pte);
40081eba86c0SPasha Tatashin 
400963ad4addSMatthew Wilcox (Oracle) 	folio_unlock(folio);
4010d4f9565aSMatthew Wilcox (Oracle) 	if (folio != swapcache && swapcache) {
40114969c119SAndrea Arcangeli 		/*
40124969c119SAndrea Arcangeli 		 * Hold the lock to avoid the swap entry to be reused
40134969c119SAndrea Arcangeli 		 * until we take the PT lock for the pte_same() check
40144969c119SAndrea Arcangeli 		 * (to avoid false positives from pte_same). For
40154969c119SAndrea Arcangeli 		 * further safety release the lock after the swap_free
40164969c119SAndrea Arcangeli 		 * so that the swap count won't change under a
40174969c119SAndrea Arcangeli 		 * parallel locked swapcache.
40184969c119SAndrea Arcangeli 		 */
4019d4f9565aSMatthew Wilcox (Oracle) 		folio_unlock(swapcache);
4020d4f9565aSMatthew Wilcox (Oracle) 		folio_put(swapcache);
40214969c119SAndrea Arcangeli 	}
4022c475a8abSHugh Dickins 
402382b0f8c3SJan Kara 	if (vmf->flags & FAULT_FLAG_WRITE) {
40242994302bSJan Kara 		ret |= do_wp_page(vmf);
402561469f1dSHugh Dickins 		if (ret & VM_FAULT_ERROR)
402661469f1dSHugh Dickins 			ret &= VM_FAULT_ERROR;
40271da177e4SLinus Torvalds 		goto out;
40281da177e4SLinus Torvalds 	}
40291da177e4SLinus Torvalds 
40301da177e4SLinus Torvalds 	/* No need to invalidate - it was non-present before */
403182b0f8c3SJan Kara 	update_mmu_cache(vma, vmf->address, vmf->pte);
403265500d23SHugh Dickins unlock:
40333db82b93SHugh Dickins 	if (vmf->pte)
403482b0f8c3SJan Kara 		pte_unmap_unlock(vmf->pte, vmf->ptl);
40351da177e4SLinus Torvalds out:
40362799e775SMiaohe Lin 	if (si)
40372799e775SMiaohe Lin 		put_swap_device(si);
40381da177e4SLinus Torvalds 	return ret;
4039b8107480SKirill Korotaev out_nomap:
40403db82b93SHugh Dickins 	if (vmf->pte)
404182b0f8c3SJan Kara 		pte_unmap_unlock(vmf->pte, vmf->ptl);
4042bc43f75cSJohannes Weiner out_page:
404363ad4addSMatthew Wilcox (Oracle) 	folio_unlock(folio);
40444779cb31SAndi Kleen out_release:
404563ad4addSMatthew Wilcox (Oracle) 	folio_put(folio);
4046d4f9565aSMatthew Wilcox (Oracle) 	if (folio != swapcache && swapcache) {
4047d4f9565aSMatthew Wilcox (Oracle) 		folio_unlock(swapcache);
4048d4f9565aSMatthew Wilcox (Oracle) 		folio_put(swapcache);
40494969c119SAndrea Arcangeli 	}
40502799e775SMiaohe Lin 	if (si)
40512799e775SMiaohe Lin 		put_swap_device(si);
405265500d23SHugh Dickins 	return ret;
40531da177e4SLinus Torvalds }
40541da177e4SLinus Torvalds 
40551da177e4SLinus Torvalds /*
4056c1e8d7c6SMichel Lespinasse  * We enter with non-exclusive mmap_lock (to exclude vma changes,
40578f4e2101SHugh Dickins  * but allow concurrent faults), and pte mapped but not yet locked.
4058c1e8d7c6SMichel Lespinasse  * We return with mmap_lock still held, but pte unmapped and unlocked.
40591da177e4SLinus Torvalds  */
40602b740303SSouptick Joarder static vm_fault_t do_anonymous_page(struct vm_fault *vmf)
40611da177e4SLinus Torvalds {
40622bad466cSPeter Xu 	bool uffd_wp = vmf_orig_pte_uffd_wp(vmf);
406382b0f8c3SJan Kara 	struct vm_area_struct *vma = vmf->vma;
40646bc56a4dSMatthew Wilcox (Oracle) 	struct folio *folio;
40652b740303SSouptick Joarder 	vm_fault_t ret = 0;
40661da177e4SLinus Torvalds 	pte_t entry;
40671da177e4SLinus Torvalds 
40686b7339f4SKirill A. Shutemov 	/* File mapping without ->vm_ops ? */
40696b7339f4SKirill A. Shutemov 	if (vma->vm_flags & VM_SHARED)
40706b7339f4SKirill A. Shutemov 		return VM_FAULT_SIGBUS;
40716b7339f4SKirill A. Shutemov 
40727267ec00SKirill A. Shutemov 	/*
40733db82b93SHugh Dickins 	 * Use pte_alloc() instead of pte_alloc_map(), so that OOM can
40743db82b93SHugh Dickins 	 * be distinguished from a transient failure of pte_offset_map().
40757267ec00SKirill A. Shutemov 	 */
40764cf58924SJoel Fernandes (Google) 	if (pte_alloc(vma->vm_mm, vmf->pmd))
40777267ec00SKirill A. Shutemov 		return VM_FAULT_OOM;
40787267ec00SKirill A. Shutemov 
407911ac5524SLinus Torvalds 	/* Use the zero-page for reads */
408082b0f8c3SJan Kara 	if (!(vmf->flags & FAULT_FLAG_WRITE) &&
4081bae473a4SKirill A. Shutemov 			!mm_forbids_zeropage(vma->vm_mm)) {
408282b0f8c3SJan Kara 		entry = pte_mkspecial(pfn_pte(my_zero_pfn(vmf->address),
408362eede62SHugh Dickins 						vma->vm_page_prot));
408482b0f8c3SJan Kara 		vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd,
408582b0f8c3SJan Kara 				vmf->address, &vmf->ptl);
40863db82b93SHugh Dickins 		if (!vmf->pte)
40873db82b93SHugh Dickins 			goto unlock;
40882bad466cSPeter Xu 		if (vmf_pte_changed(vmf)) {
40897df67697SBibo Mao 			update_mmu_tlb(vma, vmf->address, vmf->pte);
4090a13ea5b7SHugh Dickins 			goto unlock;
40917df67697SBibo Mao 		}
40926b31d595SMichal Hocko 		ret = check_stable_address_space(vma->vm_mm);
40936b31d595SMichal Hocko 		if (ret)
40946b31d595SMichal Hocko 			goto unlock;
40956b251fc9SAndrea Arcangeli 		/* Deliver the page fault to userland, check inside PT lock */
40966b251fc9SAndrea Arcangeli 		if (userfaultfd_missing(vma)) {
409782b0f8c3SJan Kara 			pte_unmap_unlock(vmf->pte, vmf->ptl);
409882b0f8c3SJan Kara 			return handle_userfault(vmf, VM_UFFD_MISSING);
40996b251fc9SAndrea Arcangeli 		}
4100a13ea5b7SHugh Dickins 		goto setpte;
4101a13ea5b7SHugh Dickins 	}
4102a13ea5b7SHugh Dickins 
41031da177e4SLinus Torvalds 	/* Allocate our own private page. */
41041da177e4SLinus Torvalds 	if (unlikely(anon_vma_prepare(vma)))
410565500d23SHugh Dickins 		goto oom;
41066bc56a4dSMatthew Wilcox (Oracle) 	folio = vma_alloc_zeroed_movable_folio(vma, vmf->address);
41076bc56a4dSMatthew Wilcox (Oracle) 	if (!folio)
410865500d23SHugh Dickins 		goto oom;
4109eb3c24f3SMel Gorman 
41106bc56a4dSMatthew Wilcox (Oracle) 	if (mem_cgroup_charge(folio, vma->vm_mm, GFP_KERNEL))
4111eb3c24f3SMel Gorman 		goto oom_free_page;
4112e2bf3e2cSKefeng Wang 	folio_throttle_swaprate(folio, GFP_KERNEL);
4113eb3c24f3SMel Gorman 
411452f37629SMinchan Kim 	/*
4115cb3184deSMatthew Wilcox (Oracle) 	 * The memory barrier inside __folio_mark_uptodate makes sure that
4116f4f5329dSWei Yang 	 * preceding stores to the page contents become visible before
411752f37629SMinchan Kim 	 * the set_pte_at() write.
411852f37629SMinchan Kim 	 */
4119cb3184deSMatthew Wilcox (Oracle) 	__folio_mark_uptodate(folio);
41201da177e4SLinus Torvalds 
4121cb3184deSMatthew Wilcox (Oracle) 	entry = mk_pte(&folio->page, vma->vm_page_prot);
412250c25ee9SThomas Bogendoerfer 	entry = pte_sw_mkyoung(entry);
41231ac0cb5dSHugh Dickins 	if (vma->vm_flags & VM_WRITE)
41241ac0cb5dSHugh Dickins 		entry = pte_mkwrite(pte_mkdirty(entry));
41258f4e2101SHugh Dickins 
412682b0f8c3SJan Kara 	vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd, vmf->address,
412782b0f8c3SJan Kara 			&vmf->ptl);
41283db82b93SHugh Dickins 	if (!vmf->pte)
41293db82b93SHugh Dickins 		goto release;
41302bad466cSPeter Xu 	if (vmf_pte_changed(vmf)) {
4131bce8cb3cSQi Zheng 		update_mmu_tlb(vma, vmf->address, vmf->pte);
41328f4e2101SHugh Dickins 		goto release;
41337df67697SBibo Mao 	}
41349ba69294SHugh Dickins 
41356b31d595SMichal Hocko 	ret = check_stable_address_space(vma->vm_mm);
41366b31d595SMichal Hocko 	if (ret)
41376b31d595SMichal Hocko 		goto release;
41386b31d595SMichal Hocko 
41396b251fc9SAndrea Arcangeli 	/* Deliver the page fault to userland, check inside PT lock */
41406b251fc9SAndrea Arcangeli 	if (userfaultfd_missing(vma)) {
414182b0f8c3SJan Kara 		pte_unmap_unlock(vmf->pte, vmf->ptl);
4142cb3184deSMatthew Wilcox (Oracle) 		folio_put(folio);
414382b0f8c3SJan Kara 		return handle_userfault(vmf, VM_UFFD_MISSING);
41446b251fc9SAndrea Arcangeli 	}
41456b251fc9SAndrea Arcangeli 
4146f1a79412SShakeel Butt 	inc_mm_counter(vma->vm_mm, MM_ANONPAGES);
4147cb3184deSMatthew Wilcox (Oracle) 	folio_add_new_anon_rmap(folio, vma, vmf->address);
4148cb3184deSMatthew Wilcox (Oracle) 	folio_add_lru_vma(folio, vma);
4149a13ea5b7SHugh Dickins setpte:
41502bad466cSPeter Xu 	if (uffd_wp)
41512bad466cSPeter Xu 		entry = pte_mkuffd_wp(entry);
415282b0f8c3SJan Kara 	set_pte_at(vma->vm_mm, vmf->address, vmf->pte, entry);
41531da177e4SLinus Torvalds 
41541da177e4SLinus Torvalds 	/* No need to invalidate - it was non-present before */
415582b0f8c3SJan Kara 	update_mmu_cache(vma, vmf->address, vmf->pte);
415665500d23SHugh Dickins unlock:
41573db82b93SHugh Dickins 	if (vmf->pte)
415882b0f8c3SJan Kara 		pte_unmap_unlock(vmf->pte, vmf->ptl);
41596b31d595SMichal Hocko 	return ret;
41608f4e2101SHugh Dickins release:
4161cb3184deSMatthew Wilcox (Oracle) 	folio_put(folio);
41628f4e2101SHugh Dickins 	goto unlock;
41638a9f3ccdSBalbir Singh oom_free_page:
4164cb3184deSMatthew Wilcox (Oracle) 	folio_put(folio);
416565500d23SHugh Dickins oom:
41661da177e4SLinus Torvalds 	return VM_FAULT_OOM;
41671da177e4SLinus Torvalds }
41681da177e4SLinus Torvalds 
41699a95f3cfSPaul Cassella /*
4170c1e8d7c6SMichel Lespinasse  * The mmap_lock must have been held on entry, and may have been
41719a95f3cfSPaul Cassella  * released depending on flags and vma->vm_ops->fault() return value.
41729a95f3cfSPaul Cassella  * See filemap_fault() and __lock_page_retry().
41739a95f3cfSPaul Cassella  */
41742b740303SSouptick Joarder static vm_fault_t __do_fault(struct vm_fault *vmf)
41757eae74afSKirill A. Shutemov {
417682b0f8c3SJan Kara 	struct vm_area_struct *vma = vmf->vma;
41772b740303SSouptick Joarder 	vm_fault_t ret;
41787eae74afSKirill A. Shutemov 
417963f3655fSMichal Hocko 	/*
418063f3655fSMichal Hocko 	 * Preallocate pte before we take page_lock because this might lead to
418163f3655fSMichal Hocko 	 * deadlocks for memcg reclaim which waits for pages under writeback:
418263f3655fSMichal Hocko 	 *				lock_page(A)
418363f3655fSMichal Hocko 	 *				SetPageWriteback(A)
418463f3655fSMichal Hocko 	 *				unlock_page(A)
418563f3655fSMichal Hocko 	 * lock_page(B)
418663f3655fSMichal Hocko 	 *				lock_page(B)
4187d383807aSYanfei Xu 	 * pte_alloc_one
418863f3655fSMichal Hocko 	 *   shrink_page_list
418963f3655fSMichal Hocko 	 *     wait_on_page_writeback(A)
419063f3655fSMichal Hocko 	 *				SetPageWriteback(B)
419163f3655fSMichal Hocko 	 *				unlock_page(B)
419263f3655fSMichal Hocko 	 *				# flush A, B to clear the writeback
419363f3655fSMichal Hocko 	 */
419463f3655fSMichal Hocko 	if (pmd_none(*vmf->pmd) && !vmf->prealloc_pte) {
4195a7069ee3SYanfei Xu 		vmf->prealloc_pte = pte_alloc_one(vma->vm_mm);
419663f3655fSMichal Hocko 		if (!vmf->prealloc_pte)
419763f3655fSMichal Hocko 			return VM_FAULT_OOM;
419863f3655fSMichal Hocko 	}
419963f3655fSMichal Hocko 
420011bac800SDave Jiang 	ret = vma->vm_ops->fault(vmf);
42013917048dSJan Kara 	if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY |
4202b1aa812bSJan Kara 			    VM_FAULT_DONE_COW)))
42037eae74afSKirill A. Shutemov 		return ret;
42047eae74afSKirill A. Shutemov 
4205667240e0SJan Kara 	if (unlikely(PageHWPoison(vmf->page))) {
42063149c79fSRik van Riel 		struct page *page = vmf->page;
4207e53ac737SRik van Riel 		vm_fault_t poisonret = VM_FAULT_HWPOISON;
4208e53ac737SRik van Riel 		if (ret & VM_FAULT_LOCKED) {
42093149c79fSRik van Riel 			if (page_mapped(page))
42103149c79fSRik van Riel 				unmap_mapping_pages(page_mapping(page),
42113149c79fSRik van Riel 						    page->index, 1, false);
4212e53ac737SRik van Riel 			/* Retry if a clean page was removed from the cache. */
42133149c79fSRik van Riel 			if (invalidate_inode_page(page))
42143149c79fSRik van Riel 				poisonret = VM_FAULT_NOPAGE;
42153149c79fSRik van Riel 			unlock_page(page);
4216e53ac737SRik van Riel 		}
42173149c79fSRik van Riel 		put_page(page);
4218936ca80dSJan Kara 		vmf->page = NULL;
4219e53ac737SRik van Riel 		return poisonret;
42207eae74afSKirill A. Shutemov 	}
42217eae74afSKirill A. Shutemov 
42227eae74afSKirill A. Shutemov 	if (unlikely(!(ret & VM_FAULT_LOCKED)))
4223667240e0SJan Kara 		lock_page(vmf->page);
42247eae74afSKirill A. Shutemov 	else
4225667240e0SJan Kara 		VM_BUG_ON_PAGE(!PageLocked(vmf->page), vmf->page);
42267eae74afSKirill A. Shutemov 
42277eae74afSKirill A. Shutemov 	return ret;
42287eae74afSKirill A. Shutemov }
42297eae74afSKirill A. Shutemov 
4230396bcc52SMatthew Wilcox (Oracle) #ifdef CONFIG_TRANSPARENT_HUGEPAGE
423182b0f8c3SJan Kara static void deposit_prealloc_pte(struct vm_fault *vmf)
4232953c66c2SAneesh Kumar K.V {
423382b0f8c3SJan Kara 	struct vm_area_struct *vma = vmf->vma;
4234953c66c2SAneesh Kumar K.V 
423582b0f8c3SJan Kara 	pgtable_trans_huge_deposit(vma->vm_mm, vmf->pmd, vmf->prealloc_pte);
4236953c66c2SAneesh Kumar K.V 	/*
4237953c66c2SAneesh Kumar K.V 	 * We are going to consume the prealloc table,
4238953c66c2SAneesh Kumar K.V 	 * count that as nr_ptes.
4239953c66c2SAneesh Kumar K.V 	 */
4240c4812909SKirill A. Shutemov 	mm_inc_nr_ptes(vma->vm_mm);
42417f2b6ce8STobin C Harding 	vmf->prealloc_pte = NULL;
4242953c66c2SAneesh Kumar K.V }
4243953c66c2SAneesh Kumar K.V 
4244f9ce0be7SKirill A. Shutemov vm_fault_t do_set_pmd(struct vm_fault *vmf, struct page *page)
424510102459SKirill A. Shutemov {
424682b0f8c3SJan Kara 	struct vm_area_struct *vma = vmf->vma;
424782b0f8c3SJan Kara 	bool write = vmf->flags & FAULT_FLAG_WRITE;
424882b0f8c3SJan Kara 	unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
424910102459SKirill A. Shutemov 	pmd_t entry;
42502b740303SSouptick Joarder 	int i;
4251d01ac3c3SMatthew Wilcox (Oracle) 	vm_fault_t ret = VM_FAULT_FALLBACK;
425210102459SKirill A. Shutemov 
425310102459SKirill A. Shutemov 	if (!transhuge_vma_suitable(vma, haddr))
4254d01ac3c3SMatthew Wilcox (Oracle) 		return ret;
425510102459SKirill A. Shutemov 
425610102459SKirill A. Shutemov 	page = compound_head(page);
4257d01ac3c3SMatthew Wilcox (Oracle) 	if (compound_order(page) != HPAGE_PMD_ORDER)
4258d01ac3c3SMatthew Wilcox (Oracle) 		return ret;
425910102459SKirill A. Shutemov 
4260953c66c2SAneesh Kumar K.V 	/*
4261eac96c3eSYang Shi 	 * Just backoff if any subpage of a THP is corrupted otherwise
4262eac96c3eSYang Shi 	 * the corrupted page may mapped by PMD silently to escape the
4263eac96c3eSYang Shi 	 * check.  This kind of THP just can be PTE mapped.  Access to
4264eac96c3eSYang Shi 	 * the corrupted subpage should trigger SIGBUS as expected.
4265eac96c3eSYang Shi 	 */
4266eac96c3eSYang Shi 	if (unlikely(PageHasHWPoisoned(page)))
4267eac96c3eSYang Shi 		return ret;
4268eac96c3eSYang Shi 
4269eac96c3eSYang Shi 	/*
4270f0953a1bSIngo Molnar 	 * Archs like ppc64 need additional space to store information
4271953c66c2SAneesh Kumar K.V 	 * related to pte entry. Use the preallocated table for that.
4272953c66c2SAneesh Kumar K.V 	 */
427382b0f8c3SJan Kara 	if (arch_needs_pgtable_deposit() && !vmf->prealloc_pte) {
42744cf58924SJoel Fernandes (Google) 		vmf->prealloc_pte = pte_alloc_one(vma->vm_mm);
427582b0f8c3SJan Kara 		if (!vmf->prealloc_pte)
4276953c66c2SAneesh Kumar K.V 			return VM_FAULT_OOM;
4277953c66c2SAneesh Kumar K.V 	}
4278953c66c2SAneesh Kumar K.V 
427982b0f8c3SJan Kara 	vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
428082b0f8c3SJan Kara 	if (unlikely(!pmd_none(*vmf->pmd)))
428110102459SKirill A. Shutemov 		goto out;
428210102459SKirill A. Shutemov 
428310102459SKirill A. Shutemov 	for (i = 0; i < HPAGE_PMD_NR; i++)
428410102459SKirill A. Shutemov 		flush_icache_page(vma, page + i);
428510102459SKirill A. Shutemov 
428610102459SKirill A. Shutemov 	entry = mk_huge_pmd(page, vma->vm_page_prot);
428710102459SKirill A. Shutemov 	if (write)
4288f55e1014SLinus Torvalds 		entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
428910102459SKirill A. Shutemov 
4290fadae295SYang Shi 	add_mm_counter(vma->vm_mm, mm_counter_file(page), HPAGE_PMD_NR);
4291cea86fe2SHugh Dickins 	page_add_file_rmap(page, vma, true);
4292cea86fe2SHugh Dickins 
4293953c66c2SAneesh Kumar K.V 	/*
4294953c66c2SAneesh Kumar K.V 	 * deposit and withdraw with pmd lock held
4295953c66c2SAneesh Kumar K.V 	 */
4296953c66c2SAneesh Kumar K.V 	if (arch_needs_pgtable_deposit())
429782b0f8c3SJan Kara 		deposit_prealloc_pte(vmf);
429810102459SKirill A. Shutemov 
429982b0f8c3SJan Kara 	set_pmd_at(vma->vm_mm, haddr, vmf->pmd, entry);
430010102459SKirill A. Shutemov 
430182b0f8c3SJan Kara 	update_mmu_cache_pmd(vma, haddr, vmf->pmd);
430210102459SKirill A. Shutemov 
430310102459SKirill A. Shutemov 	/* fault is handled */
430410102459SKirill A. Shutemov 	ret = 0;
430595ecedcdSKirill A. Shutemov 	count_vm_event(THP_FILE_MAPPED);
430610102459SKirill A. Shutemov out:
430782b0f8c3SJan Kara 	spin_unlock(vmf->ptl);
430810102459SKirill A. Shutemov 	return ret;
430910102459SKirill A. Shutemov }
431010102459SKirill A. Shutemov #else
4311f9ce0be7SKirill A. Shutemov vm_fault_t do_set_pmd(struct vm_fault *vmf, struct page *page)
431210102459SKirill A. Shutemov {
4313f9ce0be7SKirill A. Shutemov 	return VM_FAULT_FALLBACK;
431410102459SKirill A. Shutemov }
431510102459SKirill A. Shutemov #endif
431610102459SKirill A. Shutemov 
43179d3af4b4SWill Deacon void do_set_pte(struct vm_fault *vmf, struct page *page, unsigned long addr)
43183bb97794SKirill A. Shutemov {
431982b0f8c3SJan Kara 	struct vm_area_struct *vma = vmf->vma;
43202bad466cSPeter Xu 	bool uffd_wp = vmf_orig_pte_uffd_wp(vmf);
432182b0f8c3SJan Kara 	bool write = vmf->flags & FAULT_FLAG_WRITE;
43229d3af4b4SWill Deacon 	bool prefault = vmf->address != addr;
43233bb97794SKirill A. Shutemov 	pte_t entry;
43247267ec00SKirill A. Shutemov 
43253bb97794SKirill A. Shutemov 	flush_icache_page(vma, page);
43263bb97794SKirill A. Shutemov 	entry = mk_pte(page, vma->vm_page_prot);
432746bdb427SWill Deacon 
432846bdb427SWill Deacon 	if (prefault && arch_wants_old_prefaulted_pte())
432946bdb427SWill Deacon 		entry = pte_mkold(entry);
433050c25ee9SThomas Bogendoerfer 	else
433150c25ee9SThomas Bogendoerfer 		entry = pte_sw_mkyoung(entry);
433246bdb427SWill Deacon 
43333bb97794SKirill A. Shutemov 	if (write)
43343bb97794SKirill A. Shutemov 		entry = maybe_mkwrite(pte_mkdirty(entry), vma);
43359c28a205SPeter Xu 	if (unlikely(uffd_wp))
4336f1eb1bacSPeter Xu 		entry = pte_mkuffd_wp(entry);
4337bae473a4SKirill A. Shutemov 	/* copy-on-write page */
4338bae473a4SKirill A. Shutemov 	if (write && !(vma->vm_flags & VM_SHARED)) {
4339f1a79412SShakeel Butt 		inc_mm_counter(vma->vm_mm, MM_ANONPAGES);
434040f2bbf7SDavid Hildenbrand 		page_add_new_anon_rmap(page, vma, addr);
4341b518154eSJoonsoo Kim 		lru_cache_add_inactive_or_unevictable(page, vma);
43423bb97794SKirill A. Shutemov 	} else {
4343f1a79412SShakeel Butt 		inc_mm_counter(vma->vm_mm, mm_counter_file(page));
4344cea86fe2SHugh Dickins 		page_add_file_rmap(page, vma, false);
43453bb97794SKirill A. Shutemov 	}
43469d3af4b4SWill Deacon 	set_pte_at(vma->vm_mm, addr, vmf->pte, entry);
43473bb97794SKirill A. Shutemov }
43483bb97794SKirill A. Shutemov 
4349f46f2adeSPeter Xu static bool vmf_pte_changed(struct vm_fault *vmf)
4350f46f2adeSPeter Xu {
4351f46f2adeSPeter Xu 	if (vmf->flags & FAULT_FLAG_ORIG_PTE_VALID)
4352c33c7948SRyan Roberts 		return !pte_same(ptep_get(vmf->pte), vmf->orig_pte);
4353f46f2adeSPeter Xu 
4354c33c7948SRyan Roberts 	return !pte_none(ptep_get(vmf->pte));
4355f46f2adeSPeter Xu }
4356f46f2adeSPeter Xu 
43579118c0cbSJan Kara /**
43589118c0cbSJan Kara  * finish_fault - finish page fault once we have prepared the page to fault
43599118c0cbSJan Kara  *
43609118c0cbSJan Kara  * @vmf: structure describing the fault
43619118c0cbSJan Kara  *
43629118c0cbSJan Kara  * This function handles all that is needed to finish a page fault once the
43639118c0cbSJan Kara  * page to fault in is prepared. It handles locking of PTEs, inserts PTE for
43649118c0cbSJan Kara  * given page, adds reverse page mapping, handles memcg charges and LRU
4365a862f68aSMike Rapoport  * addition.
43669118c0cbSJan Kara  *
43679118c0cbSJan Kara  * The function expects the page to be locked and on success it consumes a
43689118c0cbSJan Kara  * reference of a page being mapped (for the PTE which maps it).
4369a862f68aSMike Rapoport  *
4370a862f68aSMike Rapoport  * Return: %0 on success, %VM_FAULT_ code in case of error.
43719118c0cbSJan Kara  */
43722b740303SSouptick Joarder vm_fault_t finish_fault(struct vm_fault *vmf)
43739118c0cbSJan Kara {
4374f9ce0be7SKirill A. Shutemov 	struct vm_area_struct *vma = vmf->vma;
43759118c0cbSJan Kara 	struct page *page;
4376f9ce0be7SKirill A. Shutemov 	vm_fault_t ret;
43779118c0cbSJan Kara 
43789118c0cbSJan Kara 	/* Did we COW the page? */
4379f9ce0be7SKirill A. Shutemov 	if ((vmf->flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED))
43809118c0cbSJan Kara 		page = vmf->cow_page;
43819118c0cbSJan Kara 	else
43829118c0cbSJan Kara 		page = vmf->page;
43836b31d595SMichal Hocko 
43846b31d595SMichal Hocko 	/*
43856b31d595SMichal Hocko 	 * check even for read faults because we might have lost our CoWed
43866b31d595SMichal Hocko 	 * page
43876b31d595SMichal Hocko 	 */
4388f9ce0be7SKirill A. Shutemov 	if (!(vma->vm_flags & VM_SHARED)) {
4389f9ce0be7SKirill A. Shutemov 		ret = check_stable_address_space(vma->vm_mm);
4390f9ce0be7SKirill A. Shutemov 		if (ret)
4391f9ce0be7SKirill A. Shutemov 			return ret;
4392f9ce0be7SKirill A. Shutemov 	}
4393f9ce0be7SKirill A. Shutemov 
4394f9ce0be7SKirill A. Shutemov 	if (pmd_none(*vmf->pmd)) {
4395f9ce0be7SKirill A. Shutemov 		if (PageTransCompound(page)) {
4396f9ce0be7SKirill A. Shutemov 			ret = do_set_pmd(vmf, page);
4397f9ce0be7SKirill A. Shutemov 			if (ret != VM_FAULT_FALLBACK)
4398f9ce0be7SKirill A. Shutemov 				return ret;
4399f9ce0be7SKirill A. Shutemov 		}
4400f9ce0be7SKirill A. Shutemov 
440103c4f204SQi Zheng 		if (vmf->prealloc_pte)
440203c4f204SQi Zheng 			pmd_install(vma->vm_mm, vmf->pmd, &vmf->prealloc_pte);
440303c4f204SQi Zheng 		else if (unlikely(pte_alloc(vma->vm_mm, vmf->pmd)))
4404f9ce0be7SKirill A. Shutemov 			return VM_FAULT_OOM;
4405f9ce0be7SKirill A. Shutemov 	}
4406f9ce0be7SKirill A. Shutemov 
4407f9ce0be7SKirill A. Shutemov 	vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd,
4408f9ce0be7SKirill A. Shutemov 				      vmf->address, &vmf->ptl);
44093db82b93SHugh Dickins 	if (!vmf->pte)
44103db82b93SHugh Dickins 		return VM_FAULT_NOPAGE;
4411f9ce0be7SKirill A. Shutemov 
441270427f6eSSergei Antonov 	/* Re-check under ptl */
441370427f6eSSergei Antonov 	if (likely(!vmf_pte_changed(vmf))) {
441470427f6eSSergei Antonov 		do_set_pte(vmf, page, vmf->address);
441570427f6eSSergei Antonov 
441670427f6eSSergei Antonov 		/* no need to invalidate: a not-present page won't be cached */
441770427f6eSSergei Antonov 		update_mmu_cache(vma, vmf->address, vmf->pte);
441870427f6eSSergei Antonov 
441970427f6eSSergei Antonov 		ret = 0;
442070427f6eSSergei Antonov 	} else {
4421f9ce0be7SKirill A. Shutemov 		update_mmu_tlb(vma, vmf->address, vmf->pte);
442270427f6eSSergei Antonov 		ret = VM_FAULT_NOPAGE;
442370427f6eSSergei Antonov 	}
442470427f6eSSergei Antonov 
44259118c0cbSJan Kara 	pte_unmap_unlock(vmf->pte, vmf->ptl);
44269118c0cbSJan Kara 	return ret;
44279118c0cbSJan Kara }
44289118c0cbSJan Kara 
442953d36a56SLorenzo Stoakes static unsigned long fault_around_pages __read_mostly =
443053d36a56SLorenzo Stoakes 	65536 >> PAGE_SHIFT;
4431a9b0f861SKirill A. Shutemov 
44321592eef0SKirill A. Shutemov #ifdef CONFIG_DEBUG_FS
4433a9b0f861SKirill A. Shutemov static int fault_around_bytes_get(void *data, u64 *val)
44341592eef0SKirill A. Shutemov {
443553d36a56SLorenzo Stoakes 	*val = fault_around_pages << PAGE_SHIFT;
44361592eef0SKirill A. Shutemov 	return 0;
44371592eef0SKirill A. Shutemov }
44381592eef0SKirill A. Shutemov 
4439b4903d6eSAndrey Ryabinin /*
4440da391d64SWilliam Kucharski  * fault_around_bytes must be rounded down to the nearest page order as it's
4441da391d64SWilliam Kucharski  * what do_fault_around() expects to see.
4442b4903d6eSAndrey Ryabinin  */
4443a9b0f861SKirill A. Shutemov static int fault_around_bytes_set(void *data, u64 val)
44441592eef0SKirill A. Shutemov {
4445a9b0f861SKirill A. Shutemov 	if (val / PAGE_SIZE > PTRS_PER_PTE)
44461592eef0SKirill A. Shutemov 		return -EINVAL;
444753d36a56SLorenzo Stoakes 
444853d36a56SLorenzo Stoakes 	/*
444953d36a56SLorenzo Stoakes 	 * The minimum value is 1 page, however this results in no fault-around
445053d36a56SLorenzo Stoakes 	 * at all. See should_fault_around().
445153d36a56SLorenzo Stoakes 	 */
445253d36a56SLorenzo Stoakes 	fault_around_pages = max(rounddown_pow_of_two(val) >> PAGE_SHIFT, 1UL);
445353d36a56SLorenzo Stoakes 
44541592eef0SKirill A. Shutemov 	return 0;
44551592eef0SKirill A. Shutemov }
44560a1345f8SYevgen Pronenko DEFINE_DEBUGFS_ATTRIBUTE(fault_around_bytes_fops,
4457a9b0f861SKirill A. Shutemov 		fault_around_bytes_get, fault_around_bytes_set, "%llu\n");
44581592eef0SKirill A. Shutemov 
44591592eef0SKirill A. Shutemov static int __init fault_around_debugfs(void)
44601592eef0SKirill A. Shutemov {
4461d9f7979cSGreg Kroah-Hartman 	debugfs_create_file_unsafe("fault_around_bytes", 0644, NULL, NULL,
4462a9b0f861SKirill A. Shutemov 				   &fault_around_bytes_fops);
44631592eef0SKirill A. Shutemov 	return 0;
44641592eef0SKirill A. Shutemov }
44651592eef0SKirill A. Shutemov late_initcall(fault_around_debugfs);
44661592eef0SKirill A. Shutemov #endif
44678c6e50b0SKirill A. Shutemov 
44681fdb412bSKirill A. Shutemov /*
44691fdb412bSKirill A. Shutemov  * do_fault_around() tries to map few pages around the fault address. The hope
44701fdb412bSKirill A. Shutemov  * is that the pages will be needed soon and this will lower the number of
44711fdb412bSKirill A. Shutemov  * faults to handle.
44721fdb412bSKirill A. Shutemov  *
44731fdb412bSKirill A. Shutemov  * It uses vm_ops->map_pages() to map the pages, which skips the page if it's
44741fdb412bSKirill A. Shutemov  * not ready to be mapped: not up-to-date, locked, etc.
44751fdb412bSKirill A. Shutemov  *
44769042599eSLorenzo Stoakes  * This function doesn't cross VMA or page table boundaries, in order to call
44779042599eSLorenzo Stoakes  * map_pages() and acquire a PTE lock only once.
44781fdb412bSKirill A. Shutemov  *
447953d36a56SLorenzo Stoakes  * fault_around_pages defines how many pages we'll try to map.
4480da391d64SWilliam Kucharski  * do_fault_around() expects it to be set to a power of two less than or equal
4481da391d64SWilliam Kucharski  * to PTRS_PER_PTE.
44821fdb412bSKirill A. Shutemov  *
4483da391d64SWilliam Kucharski  * The virtual address of the area that we map is naturally aligned to
448453d36a56SLorenzo Stoakes  * fault_around_pages * PAGE_SIZE rounded down to the machine page size
4485da391d64SWilliam Kucharski  * (and therefore to page order).  This way it's easier to guarantee
4486da391d64SWilliam Kucharski  * that we don't cross page table boundaries.
44871fdb412bSKirill A. Shutemov  */
44882b740303SSouptick Joarder static vm_fault_t do_fault_around(struct vm_fault *vmf)
44898c6e50b0SKirill A. Shutemov {
449053d36a56SLorenzo Stoakes 	pgoff_t nr_pages = READ_ONCE(fault_around_pages);
44919042599eSLorenzo Stoakes 	pgoff_t pte_off = pte_index(vmf->address);
44929042599eSLorenzo Stoakes 	/* The page offset of vmf->address within the VMA. */
44939042599eSLorenzo Stoakes 	pgoff_t vma_off = vmf->pgoff - vmf->vma->vm_pgoff;
44949042599eSLorenzo Stoakes 	pgoff_t from_pte, to_pte;
449558ef47efSMatthew Wilcox (Oracle) 	vm_fault_t ret;
44968c6e50b0SKirill A. Shutemov 
44979042599eSLorenzo Stoakes 	/* The PTE offset of the start address, clamped to the VMA. */
44989042599eSLorenzo Stoakes 	from_pte = max(ALIGN_DOWN(pte_off, nr_pages),
44999042599eSLorenzo Stoakes 		       pte_off - min(pte_off, vma_off));
4500aecd6f44SKirill A. Shutemov 
45019042599eSLorenzo Stoakes 	/* The PTE offset of the end address, clamped to the VMA and PTE. */
45029042599eSLorenzo Stoakes 	to_pte = min3(from_pte + nr_pages, (pgoff_t)PTRS_PER_PTE,
45039042599eSLorenzo Stoakes 		      pte_off + vma_pages(vmf->vma) - vma_off) - 1;
45048c6e50b0SKirill A. Shutemov 
450582b0f8c3SJan Kara 	if (pmd_none(*vmf->pmd)) {
45064cf58924SJoel Fernandes (Google) 		vmf->prealloc_pte = pte_alloc_one(vmf->vma->vm_mm);
450782b0f8c3SJan Kara 		if (!vmf->prealloc_pte)
4508f9ce0be7SKirill A. Shutemov 			return VM_FAULT_OOM;
45098c6e50b0SKirill A. Shutemov 	}
45108c6e50b0SKirill A. Shutemov 
451158ef47efSMatthew Wilcox (Oracle) 	rcu_read_lock();
451258ef47efSMatthew Wilcox (Oracle) 	ret = vmf->vma->vm_ops->map_pages(vmf,
45139042599eSLorenzo Stoakes 			vmf->pgoff + from_pte - pte_off,
45149042599eSLorenzo Stoakes 			vmf->pgoff + to_pte - pte_off);
451558ef47efSMatthew Wilcox (Oracle) 	rcu_read_unlock();
451658ef47efSMatthew Wilcox (Oracle) 
451758ef47efSMatthew Wilcox (Oracle) 	return ret;
45187267ec00SKirill A. Shutemov }
45197267ec00SKirill A. Shutemov 
45209c28a205SPeter Xu /* Return true if we should do read fault-around, false otherwise */
45219c28a205SPeter Xu static inline bool should_fault_around(struct vm_fault *vmf)
45229c28a205SPeter Xu {
45239c28a205SPeter Xu 	/* No ->map_pages?  No way to fault around... */
45249c28a205SPeter Xu 	if (!vmf->vma->vm_ops->map_pages)
45259c28a205SPeter Xu 		return false;
45269c28a205SPeter Xu 
45279c28a205SPeter Xu 	if (uffd_disable_fault_around(vmf->vma))
45289c28a205SPeter Xu 		return false;
45299c28a205SPeter Xu 
453053d36a56SLorenzo Stoakes 	/* A single page implies no faulting 'around' at all. */
453153d36a56SLorenzo Stoakes 	return fault_around_pages > 1;
45329c28a205SPeter Xu }
45339c28a205SPeter Xu 
45342b740303SSouptick Joarder static vm_fault_t do_read_fault(struct vm_fault *vmf)
4535e655fb29SKirill A. Shutemov {
45362b740303SSouptick Joarder 	vm_fault_t ret = 0;
453722d1e68fSSidhartha Kumar 	struct folio *folio;
45388c6e50b0SKirill A. Shutemov 
45398c6e50b0SKirill A. Shutemov 	/*
45408c6e50b0SKirill A. Shutemov 	 * Let's call ->map_pages() first and use ->fault() as fallback
45418c6e50b0SKirill A. Shutemov 	 * if page by the offset is not ready to be mapped (cold cache or
45428c6e50b0SKirill A. Shutemov 	 * something).
45438c6e50b0SKirill A. Shutemov 	 */
45449c28a205SPeter Xu 	if (should_fault_around(vmf)) {
45450721ec8bSJan Kara 		ret = do_fault_around(vmf);
45467267ec00SKirill A. Shutemov 		if (ret)
45477267ec00SKirill A. Shutemov 			return ret;
45488c6e50b0SKirill A. Shutemov 	}
4549e655fb29SKirill A. Shutemov 
4550936ca80dSJan Kara 	ret = __do_fault(vmf);
4551e655fb29SKirill A. Shutemov 	if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY)))
4552e655fb29SKirill A. Shutemov 		return ret;
4553e655fb29SKirill A. Shutemov 
45549118c0cbSJan Kara 	ret |= finish_fault(vmf);
455522d1e68fSSidhartha Kumar 	folio = page_folio(vmf->page);
455622d1e68fSSidhartha Kumar 	folio_unlock(folio);
45577267ec00SKirill A. Shutemov 	if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY)))
455822d1e68fSSidhartha Kumar 		folio_put(folio);
4559e655fb29SKirill A. Shutemov 	return ret;
4560e655fb29SKirill A. Shutemov }
4561e655fb29SKirill A. Shutemov 
45622b740303SSouptick Joarder static vm_fault_t do_cow_fault(struct vm_fault *vmf)
4563ec47c3b9SKirill A. Shutemov {
456482b0f8c3SJan Kara 	struct vm_area_struct *vma = vmf->vma;
45652b740303SSouptick Joarder 	vm_fault_t ret;
4566ec47c3b9SKirill A. Shutemov 
4567ec47c3b9SKirill A. Shutemov 	if (unlikely(anon_vma_prepare(vma)))
4568ec47c3b9SKirill A. Shutemov 		return VM_FAULT_OOM;
4569ec47c3b9SKirill A. Shutemov 
4570936ca80dSJan Kara 	vmf->cow_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, vmf->address);
4571936ca80dSJan Kara 	if (!vmf->cow_page)
4572ec47c3b9SKirill A. Shutemov 		return VM_FAULT_OOM;
4573ec47c3b9SKirill A. Shutemov 
45748f425e4eSMatthew Wilcox (Oracle) 	if (mem_cgroup_charge(page_folio(vmf->cow_page), vma->vm_mm,
45758f425e4eSMatthew Wilcox (Oracle) 				GFP_KERNEL)) {
4576936ca80dSJan Kara 		put_page(vmf->cow_page);
4577ec47c3b9SKirill A. Shutemov 		return VM_FAULT_OOM;
4578ec47c3b9SKirill A. Shutemov 	}
457968fa572bSKefeng Wang 	folio_throttle_swaprate(page_folio(vmf->cow_page), GFP_KERNEL);
4580ec47c3b9SKirill A. Shutemov 
4581936ca80dSJan Kara 	ret = __do_fault(vmf);
4582ec47c3b9SKirill A. Shutemov 	if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY)))
4583ec47c3b9SKirill A. Shutemov 		goto uncharge_out;
45843917048dSJan Kara 	if (ret & VM_FAULT_DONE_COW)
45853917048dSJan Kara 		return ret;
4586ec47c3b9SKirill A. Shutemov 
4587936ca80dSJan Kara 	copy_user_highpage(vmf->cow_page, vmf->page, vmf->address, vma);
4588936ca80dSJan Kara 	__SetPageUptodate(vmf->cow_page);
4589ec47c3b9SKirill A. Shutemov 
45909118c0cbSJan Kara 	ret |= finish_fault(vmf);
4591936ca80dSJan Kara 	unlock_page(vmf->page);
4592936ca80dSJan Kara 	put_page(vmf->page);
45937267ec00SKirill A. Shutemov 	if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY)))
45947267ec00SKirill A. Shutemov 		goto uncharge_out;
4595ec47c3b9SKirill A. Shutemov 	return ret;
4596ec47c3b9SKirill A. Shutemov uncharge_out:
4597936ca80dSJan Kara 	put_page(vmf->cow_page);
4598ec47c3b9SKirill A. Shutemov 	return ret;
4599ec47c3b9SKirill A. Shutemov }
4600ec47c3b9SKirill A. Shutemov 
46012b740303SSouptick Joarder static vm_fault_t do_shared_fault(struct vm_fault *vmf)
46021da177e4SLinus Torvalds {
460382b0f8c3SJan Kara 	struct vm_area_struct *vma = vmf->vma;
46042b740303SSouptick Joarder 	vm_fault_t ret, tmp;
46056f609b7eSSidhartha Kumar 	struct folio *folio;
46061d65f86dSKAMEZAWA Hiroyuki 
4607936ca80dSJan Kara 	ret = __do_fault(vmf);
46087eae74afSKirill A. Shutemov 	if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY)))
4609f0c6d4d2SKirill A. Shutemov 		return ret;
46101da177e4SLinus Torvalds 
46116f609b7eSSidhartha Kumar 	folio = page_folio(vmf->page);
46126f609b7eSSidhartha Kumar 
46131da177e4SLinus Torvalds 	/*
4614f0c6d4d2SKirill A. Shutemov 	 * Check if the backing address space wants to know that the page is
4615f0c6d4d2SKirill A. Shutemov 	 * about to become writable
46161da177e4SLinus Torvalds 	 */
4617fb09a464SKirill A. Shutemov 	if (vma->vm_ops->page_mkwrite) {
46186f609b7eSSidhartha Kumar 		folio_unlock(folio);
461986aa6998SSidhartha Kumar 		tmp = do_page_mkwrite(vmf, folio);
4620fb09a464SKirill A. Shutemov 		if (unlikely(!tmp ||
4621fb09a464SKirill A. Shutemov 				(tmp & (VM_FAULT_ERROR | VM_FAULT_NOPAGE)))) {
46226f609b7eSSidhartha Kumar 			folio_put(folio);
4623f0c6d4d2SKirill A. Shutemov 			return tmp;
462469676147SMark Fasheh 		}
4625d0217ac0SNick Piggin 	}
4626fb09a464SKirill A. Shutemov 
46279118c0cbSJan Kara 	ret |= finish_fault(vmf);
46287267ec00SKirill A. Shutemov 	if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE |
46297267ec00SKirill A. Shutemov 					VM_FAULT_RETRY))) {
46306f609b7eSSidhartha Kumar 		folio_unlock(folio);
46316f609b7eSSidhartha Kumar 		folio_put(folio);
4632f0c6d4d2SKirill A. Shutemov 		return ret;
46339637a5efSDavid Howells 	}
4634d00806b1SNick Piggin 
463589b15332SJohannes Weiner 	ret |= fault_dirty_shared_page(vmf);
4636b827e496SNick Piggin 	return ret;
463754cb8821SNick Piggin }
4638d00806b1SNick Piggin 
46399a95f3cfSPaul Cassella /*
4640c1e8d7c6SMichel Lespinasse  * We enter with non-exclusive mmap_lock (to exclude vma changes,
46419a95f3cfSPaul Cassella  * but allow concurrent faults).
4642c1e8d7c6SMichel Lespinasse  * The mmap_lock may have been released depending on flags and our
46439138e47eSMatthew Wilcox (Oracle)  * return value.  See filemap_fault() and __folio_lock_or_retry().
4644c1e8d7c6SMichel Lespinasse  * If mmap_lock is released, vma may become invalid (for example
4645fc8efd2dSJan Stancek  * by other thread calling munmap()).
46469a95f3cfSPaul Cassella  */
46472b740303SSouptick Joarder static vm_fault_t do_fault(struct vm_fault *vmf)
464854cb8821SNick Piggin {
464982b0f8c3SJan Kara 	struct vm_area_struct *vma = vmf->vma;
4650fc8efd2dSJan Stancek 	struct mm_struct *vm_mm = vma->vm_mm;
46512b740303SSouptick Joarder 	vm_fault_t ret;
465254cb8821SNick Piggin 
4653ff09d7ecSAneesh Kumar K.V 	/*
4654ff09d7ecSAneesh Kumar K.V 	 * The VMA was not fully populated on mmap() or missing VM_DONTEXPAND
4655ff09d7ecSAneesh Kumar K.V 	 */
4656ff09d7ecSAneesh Kumar K.V 	if (!vma->vm_ops->fault) {
46573db82b93SHugh Dickins 		vmf->pte = pte_offset_map_lock(vmf->vma->vm_mm, vmf->pmd,
46583db82b93SHugh Dickins 					       vmf->address, &vmf->ptl);
46593db82b93SHugh Dickins 		if (unlikely(!vmf->pte))
4660b0b9b3dfSHugh Dickins 			ret = VM_FAULT_SIGBUS;
4661ff09d7ecSAneesh Kumar K.V 		else {
4662ff09d7ecSAneesh Kumar K.V 			/*
4663ff09d7ecSAneesh Kumar K.V 			 * Make sure this is not a temporary clearing of pte
4664ff09d7ecSAneesh Kumar K.V 			 * by holding ptl and checking again. A R/M/W update
4665ff09d7ecSAneesh Kumar K.V 			 * of pte involves: take ptl, clearing the pte so that
4666ff09d7ecSAneesh Kumar K.V 			 * we don't have concurrent modification by hardware
4667ff09d7ecSAneesh Kumar K.V 			 * followed by an update.
4668ff09d7ecSAneesh Kumar K.V 			 */
4669c33c7948SRyan Roberts 			if (unlikely(pte_none(ptep_get(vmf->pte))))
4670ff09d7ecSAneesh Kumar K.V 				ret = VM_FAULT_SIGBUS;
4671ff09d7ecSAneesh Kumar K.V 			else
4672ff09d7ecSAneesh Kumar K.V 				ret = VM_FAULT_NOPAGE;
4673ff09d7ecSAneesh Kumar K.V 
4674ff09d7ecSAneesh Kumar K.V 			pte_unmap_unlock(vmf->pte, vmf->ptl);
4675ff09d7ecSAneesh Kumar K.V 		}
4676ff09d7ecSAneesh Kumar K.V 	} else if (!(vmf->flags & FAULT_FLAG_WRITE))
4677b0b9b3dfSHugh Dickins 		ret = do_read_fault(vmf);
4678b0b9b3dfSHugh Dickins 	else if (!(vma->vm_flags & VM_SHARED))
4679b0b9b3dfSHugh Dickins 		ret = do_cow_fault(vmf);
4680b0b9b3dfSHugh Dickins 	else
4681b0b9b3dfSHugh Dickins 		ret = do_shared_fault(vmf);
4682b0b9b3dfSHugh Dickins 
4683b0b9b3dfSHugh Dickins 	/* preallocated pagetable is unused: free it */
4684b0b9b3dfSHugh Dickins 	if (vmf->prealloc_pte) {
4685fc8efd2dSJan Stancek 		pte_free(vm_mm, vmf->prealloc_pte);
46867f2b6ce8STobin C Harding 		vmf->prealloc_pte = NULL;
4687b0b9b3dfSHugh Dickins 	}
4688b0b9b3dfSHugh Dickins 	return ret;
468954cb8821SNick Piggin }
469054cb8821SNick Piggin 
4691f4c0d836SYang Shi int numa_migrate_prep(struct page *page, struct vm_area_struct *vma,
4692f4c0d836SYang Shi 		      unsigned long addr, int page_nid, int *flags)
46939532fec1SMel Gorman {
46949532fec1SMel Gorman 	get_page(page);
46959532fec1SMel Gorman 
4696fc137c0dSRaghavendra K T 	/* Record the current PID acceesing VMA */
4697fc137c0dSRaghavendra K T 	vma_set_access_pid_bit(vma);
4698fc137c0dSRaghavendra K T 
46999532fec1SMel Gorman 	count_vm_numa_event(NUMA_HINT_FAULTS);
470004bb2f94SRik van Riel 	if (page_nid == numa_node_id()) {
47019532fec1SMel Gorman 		count_vm_numa_event(NUMA_HINT_FAULTS_LOCAL);
470204bb2f94SRik van Riel 		*flags |= TNF_FAULT_LOCAL;
470304bb2f94SRik van Riel 	}
47049532fec1SMel Gorman 
47059532fec1SMel Gorman 	return mpol_misplaced(page, vma, addr);
47069532fec1SMel Gorman }
47079532fec1SMel Gorman 
47082b740303SSouptick Joarder static vm_fault_t do_numa_page(struct vm_fault *vmf)
4709d10e63f2SMel Gorman {
471082b0f8c3SJan Kara 	struct vm_area_struct *vma = vmf->vma;
47114daae3b4SMel Gorman 	struct page *page = NULL;
471298fa15f3SAnshuman Khandual 	int page_nid = NUMA_NO_NODE;
47136a56ccbcSDavid Hildenbrand 	bool writable = false;
471490572890SPeter Zijlstra 	int last_cpupid;
4715cbee9f88SPeter Zijlstra 	int target_nid;
471604a86453SAneesh Kumar K.V 	pte_t pte, old_pte;
47176688cc05SPeter Zijlstra 	int flags = 0;
4718d10e63f2SMel Gorman 
4719d10e63f2SMel Gorman 	/*
4720d10e63f2SMel Gorman 	 * The "pte" at this point cannot be used safely without
4721d10e63f2SMel Gorman 	 * validation through pte_unmap_same(). It's of NUMA type but
4722d10e63f2SMel Gorman 	 * the pfn may be screwed if the read is non atomic.
4723d10e63f2SMel Gorman 	 */
472482b0f8c3SJan Kara 	spin_lock(vmf->ptl);
4725c33c7948SRyan Roberts 	if (unlikely(!pte_same(ptep_get(vmf->pte), vmf->orig_pte))) {
472682b0f8c3SJan Kara 		pte_unmap_unlock(vmf->pte, vmf->ptl);
47274daae3b4SMel Gorman 		goto out;
47284daae3b4SMel Gorman 	}
47294daae3b4SMel Gorman 
4730b99a342dSHuang Ying 	/* Get the normal PTE  */
4731b99a342dSHuang Ying 	old_pte = ptep_get(vmf->pte);
473204a86453SAneesh Kumar K.V 	pte = pte_modify(old_pte, vma->vm_page_prot);
4733d10e63f2SMel Gorman 
47346a56ccbcSDavid Hildenbrand 	/*
47356a56ccbcSDavid Hildenbrand 	 * Detect now whether the PTE could be writable; this information
47366a56ccbcSDavid Hildenbrand 	 * is only valid while holding the PT lock.
47376a56ccbcSDavid Hildenbrand 	 */
47386a56ccbcSDavid Hildenbrand 	writable = pte_write(pte);
47396a56ccbcSDavid Hildenbrand 	if (!writable && vma_wants_manual_pte_write_upgrade(vma) &&
47406a56ccbcSDavid Hildenbrand 	    can_change_pte_writable(vma, vmf->address, pte))
47416a56ccbcSDavid Hildenbrand 		writable = true;
47426a56ccbcSDavid Hildenbrand 
474382b0f8c3SJan Kara 	page = vm_normal_page(vma, vmf->address, pte);
47443218f871SAlex Sierra 	if (!page || is_zone_device_page(page))
4745b99a342dSHuang Ying 		goto out_map;
4746d10e63f2SMel Gorman 
4747e81c4802SKirill A. Shutemov 	/* TODO: handle PTE-mapped THP */
4748b99a342dSHuang Ying 	if (PageCompound(page))
4749b99a342dSHuang Ying 		goto out_map;
4750e81c4802SKirill A. Shutemov 
47516688cc05SPeter Zijlstra 	/*
4752bea66fbdSMel Gorman 	 * Avoid grouping on RO pages in general. RO pages shouldn't hurt as
4753bea66fbdSMel Gorman 	 * much anyway since they can be in shared cache state. This misses
4754bea66fbdSMel Gorman 	 * the case where a mapping is writable but the process never writes
4755bea66fbdSMel Gorman 	 * to it but pte_write gets cleared during protection updates and
4756bea66fbdSMel Gorman 	 * pte_dirty has unpredictable behaviour between PTE scan updates,
4757bea66fbdSMel Gorman 	 * background writeback, dirty balancing and application behaviour.
47586688cc05SPeter Zijlstra 	 */
47596a56ccbcSDavid Hildenbrand 	if (!writable)
47606688cc05SPeter Zijlstra 		flags |= TNF_NO_GROUP;
47616688cc05SPeter Zijlstra 
4762dabe1d99SRik van Riel 	/*
4763dabe1d99SRik van Riel 	 * Flag if the page is shared between multiple address spaces. This
4764dabe1d99SRik van Riel 	 * is later used when determining whether to group tasks together
4765dabe1d99SRik van Riel 	 */
4766dabe1d99SRik van Riel 	if (page_mapcount(page) > 1 && (vma->vm_flags & VM_SHARED))
4767dabe1d99SRik van Riel 		flags |= TNF_SHARED;
4768dabe1d99SRik van Riel 
47698191acbdSMel Gorman 	page_nid = page_to_nid(page);
477033024536SHuang Ying 	/*
477133024536SHuang Ying 	 * For memory tiering mode, cpupid of slow memory page is used
477233024536SHuang Ying 	 * to record page access time.  So use default value.
477333024536SHuang Ying 	 */
477433024536SHuang Ying 	if ((sysctl_numa_balancing_mode & NUMA_BALANCING_MEMORY_TIERING) &&
477533024536SHuang Ying 	    !node_is_toptier(page_nid))
477633024536SHuang Ying 		last_cpupid = (-1 & LAST_CPUPID_MASK);
477733024536SHuang Ying 	else
477833024536SHuang Ying 		last_cpupid = page_cpupid_last(page);
477982b0f8c3SJan Kara 	target_nid = numa_migrate_prep(page, vma, vmf->address, page_nid,
4780bae473a4SKirill A. Shutemov 			&flags);
478198fa15f3SAnshuman Khandual 	if (target_nid == NUMA_NO_NODE) {
47824daae3b4SMel Gorman 		put_page(page);
4783b99a342dSHuang Ying 		goto out_map;
47844daae3b4SMel Gorman 	}
4785b99a342dSHuang Ying 	pte_unmap_unlock(vmf->pte, vmf->ptl);
47866a56ccbcSDavid Hildenbrand 	writable = false;
47874daae3b4SMel Gorman 
47884daae3b4SMel Gorman 	/* Migrate to the requested node */
4789bf90ac19SWang Qing 	if (migrate_misplaced_page(page, vma, target_nid)) {
47908191acbdSMel Gorman 		page_nid = target_nid;
47916688cc05SPeter Zijlstra 		flags |= TNF_MIGRATED;
4792b99a342dSHuang Ying 	} else {
4793074c2381SMel Gorman 		flags |= TNF_MIGRATE_FAIL;
4794c7ad0880SHugh Dickins 		vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd,
4795c7ad0880SHugh Dickins 					       vmf->address, &vmf->ptl);
4796c7ad0880SHugh Dickins 		if (unlikely(!vmf->pte))
4797c7ad0880SHugh Dickins 			goto out;
4798c33c7948SRyan Roberts 		if (unlikely(!pte_same(ptep_get(vmf->pte), vmf->orig_pte))) {
4799b99a342dSHuang Ying 			pte_unmap_unlock(vmf->pte, vmf->ptl);
4800b99a342dSHuang Ying 			goto out;
4801b99a342dSHuang Ying 		}
4802b99a342dSHuang Ying 		goto out_map;
4803b99a342dSHuang Ying 	}
48044daae3b4SMel Gorman 
48054daae3b4SMel Gorman out:
480698fa15f3SAnshuman Khandual 	if (page_nid != NUMA_NO_NODE)
48076688cc05SPeter Zijlstra 		task_numa_fault(last_cpupid, page_nid, 1, flags);
4808d10e63f2SMel Gorman 	return 0;
4809b99a342dSHuang Ying out_map:
4810b99a342dSHuang Ying 	/*
4811b99a342dSHuang Ying 	 * Make it present again, depending on how arch implements
4812b99a342dSHuang Ying 	 * non-accessible ptes, some can allow access by kernel mode.
4813b99a342dSHuang Ying 	 */
4814b99a342dSHuang Ying 	old_pte = ptep_modify_prot_start(vma, vmf->address, vmf->pte);
4815b99a342dSHuang Ying 	pte = pte_modify(old_pte, vma->vm_page_prot);
4816b99a342dSHuang Ying 	pte = pte_mkyoung(pte);
48176a56ccbcSDavid Hildenbrand 	if (writable)
4818b99a342dSHuang Ying 		pte = pte_mkwrite(pte);
4819b99a342dSHuang Ying 	ptep_modify_prot_commit(vma, vmf->address, vmf->pte, old_pte, pte);
4820b99a342dSHuang Ying 	update_mmu_cache(vma, vmf->address, vmf->pte);
4821b99a342dSHuang Ying 	pte_unmap_unlock(vmf->pte, vmf->ptl);
4822b99a342dSHuang Ying 	goto out;
4823d10e63f2SMel Gorman }
4824d10e63f2SMel Gorman 
48252b740303SSouptick Joarder static inline vm_fault_t create_huge_pmd(struct vm_fault *vmf)
4826b96375f7SMatthew Wilcox {
4827f4200391SDave Jiang 	if (vma_is_anonymous(vmf->vma))
482882b0f8c3SJan Kara 		return do_huge_pmd_anonymous_page(vmf);
4829a2d58167SDave Jiang 	if (vmf->vma->vm_ops->huge_fault)
4830c791ace1SDave Jiang 		return vmf->vma->vm_ops->huge_fault(vmf, PE_SIZE_PMD);
4831b96375f7SMatthew Wilcox 	return VM_FAULT_FALLBACK;
4832b96375f7SMatthew Wilcox }
4833b96375f7SMatthew Wilcox 
4834183f24aaSGeert Uytterhoeven /* `inline' is required to avoid gcc 4.1.2 build error */
48355db4f15cSYang Shi static inline vm_fault_t wp_huge_pmd(struct vm_fault *vmf)
4836b96375f7SMatthew Wilcox {
4837c89357e2SDavid Hildenbrand 	const bool unshare = vmf->flags & FAULT_FLAG_UNSHARE;
4838aea06577SDavid Hildenbrand 	vm_fault_t ret;
4839c89357e2SDavid Hildenbrand 
4840529b930bSAndrea Arcangeli 	if (vma_is_anonymous(vmf->vma)) {
4841c89357e2SDavid Hildenbrand 		if (likely(!unshare) &&
4842c89357e2SDavid Hildenbrand 		    userfaultfd_huge_pmd_wp(vmf->vma, vmf->orig_pmd))
4843529b930bSAndrea Arcangeli 			return handle_userfault(vmf, VM_UFFD_WP);
48445db4f15cSYang Shi 		return do_huge_pmd_wp_page(vmf);
4845529b930bSAndrea Arcangeli 	}
4846af9e4d5fSKirill A. Shutemov 
4847aea06577SDavid Hildenbrand 	if (vmf->vma->vm_flags & (VM_SHARED | VM_MAYSHARE)) {
4848aea06577SDavid Hildenbrand 		if (vmf->vma->vm_ops->huge_fault) {
4849aea06577SDavid Hildenbrand 			ret = vmf->vma->vm_ops->huge_fault(vmf, PE_SIZE_PMD);
4850327e9fd4SThomas Hellstrom (VMware) 			if (!(ret & VM_FAULT_FALLBACK))
4851327e9fd4SThomas Hellstrom (VMware) 				return ret;
4852327e9fd4SThomas Hellstrom (VMware) 		}
4853aea06577SDavid Hildenbrand 	}
4854327e9fd4SThomas Hellstrom (VMware) 
4855327e9fd4SThomas Hellstrom (VMware) 	/* COW or write-notify handled on pte level: split pmd. */
485682b0f8c3SJan Kara 	__split_huge_pmd(vmf->vma, vmf->pmd, vmf->address, false, NULL);
4857af9e4d5fSKirill A. Shutemov 
4858b96375f7SMatthew Wilcox 	return VM_FAULT_FALLBACK;
4859b96375f7SMatthew Wilcox }
4860b96375f7SMatthew Wilcox 
48612b740303SSouptick Joarder static vm_fault_t create_huge_pud(struct vm_fault *vmf)
4862a00cc7d9SMatthew Wilcox {
4863327e9fd4SThomas Hellstrom (VMware) #if defined(CONFIG_TRANSPARENT_HUGEPAGE) &&			\
4864327e9fd4SThomas Hellstrom (VMware) 	defined(CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD)
4865a00cc7d9SMatthew Wilcox 	/* No support for anonymous transparent PUD pages yet */
4866a00cc7d9SMatthew Wilcox 	if (vma_is_anonymous(vmf->vma))
486714c99d65SGowans, James 		return VM_FAULT_FALLBACK;
486814c99d65SGowans, James 	if (vmf->vma->vm_ops->huge_fault)
486914c99d65SGowans, James 		return vmf->vma->vm_ops->huge_fault(vmf, PE_SIZE_PUD);
487014c99d65SGowans, James #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
487114c99d65SGowans, James 	return VM_FAULT_FALLBACK;
487214c99d65SGowans, James }
487314c99d65SGowans, James 
487414c99d65SGowans, James static vm_fault_t wp_huge_pud(struct vm_fault *vmf, pud_t orig_pud)
487514c99d65SGowans, James {
487614c99d65SGowans, James #if defined(CONFIG_TRANSPARENT_HUGEPAGE) &&			\
487714c99d65SGowans, James 	defined(CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD)
4878aea06577SDavid Hildenbrand 	vm_fault_t ret;
4879aea06577SDavid Hildenbrand 
488014c99d65SGowans, James 	/* No support for anonymous transparent PUD pages yet */
488114c99d65SGowans, James 	if (vma_is_anonymous(vmf->vma))
4882327e9fd4SThomas Hellstrom (VMware) 		goto split;
4883aea06577SDavid Hildenbrand 	if (vmf->vma->vm_flags & (VM_SHARED | VM_MAYSHARE)) {
4884327e9fd4SThomas Hellstrom (VMware) 		if (vmf->vma->vm_ops->huge_fault) {
4885aea06577SDavid Hildenbrand 			ret = vmf->vma->vm_ops->huge_fault(vmf, PE_SIZE_PUD);
4886327e9fd4SThomas Hellstrom (VMware) 			if (!(ret & VM_FAULT_FALLBACK))
4887327e9fd4SThomas Hellstrom (VMware) 				return ret;
4888327e9fd4SThomas Hellstrom (VMware) 		}
4889aea06577SDavid Hildenbrand 	}
4890327e9fd4SThomas Hellstrom (VMware) split:
4891327e9fd4SThomas Hellstrom (VMware) 	/* COW or write-notify not handled on PUD level: split pud.*/
4892327e9fd4SThomas Hellstrom (VMware) 	__split_huge_pud(vmf->vma, vmf->pud, vmf->address);
489314c99d65SGowans, James #endif /* CONFIG_TRANSPARENT_HUGEPAGE && CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD */
4894a00cc7d9SMatthew Wilcox 	return VM_FAULT_FALLBACK;
4895a00cc7d9SMatthew Wilcox }
4896a00cc7d9SMatthew Wilcox 
48971da177e4SLinus Torvalds /*
48981da177e4SLinus Torvalds  * These routines also need to handle stuff like marking pages dirty
48991da177e4SLinus Torvalds  * and/or accessed for architectures that don't do it in hardware (most
49001da177e4SLinus Torvalds  * RISC architectures).  The early dirtying is also good on the i386.
49011da177e4SLinus Torvalds  *
49021da177e4SLinus Torvalds  * There is also a hook called "update_mmu_cache()" that architectures
49031da177e4SLinus Torvalds  * with external mmu caches can use to update those (ie the Sparc or
49041da177e4SLinus Torvalds  * PowerPC hashed page tables that act as extended TLBs).
49051da177e4SLinus Torvalds  *
4906c1e8d7c6SMichel Lespinasse  * We enter with non-exclusive mmap_lock (to exclude vma changes, but allow
49077267ec00SKirill A. Shutemov  * concurrent faults).
49089a95f3cfSPaul Cassella  *
4909c1e8d7c6SMichel Lespinasse  * The mmap_lock may have been released depending on flags and our return value.
49109138e47eSMatthew Wilcox (Oracle)  * See filemap_fault() and __folio_lock_or_retry().
49111da177e4SLinus Torvalds  */
49122b740303SSouptick Joarder static vm_fault_t handle_pte_fault(struct vm_fault *vmf)
49131da177e4SLinus Torvalds {
49141da177e4SLinus Torvalds 	pte_t entry;
49151da177e4SLinus Torvalds 
491682b0f8c3SJan Kara 	if (unlikely(pmd_none(*vmf->pmd))) {
49177267ec00SKirill A. Shutemov 		/*
49187267ec00SKirill A. Shutemov 		 * Leave __pte_alloc() until later: because vm_ops->fault may
49197267ec00SKirill A. Shutemov 		 * want to allocate huge page, and if we expose page table
49207267ec00SKirill A. Shutemov 		 * for an instant, it will be difficult to retract from
49217267ec00SKirill A. Shutemov 		 * concurrent faults and from rmap lookups.
49227267ec00SKirill A. Shutemov 		 */
492382b0f8c3SJan Kara 		vmf->pte = NULL;
4924f46f2adeSPeter Xu 		vmf->flags &= ~FAULT_FLAG_ORIG_PTE_VALID;
49257267ec00SKirill A. Shutemov 	} else {
4926f9ce0be7SKirill A. Shutemov 		/*
49277267ec00SKirill A. Shutemov 		 * A regular pmd is established and it can't morph into a huge
4928c7ad0880SHugh Dickins 		 * pmd by anon khugepaged, since that takes mmap_lock in write
4929c7ad0880SHugh Dickins 		 * mode; but shmem or file collapse to THP could still morph
4930c7ad0880SHugh Dickins 		 * it into a huge pmd: just retry later if so.
49317267ec00SKirill A. Shutemov 		 */
4932c7ad0880SHugh Dickins 		vmf->pte = pte_offset_map_nolock(vmf->vma->vm_mm, vmf->pmd,
4933c7ad0880SHugh Dickins 						 vmf->address, &vmf->ptl);
4934c7ad0880SHugh Dickins 		if (unlikely(!vmf->pte))
4935c7ad0880SHugh Dickins 			return 0;
493626e1a0c3SHugh Dickins 		vmf->orig_pte = ptep_get_lockless(vmf->pte);
4937f46f2adeSPeter Xu 		vmf->flags |= FAULT_FLAG_ORIG_PTE_VALID;
49387267ec00SKirill A. Shutemov 
49392994302bSJan Kara 		if (pte_none(vmf->orig_pte)) {
494082b0f8c3SJan Kara 			pte_unmap(vmf->pte);
494182b0f8c3SJan Kara 			vmf->pte = NULL;
49427267ec00SKirill A. Shutemov 		}
49437267ec00SKirill A. Shutemov 	}
49447267ec00SKirill A. Shutemov 
49452bad466cSPeter Xu 	if (!vmf->pte)
49462bad466cSPeter Xu 		return do_pte_missing(vmf);
49477267ec00SKirill A. Shutemov 
49482994302bSJan Kara 	if (!pte_present(vmf->orig_pte))
49492994302bSJan Kara 		return do_swap_page(vmf);
49501da177e4SLinus Torvalds 
49512994302bSJan Kara 	if (pte_protnone(vmf->orig_pte) && vma_is_accessible(vmf->vma))
49522994302bSJan Kara 		return do_numa_page(vmf);
4953d10e63f2SMel Gorman 
495482b0f8c3SJan Kara 	spin_lock(vmf->ptl);
49552994302bSJan Kara 	entry = vmf->orig_pte;
4956c33c7948SRyan Roberts 	if (unlikely(!pte_same(ptep_get(vmf->pte), entry))) {
49577df67697SBibo Mao 		update_mmu_tlb(vmf->vma, vmf->address, vmf->pte);
49588f4e2101SHugh Dickins 		goto unlock;
49597df67697SBibo Mao 	}
4960c89357e2SDavid Hildenbrand 	if (vmf->flags & (FAULT_FLAG_WRITE|FAULT_FLAG_UNSHARE)) {
4961f6f37321SLinus Torvalds 		if (!pte_write(entry))
49622994302bSJan Kara 			return do_wp_page(vmf);
4963c89357e2SDavid Hildenbrand 		else if (likely(vmf->flags & FAULT_FLAG_WRITE))
49641da177e4SLinus Torvalds 			entry = pte_mkdirty(entry);
49651da177e4SLinus Torvalds 	}
49661da177e4SLinus Torvalds 	entry = pte_mkyoung(entry);
496782b0f8c3SJan Kara 	if (ptep_set_access_flags(vmf->vma, vmf->address, vmf->pte, entry,
496882b0f8c3SJan Kara 				vmf->flags & FAULT_FLAG_WRITE)) {
496982b0f8c3SJan Kara 		update_mmu_cache(vmf->vma, vmf->address, vmf->pte);
49701a44e149SAndrea Arcangeli 	} else {
4971b7333b58SYang Shi 		/* Skip spurious TLB flush for retried page fault */
4972b7333b58SYang Shi 		if (vmf->flags & FAULT_FLAG_TRIED)
4973b7333b58SYang Shi 			goto unlock;
49741a44e149SAndrea Arcangeli 		/*
49751a44e149SAndrea Arcangeli 		 * This is needed only for protection faults but the arch code
49761a44e149SAndrea Arcangeli 		 * is not yet telling us if this is a protection fault or not.
49771a44e149SAndrea Arcangeli 		 * This still avoids useless tlb flushes for .text page faults
49781a44e149SAndrea Arcangeli 		 * with threads.
49791a44e149SAndrea Arcangeli 		 */
498082b0f8c3SJan Kara 		if (vmf->flags & FAULT_FLAG_WRITE)
498199c29133SGerald Schaefer 			flush_tlb_fix_spurious_fault(vmf->vma, vmf->address,
498299c29133SGerald Schaefer 						     vmf->pte);
49831a44e149SAndrea Arcangeli 	}
49848f4e2101SHugh Dickins unlock:
498582b0f8c3SJan Kara 	pte_unmap_unlock(vmf->pte, vmf->ptl);
498683c54070SNick Piggin 	return 0;
49871da177e4SLinus Torvalds }
49881da177e4SLinus Torvalds 
49891da177e4SLinus Torvalds /*
49901da177e4SLinus Torvalds  * By the time we get here, we already hold the mm semaphore
49919a95f3cfSPaul Cassella  *
4992c1e8d7c6SMichel Lespinasse  * The mmap_lock may have been released depending on flags and our
49939138e47eSMatthew Wilcox (Oracle)  * return value.  See filemap_fault() and __folio_lock_or_retry().
49941da177e4SLinus Torvalds  */
49952b740303SSouptick Joarder static vm_fault_t __handle_mm_fault(struct vm_area_struct *vma,
49962b740303SSouptick Joarder 		unsigned long address, unsigned int flags)
49971da177e4SLinus Torvalds {
499882b0f8c3SJan Kara 	struct vm_fault vmf = {
4999bae473a4SKirill A. Shutemov 		.vma = vma,
50001a29d85eSJan Kara 		.address = address & PAGE_MASK,
5001824ddc60SNadav Amit 		.real_address = address,
5002bae473a4SKirill A. Shutemov 		.flags = flags,
50030721ec8bSJan Kara 		.pgoff = linear_page_index(vma, address),
5004667240e0SJan Kara 		.gfp_mask = __get_fault_gfp_mask(vma),
5005bae473a4SKirill A. Shutemov 	};
5006dcddffd4SKirill A. Shutemov 	struct mm_struct *mm = vma->vm_mm;
50077da4e2cbSYang Shi 	unsigned long vm_flags = vma->vm_flags;
50081da177e4SLinus Torvalds 	pgd_t *pgd;
5009c2febafcSKirill A. Shutemov 	p4d_t *p4d;
50102b740303SSouptick Joarder 	vm_fault_t ret;
50111da177e4SLinus Torvalds 
50121da177e4SLinus Torvalds 	pgd = pgd_offset(mm, address);
5013c2febafcSKirill A. Shutemov 	p4d = p4d_alloc(mm, pgd, address);
5014c2febafcSKirill A. Shutemov 	if (!p4d)
5015c2febafcSKirill A. Shutemov 		return VM_FAULT_OOM;
5016a00cc7d9SMatthew Wilcox 
5017c2febafcSKirill A. Shutemov 	vmf.pud = pud_alloc(mm, p4d, address);
5018a00cc7d9SMatthew Wilcox 	if (!vmf.pud)
5019c74df32cSHugh Dickins 		return VM_FAULT_OOM;
5020625110b5SThomas Hellstrom retry_pud:
50217da4e2cbSYang Shi 	if (pud_none(*vmf.pud) &&
5022a7f4e6e4SZach O'Keefe 	    hugepage_vma_check(vma, vm_flags, false, true, true)) {
5023a00cc7d9SMatthew Wilcox 		ret = create_huge_pud(&vmf);
5024a00cc7d9SMatthew Wilcox 		if (!(ret & VM_FAULT_FALLBACK))
5025a00cc7d9SMatthew Wilcox 			return ret;
5026a00cc7d9SMatthew Wilcox 	} else {
5027a00cc7d9SMatthew Wilcox 		pud_t orig_pud = *vmf.pud;
5028a00cc7d9SMatthew Wilcox 
5029a00cc7d9SMatthew Wilcox 		barrier();
5030a00cc7d9SMatthew Wilcox 		if (pud_trans_huge(orig_pud) || pud_devmap(orig_pud)) {
5031a00cc7d9SMatthew Wilcox 
5032c89357e2SDavid Hildenbrand 			/*
5033c89357e2SDavid Hildenbrand 			 * TODO once we support anonymous PUDs: NUMA case and
5034c89357e2SDavid Hildenbrand 			 * FAULT_FLAG_UNSHARE handling.
5035c89357e2SDavid Hildenbrand 			 */
5036c89357e2SDavid Hildenbrand 			if ((flags & FAULT_FLAG_WRITE) && !pud_write(orig_pud)) {
5037a00cc7d9SMatthew Wilcox 				ret = wp_huge_pud(&vmf, orig_pud);
5038a00cc7d9SMatthew Wilcox 				if (!(ret & VM_FAULT_FALLBACK))
5039a00cc7d9SMatthew Wilcox 					return ret;
5040a00cc7d9SMatthew Wilcox 			} else {
5041a00cc7d9SMatthew Wilcox 				huge_pud_set_accessed(&vmf, orig_pud);
5042a00cc7d9SMatthew Wilcox 				return 0;
5043a00cc7d9SMatthew Wilcox 			}
5044a00cc7d9SMatthew Wilcox 		}
5045a00cc7d9SMatthew Wilcox 	}
5046a00cc7d9SMatthew Wilcox 
5047a00cc7d9SMatthew Wilcox 	vmf.pmd = pmd_alloc(mm, vmf.pud, address);
504882b0f8c3SJan Kara 	if (!vmf.pmd)
5049c74df32cSHugh Dickins 		return VM_FAULT_OOM;
5050625110b5SThomas Hellstrom 
5051625110b5SThomas Hellstrom 	/* Huge pud page fault raced with pmd_alloc? */
5052625110b5SThomas Hellstrom 	if (pud_trans_unstable(vmf.pud))
5053625110b5SThomas Hellstrom 		goto retry_pud;
5054625110b5SThomas Hellstrom 
50557da4e2cbSYang Shi 	if (pmd_none(*vmf.pmd) &&
5056a7f4e6e4SZach O'Keefe 	    hugepage_vma_check(vma, vm_flags, false, true, true)) {
5057a2d58167SDave Jiang 		ret = create_huge_pmd(&vmf);
5058c0292554SKirill A. Shutemov 		if (!(ret & VM_FAULT_FALLBACK))
5059c0292554SKirill A. Shutemov 			return ret;
506071e3aac0SAndrea Arcangeli 	} else {
506126e1a0c3SHugh Dickins 		vmf.orig_pmd = pmdp_get_lockless(vmf.pmd);
50621f1d06c3SDavid Rientjes 
50635db4f15cSYang Shi 		if (unlikely(is_swap_pmd(vmf.orig_pmd))) {
506484c3fc4eSZi Yan 			VM_BUG_ON(thp_migration_supported() &&
50655db4f15cSYang Shi 					  !is_pmd_migration_entry(vmf.orig_pmd));
50665db4f15cSYang Shi 			if (is_pmd_migration_entry(vmf.orig_pmd))
506784c3fc4eSZi Yan 				pmd_migration_entry_wait(mm, vmf.pmd);
506884c3fc4eSZi Yan 			return 0;
506984c3fc4eSZi Yan 		}
50705db4f15cSYang Shi 		if (pmd_trans_huge(vmf.orig_pmd) || pmd_devmap(vmf.orig_pmd)) {
50715db4f15cSYang Shi 			if (pmd_protnone(vmf.orig_pmd) && vma_is_accessible(vma))
50725db4f15cSYang Shi 				return do_huge_pmd_numa_page(&vmf);
5073d10e63f2SMel Gorman 
5074c89357e2SDavid Hildenbrand 			if ((flags & (FAULT_FLAG_WRITE|FAULT_FLAG_UNSHARE)) &&
5075c89357e2SDavid Hildenbrand 			    !pmd_write(vmf.orig_pmd)) {
50765db4f15cSYang Shi 				ret = wp_huge_pmd(&vmf);
50779845cbbdSKirill A. Shutemov 				if (!(ret & VM_FAULT_FALLBACK))
50781f1d06c3SDavid Rientjes 					return ret;
5079a1dd450bSWill Deacon 			} else {
50805db4f15cSYang Shi 				huge_pmd_set_accessed(&vmf);
508171e3aac0SAndrea Arcangeli 				return 0;
508271e3aac0SAndrea Arcangeli 			}
508371e3aac0SAndrea Arcangeli 		}
50849845cbbdSKirill A. Shutemov 	}
508571e3aac0SAndrea Arcangeli 
508682b0f8c3SJan Kara 	return handle_pte_fault(&vmf);
50871da177e4SLinus Torvalds }
50881da177e4SLinus Torvalds 
5089bce617edSPeter Xu /**
5090f0953a1bSIngo Molnar  * mm_account_fault - Do page fault accounting
5091809ef83cSYang Li  * @mm: mm from which memcg should be extracted. It can be NULL.
5092bce617edSPeter Xu  * @regs: the pt_regs struct pointer.  When set to NULL, will skip accounting
5093bce617edSPeter Xu  *        of perf event counters, but we'll still do the per-task accounting to
5094bce617edSPeter Xu  *        the task who triggered this page fault.
5095bce617edSPeter Xu  * @address: the faulted address.
5096bce617edSPeter Xu  * @flags: the fault flags.
5097bce617edSPeter Xu  * @ret: the fault retcode.
5098bce617edSPeter Xu  *
5099f0953a1bSIngo Molnar  * This will take care of most of the page fault accounting.  Meanwhile, it
5100bce617edSPeter Xu  * will also include the PERF_COUNT_SW_PAGE_FAULTS_[MAJ|MIN] perf counter
5101f0953a1bSIngo Molnar  * updates.  However, note that the handling of PERF_COUNT_SW_PAGE_FAULTS should
5102bce617edSPeter Xu  * still be in per-arch page fault handlers at the entry of page fault.
5103bce617edSPeter Xu  */
510453156443SSuren Baghdasaryan static inline void mm_account_fault(struct mm_struct *mm, struct pt_regs *regs,
5105bce617edSPeter Xu 				    unsigned long address, unsigned int flags,
5106bce617edSPeter Xu 				    vm_fault_t ret)
5107bce617edSPeter Xu {
5108bce617edSPeter Xu 	bool major;
5109bce617edSPeter Xu 
511053156443SSuren Baghdasaryan 	/* Incomplete faults will be accounted upon completion. */
511153156443SSuren Baghdasaryan 	if (ret & VM_FAULT_RETRY)
511253156443SSuren Baghdasaryan 		return;
511353156443SSuren Baghdasaryan 
5114bce617edSPeter Xu 	/*
511553156443SSuren Baghdasaryan 	 * To preserve the behavior of older kernels, PGFAULT counters record
511653156443SSuren Baghdasaryan 	 * both successful and failed faults, as opposed to perf counters,
511753156443SSuren Baghdasaryan 	 * which ignore failed cases.
5118bce617edSPeter Xu 	 */
511953156443SSuren Baghdasaryan 	count_vm_event(PGFAULT);
512053156443SSuren Baghdasaryan 	count_memcg_event_mm(mm, PGFAULT);
512153156443SSuren Baghdasaryan 
512253156443SSuren Baghdasaryan 	/*
512353156443SSuren Baghdasaryan 	 * Do not account for unsuccessful faults (e.g. when the address wasn't
512453156443SSuren Baghdasaryan 	 * valid).  That includes arch_vma_access_permitted() failing before
512553156443SSuren Baghdasaryan 	 * reaching here. So this is not a "this many hardware page faults"
512653156443SSuren Baghdasaryan 	 * counter.  We should use the hw profiling for that.
512753156443SSuren Baghdasaryan 	 */
512853156443SSuren Baghdasaryan 	if (ret & VM_FAULT_ERROR)
5129bce617edSPeter Xu 		return;
5130bce617edSPeter Xu 
5131bce617edSPeter Xu 	/*
5132bce617edSPeter Xu 	 * We define the fault as a major fault when the final successful fault
5133bce617edSPeter Xu 	 * is VM_FAULT_MAJOR, or if it retried (which implies that we couldn't
5134bce617edSPeter Xu 	 * handle it immediately previously).
5135bce617edSPeter Xu 	 */
5136bce617edSPeter Xu 	major = (ret & VM_FAULT_MAJOR) || (flags & FAULT_FLAG_TRIED);
5137bce617edSPeter Xu 
5138a2beb5f1SPeter Xu 	if (major)
5139a2beb5f1SPeter Xu 		current->maj_flt++;
5140a2beb5f1SPeter Xu 	else
5141a2beb5f1SPeter Xu 		current->min_flt++;
5142a2beb5f1SPeter Xu 
5143bce617edSPeter Xu 	/*
5144a2beb5f1SPeter Xu 	 * If the fault is done for GUP, regs will be NULL.  We only do the
5145a2beb5f1SPeter Xu 	 * accounting for the per thread fault counters who triggered the
5146a2beb5f1SPeter Xu 	 * fault, and we skip the perf event updates.
5147bce617edSPeter Xu 	 */
5148bce617edSPeter Xu 	if (!regs)
5149bce617edSPeter Xu 		return;
5150bce617edSPeter Xu 
5151a2beb5f1SPeter Xu 	if (major)
5152bce617edSPeter Xu 		perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1, regs, address);
5153a2beb5f1SPeter Xu 	else
5154bce617edSPeter Xu 		perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1, regs, address);
5155bce617edSPeter Xu }
5156bce617edSPeter Xu 
5157ec1c86b2SYu Zhao #ifdef CONFIG_LRU_GEN
5158ec1c86b2SYu Zhao static void lru_gen_enter_fault(struct vm_area_struct *vma)
5159ec1c86b2SYu Zhao {
51608788f678SYu Zhao 	/* the LRU algorithm only applies to accesses with recency */
51618788f678SYu Zhao 	current->in_lru_fault = vma_has_recency(vma);
5162ec1c86b2SYu Zhao }
5163ec1c86b2SYu Zhao 
5164ec1c86b2SYu Zhao static void lru_gen_exit_fault(void)
5165ec1c86b2SYu Zhao {
5166ec1c86b2SYu Zhao 	current->in_lru_fault = false;
5167ec1c86b2SYu Zhao }
5168ec1c86b2SYu Zhao #else
5169ec1c86b2SYu Zhao static void lru_gen_enter_fault(struct vm_area_struct *vma)
5170ec1c86b2SYu Zhao {
5171ec1c86b2SYu Zhao }
5172ec1c86b2SYu Zhao 
5173ec1c86b2SYu Zhao static void lru_gen_exit_fault(void)
5174ec1c86b2SYu Zhao {
5175ec1c86b2SYu Zhao }
5176ec1c86b2SYu Zhao #endif /* CONFIG_LRU_GEN */
5177ec1c86b2SYu Zhao 
5178cdc5021cSDavid Hildenbrand static vm_fault_t sanitize_fault_flags(struct vm_area_struct *vma,
5179cdc5021cSDavid Hildenbrand 				       unsigned int *flags)
5180cdc5021cSDavid Hildenbrand {
5181cdc5021cSDavid Hildenbrand 	if (unlikely(*flags & FAULT_FLAG_UNSHARE)) {
5182cdc5021cSDavid Hildenbrand 		if (WARN_ON_ONCE(*flags & FAULT_FLAG_WRITE))
5183cdc5021cSDavid Hildenbrand 			return VM_FAULT_SIGSEGV;
5184cdc5021cSDavid Hildenbrand 		/*
5185cdc5021cSDavid Hildenbrand 		 * FAULT_FLAG_UNSHARE only applies to COW mappings. Let's
5186cdc5021cSDavid Hildenbrand 		 * just treat it like an ordinary read-fault otherwise.
5187cdc5021cSDavid Hildenbrand 		 */
5188cdc5021cSDavid Hildenbrand 		if (!is_cow_mapping(vma->vm_flags))
5189cdc5021cSDavid Hildenbrand 			*flags &= ~FAULT_FLAG_UNSHARE;
519079881fedSDavid Hildenbrand 	} else if (*flags & FAULT_FLAG_WRITE) {
519179881fedSDavid Hildenbrand 		/* Write faults on read-only mappings are impossible ... */
519279881fedSDavid Hildenbrand 		if (WARN_ON_ONCE(!(vma->vm_flags & VM_MAYWRITE)))
519379881fedSDavid Hildenbrand 			return VM_FAULT_SIGSEGV;
519479881fedSDavid Hildenbrand 		/* ... and FOLL_FORCE only applies to COW mappings. */
519579881fedSDavid Hildenbrand 		if (WARN_ON_ONCE(!(vma->vm_flags & VM_WRITE) &&
519679881fedSDavid Hildenbrand 				 !is_cow_mapping(vma->vm_flags)))
519779881fedSDavid Hildenbrand 			return VM_FAULT_SIGSEGV;
5198cdc5021cSDavid Hildenbrand 	}
5199cdc5021cSDavid Hildenbrand 	return 0;
5200cdc5021cSDavid Hildenbrand }
5201cdc5021cSDavid Hildenbrand 
52029a95f3cfSPaul Cassella /*
52039a95f3cfSPaul Cassella  * By the time we get here, we already hold the mm semaphore
52049a95f3cfSPaul Cassella  *
5205c1e8d7c6SMichel Lespinasse  * The mmap_lock may have been released depending on flags and our
52069138e47eSMatthew Wilcox (Oracle)  * return value.  See filemap_fault() and __folio_lock_or_retry().
52079a95f3cfSPaul Cassella  */
52082b740303SSouptick Joarder vm_fault_t handle_mm_fault(struct vm_area_struct *vma, unsigned long address,
5209bce617edSPeter Xu 			   unsigned int flags, struct pt_regs *regs)
5210519e5247SJohannes Weiner {
521153156443SSuren Baghdasaryan 	/* If the fault handler drops the mmap_lock, vma may be freed */
521253156443SSuren Baghdasaryan 	struct mm_struct *mm = vma->vm_mm;
52132b740303SSouptick Joarder 	vm_fault_t ret;
5214519e5247SJohannes Weiner 
5215519e5247SJohannes Weiner 	__set_current_state(TASK_RUNNING);
5216519e5247SJohannes Weiner 
5217cdc5021cSDavid Hildenbrand 	ret = sanitize_fault_flags(vma, &flags);
5218cdc5021cSDavid Hildenbrand 	if (ret)
521953156443SSuren Baghdasaryan 		goto out;
5220cdc5021cSDavid Hildenbrand 
5221de0c799bSLaurent Dufour 	if (!arch_vma_access_permitted(vma, flags & FAULT_FLAG_WRITE,
5222de0c799bSLaurent Dufour 					    flags & FAULT_FLAG_INSTRUCTION,
522353156443SSuren Baghdasaryan 					    flags & FAULT_FLAG_REMOTE)) {
522453156443SSuren Baghdasaryan 		ret = VM_FAULT_SIGSEGV;
522553156443SSuren Baghdasaryan 		goto out;
522653156443SSuren Baghdasaryan 	}
5227de0c799bSLaurent Dufour 
5228519e5247SJohannes Weiner 	/*
5229519e5247SJohannes Weiner 	 * Enable the memcg OOM handling for faults triggered in user
5230519e5247SJohannes Weiner 	 * space.  Kernel faults are handled more gracefully.
5231519e5247SJohannes Weiner 	 */
5232519e5247SJohannes Weiner 	if (flags & FAULT_FLAG_USER)
523329ef680aSMichal Hocko 		mem_cgroup_enter_user_fault();
5234519e5247SJohannes Weiner 
5235ec1c86b2SYu Zhao 	lru_gen_enter_fault(vma);
5236ec1c86b2SYu Zhao 
5237bae473a4SKirill A. Shutemov 	if (unlikely(is_vm_hugetlb_page(vma)))
5238bae473a4SKirill A. Shutemov 		ret = hugetlb_fault(vma->vm_mm, vma, address, flags);
5239bae473a4SKirill A. Shutemov 	else
5240dcddffd4SKirill A. Shutemov 		ret = __handle_mm_fault(vma, address, flags);
5241519e5247SJohannes Weiner 
5242ec1c86b2SYu Zhao 	lru_gen_exit_fault();
5243ec1c86b2SYu Zhao 
524449426420SJohannes Weiner 	if (flags & FAULT_FLAG_USER) {
524529ef680aSMichal Hocko 		mem_cgroup_exit_user_fault();
524649426420SJohannes Weiner 		/*
524749426420SJohannes Weiner 		 * The task may have entered a memcg OOM situation but
524849426420SJohannes Weiner 		 * if the allocation error was handled gracefully (no
524949426420SJohannes Weiner 		 * VM_FAULT_OOM), there is no need to kill anything.
525049426420SJohannes Weiner 		 * Just clean up the OOM state peacefully.
525149426420SJohannes Weiner 		 */
525249426420SJohannes Weiner 		if (task_in_memcg_oom(current) && !(ret & VM_FAULT_OOM))
525349426420SJohannes Weiner 			mem_cgroup_oom_synchronize(false);
525449426420SJohannes Weiner 	}
525553156443SSuren Baghdasaryan out:
525653156443SSuren Baghdasaryan 	mm_account_fault(mm, regs, address, flags, ret);
5257bce617edSPeter Xu 
5258519e5247SJohannes Weiner 	return ret;
5259519e5247SJohannes Weiner }
5260e1d6d01aSJesse Barnes EXPORT_SYMBOL_GPL(handle_mm_fault);
5261519e5247SJohannes Weiner 
5262c2508ec5SLinus Torvalds #ifdef CONFIG_LOCK_MM_AND_FIND_VMA
5263c2508ec5SLinus Torvalds #include <linux/extable.h>
5264c2508ec5SLinus Torvalds 
5265c2508ec5SLinus Torvalds static inline bool get_mmap_lock_carefully(struct mm_struct *mm, struct pt_regs *regs)
5266c2508ec5SLinus Torvalds {
5267c2508ec5SLinus Torvalds 	/* Even if this succeeds, make it clear we *might* have slept */
5268c2508ec5SLinus Torvalds 	if (likely(mmap_read_trylock(mm))) {
5269c2508ec5SLinus Torvalds 		might_sleep();
5270c2508ec5SLinus Torvalds 		return true;
5271c2508ec5SLinus Torvalds 	}
5272c2508ec5SLinus Torvalds 
5273c2508ec5SLinus Torvalds 	if (regs && !user_mode(regs)) {
5274c2508ec5SLinus Torvalds 		unsigned long ip = instruction_pointer(regs);
5275c2508ec5SLinus Torvalds 		if (!search_exception_tables(ip))
5276c2508ec5SLinus Torvalds 			return false;
5277c2508ec5SLinus Torvalds 	}
5278c2508ec5SLinus Torvalds 
5279eda00472SLinus Torvalds 	return !mmap_read_lock_killable(mm);
5280c2508ec5SLinus Torvalds }
5281c2508ec5SLinus Torvalds 
5282c2508ec5SLinus Torvalds static inline bool mmap_upgrade_trylock(struct mm_struct *mm)
5283c2508ec5SLinus Torvalds {
5284c2508ec5SLinus Torvalds 	/*
5285c2508ec5SLinus Torvalds 	 * We don't have this operation yet.
5286c2508ec5SLinus Torvalds 	 *
5287c2508ec5SLinus Torvalds 	 * It should be easy enough to do: it's basically a
5288c2508ec5SLinus Torvalds 	 *    atomic_long_try_cmpxchg_acquire()
5289c2508ec5SLinus Torvalds 	 * from RWSEM_READER_BIAS -> RWSEM_WRITER_LOCKED, but
5290c2508ec5SLinus Torvalds 	 * it also needs the proper lockdep magic etc.
5291c2508ec5SLinus Torvalds 	 */
5292c2508ec5SLinus Torvalds 	return false;
5293c2508ec5SLinus Torvalds }
5294c2508ec5SLinus Torvalds 
5295c2508ec5SLinus Torvalds static inline bool upgrade_mmap_lock_carefully(struct mm_struct *mm, struct pt_regs *regs)
5296c2508ec5SLinus Torvalds {
5297c2508ec5SLinus Torvalds 	mmap_read_unlock(mm);
5298c2508ec5SLinus Torvalds 	if (regs && !user_mode(regs)) {
5299c2508ec5SLinus Torvalds 		unsigned long ip = instruction_pointer(regs);
5300c2508ec5SLinus Torvalds 		if (!search_exception_tables(ip))
5301c2508ec5SLinus Torvalds 			return false;
5302c2508ec5SLinus Torvalds 	}
5303eda00472SLinus Torvalds 	return !mmap_write_lock_killable(mm);
5304c2508ec5SLinus Torvalds }
5305c2508ec5SLinus Torvalds 
5306c2508ec5SLinus Torvalds /*
5307c2508ec5SLinus Torvalds  * Helper for page fault handling.
5308c2508ec5SLinus Torvalds  *
5309c2508ec5SLinus Torvalds  * This is kind of equivalend to "mmap_read_lock()" followed
5310c2508ec5SLinus Torvalds  * by "find_extend_vma()", except it's a lot more careful about
5311c2508ec5SLinus Torvalds  * the locking (and will drop the lock on failure).
5312c2508ec5SLinus Torvalds  *
5313c2508ec5SLinus Torvalds  * For example, if we have a kernel bug that causes a page
5314c2508ec5SLinus Torvalds  * fault, we don't want to just use mmap_read_lock() to get
5315c2508ec5SLinus Torvalds  * the mm lock, because that would deadlock if the bug were
5316c2508ec5SLinus Torvalds  * to happen while we're holding the mm lock for writing.
5317c2508ec5SLinus Torvalds  *
5318c2508ec5SLinus Torvalds  * So this checks the exception tables on kernel faults in
5319c2508ec5SLinus Torvalds  * order to only do this all for instructions that are actually
5320c2508ec5SLinus Torvalds  * expected to fault.
5321c2508ec5SLinus Torvalds  *
5322c2508ec5SLinus Torvalds  * We can also actually take the mm lock for writing if we
5323c2508ec5SLinus Torvalds  * need to extend the vma, which helps the VM layer a lot.
5324c2508ec5SLinus Torvalds  */
5325c2508ec5SLinus Torvalds struct vm_area_struct *lock_mm_and_find_vma(struct mm_struct *mm,
5326c2508ec5SLinus Torvalds 			unsigned long addr, struct pt_regs *regs)
5327c2508ec5SLinus Torvalds {
5328c2508ec5SLinus Torvalds 	struct vm_area_struct *vma;
5329c2508ec5SLinus Torvalds 
5330c2508ec5SLinus Torvalds 	if (!get_mmap_lock_carefully(mm, regs))
5331c2508ec5SLinus Torvalds 		return NULL;
5332c2508ec5SLinus Torvalds 
5333c2508ec5SLinus Torvalds 	vma = find_vma(mm, addr);
5334c2508ec5SLinus Torvalds 	if (likely(vma && (vma->vm_start <= addr)))
5335c2508ec5SLinus Torvalds 		return vma;
5336c2508ec5SLinus Torvalds 
5337c2508ec5SLinus Torvalds 	/*
5338c2508ec5SLinus Torvalds 	 * Well, dang. We might still be successful, but only
5339c2508ec5SLinus Torvalds 	 * if we can extend a vma to do so.
5340c2508ec5SLinus Torvalds 	 */
5341c2508ec5SLinus Torvalds 	if (!vma || !(vma->vm_flags & VM_GROWSDOWN)) {
5342c2508ec5SLinus Torvalds 		mmap_read_unlock(mm);
5343c2508ec5SLinus Torvalds 		return NULL;
5344c2508ec5SLinus Torvalds 	}
5345c2508ec5SLinus Torvalds 
5346c2508ec5SLinus Torvalds 	/*
5347c2508ec5SLinus Torvalds 	 * We can try to upgrade the mmap lock atomically,
5348c2508ec5SLinus Torvalds 	 * in which case we can continue to use the vma
5349c2508ec5SLinus Torvalds 	 * we already looked up.
5350c2508ec5SLinus Torvalds 	 *
5351c2508ec5SLinus Torvalds 	 * Otherwise we'll have to drop the mmap lock and
5352c2508ec5SLinus Torvalds 	 * re-take it, and also look up the vma again,
5353c2508ec5SLinus Torvalds 	 * re-checking it.
5354c2508ec5SLinus Torvalds 	 */
5355c2508ec5SLinus Torvalds 	if (!mmap_upgrade_trylock(mm)) {
5356c2508ec5SLinus Torvalds 		if (!upgrade_mmap_lock_carefully(mm, regs))
5357c2508ec5SLinus Torvalds 			return NULL;
5358c2508ec5SLinus Torvalds 
5359c2508ec5SLinus Torvalds 		vma = find_vma(mm, addr);
5360c2508ec5SLinus Torvalds 		if (!vma)
5361c2508ec5SLinus Torvalds 			goto fail;
5362c2508ec5SLinus Torvalds 		if (vma->vm_start <= addr)
5363c2508ec5SLinus Torvalds 			goto success;
5364c2508ec5SLinus Torvalds 		if (!(vma->vm_flags & VM_GROWSDOWN))
5365c2508ec5SLinus Torvalds 			goto fail;
5366c2508ec5SLinus Torvalds 	}
5367c2508ec5SLinus Torvalds 
53688d7071afSLinus Torvalds 	if (expand_stack_locked(vma, addr))
5369c2508ec5SLinus Torvalds 		goto fail;
5370c2508ec5SLinus Torvalds 
5371c2508ec5SLinus Torvalds success:
5372c2508ec5SLinus Torvalds 	mmap_write_downgrade(mm);
5373c2508ec5SLinus Torvalds 	return vma;
5374c2508ec5SLinus Torvalds 
5375c2508ec5SLinus Torvalds fail:
5376c2508ec5SLinus Torvalds 	mmap_write_unlock(mm);
5377c2508ec5SLinus Torvalds 	return NULL;
5378c2508ec5SLinus Torvalds }
5379c2508ec5SLinus Torvalds #endif
5380c2508ec5SLinus Torvalds 
538150ee3253SSuren Baghdasaryan #ifdef CONFIG_PER_VMA_LOCK
538250ee3253SSuren Baghdasaryan /*
538350ee3253SSuren Baghdasaryan  * Lookup and lock a VMA under RCU protection. Returned VMA is guaranteed to be
538450ee3253SSuren Baghdasaryan  * stable and not isolated. If the VMA is not found or is being modified the
538550ee3253SSuren Baghdasaryan  * function returns NULL.
538650ee3253SSuren Baghdasaryan  */
538750ee3253SSuren Baghdasaryan struct vm_area_struct *lock_vma_under_rcu(struct mm_struct *mm,
538850ee3253SSuren Baghdasaryan 					  unsigned long address)
538950ee3253SSuren Baghdasaryan {
539050ee3253SSuren Baghdasaryan 	MA_STATE(mas, &mm->mm_mt, address, address);
539150ee3253SSuren Baghdasaryan 	struct vm_area_struct *vma;
539250ee3253SSuren Baghdasaryan 
539350ee3253SSuren Baghdasaryan 	rcu_read_lock();
539450ee3253SSuren Baghdasaryan retry:
539550ee3253SSuren Baghdasaryan 	vma = mas_walk(&mas);
539650ee3253SSuren Baghdasaryan 	if (!vma)
539750ee3253SSuren Baghdasaryan 		goto inval;
539850ee3253SSuren Baghdasaryan 
53997a7f0946SArjun Roy 	/* Only anonymous and tcp vmas are supported for now */
54007a7f0946SArjun Roy 	if (!vma_is_anonymous(vma) && !vma_is_tcp(vma))
540150ee3253SSuren Baghdasaryan 		goto inval;
540250ee3253SSuren Baghdasaryan 
540350ee3253SSuren Baghdasaryan 	if (!vma_start_read(vma))
540450ee3253SSuren Baghdasaryan 		goto inval;
540550ee3253SSuren Baghdasaryan 
5406444eeb17SSuren Baghdasaryan 	/*
5407657b5146SJann Horn 	 * find_mergeable_anon_vma uses adjacent vmas which are not locked.
5408657b5146SJann Horn 	 * This check must happen after vma_start_read(); otherwise, a
5409657b5146SJann Horn 	 * concurrent mremap() with MREMAP_DONTUNMAP could dissociate the VMA
5410657b5146SJann Horn 	 * from its anon_vma.
5411657b5146SJann Horn 	 */
5412657b5146SJann Horn 	if (unlikely(!vma->anon_vma && !vma_is_tcp(vma)))
5413657b5146SJann Horn 		goto inval_end_read;
5414657b5146SJann Horn 
5415657b5146SJann Horn 	/*
5416444eeb17SSuren Baghdasaryan 	 * Due to the possibility of userfault handler dropping mmap_lock, avoid
5417444eeb17SSuren Baghdasaryan 	 * it for now and fall back to page fault handling under mmap_lock.
5418444eeb17SSuren Baghdasaryan 	 */
5419657b5146SJann Horn 	if (userfaultfd_armed(vma))
5420657b5146SJann Horn 		goto inval_end_read;
5421444eeb17SSuren Baghdasaryan 
542250ee3253SSuren Baghdasaryan 	/* Check since vm_start/vm_end might change before we lock the VMA */
5423657b5146SJann Horn 	if (unlikely(address < vma->vm_start || address >= vma->vm_end))
5424657b5146SJann Horn 		goto inval_end_read;
542550ee3253SSuren Baghdasaryan 
542650ee3253SSuren Baghdasaryan 	/* Check if the VMA got isolated after we found it */
542750ee3253SSuren Baghdasaryan 	if (vma->detached) {
542850ee3253SSuren Baghdasaryan 		vma_end_read(vma);
542952f23865SSuren Baghdasaryan 		count_vm_vma_lock_event(VMA_LOCK_MISS);
543050ee3253SSuren Baghdasaryan 		/* The area was replaced with another one */
543150ee3253SSuren Baghdasaryan 		goto retry;
543250ee3253SSuren Baghdasaryan 	}
543350ee3253SSuren Baghdasaryan 
543450ee3253SSuren Baghdasaryan 	rcu_read_unlock();
543550ee3253SSuren Baghdasaryan 	return vma;
5436657b5146SJann Horn 
5437657b5146SJann Horn inval_end_read:
5438657b5146SJann Horn 	vma_end_read(vma);
543950ee3253SSuren Baghdasaryan inval:
544050ee3253SSuren Baghdasaryan 	rcu_read_unlock();
544152f23865SSuren Baghdasaryan 	count_vm_vma_lock_event(VMA_LOCK_ABORT);
544250ee3253SSuren Baghdasaryan 	return NULL;
544350ee3253SSuren Baghdasaryan }
544450ee3253SSuren Baghdasaryan #endif /* CONFIG_PER_VMA_LOCK */
544550ee3253SSuren Baghdasaryan 
544690eceff1SKirill A. Shutemov #ifndef __PAGETABLE_P4D_FOLDED
544790eceff1SKirill A. Shutemov /*
544890eceff1SKirill A. Shutemov  * Allocate p4d page table.
544990eceff1SKirill A. Shutemov  * We've already handled the fast-path in-line.
545090eceff1SKirill A. Shutemov  */
545190eceff1SKirill A. Shutemov int __p4d_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address)
545290eceff1SKirill A. Shutemov {
545390eceff1SKirill A. Shutemov 	p4d_t *new = p4d_alloc_one(mm, address);
545490eceff1SKirill A. Shutemov 	if (!new)
545590eceff1SKirill A. Shutemov 		return -ENOMEM;
545690eceff1SKirill A. Shutemov 
545790eceff1SKirill A. Shutemov 	spin_lock(&mm->page_table_lock);
5458ed33b5a6SQi Zheng 	if (pgd_present(*pgd)) {	/* Another has populated it */
545990eceff1SKirill A. Shutemov 		p4d_free(mm, new);
5460ed33b5a6SQi Zheng 	} else {
5461ed33b5a6SQi Zheng 		smp_wmb(); /* See comment in pmd_install() */
546290eceff1SKirill A. Shutemov 		pgd_populate(mm, pgd, new);
5463ed33b5a6SQi Zheng 	}
546490eceff1SKirill A. Shutemov 	spin_unlock(&mm->page_table_lock);
546590eceff1SKirill A. Shutemov 	return 0;
546690eceff1SKirill A. Shutemov }
546790eceff1SKirill A. Shutemov #endif /* __PAGETABLE_P4D_FOLDED */
546890eceff1SKirill A. Shutemov 
54691da177e4SLinus Torvalds #ifndef __PAGETABLE_PUD_FOLDED
54701da177e4SLinus Torvalds /*
54711da177e4SLinus Torvalds  * Allocate page upper directory.
5472872fec16SHugh Dickins  * We've already handled the fast-path in-line.
54731da177e4SLinus Torvalds  */
5474c2febafcSKirill A. Shutemov int __pud_alloc(struct mm_struct *mm, p4d_t *p4d, unsigned long address)
54751da177e4SLinus Torvalds {
5476c74df32cSHugh Dickins 	pud_t *new = pud_alloc_one(mm, address);
5477c74df32cSHugh Dickins 	if (!new)
54781bb3630eSHugh Dickins 		return -ENOMEM;
54791da177e4SLinus Torvalds 
5480872fec16SHugh Dickins 	spin_lock(&mm->page_table_lock);
5481b4e98d9aSKirill A. Shutemov 	if (!p4d_present(*p4d)) {
5482b4e98d9aSKirill A. Shutemov 		mm_inc_nr_puds(mm);
5483ed33b5a6SQi Zheng 		smp_wmb(); /* See comment in pmd_install() */
5484c2febafcSKirill A. Shutemov 		p4d_populate(mm, p4d, new);
5485b4e98d9aSKirill A. Shutemov 	} else	/* Another has populated it */
5486c2febafcSKirill A. Shutemov 		pud_free(mm, new);
5487872fec16SHugh Dickins 	spin_unlock(&mm->page_table_lock);
54881bb3630eSHugh Dickins 	return 0;
54891da177e4SLinus Torvalds }
54901da177e4SLinus Torvalds #endif /* __PAGETABLE_PUD_FOLDED */
54911da177e4SLinus Torvalds 
54921da177e4SLinus Torvalds #ifndef __PAGETABLE_PMD_FOLDED
54931da177e4SLinus Torvalds /*
54941da177e4SLinus Torvalds  * Allocate page middle directory.
5495872fec16SHugh Dickins  * We've already handled the fast-path in-line.
54961da177e4SLinus Torvalds  */
54971bb3630eSHugh Dickins int __pmd_alloc(struct mm_struct *mm, pud_t *pud, unsigned long address)
54981da177e4SLinus Torvalds {
5499a00cc7d9SMatthew Wilcox 	spinlock_t *ptl;
5500c74df32cSHugh Dickins 	pmd_t *new = pmd_alloc_one(mm, address);
5501c74df32cSHugh Dickins 	if (!new)
55021bb3630eSHugh Dickins 		return -ENOMEM;
55031da177e4SLinus Torvalds 
5504a00cc7d9SMatthew Wilcox 	ptl = pud_lock(mm, pud);
5505dc6c9a35SKirill A. Shutemov 	if (!pud_present(*pud)) {
5506dc6c9a35SKirill A. Shutemov 		mm_inc_nr_pmds(mm);
5507ed33b5a6SQi Zheng 		smp_wmb(); /* See comment in pmd_install() */
55081da177e4SLinus Torvalds 		pud_populate(mm, pud, new);
5509ed33b5a6SQi Zheng 	} else {	/* Another has populated it */
55105e541973SBenjamin Herrenschmidt 		pmd_free(mm, new);
5511ed33b5a6SQi Zheng 	}
5512a00cc7d9SMatthew Wilcox 	spin_unlock(ptl);
55131bb3630eSHugh Dickins 	return 0;
55141da177e4SLinus Torvalds }
55151da177e4SLinus Torvalds #endif /* __PAGETABLE_PMD_FOLDED */
55161da177e4SLinus Torvalds 
55173b6748e2SJohannes Weiner /**
55189fd6dad1SPaolo Bonzini  * follow_pte - look up PTE at a user virtual address
55199fd6dad1SPaolo Bonzini  * @mm: the mm_struct of the target address space
55209fd6dad1SPaolo Bonzini  * @address: user virtual address
55219fd6dad1SPaolo Bonzini  * @ptepp: location to store found PTE
55229fd6dad1SPaolo Bonzini  * @ptlp: location to store the lock for the PTE
55239fd6dad1SPaolo Bonzini  *
55249fd6dad1SPaolo Bonzini  * On a successful return, the pointer to the PTE is stored in @ptepp;
55259fd6dad1SPaolo Bonzini  * the corresponding lock is taken and its location is stored in @ptlp.
55269fd6dad1SPaolo Bonzini  * The contents of the PTE are only stable until @ptlp is released;
55279fd6dad1SPaolo Bonzini  * any further use, if any, must be protected against invalidation
55289fd6dad1SPaolo Bonzini  * with MMU notifiers.
55299fd6dad1SPaolo Bonzini  *
55309fd6dad1SPaolo Bonzini  * Only IO mappings and raw PFN mappings are allowed.  The mmap semaphore
55319fd6dad1SPaolo Bonzini  * should be taken for read.
55329fd6dad1SPaolo Bonzini  *
55339fd6dad1SPaolo Bonzini  * KVM uses this function.  While it is arguably less bad than ``follow_pfn``,
55349fd6dad1SPaolo Bonzini  * it is not a good general-purpose API.
55359fd6dad1SPaolo Bonzini  *
55369fd6dad1SPaolo Bonzini  * Return: zero on success, -ve otherwise.
55379fd6dad1SPaolo Bonzini  */
55389fd6dad1SPaolo Bonzini int follow_pte(struct mm_struct *mm, unsigned long address,
55399fd6dad1SPaolo Bonzini 	       pte_t **ptepp, spinlock_t **ptlp)
55409fd6dad1SPaolo Bonzini {
55410e5e64c0SMuchun Song 	pgd_t *pgd;
55420e5e64c0SMuchun Song 	p4d_t *p4d;
55430e5e64c0SMuchun Song 	pud_t *pud;
55440e5e64c0SMuchun Song 	pmd_t *pmd;
55450e5e64c0SMuchun Song 	pte_t *ptep;
55460e5e64c0SMuchun Song 
55470e5e64c0SMuchun Song 	pgd = pgd_offset(mm, address);
55480e5e64c0SMuchun Song 	if (pgd_none(*pgd) || unlikely(pgd_bad(*pgd)))
55490e5e64c0SMuchun Song 		goto out;
55500e5e64c0SMuchun Song 
55510e5e64c0SMuchun Song 	p4d = p4d_offset(pgd, address);
55520e5e64c0SMuchun Song 	if (p4d_none(*p4d) || unlikely(p4d_bad(*p4d)))
55530e5e64c0SMuchun Song 		goto out;
55540e5e64c0SMuchun Song 
55550e5e64c0SMuchun Song 	pud = pud_offset(p4d, address);
55560e5e64c0SMuchun Song 	if (pud_none(*pud) || unlikely(pud_bad(*pud)))
55570e5e64c0SMuchun Song 		goto out;
55580e5e64c0SMuchun Song 
55590e5e64c0SMuchun Song 	pmd = pmd_offset(pud, address);
55600e5e64c0SMuchun Song 	VM_BUG_ON(pmd_trans_huge(*pmd));
55610e5e64c0SMuchun Song 
55620e5e64c0SMuchun Song 	ptep = pte_offset_map_lock(mm, pmd, address, ptlp);
55633db82b93SHugh Dickins 	if (!ptep)
55643db82b93SHugh Dickins 		goto out;
5565c33c7948SRyan Roberts 	if (!pte_present(ptep_get(ptep)))
55660e5e64c0SMuchun Song 		goto unlock;
55670e5e64c0SMuchun Song 	*ptepp = ptep;
55680e5e64c0SMuchun Song 	return 0;
55690e5e64c0SMuchun Song unlock:
55700e5e64c0SMuchun Song 	pte_unmap_unlock(ptep, *ptlp);
55710e5e64c0SMuchun Song out:
55720e5e64c0SMuchun Song 	return -EINVAL;
55739fd6dad1SPaolo Bonzini }
55749fd6dad1SPaolo Bonzini EXPORT_SYMBOL_GPL(follow_pte);
55759fd6dad1SPaolo Bonzini 
55769fd6dad1SPaolo Bonzini /**
55773b6748e2SJohannes Weiner  * follow_pfn - look up PFN at a user virtual address
55783b6748e2SJohannes Weiner  * @vma: memory mapping
55793b6748e2SJohannes Weiner  * @address: user virtual address
55803b6748e2SJohannes Weiner  * @pfn: location to store found PFN
55813b6748e2SJohannes Weiner  *
55823b6748e2SJohannes Weiner  * Only IO mappings and raw PFN mappings are allowed.
55833b6748e2SJohannes Weiner  *
55849fd6dad1SPaolo Bonzini  * This function does not allow the caller to read the permissions
55859fd6dad1SPaolo Bonzini  * of the PTE.  Do not use it.
55869fd6dad1SPaolo Bonzini  *
5587a862f68aSMike Rapoport  * Return: zero and the pfn at @pfn on success, -ve otherwise.
55883b6748e2SJohannes Weiner  */
55893b6748e2SJohannes Weiner int follow_pfn(struct vm_area_struct *vma, unsigned long address,
55903b6748e2SJohannes Weiner 	unsigned long *pfn)
55913b6748e2SJohannes Weiner {
55923b6748e2SJohannes Weiner 	int ret = -EINVAL;
55933b6748e2SJohannes Weiner 	spinlock_t *ptl;
55943b6748e2SJohannes Weiner 	pte_t *ptep;
55953b6748e2SJohannes Weiner 
55963b6748e2SJohannes Weiner 	if (!(vma->vm_flags & (VM_IO | VM_PFNMAP)))
55973b6748e2SJohannes Weiner 		return ret;
55983b6748e2SJohannes Weiner 
55999fd6dad1SPaolo Bonzini 	ret = follow_pte(vma->vm_mm, address, &ptep, &ptl);
56003b6748e2SJohannes Weiner 	if (ret)
56013b6748e2SJohannes Weiner 		return ret;
5602c33c7948SRyan Roberts 	*pfn = pte_pfn(ptep_get(ptep));
56033b6748e2SJohannes Weiner 	pte_unmap_unlock(ptep, ptl);
56043b6748e2SJohannes Weiner 	return 0;
56053b6748e2SJohannes Weiner }
56063b6748e2SJohannes Weiner EXPORT_SYMBOL(follow_pfn);
56073b6748e2SJohannes Weiner 
560828b2ee20SRik van Riel #ifdef CONFIG_HAVE_IOREMAP_PROT
5609d87fe660Svenkatesh.pallipadi@intel.com int follow_phys(struct vm_area_struct *vma,
561028b2ee20SRik van Riel 		unsigned long address, unsigned int flags,
5611d87fe660Svenkatesh.pallipadi@intel.com 		unsigned long *prot, resource_size_t *phys)
561228b2ee20SRik van Riel {
561303668a4dSJohannes Weiner 	int ret = -EINVAL;
561428b2ee20SRik van Riel 	pte_t *ptep, pte;
561528b2ee20SRik van Riel 	spinlock_t *ptl;
561628b2ee20SRik van Riel 
5617d87fe660Svenkatesh.pallipadi@intel.com 	if (!(vma->vm_flags & (VM_IO | VM_PFNMAP)))
5618d87fe660Svenkatesh.pallipadi@intel.com 		goto out;
561928b2ee20SRik van Riel 
56209fd6dad1SPaolo Bonzini 	if (follow_pte(vma->vm_mm, address, &ptep, &ptl))
5621d87fe660Svenkatesh.pallipadi@intel.com 		goto out;
5622c33c7948SRyan Roberts 	pte = ptep_get(ptep);
562303668a4dSJohannes Weiner 
5624f6f37321SLinus Torvalds 	if ((flags & FOLL_WRITE) && !pte_write(pte))
562528b2ee20SRik van Riel 		goto unlock;
562628b2ee20SRik van Riel 
562728b2ee20SRik van Riel 	*prot = pgprot_val(pte_pgprot(pte));
562803668a4dSJohannes Weiner 	*phys = (resource_size_t)pte_pfn(pte) << PAGE_SHIFT;
562928b2ee20SRik van Riel 
563003668a4dSJohannes Weiner 	ret = 0;
563128b2ee20SRik van Riel unlock:
563228b2ee20SRik van Riel 	pte_unmap_unlock(ptep, ptl);
563328b2ee20SRik van Riel out:
5634d87fe660Svenkatesh.pallipadi@intel.com 	return ret;
563528b2ee20SRik van Riel }
563628b2ee20SRik van Riel 
563796667f8aSDaniel Vetter /**
563896667f8aSDaniel Vetter  * generic_access_phys - generic implementation for iomem mmap access
563996667f8aSDaniel Vetter  * @vma: the vma to access
5640f0953a1bSIngo Molnar  * @addr: userspace address, not relative offset within @vma
564196667f8aSDaniel Vetter  * @buf: buffer to read/write
564296667f8aSDaniel Vetter  * @len: length of transfer
564396667f8aSDaniel Vetter  * @write: set to FOLL_WRITE when writing, otherwise reading
564496667f8aSDaniel Vetter  *
564596667f8aSDaniel Vetter  * This is a generic implementation for &vm_operations_struct.access for an
564696667f8aSDaniel Vetter  * iomem mapping. This callback is used by access_process_vm() when the @vma is
564796667f8aSDaniel Vetter  * not page based.
564896667f8aSDaniel Vetter  */
564928b2ee20SRik van Riel int generic_access_phys(struct vm_area_struct *vma, unsigned long addr,
565028b2ee20SRik van Riel 			void *buf, int len, int write)
565128b2ee20SRik van Riel {
565228b2ee20SRik van Riel 	resource_size_t phys_addr;
565328b2ee20SRik van Riel 	unsigned long prot = 0;
56542bc7273bSKOSAKI Motohiro 	void __iomem *maddr;
565596667f8aSDaniel Vetter 	pte_t *ptep, pte;
565696667f8aSDaniel Vetter 	spinlock_t *ptl;
565796667f8aSDaniel Vetter 	int offset = offset_in_page(addr);
565896667f8aSDaniel Vetter 	int ret = -EINVAL;
565928b2ee20SRik van Riel 
566096667f8aSDaniel Vetter 	if (!(vma->vm_flags & (VM_IO | VM_PFNMAP)))
566196667f8aSDaniel Vetter 		return -EINVAL;
566296667f8aSDaniel Vetter 
566396667f8aSDaniel Vetter retry:
5664e913a8cdSLinus Torvalds 	if (follow_pte(vma->vm_mm, addr, &ptep, &ptl))
566596667f8aSDaniel Vetter 		return -EINVAL;
5666c33c7948SRyan Roberts 	pte = ptep_get(ptep);
566796667f8aSDaniel Vetter 	pte_unmap_unlock(ptep, ptl);
566896667f8aSDaniel Vetter 
566996667f8aSDaniel Vetter 	prot = pgprot_val(pte_pgprot(pte));
567096667f8aSDaniel Vetter 	phys_addr = (resource_size_t)pte_pfn(pte) << PAGE_SHIFT;
567196667f8aSDaniel Vetter 
567296667f8aSDaniel Vetter 	if ((write & FOLL_WRITE) && !pte_write(pte))
567328b2ee20SRik van Riel 		return -EINVAL;
567428b2ee20SRik van Riel 
56759cb12d7bSGrazvydas Ignotas 	maddr = ioremap_prot(phys_addr, PAGE_ALIGN(len + offset), prot);
567624eee1e4Sjie@chenjie6@huwei.com 	if (!maddr)
567724eee1e4Sjie@chenjie6@huwei.com 		return -ENOMEM;
567824eee1e4Sjie@chenjie6@huwei.com 
5679e913a8cdSLinus Torvalds 	if (follow_pte(vma->vm_mm, addr, &ptep, &ptl))
568096667f8aSDaniel Vetter 		goto out_unmap;
568196667f8aSDaniel Vetter 
5682c33c7948SRyan Roberts 	if (!pte_same(pte, ptep_get(ptep))) {
568396667f8aSDaniel Vetter 		pte_unmap_unlock(ptep, ptl);
568496667f8aSDaniel Vetter 		iounmap(maddr);
568596667f8aSDaniel Vetter 
568696667f8aSDaniel Vetter 		goto retry;
568796667f8aSDaniel Vetter 	}
568896667f8aSDaniel Vetter 
568928b2ee20SRik van Riel 	if (write)
569028b2ee20SRik van Riel 		memcpy_toio(maddr + offset, buf, len);
569128b2ee20SRik van Riel 	else
569228b2ee20SRik van Riel 		memcpy_fromio(buf, maddr + offset, len);
569396667f8aSDaniel Vetter 	ret = len;
569496667f8aSDaniel Vetter 	pte_unmap_unlock(ptep, ptl);
569596667f8aSDaniel Vetter out_unmap:
569628b2ee20SRik van Riel 	iounmap(maddr);
569728b2ee20SRik van Riel 
569896667f8aSDaniel Vetter 	return ret;
569928b2ee20SRik van Riel }
57005a73633eSUwe Kleine-König EXPORT_SYMBOL_GPL(generic_access_phys);
570128b2ee20SRik van Riel #endif
570228b2ee20SRik van Riel 
57030ec76a11SDavid Howells /*
5704d3f5ffcaSJohn Hubbard  * Access another process' address space as given in mm.
57050ec76a11SDavid Howells  */
5706d3f5ffcaSJohn Hubbard int __access_remote_vm(struct mm_struct *mm, unsigned long addr, void *buf,
5707d3f5ffcaSJohn Hubbard 		       int len, unsigned int gup_flags)
57080ec76a11SDavid Howells {
57090ec76a11SDavid Howells 	void *old_buf = buf;
5710442486ecSLorenzo Stoakes 	int write = gup_flags & FOLL_WRITE;
57110ec76a11SDavid Howells 
5712d8ed45c5SMichel Lespinasse 	if (mmap_read_lock_killable(mm))
57131e426fe2SKonstantin Khlebnikov 		return 0;
57141e426fe2SKonstantin Khlebnikov 
5715eee9c708SLinus Torvalds 	/* Avoid triggering the temporary warning in __get_user_pages */
5716eee9c708SLinus Torvalds 	if (!vma_lookup(mm, addr) && !expand_stack(mm, addr))
5717eee9c708SLinus Torvalds 		return 0;
5718eee9c708SLinus Torvalds 
5719183ff22bSSimon Arlott 	/* ignore errors, just check how much was successfully transferred */
57200ec76a11SDavid Howells 	while (len) {
5721ca5e8632SLorenzo Stoakes 		int bytes, offset;
57220ec76a11SDavid Howells 		void *maddr;
5723ca5e8632SLorenzo Stoakes 		struct vm_area_struct *vma = NULL;
5724ca5e8632SLorenzo Stoakes 		struct page *page = get_user_page_vma_remote(mm, addr,
5725ca5e8632SLorenzo Stoakes 							     gup_flags, &vma);
57260ec76a11SDavid Howells 
5727ca5e8632SLorenzo Stoakes 		if (IS_ERR_OR_NULL(page)) {
57288d7071afSLinus Torvalds 			/* We might need to expand the stack to access it */
57298d7071afSLinus Torvalds 			vma = vma_lookup(mm, addr);
57308d7071afSLinus Torvalds 			if (!vma) {
57318d7071afSLinus Torvalds 				vma = expand_stack(mm, addr);
57329471f1f2SLinus Torvalds 
57339471f1f2SLinus Torvalds 				/* mmap_lock was dropped on failure */
57348d7071afSLinus Torvalds 				if (!vma)
57359471f1f2SLinus Torvalds 					return buf - old_buf;
57369471f1f2SLinus Torvalds 
57379471f1f2SLinus Torvalds 				/* Try again if stack expansion worked */
57389471f1f2SLinus Torvalds 				continue;
57398d7071afSLinus Torvalds 			}
57408d7071afSLinus Torvalds 
5741ca5e8632SLorenzo Stoakes 
574228b2ee20SRik van Riel 			/*
574328b2ee20SRik van Riel 			 * Check if this is a VM_IO | VM_PFNMAP VMA, which
574428b2ee20SRik van Riel 			 * we can access using slightly different code.
574528b2ee20SRik van Riel 			 */
57469471f1f2SLinus Torvalds 			bytes = 0;
57479471f1f2SLinus Torvalds #ifdef CONFIG_HAVE_IOREMAP_PROT
574828b2ee20SRik van Riel 			if (vma->vm_ops && vma->vm_ops->access)
57499471f1f2SLinus Torvalds 				bytes = vma->vm_ops->access(vma, addr, buf,
575028b2ee20SRik van Riel 							    len, write);
5751dbffcd03SRik van Riel #endif
57529471f1f2SLinus Torvalds 			if (bytes <= 0)
57539471f1f2SLinus Torvalds 				break;
575428b2ee20SRik van Riel 		} else {
57550ec76a11SDavid Howells 			bytes = len;
57560ec76a11SDavid Howells 			offset = addr & (PAGE_SIZE-1);
57570ec76a11SDavid Howells 			if (bytes > PAGE_SIZE-offset)
57580ec76a11SDavid Howells 				bytes = PAGE_SIZE-offset;
57590ec76a11SDavid Howells 
57600ec76a11SDavid Howells 			maddr = kmap(page);
57610ec76a11SDavid Howells 			if (write) {
57620ec76a11SDavid Howells 				copy_to_user_page(vma, page, addr,
57630ec76a11SDavid Howells 						  maddr + offset, buf, bytes);
57640ec76a11SDavid Howells 				set_page_dirty_lock(page);
57650ec76a11SDavid Howells 			} else {
57660ec76a11SDavid Howells 				copy_from_user_page(vma, page, addr,
57670ec76a11SDavid Howells 						    buf, maddr + offset, bytes);
57680ec76a11SDavid Howells 			}
57690ec76a11SDavid Howells 			kunmap(page);
577009cbfeafSKirill A. Shutemov 			put_page(page);
577128b2ee20SRik van Riel 		}
57720ec76a11SDavid Howells 		len -= bytes;
57730ec76a11SDavid Howells 		buf += bytes;
57740ec76a11SDavid Howells 		addr += bytes;
57750ec76a11SDavid Howells 	}
5776d8ed45c5SMichel Lespinasse 	mmap_read_unlock(mm);
57770ec76a11SDavid Howells 
57780ec76a11SDavid Howells 	return buf - old_buf;
57790ec76a11SDavid Howells }
578003252919SAndi Kleen 
57815ddd36b9SStephen Wilson /**
5782ae91dbfcSRandy Dunlap  * access_remote_vm - access another process' address space
57835ddd36b9SStephen Wilson  * @mm:		the mm_struct of the target address space
57845ddd36b9SStephen Wilson  * @addr:	start address to access
57855ddd36b9SStephen Wilson  * @buf:	source or destination buffer
57865ddd36b9SStephen Wilson  * @len:	number of bytes to transfer
57876347e8d5SLorenzo Stoakes  * @gup_flags:	flags modifying lookup behaviour
57885ddd36b9SStephen Wilson  *
57895ddd36b9SStephen Wilson  * The caller must hold a reference on @mm.
5790a862f68aSMike Rapoport  *
5791a862f68aSMike Rapoport  * Return: number of bytes copied from source to destination.
57925ddd36b9SStephen Wilson  */
57935ddd36b9SStephen Wilson int access_remote_vm(struct mm_struct *mm, unsigned long addr,
57946347e8d5SLorenzo Stoakes 		void *buf, int len, unsigned int gup_flags)
57955ddd36b9SStephen Wilson {
5796d3f5ffcaSJohn Hubbard 	return __access_remote_vm(mm, addr, buf, len, gup_flags);
57975ddd36b9SStephen Wilson }
57985ddd36b9SStephen Wilson 
579903252919SAndi Kleen /*
5800206cb636SStephen Wilson  * Access another process' address space.
5801206cb636SStephen Wilson  * Source/target buffer must be kernel space,
5802206cb636SStephen Wilson  * Do not walk the page table directly, use get_user_pages
5803206cb636SStephen Wilson  */
5804206cb636SStephen Wilson int access_process_vm(struct task_struct *tsk, unsigned long addr,
5805f307ab6dSLorenzo Stoakes 		void *buf, int len, unsigned int gup_flags)
5806206cb636SStephen Wilson {
5807206cb636SStephen Wilson 	struct mm_struct *mm;
5808206cb636SStephen Wilson 	int ret;
5809206cb636SStephen Wilson 
5810206cb636SStephen Wilson 	mm = get_task_mm(tsk);
5811206cb636SStephen Wilson 	if (!mm)
5812206cb636SStephen Wilson 		return 0;
5813206cb636SStephen Wilson 
5814d3f5ffcaSJohn Hubbard 	ret = __access_remote_vm(mm, addr, buf, len, gup_flags);
5815442486ecSLorenzo Stoakes 
5816206cb636SStephen Wilson 	mmput(mm);
5817206cb636SStephen Wilson 
5818206cb636SStephen Wilson 	return ret;
5819206cb636SStephen Wilson }
5820fcd35857SCatalin Marinas EXPORT_SYMBOL_GPL(access_process_vm);
5821206cb636SStephen Wilson 
582203252919SAndi Kleen /*
582303252919SAndi Kleen  * Print the name of a VMA.
582403252919SAndi Kleen  */
582503252919SAndi Kleen void print_vma_addr(char *prefix, unsigned long ip)
582603252919SAndi Kleen {
582703252919SAndi Kleen 	struct mm_struct *mm = current->mm;
582803252919SAndi Kleen 	struct vm_area_struct *vma;
582903252919SAndi Kleen 
5830e8bff74aSIngo Molnar 	/*
58310a7f682dSMichal Hocko 	 * we might be running from an atomic context so we cannot sleep
5832e8bff74aSIngo Molnar 	 */
5833d8ed45c5SMichel Lespinasse 	if (!mmap_read_trylock(mm))
5834e8bff74aSIngo Molnar 		return;
5835e8bff74aSIngo Molnar 
583603252919SAndi Kleen 	vma = find_vma(mm, ip);
583703252919SAndi Kleen 	if (vma && vma->vm_file) {
583803252919SAndi Kleen 		struct file *f = vma->vm_file;
58390a7f682dSMichal Hocko 		char *buf = (char *)__get_free_page(GFP_NOWAIT);
584003252919SAndi Kleen 		if (buf) {
58412fbc57c5SAndy Shevchenko 			char *p;
584203252919SAndi Kleen 
58439bf39ab2SMiklos Szeredi 			p = file_path(f, buf, PAGE_SIZE);
584403252919SAndi Kleen 			if (IS_ERR(p))
584503252919SAndi Kleen 				p = "?";
58462fbc57c5SAndy Shevchenko 			printk("%s%s[%lx+%lx]", prefix, kbasename(p),
584703252919SAndi Kleen 					vma->vm_start,
584803252919SAndi Kleen 					vma->vm_end - vma->vm_start);
584903252919SAndi Kleen 			free_page((unsigned long)buf);
585003252919SAndi Kleen 		}
585103252919SAndi Kleen 	}
5852d8ed45c5SMichel Lespinasse 	mmap_read_unlock(mm);
585303252919SAndi Kleen }
58543ee1afa3SNick Piggin 
5855662bbcb2SMichael S. Tsirkin #if defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_DEBUG_ATOMIC_SLEEP)
58569ec23531SDavid Hildenbrand void __might_fault(const char *file, int line)
58573ee1afa3SNick Piggin {
58589ec23531SDavid Hildenbrand 	if (pagefault_disabled())
5859662bbcb2SMichael S. Tsirkin 		return;
586042a38756SThomas Gleixner 	__might_sleep(file, line);
58619ec23531SDavid Hildenbrand #if defined(CONFIG_DEBUG_ATOMIC_SLEEP)
5862662bbcb2SMichael S. Tsirkin 	if (current->mm)
5863da1c55f1SMichel Lespinasse 		might_lock_read(&current->mm->mmap_lock);
58649ec23531SDavid Hildenbrand #endif
58653ee1afa3SNick Piggin }
58669ec23531SDavid Hildenbrand EXPORT_SYMBOL(__might_fault);
58673ee1afa3SNick Piggin #endif
586847ad8475SAndrea Arcangeli 
586947ad8475SAndrea Arcangeli #if defined(CONFIG_TRANSPARENT_HUGEPAGE) || defined(CONFIG_HUGETLBFS)
5870c6ddfb6cSHuang Ying /*
5871c6ddfb6cSHuang Ying  * Process all subpages of the specified huge page with the specified
5872c6ddfb6cSHuang Ying  * operation.  The target subpage will be processed last to keep its
5873c6ddfb6cSHuang Ying  * cache lines hot.
5874c6ddfb6cSHuang Ying  */
58751cb9dc4bSLiu Shixin static inline int process_huge_page(
5876c6ddfb6cSHuang Ying 	unsigned long addr_hint, unsigned int pages_per_huge_page,
58771cb9dc4bSLiu Shixin 	int (*process_subpage)(unsigned long addr, int idx, void *arg),
5878c6ddfb6cSHuang Ying 	void *arg)
5879c6ddfb6cSHuang Ying {
58801cb9dc4bSLiu Shixin 	int i, n, base, l, ret;
5881c6ddfb6cSHuang Ying 	unsigned long addr = addr_hint &
5882c6ddfb6cSHuang Ying 		~(((unsigned long)pages_per_huge_page << PAGE_SHIFT) - 1);
5883c6ddfb6cSHuang Ying 
5884c6ddfb6cSHuang Ying 	/* Process target subpage last to keep its cache lines hot */
5885c6ddfb6cSHuang Ying 	might_sleep();
5886c6ddfb6cSHuang Ying 	n = (addr_hint - addr) / PAGE_SIZE;
5887c6ddfb6cSHuang Ying 	if (2 * n <= pages_per_huge_page) {
5888c6ddfb6cSHuang Ying 		/* If target subpage in first half of huge page */
5889c6ddfb6cSHuang Ying 		base = 0;
5890c6ddfb6cSHuang Ying 		l = n;
5891c6ddfb6cSHuang Ying 		/* Process subpages at the end of huge page */
5892c6ddfb6cSHuang Ying 		for (i = pages_per_huge_page - 1; i >= 2 * n; i--) {
5893c6ddfb6cSHuang Ying 			cond_resched();
58941cb9dc4bSLiu Shixin 			ret = process_subpage(addr + i * PAGE_SIZE, i, arg);
58951cb9dc4bSLiu Shixin 			if (ret)
58961cb9dc4bSLiu Shixin 				return ret;
5897c6ddfb6cSHuang Ying 		}
5898c6ddfb6cSHuang Ying 	} else {
5899c6ddfb6cSHuang Ying 		/* If target subpage in second half of huge page */
5900c6ddfb6cSHuang Ying 		base = pages_per_huge_page - 2 * (pages_per_huge_page - n);
5901c6ddfb6cSHuang Ying 		l = pages_per_huge_page - n;
5902c6ddfb6cSHuang Ying 		/* Process subpages at the begin of huge page */
5903c6ddfb6cSHuang Ying 		for (i = 0; i < base; i++) {
5904c6ddfb6cSHuang Ying 			cond_resched();
59051cb9dc4bSLiu Shixin 			ret = process_subpage(addr + i * PAGE_SIZE, i, arg);
59061cb9dc4bSLiu Shixin 			if (ret)
59071cb9dc4bSLiu Shixin 				return ret;
5908c6ddfb6cSHuang Ying 		}
5909c6ddfb6cSHuang Ying 	}
5910c6ddfb6cSHuang Ying 	/*
5911c6ddfb6cSHuang Ying 	 * Process remaining subpages in left-right-left-right pattern
5912c6ddfb6cSHuang Ying 	 * towards the target subpage
5913c6ddfb6cSHuang Ying 	 */
5914c6ddfb6cSHuang Ying 	for (i = 0; i < l; i++) {
5915c6ddfb6cSHuang Ying 		int left_idx = base + i;
5916c6ddfb6cSHuang Ying 		int right_idx = base + 2 * l - 1 - i;
5917c6ddfb6cSHuang Ying 
5918c6ddfb6cSHuang Ying 		cond_resched();
59191cb9dc4bSLiu Shixin 		ret = process_subpage(addr + left_idx * PAGE_SIZE, left_idx, arg);
59201cb9dc4bSLiu Shixin 		if (ret)
59211cb9dc4bSLiu Shixin 			return ret;
5922c6ddfb6cSHuang Ying 		cond_resched();
59231cb9dc4bSLiu Shixin 		ret = process_subpage(addr + right_idx * PAGE_SIZE, right_idx, arg);
59241cb9dc4bSLiu Shixin 		if (ret)
59251cb9dc4bSLiu Shixin 			return ret;
5926c6ddfb6cSHuang Ying 	}
59271cb9dc4bSLiu Shixin 	return 0;
5928c6ddfb6cSHuang Ying }
5929c6ddfb6cSHuang Ying 
593047ad8475SAndrea Arcangeli static void clear_gigantic_page(struct page *page,
593147ad8475SAndrea Arcangeli 				unsigned long addr,
593247ad8475SAndrea Arcangeli 				unsigned int pages_per_huge_page)
593347ad8475SAndrea Arcangeli {
593447ad8475SAndrea Arcangeli 	int i;
593514455eabSCheng Li 	struct page *p;
593647ad8475SAndrea Arcangeli 
593747ad8475SAndrea Arcangeli 	might_sleep();
593814455eabSCheng Li 	for (i = 0; i < pages_per_huge_page; i++) {
593914455eabSCheng Li 		p = nth_page(page, i);
594047ad8475SAndrea Arcangeli 		cond_resched();
594147ad8475SAndrea Arcangeli 		clear_user_highpage(p, addr + i * PAGE_SIZE);
594247ad8475SAndrea Arcangeli 	}
594347ad8475SAndrea Arcangeli }
5944c6ddfb6cSHuang Ying 
59451cb9dc4bSLiu Shixin static int clear_subpage(unsigned long addr, int idx, void *arg)
5946c6ddfb6cSHuang Ying {
5947c6ddfb6cSHuang Ying 	struct page *page = arg;
5948c6ddfb6cSHuang Ying 
5949c6ddfb6cSHuang Ying 	clear_user_highpage(page + idx, addr);
59501cb9dc4bSLiu Shixin 	return 0;
5951c6ddfb6cSHuang Ying }
5952c6ddfb6cSHuang Ying 
595347ad8475SAndrea Arcangeli void clear_huge_page(struct page *page,
5954c79b57e4SHuang Ying 		     unsigned long addr_hint, unsigned int pages_per_huge_page)
595547ad8475SAndrea Arcangeli {
5956c79b57e4SHuang Ying 	unsigned long addr = addr_hint &
5957c79b57e4SHuang Ying 		~(((unsigned long)pages_per_huge_page << PAGE_SHIFT) - 1);
595847ad8475SAndrea Arcangeli 
595947ad8475SAndrea Arcangeli 	if (unlikely(pages_per_huge_page > MAX_ORDER_NR_PAGES)) {
596047ad8475SAndrea Arcangeli 		clear_gigantic_page(page, addr, pages_per_huge_page);
596147ad8475SAndrea Arcangeli 		return;
596247ad8475SAndrea Arcangeli 	}
596347ad8475SAndrea Arcangeli 
5964c6ddfb6cSHuang Ying 	process_huge_page(addr_hint, pages_per_huge_page, clear_subpage, page);
596547ad8475SAndrea Arcangeli }
596647ad8475SAndrea Arcangeli 
59671cb9dc4bSLiu Shixin static int copy_user_gigantic_page(struct folio *dst, struct folio *src,
596847ad8475SAndrea Arcangeli 				     unsigned long addr,
596947ad8475SAndrea Arcangeli 				     struct vm_area_struct *vma,
597047ad8475SAndrea Arcangeli 				     unsigned int pages_per_huge_page)
597147ad8475SAndrea Arcangeli {
597247ad8475SAndrea Arcangeli 	int i;
5973c0e8150eSZhangPeng 	struct page *dst_page;
5974c0e8150eSZhangPeng 	struct page *src_page;
597547ad8475SAndrea Arcangeli 
597614455eabSCheng Li 	for (i = 0; i < pages_per_huge_page; i++) {
5977c0e8150eSZhangPeng 		dst_page = folio_page(dst, i);
5978c0e8150eSZhangPeng 		src_page = folio_page(src, i);
597914455eabSCheng Li 
598047ad8475SAndrea Arcangeli 		cond_resched();
59811cb9dc4bSLiu Shixin 		if (copy_mc_user_highpage(dst_page, src_page,
59821cb9dc4bSLiu Shixin 					  addr + i*PAGE_SIZE, vma)) {
59831cb9dc4bSLiu Shixin 			memory_failure_queue(page_to_pfn(src_page), 0);
59841cb9dc4bSLiu Shixin 			return -EHWPOISON;
598547ad8475SAndrea Arcangeli 		}
598647ad8475SAndrea Arcangeli 	}
59871cb9dc4bSLiu Shixin 	return 0;
59881cb9dc4bSLiu Shixin }
598947ad8475SAndrea Arcangeli 
5990c9f4cd71SHuang Ying struct copy_subpage_arg {
5991c9f4cd71SHuang Ying 	struct page *dst;
5992c9f4cd71SHuang Ying 	struct page *src;
5993c9f4cd71SHuang Ying 	struct vm_area_struct *vma;
5994c9f4cd71SHuang Ying };
5995c9f4cd71SHuang Ying 
59961cb9dc4bSLiu Shixin static int copy_subpage(unsigned long addr, int idx, void *arg)
5997c9f4cd71SHuang Ying {
5998c9f4cd71SHuang Ying 	struct copy_subpage_arg *copy_arg = arg;
5999c9f4cd71SHuang Ying 
60001cb9dc4bSLiu Shixin 	if (copy_mc_user_highpage(copy_arg->dst + idx, copy_arg->src + idx,
60011cb9dc4bSLiu Shixin 				  addr, copy_arg->vma)) {
60021cb9dc4bSLiu Shixin 		memory_failure_queue(page_to_pfn(copy_arg->src + idx), 0);
60031cb9dc4bSLiu Shixin 		return -EHWPOISON;
60041cb9dc4bSLiu Shixin 	}
60051cb9dc4bSLiu Shixin 	return 0;
6006c9f4cd71SHuang Ying }
6007c9f4cd71SHuang Ying 
60081cb9dc4bSLiu Shixin int copy_user_large_folio(struct folio *dst, struct folio *src,
6009c0e8150eSZhangPeng 			  unsigned long addr_hint, struct vm_area_struct *vma)
601047ad8475SAndrea Arcangeli {
6011c0e8150eSZhangPeng 	unsigned int pages_per_huge_page = folio_nr_pages(dst);
6012c9f4cd71SHuang Ying 	unsigned long addr = addr_hint &
6013c9f4cd71SHuang Ying 		~(((unsigned long)pages_per_huge_page << PAGE_SHIFT) - 1);
6014c9f4cd71SHuang Ying 	struct copy_subpage_arg arg = {
6015c0e8150eSZhangPeng 		.dst = &dst->page,
6016c0e8150eSZhangPeng 		.src = &src->page,
6017c9f4cd71SHuang Ying 		.vma = vma,
6018c9f4cd71SHuang Ying 	};
601947ad8475SAndrea Arcangeli 
60201cb9dc4bSLiu Shixin 	if (unlikely(pages_per_huge_page > MAX_ORDER_NR_PAGES))
60211cb9dc4bSLiu Shixin 		return copy_user_gigantic_page(dst, src, addr, vma,
602247ad8475SAndrea Arcangeli 					       pages_per_huge_page);
602347ad8475SAndrea Arcangeli 
60241cb9dc4bSLiu Shixin 	return process_huge_page(addr_hint, pages_per_huge_page, copy_subpage, &arg);
602547ad8475SAndrea Arcangeli }
6026fa4d75c1SMike Kravetz 
6027e87340caSZhangPeng long copy_folio_from_user(struct folio *dst_folio,
6028fa4d75c1SMike Kravetz 			   const void __user *usr_src,
6029810a56b9SMike Kravetz 			   bool allow_pagefault)
6030fa4d75c1SMike Kravetz {
6031e87340caSZhangPeng 	void *kaddr;
6032fa4d75c1SMike Kravetz 	unsigned long i, rc = 0;
6033e87340caSZhangPeng 	unsigned int nr_pages = folio_nr_pages(dst_folio);
6034e87340caSZhangPeng 	unsigned long ret_val = nr_pages * PAGE_SIZE;
603514455eabSCheng Li 	struct page *subpage;
6036fa4d75c1SMike Kravetz 
6037e87340caSZhangPeng 	for (i = 0; i < nr_pages; i++) {
6038e87340caSZhangPeng 		subpage = folio_page(dst_folio, i);
6039e87340caSZhangPeng 		kaddr = kmap_local_page(subpage);
60400d508c1fSZhangPeng 		if (!allow_pagefault)
60410d508c1fSZhangPeng 			pagefault_disable();
6042e87340caSZhangPeng 		rc = copy_from_user(kaddr, usr_src + i * PAGE_SIZE, PAGE_SIZE);
60430d508c1fSZhangPeng 		if (!allow_pagefault)
60440d508c1fSZhangPeng 			pagefault_enable();
6045e87340caSZhangPeng 		kunmap_local(kaddr);
6046fa4d75c1SMike Kravetz 
6047fa4d75c1SMike Kravetz 		ret_val -= (PAGE_SIZE - rc);
6048fa4d75c1SMike Kravetz 		if (rc)
6049fa4d75c1SMike Kravetz 			break;
6050fa4d75c1SMike Kravetz 
6051e763243cSMuchun Song 		flush_dcache_page(subpage);
6052e763243cSMuchun Song 
6053fa4d75c1SMike Kravetz 		cond_resched();
6054fa4d75c1SMike Kravetz 	}
6055fa4d75c1SMike Kravetz 	return ret_val;
6056fa4d75c1SMike Kravetz }
605747ad8475SAndrea Arcangeli #endif /* CONFIG_TRANSPARENT_HUGEPAGE || CONFIG_HUGETLBFS */
605849076ec2SKirill A. Shutemov 
605940b64acdSOlof Johansson #if USE_SPLIT_PTE_PTLOCKS && ALLOC_SPLIT_PTLOCKS
6060b35f1819SKirill A. Shutemov 
6061b35f1819SKirill A. Shutemov static struct kmem_cache *page_ptl_cachep;
6062b35f1819SKirill A. Shutemov 
6063b35f1819SKirill A. Shutemov void __init ptlock_cache_init(void)
6064b35f1819SKirill A. Shutemov {
6065b35f1819SKirill A. Shutemov 	page_ptl_cachep = kmem_cache_create("page->ptl", sizeof(spinlock_t), 0,
6066b35f1819SKirill A. Shutemov 			SLAB_PANIC, NULL);
6067b35f1819SKirill A. Shutemov }
6068b35f1819SKirill A. Shutemov 
6069539edb58SPeter Zijlstra bool ptlock_alloc(struct page *page)
607049076ec2SKirill A. Shutemov {
607149076ec2SKirill A. Shutemov 	spinlock_t *ptl;
607249076ec2SKirill A. Shutemov 
6073b35f1819SKirill A. Shutemov 	ptl = kmem_cache_alloc(page_ptl_cachep, GFP_KERNEL);
607449076ec2SKirill A. Shutemov 	if (!ptl)
607549076ec2SKirill A. Shutemov 		return false;
6076539edb58SPeter Zijlstra 	page->ptl = ptl;
607749076ec2SKirill A. Shutemov 	return true;
607849076ec2SKirill A. Shutemov }
607949076ec2SKirill A. Shutemov 
6080539edb58SPeter Zijlstra void ptlock_free(struct page *page)
608149076ec2SKirill A. Shutemov {
6082b35f1819SKirill A. Shutemov 	kmem_cache_free(page_ptl_cachep, page->ptl);
608349076ec2SKirill A. Shutemov }
608449076ec2SKirill A. Shutemov #endif
6085