kvm_util.h 35 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (C) 2018, Google LLC.
  4. */
  5. #ifndef SELFTEST_KVM_UTIL_H
  6. #define SELFTEST_KVM_UTIL_H
  7. #include "test_util.h"
  8. #include <linux/compiler.h>
  9. #include "linux/hashtable.h"
  10. #include "linux/list.h"
  11. #include <linux/kernel.h>
  12. #include <linux/kvm.h>
  13. #include "linux/rbtree.h"
  14. #include <linux/types.h>
  15. #include <asm/atomic.h>
  16. #include <asm/kvm.h>
  17. #include <sys/eventfd.h>
  18. #include <sys/ioctl.h>
  19. #include <pthread.h>
  20. #include "kvm_syscalls.h"
  21. #include "kvm_util_arch.h"
  22. #include "kvm_util_types.h"
  23. #include "sparsebit.h"
  24. #define KVM_DEV_PATH "/dev/kvm"
  25. #define KVM_MAX_VCPUS 512
  26. #define NSEC_PER_SEC 1000000000L
  27. struct userspace_mem_region {
  28. struct kvm_userspace_memory_region2 region;
  29. struct sparsebit *unused_phy_pages;
  30. struct sparsebit *protected_phy_pages;
  31. int fd;
  32. off_t offset;
  33. enum vm_mem_backing_src_type backing_src_type;
  34. void *host_mem;
  35. void *host_alias;
  36. void *mmap_start;
  37. void *mmap_alias;
  38. size_t mmap_size;
  39. struct rb_node gpa_node;
  40. struct rb_node hva_node;
  41. struct hlist_node slot_node;
  42. };
  43. struct kvm_binary_stats {
  44. int fd;
  45. struct kvm_stats_header header;
  46. struct kvm_stats_desc *desc;
  47. };
  48. struct kvm_vcpu {
  49. struct list_head list;
  50. uint32_t id;
  51. int fd;
  52. struct kvm_vm *vm;
  53. struct kvm_run *run;
  54. #ifdef __x86_64__
  55. struct kvm_cpuid2 *cpuid;
  56. #endif
  57. #ifdef __aarch64__
  58. struct kvm_vcpu_init init;
  59. #endif
  60. struct kvm_binary_stats stats;
  61. struct kvm_dirty_gfn *dirty_gfns;
  62. uint32_t fetch_index;
  63. uint32_t dirty_gfns_count;
  64. };
  65. struct userspace_mem_regions {
  66. struct rb_root gpa_tree;
  67. struct rb_root hva_tree;
  68. DECLARE_HASHTABLE(slot_hash, 9);
  69. };
  70. enum kvm_mem_region_type {
  71. MEM_REGION_CODE,
  72. MEM_REGION_DATA,
  73. MEM_REGION_PT,
  74. MEM_REGION_TEST_DATA,
  75. NR_MEM_REGIONS,
  76. };
  77. struct kvm_mmu {
  78. bool pgd_created;
  79. uint64_t pgd;
  80. int pgtable_levels;
  81. struct kvm_mmu_arch arch;
  82. };
  83. struct kvm_vm {
  84. int mode;
  85. unsigned long type;
  86. int kvm_fd;
  87. int fd;
  88. unsigned int page_size;
  89. unsigned int page_shift;
  90. unsigned int pa_bits;
  91. unsigned int va_bits;
  92. uint64_t max_gfn;
  93. struct list_head vcpus;
  94. struct userspace_mem_regions regions;
  95. struct sparsebit *vpages_valid;
  96. struct sparsebit *vpages_mapped;
  97. bool has_irqchip;
  98. vm_paddr_t ucall_mmio_addr;
  99. vm_vaddr_t handlers;
  100. uint32_t dirty_ring_size;
  101. uint64_t gpa_tag_mask;
  102. /*
  103. * "mmu" is the guest's stage-1, with a short name because the vast
  104. * majority of tests only care about the stage-1 MMU.
  105. */
  106. struct kvm_mmu mmu;
  107. struct kvm_mmu stage2_mmu;
  108. struct kvm_vm_arch arch;
  109. struct kvm_binary_stats stats;
  110. /*
  111. * KVM region slots. These are the default memslots used by page
  112. * allocators, e.g., lib/elf uses the memslots[MEM_REGION_CODE]
  113. * memslot.
  114. */
  115. uint32_t memslots[NR_MEM_REGIONS];
  116. };
  117. struct vcpu_reg_sublist {
  118. const char *name;
  119. long capability;
  120. int feature;
  121. int feature_type;
  122. bool finalize;
  123. __u64 *regs;
  124. __u64 regs_n;
  125. __u64 *rejects_set;
  126. __u64 rejects_set_n;
  127. __u64 *skips_set;
  128. __u64 skips_set_n;
  129. };
  130. struct vcpu_reg_list {
  131. char *name;
  132. struct vcpu_reg_sublist sublists[];
  133. };
  134. #define for_each_sublist(c, s) \
  135. for ((s) = &(c)->sublists[0]; (s)->regs; ++(s))
  136. #define kvm_for_each_vcpu(vm, i, vcpu) \
  137. for ((i) = 0; (i) <= (vm)->last_vcpu_id; (i)++) \
  138. if (!((vcpu) = vm->vcpus[i])) \
  139. continue; \
  140. else
  141. struct userspace_mem_region *
  142. memslot2region(struct kvm_vm *vm, uint32_t memslot);
  143. static inline struct userspace_mem_region *vm_get_mem_region(struct kvm_vm *vm,
  144. enum kvm_mem_region_type type)
  145. {
  146. assert(type < NR_MEM_REGIONS);
  147. return memslot2region(vm, vm->memslots[type]);
  148. }
  149. /* Minimum allocated guest virtual and physical addresses */
  150. #define KVM_UTIL_MIN_VADDR 0x2000
  151. #define KVM_GUEST_PAGE_TABLE_MIN_PADDR 0x180000
  152. #define DEFAULT_GUEST_STACK_VADDR_MIN 0xab6000
  153. #define DEFAULT_STACK_PGS 5
  154. enum vm_guest_mode {
  155. VM_MODE_P52V48_4K,
  156. VM_MODE_P52V48_16K,
  157. VM_MODE_P52V48_64K,
  158. VM_MODE_P48V48_4K,
  159. VM_MODE_P48V48_16K,
  160. VM_MODE_P48V48_64K,
  161. VM_MODE_P40V48_4K,
  162. VM_MODE_P40V48_16K,
  163. VM_MODE_P40V48_64K,
  164. VM_MODE_PXXVYY_4K, /* For 48-bit or 57-bit VA, depending on host support */
  165. VM_MODE_P47V64_4K,
  166. VM_MODE_P44V64_4K,
  167. VM_MODE_P36V48_4K,
  168. VM_MODE_P36V48_16K,
  169. VM_MODE_P36V48_64K,
  170. VM_MODE_P47V47_16K,
  171. VM_MODE_P36V47_16K,
  172. VM_MODE_P56V57_4K, /* For riscv64 */
  173. VM_MODE_P56V48_4K,
  174. VM_MODE_P56V39_4K,
  175. VM_MODE_P50V57_4K,
  176. VM_MODE_P50V48_4K,
  177. VM_MODE_P50V39_4K,
  178. VM_MODE_P41V57_4K,
  179. VM_MODE_P41V48_4K,
  180. VM_MODE_P41V39_4K,
  181. NUM_VM_MODES,
  182. };
  183. struct vm_shape {
  184. uint32_t type;
  185. uint8_t mode;
  186. uint8_t pad0;
  187. uint16_t pad1;
  188. };
  189. kvm_static_assert(sizeof(struct vm_shape) == sizeof(uint64_t));
  190. #define VM_TYPE_DEFAULT 0
  191. #define VM_SHAPE(__mode) \
  192. ({ \
  193. struct vm_shape shape = { \
  194. .mode = (__mode), \
  195. .type = VM_TYPE_DEFAULT \
  196. }; \
  197. \
  198. shape; \
  199. })
  200. extern enum vm_guest_mode vm_mode_default;
  201. #if defined(__aarch64__)
  202. #define VM_MODE_DEFAULT vm_mode_default
  203. #define MIN_PAGE_SHIFT 12U
  204. #define ptes_per_page(page_size) ((page_size) / 8)
  205. #elif defined(__x86_64__)
  206. #define VM_MODE_DEFAULT VM_MODE_PXXVYY_4K
  207. #define MIN_PAGE_SHIFT 12U
  208. #define ptes_per_page(page_size) ((page_size) / 8)
  209. #elif defined(__s390x__)
  210. #define VM_MODE_DEFAULT VM_MODE_P44V64_4K
  211. #define MIN_PAGE_SHIFT 12U
  212. #define ptes_per_page(page_size) ((page_size) / 16)
  213. #elif defined(__riscv)
  214. #if __riscv_xlen == 32
  215. #error "RISC-V 32-bit kvm selftests not supported"
  216. #endif
  217. #define VM_MODE_DEFAULT vm_mode_default
  218. #define MIN_PAGE_SHIFT 12U
  219. #define ptes_per_page(page_size) ((page_size) / 8)
  220. #elif defined(__loongarch__)
  221. #define VM_MODE_DEFAULT VM_MODE_P47V47_16K
  222. #define MIN_PAGE_SHIFT 12U
  223. #define ptes_per_page(page_size) ((page_size) / 8)
  224. #endif
  225. #define VM_SHAPE_DEFAULT VM_SHAPE(VM_MODE_DEFAULT)
  226. #define MIN_PAGE_SIZE (1U << MIN_PAGE_SHIFT)
  227. #define PTES_PER_MIN_PAGE ptes_per_page(MIN_PAGE_SIZE)
  228. struct vm_guest_mode_params {
  229. unsigned int pa_bits;
  230. unsigned int va_bits;
  231. unsigned int page_size;
  232. unsigned int page_shift;
  233. };
  234. extern const struct vm_guest_mode_params vm_guest_mode_params[];
  235. int __open_path_or_exit(const char *path, int flags, const char *enoent_help);
  236. int open_path_or_exit(const char *path, int flags);
  237. int open_kvm_dev_path_or_exit(void);
  238. int kvm_get_module_param_integer(const char *module_name, const char *param);
  239. bool kvm_get_module_param_bool(const char *module_name, const char *param);
  240. static inline bool get_kvm_param_bool(const char *param)
  241. {
  242. return kvm_get_module_param_bool("kvm", param);
  243. }
  244. static inline int get_kvm_param_integer(const char *param)
  245. {
  246. return kvm_get_module_param_integer("kvm", param);
  247. }
  248. unsigned int kvm_check_cap(long cap);
  249. static inline bool kvm_has_cap(long cap)
  250. {
  251. return kvm_check_cap(cap);
  252. }
  253. /*
  254. * Use the "inner", double-underscore macro when reporting errors from within
  255. * other macros so that the name of ioctl() and not its literal numeric value
  256. * is printed on error. The "outer" macro is strongly preferred when reporting
  257. * errors "directly", i.e. without an additional layer of macros, as it reduces
  258. * the probability of passing in the wrong string.
  259. */
  260. #define __KVM_IOCTL_ERROR(_name, _ret) __KVM_SYSCALL_ERROR(_name, _ret)
  261. #define KVM_IOCTL_ERROR(_ioctl, _ret) __KVM_IOCTL_ERROR(#_ioctl, _ret)
  262. #define kvm_do_ioctl(fd, cmd, arg) \
  263. ({ \
  264. kvm_static_assert(!_IOC_SIZE(cmd) || sizeof(*arg) == _IOC_SIZE(cmd)); \
  265. ioctl(fd, cmd, arg); \
  266. })
  267. #define __kvm_ioctl(kvm_fd, cmd, arg) \
  268. kvm_do_ioctl(kvm_fd, cmd, arg)
  269. #define kvm_ioctl(kvm_fd, cmd, arg) \
  270. ({ \
  271. int ret = __kvm_ioctl(kvm_fd, cmd, arg); \
  272. \
  273. TEST_ASSERT(!ret, __KVM_IOCTL_ERROR(#cmd, ret)); \
  274. })
  275. static __always_inline void static_assert_is_vm(struct kvm_vm *vm) { }
  276. #define __vm_ioctl(vm, cmd, arg) \
  277. ({ \
  278. static_assert_is_vm(vm); \
  279. kvm_do_ioctl((vm)->fd, cmd, arg); \
  280. })
  281. /*
  282. * Assert that a VM or vCPU ioctl() succeeded, with extra magic to detect if
  283. * the ioctl() failed because KVM killed/bugged the VM. To detect a dead VM,
  284. * probe KVM_CAP_USER_MEMORY, which (a) has been supported by KVM since before
  285. * selftests existed and (b) should never outright fail, i.e. is supposed to
  286. * return 0 or 1. If KVM kills a VM, KVM returns -EIO for all ioctl()s for the
  287. * VM and its vCPUs, including KVM_CHECK_EXTENSION.
  288. */
  289. #define __TEST_ASSERT_VM_VCPU_IOCTL(cond, name, ret, vm) \
  290. do { \
  291. int __errno = errno; \
  292. \
  293. static_assert_is_vm(vm); \
  294. \
  295. if (cond) \
  296. break; \
  297. \
  298. if (errno == EIO && \
  299. __vm_ioctl(vm, KVM_CHECK_EXTENSION, (void *)KVM_CAP_USER_MEMORY) < 0) { \
  300. TEST_ASSERT(errno == EIO, "KVM killed the VM, should return -EIO"); \
  301. TEST_FAIL("KVM killed/bugged the VM, check the kernel log for clues"); \
  302. } \
  303. errno = __errno; \
  304. TEST_ASSERT(cond, __KVM_IOCTL_ERROR(name, ret)); \
  305. } while (0)
  306. #define TEST_ASSERT_VM_VCPU_IOCTL(cond, cmd, ret, vm) \
  307. __TEST_ASSERT_VM_VCPU_IOCTL(cond, #cmd, ret, vm)
  308. #define vm_ioctl(vm, cmd, arg) \
  309. ({ \
  310. int ret = __vm_ioctl(vm, cmd, arg); \
  311. \
  312. __TEST_ASSERT_VM_VCPU_IOCTL(!ret, #cmd, ret, vm); \
  313. })
  314. static __always_inline void static_assert_is_vcpu(struct kvm_vcpu *vcpu) { }
  315. #define __vcpu_ioctl(vcpu, cmd, arg) \
  316. ({ \
  317. static_assert_is_vcpu(vcpu); \
  318. kvm_do_ioctl((vcpu)->fd, cmd, arg); \
  319. })
  320. #define vcpu_ioctl(vcpu, cmd, arg) \
  321. ({ \
  322. int ret = __vcpu_ioctl(vcpu, cmd, arg); \
  323. \
  324. __TEST_ASSERT_VM_VCPU_IOCTL(!ret, #cmd, ret, (vcpu)->vm); \
  325. })
  326. /*
  327. * Looks up and returns the value corresponding to the capability
  328. * (KVM_CAP_*) given by cap.
  329. */
  330. static inline int vm_check_cap(struct kvm_vm *vm, long cap)
  331. {
  332. int ret = __vm_ioctl(vm, KVM_CHECK_EXTENSION, (void *)cap);
  333. TEST_ASSERT_VM_VCPU_IOCTL(ret >= 0, KVM_CHECK_EXTENSION, ret, vm);
  334. return ret;
  335. }
  336. static inline int __vm_enable_cap(struct kvm_vm *vm, uint32_t cap, uint64_t arg0)
  337. {
  338. struct kvm_enable_cap enable_cap = { .cap = cap, .args = { arg0 } };
  339. return __vm_ioctl(vm, KVM_ENABLE_CAP, &enable_cap);
  340. }
  341. static inline void vm_enable_cap(struct kvm_vm *vm, uint32_t cap, uint64_t arg0)
  342. {
  343. struct kvm_enable_cap enable_cap = { .cap = cap, .args = { arg0 } };
  344. vm_ioctl(vm, KVM_ENABLE_CAP, &enable_cap);
  345. }
  346. static inline void vm_set_memory_attributes(struct kvm_vm *vm, uint64_t gpa,
  347. uint64_t size, uint64_t attributes)
  348. {
  349. struct kvm_memory_attributes attr = {
  350. .attributes = attributes,
  351. .address = gpa,
  352. .size = size,
  353. .flags = 0,
  354. };
  355. /*
  356. * KVM_SET_MEMORY_ATTRIBUTES overwrites _all_ attributes. These flows
  357. * need significant enhancements to support multiple attributes.
  358. */
  359. TEST_ASSERT(!attributes || attributes == KVM_MEMORY_ATTRIBUTE_PRIVATE,
  360. "Update me to support multiple attributes!");
  361. vm_ioctl(vm, KVM_SET_MEMORY_ATTRIBUTES, &attr);
  362. }
  363. static inline void vm_mem_set_private(struct kvm_vm *vm, uint64_t gpa,
  364. uint64_t size)
  365. {
  366. vm_set_memory_attributes(vm, gpa, size, KVM_MEMORY_ATTRIBUTE_PRIVATE);
  367. }
  368. static inline void vm_mem_set_shared(struct kvm_vm *vm, uint64_t gpa,
  369. uint64_t size)
  370. {
  371. vm_set_memory_attributes(vm, gpa, size, 0);
  372. }
  373. void vm_guest_mem_fallocate(struct kvm_vm *vm, uint64_t gpa, uint64_t size,
  374. bool punch_hole);
  375. static inline void vm_guest_mem_punch_hole(struct kvm_vm *vm, uint64_t gpa,
  376. uint64_t size)
  377. {
  378. vm_guest_mem_fallocate(vm, gpa, size, true);
  379. }
  380. static inline void vm_guest_mem_allocate(struct kvm_vm *vm, uint64_t gpa,
  381. uint64_t size)
  382. {
  383. vm_guest_mem_fallocate(vm, gpa, size, false);
  384. }
  385. void vm_enable_dirty_ring(struct kvm_vm *vm, uint32_t ring_size);
  386. const char *vm_guest_mode_string(uint32_t i);
  387. void kvm_vm_free(struct kvm_vm *vmp);
  388. void kvm_vm_restart(struct kvm_vm *vmp);
  389. void kvm_vm_release(struct kvm_vm *vmp);
  390. void kvm_vm_elf_load(struct kvm_vm *vm, const char *filename);
  391. int kvm_memfd_alloc(size_t size, bool hugepages);
  392. void vm_dump(FILE *stream, struct kvm_vm *vm, uint8_t indent);
  393. static inline void kvm_vm_get_dirty_log(struct kvm_vm *vm, int slot, void *log)
  394. {
  395. struct kvm_dirty_log args = { .dirty_bitmap = log, .slot = slot };
  396. vm_ioctl(vm, KVM_GET_DIRTY_LOG, &args);
  397. }
  398. static inline void kvm_vm_clear_dirty_log(struct kvm_vm *vm, int slot, void *log,
  399. uint64_t first_page, uint32_t num_pages)
  400. {
  401. struct kvm_clear_dirty_log args = {
  402. .dirty_bitmap = log,
  403. .slot = slot,
  404. .first_page = first_page,
  405. .num_pages = num_pages
  406. };
  407. vm_ioctl(vm, KVM_CLEAR_DIRTY_LOG, &args);
  408. }
  409. static inline uint32_t kvm_vm_reset_dirty_ring(struct kvm_vm *vm)
  410. {
  411. return __vm_ioctl(vm, KVM_RESET_DIRTY_RINGS, NULL);
  412. }
  413. static inline void kvm_vm_register_coalesced_io(struct kvm_vm *vm,
  414. uint64_t address,
  415. uint64_t size, bool pio)
  416. {
  417. struct kvm_coalesced_mmio_zone zone = {
  418. .addr = address,
  419. .size = size,
  420. .pio = pio,
  421. };
  422. vm_ioctl(vm, KVM_REGISTER_COALESCED_MMIO, &zone);
  423. }
  424. static inline void kvm_vm_unregister_coalesced_io(struct kvm_vm *vm,
  425. uint64_t address,
  426. uint64_t size, bool pio)
  427. {
  428. struct kvm_coalesced_mmio_zone zone = {
  429. .addr = address,
  430. .size = size,
  431. .pio = pio,
  432. };
  433. vm_ioctl(vm, KVM_UNREGISTER_COALESCED_MMIO, &zone);
  434. }
  435. static inline int vm_get_stats_fd(struct kvm_vm *vm)
  436. {
  437. int fd = __vm_ioctl(vm, KVM_GET_STATS_FD, NULL);
  438. TEST_ASSERT_VM_VCPU_IOCTL(fd >= 0, KVM_GET_STATS_FD, fd, vm);
  439. return fd;
  440. }
  441. static inline int __kvm_irqfd(struct kvm_vm *vm, uint32_t gsi, int eventfd,
  442. uint32_t flags)
  443. {
  444. struct kvm_irqfd irqfd = {
  445. .fd = eventfd,
  446. .gsi = gsi,
  447. .flags = flags,
  448. .resamplefd = -1,
  449. };
  450. return __vm_ioctl(vm, KVM_IRQFD, &irqfd);
  451. }
  452. static inline void kvm_irqfd(struct kvm_vm *vm, uint32_t gsi, int eventfd,
  453. uint32_t flags)
  454. {
  455. int ret = __kvm_irqfd(vm, gsi, eventfd, flags);
  456. TEST_ASSERT_VM_VCPU_IOCTL(!ret, KVM_IRQFD, ret, vm);
  457. }
  458. static inline void kvm_assign_irqfd(struct kvm_vm *vm, uint32_t gsi, int eventfd)
  459. {
  460. kvm_irqfd(vm, gsi, eventfd, 0);
  461. }
  462. static inline void kvm_deassign_irqfd(struct kvm_vm *vm, uint32_t gsi, int eventfd)
  463. {
  464. kvm_irqfd(vm, gsi, eventfd, KVM_IRQFD_FLAG_DEASSIGN);
  465. }
  466. static inline int kvm_new_eventfd(void)
  467. {
  468. int fd = eventfd(0, 0);
  469. TEST_ASSERT(fd >= 0, __KVM_SYSCALL_ERROR("eventfd()", fd));
  470. return fd;
  471. }
  472. static inline void read_stats_header(int stats_fd, struct kvm_stats_header *header)
  473. {
  474. ssize_t ret;
  475. ret = pread(stats_fd, header, sizeof(*header), 0);
  476. TEST_ASSERT(ret == sizeof(*header),
  477. "Failed to read '%lu' header bytes, ret = '%ld'",
  478. sizeof(*header), ret);
  479. }
  480. struct kvm_stats_desc *read_stats_descriptors(int stats_fd,
  481. struct kvm_stats_header *header);
  482. static inline ssize_t get_stats_descriptor_size(struct kvm_stats_header *header)
  483. {
  484. /*
  485. * The base size of the descriptor is defined by KVM's ABI, but the
  486. * size of the name field is variable, as far as KVM's ABI is
  487. * concerned. For a given instance of KVM, the name field is the same
  488. * size for all stats and is provided in the overall stats header.
  489. */
  490. return sizeof(struct kvm_stats_desc) + header->name_size;
  491. }
  492. static inline struct kvm_stats_desc *get_stats_descriptor(struct kvm_stats_desc *stats,
  493. int index,
  494. struct kvm_stats_header *header)
  495. {
  496. /*
  497. * Note, size_desc includes the size of the name field, which is
  498. * variable. i.e. this is NOT equivalent to &stats_desc[i].
  499. */
  500. return (void *)stats + index * get_stats_descriptor_size(header);
  501. }
  502. void read_stat_data(int stats_fd, struct kvm_stats_header *header,
  503. struct kvm_stats_desc *desc, uint64_t *data,
  504. size_t max_elements);
  505. void kvm_get_stat(struct kvm_binary_stats *stats, const char *name,
  506. uint64_t *data, size_t max_elements);
  507. #define __get_stat(stats, stat) \
  508. ({ \
  509. uint64_t data; \
  510. \
  511. kvm_get_stat(stats, #stat, &data, 1); \
  512. data; \
  513. })
  514. #define vm_get_stat(vm, stat) __get_stat(&(vm)->stats, stat)
  515. #define vcpu_get_stat(vcpu, stat) __get_stat(&(vcpu)->stats, stat)
  516. static inline bool read_smt_control(char *buf, size_t buf_size)
  517. {
  518. FILE *f = fopen("/sys/devices/system/cpu/smt/control", "r");
  519. bool ret;
  520. if (!f)
  521. return false;
  522. ret = fread(buf, sizeof(*buf), buf_size, f) > 0;
  523. fclose(f);
  524. return ret;
  525. }
  526. static inline bool is_smt_possible(void)
  527. {
  528. char buf[16];
  529. if (read_smt_control(buf, sizeof(buf)) &&
  530. (!strncmp(buf, "forceoff", 8) || !strncmp(buf, "notsupported", 12)))
  531. return false;
  532. return true;
  533. }
  534. static inline bool is_smt_on(void)
  535. {
  536. char buf[16];
  537. if (read_smt_control(buf, sizeof(buf)) && !strncmp(buf, "on", 2))
  538. return true;
  539. return false;
  540. }
  541. void vm_create_irqchip(struct kvm_vm *vm);
  542. static inline int __vm_create_guest_memfd(struct kvm_vm *vm, uint64_t size,
  543. uint64_t flags)
  544. {
  545. struct kvm_create_guest_memfd guest_memfd = {
  546. .size = size,
  547. .flags = flags,
  548. };
  549. return __vm_ioctl(vm, KVM_CREATE_GUEST_MEMFD, &guest_memfd);
  550. }
  551. static inline int vm_create_guest_memfd(struct kvm_vm *vm, uint64_t size,
  552. uint64_t flags)
  553. {
  554. int fd = __vm_create_guest_memfd(vm, size, flags);
  555. TEST_ASSERT(fd >= 0, KVM_IOCTL_ERROR(KVM_CREATE_GUEST_MEMFD, fd));
  556. return fd;
  557. }
  558. void vm_set_user_memory_region(struct kvm_vm *vm, uint32_t slot, uint32_t flags,
  559. uint64_t gpa, uint64_t size, void *hva);
  560. int __vm_set_user_memory_region(struct kvm_vm *vm, uint32_t slot, uint32_t flags,
  561. uint64_t gpa, uint64_t size, void *hva);
  562. void vm_set_user_memory_region2(struct kvm_vm *vm, uint32_t slot, uint32_t flags,
  563. uint64_t gpa, uint64_t size, void *hva,
  564. uint32_t guest_memfd, uint64_t guest_memfd_offset);
  565. int __vm_set_user_memory_region2(struct kvm_vm *vm, uint32_t slot, uint32_t flags,
  566. uint64_t gpa, uint64_t size, void *hva,
  567. uint32_t guest_memfd, uint64_t guest_memfd_offset);
  568. void vm_userspace_mem_region_add(struct kvm_vm *vm,
  569. enum vm_mem_backing_src_type src_type,
  570. uint64_t gpa, uint32_t slot, uint64_t npages,
  571. uint32_t flags);
  572. void vm_mem_add(struct kvm_vm *vm, enum vm_mem_backing_src_type src_type,
  573. uint64_t gpa, uint32_t slot, uint64_t npages, uint32_t flags,
  574. int guest_memfd_fd, uint64_t guest_memfd_offset);
  575. #ifndef vm_arch_has_protected_memory
  576. static inline bool vm_arch_has_protected_memory(struct kvm_vm *vm)
  577. {
  578. return false;
  579. }
  580. #endif
  581. void vm_mem_region_set_flags(struct kvm_vm *vm, uint32_t slot, uint32_t flags);
  582. void vm_mem_region_reload(struct kvm_vm *vm, uint32_t slot);
  583. void vm_mem_region_move(struct kvm_vm *vm, uint32_t slot, uint64_t new_gpa);
  584. void vm_mem_region_delete(struct kvm_vm *vm, uint32_t slot);
  585. struct kvm_vcpu *__vm_vcpu_add(struct kvm_vm *vm, uint32_t vcpu_id);
  586. void vm_populate_vaddr_bitmap(struct kvm_vm *vm);
  587. vm_vaddr_t vm_vaddr_unused_gap(struct kvm_vm *vm, size_t sz, vm_vaddr_t vaddr_min);
  588. vm_vaddr_t vm_vaddr_alloc(struct kvm_vm *vm, size_t sz, vm_vaddr_t vaddr_min);
  589. vm_vaddr_t __vm_vaddr_alloc(struct kvm_vm *vm, size_t sz, vm_vaddr_t vaddr_min,
  590. enum kvm_mem_region_type type);
  591. vm_vaddr_t vm_vaddr_alloc_shared(struct kvm_vm *vm, size_t sz,
  592. vm_vaddr_t vaddr_min,
  593. enum kvm_mem_region_type type);
  594. vm_vaddr_t vm_vaddr_alloc_pages(struct kvm_vm *vm, int nr_pages);
  595. vm_vaddr_t __vm_vaddr_alloc_page(struct kvm_vm *vm,
  596. enum kvm_mem_region_type type);
  597. vm_vaddr_t vm_vaddr_alloc_page(struct kvm_vm *vm);
  598. void virt_map(struct kvm_vm *vm, uint64_t vaddr, uint64_t paddr,
  599. unsigned int npages);
  600. void *addr_gpa2hva(struct kvm_vm *vm, vm_paddr_t gpa);
  601. void *addr_gva2hva(struct kvm_vm *vm, vm_vaddr_t gva);
  602. vm_paddr_t addr_hva2gpa(struct kvm_vm *vm, void *hva);
  603. void *addr_gpa2alias(struct kvm_vm *vm, vm_paddr_t gpa);
  604. #ifndef vcpu_arch_put_guest
  605. #define vcpu_arch_put_guest(mem, val) do { (mem) = (val); } while (0)
  606. #endif
  607. static inline vm_paddr_t vm_untag_gpa(struct kvm_vm *vm, vm_paddr_t gpa)
  608. {
  609. return gpa & ~vm->gpa_tag_mask;
  610. }
  611. void vcpu_run(struct kvm_vcpu *vcpu);
  612. int _vcpu_run(struct kvm_vcpu *vcpu);
  613. static inline int __vcpu_run(struct kvm_vcpu *vcpu)
  614. {
  615. return __vcpu_ioctl(vcpu, KVM_RUN, NULL);
  616. }
  617. void vcpu_run_complete_io(struct kvm_vcpu *vcpu);
  618. struct kvm_reg_list *vcpu_get_reg_list(struct kvm_vcpu *vcpu);
  619. static inline void vcpu_enable_cap(struct kvm_vcpu *vcpu, uint32_t cap,
  620. uint64_t arg0)
  621. {
  622. struct kvm_enable_cap enable_cap = { .cap = cap, .args = { arg0 } };
  623. vcpu_ioctl(vcpu, KVM_ENABLE_CAP, &enable_cap);
  624. }
  625. static inline void vcpu_guest_debug_set(struct kvm_vcpu *vcpu,
  626. struct kvm_guest_debug *debug)
  627. {
  628. vcpu_ioctl(vcpu, KVM_SET_GUEST_DEBUG, debug);
  629. }
  630. static inline void vcpu_mp_state_get(struct kvm_vcpu *vcpu,
  631. struct kvm_mp_state *mp_state)
  632. {
  633. vcpu_ioctl(vcpu, KVM_GET_MP_STATE, mp_state);
  634. }
  635. static inline void vcpu_mp_state_set(struct kvm_vcpu *vcpu,
  636. struct kvm_mp_state *mp_state)
  637. {
  638. vcpu_ioctl(vcpu, KVM_SET_MP_STATE, mp_state);
  639. }
  640. static inline void vcpu_regs_get(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
  641. {
  642. vcpu_ioctl(vcpu, KVM_GET_REGS, regs);
  643. }
  644. static inline void vcpu_regs_set(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
  645. {
  646. vcpu_ioctl(vcpu, KVM_SET_REGS, regs);
  647. }
  648. static inline void vcpu_sregs_get(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
  649. {
  650. vcpu_ioctl(vcpu, KVM_GET_SREGS, sregs);
  651. }
  652. static inline void vcpu_sregs_set(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
  653. {
  654. vcpu_ioctl(vcpu, KVM_SET_SREGS, sregs);
  655. }
  656. static inline int _vcpu_sregs_set(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
  657. {
  658. return __vcpu_ioctl(vcpu, KVM_SET_SREGS, sregs);
  659. }
  660. static inline void vcpu_fpu_get(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
  661. {
  662. vcpu_ioctl(vcpu, KVM_GET_FPU, fpu);
  663. }
  664. static inline void vcpu_fpu_set(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
  665. {
  666. vcpu_ioctl(vcpu, KVM_SET_FPU, fpu);
  667. }
  668. static inline int __vcpu_get_reg(struct kvm_vcpu *vcpu, uint64_t id, void *addr)
  669. {
  670. struct kvm_one_reg reg = { .id = id, .addr = (uint64_t)addr };
  671. return __vcpu_ioctl(vcpu, KVM_GET_ONE_REG, &reg);
  672. }
  673. static inline int __vcpu_set_reg(struct kvm_vcpu *vcpu, uint64_t id, uint64_t val)
  674. {
  675. struct kvm_one_reg reg = { .id = id, .addr = (uint64_t)&val };
  676. return __vcpu_ioctl(vcpu, KVM_SET_ONE_REG, &reg);
  677. }
  678. static inline uint64_t vcpu_get_reg(struct kvm_vcpu *vcpu, uint64_t id)
  679. {
  680. uint64_t val;
  681. struct kvm_one_reg reg = { .id = id, .addr = (uint64_t)&val };
  682. TEST_ASSERT(KVM_REG_SIZE(id) <= sizeof(val), "Reg %lx too big", id);
  683. vcpu_ioctl(vcpu, KVM_GET_ONE_REG, &reg);
  684. return val;
  685. }
  686. static inline void vcpu_set_reg(struct kvm_vcpu *vcpu, uint64_t id, uint64_t val)
  687. {
  688. struct kvm_one_reg reg = { .id = id, .addr = (uint64_t)&val };
  689. TEST_ASSERT(KVM_REG_SIZE(id) <= sizeof(val), "Reg %lx too big", id);
  690. vcpu_ioctl(vcpu, KVM_SET_ONE_REG, &reg);
  691. }
  692. #ifdef __KVM_HAVE_VCPU_EVENTS
  693. static inline void vcpu_events_get(struct kvm_vcpu *vcpu,
  694. struct kvm_vcpu_events *events)
  695. {
  696. vcpu_ioctl(vcpu, KVM_GET_VCPU_EVENTS, events);
  697. }
  698. static inline void vcpu_events_set(struct kvm_vcpu *vcpu,
  699. struct kvm_vcpu_events *events)
  700. {
  701. vcpu_ioctl(vcpu, KVM_SET_VCPU_EVENTS, events);
  702. }
  703. #endif
  704. #ifdef __x86_64__
  705. static inline void vcpu_nested_state_get(struct kvm_vcpu *vcpu,
  706. struct kvm_nested_state *state)
  707. {
  708. vcpu_ioctl(vcpu, KVM_GET_NESTED_STATE, state);
  709. }
  710. static inline int __vcpu_nested_state_set(struct kvm_vcpu *vcpu,
  711. struct kvm_nested_state *state)
  712. {
  713. return __vcpu_ioctl(vcpu, KVM_SET_NESTED_STATE, state);
  714. }
  715. static inline void vcpu_nested_state_set(struct kvm_vcpu *vcpu,
  716. struct kvm_nested_state *state)
  717. {
  718. vcpu_ioctl(vcpu, KVM_SET_NESTED_STATE, state);
  719. }
  720. #endif
  721. static inline int vcpu_get_stats_fd(struct kvm_vcpu *vcpu)
  722. {
  723. int fd = __vcpu_ioctl(vcpu, KVM_GET_STATS_FD, NULL);
  724. TEST_ASSERT_VM_VCPU_IOCTL(fd >= 0, KVM_CHECK_EXTENSION, fd, vcpu->vm);
  725. return fd;
  726. }
  727. int __kvm_has_device_attr(int dev_fd, uint32_t group, uint64_t attr);
  728. static inline void kvm_has_device_attr(int dev_fd, uint32_t group, uint64_t attr)
  729. {
  730. int ret = __kvm_has_device_attr(dev_fd, group, attr);
  731. TEST_ASSERT(!ret, "KVM_HAS_DEVICE_ATTR failed, rc: %i errno: %i", ret, errno);
  732. }
  733. int __kvm_device_attr_get(int dev_fd, uint32_t group, uint64_t attr, void *val);
  734. static inline void kvm_device_attr_get(int dev_fd, uint32_t group,
  735. uint64_t attr, void *val)
  736. {
  737. int ret = __kvm_device_attr_get(dev_fd, group, attr, val);
  738. TEST_ASSERT(!ret, KVM_IOCTL_ERROR(KVM_GET_DEVICE_ATTR, ret));
  739. }
  740. int __kvm_device_attr_set(int dev_fd, uint32_t group, uint64_t attr, void *val);
  741. static inline void kvm_device_attr_set(int dev_fd, uint32_t group,
  742. uint64_t attr, void *val)
  743. {
  744. int ret = __kvm_device_attr_set(dev_fd, group, attr, val);
  745. TEST_ASSERT(!ret, KVM_IOCTL_ERROR(KVM_SET_DEVICE_ATTR, ret));
  746. }
  747. static inline int __vcpu_has_device_attr(struct kvm_vcpu *vcpu, uint32_t group,
  748. uint64_t attr)
  749. {
  750. return __kvm_has_device_attr(vcpu->fd, group, attr);
  751. }
  752. static inline void vcpu_has_device_attr(struct kvm_vcpu *vcpu, uint32_t group,
  753. uint64_t attr)
  754. {
  755. kvm_has_device_attr(vcpu->fd, group, attr);
  756. }
  757. static inline int __vcpu_device_attr_get(struct kvm_vcpu *vcpu, uint32_t group,
  758. uint64_t attr, void *val)
  759. {
  760. return __kvm_device_attr_get(vcpu->fd, group, attr, val);
  761. }
  762. static inline void vcpu_device_attr_get(struct kvm_vcpu *vcpu, uint32_t group,
  763. uint64_t attr, void *val)
  764. {
  765. kvm_device_attr_get(vcpu->fd, group, attr, val);
  766. }
  767. static inline int __vcpu_device_attr_set(struct kvm_vcpu *vcpu, uint32_t group,
  768. uint64_t attr, void *val)
  769. {
  770. return __kvm_device_attr_set(vcpu->fd, group, attr, val);
  771. }
  772. static inline void vcpu_device_attr_set(struct kvm_vcpu *vcpu, uint32_t group,
  773. uint64_t attr, void *val)
  774. {
  775. kvm_device_attr_set(vcpu->fd, group, attr, val);
  776. }
  777. int __kvm_test_create_device(struct kvm_vm *vm, uint64_t type);
  778. int __kvm_create_device(struct kvm_vm *vm, uint64_t type);
  779. static inline int kvm_create_device(struct kvm_vm *vm, uint64_t type)
  780. {
  781. int fd = __kvm_create_device(vm, type);
  782. TEST_ASSERT(fd >= 0, KVM_IOCTL_ERROR(KVM_CREATE_DEVICE, fd));
  783. return fd;
  784. }
  785. void *vcpu_map_dirty_ring(struct kvm_vcpu *vcpu);
  786. /*
  787. * VM VCPU Args Set
  788. *
  789. * Input Args:
  790. * vcpu - vCPU
  791. * num - number of arguments
  792. * ... - arguments, each of type uint64_t
  793. *
  794. * Output Args: None
  795. *
  796. * Return: None
  797. *
  798. * Sets the first @num input parameters for the function at @vcpu's entry point,
  799. * per the C calling convention of the architecture, to the values given as
  800. * variable args. Each of the variable args is expected to be of type uint64_t.
  801. * The maximum @num can be is specific to the architecture.
  802. */
  803. void vcpu_args_set(struct kvm_vcpu *vcpu, unsigned int num, ...);
  804. void kvm_irq_line(struct kvm_vm *vm, uint32_t irq, int level);
  805. int _kvm_irq_line(struct kvm_vm *vm, uint32_t irq, int level);
  806. #define KVM_MAX_IRQ_ROUTES 4096
  807. struct kvm_irq_routing *kvm_gsi_routing_create(void);
  808. void kvm_gsi_routing_irqchip_add(struct kvm_irq_routing *routing,
  809. uint32_t gsi, uint32_t pin);
  810. int _kvm_gsi_routing_write(struct kvm_vm *vm, struct kvm_irq_routing *routing);
  811. void kvm_gsi_routing_write(struct kvm_vm *vm, struct kvm_irq_routing *routing);
  812. const char *exit_reason_str(unsigned int exit_reason);
  813. vm_paddr_t vm_phy_page_alloc(struct kvm_vm *vm, vm_paddr_t paddr_min,
  814. uint32_t memslot);
  815. vm_paddr_t __vm_phy_pages_alloc(struct kvm_vm *vm, size_t num,
  816. vm_paddr_t paddr_min, uint32_t memslot,
  817. bool protected);
  818. vm_paddr_t vm_alloc_page_table(struct kvm_vm *vm);
  819. static inline vm_paddr_t vm_phy_pages_alloc(struct kvm_vm *vm, size_t num,
  820. vm_paddr_t paddr_min, uint32_t memslot)
  821. {
  822. /*
  823. * By default, allocate memory as protected for VMs that support
  824. * protected memory, as the majority of memory for such VMs is
  825. * protected, i.e. using shared memory is effectively opt-in.
  826. */
  827. return __vm_phy_pages_alloc(vm, num, paddr_min, memslot,
  828. vm_arch_has_protected_memory(vm));
  829. }
  830. /*
  831. * ____vm_create() does KVM_CREATE_VM and little else. __vm_create() also
  832. * loads the test binary into guest memory and creates an IRQ chip (x86 only).
  833. * __vm_create() does NOT create vCPUs, @nr_runnable_vcpus is used purely to
  834. * calculate the amount of memory needed for per-vCPU data, e.g. stacks.
  835. */
  836. struct kvm_vm *____vm_create(struct vm_shape shape);
  837. struct kvm_vm *__vm_create(struct vm_shape shape, uint32_t nr_runnable_vcpus,
  838. uint64_t nr_extra_pages);
  839. static inline struct kvm_vm *vm_create_barebones(void)
  840. {
  841. return ____vm_create(VM_SHAPE_DEFAULT);
  842. }
  843. static inline struct kvm_vm *vm_create_barebones_type(unsigned long type)
  844. {
  845. const struct vm_shape shape = {
  846. .mode = VM_MODE_DEFAULT,
  847. .type = type,
  848. };
  849. return ____vm_create(shape);
  850. }
  851. static inline struct kvm_vm *vm_create(uint32_t nr_runnable_vcpus)
  852. {
  853. return __vm_create(VM_SHAPE_DEFAULT, nr_runnable_vcpus, 0);
  854. }
  855. struct kvm_vm *__vm_create_with_vcpus(struct vm_shape shape, uint32_t nr_vcpus,
  856. uint64_t extra_mem_pages,
  857. void *guest_code, struct kvm_vcpu *vcpus[]);
  858. static inline struct kvm_vm *vm_create_with_vcpus(uint32_t nr_vcpus,
  859. void *guest_code,
  860. struct kvm_vcpu *vcpus[])
  861. {
  862. return __vm_create_with_vcpus(VM_SHAPE_DEFAULT, nr_vcpus, 0,
  863. guest_code, vcpus);
  864. }
  865. struct kvm_vm *__vm_create_shape_with_one_vcpu(struct vm_shape shape,
  866. struct kvm_vcpu **vcpu,
  867. uint64_t extra_mem_pages,
  868. void *guest_code);
  869. /*
  870. * Create a VM with a single vCPU with reasonable defaults and @extra_mem_pages
  871. * additional pages of guest memory. Returns the VM and vCPU (via out param).
  872. */
  873. static inline struct kvm_vm *__vm_create_with_one_vcpu(struct kvm_vcpu **vcpu,
  874. uint64_t extra_mem_pages,
  875. void *guest_code)
  876. {
  877. return __vm_create_shape_with_one_vcpu(VM_SHAPE_DEFAULT, vcpu,
  878. extra_mem_pages, guest_code);
  879. }
  880. static inline struct kvm_vm *vm_create_with_one_vcpu(struct kvm_vcpu **vcpu,
  881. void *guest_code)
  882. {
  883. return __vm_create_with_one_vcpu(vcpu, 0, guest_code);
  884. }
  885. static inline struct kvm_vm *vm_create_shape_with_one_vcpu(struct vm_shape shape,
  886. struct kvm_vcpu **vcpu,
  887. void *guest_code)
  888. {
  889. return __vm_create_shape_with_one_vcpu(shape, vcpu, 0, guest_code);
  890. }
  891. struct kvm_vcpu *vm_recreate_with_one_vcpu(struct kvm_vm *vm);
  892. void kvm_set_files_rlimit(uint32_t nr_vcpus);
  893. int __pin_task_to_cpu(pthread_t task, int cpu);
  894. static inline void pin_task_to_cpu(pthread_t task, int cpu)
  895. {
  896. int r;
  897. r = __pin_task_to_cpu(task, cpu);
  898. TEST_ASSERT(!r, "Failed to set thread affinity to pCPU '%u'", cpu);
  899. }
  900. static inline int pin_task_to_any_cpu(pthread_t task)
  901. {
  902. int cpu = sched_getcpu();
  903. pin_task_to_cpu(task, cpu);
  904. return cpu;
  905. }
  906. static inline void pin_self_to_cpu(int cpu)
  907. {
  908. pin_task_to_cpu(pthread_self(), cpu);
  909. }
  910. static inline int pin_self_to_any_cpu(void)
  911. {
  912. return pin_task_to_any_cpu(pthread_self());
  913. }
  914. void kvm_print_vcpu_pinning_help(void);
  915. void kvm_parse_vcpu_pinning(const char *pcpus_string, uint32_t vcpu_to_pcpu[],
  916. int nr_vcpus);
  917. unsigned long vm_compute_max_gfn(struct kvm_vm *vm);
  918. unsigned int vm_calc_num_guest_pages(enum vm_guest_mode mode, size_t size);
  919. unsigned int vm_num_host_pages(enum vm_guest_mode mode, unsigned int num_guest_pages);
  920. unsigned int vm_num_guest_pages(enum vm_guest_mode mode, unsigned int num_host_pages);
  921. static inline unsigned int
  922. vm_adjust_num_guest_pages(enum vm_guest_mode mode, unsigned int num_guest_pages)
  923. {
  924. unsigned int n;
  925. n = vm_num_guest_pages(mode, vm_num_host_pages(mode, num_guest_pages));
  926. #ifdef __s390x__
  927. /* s390 requires 1M aligned guest sizes */
  928. n = (n + 255) & ~255;
  929. #endif
  930. return n;
  931. }
  932. #define sync_global_to_guest(vm, g) ({ \
  933. typeof(g) *_p = addr_gva2hva(vm, (vm_vaddr_t)&(g)); \
  934. memcpy(_p, &(g), sizeof(g)); \
  935. })
  936. #define sync_global_from_guest(vm, g) ({ \
  937. typeof(g) *_p = addr_gva2hva(vm, (vm_vaddr_t)&(g)); \
  938. memcpy(&(g), _p, sizeof(g)); \
  939. })
  940. /*
  941. * Write a global value, but only in the VM's (guest's) domain. Primarily used
  942. * for "globals" that hold per-VM values (VMs always duplicate code and global
  943. * data into their own region of physical memory), but can be used anytime it's
  944. * undesirable to change the host's copy of the global.
  945. */
  946. #define write_guest_global(vm, g, val) ({ \
  947. typeof(g) *_p = addr_gva2hva(vm, (vm_vaddr_t)&(g)); \
  948. typeof(g) _val = val; \
  949. \
  950. memcpy(_p, &(_val), sizeof(g)); \
  951. })
  952. void assert_on_unhandled_exception(struct kvm_vcpu *vcpu);
  953. void vcpu_arch_dump(FILE *stream, struct kvm_vcpu *vcpu,
  954. uint8_t indent);
  955. static inline void vcpu_dump(FILE *stream, struct kvm_vcpu *vcpu,
  956. uint8_t indent)
  957. {
  958. vcpu_arch_dump(stream, vcpu, indent);
  959. }
  960. /*
  961. * Adds a vCPU with reasonable defaults (e.g. a stack)
  962. *
  963. * Input Args:
  964. * vm - Virtual Machine
  965. * vcpu_id - The id of the VCPU to add to the VM.
  966. */
  967. struct kvm_vcpu *vm_arch_vcpu_add(struct kvm_vm *vm, uint32_t vcpu_id);
  968. void vcpu_arch_set_entry_point(struct kvm_vcpu *vcpu, void *guest_code);
  969. static inline struct kvm_vcpu *vm_vcpu_add(struct kvm_vm *vm, uint32_t vcpu_id,
  970. void *guest_code)
  971. {
  972. struct kvm_vcpu *vcpu = vm_arch_vcpu_add(vm, vcpu_id);
  973. vcpu_arch_set_entry_point(vcpu, guest_code);
  974. return vcpu;
  975. }
  976. /* Re-create a vCPU after restarting a VM, e.g. for state save/restore tests. */
  977. struct kvm_vcpu *vm_arch_vcpu_recreate(struct kvm_vm *vm, uint32_t vcpu_id);
  978. static inline struct kvm_vcpu *vm_vcpu_recreate(struct kvm_vm *vm,
  979. uint32_t vcpu_id)
  980. {
  981. return vm_arch_vcpu_recreate(vm, vcpu_id);
  982. }
  983. void vcpu_arch_free(struct kvm_vcpu *vcpu);
  984. void virt_arch_pgd_alloc(struct kvm_vm *vm);
  985. static inline void virt_pgd_alloc(struct kvm_vm *vm)
  986. {
  987. virt_arch_pgd_alloc(vm);
  988. }
  989. /*
  990. * VM Virtual Page Map
  991. *
  992. * Input Args:
  993. * vm - Virtual Machine
  994. * vaddr - VM Virtual Address
  995. * paddr - VM Physical Address
  996. * memslot - Memory region slot for new virtual translation tables
  997. *
  998. * Output Args: None
  999. *
  1000. * Return: None
  1001. *
  1002. * Within @vm, creates a virtual translation for the page starting
  1003. * at @vaddr to the page starting at @paddr.
  1004. */
  1005. void virt_arch_pg_map(struct kvm_vm *vm, uint64_t vaddr, uint64_t paddr);
  1006. static inline void virt_pg_map(struct kvm_vm *vm, uint64_t vaddr, uint64_t paddr)
  1007. {
  1008. virt_arch_pg_map(vm, vaddr, paddr);
  1009. sparsebit_set(vm->vpages_mapped, vaddr >> vm->page_shift);
  1010. }
  1011. /*
  1012. * Address Guest Virtual to Guest Physical
  1013. *
  1014. * Input Args:
  1015. * vm - Virtual Machine
  1016. * gva - VM virtual address
  1017. *
  1018. * Output Args: None
  1019. *
  1020. * Return:
  1021. * Equivalent VM physical address
  1022. *
  1023. * Returns the VM physical address of the translated VM virtual
  1024. * address given by @gva.
  1025. */
  1026. vm_paddr_t addr_arch_gva2gpa(struct kvm_vm *vm, vm_vaddr_t gva);
  1027. static inline vm_paddr_t addr_gva2gpa(struct kvm_vm *vm, vm_vaddr_t gva)
  1028. {
  1029. return addr_arch_gva2gpa(vm, gva);
  1030. }
  1031. /*
  1032. * Virtual Translation Tables Dump
  1033. *
  1034. * Input Args:
  1035. * stream - Output FILE stream
  1036. * vm - Virtual Machine
  1037. * indent - Left margin indent amount
  1038. *
  1039. * Output Args: None
  1040. *
  1041. * Return: None
  1042. *
  1043. * Dumps to the FILE stream given by @stream, the contents of all the
  1044. * virtual translation tables for the VM given by @vm.
  1045. */
  1046. void virt_arch_dump(FILE *stream, struct kvm_vm *vm, uint8_t indent);
  1047. static inline void virt_dump(FILE *stream, struct kvm_vm *vm, uint8_t indent)
  1048. {
  1049. virt_arch_dump(stream, vm, indent);
  1050. }
  1051. static inline int __vm_disable_nx_huge_pages(struct kvm_vm *vm)
  1052. {
  1053. return __vm_enable_cap(vm, KVM_CAP_VM_DISABLE_NX_HUGE_PAGES, 0);
  1054. }
  1055. static inline uint64_t vm_page_align(struct kvm_vm *vm, uint64_t v)
  1056. {
  1057. return (v + vm->page_size - 1) & ~(vm->page_size - 1);
  1058. }
  1059. /*
  1060. * Arch hook that is invoked via a constructor, i.e. before executing main(),
  1061. * to allow for arch-specific setup that is common to all tests, e.g. computing
  1062. * the default guest "mode".
  1063. */
  1064. void kvm_selftest_arch_init(void);
  1065. void kvm_arch_vm_post_create(struct kvm_vm *vm, unsigned int nr_vcpus);
  1066. void kvm_arch_vm_finalize_vcpus(struct kvm_vm *vm);
  1067. void kvm_arch_vm_release(struct kvm_vm *vm);
  1068. bool vm_is_gpa_protected(struct kvm_vm *vm, vm_paddr_t paddr);
  1069. uint32_t guest_get_vcpuid(void);
  1070. bool kvm_arch_has_default_irqchip(void);
  1071. #endif /* SELFTEST_KVM_UTIL_H */