qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] raw-posix: Fix .bdrv_co_get_block_status() for unaligned image size
@ 2015-06-09  8:55 Kevin Wolf
  2015-06-09  9:47 ` Wen Congyang
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Kevin Wolf @ 2015-06-09  8:55 UTC (permalink / raw)
  To: qemu-block; +Cc: kwolf, qemu-devel, eharney, stefanha, crobinso, pbonzini

Image files with an unaligned image size have a final hole that starts
at EOF, i.e. in the middle of a sector. Currently, *pnum == 0 is
returned when checking the status of this sector. In qemu-img, this
triggers an assertion failure.

In order to fix this, one type for the sector that contains EOF must be
found. Treating a hole as data is safe, so this patch rounds the
calculated number of data sectors up, so that a partial sector at EOF is
treated as a full data sector.

This fixes https://bugzilla.redhat.com/show_bug.cgi?id=1229394

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
---
 block/raw-posix.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/block/raw-posix.c b/block/raw-posix.c
index 2990e95..44ade8c 100644
--- a/block/raw-posix.c
+++ b/block/raw-posix.c
@@ -1848,8 +1848,9 @@ static int64_t coroutine_fn raw_co_get_block_status(BlockDriverState *bs,
         *pnum = nb_sectors;
         ret = BDRV_BLOCK_DATA;
     } else if (data == start) {
-        /* On a data extent, compute sectors to the end of the extent.  */
-        *pnum = MIN(nb_sectors, (hole - start) / BDRV_SECTOR_SIZE);
+        /* On a data extent, compute sectors to the end of the extent,
+         * possibly including a partial sector at EOF. */
+        *pnum = MIN(nb_sectors, DIV_ROUND_UP(hole - start, BDRV_SECTOR_SIZE));
         ret = BDRV_BLOCK_DATA;
     } else {
         /* On a hole, compute sectors to the beginning of the next extent.  */
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [Qemu-devel] [PATCH] raw-posix: Fix .bdrv_co_get_block_status() for unaligned image size
  2015-06-09  8:55 [Qemu-devel] [PATCH] raw-posix: Fix .bdrv_co_get_block_status() for unaligned image size Kevin Wolf
@ 2015-06-09  9:47 ` Wen Congyang
  2015-06-09  9:49   ` Kevin Wolf
  2015-06-09 11:36 ` Eric Blake
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 7+ messages in thread
From: Wen Congyang @ 2015-06-09  9:47 UTC (permalink / raw)
  To: Kevin Wolf, qemu-block; +Cc: pbonzini, crobinso, qemu-devel, stefanha, eharney

