Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.17-rc2 398 lines 13 kB view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * tools/testing/selftests/kvm/include/kvm_util_base.h 4 * 5 * Copyright (C) 2018, Google LLC. 6 */ 7#ifndef SELFTEST_KVM_UTIL_BASE_H 8#define SELFTEST_KVM_UTIL_BASE_H 9 10#include "test_util.h" 11 12#include "asm/kvm.h" 13#include "linux/list.h" 14#include "linux/kvm.h" 15#include <sys/ioctl.h> 16 17#include "sparsebit.h" 18 19#define KVM_DEV_PATH "/dev/kvm" 20#define KVM_MAX_VCPUS 512 21 22#define NSEC_PER_SEC 1000000000L 23 24/* 25 * Callers of kvm_util only have an incomplete/opaque description of the 26 * structure kvm_util is using to maintain the state of a VM. 27 */ 28struct kvm_vm; 29 30typedef uint64_t vm_paddr_t; /* Virtual Machine (Guest) physical address */ 31typedef uint64_t vm_vaddr_t; /* Virtual Machine (Guest) virtual address */ 32 33/* Minimum allocated guest virtual and physical addresses */ 34#define KVM_UTIL_MIN_VADDR 0x2000 35#define KVM_GUEST_PAGE_TABLE_MIN_PADDR 0x180000 36 37#define DEFAULT_GUEST_PHY_PAGES 512 38#define DEFAULT_GUEST_STACK_VADDR_MIN 0xab6000 39#define DEFAULT_STACK_PGS 5 40 41enum vm_guest_mode { 42 VM_MODE_P52V48_4K, 43 VM_MODE_P52V48_64K, 44 VM_MODE_P48V48_4K, 45 VM_MODE_P48V48_16K, 46 VM_MODE_P48V48_64K, 47 VM_MODE_P40V48_4K, 48 VM_MODE_P40V48_16K, 49 VM_MODE_P40V48_64K, 50 VM_MODE_PXXV48_4K, /* For 48bits VA but ANY bits PA */ 51 VM_MODE_P47V64_4K, 52 VM_MODE_P44V64_4K, 53 VM_MODE_P36V48_4K, 54 VM_MODE_P36V48_16K, 55 VM_MODE_P36V48_64K, 56 VM_MODE_P36V47_16K, 57 NUM_VM_MODES, 58}; 59 60#if defined(__aarch64__) 61 62extern enum vm_guest_mode vm_mode_default; 63 64#define VM_MODE_DEFAULT vm_mode_default 65#define MIN_PAGE_SHIFT 12U 66#define ptes_per_page(page_size) ((page_size) / 8) 67 68#elif defined(__x86_64__) 69 70#define VM_MODE_DEFAULT VM_MODE_PXXV48_4K 71#define MIN_PAGE_SHIFT 12U 72#define ptes_per_page(page_size) ((page_size) / 8) 73 74#elif defined(__s390x__) 75 76#define VM_MODE_DEFAULT VM_MODE_P44V64_4K 77#define MIN_PAGE_SHIFT 12U 78#define ptes_per_page(page_size) ((page_size) / 16) 79 80#elif defined(__riscv) 81 82#if __riscv_xlen == 32 83#error "RISC-V 32-bit kvm selftests not supported" 84#endif 85 86#define VM_MODE_DEFAULT VM_MODE_P40V48_4K 87#define MIN_PAGE_SHIFT 12U 88#define ptes_per_page(page_size) ((page_size) / 8) 89 90#endif 91 92#define MIN_PAGE_SIZE (1U << MIN_PAGE_SHIFT) 93#define PTES_PER_MIN_PAGE ptes_per_page(MIN_PAGE_SIZE) 94 95struct vm_guest_mode_params { 96 unsigned int pa_bits; 97 unsigned int va_bits; 98 unsigned int page_size; 99 unsigned int page_shift; 100}; 101extern const struct vm_guest_mode_params vm_guest_mode_params[]; 102 103int open_path_or_exit(const char *path, int flags); 104int open_kvm_dev_path_or_exit(void); 105int kvm_check_cap(long cap); 106int vm_check_cap(struct kvm_vm *vm, long cap); 107int vm_enable_cap(struct kvm_vm *vm, struct kvm_enable_cap *cap); 108int vcpu_enable_cap(struct kvm_vm *vm, uint32_t vcpu_id, 109 struct kvm_enable_cap *cap); 110void vm_enable_dirty_ring(struct kvm_vm *vm, uint32_t ring_size); 111const char *vm_guest_mode_string(uint32_t i); 112 113struct kvm_vm *vm_create(enum vm_guest_mode mode, uint64_t phy_pages, int perm); 114void kvm_vm_free(struct kvm_vm *vmp); 115void kvm_vm_restart(struct kvm_vm *vmp, int perm); 116void kvm_vm_release(struct kvm_vm *vmp); 117void kvm_vm_get_dirty_log(struct kvm_vm *vm, int slot, void *log); 118void kvm_vm_clear_dirty_log(struct kvm_vm *vm, int slot, void *log, 119 uint64_t first_page, uint32_t num_pages); 120uint32_t kvm_vm_reset_dirty_ring(struct kvm_vm *vm); 121 122int kvm_memcmp_hva_gva(void *hva, struct kvm_vm *vm, const vm_vaddr_t gva, 123 size_t len); 124 125void kvm_vm_elf_load(struct kvm_vm *vm, const char *filename); 126 127void vm_dump(FILE *stream, struct kvm_vm *vm, uint8_t indent); 128 129/* 130 * VM VCPU Dump 131 * 132 * Input Args: 133 * stream - Output FILE stream 134 * vm - Virtual Machine 135 * vcpuid - VCPU ID 136 * indent - Left margin indent amount 137 * 138 * Output Args: None 139 * 140 * Return: None 141 * 142 * Dumps the current state of the VCPU specified by @vcpuid, within the VM 143 * given by @vm, to the FILE stream given by @stream. 144 */ 145void vcpu_dump(FILE *stream, struct kvm_vm *vm, uint32_t vcpuid, 146 uint8_t indent); 147 148void vm_create_irqchip(struct kvm_vm *vm); 149 150void vm_userspace_mem_region_add(struct kvm_vm *vm, 151 enum vm_mem_backing_src_type src_type, 152 uint64_t guest_paddr, uint32_t slot, uint64_t npages, 153 uint32_t flags); 154 155void vcpu_ioctl(struct kvm_vm *vm, uint32_t vcpuid, unsigned long ioctl, 156 void *arg); 157int _vcpu_ioctl(struct kvm_vm *vm, uint32_t vcpuid, unsigned long ioctl, 158 void *arg); 159void vm_ioctl(struct kvm_vm *vm, unsigned long ioctl, void *arg); 160int _vm_ioctl(struct kvm_vm *vm, unsigned long cmd, void *arg); 161void kvm_ioctl(struct kvm_vm *vm, unsigned long ioctl, void *arg); 162int _kvm_ioctl(struct kvm_vm *vm, unsigned long ioctl, void *arg); 163void vm_mem_region_set_flags(struct kvm_vm *vm, uint32_t slot, uint32_t flags); 164void vm_mem_region_move(struct kvm_vm *vm, uint32_t slot, uint64_t new_gpa); 165void vm_mem_region_delete(struct kvm_vm *vm, uint32_t slot); 166void vm_vcpu_add(struct kvm_vm *vm, uint32_t vcpuid); 167vm_vaddr_t vm_vaddr_alloc(struct kvm_vm *vm, size_t sz, vm_vaddr_t vaddr_min); 168vm_vaddr_t vm_vaddr_alloc_pages(struct kvm_vm *vm, int nr_pages); 169vm_vaddr_t vm_vaddr_alloc_page(struct kvm_vm *vm); 170 171void virt_map(struct kvm_vm *vm, uint64_t vaddr, uint64_t paddr, 172 unsigned int npages); 173void *addr_gpa2hva(struct kvm_vm *vm, vm_paddr_t gpa); 174void *addr_gva2hva(struct kvm_vm *vm, vm_vaddr_t gva); 175vm_paddr_t addr_hva2gpa(struct kvm_vm *vm, void *hva); 176void *addr_gpa2alias(struct kvm_vm *vm, vm_paddr_t gpa); 177 178/* 179 * Address Guest Virtual to Guest Physical 180 * 181 * Input Args: 182 * vm - Virtual Machine 183 * gva - VM virtual address 184 * 185 * Output Args: None 186 * 187 * Return: 188 * Equivalent VM physical address 189 * 190 * Returns the VM physical address of the translated VM virtual 191 * address given by @gva. 192 */ 193vm_paddr_t addr_gva2gpa(struct kvm_vm *vm, vm_vaddr_t gva); 194 195struct kvm_run *vcpu_state(struct kvm_vm *vm, uint32_t vcpuid); 196void vcpu_run(struct kvm_vm *vm, uint32_t vcpuid); 197int _vcpu_run(struct kvm_vm *vm, uint32_t vcpuid); 198int vcpu_get_fd(struct kvm_vm *vm, uint32_t vcpuid); 199void vcpu_run_complete_io(struct kvm_vm *vm, uint32_t vcpuid); 200void vcpu_set_guest_debug(struct kvm_vm *vm, uint32_t vcpuid, 201 struct kvm_guest_debug *debug); 202void vcpu_set_mp_state(struct kvm_vm *vm, uint32_t vcpuid, 203 struct kvm_mp_state *mp_state); 204struct kvm_reg_list *vcpu_get_reg_list(struct kvm_vm *vm, uint32_t vcpuid); 205void vcpu_regs_get(struct kvm_vm *vm, uint32_t vcpuid, struct kvm_regs *regs); 206void vcpu_regs_set(struct kvm_vm *vm, uint32_t vcpuid, struct kvm_regs *regs); 207 208/* 209 * VM VCPU Args Set 210 * 211 * Input Args: 212 * vm - Virtual Machine 213 * vcpuid - VCPU ID 214 * num - number of arguments 215 * ... - arguments, each of type uint64_t 216 * 217 * Output Args: None 218 * 219 * Return: None 220 * 221 * Sets the first @num function input registers of the VCPU with @vcpuid, 222 * per the C calling convention of the architecture, to the values given 223 * as variable args. Each of the variable args is expected to be of type 224 * uint64_t. The maximum @num can be is specific to the architecture. 225 */ 226void vcpu_args_set(struct kvm_vm *vm, uint32_t vcpuid, unsigned int num, ...); 227 228void vcpu_sregs_get(struct kvm_vm *vm, uint32_t vcpuid, 229 struct kvm_sregs *sregs); 230void vcpu_sregs_set(struct kvm_vm *vm, uint32_t vcpuid, 231 struct kvm_sregs *sregs); 232int _vcpu_sregs_set(struct kvm_vm *vm, uint32_t vcpuid, 233 struct kvm_sregs *sregs); 234void vcpu_fpu_get(struct kvm_vm *vm, uint32_t vcpuid, 235 struct kvm_fpu *fpu); 236void vcpu_fpu_set(struct kvm_vm *vm, uint32_t vcpuid, 237 struct kvm_fpu *fpu); 238void vcpu_get_reg(struct kvm_vm *vm, uint32_t vcpuid, struct kvm_one_reg *reg); 239void vcpu_set_reg(struct kvm_vm *vm, uint32_t vcpuid, struct kvm_one_reg *reg); 240#ifdef __KVM_HAVE_VCPU_EVENTS 241void vcpu_events_get(struct kvm_vm *vm, uint32_t vcpuid, 242 struct kvm_vcpu_events *events); 243void vcpu_events_set(struct kvm_vm *vm, uint32_t vcpuid, 244 struct kvm_vcpu_events *events); 245#endif 246#ifdef __x86_64__ 247void vcpu_nested_state_get(struct kvm_vm *vm, uint32_t vcpuid, 248 struct kvm_nested_state *state); 249int vcpu_nested_state_set(struct kvm_vm *vm, uint32_t vcpuid, 250 struct kvm_nested_state *state, bool ignore_error); 251#endif 252void *vcpu_map_dirty_ring(struct kvm_vm *vm, uint32_t vcpuid); 253 254int _kvm_device_check_attr(int dev_fd, uint32_t group, uint64_t attr); 255int kvm_device_check_attr(int dev_fd, uint32_t group, uint64_t attr); 256int _kvm_create_device(struct kvm_vm *vm, uint64_t type, bool test, int *fd); 257int kvm_create_device(struct kvm_vm *vm, uint64_t type, bool test); 258int _kvm_device_access(int dev_fd, uint32_t group, uint64_t attr, 259 void *val, bool write); 260int kvm_device_access(int dev_fd, uint32_t group, uint64_t attr, 261 void *val, bool write); 262void kvm_irq_line(struct kvm_vm *vm, uint32_t irq, int level); 263int _kvm_irq_line(struct kvm_vm *vm, uint32_t irq, int level); 264 265int _vcpu_has_device_attr(struct kvm_vm *vm, uint32_t vcpuid, uint32_t group, 266 uint64_t attr); 267int vcpu_has_device_attr(struct kvm_vm *vm, uint32_t vcpuid, uint32_t group, 268 uint64_t attr); 269int _vcpu_access_device_attr(struct kvm_vm *vm, uint32_t vcpuid, uint32_t group, 270 uint64_t attr, void *val, bool write); 271int vcpu_access_device_attr(struct kvm_vm *vm, uint32_t vcpuid, uint32_t group, 272 uint64_t attr, void *val, bool write); 273 274#define KVM_MAX_IRQ_ROUTES 4096 275 276struct kvm_irq_routing *kvm_gsi_routing_create(void); 277void kvm_gsi_routing_irqchip_add(struct kvm_irq_routing *routing, 278 uint32_t gsi, uint32_t pin); 279int _kvm_gsi_routing_write(struct kvm_vm *vm, struct kvm_irq_routing *routing); 280void kvm_gsi_routing_write(struct kvm_vm *vm, struct kvm_irq_routing *routing); 281 282const char *exit_reason_str(unsigned int exit_reason); 283 284void virt_pgd_alloc(struct kvm_vm *vm); 285 286/* 287 * VM Virtual Page Map 288 * 289 * Input Args: 290 * vm - Virtual Machine 291 * vaddr - VM Virtual Address 292 * paddr - VM Physical Address 293 * memslot - Memory region slot for new virtual translation tables 294 * 295 * Output Args: None 296 * 297 * Return: None 298 * 299 * Within @vm, creates a virtual translation for the page starting 300 * at @vaddr to the page starting at @paddr. 301 */ 302void virt_pg_map(struct kvm_vm *vm, uint64_t vaddr, uint64_t paddr); 303 304vm_paddr_t vm_phy_page_alloc(struct kvm_vm *vm, vm_paddr_t paddr_min, 305 uint32_t memslot); 306vm_paddr_t vm_phy_pages_alloc(struct kvm_vm *vm, size_t num, 307 vm_paddr_t paddr_min, uint32_t memslot); 308vm_paddr_t vm_alloc_page_table(struct kvm_vm *vm); 309 310/* 311 * Create a VM with reasonable defaults 312 * 313 * Input Args: 314 * vcpuid - The id of the single VCPU to add to the VM. 315 * extra_mem_pages - The number of extra pages to add (this will 316 * decide how much extra space we will need to 317 * setup the page tables using memslot 0) 318 * guest_code - The vCPU's entry point 319 * 320 * Output Args: None 321 * 322 * Return: 323 * Pointer to opaque structure that describes the created VM. 324 */ 325struct kvm_vm *vm_create_default(uint32_t vcpuid, uint64_t extra_mem_pages, 326 void *guest_code); 327 328/* Same as vm_create_default, but can be used for more than one vcpu */ 329struct kvm_vm *vm_create_default_with_vcpus(uint32_t nr_vcpus, uint64_t extra_mem_pages, 330 uint32_t num_percpu_pages, void *guest_code, 331 uint32_t vcpuids[]); 332 333/* Like vm_create_default_with_vcpus, but accepts mode and slot0 memory as a parameter */ 334struct kvm_vm *vm_create_with_vcpus(enum vm_guest_mode mode, uint32_t nr_vcpus, 335 uint64_t slot0_mem_pages, uint64_t extra_mem_pages, 336 uint32_t num_percpu_pages, void *guest_code, 337 uint32_t vcpuids[]); 338 339/* 340 * Adds a vCPU with reasonable defaults (e.g. a stack) 341 * 342 * Input Args: 343 * vm - Virtual Machine 344 * vcpuid - The id of the VCPU to add to the VM. 345 * guest_code - The vCPU's entry point 346 */ 347void vm_vcpu_add_default(struct kvm_vm *vm, uint32_t vcpuid, void *guest_code); 348 349bool vm_is_unrestricted_guest(struct kvm_vm *vm); 350 351unsigned int vm_get_page_size(struct kvm_vm *vm); 352unsigned int vm_get_page_shift(struct kvm_vm *vm); 353unsigned long vm_compute_max_gfn(struct kvm_vm *vm); 354uint64_t vm_get_max_gfn(struct kvm_vm *vm); 355int vm_get_fd(struct kvm_vm *vm); 356 357unsigned int vm_calc_num_guest_pages(enum vm_guest_mode mode, size_t size); 358unsigned int vm_num_host_pages(enum vm_guest_mode mode, unsigned int num_guest_pages); 359unsigned int vm_num_guest_pages(enum vm_guest_mode mode, unsigned int num_host_pages); 360static inline unsigned int 361vm_adjust_num_guest_pages(enum vm_guest_mode mode, unsigned int num_guest_pages) 362{ 363 unsigned int n; 364 n = vm_num_guest_pages(mode, vm_num_host_pages(mode, num_guest_pages)); 365#ifdef __s390x__ 366 /* s390 requires 1M aligned guest sizes */ 367 n = (n + 255) & ~255; 368#endif 369 return n; 370} 371 372struct kvm_userspace_memory_region * 373kvm_userspace_memory_region_find(struct kvm_vm *vm, uint64_t start, 374 uint64_t end); 375 376struct kvm_dirty_log * 377allocate_kvm_dirty_log(struct kvm_userspace_memory_region *region); 378 379int vm_create_device(struct kvm_vm *vm, struct kvm_create_device *cd); 380 381#define sync_global_to_guest(vm, g) ({ \ 382 typeof(g) *_p = addr_gva2hva(vm, (vm_vaddr_t)&(g)); \ 383 memcpy(_p, &(g), sizeof(g)); \ 384}) 385 386#define sync_global_from_guest(vm, g) ({ \ 387 typeof(g) *_p = addr_gva2hva(vm, (vm_vaddr_t)&(g)); \ 388 memcpy(&(g), _p, sizeof(g)); \ 389}) 390 391void assert_on_unhandled_exception(struct kvm_vm *vm, uint32_t vcpuid); 392 393int vm_get_stats_fd(struct kvm_vm *vm); 394int vcpu_get_stats_fd(struct kvm_vm *vm, uint32_t vcpuid); 395 396uint32_t guest_get_vcpuid(void); 397 398#endif /* SELFTEST_KVM_UTIL_BASE_H */