diff options
author | Kevin Wolf <kwolf@redhat.com> | 2014-03-26 13:05:43 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2014-04-01 14:19:09 +0200 |
commit | 5dab2faddc8eaa1fb1abdbe2f502001fc13a1b21 (patch) | |
tree | 675dd5f26040c117c2f2fb040b5ea9dfb623ecf6 /block/qcow2-refcount.c | |
parent | a1b3955c9415b1e767c130a2f59fee6aa28e575b (diff) | |
download | qemu-5dab2faddc8eaa1fb1abdbe2f502001fc13a1b21.zip qemu-5dab2faddc8eaa1fb1abdbe2f502001fc13a1b21.tar.gz qemu-5dab2faddc8eaa1fb1abdbe2f502001fc13a1b21.tar.bz2 |
qcow2: Check refcount table size (CVE-2014-0144)
Limit the in-memory reference count table size to 8 MB, it's enough in
practice. This fixes an unbounded allocation as well as a buffer
overflow in qcow2_refcount_init().
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'block/qcow2-refcount.c')
-rw-r--r-- | block/qcow2-refcount.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/block/qcow2-refcount.c b/block/qcow2-refcount.c index 4a2df5f..e3c7ecd 100644 --- a/block/qcow2-refcount.c +++ b/block/qcow2-refcount.c @@ -40,8 +40,10 @@ static int QEMU_WARN_UNUSED_RESULT update_refcount(BlockDriverState *bs, int qcow2_refcount_init(BlockDriverState *bs) { BDRVQcowState *s = bs->opaque; - int ret, refcount_table_size2, i; + unsigned int refcount_table_size2, i; + int ret; + assert(s->refcount_table_size <= INT_MAX / sizeof(uint64_t)); refcount_table_size2 = s->refcount_table_size * sizeof(uint64_t); s->refcount_table = g_malloc(refcount_table_size2); if (s->refcount_table_size > 0) { |