On 06/09/2015 04:55 PM, Kevin Wolf wrote:
> Image files with an unaligned image size have a final hole that starts
> at EOF, i.e. in the middle of a sector. Currently, *pnum == 0 is
> returned when checking the status of this sector. In qemu-img, this
> triggers an assertion failure.
> 
> In order to fix this, one type for the sector that contains EOF must be
> found. Treating a hole as data is safe, so this patch rounds the
> calculated number of data sectors up, so that a partial sector at EOF is
> treated as a full data sector.
> 
> This fixes https://bugzilla.redhat.com/show_bug.cgi?id=1229394
> 
> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
> ---
>  block/raw-posix.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/block/raw-posix.c b/block/raw-posix.c
> index 2990e95..44ade8c 100644
> --- a/block/raw-posix.c
> +++ b/block/raw-posix.c
> @@ -1848,8 +1848,9 @@ static int64_t coroutine_fn raw_co_get_block_status(BlockDriverState *bs,
>          *pnum = nb_sectors;
>          ret = BDRV_BLOCK_DATA;
>      } else if (data == start) {
> -        /* On a data extent, compute sectors to the end of the extent.  */
> -        *pnum = MIN(nb_sectors, (hole - start) / BDRV_SECTOR_SIZE);
> +        /* On a data extent, compute sectors to the end of the extent,
> +         * possibly including a partial sector at EOF. */

Not only for EOF. If the hole and start are in the same sector, (hole - start) / BDRV_SECTOR_SIZE
will be 0

> +        *pnum = MIN(nb_sectors, DIV_ROUND_UP(hole - start, BDRV_SECTOR_SIZE));
>          ret = BDRV_BLOCK_DATA;
>      } else {
>          /* On a hole, compute sectors to the beginning of the next extent.  */
> 

So, if start is hole, data and  start are in the same sector, (data - start) / BDRV_SECTOR_SIZE
will be 0, you also need to fix it here.

Thanks
Wen Congyang

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Qemu-devel] [PATCH] raw-posix: Fix .bdrv_co_get_block_status() for unaligned image size
  2015-06-09  9:47 ` Wen Congyang
@ 2015-06-09  9:49   ` Kevin Wolf
  2015-06-09 10:11     ` Wen Congyang
  0 siblings, 1 reply; 7+ messages in thread
From: Kevin Wolf @ 2015-06-09  9:49 UTC (permalink / raw)
  To: Wen Congyang
  Cc: qemu-block, qemu-devel, eharney, stefanha, crobinso, pbonzini

Am 09.06.2015 um 11:47 hat Wen Congyang geschrieben:
> On 06/09/2015 04:55 PM, Kevin Wolf wrote:
> > Image files with an unaligned image size have a final hole that starts
> > at EOF, i.e. in the middle of a sector. Currently, *pnum == 0 is
> > returned when checking the status of this sector. In qemu-img, this
> > triggers an assertion failure.
> > 
> > In order to fix this, one type for the sector that contains EOF must be
> > found. Treating a hole as data is safe, so this patch rounds the
> > calculated number of data sectors up, so that a partial sector at EOF is
> > treated as a full data sector.
> > 
> > This fixes https://bugzilla.redhat.com/show_bug.cgi?id=1229394
> > 
> > Signed-off-by: Kevin Wolf <kwolf@redhat.com>
> > ---
> >  block/raw-posix.c | 5 +++--
> >  1 file changed, 3 insertions(+), 2 deletions(-)
> > 
> > diff --git a/block/raw-posix.c b/block/raw-posix.c
> > index 2990e95..44ade8c 100644
> > --- a/block/raw-posix.c
> > +++ b/block/raw-posix.c
> > @@ -1848,8 +1848,9 @@ static int64_t coroutine_fn raw_co_get_block_status(BlockDriverState *bs,
> >          *pnum = nb_sectors;
> >          ret = BDRV_BLOCK_DATA;
> >      } else if (data == start) {
> > -        /* On a data extent, compute sectors to the end of the extent.  */
> > -        *pnum = MIN(nb_sectors, (hole - start) / BDRV_SECTOR_SIZE);
> > +        /* On a data extent, compute sectors to the end of the extent,
> > +         * possibly including a partial sector at EOF. */
> 
> Not only for EOF. If the hole and start are in the same sector, (hole - start) / BDRV_SECTOR_SIZE
> will be 0
> 
> > +        *pnum = MIN(nb_sectors, DIV_ROUND_UP(hole - start, BDRV_SECTOR_SIZE));
> >          ret = BDRV_BLOCK_DATA;
> >      } else {
> >          /* On a hole, compute sectors to the beginning of the next extent.  */
> > 
> 
> So, if start is hole, data and  start are in the same sector, (data - start) / BDRV_SECTOR_SIZE
> will be 0, you also need to fix it here.

At first, I thought the same. But how would you ever get a hole that
starts in the middle of a sector? You would have to have a filesystem
with a block size smaller than 512. I don't think that it exists.

Kevin

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Qemu-devel] [PATCH] raw-posix: Fix .bdrv_co_get_block_status() for unaligned image size
  2015-06-09  9:49   ` Kevin Wolf
