[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL] i386: avoid null pointer dereference
From: |
Paolo Bonzini |
Subject: |
[Qemu-devel] [PULL] i386: avoid null pointer dereference |
Date: |
Fri, 15 Jan 2016 17:04:19 +0100 |
From: Prasad J Pandit <address@hidden>
When I/O port write operation is called from hmp interface,
'current_cpu' remains null, as it is not called from cpu_exec()
loop. This leads to a null pointer dereference in vapic_write
routine. Add check to avoid it.
Reported-by: Ling Liu <address@hidden>
Signed-off-by: Prasad J Pandit <address@hidden>
Message-Id: <address@hidden>
Signed-off-by: Paolo Bonzini <address@hidden>
---
hw/i386/kvmvapic.c | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/hw/i386/kvmvapic.c b/hw/i386/kvmvapic.c
index c6d34b2..f0922da 100644
--- a/hw/i386/kvmvapic.c
+++ b/hw/i386/kvmvapic.c
@@ -634,13 +634,18 @@ static int vapic_prepare(VAPICROMState *s)
static void vapic_write(void *opaque, hwaddr addr, uint64_t data,
unsigned int size)
{
- CPUState *cs = current_cpu;
- X86CPU *cpu = X86_CPU(cs);
- CPUX86State *env = &cpu->env;
- hwaddr rom_paddr;
VAPICROMState *s = opaque;
+ X86CPU *cpu;
+ CPUX86State *env;
+ hwaddr rom_paddr;
- cpu_synchronize_state(cs);
+ if (!current_cpu) {
+ return;
+ }
+
+ cpu_synchronize_state(current_cpu);
+ cpu = X86_CPU(current_cpu);
+ env = &cpu->env;
/*
* The VAPIC supports two PIO-based hypercalls, both via port 0x7E.
--
1.8.3.1
- [Qemu-devel] [PULL 00/15] NBD, chardev, SCSI patches for 2015-01-15, Paolo Bonzini, 2016/01/15
- [Qemu-devel] [PULL 02/15] target-i386: do not duplicate page protection checks, Paolo Bonzini, 2016/01/15
- [Qemu-devel] [PULL 01/15] scsi: revert change to scsi_req_cancel_async and add assertions, Paolo Bonzini, 2016/01/15
- [Qemu-devel] [PULL 04/15] scsi: initialise info object with appropriate size, Paolo Bonzini, 2016/01/15
- [Qemu-devel] [PULL] i386: avoid null pointer dereference,
Paolo Bonzini <=
- [Qemu-devel] [PULL 05/15] vmw_pvscsi: x-disable-pcie, x-old-pci-configuration back-compat props are 2.5 specific, Paolo Bonzini, 2016/01/15
- [Qemu-devel] [PULL 07/15] iscsi: send readcapacity10 when readcapacity16 failed, Paolo Bonzini, 2016/01/15
- [Qemu-devel] [PULL 03/15] i386: avoid null pointer dereference, Paolo Bonzini, 2016/01/15
[Qemu-devel] [PULL 12/15] nbd-server: do not check request length except for reads and writes, Paolo Bonzini, 2016/01/15
[Qemu-devel] [PULL 06/15] qemu-char: delete send_all/recv_all helper methods, Paolo Bonzini, 2016/01/15
[Qemu-devel] [PULL 13/15] nbd-server: do not exit on failed memory allocation, Paolo Bonzini, 2016/01/15