[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL v3 04/51] ivhsmem: read do not accept more than sizeo
From: |
marcandre . lureau |
Subject: |
[Qemu-devel] [PULL v3 04/51] ivhsmem: read do not accept more than sizeof(long) |
Date: |
Tue, 13 Oct 2015 16:25:31 +0200 |
From: Marc-André Lureau <address@hidden>
ivshmem_read() only reads sizeof(long) from the input buffer. Accepting
more could lead to fifo8 abort() on 32bit systems if fifo is not empty.
A following patch will change the protocol to 64-bit little-endian
instead.
Signed-off-by: Marc-André Lureau <address@hidden>
Reviewed-by: Claudio Fontana <address@hidden>
---
hw/misc/ivshmem.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/misc/ivshmem.c b/hw/misc/ivshmem.c
index cc76989..fb53b3f 100644
--- a/hw/misc/ivshmem.c
+++ b/hw/misc/ivshmem.c
@@ -272,7 +272,7 @@ static void ivshmem_receive(void *opaque, const uint8_t
*buf, int size)
static int ivshmem_can_receive(void * opaque)
{
- return 8;
+ return sizeof(long);
}
static void ivshmem_event(void *opaque, int event)
--
2.4.3
- [Qemu-devel] [PULL v3 00/51] Ivshmem patches, marcandre . lureau, 2015/10/15
- [Qemu-devel] [PULL v3 01/51] tests: Add ivshmem qtest, marcandre . lureau, 2015/10/13
- [Qemu-devel] [PULL v3 02/51] char: add qemu_chr_free(), marcandre . lureau, 2015/10/13
- [Qemu-devel] [PULL v3 03/51] msix: add VMSTATE_MSIX_TEST, marcandre . lureau, 2015/10/13
- [Qemu-devel] [PULL v3 04/51] ivhsmem: read do not accept more than sizeof(long),
marcandre . lureau <=
- [Qemu-devel] [PULL v3 05/51] ivshmem: fix number of bytes to push to fifo, marcandre . lureau, 2015/10/13
- [Qemu-devel] [PULL v3 06/51] ivshmem: factor out the incoming fifo handling, marcandre . lureau, 2015/10/13
- [Qemu-devel] [PULL v3 08/51] ivshmem: remove superflous ivshmem_attr field, marcandre . lureau, 2015/10/13
- [Qemu-devel] [PULL v3 09/51] ivshmem: remove useless doorbell field, marcandre . lureau, 2015/10/13
- [Qemu-devel] [PULL v3 07/51] ivshmem: remove unnecessary dup(), marcandre . lureau, 2015/10/13
- [Qemu-devel] [PULL v3 10/51] ivshmem: more qdev conversion, marcandre . lureau, 2015/10/13
- [Qemu-devel] [PULL v3 11/51] ivshmem: remove last exit(1), marcandre . lureau, 2015/10/13
- [Qemu-devel] [PULL v3 15/51] ivshmem: remove useless ivshmem_update_irq() val argument, marcandre . lureau, 2015/10/13
- [Qemu-devel] [PULL v3 18/51] ivshmem: improve debug messages, marcandre . lureau, 2015/10/13
- [Qemu-devel] [PULL v3 17/51] ivshmem: remove max_peer field, marcandre . lureau, 2015/10/13