@ 2015-06-09 10:11     ` Wen Congyang
  0 siblings, 0 replies; 7+ messages in thread
From: Wen Congyang @ 2015-06-09 10:11 UTC (permalink / raw)
  To: Kevin Wolf; +Cc: qemu-block, qemu-devel, eharney, stefanha, crobinso, pbonzini

On 06/09/2015 05:49 PM, Kevin Wolf wrote:
> Am 09.06.2015 um 11:47 hat Wen Congyang geschrieben:
>> On 06/09/2015 04:55 PM, Kevin Wolf wrote:
>>> Image files with an unaligned image size have a final hole that starts
>>> at EOF, i.e. in the middle of a sector. Currently, *pnum == 0 is
>>> returned when checking the status of this sector. In qemu-img, this
>>> triggers an assertion failure.
>>>
>>> In order to fix this, one type for the sector that contains EOF must be
>>> found. Treating a hole as data is safe, so this patch rounds the
>>> calculated number of data sectors up, so that a partial sector at EOF is
>>> treated as a full data sector.
>>>
>>> This fixes https://bugzilla.redhat.com/show_bug.cgi?id=1229394
>>>
>>> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
>>> ---
>>>  block/raw-posix.c | 5 +++--
>>>  1 file changed, 3 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/block/raw-posix.c b/block/raw-posix.c
>>> index 2990e95..44ade8c 100644
>>> --- a/block/raw-posix.c
>>> +++ b/block/raw-posix.c
>>> @@ -1848,8 +1848,9 @@ static int64_t coroutine_fn raw_co_get_block_status(BlockDriverState *bs,
>>>          *pnum = nb_sectors;
>>>          ret = BDRV_BLOCK_DATA;
>>>      } else if (data == start) {
>>> -        /* On a data extent, compute sectors to the end of the extent.  */
>>> -        *pnum = MIN(nb_sectors, (hole - start) / BDRV_SECTOR_SIZE);
>>> +        /* On a data extent, compute sectors to the end of the extent,
>>> +         * possibly including a partial sector at EOF. */
>>
>> Not only for EOF. If the hole and start are in the same sector, (hole - start) / BDRV_SECTOR_SIZE
>> will be 0
>>
>>> +        *pnum = MIN(nb_sectors, DIV_ROUND_UP(hole - start, BDRV_SECTOR_SIZE));
>>>          ret = BDRV_BLOCK_DATA;
>>>      } else {
>>>          /* On a hole, compute sectors to the beginning of the next extent.  */
>>>
>>
>> So, if start is hole, data and  start are in the same sector, (data - start) / BDRV_SECTOR_SIZE
>> will be 0, you also need to fix it here.
> 
> At first, I thought the same. But how would you ever get a hole that
> starts in the middle of a sector? You would have to have a filesystem
> with a block size smaller than 512. I don't think that it exists.

You are right, I don't find such filesystem.

Thanks
Wen Congyang


> 
> Kevin
> .
> 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Qemu-devel] [PATCH] raw-posix: Fix .bdrv_co_get_block_status() for unaligned image size
  2015-06-09  8:55 [Qemu-devel] [PATCH] raw-posix: Fix .bdrv_co_get_block_status() for unaligned image size Kevin Wolf
  2015-06-09  9:47 ` Wen Congyang
