diff options
author | Kevin Wolf <kwolf@redhat.com> | 2014-03-26 13:06:06 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2014-04-01 15:22:35 +0200 |
commit | 6a83f8b5bec6f59e56cc49bd49e4c3f8f805d56f (patch) | |
tree | 4063692109e5f06ece922daad860641ec0fe8421 /block/qcow2.h | |
parent | c05e4667be91b46ab42b5a11babf8e84d476cc6b (diff) | |
download | qemu-6a83f8b5bec6f59e56cc49bd49e4c3f8f805d56f.zip |
qcow2: Check maximum L1 size in qcow2_snapshot_load_tmp() (CVE-2014-0143)
This avoids an unbounded allocation.
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.h')
-rw-r--r-- | block/qcow2.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/block/qcow2.h b/block/qcow2.h index 364946545d..f28e7d9165 100644 --- a/block/qcow2.h +++ b/block/qcow2.h @@ -44,6 +44,10 @@ * (128 GB for 512 byte clusters, 2 EB for 2 MB clusters) */ #define QCOW_MAX_REFTABLE_SIZE 0x800000 +/* 32 MB L1 table is enough for 2 PB images at 64k cluster size + * (128 GB for 512 byte clusters, 2 EB for 2 MB clusters) */ +#define QCOW_MAX_L1_SIZE 0x2000000 + /* indicate that the refcount of the referenced cluster is exactly one. */ #define QCOW_OFLAG_COPIED (1ULL << 63) /* indicate that the cluster is compressed (they never have the copied flag) */ |