From: Maxim Levitsky <mlevitsk@redhat.com>
To: Sean Christopherson <seanjc@google.com>,
Paolo Bonzini <pbonzini@redhat.com>
Cc: kvm@vger.kernel.org, linux-kernel@vger.kernel.org,
Peter Xu <peterx@redhat.com>
Subject: Re: [PATCH 14/20] KVM: selftests: Collect *all* dirty entries in each dirty_log_test iteration
Date: Tue, 17 Dec 2024 19:02:38 -0500 [thread overview]
Message-ID: <fb179759bdc224431f6b031eaa9747c1897d296b.camel@redhat.com> (raw)
In-Reply-To: <20241214010721.2356923-15-seanjc@google.com>
On Fri, 2024-12-13 at 17:07 -0800, Sean Christopherson wrote:
> Collect all dirty entries during each iteration of dirty_log_test by
> doing a final collection after the vCPU has been stopped. To deal with
> KVM's destructive approach to getting the dirty bitmaps, use a second
> bitmap for the post-stop collection.
>
> Collecting all entries that were dirtied during an iteration simplifies
> the verification logic *and* improves test coverage.
>
> - If a page is written during iteration X, but not seen as dirty until
> X+1, the test can get a false pass if the page is also written during
> X+1.
>
> - If a dirty page used a stale value from a previous iteration, the test
> would grant a false pass.
>
> - If a missed dirty log occurs in the last iteration, the test would fail
> to detect the issue.
>
> E.g. modifying mark_page_dirty_in_slot() to dirty an unwritten gfn:
>
> if (memslot && kvm_slot_dirty_track_enabled(memslot)) {
> unsigned long rel_gfn = gfn - memslot->base_gfn;
> u32 slot = (memslot->as_id << 16) | memslot->id;
>
> if (!vcpu->extra_dirty &&
> gfn_to_memslot(kvm, gfn + 1) == memslot) {
> vcpu->extra_dirty = true;
> mark_page_dirty_in_slot(kvm, memslot, gfn + 1);
> }
> if (kvm->dirty_ring_size && vcpu)
> kvm_dirty_ring_push(vcpu, slot, rel_gfn);
> else if (memslot->dirty_bitmap)
> set_bit_le(rel_gfn, memslot->dirty_bitmap);
> }
>
> isn't detected with the current approach, even with an interval of 1ms
> (when running nested in a VM; bare metal would be even *less* likely to
> detect the bug due to the vCPU being able to dirty more memory). Whereas
> collecting all dirty entries consistently detects failures with an
> interval of 700ms or more (the longer interval means a higher probability
> of an actual write to the prematurely-dirtied page).
While this patch might improve coverage for this particular case,
I think that this patch will make the test to be much more deterministic,
and thus have less chance of catching various races in the kernel that can happen.
In fact in my option I prefer moving this test in
other direction by verifying dirty ring while the *vCPU runs* as well,
in other words, not stopping the vCPU at all unless its dirty ring is full.
Best regards,
Maxim Levitsky
>
> Signed-off-by: Sean Christopherson <seanjc@google.com>
> ---
> tools/testing/selftests/kvm/dirty_log_test.c | 149 ++++++-------------
> 1 file changed, 45 insertions(+), 104 deletions(-)
>
> diff --git a/tools/testing/selftests/kvm/dirty_log_test.c b/tools/testing/selftests/kvm/dirty_log_test.c
> index fe8cc7f77e22..3a4e411353d7 100644
> --- a/tools/testing/selftests/kvm/dirty_log_test.c
> +++ b/tools/testing/selftests/kvm/dirty_log_test.c
> @@ -134,7 +134,6 @@ static uint64_t host_num_pages;
> /* For statistics only */
> static uint64_t host_dirty_count;
> static uint64_t host_clear_count;
> -static uint64_t host_track_next_count;
>
> /* Whether dirty ring reset is requested, or finished */
> static sem_t sem_vcpu_stop;
> @@ -422,15 +421,6 @@ struct log_mode {
> },
> };
>
> -/*
> - * We use this bitmap to track some pages that should have its dirty
> - * bit set in the _next_ iteration. For example, if we detected the
> - * page value changed to current iteration but at the same time the
> - * page bit is cleared in the latest bitmap, then the system must
> - * report that write in the next get dirty log call.
> - */
> -static unsigned long *host_bmap_track;
> -
> static void log_modes_dump(void)
> {
> int i;
> @@ -491,79 +481,52 @@ static void *vcpu_worker(void *data)
> return NULL;
> }
>
> -static void vm_dirty_log_verify(enum vm_guest_mode mode, unsigned long *bmap)
> +static void vm_dirty_log_verify(enum vm_guest_mode mode, unsigned long **bmap)
> {
> uint64_t page, nr_dirty_pages = 0, nr_clean_pages = 0;
> uint64_t step = vm_num_host_pages(mode, 1);
> - uint64_t min_iter = 0;
>
> for (page = 0; page < host_num_pages; page += step) {
> uint64_t val = *(uint64_t *)(host_test_mem + page * host_page_size);
> + bool bmap0_dirty = __test_and_clear_bit_le(page, bmap[0]);
>
> - /* If this is a special page that we were tracking... */
> - if (__test_and_clear_bit_le(page, host_bmap_track)) {
> - host_track_next_count++;
> - TEST_ASSERT(test_bit_le(page, bmap),
> - "Page %"PRIu64" should have its dirty bit "
> - "set in this iteration but it is missing",
> - page);
> - }
> -
> - if (__test_and_clear_bit_le(page, bmap)) {
> + /*
> + * Ensure both bitmaps are cleared, as a page can be written
> + * multiple times per iteration, i.e. can show up in both
> + * bitmaps, and the dirty ring is additive, i.e. doesn't purge
> + * bitmap entries from previous collections.
> + */
> + if (__test_and_clear_bit_le(page, bmap[1]) || bmap0_dirty) {
> nr_dirty_pages++;
>
> /*
> - * If the bit is set, the value written onto
> - * the corresponding page should be either the
> - * previous iteration number or the current one.
> + * If the page is dirty, the value written to memory
> + * should be the current iteration number.
> */
> - if (val == iteration || val == iteration - 1)
> + if (val == iteration)
> continue;
>
> if (host_log_mode == LOG_MODE_DIRTY_RING) {
> - if (val == iteration - 2 && min_iter <= iteration - 2) {
> - /*
> - * Short answer: this case is special
> - * only for dirty ring test where the
> - * page is the last page before a kvm
> - * dirty ring full in iteration N-2.
> - *
> - * Long answer: Assuming ring size R,
> - * one possible condition is:
> - *
> - * main thr vcpu thr
> - * -------- --------
> - * iter=1
> - * write 1 to page 0~(R-1)
> - * full, vmexit
> - * collect 0~(R-1)
> - * kick vcpu
> - * write 1 to (R-1)~(2R-2)
> - * full, vmexit
> - * iter=2
> - * collect (R-1)~(2R-2)
> - * kick vcpu
> - * write 1 to (2R-2)
> - * (NOTE!!! "1" cached in cpu reg)
> - * write 2 to (2R-1)~(3R-3)
> - * full, vmexit
> - * iter=3
> - * collect (2R-2)~(3R-3)
> - * (here if we read value on page
> - * "2R-2" is 1, while iter=3!!!)
> - *
> - * This however can only happen once per iteration.
> - */
> - min_iter = iteration - 1;
> + /*
> + * The last page in the ring from this iteration
> + * or the previous can be written with the value
> + * from the previous iteration (relative to the
> + * last page's iteration), as the value to be
> + * written may be cached in a CPU register.
> + */
> + if (page == dirty_ring_last_page ||
> + page == dirty_ring_prev_iteration_last_page)
> continue;
> - } else if (page == dirty_ring_last_page ||
> - page == dirty_ring_prev_iteration_last_page) {
> - /*
> - * Please refer to comments in
> - * dirty_ring_last_page.
> - */
> - continue;
> - }
> + } else if (!val && iteration == 1 && bmap0_dirty) {
> + /*
> + * When testing get+clear, the dirty bitmap
> + * starts with all bits set, and so the first
> + * iteration can observe a "dirty" page that
> + * was never written, but only in the first
> + * bitmap (collecting the bitmap also clears
> + * all dirty pages).
> + */
> + continue;
> }
>
> TEST_FAIL("Dirty page %lu value (%lu) != iteration (%lu) "
> @@ -574,36 +537,13 @@ static void vm_dirty_log_verify(enum vm_guest_mode mode, unsigned long *bmap)
> nr_clean_pages++;
> /*
> * If cleared, the value written can be any
> - * value smaller or equals to the iteration
> - * number. Note that the value can be exactly
> - * (iteration-1) if that write can happen
> - * like this:
> - *
> - * (1) increase loop count to "iteration-1"
> - * (2) write to page P happens (with value
> - * "iteration-1")
> - * (3) get dirty log for "iteration-1"; we'll
> - * see that page P bit is set (dirtied),
> - * and not set the bit in host_bmap_track
> - * (4) increase loop count to "iteration"
> - * (which is current iteration)
> - * (5) get dirty log for current iteration,
> - * we'll see that page P is cleared, with
> - * value "iteration-1".
> + * value smaller than the iteration number.
> */
> - TEST_ASSERT(val <= iteration,
> - "Clear page %lu value (%lu) > iteration (%lu) "
> + TEST_ASSERT(val < iteration,
> + "Clear page %lu value (%lu) >= iteration (%lu) "
> "(last = %lu, prev_last = %lu)",
> page, val, iteration, dirty_ring_last_page,
> dirty_ring_prev_iteration_last_page);
> - if (val == iteration) {
> - /*
> - * This page is _just_ modified; it
> - * should report its dirtyness in the
> - * next run
> - */
> - __set_bit_le(page, host_bmap_track);
> - }
> }
> }
>
> @@ -639,7 +579,7 @@ static void run_test(enum vm_guest_mode mode, void *arg)
> struct test_params *p = arg;
> struct kvm_vcpu *vcpu;
> struct kvm_vm *vm;
> - unsigned long *bmap;
> + unsigned long *bmap[2];
> uint32_t ring_buf_idx = 0;
> int sem_val;
>
> @@ -695,8 +635,8 @@ static void run_test(enum vm_guest_mode mode, void *arg)
>
> pr_info("guest physical test memory offset: 0x%lx\n", guest_test_phys_mem);
>
> - bmap = bitmap_zalloc(host_num_pages);
> - host_bmap_track = bitmap_zalloc(host_num_pages);
> + bmap[0] = bitmap_zalloc(host_num_pages);
> + bmap[1] = bitmap_zalloc(host_num_pages);
>
> /* Add an extra memory slot for testing dirty logging */
> vm_userspace_mem_region_add(vm, VM_MEM_SRC_ANONYMOUS,
> @@ -723,7 +663,6 @@ static void run_test(enum vm_guest_mode mode, void *arg)
> WRITE_ONCE(host_quit, false);
> host_dirty_count = 0;
> host_clear_count = 0;
> - host_track_next_count = 0;
> WRITE_ONCE(dirty_ring_vcpu_ring_full, false);
>
> /*
> @@ -774,7 +713,7 @@ static void run_test(enum vm_guest_mode mode, void *arg)
> continue;
>
> log_mode_collect_dirty_pages(vcpu, TEST_MEM_SLOT_INDEX,
> - bmap, host_num_pages,
> + bmap[0], host_num_pages,
> &ring_buf_idx);
> }
>
> @@ -804,6 +743,9 @@ static void run_test(enum vm_guest_mode mode, void *arg)
> * the flush of the last page, and since we handle the last
> * page specially verification will succeed anyway.
> */
> + log_mode_collect_dirty_pages(vcpu, TEST_MEM_SLOT_INDEX,
> + bmap[1], host_num_pages,
> + &ring_buf_idx);
> vm_dirty_log_verify(mode, bmap);
>
> /*
> @@ -824,12 +766,11 @@ static void run_test(enum vm_guest_mode mode, void *arg)
>
> pthread_join(vcpu_thread, NULL);
>
> - pr_info("Total bits checked: dirty (%"PRIu64"), clear (%"PRIu64"), "
> - "track_next (%"PRIu64")\n", host_dirty_count, host_clear_count,
> - host_track_next_count);
> + pr_info("Total bits checked: dirty (%lu), clear (%lu)\n",
> + host_dirty_count, host_clear_count);
>
> - free(bmap);
> - free(host_bmap_track);
> + free(bmap[0]);
> + free(bmap[1]);
> kvm_vm_free(vm);
> }
>
next prev parent reply other threads:[~2024-12-18 0:02 UTC|newest]
Thread overview: 49+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-14 1:07 [PATCH 00/20] KVM: selftests: Fixes and cleanups for dirty_log_test Sean Christopherson
2024-12-14 1:07 ` [PATCH 01/20] KVM: selftests: Support multiple write retires in dirty_log_test Sean Christopherson
2024-12-14 1:07 ` [PATCH 02/20] KVM: selftests: Sync dirty_log_test iteration to guest *before* resuming Sean Christopherson
2024-12-17 23:58 ` Maxim Levitsky
2024-12-18 21:36 ` Sean Christopherson
2024-12-19 15:11 ` Maxim Levitsky
2024-12-14 1:07 ` [PATCH 03/20] KVM: selftests: Drop signal/kick from dirty ring testcase Sean Christopherson
2024-12-14 1:07 ` [PATCH 04/20] KVM: selftests: Drop stale srandom() initialization from dirty_log_test Sean Christopherson
2024-12-17 23:59 ` Maxim Levitsky
2024-12-14 1:07 ` [PATCH 05/20] KVM: selftests: Precisely track number of dirty/clear pages for each iteration Sean Christopherson
2024-12-17 23:59 ` Maxim Levitsky
2024-12-18 21:37 ` Sean Christopherson
2024-12-14 1:07 ` [PATCH 06/20] KVM: selftests: Read per-page value into local var when verifying dirty_log_test Sean Christopherson
2024-12-17 23:59 ` Maxim Levitsky
2024-12-14 1:07 ` [PATCH 07/20] KVM: selftests: Continuously reap dirty ring while vCPU is running Sean Christopherson
2024-12-18 0:00 ` Maxim Levitsky
2024-12-19 1:50 ` Sean Christopherson
2024-12-14 1:07 ` [PATCH 08/20] KVM: selftests: Limit dirty_log_test's s390x workaround to s390x Sean Christopherson
2024-12-14 1:07 ` [PATCH 09/20] KVM: selftests: Honor "stop" request in dirty ring test Sean Christopherson
2024-12-18 0:00 ` Maxim Levitsky
2024-12-19 2:00 ` Sean Christopherson
2024-12-19 15:07 ` Maxim Levitsky
2024-12-19 15:23 ` Sean Christopherson
2024-12-19 15:57 ` Maxim Levitsky
2024-12-14 1:07 ` [PATCH 10/20] KVM: selftests: Keep dirty_log_test vCPU in guest until it needs to stop Sean Christopherson
2024-12-18 0:01 ` Maxim Levitsky
2024-12-19 15:59 ` Maxim Levitsky
2024-12-14 1:07 ` [PATCH 11/20] KVM: selftests: Post to sem_vcpu_stop if and only if vcpu_stop is true Sean Christopherson
2024-12-18 0:01 ` Maxim Levitsky
2024-12-14 1:07 ` [PATCH 12/20] KVM: selftests: Use continue to handle all "pass" scenarios in dirty_log_test Sean Christopherson
2024-12-18 0:01 ` Maxim Levitsky
2024-12-14 1:07 ` [PATCH 13/20] KVM: selftests: Print (previous) last_page on dirty page value mismatch Sean Christopherson
2024-12-18 0:01 ` Maxim Levitsky
2024-12-14 1:07 ` [PATCH 14/20] KVM: selftests: Collect *all* dirty entries in each dirty_log_test iteration Sean Christopherson
2024-12-18 0:02 ` Maxim Levitsky [this message]
2024-12-19 2:13 ` Sean Christopherson
2024-12-19 12:55 ` Paolo Bonzini
2024-12-19 15:01 ` Maxim Levitsky
2024-12-14 1:07 ` [PATCH 15/20] KVM: sefltests: Verify value of dirty_log_test last page isn't bogus Sean Christopherson
2024-12-18 0:02 ` Maxim Levitsky
2024-12-14 1:07 ` [PATCH 16/20] KVM: selftests: Ensure guest writes min number of pages in dirty_log_test Sean Christopherson
2024-12-18 0:02 ` Maxim Levitsky
2024-12-14 1:07 ` [PATCH 17/20] KVM: selftests: Tighten checks around prev iter's last dirty page in ring Sean Christopherson
2024-12-18 0:03 ` Maxim Levitsky
2024-12-14 1:07 ` [PATCH 18/20] KVM: selftests: Set per-iteration variables at the start of each iteration Sean Christopherson
2024-12-14 1:07 ` [PATCH 19/20] KVM: selftests: Fix an off-by-one in the number of dirty_log_test iterations Sean Christopherson
2024-12-18 0:03 ` Maxim Levitsky
2024-12-14 1:07 ` [PATCH 20/20] KVM: selftests: Allow running a single iteration of dirty_log_test Sean Christopherson
2024-12-18 0:03 ` Maxim Levitsky
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=fb179759bdc224431f6b031eaa9747c1897d296b.camel@redhat.com \
--to=mlevitsk@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=pbonzini@redhat.com \
--cc=peterx@redhat.com \
--cc=seanjc@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®