From: sashiko-bot@kernel.org
To: "Dmytro Maluka" <dmaluka@chromium.org>
Cc: kvm@vger.kernel.org
Subject: Re: [PATCH 1/3] KVM: selftests: Fix treating KVM_CAP_MAX_VCPU_ID as inclusive
Date: Thu, 30 Jul 2026 18:52:43 +0000 [thread overview]
Message-ID: <20260730185243.CD3201F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260730182425.1223530-2-dmaluka@chromium.org>
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Medium] The selftest changes assert that setting `bsp_vcpu_id` equal to `max_vcpu_ids` (the exclusive upper bound for vcpu IDs) will be rejected with `-EINVAL`, but the KVM kernel code was not fixed to enforce this and still returns success, causing the tests to fail.
--
--- Patch [1]: [PATCH 1/3] KVM: selftests: Fix treating KVM_CAP_MAX_VCPU_ID as inclusive ---
commit 985e68429c6e20e59d983752bd84f5dc599b83f0
Author: Dmytro Maluka <dmaluka@chromium.org>
KVM: selftests: Fix treating KVM_CAP_MAX_VCPU_ID as inclusive
This commit updates KVM selftests to treat KVM_CAP_MAX_VCPU_ID as
exclusive rather than inclusive. It modifies the tests to assert that
setting a boot CPU ID or vCPU ID equal to or greater than the maximum
capacity will fail.
> diff --git a/tools/testing/selftests/kvm/x86/max_vcpuid_cap_test.c b/tools/testing/selftests/kvm/x86/max_vcpuid_cap_test.c
> index 7e2bfb3c3f3ba..43f16c052de4a 100644
> --- a/tools/testing/selftests/kvm/x86/max_vcpuid_cap_test.c
> +++ b/tools/testing/selftests/kvm/x86/max_vcpuid_cap_test.c
> @@ -30,22 +30,25 @@ int main(int argc, char *argv[])
> if (kvm_has_cap(KVM_CAP_SET_BOOT_CPU_ID)) {
> vm_ioctl(vm, KVM_SET_BOOT_CPU_ID, (void *)MAX_VCPU_ID);
>
> - /* Try setting KVM_CAP_MAX_VCPU_ID below BOOT_CPU_ID */
> - ret = __vm_enable_cap(vm, KVM_CAP_MAX_VCPU_ID, MAX_VCPU_ID - 1);
> + /* Try setting KVM_CAP_MAX_VCPU_ID below or equal to BOOT_CPU_ID */
> + ret = __vm_enable_cap(vm, KVM_CAP_MAX_VCPU_ID, MAX_VCPU_ID);
> TEST_ASSERT(ret < 0,
> - "Setting KVM_CAP_MAX_VCPU_ID below BOOT_CPU_ID should fail");
> + "Setting KVM_CAP_MAX_VCPU_ID <= BOOT_CPU_ID should fail");
[Severity: Medium]
Will this assertion now fail because the kernel code hasn't been updated to
enforce this behavior?
Looking at how KVM_CAP_MAX_VCPU_ID is handled in the kernel, it checks:
if (kvm->arch.bsp_vcpu_id > cap->args[0]) {
r = -EINVAL;
break;
}
If both kvm->arch.bsp_vcpu_id and cap->args[0] are set to MAX_VCPU_ID, the
greater-than condition evaluates to false. Will the ioctl return success
instead of -EINVAL, causing this test to crash?
[ ... ]
> diff --git a/tools/testing/selftests/kvm/x86/set_boot_cpu_id.c b/tools/testing/selftests/kvm/x86/set_boot_cpu_id.c
> index 8e3898646c69d..1c4ebdf8e82c5 100644
> --- a/tools/testing/selftests/kvm/x86/set_boot_cpu_id.c
> +++ b/tools/testing/selftests/kvm/x86/set_boot_cpu_id.c
> @@ -39,8 +39,8 @@ static void test_set_invalid_bsp(struct kvm_vm *vm)
> int r;
>
> if (max_vcpu_id) {
> - r = __vm_ioctl(vm, KVM_SET_BOOT_CPU_ID, (void *)(max_vcpu_id + 1));
> - TEST_ASSERT(r == -1 && errno == EINVAL, "BSP with ID > MAX should fail");
> + r = __vm_ioctl(vm, KVM_SET_BOOT_CPU_ID, (void *)max_vcpu_id);
> + TEST_ASSERT(r == -1 && errno == EINVAL, "BSP with ID >= MAX should fail");
[Severity: Medium]
Does this change also cause the test to fail against the current kernel?
Looking at the KVM_SET_BOOT_CPU_ID handling in arch/x86/kvm/x86.c:kvm_vm_ioctl():
else if (arg > KVM_MAX_VCPU_IDS ||
(kvm->arch.max_vcpu_ids && arg > kvm->arch.max_vcpu_ids))
r = -EINVAL;
Since the kernel checks if arg is greater than max_vcpu_ids instead of
greater than or equal to, will setting arg to max_vcpu_id return success
here and trigger the TEST_ASSERT failure?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260730182425.1223530-1-dmaluka@chromium.org?part=1
next prev parent reply other threads:[~2026-07-30 18:52 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-30 18:24 [PATCH 0/3] KVM: x86: Fix off-by-one in max_vcpu_ids bounds checks Dmytro Maluka
2026-07-30 18:24 ` [PATCH 1/3] KVM: selftests: Fix treating KVM_CAP_MAX_VCPU_ID as inclusive Dmytro Maluka
2026-07-30 18:52 ` sashiko-bot [this message]
2026-07-30 21:31 ` Dmytro Maluka
2026-07-30 18:24 ` [PATCH 2/3] KVM: x86: Fix off-by-one in max_vcpu_ids bounds checks Dmytro Maluka
2026-07-30 18:24 ` [PATCH 3/3] Documentation: KVM: Clarify that KVM_CAP_MAX_VCPU_ID is exclusive Dmytro Maluka
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=20260730185243.CD3201F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=dmaluka@chromium.org \
--cc=kvm@vger.kernel.org \
--cc=sashiko-reviews@lists.linux.dev \
/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