[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <YIoFFl72VSeuhCRt@google.com>
Date: Thu, 29 Apr 2021 01:00:06 +0000
From: Sean Christopherson <seanjc@...gle.com>
To: Valeriy Vdovin <valeriy.vdovin@...tuozzo.com>
Cc: linux-kernel@...r.kernel.org, Denis Lunev <den@...nvz.org>,
Paolo Bonzini <pbonzini@...hat.com>,
Jonathan Corbet <corbet@....net>,
Vitaly Kuznetsov <vkuznets@...hat.com>,
Wanpeng Li <wanpengli@...cent.com>,
Jim Mattson <jmattson@...gle.com>,
Joerg Roedel <joro@...tes.org>,
Thomas Gleixner <tglx@...utronix.de>,
Ingo Molnar <mingo@...hat.com>, Borislav Petkov <bp@...en8.de>,
x86@...nel.org, "H. Peter Anvin" <hpa@...or.com>,
Shuah Khan <shuah@...nel.org>,
Aaron Lewis <aaronlewis@...gle.com>,
Alexander Graf <graf@...zon.com>,
Andrew Jones <drjones@...hat.com>,
Oliver Upton <oupton@...gle.com>,
Like Xu <like.xu@...ux.intel.com>, kvm@...r.kernel.org,
linux-doc@...r.kernel.org, linux-kselftest@...r.kernel.org
Subject: Re: [PATCH v4] KVM: x86: Fix KVM_GET_CPUID2 ioctl to return cpuid
entries count
On Wed, Apr 28, 2021, Valeriy Vdovin wrote:
> It's very explicit by the code that it was designed to receive some
> small number of entries to return E2BIG along with the corrected number.
LOL, saying KVM_GET_CPUID2 was "designed" is definitely giving the KVM
forefathers the benefit of the doubt.
> diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
> index efc7a82ab140..3f941b1f4e78 100644
> --- a/arch/x86/kvm/x86.c
> +++ b/arch/x86/kvm/x86.c
> @@ -4773,14 +4773,17 @@ long kvm_arch_vcpu_ioctl(struct file *filp,
> r = -EFAULT;
> if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
> goto out;
> +
> r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
> cpuid_arg->entries);
> - if (r)
> +
> + if (r && r != -E2BIG)
> goto out;
> - r = -EFAULT;
> - if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
> +
> + if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid))) {
> + r = -EFAULT;
> goto out;
As I pointed out[*], copying the number of entries but not the entries themselves
is wrong. All of my feedback on v1 still stands.
[*] https://lkml.kernel.org/r/YIl4M/GgaYvwNuXv@google.com
> - r = 0;
> + }
> break;
> }
> case KVM_GET_MSRS: {
Powered by blists - more mailing lists