From: Max Reitz <mreitz@redhat.com>
To: Markus Armbruster <armbru@redhat.com>, qemu-devel@nongnu.org
Cc: kwolf@redhat.com, mrezanin@redhat.com, qemu-block@nongnu.org
Subject: Re: [PATCH 1/9] block/vpc: Make vpc_open() read the full dynamic header
Date: Fri, 18 Dec 2020 11:19:46 +0100 [thread overview]
Message-ID: <c47aef12-38cd-fd21-7fdb-af3be0af1833@redhat.com> (raw)
In-Reply-To: <20201217162003.1102738-2-armbru@redhat.com>
On 17.12.20 17:19, Markus Armbruster wrote:
> The dynamic header's size is 1024 bytes.
>
> vpc_open() reads only the 512 bytes of the dynamic header into buf[].
> Works, because it doesn't actually access the second half. However, a
> colleague told me that GCC 11 warns:
>
> ../block/vpc.c:358:51: error: array subscript 'struct VHDDynDiskHeader[0]' is partly outside array bounds of 'uint8_t[512]' [-Werror=array-bounds]
>
> Clean up to read the full header.
>
> Rename buf[] to dyndisk_header_buf[] while there.
>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
> block/vpc.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/block/vpc.c b/block/vpc.c
> index 1ab55f9287..2fcf3f6283 100644
> --- a/block/vpc.c
> +++ b/block/vpc.c
> @@ -220,7 +220,7 @@ static int vpc_open(BlockDriverState *bs, QDict *options, int flags,
> QemuOpts *opts = NULL;
> Error *local_err = NULL;
> bool use_chs;
> - uint8_t buf[HEADER_SIZE];
> + uint8_t dyndisk_header_buf[1024];
Perhaps this should be heap-allocated, but I don’t know whether qemu has
ever established a (perhaps just inofficial) threshold on what goes on
the stack and what goes on the heap.
> uint32_t checksum;
> uint64_t computed_size;
> uint64_t pagetable_size;
> @@ -340,14 +340,14 @@ static int vpc_open(BlockDriverState *bs, QDict *options, int flags,
> }
>
> if (disk_type == VHD_DYNAMIC) {
> - ret = bdrv_pread(bs->file, be64_to_cpu(footer->data_offset), buf,
> - HEADER_SIZE);
> + ret = bdrv_pread(bs->file, be64_to_cpu(footer->data_offset),
> + dyndisk_header_buf, 1024);
sizeof() would be better, but I see that’s what patch 6 is for.
> if (ret < 0) {
> error_setg(errp, "Error reading dynamic VHD header");
> goto fail;
> }
>
> - dyndisk_header = (VHDDynDiskHeader *) buf;
> + dyndisk_header = (VHDDynDiskHeader *)dyndisk_header_buf;
>
> if (strncmp(dyndisk_header->magic, "cxsparse", 8)) {
> error_setg(errp, "Invalid header magic");
Reviewed-by: Max Reitz <mreitz@redhat.com>
next prev parent reply other threads:[~2020-12-18 10:21 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-17 16:19 [PATCH 0/9] block/vpc: Clean up some buffer abuse Markus Armbruster
2020-12-17 16:19 ` [PATCH 1/9] block/vpc: Make vpc_open() read the full dynamic header Markus Armbruster
2020-12-18 10:19 ` Max Reitz [this message]
2020-12-18 13:49 ` Markus Armbruster
2020-12-18 14:29 ` Max Reitz
2020-12-17 16:19 ` [PATCH 2/9] block/vpc: Don't abuse the footer buffer as BAT sector buffer Markus Armbruster
2020-12-18 10:30 ` Max Reitz
2020-12-17 16:19 ` [PATCH 3/9] block/vpc: Don't abuse the footer buffer for dynamic header Markus Armbruster
2020-12-18 10:52 ` Max Reitz
2020-12-18 13:52 ` Markus Armbruster
2020-12-17 16:19 ` [PATCH 4/9] block/vpc: Make vpc_checksum() take void * Markus Armbruster
2020-12-18 10:54 ` Max Reitz
2020-12-18 13:54 ` Markus Armbruster
2020-12-17 16:19 ` [PATCH 5/9] block/vpc: Pad VHDDynDiskHeader, replace uint8_t[] buffers Markus Armbruster
2020-12-18 11:04 ` Max Reitz
2020-12-17 16:20 ` [PATCH 6/9] block/vpc: Use sizeof() instead of 1024 for dynamic header size Markus Armbruster
2020-12-18 11:06 ` Max Reitz
2020-12-17 16:20 ` [PATCH 7/9] block/vpc: Pad VHDFooter, replace uint8_t[] buffers Markus Armbruster
2020-12-18 11:10 ` Max Reitz
2020-12-17 16:20 ` [PATCH 8/9] block/vpc: Pass footer buffers as VHDFooter * instead of uint8_t * Markus Armbruster
2020-12-18 11:12 ` Max Reitz
2020-12-17 16:20 ` [PATCH 9/9] block/vpc: Use sizeof() instead of HEADER_SIZE for footer size Markus Armbruster
2020-12-18 11:14 ` Max Reitz
2020-12-18 10:43 ` [PATCH 0/9] block/vpc: Clean up some buffer abuse Kevin Wolf
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=c47aef12-38cd-fd21-7fdb-af3be0af1833@redhat.com \
--to=mreitz@redhat.com \
--cc=armbru@redhat.com \
--cc=kwolf@redhat.com \
--cc=mrezanin@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).