qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Eric Blake <eblake@redhat.com>
To: Fam Zheng <famz@redhat.com>, yuchenlin@synology.com
Cc: kwolf@redhat.com, qemu-devel@nongnu.org, mreitz@redhat.com,
	qemu block <qemu-block@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH v2] vmdk: return ERROR when cluster sector is larger than vmdk limitation
Date: Thu, 22 Mar 2018 08:07:07 -0500	[thread overview]
Message-ID: <721c2816-c64b-a373-9a33-840778145bc9@redhat.com> (raw)
In-Reply-To: <20180322074129.GF26618@lemon.usersys.redhat.com>

On 03/22/2018 02:41 AM, Fam Zheng wrote:
> On Thu, 03/22 14:24, yuchenlin@synology.com wrote:
>> From: yuchenlin <yuchenlin@synology.com>
>>
>> VMDK has a hard limitation of extent size, which is due to the size of grain
>> table entry is 32 bits. It means it can only point to a grain located at
>> offset = 2^32. To avoid writing the user data beyond limitation and record a useless offset
>> in grain table. We should return ERROR here.
>>
>> Signed-off-by: yuchenlin <yuchenlin@synology.com>
>> ---

>> +++ b/block/vmdk.c
>> @@ -47,6 +47,8 @@
>>   #define VMDK4_FLAG_MARKER (1 << 17)
>>   #define VMDK4_GD_AT_END 0xffffffffffffffffULL
>>   
>> +#define VMDK_EXTENT_MAX_SECTORS (4294967296)
>> +

Hmm, with sectors instead of bytes, you don't want to use Phillipe's '2 
* T_BYTE' macro after all; but it would still look better spelled as 
'(1ULL << 32)' or '(4ULL * 1024 * 1024 * 1024)'.  Most importantly, 
since the value does NOT fit in a 32-bit unsigned integer, I think you 
NEED to use the ULL suffix to make your intent clear.

>>   #define VMDK_GTE_ZEROED 0x1
>>   
>>   /* VMDK internal error codes */
>> @@ -1250,6 +1252,10 @@ static int get_cluster_offset(BlockDriverState *bs,
>>               return zeroed ? VMDK_ZEROED : VMDK_UNALLOC;
>>           }
>>   
>> +        if (extent->next_cluster_sector >= VMDK_EXTENT_MAX_SECTORS) {
>> +            return VMDK_ERROR;
>> +        }
>> +
>>           cluster_sector = extent->next_cluster_sector;
>>           extent->next_cluster_sector += extent->cluster_sectors;
>>   
>> -- 
>> 2.16.2
>>
> 
> Cc'ing Kevin and Max who merge block/ patches.

Also, CC'ing qemu-block, as all block-related patches should go through 
there.

> 
> Reviewed-by: Fam Zheng <famz@redhat.com>
> 
> 
> 

-- 
Eric Blake, Principal Software Engineer
Red Hat, Inc.           +1-919-301-3266
Virtualization:  qemu.org | libvirt.org

      reply	other threads:[~2018-03-22 13:07 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-22  6:24 [Qemu-devel] [PATCH v2] vmdk: return ERROR when cluster sector is larger than vmdk limitation yuchenlin
2018-03-22  7:41 ` Fam Zheng
2018-03-22 13:07   ` Eric Blake [this message]

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=721c2816-c64b-a373-9a33-840778145bc9@redhat.com \
    --to=eblake@redhat.com \
    --cc=famz@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=mreitz@redhat.com \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=yuchenlin@synology.com \
    /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).