1 // SPDX-License-Identifier: GPL-2.0-only
3 * Usage: to be run via nx_huge_page_test.sh, which does the necessary
4 * environment setup and teardown
6 * Copyright (C) 2022, Google LLC.
12 #include <test_util.h>
14 #include "processor.h"
17 #define HPAGE_GPA (4UL << 30) /* 4G prevents collision w/ slot 0 */
18 #define HPAGE_GVA HPAGE_GPA /* GVA is arbitrary, so use GPA. */
19 #define PAGES_PER_2MB_HUGE_PAGE 512
20 #define HPAGE_SLOT_NPAGES (3 * PAGES_PER_2MB_HUGE_PAGE)
23 * Passed by nx_huge_pages_test.sh to provide an easy warning if this test is
24 * being run without it.
26 #define MAGIC_TOKEN 887563923
29 * x86 opcode for the return instruction. Used to call into, and then
30 * immediately return from, memory backed with hugepages.
32 #define RETURN_OPCODE 0xC3
34 /* Call the specified memory address. */
35 static void guest_do_CALL(uint64_t target
)
37 ((void (*)(void)) target
)();
41 * Exit the VM after each memory access so that the userspace component of the
42 * test can make assertions about the pages backing the VM.
44 * See the below for an explanation of how each access should affect the
49 uint64_t hpage_1
= HPAGE_GVA
;
50 uint64_t hpage_2
= hpage_1
+ (PAGE_SIZE
* 512);
51 uint64_t hpage_3
= hpage_2
+ (PAGE_SIZE
* 512);
53 READ_ONCE(*(uint64_t *)hpage_1
);
56 READ_ONCE(*(uint64_t *)hpage_2
);
59 guest_do_CALL(hpage_1
);
62 guest_do_CALL(hpage_3
);
65 READ_ONCE(*(uint64_t *)hpage_1
);
68 READ_ONCE(*(uint64_t *)hpage_3
);
72 static void check_2m_page_count(struct kvm_vm
*vm
, int expected_pages_2m
)
76 actual_pages_2m
= vm_get_stat(vm
, "pages_2m");
78 TEST_ASSERT(actual_pages_2m
== expected_pages_2m
,
79 "Unexpected 2m page count. Expected %d, got %d",
80 expected_pages_2m
, actual_pages_2m
);
83 static void check_split_count(struct kvm_vm
*vm
, int expected_splits
)
87 actual_splits
= vm_get_stat(vm
, "nx_lpage_splits");
89 TEST_ASSERT(actual_splits
== expected_splits
,
90 "Unexpected NX huge page split count. Expected %d, got %d",
91 expected_splits
, actual_splits
);
94 static void wait_for_reclaim(int reclaim_period_ms
)
99 reclaim_wait_ms
= reclaim_period_ms
* 5;
100 ts
.tv_sec
= reclaim_wait_ms
/ 1000;
101 ts
.tv_nsec
= (reclaim_wait_ms
- (ts
.tv_sec
* 1000)) * 1000000;
102 nanosleep(&ts
, NULL
);
105 void run_test(int reclaim_period_ms
, bool disable_nx_huge_pages
,
106 bool reboot_permissions
)
108 struct kvm_vcpu
*vcpu
;
116 if (disable_nx_huge_pages
) {
117 r
= __vm_disable_nx_huge_pages(vm
);
118 if (reboot_permissions
) {
119 TEST_ASSERT(!r
, "Disabling NX huge pages should succeed if process has reboot permissions");
121 TEST_ASSERT(r
== -1 && errno
== EPERM
,
122 "This process should not have permission to disable NX huge pages");
127 vcpu
= vm_vcpu_add(vm
, 0, guest_code
);
129 vm_userspace_mem_region_add(vm
, VM_MEM_SRC_ANONYMOUS_HUGETLB
,
130 HPAGE_GPA
, HPAGE_SLOT
,
131 HPAGE_SLOT_NPAGES
, 0);
133 nr_bytes
= HPAGE_SLOT_NPAGES
* vm
->page_size
;
136 * Ensure that KVM can map HPAGE_SLOT with huge pages by mapping the
137 * region into the guest with 2MiB pages whenever TDP is disabled (i.e.
138 * whenever KVM is shadowing the guest page tables).
140 * When TDP is enabled, KVM should be able to map HPAGE_SLOT with huge
141 * pages irrespective of the guest page size, so map with 4KiB pages
142 * to test that that is the case.
144 if (kvm_is_tdp_enabled())
145 virt_map_level(vm
, HPAGE_GVA
, HPAGE_GPA
, nr_bytes
, PG_LEVEL_4K
);
147 virt_map_level(vm
, HPAGE_GVA
, HPAGE_GPA
, nr_bytes
, PG_LEVEL_2M
);
149 hva
= addr_gpa2hva(vm
, HPAGE_GPA
);
150 memset(hva
, RETURN_OPCODE
, nr_bytes
);
152 check_2m_page_count(vm
, 0);
153 check_split_count(vm
, 0);
156 * The guest code will first read from the first hugepage, resulting
157 * in a huge page mapping being created.
160 check_2m_page_count(vm
, 1);
161 check_split_count(vm
, 0);
164 * Then the guest code will read from the second hugepage, resulting
165 * in another huge page mapping being created.
168 check_2m_page_count(vm
, 2);
169 check_split_count(vm
, 0);
172 * Next, the guest will execute from the first huge page, causing it
173 * to be remapped at 4k.
175 * If NX huge pages are disabled, this should have no effect.
178 check_2m_page_count(vm
, disable_nx_huge_pages
? 2 : 1);
179 check_split_count(vm
, disable_nx_huge_pages
? 0 : 1);
182 * Executing from the third huge page (previously unaccessed) will
183 * cause part to be mapped at 4k.
185 * If NX huge pages are disabled, it should be mapped at 2M.
188 check_2m_page_count(vm
, disable_nx_huge_pages
? 3 : 1);
189 check_split_count(vm
, disable_nx_huge_pages
? 0 : 2);
191 /* Reading from the first huge page again should have no effect. */
193 check_2m_page_count(vm
, disable_nx_huge_pages
? 3 : 1);
194 check_split_count(vm
, disable_nx_huge_pages
? 0 : 2);
196 /* Give recovery thread time to run. */
197 wait_for_reclaim(reclaim_period_ms
);
200 * Now that the reclaimer has run, all the split pages should be gone.
202 * If NX huge pages are disabled, the relaimer will not run, so
203 * nothing should change from here on.
205 check_2m_page_count(vm
, disable_nx_huge_pages
? 3 : 1);
206 check_split_count(vm
, 0);
209 * The 4k mapping on hpage 3 should have been removed, so check that
210 * reading from it causes a huge page mapping to be installed.
213 check_2m_page_count(vm
, disable_nx_huge_pages
? 3 : 2);
214 check_split_count(vm
, 0);
219 static void help(char *name
)
222 printf("usage: %s [-h] [-p period_ms] [-t token]\n", name
);
224 printf(" -p: The NX reclaim period in milliseconds.\n");
225 printf(" -t: The magic token to indicate environment setup is done.\n");
226 printf(" -r: The test has reboot permissions and can disable NX huge pages.\n");
231 int main(int argc
, char **argv
)
233 int reclaim_period_ms
= 0, token
= 0, opt
;
234 bool reboot_permissions
= false;
236 while ((opt
= getopt(argc
, argv
, "hp:t:r")) != -1) {
239 reclaim_period_ms
= atoi_positive("Reclaim period", optarg
);
242 token
= atoi_paranoid(optarg
);
245 reboot_permissions
= true;
254 TEST_REQUIRE(kvm_has_cap(KVM_CAP_VM_DISABLE_NX_HUGE_PAGES
));
256 __TEST_REQUIRE(token
== MAGIC_TOKEN
,
257 "This test must be run with the magic token via '-t %d'.\n"
258 "Running via nx_huge_pages_test.sh, which also handles "
259 "environment setup, is strongly recommended.", MAGIC_TOKEN
);
261 run_test(reclaim_period_ms
, false, reboot_permissions
);
262 run_test(reclaim_period_ms
, true, reboot_permissions
);