KVM
Functions | Variables
mm.h File Reference
#include <asm/kvm_pgtable.h>
#include <asm/spectre.h>
#include <linux/memblock.h>
#include <linux/types.h>
#include <nvhe/memory.h>
#include <nvhe/spinlock.h>
Include dependency graph for mm.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

int hyp_create_pcpu_fixmap (void)
 
void * hyp_fixmap_map (phys_addr_t phys)
 
void hyp_fixmap_unmap (void)
 
int hyp_create_idmap (u32 hyp_va_bits)
 
int hyp_map_vectors (void)
 
int hyp_back_vmemmap (phys_addr_t back)
 
int pkvm_cpu_set_vector (enum arm64_hyp_spectre_vector slot)
 
int pkvm_create_mappings (void *from, void *to, enum kvm_pgtable_prot prot)
 
int pkvm_create_mappings_locked (void *from, void *to, enum kvm_pgtable_prot prot)
 
int __pkvm_create_private_mapping (phys_addr_t phys, size_t size, enum kvm_pgtable_prot prot, unsigned long *haddr)
 
int pkvm_create_stack (phys_addr_t phys, unsigned long *haddr)
 
int pkvm_alloc_private_va_range (size_t size, unsigned long *haddr)
 

Variables

struct kvm_pgtable pkvm_pgtable
 
hyp_spinlock_t pkvm_pgd_lock
 

Function Documentation

◆ __pkvm_create_private_mapping()

int __pkvm_create_private_mapping ( phys_addr_t  phys,
size_t  size,
enum kvm_pgtable_prot  prot,
unsigned long *  haddr 
)

Definition at line 93 of file mm.c.

96 {
97  unsigned long addr;
98  int err;
99 
100  size = PAGE_ALIGN(size + offset_in_page(phys));
101  err = pkvm_alloc_private_va_range(size, &addr);
102  if (err)
103  return err;
104 
105  err = __pkvm_create_mappings(addr, size, phys, prot);
106  if (err)
107  return err;
108 
109  *haddr = addr + offset_in_page(phys);
110  return err;
111 }
size_t size
Definition: gen-hyprel.c:133
static int __pkvm_create_mappings(unsigned long start, unsigned long size, unsigned long phys, enum kvm_pgtable_prot prot)
Definition: mm.c:35
int pkvm_alloc_private_va_range(size_t size, unsigned long *haddr)
Definition: mm.c:78
Here is the call graph for this function:
Here is the caller graph for this function:

◆ hyp_back_vmemmap()

int hyp_back_vmemmap ( phys_addr_t  back)

Definition at line 149 of file mm.c.

150 {
151  unsigned long i, start, size, end = 0;
152  int ret;
153 
154  for (i = 0; i < hyp_memblock_nr; i++) {
155  start = hyp_memory[i].base;
156  start = ALIGN_DOWN((u64)hyp_phys_to_page(start), PAGE_SIZE);
157  /*
158  * The begining of the hyp_vmemmap region for the current
159  * memblock may already be backed by the page backing the end
160  * the previous region, so avoid mapping it twice.
161  */
162  start = max(start, end);
163 
164  end = hyp_memory[i].base + hyp_memory[i].size;
165  end = PAGE_ALIGN((u64)hyp_phys_to_page(end));
166  if (start >= end)
167  continue;
168 
169  size = end - start;
170  ret = __pkvm_create_mappings(start, size, back, PAGE_HYP);
171  if (ret)
172  return ret;
173 
174  memset(hyp_phys_to_virt(back), 0, size);
175  back += size;
176  }
177 
178  return 0;
179 }
static unsigned long end
Definition: early_alloc.c:16
static void * hyp_phys_to_virt(phys_addr_t phys)
Definition: memory.h:20
#define hyp_phys_to_page(phys)
Definition: memory.h:32
struct memblock_region hyp_memory[HYP_MEMBLOCK_REGIONS]
Definition: mm.c:24
unsigned int hyp_memblock_nr
Definition: mm.c:25
Here is the call graph for this function:
Here is the caller graph for this function:

◆ hyp_create_idmap()

int hyp_create_idmap ( u32  hyp_va_bits)

Definition at line 328 of file mm.c.