@ 2015-06-09 11:36 ` Eric Blake
  2015-06-09 14:14 ` Cole Robinson
  2015-06-09 15:25 ` [Qemu-devel] [Qemu-block] " Stefan Hajnoczi
  3 siblings, 0 replies; 7+ messages in thread
From: Eric Blake @ 2015-06-09 11:36 UTC (permalink / raw)
  To: Kevin Wolf, qemu-block; +Cc: pbonzini, crobinso, qemu-devel, stefanha, eharney

[-- Attachment #1: Type: text/plain, Size: 918 bytes --]

On 06/09/2015 02:55 AM, Kevin Wolf wrote:
> Image files with an unaligned image size have a final hole that starts
> at EOF, i.e. in the middle of a sector. Currently, *pnum == 0 is
> returned when checking the status of this sector. In qemu-img, this
> triggers an assertion failure.
> 
> In order to fix this, one type for the sector that contains EOF must be
> found. Treating a hole as data is safe, so this patch rounds the
> calculated number of data sectors up, so that a partial sector at EOF is
> treated as a full data sector.
> 
> This fixes https://bugzilla.redhat.com/show_bug.cgi?id=1229394
> 
> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
> ---
>  block/raw-posix.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)

Reviewed-by: Eric Blake <eblake@redhat.com>

-- 
Eric Blake   eblake redhat com    +1-919-301-3266
Libvirt virtualization library http://libvirt.org


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 604 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Qemu-devel] [PATCH] raw-posix: Fix .bdrv_co_get_block_status() for unaligned image size
  2015-06-09  8:55 [Qemu-devel] [PATCH] raw-posix: Fix .bdrv_co_get_block_status() for unaligned image size Kevin Wolf
  2015-06-09  9:47 ` Wen Congyang
  2015-06-09 11:36 ` Eric Blake
@ 2015-06-09 14:14 ` Cole Robinson
  2015-06-09 15:25 ` [Qemu-devel] [Qemu-block] " Stefan Hajnoczi
  3 siblings, 0 replies; 7+ messages in thread
From: Cole Robinson @ 2015-06-09 14:14 UTC (permalink / raw)
  To: Kevin Wolf, qemu-block; +Cc: pbonzini, qemu-devel, stefanha, eharney

On 06/09/2015 04:55 AM, Kevin Wolf wrote:
> Image files with an unaligned image size have a final hole that starts
> at EOF, i.e. in the middle of a sector. Currently, *pnum == 0 is
> returned when checking the status of this sector. In qemu-img, this
> triggers an assertion failure.
> 
> In order to fix this, one type for the sector that contains EOF must be
> found. Treating a hole as data is safe, so this patch rounds the
> calculated number of data sectors up, so that a partial sector at EOF is
> treated as a full data sector.
> 
> This fixes https://bugzilla.redhat.com/show_bug.cgi?id=1229394
> 
> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
> ---
>  block/raw-posix.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/block/raw-posix.c b/block/raw-posix.c
> index 2990e95..44ade8c 100644
> --- a/block/raw-posix.c
> +++ b/block/raw-posix.c
> @@ -1848,8 +1848,9 @@ static int64_t coroutine_fn raw_co_get_block_status(BlockDriverState *bs,
>          *pnum = nb_sectors;
>          ret = BDRV_BLOCK_DATA;
>      } else if (data == start) {
> -        /* On a data extent, compute sectors to the end of the extent.  */
> -        *pnum = MIN(nb_sectors, (hole - start) / BDRV_SECTOR_SIZE);
> +        /* On a data extent, compute sectors to the end of the extent,
> +         * possibly including a partial sector at EOF. */
> +        *pnum = MIN(nb_sectors, DIV_ROUND_UP(hole - start, BDRV_SECTOR_SIZE));
>          ret = BDRV_BLOCK_DATA;
>      } else {
>          /* On a hole, compute sectors to the beginning of the next extent.  */
> 

Fixes the testcase from the bug for me:

Tested-by: Cole Robinson <crobinso@redhat.com>

- Cole

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Qemu-devel] [Qemu-block] [PATCH] raw-posix: Fix .bdrv_co_get_block_status() for unaligned image size
  2015-06-09  8:55 [Qemu-devel] [PATCH] raw-posix: Fix .bdrv_co_get_block_status() for unaligned image size Kevin Wolf
                   ` (2 preceding siblings ...)
  2015-06-09 14:14 ` Cole Robinson
@ 2015-06-09 15:25 ` Stefan Hajnoczi
  3 siblings, 0 replies; 7+ messages in thread
From: Stefan Hajnoczi @ 2015-06-09 15:25 UTC (permalink / raw)
  To: Kevin Wolf; +Cc: qemu-block, qemu-devel, eharney, stefanha, crobinso, pbonzini

[-- Attachment #1: Type: text/plain, Size: 873 bytes --]

On Tue, Jun 09, 2015 at 10:55:08AM +0200, Kevin Wolf wrote:
> Image files with an unaligned image size have a final hole that starts
> at EOF, i.e. in the middle of a sector. Currently, *pnum == 0 is
> returned when checking the status of this sector. In qemu-img, this
> triggers an assertion failure.
> 
> In order to fix this, one type for the sector that contains EOF must be
> found. Treating a hole as data is safe, so this patch rounds the
> calculated number of data sectors up, so that a partial sector at EOF is
> treated as a full data sector.
> 
> This fixes https://bugzilla.redhat.com/show_bug.cgi?id=1229394
> 
> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
> ---
>  block/raw-posix.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)

Thanks, applied to my block tree:
https://github.com/stefanha/qemu/commits/block

Stefan

[-- Attachment #2: Type: application/pgp-signature, Size: 473 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2015-06-09 15:25 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-09  8:55 [Qemu-devel] [PATCH] raw-posix: Fix .bdrv_co_get_block_status() for unaligned image size Kevin Wolf
2015-06-09  9:47 ` Wen Congyang
2015-06-09  9:49   ` Kevin Wolf
2015-06-09 10:11     ` Wen Congyang
2015-06-09 11:36 ` Eric Blake
2015-06-09 14:14 ` Cole Robinson
2015-06-09 15:25 ` [Qemu-devel] [Qemu-block] " Stefan Hajnoczi

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).