aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCédric Le Goater <clg@kaod.org>2020-01-07 18:18:09 +0100
committerDavid Gibson <david@gibson.dropbear.id.au>2020-01-08 12:01:14 +1100
commitfc2527fb024abf92719952c939d751739455bd6b (patch)
tree4a4928027ce57451c22d8421df6eee2f9aa97337 /include
parent3a688294e2c36575fd3e259a64a066b38e164cbb (diff)
downloadqemu-fc2527fb024abf92719952c939d751739455bd6b.zip
qemu-fc2527fb024abf92719952c939d751739455bd6b.tar.gz
qemu-fc2527fb024abf92719952c939d751739455bd6b.tar.bz2
ppc/pnv: fix check on return value of blk_getlength()
blk_getlength() returns an int64_t but the result is stored in a uint32_t. Errors (negative values) won't be caught by the check in pnv_pnor_realize() and blk_blockalign() will allocate a very large buffer in such cases. Fixes Coverity issue CID 1412226. Signed-off-by: Cédric Le Goater <clg@kaod.org> Message-Id: <20200107171809.15556-3-clg@kaod.org> Reviewed-by: Greg Kurz <groug@kaod.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'include')
-rw-r--r--include/hw/ppc/pnv_pnor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/ppc/pnv_pnor.h b/include/hw/ppc/pnv_pnor.h
index c3dd286..4f96abd 100644
--- a/include/hw/ppc/pnv_pnor.h
+++ b/include/hw/ppc/pnv_pnor.h
@@ -23,7 +23,7 @@ typedef struct PnvPnor {
BlockBackend *blk;
uint8_t *storage;
- uint32_t size;
+ int64_t size;
MemoryRegion mmio;
} PnvPnor;