329 {
330  unsigned long start, end;
331 
332  start = hyp_virt_to_phys((void *)__hyp_idmap_text_start);
333  start = ALIGN_DOWN(start, PAGE_SIZE);
334 
335  end = hyp_virt_to_phys((void *)__hyp_idmap_text_end);
336  end = ALIGN(end, PAGE_SIZE);
337 
338  /*
339  * One half of the VA space is reserved to linearly map portions of
340  * memory -- see va_layout.c for more details. The other half of the VA
341  * space contains the trampoline page, and needs some care. Split that
342  * second half in two and find the quarter of VA space not conflicting
343  * with the idmap to place the IOs and the vmemmap. IOs use the lower
344  * half of the quarter and the vmemmap the upper half.
345  */
346  __io_map_base = start & BIT(hyp_va_bits - 2);
347  __io_map_base ^= BIT(hyp_va_bits - 2);
348  __hyp_vmemmap = __io_map_base | BIT(hyp_va_bits - 3);
349 
350  return __pkvm_create_mappings(start, end - start, start, PAGE_HYP_EXEC);
351 }
u64 __hyp_vmemmap
Definition: page_alloc.c:10
static phys_addr_t hyp_virt_to_phys(void *addr)
Definition: memory.h:25
static u64 __io_map_base
Definition: mm.c:27
Here is the call graph for this function:
Here is the caller graph for this function:

◆ hyp_create_pcpu_fixmap()

int hyp_create_pcpu_fixmap ( void  )

Definition at line 305 of file mm.c.

306 {
307  unsigned long addr, i;
308  int ret;
309 
310  for (i = 0; i < hyp_nr_cpus; i++) {
311  ret = pkvm_alloc_private_va_range(PAGE_SIZE, &addr);
312  if (ret)
313  return ret;
314 
315  ret = kvm_pgtable_hyp_map(&pkvm_pgtable, addr, PAGE_SIZE,
316  __hyp_pa(__hyp_bss_start), PAGE_HYP);
317  if (ret)
318  return ret;
319 
320  ret = create_fixmap_slot(addr, i);
321  if (ret)
322  return ret;
323  }
324 
325  return 0;
326 }
unsigned long hyp_nr_cpus
Definition: setup.c:23
static int create_fixmap_slot(u64 addr, u64 cpu)
Definition: mm.c:294
struct kvm_pgtable pkvm_pgtable
Definition: mm.c:21
int kvm_pgtable_hyp_map(struct kvm_pgtable *pgt, u64 addr, u64 size, u64 phys, enum kvm_pgtable_prot prot)
Definition: pgtable.c:489
Here is the call graph for this function:
Here is the caller graph for this function:

◆ hyp_fixmap_map()

void* hyp_fixmap_map ( phys_addr_t  phys)

Definition at line 232 of file mm.c.

233 {
234  struct hyp_fixmap_slot *slot = this_cpu_ptr(&fixmap_slots);
235  kvm_pte_t pte, *ptep = slot->ptep;
236 
237  pte = *ptep;
238  pte &= ~kvm_phys_to_pte(KVM_PHYS_INVALID);
239  pte |= kvm_phys_to_pte(phys) | KVM_PTE_VALID;
240  WRITE_ONCE(*ptep, pte);
241  dsb(ishst);
242 
243  return (void *)slot->addr;
244 }
kvm_pte_t * ptep
Definition: mm.c:31
u64 addr
Definition: mm.c:30
Here is the caller graph for this function:

◆ hyp_fixmap_unmap()

void hyp_fixmap_unmap ( void  )

Definition at line 268 of file mm.c.

269 {
270  fixmap_clear_slot(this_cpu_ptr(&fixmap_slots));
271 }
static void fixmap_clear_slot(struct hyp_fixmap_slot *slot)
Definition: mm.c:246
Here is the call graph for this function:
Here is the caller graph for this function:

◆ hyp_map_vectors()

int hyp_map_vectors ( void  )

Definition at line 210 of file mm.c.

211 {
212  phys_addr_t phys;
213  unsigned long bp_base;
214  int ret;
215 
216  if (!kvm_system_needs_idmapped_vectors()) {
217  __hyp_bp_vect_base = __bp_harden_hyp_vecs;
218  return 0;
219  }
220 
221  phys = __hyp_pa(__bp_harden_hyp_vecs);
222  ret = __pkvm_create_private_mapping(phys, __BP_HARDEN_HYP_VECS_SZ,
223  PAGE_HYP_EXEC, &bp_base);
224  if (ret)
225  return ret;
226 
227  __hyp_bp_vect_base = (void *)bp_base;
228 
229  return 0;
230 }
int __pkvm_create_private_mapping(phys_addr_t phys, size_t size, enum kvm_pgtable_prot prot, unsigned long *haddr)
Definition: mm.c:93
static void * __hyp_bp_vect_base
Definition: mm.c:181
Here is the call graph for this function:
Here is the caller graph for this function:

◆ pkvm_alloc_private_va_range()

int pkvm_alloc_private_va_range ( size_t  size,
unsigned long *  haddr 
)

pkvm_alloc_private_va_range - Allocates a private VA range. @size: The size of the VA range to reserve. @haddr: The hypervisor virtual start address of the allocation.

The private virtual address (VA) range is allocated above __io_map_base and aligned based on the order of @size.

Return: 0 on success or negative error code on failure.

Definition at line 78 of file mm.c.

