Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1487100
| From | Shailendra Verma <shailendra.v@samsung.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Virt: Kvm - Fix possible ERR_PTR() dereferencing. |
| Date | 2016-09-20 09:00 +0200 |
| Message-ID | <sjnc5-7VS-7@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
This is of course wrong to call kfree() if memdup_user() fails,
no memory was allocated and the error in the error-valued pointer
should be returned.
Reviewed-by: Ravikant Sharma <ravikant.s2@samsung.com>
Signed-off-by: Shailendra Verma <shailendra.v@samsung.com>
---
virt/kvm/kvm_main.c | 20 ++++++--------------
1 file changed, 6 insertions(+), 14 deletions(-)
diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c
index 484079e..e3a0653 100644
--- a/virt/kvm/kvm_main.c
+++ b/virt/kvm/kvm_main.c
@@ -2398,10 +2398,8 @@ out_free1:
r = -ENOMEM;
kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
- if (IS_ERR(kvm_regs)) {
- r = PTR_ERR(kvm_regs);
- goto out;
- }
+ if (IS_ERR(kvm_regs))
+ return PTR_ERR(kvm_regs);
r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
kfree(kvm_regs);
break;
@@ -2422,11 +2420,8 @@ out_free1:
}
case KVM_SET_SREGS: {
kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs));
- if (IS_ERR(kvm_sregs)) {
- r = PTR_ERR(kvm_sregs);
- kvm_sregs = NULL;
- goto out;
- }
+ if (IS_ERR(kvm_sregs))
+ return PTR_ERR(kvm_sregs);
r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
break;
}
@@ -2514,11 +2509,8 @@ out_free1:
}
case KVM_SET_FPU: {
fpu = memdup_user(argp, sizeof(*fpu));
- if (IS_ERR(fpu)) {
- r = PTR_ERR(fpu);
- fpu = NULL;
- goto out;
- }
+ if (IS_ERR(fpu))
+ return PTR_ERR(fpu);
r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
break;
}
--
1.9.1
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
Virt: Kvm - Fix possible ERR_PTR() dereferencing. Shailendra Verma <shailendra.v@samsung.com> - 2016-09-20 09:00 +0200 Re: Virt: Kvm - Fix possible ERR_PTR() dereferencing. Paolo Bonzini <pbonzini@redhat.com> - 2016-09-20 10:40 +0200
csiph-web