blob: bd56641c79d4eea34a67635b181c410959d3b16e [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Jérôme Glisse133ff0e2017-09-08 16:11:23 -07002/*
3 * Copyright 2013 Red Hat Inc.
4 *
Jérôme Glissef813f212018-10-30 15:04:06 -07005 * Authors: Jérôme Glisse <jglisse@redhat.com>
Jérôme Glisse133ff0e2017-09-08 16:11:23 -07006 */
7/*
8 * Refer to include/linux/hmm.h for information about heterogeneous memory
9 * management or HMM for short.
10 */
Christoph Hellwiga5201102019-08-28 16:19:53 +020011#include <linux/pagewalk.h>
Jérôme Glisse133ff0e2017-09-08 16:11:23 -070012#include <linux/hmm.h>
Jérôme Glisse858b54d2017-09-08 16:12:02 -070013#include <linux/init.h>
Jérôme Glisseda4c3c72017-09-08 16:11:31 -070014#include <linux/rmap.h>
15#include <linux/swap.h>
Jérôme Glisse133ff0e2017-09-08 16:11:23 -070016#include <linux/slab.h>
17#include <linux/sched.h>
Jérôme Glisse4ef589d2017-09-08 16:11:58 -070018#include <linux/mmzone.h>
19#include <linux/pagemap.h>
Jérôme Glisseda4c3c72017-09-08 16:11:31 -070020#include <linux/swapops.h>
21#include <linux/hugetlb.h>
Jérôme Glisse4ef589d2017-09-08 16:11:58 -070022#include <linux/memremap.h>
Jason Gunthorpec8a53b22019-05-23 10:36:46 -030023#include <linux/sched/mm.h>
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -070024#include <linux/jump_label.h>
Jérôme Glisse55c0ece2019-05-13 17:20:28 -070025#include <linux/dma-mapping.h>
Jérôme Glissec0b12402017-09-08 16:11:27 -070026#include <linux/mmu_notifier.h>
Jérôme Glisse4ef589d2017-09-08 16:11:58 -070027#include <linux/memory_hotplug.h>
28
Alistair Poppleb756a3b2021-06-30 18:54:25 -070029#include "internal.h"
30
Jérôme Glisse74eee182017-09-08 16:11:35 -070031struct hmm_vma_walk {
32 struct hmm_range *range;
33 unsigned long last;
Jérôme Glisse74eee182017-09-08 16:11:35 -070034};
35
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -030036enum {
37 HMM_NEED_FAULT = 1 << 0,
38 HMM_NEED_WRITE_FAULT = 1 << 1,
39 HMM_NEED_ALL_BITS = HMM_NEED_FAULT | HMM_NEED_WRITE_FAULT,
40};
41
Ralph Campbelld28c2c9a2019-11-04 14:21:40 -080042static int hmm_pfns_fill(unsigned long addr, unsigned long end,
Jason Gunthorpe2733ea12020-05-01 15:20:48 -030043 struct hmm_range *range, unsigned long cpu_flags)
Jérôme Glisseda4c3c72017-09-08 16:11:31 -070044{
Jason Gunthorpe2733ea12020-05-01 15:20:48 -030045 unsigned long i = (addr - range->start) >> PAGE_SHIFT;
Jérôme Glisseda4c3c72017-09-08 16:11:31 -070046
Jérôme Glisseda4c3c72017-09-08 16:11:31 -070047 for (; addr < end; addr += PAGE_SIZE, i++)
Jason Gunthorpe2733ea12020-05-01 15:20:48 -030048 range->hmm_pfns[i] = cpu_flags;
Jérôme Glisseda4c3c72017-09-08 16:11:31 -070049 return 0;
50}
51
Jérôme Glisse5504ed22018-04-10 16:28:46 -070052/*
Christoph Hellwigf8c888a2020-03-16 14:53:09 +010053 * hmm_vma_fault() - fault in a range lacking valid pmd or pte(s)
Ralph Campbelld2e8d552019-07-25 17:56:45 -070054 * @addr: range virtual start address (inclusive)
Jérôme Glisse5504ed22018-04-10 16:28:46 -070055 * @end: range virtual end address (exclusive)
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -030056 * @required_fault: HMM_NEED_* flags
Jérôme Glisse5504ed22018-04-10 16:28:46 -070057 * @walk: mm_walk structure
Christoph Hellwigf8c888a2020-03-16 14:53:09 +010058 * Return: -EBUSY after page fault, or page fault error
Jérôme Glisse5504ed22018-04-10 16:28:46 -070059 *
60 * This function will be called whenever pmd_none() or pte_none() returns true,
61 * or whenever there is no page directory covering the virtual address range.
62 */
Christoph Hellwigf8c888a2020-03-16 14:53:09 +010063static int hmm_vma_fault(unsigned long addr, unsigned long end,
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -030064 unsigned int required_fault, struct mm_walk *walk)
Jérôme Glisseda4c3c72017-09-08 16:11:31 -070065{
Jérôme Glisse74eee182017-09-08 16:11:35 -070066 struct hmm_vma_walk *hmm_vma_walk = walk->private;
Christoph Hellwig5a0c38d2020-03-16 14:53:10 +010067 struct vm_area_struct *vma = walk->vma;
Christoph Hellwig5a0c38d2020-03-16 14:53:10 +010068 unsigned int fault_flags = FAULT_FLAG_REMOTE;
Jérôme Glisseda4c3c72017-09-08 16:11:31 -070069
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -030070 WARN_ON_ONCE(!required_fault);
Jérôme Glisse74eee182017-09-08 16:11:35 -070071 hmm_vma_walk->last = addr;
Jérôme Glisse63d50662019-05-13 17:20:18 -070072
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -030073 if (required_fault & HMM_NEED_WRITE_FAULT) {
Christoph Hellwig5a0c38d2020-03-16 14:53:10 +010074 if (!(vma->vm_flags & VM_WRITE))
75 return -EPERM;
76 fault_flags |= FAULT_FLAG_WRITE;
Jérôme Glisse74eee182017-09-08 16:11:35 -070077 }
78
Jason Gunthorpe53bfe17f2020-03-27 17:00:20 -030079 for (; addr < end; addr += PAGE_SIZE)
Peter Xubce617e2020-08-11 18:37:44 -070080 if (handle_mm_fault(vma, addr, fault_flags, NULL) &
81 VM_FAULT_ERROR)
Jason Gunthorpe53bfe17f2020-03-27 17:00:20 -030082 return -EFAULT;
Christoph Hellwigf8c888a2020-03-16 14:53:09 +010083 return -EBUSY;
Jérôme Glisse2aee09d2018-04-10 16:29:02 -070084}
85
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -030086static unsigned int hmm_pte_need_fault(const struct hmm_vma_walk *hmm_vma_walk,
Jason Gunthorpe2733ea12020-05-01 15:20:48 -030087 unsigned long pfn_req_flags,
88 unsigned long cpu_flags)
Jérôme Glisse2aee09d2018-04-10 16:29:02 -070089{
Jérôme Glissef88a1e92018-04-10 16:29:06 -070090 struct hmm_range *range = hmm_vma_walk->range;
91
Jérôme Glisse023a0192019-05-13 17:20:05 -070092 /*
93 * So we not only consider the individual per page request we also
94 * consider the default flags requested for the range. The API can
Ralph Campbelld2e8d552019-07-25 17:56:45 -070095 * be used 2 ways. The first one where the HMM user coalesces
96 * multiple page faults into one request and sets flags per pfn for
97 * those faults. The second one where the HMM user wants to pre-
Jérôme Glisse023a0192019-05-13 17:20:05 -070098 * fault a range with specific flags. For the latter one it is a
99 * waste to have the user pre-fill the pfn arrays with a default
100 * flags value.
101 */
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300102 pfn_req_flags &= range->pfn_flags_mask;
103 pfn_req_flags |= range->default_flags;
Jérôme Glisse023a0192019-05-13 17:20:05 -0700104
Jérôme Glisse2aee09d2018-04-10 16:29:02 -0700105 /* We aren't ask to do anything ... */
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300106 if (!(pfn_req_flags & HMM_PFN_REQ_FAULT))
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300107 return 0;
Jérôme Glissef88a1e92018-04-10 16:29:06 -0700108
Jérôme Glissef88a1e92018-04-10 16:29:06 -0700109 /* Need to write fault ? */
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300110 if ((pfn_req_flags & HMM_PFN_REQ_WRITE) &&
111 !(cpu_flags & HMM_PFN_WRITE))
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300112 return HMM_NEED_FAULT | HMM_NEED_WRITE_FAULT;
113
114 /* If CPU page table is not valid then we need to fault */
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300115 if (!(cpu_flags & HMM_PFN_VALID))
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300116 return HMM_NEED_FAULT;
117 return 0;
Jérôme Glisse2aee09d2018-04-10 16:29:02 -0700118}
119
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300120static unsigned int
121hmm_range_need_fault(const struct hmm_vma_walk *hmm_vma_walk,
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300122 const unsigned long hmm_pfns[], unsigned long npages,
123 unsigned long cpu_flags)
Jérôme Glisse2aee09d2018-04-10 16:29:02 -0700124{
Jason Gunthorpe6bfef2f2020-03-27 17:00:16 -0300125 struct hmm_range *range = hmm_vma_walk->range;
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300126 unsigned int required_fault = 0;
Jérôme Glisse2aee09d2018-04-10 16:29:02 -0700127 unsigned long i;
128
Jason Gunthorpe6bfef2f2020-03-27 17:00:16 -0300129 /*
130 * If the default flags do not request to fault pages, and the mask does
131 * not allow for individual pages to be faulted, then
132 * hmm_pte_need_fault() will always return 0.
133 */
134 if (!((range->default_flags | range->pfn_flags_mask) &
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300135 HMM_PFN_REQ_FAULT))
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300136 return 0;
Jérôme Glisse2aee09d2018-04-10 16:29:02 -0700137
138 for (i = 0; i < npages; ++i) {
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300139 required_fault |= hmm_pte_need_fault(hmm_vma_walk, hmm_pfns[i],
140 cpu_flags);
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300141 if (required_fault == HMM_NEED_ALL_BITS)
142 return required_fault;
Jérôme Glisse2aee09d2018-04-10 16:29:02 -0700143 }
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300144 return required_fault;
Jérôme Glisse2aee09d2018-04-10 16:29:02 -0700145}
146
147static int hmm_vma_walk_hole(unsigned long addr, unsigned long end,
Steven Priceb7a16c72020-02-03 17:36:03 -0800148 __always_unused int depth, struct mm_walk *walk)
Jérôme Glisse2aee09d2018-04-10 16:29:02 -0700149{
150 struct hmm_vma_walk *hmm_vma_walk = walk->private;
151 struct hmm_range *range = hmm_vma_walk->range;
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300152 unsigned int required_fault;
Jérôme Glisse2aee09d2018-04-10 16:29:02 -0700153 unsigned long i, npages;
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300154 unsigned long *hmm_pfns;
Jérôme Glisse2aee09d2018-04-10 16:29:02 -0700155
156 i = (addr - range->start) >> PAGE_SHIFT;
157 npages = (end - addr) >> PAGE_SHIFT;
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300158 hmm_pfns = &range->hmm_pfns[i];
159 required_fault =
160 hmm_range_need_fault(hmm_vma_walk, hmm_pfns, npages, 0);
Jason Gunthorpebd5d3582020-03-27 17:00:21 -0300161 if (!walk->vma) {
162 if (required_fault)
163 return -EFAULT;
164 return hmm_pfns_fill(addr, end, range, HMM_PFN_ERROR);
165 }
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300166 if (required_fault)
167 return hmm_vma_fault(addr, end, required_fault, walk);
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300168 return hmm_pfns_fill(addr, end, range, 0);
Jérôme Glisse2aee09d2018-04-10 16:29:02 -0700169}
170
Ralph Campbell3b50a6e2020-07-01 15:53:49 -0700171static inline unsigned long hmm_pfn_flags_order(unsigned long order)
172{
173 return order << HMM_PFN_ORDER_SHIFT;
174}
175
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300176static inline unsigned long pmd_to_hmm_pfn_flags(struct hmm_range *range,
177 pmd_t pmd)
Jérôme Glisse2aee09d2018-04-10 16:29:02 -0700178{
179 if (pmd_protnone(pmd))
180 return 0;
Ralph Campbell3b50a6e2020-07-01 15:53:49 -0700181 return (pmd_write(pmd) ? (HMM_PFN_VALID | HMM_PFN_WRITE) :
182 HMM_PFN_VALID) |
183 hmm_pfn_flags_order(PMD_SHIFT - PAGE_SHIFT);
Jérôme Glisseda4c3c72017-09-08 16:11:31 -0700184}
185
Jérôme Glisse992de9a2019-05-13 17:20:21 -0700186#ifdef CONFIG_TRANSPARENT_HUGEPAGE
Christoph Hellwig9d3973d2019-08-06 19:05:49 +0300187static int hmm_vma_handle_pmd(struct mm_walk *walk, unsigned long addr,
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300188 unsigned long end, unsigned long hmm_pfns[],
189 pmd_t pmd)
Christoph Hellwig9d3973d2019-08-06 19:05:49 +0300190{
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700191 struct hmm_vma_walk *hmm_vma_walk = walk->private;
Jérôme Glissef88a1e92018-04-10 16:29:06 -0700192 struct hmm_range *range = hmm_vma_walk->range;
Jérôme Glisse2aee09d2018-04-10 16:29:02 -0700193 unsigned long pfn, npages, i;
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300194 unsigned int required_fault;
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300195 unsigned long cpu_flags;
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700196
Jérôme Glisse2aee09d2018-04-10 16:29:02 -0700197 npages = (end - addr) >> PAGE_SHIFT;
Jérôme Glissef88a1e92018-04-10 16:29:06 -0700198 cpu_flags = pmd_to_hmm_pfn_flags(range, pmd);
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300199 required_fault =
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300200 hmm_range_need_fault(hmm_vma_walk, hmm_pfns, npages, cpu_flags);
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300201 if (required_fault)
202 return hmm_vma_fault(addr, end, required_fault, walk);
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700203
Christoph Hellwig309f9a42019-08-06 19:05:47 +0300204 pfn = pmd_pfn(pmd) + ((addr & ~PMD_MASK) >> PAGE_SHIFT);
Jason Gunthorpe068354a2020-03-27 17:00:13 -0300205 for (i = 0; addr < end; addr += PAGE_SIZE, i++, pfn++)
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300206 hmm_pfns[i] = pfn | cpu_flags;
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700207 return 0;
208}
Christoph Hellwig9d3973d2019-08-06 19:05:49 +0300209#else /* CONFIG_TRANSPARENT_HUGEPAGE */
210/* stub to allow the code below to compile */
211int hmm_vma_handle_pmd(struct mm_walk *walk, unsigned long addr,
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300212 unsigned long end, unsigned long hmm_pfns[], pmd_t pmd);
Christoph Hellwig9d3973d2019-08-06 19:05:49 +0300213#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700214
Christoph Hellwig08ddddd2020-03-16 20:32:16 +0100215static inline bool hmm_is_device_private_entry(struct hmm_range *range,
216 swp_entry_t entry)
217{
218 return is_device_private_entry(entry) &&
Alistair Poppleaf5cdaf2021-06-30 18:54:06 -0700219 pfn_swap_entry_to_page(entry)->pgmap->owner ==
Christoph Hellwig08ddddd2020-03-16 20:32:16 +0100220 range->dev_private_owner;
221}
222
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300223static inline unsigned long pte_to_hmm_pfn_flags(struct hmm_range *range,
224 pte_t pte)
Jérôme Glisse2aee09d2018-04-10 16:29:02 -0700225{
Philip Yang789c2af2019-05-23 16:32:31 -0400226 if (pte_none(pte) || !pte_present(pte) || pte_protnone(pte))
Jérôme Glisse2aee09d2018-04-10 16:29:02 -0700227 return 0;
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300228 return pte_write(pte) ? (HMM_PFN_VALID | HMM_PFN_WRITE) : HMM_PFN_VALID;
Jérôme Glisse2aee09d2018-04-10 16:29:02 -0700229}
230
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700231static int hmm_vma_handle_pte(struct mm_walk *walk, unsigned long addr,
232 unsigned long end, pmd_t *pmdp, pte_t *ptep,
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300233 unsigned long *hmm_pfn)
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700234{
235 struct hmm_vma_walk *hmm_vma_walk = walk->private;
Jérôme Glissef88a1e92018-04-10 16:29:06 -0700236 struct hmm_range *range = hmm_vma_walk->range;
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300237 unsigned int required_fault;
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300238 unsigned long cpu_flags;
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700239 pte_t pte = *ptep;
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300240 uint64_t pfn_req_flags = *hmm_pfn;
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700241
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700242 if (pte_none(pte)) {
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300243 required_fault =
244 hmm_pte_need_fault(hmm_vma_walk, pfn_req_flags, 0);
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300245 if (required_fault)
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700246 goto fault;
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300247 *hmm_pfn = 0;
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700248 return 0;
249 }
250
251 if (!pte_present(pte)) {
252 swp_entry_t entry = pte_to_swp_entry(pte);
253
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700254 /*
Randy Dunlap0cb80a22020-08-11 18:32:56 -0700255 * Never fault in device private pages, but just report
Christoph Hellwig17ffdc42020-03-16 20:32:15 +0100256 * the PFN even if not present.
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700257 */
Christoph Hellwig08ddddd2020-03-16 20:32:16 +0100258 if (hmm_is_device_private_entry(range, entry)) {
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300259 cpu_flags = HMM_PFN_VALID;
Alistair Popple4dd845b2021-06-30 18:54:09 -0700260 if (is_writable_device_private_entry(entry))
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300261 cpu_flags |= HMM_PFN_WRITE;
Alistair Poppleaf5cdaf2021-06-30 18:54:06 -0700262 *hmm_pfn = swp_offset(entry) | cpu_flags;
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700263 return 0;
264 }
265
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300266 required_fault =
267 hmm_pte_need_fault(hmm_vma_walk, pfn_req_flags, 0);
Jason Gunthorpe846babe2020-03-27 17:00:19 -0300268 if (!required_fault) {
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300269 *hmm_pfn = 0;
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700270 return 0;
Jason Gunthorpe846babe2020-03-27 17:00:19 -0300271 }
Jason Gunthorpe76612d62020-02-28 15:52:32 -0400272
273 if (!non_swap_entry(entry))
274 goto fault;
275
Alistair Poppleb756a3b2021-06-30 18:54:25 -0700276 if (is_device_exclusive_entry(entry))
277 goto fault;
278
Jason Gunthorpe76612d62020-02-28 15:52:32 -0400279 if (is_migration_entry(entry)) {
280 pte_unmap(ptep);
281 hmm_vma_walk->last = addr;
282 migration_entry_wait(walk->mm, pmdp, addr);
283 return -EBUSY;
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700284 }
285
286 /* Report error for everything else */
Jason Gunthorpedfdc2202020-02-28 15:30:37 -0400287 pte_unmap(ptep);
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700288 return -EFAULT;
289 }
290
Jason Gunthorpe76612d62020-02-28 15:52:32 -0400291 cpu_flags = pte_to_hmm_pfn_flags(range, pte);
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300292 required_fault =
293 hmm_pte_need_fault(hmm_vma_walk, pfn_req_flags, cpu_flags);
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300294 if (required_fault)
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700295 goto fault;
296
Jason Gunthorpe40550622020-03-05 14:27:20 -0400297 /*
Li Zhijian4b42fb22021-09-08 18:10:02 -0700298 * Bypass devmap pte such as DAX page when all pfn requested
299 * flags(pfn_req_flags) are fulfilled.
Jason Gunthorpe40550622020-03-05 14:27:20 -0400300 * Since each architecture defines a struct page for the zero page, just
301 * fall through and treat it like a normal page.
302 */
Alistair Popple87c01d52022-01-14 14:09:31 -0800303 if (!vm_normal_page(walk->vma, addr, pte) &&
304 !pte_devmap(pte) &&
Li Zhijian4b42fb22021-09-08 18:10:02 -0700305 !is_zero_pfn(pte_pfn(pte))) {
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300306 if (hmm_pte_need_fault(hmm_vma_walk, pfn_req_flags, 0)) {
Jason Gunthorpedfdc2202020-02-28 15:30:37 -0400307 pte_unmap(ptep);
Ralph Campbellac541f22019-10-23 12:55:14 -0700308 return -EFAULT;
309 }
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300310 *hmm_pfn = HMM_PFN_ERROR;
Jason Gunthorpe40550622020-03-05 14:27:20 -0400311 return 0;
Jérôme Glisse992de9a2019-05-13 17:20:21 -0700312 }
313
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300314 *hmm_pfn = pte_pfn(pte) | cpu_flags;
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700315 return 0;
316
317fault:
318 pte_unmap(ptep);
319 /* Fault any virtual address we were asked to fault */
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300320 return hmm_vma_fault(addr, end, required_fault, walk);
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700321}
322
Jérôme Glisseda4c3c72017-09-08 16:11:31 -0700323static int hmm_vma_walk_pmd(pmd_t *pmdp,
324 unsigned long start,
325 unsigned long end,
326 struct mm_walk *walk)
327{
Jérôme Glisse74eee182017-09-08 16:11:35 -0700328 struct hmm_vma_walk *hmm_vma_walk = walk->private;
329 struct hmm_range *range = hmm_vma_walk->range;
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300330 unsigned long *hmm_pfns =
331 &range->hmm_pfns[(start - range->start) >> PAGE_SHIFT];
Jason Gunthorpe2288a9a2020-03-05 15:26:33 -0400332 unsigned long npages = (end - start) >> PAGE_SHIFT;
333 unsigned long addr = start;
Jérôme Glisseda4c3c72017-09-08 16:11:31 -0700334 pte_t *ptep;
Jérôme Glissed08faca2018-10-30 15:04:20 -0700335 pmd_t pmd;
Jérôme Glisseda4c3c72017-09-08 16:11:31 -0700336
Jérôme Glisseda4c3c72017-09-08 16:11:31 -0700337again:
Jérôme Glissed08faca2018-10-30 15:04:20 -0700338 pmd = READ_ONCE(*pmdp);
339 if (pmd_none(pmd))
Steven Priceb7a16c72020-02-03 17:36:03 -0800340 return hmm_vma_walk_hole(start, end, -1, walk);
Jérôme Glisseda4c3c72017-09-08 16:11:31 -0700341
Jérôme Glissed08faca2018-10-30 15:04:20 -0700342 if (thp_migration_supported() && is_pmd_migration_entry(pmd)) {
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300343 if (hmm_range_need_fault(hmm_vma_walk, hmm_pfns, npages, 0)) {
Jérôme Glissed08faca2018-10-30 15:04:20 -0700344 hmm_vma_walk->last = addr;
Ralph Campbelld2e8d552019-07-25 17:56:45 -0700345 pmd_migration_entry_wait(walk->mm, pmdp);
Jérôme Glisse73231612019-05-13 17:19:58 -0700346 return -EBUSY;
Jérôme Glissed08faca2018-10-30 15:04:20 -0700347 }
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300348 return hmm_pfns_fill(start, end, range, 0);
Jason Gunthorpe2288a9a2020-03-05 15:26:33 -0400349 }
350
351 if (!pmd_present(pmd)) {
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300352 if (hmm_range_need_fault(hmm_vma_walk, hmm_pfns, npages, 0))
Jason Gunthorpe2288a9a2020-03-05 15:26:33 -0400353 return -EFAULT;
Ralph Campbelld28c2c9a2019-11-04 14:21:40 -0800354 return hmm_pfns_fill(start, end, range, HMM_PFN_ERROR);
Jason Gunthorpe2288a9a2020-03-05 15:26:33 -0400355 }
Jérôme Glissed08faca2018-10-30 15:04:20 -0700356
357 if (pmd_devmap(pmd) || pmd_trans_huge(pmd)) {
Jérôme Glisseda4c3c72017-09-08 16:11:31 -0700358 /*
Ralph Campbelld2e8d552019-07-25 17:56:45 -0700359 * No need to take pmd_lock here, even if some other thread
Jérôme Glisseda4c3c72017-09-08 16:11:31 -0700360 * is splitting the huge pmd we will get that event through
361 * mmu_notifier callback.
362 *
Ralph Campbelld2e8d552019-07-25 17:56:45 -0700363 * So just read pmd value and check again it's a transparent
Jérôme Glisseda4c3c72017-09-08 16:11:31 -0700364 * huge or device mapping one and compute corresponding pfn
365 * values.
366 */
367 pmd = pmd_read_atomic(pmdp);
368 barrier();
369 if (!pmd_devmap(pmd) && !pmd_trans_huge(pmd))
370 goto again;
Jérôme Glisseda4c3c72017-09-08 16:11:31 -0700371
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300372 return hmm_vma_handle_pmd(walk, addr, end, hmm_pfns, pmd);
Jérôme Glisseda4c3c72017-09-08 16:11:31 -0700373 }
374
Jérôme Glissed08faca2018-10-30 15:04:20 -0700375 /*
Ralph Campbelld2e8d552019-07-25 17:56:45 -0700376 * We have handled all the valid cases above ie either none, migration,
Jérôme Glissed08faca2018-10-30 15:04:20 -0700377 * huge or transparent huge. At this point either it is a valid pmd
378 * entry pointing to pte directory or it is a bad pmd that will not
379 * recover.
380 */
Jason Gunthorpe2288a9a2020-03-05 15:26:33 -0400381 if (pmd_bad(pmd)) {
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300382 if (hmm_range_need_fault(hmm_vma_walk, hmm_pfns, npages, 0))
Jason Gunthorpe2288a9a2020-03-05 15:26:33 -0400383 return -EFAULT;
Ralph Campbelld28c2c9a2019-11-04 14:21:40 -0800384 return hmm_pfns_fill(start, end, range, HMM_PFN_ERROR);
Jason Gunthorpe2288a9a2020-03-05 15:26:33 -0400385 }
Jérôme Glisseda4c3c72017-09-08 16:11:31 -0700386
387 ptep = pte_offset_map(pmdp, addr);
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300388 for (; addr < end; addr += PAGE_SIZE, ptep++, hmm_pfns++) {
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700389 int r;
Jérôme Glisseda4c3c72017-09-08 16:11:31 -0700390
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300391 r = hmm_vma_handle_pte(walk, addr, end, pmdp, ptep, hmm_pfns);
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700392 if (r) {
Jason Gunthorpedfdc2202020-02-28 15:30:37 -0400393 /* hmm_vma_handle_pte() did pte_unmap() */
Jérôme Glisse53f5c3f2018-04-10 16:28:59 -0700394 return r;
Jérôme Glisseda4c3c72017-09-08 16:11:31 -0700395 }
Jérôme Glisseda4c3c72017-09-08 16:11:31 -0700396 }
397 pte_unmap(ptep - 1);
Jérôme Glisseda4c3c72017-09-08 16:11:31 -0700398 return 0;
399}
400
Christoph Hellwigf0b3c452019-08-06 19:05:48 +0300401#if defined(CONFIG_ARCH_HAS_PTE_DEVMAP) && \
402 defined(CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD)
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300403static inline unsigned long pud_to_hmm_pfn_flags(struct hmm_range *range,
404 pud_t pud)
Christoph Hellwigf0b3c452019-08-06 19:05:48 +0300405{
406 if (!pud_present(pud))
407 return 0;
Ralph Campbell3b50a6e2020-07-01 15:53:49 -0700408 return (pud_write(pud) ? (HMM_PFN_VALID | HMM_PFN_WRITE) :
409 HMM_PFN_VALID) |
410 hmm_pfn_flags_order(PUD_SHIFT - PAGE_SHIFT);
Christoph Hellwigf0b3c452019-08-06 19:05:48 +0300411}
412
413static int hmm_vma_walk_pud(pud_t *pudp, unsigned long start, unsigned long end,
414 struct mm_walk *walk)
Jérôme Glisse992de9a2019-05-13 17:20:21 -0700415{
416 struct hmm_vma_walk *hmm_vma_walk = walk->private;
417 struct hmm_range *range = hmm_vma_walk->range;
Steven Price3afc4232020-02-03 17:35:45 -0800418 unsigned long addr = start;
Jérôme Glisse992de9a2019-05-13 17:20:21 -0700419 pud_t pud;
Steven Price3afc4232020-02-03 17:35:45 -0800420 int ret = 0;
421 spinlock_t *ptl = pud_trans_huge_lock(pudp, walk->vma);
Jérôme Glisse992de9a2019-05-13 17:20:21 -0700422
Steven Price3afc4232020-02-03 17:35:45 -0800423 if (!ptl)
424 return 0;
425
426 /* Normally we don't want to split the huge page */
427 walk->action = ACTION_CONTINUE;
428
Jérôme Glisse992de9a2019-05-13 17:20:21 -0700429 pud = READ_ONCE(*pudp);
Steven Price3afc4232020-02-03 17:35:45 -0800430 if (pud_none(pud)) {
Jason Gunthorpe05fc1df2020-03-02 15:26:44 -0400431 spin_unlock(ptl);
432 return hmm_vma_walk_hole(start, end, -1, walk);
Steven Price3afc4232020-02-03 17:35:45 -0800433 }
Jérôme Glisse992de9a2019-05-13 17:20:21 -0700434
435 if (pud_huge(pud) && pud_devmap(pud)) {
436 unsigned long i, npages, pfn;
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300437 unsigned int required_fault;
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300438 unsigned long *hmm_pfns;
439 unsigned long cpu_flags;
Jérôme Glisse992de9a2019-05-13 17:20:21 -0700440
Steven Price3afc4232020-02-03 17:35:45 -0800441 if (!pud_present(pud)) {
Jason Gunthorpe05fc1df2020-03-02 15:26:44 -0400442 spin_unlock(ptl);
443 return hmm_vma_walk_hole(start, end, -1, walk);
Steven Price3afc4232020-02-03 17:35:45 -0800444 }
Jérôme Glisse992de9a2019-05-13 17:20:21 -0700445
446 i = (addr - range->start) >> PAGE_SHIFT;
447 npages = (end - addr) >> PAGE_SHIFT;
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300448 hmm_pfns = &range->hmm_pfns[i];
Jérôme Glisse992de9a2019-05-13 17:20:21 -0700449
450 cpu_flags = pud_to_hmm_pfn_flags(range, pud);
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300451 required_fault = hmm_range_need_fault(hmm_vma_walk, hmm_pfns,
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300452 npages, cpu_flags);
453 if (required_fault) {
Jason Gunthorpe05fc1df2020-03-02 15:26:44 -0400454 spin_unlock(ptl);
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300455 return hmm_vma_fault(addr, end, required_fault, walk);
Steven Price3afc4232020-02-03 17:35:45 -0800456 }
Jérôme Glisse992de9a2019-05-13 17:20:21 -0700457
Jérôme Glisse992de9a2019-05-13 17:20:21 -0700458 pfn = pud_pfn(pud) + ((addr & ~PUD_MASK) >> PAGE_SHIFT);
Jason Gunthorpe068354a2020-03-27 17:00:13 -0300459 for (i = 0; i < npages; ++i, ++pfn)
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300460 hmm_pfns[i] = pfn | cpu_flags;
Steven Price3afc4232020-02-03 17:35:45 -0800461 goto out_unlock;
Jérôme Glisse992de9a2019-05-13 17:20:21 -0700462 }
463
Steven Price3afc4232020-02-03 17:35:45 -0800464 /* Ask for the PUD to be split */
465 walk->action = ACTION_SUBTREE;
Jérôme Glisse992de9a2019-05-13 17:20:21 -0700466
Steven Price3afc4232020-02-03 17:35:45 -0800467out_unlock:
468 spin_unlock(ptl);
469 return ret;
Jérôme Glisse992de9a2019-05-13 17:20:21 -0700470}
Christoph Hellwigf0b3c452019-08-06 19:05:48 +0300471#else
472#define hmm_vma_walk_pud NULL
473#endif
Jérôme Glisse992de9a2019-05-13 17:20:21 -0700474
Christoph Hellwig251bbe52019-08-06 19:05:50 +0300475#ifdef CONFIG_HUGETLB_PAGE
Jérôme Glisse63d50662019-05-13 17:20:18 -0700476static int hmm_vma_walk_hugetlb_entry(pte_t *pte, unsigned long hmask,
477 unsigned long start, unsigned long end,
478 struct mm_walk *walk)
479{
Christoph Hellwig05c23af2019-08-06 19:05:46 +0300480 unsigned long addr = start, i, pfn;
Jérôme Glisse63d50662019-05-13 17:20:18 -0700481 struct hmm_vma_walk *hmm_vma_walk = walk->private;
482 struct hmm_range *range = hmm_vma_walk->range;
483 struct vm_area_struct *vma = walk->vma;
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300484 unsigned int required_fault;
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300485 unsigned long pfn_req_flags;
486 unsigned long cpu_flags;
Jérôme Glisse63d50662019-05-13 17:20:18 -0700487 spinlock_t *ptl;
488 pte_t entry;
Jérôme Glisse63d50662019-05-13 17:20:18 -0700489
Ralph Campbelld2e8d552019-07-25 17:56:45 -0700490 ptl = huge_pte_lock(hstate_vma(vma), walk->mm, pte);
Jérôme Glisse63d50662019-05-13 17:20:18 -0700491 entry = huge_ptep_get(pte);
492
Christoph Hellwig7f082632019-08-06 19:05:45 +0300493 i = (start - range->start) >> PAGE_SHIFT;
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300494 pfn_req_flags = range->hmm_pfns[i];
Ralph Campbell3b50a6e2020-07-01 15:53:49 -0700495 cpu_flags = pte_to_hmm_pfn_flags(range, entry) |
496 hmm_pfn_flags_order(huge_page_order(hstate_vma(vma)));
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300497 required_fault =
498 hmm_pte_need_fault(hmm_vma_walk, pfn_req_flags, cpu_flags);
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300499 if (required_fault) {
Christoph Hellwig45050692020-03-16 14:53:08 +0100500 spin_unlock(ptl);
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300501 return hmm_vma_fault(addr, end, required_fault, walk);
Jérôme Glisse63d50662019-05-13 17:20:18 -0700502 }
503
Christoph Hellwig05c23af2019-08-06 19:05:46 +0300504 pfn = pte_pfn(entry) + ((start & ~hmask) >> PAGE_SHIFT);
Christoph Hellwig7f082632019-08-06 19:05:45 +0300505 for (; addr < end; addr += PAGE_SIZE, i++, pfn++)
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300506 range->hmm_pfns[i] = pfn | cpu_flags;
507
Jérôme Glisse63d50662019-05-13 17:20:18 -0700508 spin_unlock(ptl);
Christoph Hellwig45050692020-03-16 14:53:08 +0100509 return 0;
Jérôme Glisse63d50662019-05-13 17:20:18 -0700510}
Christoph Hellwig251bbe52019-08-06 19:05:50 +0300511#else
512#define hmm_vma_walk_hugetlb_entry NULL
513#endif /* CONFIG_HUGETLB_PAGE */
Jérôme Glisse63d50662019-05-13 17:20:18 -0700514
Ralph Campbelld28c2c9a2019-11-04 14:21:40 -0800515static int hmm_vma_walk_test(unsigned long start, unsigned long end,
516 struct mm_walk *walk)
Jérôme Glisse33cd47d2018-04-10 16:28:54 -0700517{
Ralph Campbelld28c2c9a2019-11-04 14:21:40 -0800518 struct hmm_vma_walk *hmm_vma_walk = walk->private;
519 struct hmm_range *range = hmm_vma_walk->range;
520 struct vm_area_struct *vma = walk->vma;
521
Alistair Popple87c01d52022-01-14 14:09:31 -0800522 if (!(vma->vm_flags & (VM_IO | VM_PFNMAP)) &&
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300523 vma->vm_flags & VM_READ)
524 return 0;
525
Ralph Campbelld28c2c9a2019-11-04 14:21:40 -0800526 /*
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300527 * vma ranges that don't have struct page backing them or map I/O
528 * devices directly cannot be handled by hmm_range_fault().
Jason Gunthorpec2579c92020-03-05 12:00:22 -0400529 *
Ralph Campbelld28c2c9a2019-11-04 14:21:40 -0800530 * If the vma does not allow read access, then assume that it does not
Jason Gunthorpec2579c92020-03-05 12:00:22 -0400531 * allow write access either. HMM does not support architectures that
532 * allow write without read.
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300533 *
534 * If a fault is requested for an unsupported range then it is a hard
535 * failure.
Ralph Campbelld28c2c9a2019-11-04 14:21:40 -0800536 */
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300537 if (hmm_range_need_fault(hmm_vma_walk,
Jason Gunthorpe2733ea12020-05-01 15:20:48 -0300538 range->hmm_pfns +
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300539 ((start - range->start) >> PAGE_SHIFT),
540 (end - start) >> PAGE_SHIFT, 0))
541 return -EFAULT;
Ralph Campbelld28c2c9a2019-11-04 14:21:40 -0800542
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300543 hmm_pfns_fill(start, end, range, HMM_PFN_ERROR);
Ralph Campbelld28c2c9a2019-11-04 14:21:40 -0800544
Jason Gunthorpea3eb13c2020-03-27 17:00:14 -0300545 /* Skip this vma and continue processing the next vma. */
546 return 1;
Jérôme Glisse33cd47d2018-04-10 16:28:54 -0700547}
548
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200549static const struct mm_walk_ops hmm_walk_ops = {
550 .pud_entry = hmm_vma_walk_pud,
551 .pmd_entry = hmm_vma_walk_pmd,
552 .pte_hole = hmm_vma_walk_hole,
553 .hugetlb_entry = hmm_vma_walk_hugetlb_entry,
Ralph Campbelld28c2c9a2019-11-04 14:21:40 -0800554 .test_walk = hmm_vma_walk_test,
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200555};
556
Christoph Hellwig9a4903e2019-07-25 17:56:46 -0700557/**
558 * hmm_range_fault - try to fault some address in a virtual address range
Jason Gunthorpef970b972020-03-27 17:00:15 -0300559 * @range: argument structure
Jérôme Glisse73231612019-05-13 17:19:58 -0700560 *
Jason Gunthorpebe957c82020-05-01 15:20:45 -0300561 * Returns 0 on success or one of the following error codes:
Christoph Hellwig9a4903e2019-07-25 17:56:46 -0700562 *
563 * -EINVAL: Invalid arguments or mm or virtual address is in an invalid vma
564 * (e.g., device file vma).
565 * -ENOMEM: Out of memory.
566 * -EPERM: Invalid permission (e.g., asking for write and range is read
567 * only).
Christoph Hellwig9a4903e2019-07-25 17:56:46 -0700568 * -EBUSY: The range has been invalidated and the caller needs to wait for
569 * the invalidation to finish.
Jason Gunthorpef970b972020-03-27 17:00:15 -0300570 * -EFAULT: A page was requested to be valid and could not be made valid
571 * ie it has no backing VMA or it is illegal to access
Jérôme Glisse74eee182017-09-08 16:11:35 -0700572 *
Jason Gunthorpef970b972020-03-27 17:00:15 -0300573 * This is similar to get_user_pages(), except that it can read the page tables
574 * without mutating them (ie causing faults).
Jérôme Glisse74eee182017-09-08 16:11:35 -0700575 */
Jason Gunthorpebe957c82020-05-01 15:20:45 -0300576int hmm_range_fault(struct hmm_range *range)
Jérôme Glisse74eee182017-09-08 16:11:35 -0700577{
Ralph Campbelld28c2c9a2019-11-04 14:21:40 -0800578 struct hmm_vma_walk hmm_vma_walk = {
579 .range = range,
580 .last = range->start,
Ralph Campbelld28c2c9a2019-11-04 14:21:40 -0800581 };
Jason Gunthorpea22dd502019-11-12 16:22:30 -0400582 struct mm_struct *mm = range->notifier->mm;
Jérôme Glisse74eee182017-09-08 16:11:35 -0700583 int ret;
584
Michel Lespinasse42fc5412020-06-08 21:33:44 -0700585 mmap_assert_locked(mm);
Jérôme Glisse74eee182017-09-08 16:11:35 -0700586
587 do {
Jérôme Glissea3e0d412019-05-13 17:20:01 -0700588 /* If range is no longer valid force retry. */
Jason Gunthorpea22dd502019-11-12 16:22:30 -0400589 if (mmu_interval_check_retry(range->notifier,
590 range->notifier_seq))
Christoph Hellwig2bcbeae2019-07-24 08:52:52 +0200591 return -EBUSY;
Ralph Campbelld28c2c9a2019-11-04 14:21:40 -0800592 ret = walk_page_range(mm, hmm_vma_walk.last, range->end,
593 &hmm_walk_ops, &hmm_vma_walk);
Jason Gunthorpebe957c82020-05-01 15:20:45 -0300594 /*
595 * When -EBUSY is returned the loop restarts with
596 * hmm_vma_walk.last set to an address that has not been stored
597 * in pfns. All entries < last in the pfn array are set to their
598 * output, and all >= are still at their input values.
599 */
Ralph Campbelld28c2c9a2019-11-04 14:21:40 -0800600 } while (ret == -EBUSY);
Jason Gunthorpebe957c82020-05-01 15:20:45 -0300601 return ret;
Jérôme Glisse74eee182017-09-08 16:11:35 -0700602}
Jérôme Glisse73231612019-05-13 17:19:58 -0700603EXPORT_SYMBOL(hmm_range_fault);