79 {
80  unsigned long addr;
81  int ret;
82 
84  addr = __io_map_base;
87 
88  *haddr = addr;
89 
90  return ret;
91 }
hyp_spinlock_t pkvm_pgd_lock
Definition: mm.c:22
static int __pkvm_alloc_private_va_range(unsigned long start, size_t size)
Definition: mm.c:47
static void hyp_spin_unlock(hyp_spinlock_t *lock)
Definition: spinlock.h:82
static void hyp_spin_lock(hyp_spinlock_t *lock)
Definition: spinlock.h:44
Here is the call graph for this function:
Here is the caller graph for this function:

◆ pkvm_cpu_set_vector()

int pkvm_cpu_set_vector ( enum arm64_hyp_spectre_vector  slot)

Definition at line 182 of file mm.c.

183 {
184  void *vector;
185 
186  switch (slot) {
187  case HYP_VECTOR_DIRECT: {
188  vector = __kvm_hyp_vector;
189  break;
190  }
191  case HYP_VECTOR_SPECTRE_DIRECT: {
192  vector = __bp_harden_hyp_vecs;
193  break;
194  }
195  case HYP_VECTOR_INDIRECT:
196  case HYP_VECTOR_SPECTRE_INDIRECT: {
197  vector = (void *)__hyp_bp_vect_base;
198  break;
199  }
200  default:
201  return -EINVAL;
202  }
203 
204  vector = __kvm_vector_slot2addr(vector, slot);
205  *this_cpu_ptr(&kvm_hyp_vector) = (unsigned long)vector;
206 
207  return 0;
208 }
Here is the caller graph for this function:

◆ pkvm_create_mappings()

int pkvm_create_mappings ( void *  from,
void *  to,
enum kvm_pgtable_prot  prot 
)

Definition at line 138 of file mm.c.

139 {
140  int ret;
141 
143  ret = pkvm_create_mappings_locked(from, to, prot);
145 
146  return ret;
147 }
int pkvm_create_mappings_locked(void *from, void *to, enum kvm_pgtable_prot prot)
Definition: mm.c:113
Here is the call graph for this function:
Here is the caller graph for this function:

◆ pkvm_create_mappings_locked()

int pkvm_create_mappings_locked ( void *  from,
void *  to,
enum kvm_pgtable_prot  prot 
)

Definition at line 113 of file mm.c.

114 {
115  unsigned long start = (unsigned long)from;
116  unsigned long end = (unsigned long)to;
117  unsigned long virt_addr;
118  phys_addr_t phys;
119 
121 
122  start = start & PAGE_MASK;
123  end = PAGE_ALIGN(end);
124 
125  for (virt_addr = start; virt_addr < end; virt_addr += PAGE_SIZE) {
126  int err;
127 
128  phys = hyp_virt_to_phys((void *)virt_addr);
129  err = kvm_pgtable_hyp_map(&pkvm_pgtable, virt_addr, PAGE_SIZE,
130  phys, prot);
131  if (err)
132  return err;
133  }
134 
135  return 0;
136 }
static void hyp_assert_lock_held(hyp_spinlock_t *lock)
Definition: spinlock.h:122
Here is the call graph for this function:
Here is the caller graph for this function:

◆ pkvm_create_stack()

int pkvm_create_stack ( phys_addr_t  phys,
unsigned long *  haddr 
)

Definition at line 353 of file mm.c.

354 {
355  unsigned long addr, prev_base;
356  size_t size;
357  int ret;
358 
360 
361  prev_base = __io_map_base;
362  /*
363  * Efficient stack verification using the PAGE_SHIFT bit implies
364  * an alignment of our allocation on the order of the size.
365  */
366  size = PAGE_SIZE * 2;
367  addr = ALIGN(__io_map_base, size);
368 
369  ret = __pkvm_alloc_private_va_range(addr, size);
370  if (!ret) {
371  /*
372  * Since the stack grows downwards, map the stack to the page
373  * at the higher address and leave the lower guard page
374  * unbacked.
375  *
376  * Any valid stack address now has the PAGE_SHIFT bit as 1
377  * and addresses corresponding to the guard page have the
378  * PAGE_SHIFT bit as 0 - this is used for overflow detection.
379  */
380  ret = kvm_pgtable_hyp_map(&pkvm_pgtable, addr + PAGE_SIZE,
381  PAGE_SIZE, phys, PAGE_HYP);
382  if (ret)
383  __io_map_base = prev_base;
384  }
386 
387  *haddr = addr + size;
388 
389  return ret;
390 }
Here is the call graph for this function:
Here is the caller graph for this function:

Variable Documentation

◆ pkvm_pgd_lock

hyp_spinlock_t pkvm_pgd_lock
extern

Definition at line 22 of file mm.c.

◆ pkvm_pgtable

struct kvm_pgtable pkvm_pgtable
extern

Definition at line 1 of file mm.c.