diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2016-02-28 17:32:07 +0200 |
---|---|---|
committer | Marc Zyngier <marc.zyngier@arm.com> | 2016-02-29 09:56:40 +0000 |
commit | 4cad67fca3fc952d6f2ed9e799621f07666a560f (patch) | |
tree | eb24441cbebf6d8523ddd9ea1323ab052a431614 /arch/arm64/kvm | |
parent | fd451b90e78c4178bcfc5072f2b2b637500c109a (diff) | |
download | op-kernel-dev-4cad67fca3fc952d6f2ed9e799621f07666a560f.zip op-kernel-dev-4cad67fca3fc952d6f2ed9e799621f07666a560f.tar.gz |
arm/arm64: KVM: Fix ioctl error handling
Calling return copy_to_user(...) in an ioctl will not
do the right thing if there's a pagefault:
copy_to_user returns the number of bytes not copied
in this case.
Fix up kvm to do
return copy_to_user(...)) ? -EFAULT : 0;
everywhere.
Cc: stable@vger.kernel.org
Acked-by: Christoffer Dall <christoffer.dall@linaro.org>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'arch/arm64/kvm')
-rw-r--r-- | arch/arm64/kvm/guest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kvm/guest.c b/arch/arm64/kvm/guest.c index fcb7788..9e54ad7 100644 --- a/arch/arm64/kvm/guest.c +++ b/arch/arm64/kvm/guest.c @@ -194,7 +194,7 @@ static int get_timer_reg(struct kvm_vcpu *vcpu, const struct kvm_one_reg *reg) u64 val; val = kvm_arm_timer_get_reg(vcpu, reg->id); - return copy_to_user(uaddr, &val, KVM_REG_SIZE(reg->id)); + return copy_to_user(uaddr, &val, KVM_REG_SIZE(reg->id)) ? -EFAULT : 0; } /** |