blob: 92e184a422eedf97115ad3ab96460d307a16fa58 [file] [log] [blame]
Thomas Gleixner7a338472019-06-04 10:11:15 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Paolo Bonzini783e9e52018-03-27 11:49:19 +02002/*
3 * tools/testing/selftests/kvm/include/kvm_util.h
4 *
5 * Copyright (C) 2018, Google LLC.
Paolo Bonzini783e9e52018-03-27 11:49:19 +02006 */
7#ifndef SELFTEST_KVM_UTIL_H
Andrew Jonescc687652018-09-18 19:54:26 +02008#define SELFTEST_KVM_UTIL_H
Paolo Bonzini783e9e52018-03-27 11:49:19 +02009
10#include "test_util.h"
11
12#include "asm/kvm.h"
13#include "linux/kvm.h"
14#include <sys/ioctl.h>
15
16#include "sparsebit.h"
17
Paolo Bonzini783e9e52018-03-27 11:49:19 +020018
Andrew Jones42593622020-03-10 10:15:54 +010019/*
20 * Callers of kvm_util only have an incomplete/opaque description of the
Paolo Bonzini783e9e52018-03-27 11:49:19 +020021 * structure kvm_util is using to maintain the state of a VM.
22 */
23struct kvm_vm;
24
25typedef uint64_t vm_paddr_t; /* Virtual Machine (Guest) physical address */
26typedef uint64_t vm_vaddr_t; /* Virtual Machine (Guest) virtual address */
27
28/* Minimum allocated guest virtual and physical addresses */
Andrew Joneseabe7882018-09-18 19:54:28 +020029#define KVM_UTIL_MIN_VADDR 0x2000
Paolo Bonzini783e9e52018-03-27 11:49:19 +020030
31#define DEFAULT_GUEST_PHY_PAGES 512
32#define DEFAULT_GUEST_STACK_VADDR_MIN 0xab6000
Andrew Joneseabe7882018-09-18 19:54:28 +020033#define DEFAULT_STACK_PGS 5
Paolo Bonzini783e9e52018-03-27 11:49:19 +020034
35enum vm_guest_mode {
Andrew Jones81d1cca2018-09-18 19:54:33 +020036 VM_MODE_P52V48_4K,
37 VM_MODE_P52V48_64K,
Andrew Jonescdbd2422018-11-06 14:57:11 +010038 VM_MODE_P48V48_4K,
39 VM_MODE_P48V48_64K,
Andrew Jonese28934e2018-09-18 19:54:35 +020040 VM_MODE_P40V48_4K,
41 VM_MODE_P40V48_64K,
Peter Xu567a9f12019-08-30 09:36:18 +080042 VM_MODE_PXXV48_4K, /* For 48bits VA but ANY bits PA */
Andrew Jones81d1cca2018-09-18 19:54:33 +020043 NUM_VM_MODES,
Paolo Bonzini783e9e52018-03-27 11:49:19 +020044};
45
Peter Xu567a9f12019-08-30 09:36:18 +080046#if defined(__aarch64__)
Thomas Huthfe85ec82019-05-23 18:43:04 +020047#define VM_MODE_DEFAULT VM_MODE_P40V48_4K
Peter Xu567a9f12019-08-30 09:36:18 +080048#elif defined(__x86_64__)
49#define VM_MODE_DEFAULT VM_MODE_PXXV48_4K
Thomas Huthfe85ec82019-05-23 18:43:04 +020050#else
51#define VM_MODE_DEFAULT VM_MODE_P52V48_4K
52#endif
53
Andrew Jones81d1cca2018-09-18 19:54:33 +020054#define vm_guest_mode_string(m) vm_guest_mode_string[m]
55extern const char * const vm_guest_mode_string[];
56
Paolo Bonzini783e9e52018-03-27 11:49:19 +020057enum vm_mem_backing_src_type {
58 VM_MEM_SRC_ANONYMOUS,
59 VM_MEM_SRC_ANONYMOUS_THP,
60 VM_MEM_SRC_ANONYMOUS_HUGETLB,
61};
62
63int kvm_check_cap(long cap);
Drew Schmitt8b56ee92018-08-20 10:32:16 -070064int vm_enable_cap(struct kvm_vm *vm, struct kvm_enable_cap *cap);
Paolo Bonzini783e9e52018-03-27 11:49:19 +020065
66struct kvm_vm *vm_create(enum vm_guest_mode mode, uint64_t phy_pages, int perm);
Peter Xu12c386b2019-08-30 09:36:16 +080067struct kvm_vm *_vm_create(enum vm_guest_mode mode, uint64_t phy_pages, int perm);
Paolo Bonzini783e9e52018-03-27 11:49:19 +020068void kvm_vm_free(struct kvm_vm *vmp);
Paolo Bonzinifa3899a2018-07-26 13:19:23 +020069void kvm_vm_restart(struct kvm_vm *vmp, int perm);
70void kvm_vm_release(struct kvm_vm *vmp);
Peter Xu3b4cd0f2018-08-22 15:20:00 +080071void kvm_vm_get_dirty_log(struct kvm_vm *vm, int slot, void *log);
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +020072void kvm_vm_clear_dirty_log(struct kvm_vm *vm, int slot, void *log,
73 uint64_t first_page, uint32_t num_pages);
Paolo Bonzini783e9e52018-03-27 11:49:19 +020074
Andrew Joneseabe7882018-09-18 19:54:28 +020075int kvm_memcmp_hva_gva(void *hva, struct kvm_vm *vm, const vm_vaddr_t gva,
76 size_t len);
Paolo Bonzini783e9e52018-03-27 11:49:19 +020077
Paolo Bonzini6089ae02018-03-28 09:45:34 +020078void kvm_vm_elf_load(struct kvm_vm *vm, const char *filename,
Andrew Joneseabe7882018-09-18 19:54:28 +020079 uint32_t data_memslot, uint32_t pgd_memslot);
Paolo Bonzini6089ae02018-03-28 09:45:34 +020080
Paolo Bonzini783e9e52018-03-27 11:49:19 +020081void vm_dump(FILE *stream, struct kvm_vm *vm, uint8_t indent);
Andrew Jones42593622020-03-10 10:15:54 +010082
83/*
84 * VM VCPU Dump
85 *
86 * Input Args:
87 * stream - Output FILE stream
88 * vm - Virtual Machine
89 * vcpuid - VCPU ID
90 * indent - Left margin indent amount
91 *
92 * Output Args: None
93 *
94 * Return: None
95 *
96 * Dumps the current state of the VCPU specified by @vcpuid, within the VM
97 * given by @vm, to the FILE stream given by @stream.
98 */
Andrew Joneseabe7882018-09-18 19:54:28 +020099void vcpu_dump(FILE *stream, struct kvm_vm *vm, uint32_t vcpuid,
100 uint8_t indent);
Paolo Bonzini783e9e52018-03-27 11:49:19 +0200101
102void vm_create_irqchip(struct kvm_vm *vm);
103
104void vm_userspace_mem_region_add(struct kvm_vm *vm,
105 enum vm_mem_backing_src_type src_type,
106 uint64_t guest_paddr, uint32_t slot, uint64_t npages,
107 uint32_t flags);
108
Andrew Joneseabe7882018-09-18 19:54:28 +0200109void vcpu_ioctl(struct kvm_vm *vm, uint32_t vcpuid, unsigned long ioctl,
110 void *arg);
Vitaly Kuznetsov7e50c422018-12-10 18:21:58 +0100111int _vcpu_ioctl(struct kvm_vm *vm, uint32_t vcpuid, unsigned long ioctl,
112 void *arg);
Paolo Bonzini783e9e52018-03-27 11:49:19 +0200113void vm_ioctl(struct kvm_vm *vm, unsigned long ioctl, void *arg);
114void vm_mem_region_set_flags(struct kvm_vm *vm, uint32_t slot, uint32_t flags);
Sean Christopherson13e48aa2020-02-18 13:07:33 -0800115void vm_mem_region_move(struct kvm_vm *vm, uint32_t slot, uint64_t new_gpa);
Paolo Bonzini837ec792019-06-04 19:13:46 +0200116void vm_vcpu_add(struct kvm_vm *vm, uint32_t vcpuid);
Paolo Bonzini783e9e52018-03-27 11:49:19 +0200117vm_vaddr_t vm_vaddr_alloc(struct kvm_vm *vm, size_t sz, vm_vaddr_t vaddr_min,
Andrew Joneseabe7882018-09-18 19:54:28 +0200118 uint32_t data_memslot, uint32_t pgd_memslot);
Peter Xu3b4cd0f2018-08-22 15:20:00 +0800119void virt_map(struct kvm_vm *vm, uint64_t vaddr, uint64_t paddr,
Andrew Jonesbeca5472020-03-13 16:56:43 +0100120 unsigned int npages, uint32_t pgd_memslot);
Paolo Bonzini783e9e52018-03-27 11:49:19 +0200121void *addr_gpa2hva(struct kvm_vm *vm, vm_paddr_t gpa);
122void *addr_gva2hva(struct kvm_vm *vm, vm_vaddr_t gva);
123vm_paddr_t addr_hva2gpa(struct kvm_vm *vm, void *hva);
Andrew Jones42593622020-03-10 10:15:54 +0100124
125/*
126 * Address Guest Virtual to Guest Physical
127 *
128 * Input Args:
129 * vm - Virtual Machine
130 * gva - VM virtual address
131 *
132 * Output Args: None
133 *
134 * Return:
135 * Equivalent VM physical address
136 *
137 * Returns the VM physical address of the translated VM virtual
138 * address given by @gva.
139 */
Paolo Bonzini783e9e52018-03-27 11:49:19 +0200140vm_paddr_t addr_gva2gpa(struct kvm_vm *vm, vm_vaddr_t gva);
141
142struct kvm_run *vcpu_state(struct kvm_vm *vm, uint32_t vcpuid);
143void vcpu_run(struct kvm_vm *vm, uint32_t vcpuid);
144int _vcpu_run(struct kvm_vm *vm, uint32_t vcpuid);
Sean Christopherson0f73bbc2019-03-13 16:49:31 -0700145void vcpu_run_complete_io(struct kvm_vm *vm, uint32_t vcpuid);
Peter Xu449aa902020-05-05 16:50:00 -0400146void vcpu_set_guest_debug(struct kvm_vm *vm, uint32_t vcpuid,
147 struct kvm_guest_debug *debug);
Paolo Bonzini783e9e52018-03-27 11:49:19 +0200148void vcpu_set_mp_state(struct kvm_vm *vm, uint32_t vcpuid,
Andrew Joneseabe7882018-09-18 19:54:28 +0200149 struct kvm_mp_state *mp_state);
150void vcpu_regs_get(struct kvm_vm *vm, uint32_t vcpuid, struct kvm_regs *regs);
151void vcpu_regs_set(struct kvm_vm *vm, uint32_t vcpuid, struct kvm_regs *regs);
Andrew Jones42593622020-03-10 10:15:54 +0100152
153/*
154 * VM VCPU Args Set
155 *
156 * Input Args:
157 * vm - Virtual Machine
158 * vcpuid - VCPU ID
159 * num - number of arguments
160 * ... - arguments, each of type uint64_t
161 *
162 * Output Args: None
163 *
164 * Return: None
165 *
166 * Sets the first @num function input registers of the VCPU with @vcpuid,
167 * per the C calling convention of the architecture, to the values given
168 * as variable args. Each of the variable args is expected to be of type
169 * uint64_t. The maximum @num can be is specific to the architecture.
170 */
Paolo Bonzini783e9e52018-03-27 11:49:19 +0200171void vcpu_args_set(struct kvm_vm *vm, uint32_t vcpuid, unsigned int num, ...);
Andrew Jones42593622020-03-10 10:15:54 +0100172
Andrew Joneseabe7882018-09-18 19:54:28 +0200173void vcpu_sregs_get(struct kvm_vm *vm, uint32_t vcpuid,
174 struct kvm_sregs *sregs);
175void vcpu_sregs_set(struct kvm_vm *vm, uint32_t vcpuid,
176 struct kvm_sregs *sregs);
177int _vcpu_sregs_set(struct kvm_vm *vm, uint32_t vcpuid,
178 struct kvm_sregs *sregs);
Janosch Frankada0a502020-01-31 05:02:03 -0500179void vcpu_fpu_get(struct kvm_vm *vm, uint32_t vcpuid,
180 struct kvm_fpu *fpu);
181void vcpu_fpu_set(struct kvm_vm *vm, uint32_t vcpuid,
182 struct kvm_fpu *fpu);
183void vcpu_get_reg(struct kvm_vm *vm, uint32_t vcpuid, struct kvm_one_reg *reg);
184void vcpu_set_reg(struct kvm_vm *vm, uint32_t vcpuid, struct kvm_one_reg *reg);
Thomas Hutha9c788f2019-05-23 18:43:02 +0200185#ifdef __KVM_HAVE_VCPU_EVENTS
Paolo Bonzini783e9e52018-03-27 11:49:19 +0200186void vcpu_events_get(struct kvm_vm *vm, uint32_t vcpuid,
Andrew Joneseabe7882018-09-18 19:54:28 +0200187 struct kvm_vcpu_events *events);
Paolo Bonzini783e9e52018-03-27 11:49:19 +0200188void vcpu_events_set(struct kvm_vm *vm, uint32_t vcpuid,
Andrew Joneseabe7882018-09-18 19:54:28 +0200189 struct kvm_vcpu_events *events);
Thomas Hutha9c788f2019-05-23 18:43:02 +0200190#endif
Thomas Huthc7957202019-05-23 11:31:14 +0200191#ifdef __x86_64__
Aaron Lewisda1e3072019-05-02 11:31:41 -0700192void vcpu_nested_state_get(struct kvm_vm *vm, uint32_t vcpuid,
193 struct kvm_nested_state *state);
194int vcpu_nested_state_set(struct kvm_vm *vm, uint32_t vcpuid,
195 struct kvm_nested_state *state, bool ignore_error);
Thomas Huthc7957202019-05-23 11:31:14 +0200196#endif
Paolo Bonzini783e9e52018-03-27 11:49:19 +0200197
198const char *exit_reason_str(unsigned int exit_reason);
199
200void virt_pgd_alloc(struct kvm_vm *vm, uint32_t pgd_memslot);
Andrew Jones42593622020-03-10 10:15:54 +0100201
202/*
203 * VM Virtual Page Map
204 *
205 * Input Args:
206 * vm - Virtual Machine
207 * vaddr - VM Virtual Address
208 * paddr - VM Physical Address
209 * memslot - Memory region slot for new virtual translation tables
210 *
211 * Output Args: None
212 *
213 * Return: None
214 *
215 * Within @vm, creates a virtual translation for the page starting
216 * at @vaddr to the page starting at @paddr.
217 */
Paolo Bonzini783e9e52018-03-27 11:49:19 +0200218void virt_pg_map(struct kvm_vm *vm, uint64_t vaddr, uint64_t paddr,
Andrew Jones42593622020-03-10 10:15:54 +0100219 uint32_t memslot);
220
Andrew Joneseabe7882018-09-18 19:54:28 +0200221vm_paddr_t vm_phy_page_alloc(struct kvm_vm *vm, vm_paddr_t paddr_min,
222 uint32_t memslot);
Andrew Jonesd5106532018-09-18 19:54:29 +0200223vm_paddr_t vm_phy_pages_alloc(struct kvm_vm *vm, size_t num,
224 vm_paddr_t paddr_min, uint32_t memslot);
Paolo Bonzini783e9e52018-03-27 11:49:19 +0200225
Andrew Jones42593622020-03-10 10:15:54 +0100226/*
227 * Create a VM with reasonable defaults
228 *
229 * Input Args:
230 * vcpuid - The id of the single VCPU to add to the VM.
Andrew Jonesbeca5472020-03-13 16:56:43 +0100231 * extra_mem_pages - The number of extra pages to add (this will
Andrew Jones42593622020-03-10 10:15:54 +0100232 * decide how much extra space we will need to
233 * setup the page tables using memslot 0)
234 * guest_code - The vCPU's entry point
235 *
236 * Output Args: None
237 *
238 * Return:
239 * Pointer to opaque structure that describes the created VM.
240 */
Andrew Jonesbeca5472020-03-13 16:56:43 +0100241struct kvm_vm *vm_create_default(uint32_t vcpuid, uint64_t extra_mem_pages,
Peter Xuaee41be2018-08-22 15:19:59 +0800242 void *guest_code);
Andrew Jones42593622020-03-10 10:15:54 +0100243
244/*
245 * Adds a vCPU with reasonable defaults (e.g. a stack)
246 *
247 * Input Args:
248 * vm - Virtual Machine
249 * vcpuid - The id of the VCPU to add to the VM.
250 * guest_code - The vCPU's entry point
251 */
Paolo Bonzini783e9e52018-03-27 11:49:19 +0200252void vm_vcpu_add_default(struct kvm_vm *vm, uint32_t vcpuid, void *guest_code);
253
Aaron Lewis9dba9882019-05-31 14:14:52 +0000254bool vm_is_unrestricted_guest(struct kvm_vm *vm);
255
Peter Xu52200d02019-08-30 09:36:19 +0800256unsigned int vm_get_page_size(struct kvm_vm *vm);
257unsigned int vm_get_page_shift(struct kvm_vm *vm);
258unsigned int vm_get_max_gfn(struct kvm_vm *vm);
259
Andrew Jones94c4b76b2020-03-13 16:56:44 +0100260unsigned int vm_calc_num_guest_pages(enum vm_guest_mode mode, size_t size);
Andrew Jones87a802d2020-02-14 15:59:20 +0100261unsigned int vm_num_host_pages(enum vm_guest_mode mode, unsigned int num_guest_pages);
262unsigned int vm_num_guest_pages(enum vm_guest_mode mode, unsigned int num_host_pages);
263static inline unsigned int
264vm_adjust_num_guest_pages(enum vm_guest_mode mode, unsigned int num_guest_pages)
265{
Andrew Jones331b4de2020-03-12 11:40:55 +0100266 unsigned int n;
267 n = vm_num_guest_pages(mode, vm_num_host_pages(mode, num_guest_pages));
268#ifdef __s390x__
269 /* s390 requires 1M aligned guest sizes */
270 n = (n + 255) & ~255;
271#endif
272 return n;
Andrew Jones87a802d2020-02-14 15:59:20 +0100273}
274
Paolo Bonzini783e9e52018-03-27 11:49:19 +0200275struct kvm_userspace_memory_region *
276kvm_userspace_memory_region_find(struct kvm_vm *vm, uint64_t start,
277 uint64_t end);
278
279struct kvm_dirty_log *
280allocate_kvm_dirty_log(struct kvm_userspace_memory_region *region);
281
282int vm_create_device(struct kvm_vm *vm, struct kvm_create_device *cd);
283
Andrew Jones14c47b72018-09-18 19:54:25 +0200284#define sync_global_to_guest(vm, g) ({ \
285 typeof(g) *_p = addr_gva2hva(vm, (vm_vaddr_t)&(g)); \
286 memcpy(_p, &(g), sizeof(g)); \
287})
Peter Xu4e18bccc2018-08-22 15:19:57 +0800288
Andrew Jones14c47b72018-09-18 19:54:25 +0200289#define sync_global_from_guest(vm, g) ({ \
290 typeof(g) *_p = addr_gva2hva(vm, (vm_vaddr_t)&(g)); \
291 memcpy(&(g), _p, sizeof(g)); \
292})
Peter Xu4e18bccc2018-08-22 15:19:57 +0800293
Andrew Jones14c47b72018-09-18 19:54:25 +0200294/* Common ucalls */
295enum {
296 UCALL_NONE,
297 UCALL_SYNC,
298 UCALL_ABORT,
299 UCALL_DONE,
300};
Peter Xu4e18bccc2018-08-22 15:19:57 +0800301
Andrew Jones14c47b72018-09-18 19:54:25 +0200302#define UCALL_MAX_ARGS 6
Peter Xu4e18bccc2018-08-22 15:19:57 +0800303
Andrew Jones14c47b72018-09-18 19:54:25 +0200304struct ucall {
305 uint64_t cmd;
306 uint64_t args[UCALL_MAX_ARGS];
307};
Peter Xu4e18bccc2018-08-22 15:19:57 +0800308
Thomas Huth2040f412019-07-31 17:15:23 +0200309void ucall_init(struct kvm_vm *vm, void *arg);
Andrew Jones14c47b72018-09-18 19:54:25 +0200310void ucall_uninit(struct kvm_vm *vm);
311void ucall(uint64_t cmd, int nargs, ...);
312uint64_t get_ucall(struct kvm_vm *vm, uint32_t vcpu_id, struct ucall *uc);
Peter Xu4e18bccc2018-08-22 15:19:57 +0800313
Andrew Jones14c47b72018-09-18 19:54:25 +0200314#define GUEST_SYNC(stage) ucall(UCALL_SYNC, 2, "hello", stage)
315#define GUEST_DONE() ucall(UCALL_DONE, 0)
316#define GUEST_ASSERT(_condition) do { \
317 if (!(_condition)) \
318 ucall(UCALL_ABORT, 2, \
319 "Failed guest assert: " \
320 #_condition, __LINE__); \
321} while (0)
Peter Xu4e18bccc2018-08-22 15:19:57 +0800322
Paolo Bonzini783e9e52018-03-27 11:49:19 +0200323#endif /* SELFTEST_KVM_UTIL_H */