qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH for-2.3 0/6] vmdk: A few small fixes
@ 2014-12-02  7:39 Fam Zheng
  2014-12-02  7:39 ` [Qemu-devel] [PATCH for-2.3 1/6] vmdk: Use g_random_int to generate CID Fam Zheng
                   ` (6 more replies)
  0 siblings, 7 replies; 11+ messages in thread
From: Fam Zheng @ 2014-12-02  7:39 UTC (permalink / raw)
  To: qemu-devel; +Cc: Kevin Wolf, Markus Armbruster, Stefan Hajnoczi

Here are some improvements on miscellaneous things such as CID generation,
comments, input validation.

Fam Zheng (6):
  vmdk: Use g_random_int to generate CID
  vmdk: Fix comment to match code of extent lines
  vmdk: Clean up descriptor file reading
  vmdk: Check descriptor file length when reading it
  vmdk: Remove unnecessary initialization
  vmdk: Set errp on failures in vmdk_open_vmdk4

 block/vmdk.c | 25 ++++++++++++++++++-------
 1 file changed, 18 insertions(+), 7 deletions(-)

-- 
1.9.3

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

* [Qemu-devel] [PATCH for-2.3 1/6] vmdk: Use g_random_int to generate CID
  2014-12-02  7:39 [Qemu-devel] [PATCH for-2.3 0/6] vmdk: A few small fixes Fam Zheng
@ 2014-12-02  7:39 ` Fam Zheng
  2014-12-02  7:39 ` [Qemu-devel] [PATCH for-2.3 2/6] vmdk: Fix comment to match code of extent lines Fam Zheng
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 11+ messages in thread
From: Fam Zheng @ 2014-12-02  7:39 UTC (permalink / raw)
  To: qemu-devel; +Cc: Kevin Wolf, Markus Armbruster, Stefan Hajnoczi

This replaces two "time(NULL)" invocations with "g_random_int()".
According to VMDK spec, CID "is a random 32‐bit value updated the first
time the content of the virtual disk is modified after the virtual disk
is opened". Using "seconds since epoch" is just a "lame way" to generate
it, and not completely safe because of the low precision.

Suggested-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Fam Zheng <famz@redhat.com>
---
 block/vmdk.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/block/vmdk.c b/block/vmdk.c
index 2cbfd3e..ebb4b70 100644
--- a/block/vmdk.c
+++ b/block/vmdk.c
@@ -28,6 +28,7 @@
 #include "qemu/module.h"
 #include "migration/migration.h"
 #include <zlib.h>
+#include <glib.h>
 
 #define VMDK3_MAGIC (('C' << 24) | ('O' << 16) | ('W' << 8) | 'D')
 #define VMDK4_MAGIC (('K' << 24) | ('D' << 16) | ('M' << 8) | 'V')
@@ -1538,7 +1539,7 @@ static int vmdk_write(BlockDriverState *bs, int64_t sector_num,
         /* update CID on the first write every time the virtual disk is
          * opened */
         if (!s->cid_updated) {
-            ret = vmdk_write_cid(bs, time(NULL));
+            ret = vmdk_write_cid(bs, g_random_int());
             if (ret < 0) {
                 return ret;
             }
@@ -1922,7 +1923,7 @@ static int vmdk_create(const char *filename, QemuOpts *opts, Error **errp)
     }
     /* generate descriptor file */
     desc = g_strdup_printf(desc_template,
-                           (uint32_t)time(NULL),
+                           g_random_int(),
                            parent_cid,
                            fmt,
                            parent_desc_line,
-- 
1.9.3

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

* [Qemu-devel] [PATCH for-2.3 2/6] vmdk: Fix comment to match code of extent lines
  2014-12-02  7:39 [Qemu-devel] [PATCH for-2.3 0/6] vmdk: A few small fixes Fam Zheng
  2014-12-02  7:39 ` [Qemu-devel] [PATCH for-2.3 1/6] vmdk: Use g_random_int to generate CID Fam Zheng
@ 2014-12-02  7:39 ` Fam Zheng
  2014-12-02  7:39 ` [Qemu-devel] [PATCH for-2.3 3/6] vmdk: Clean up descriptor file reading Fam Zheng
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 11+ messages in thread
From: Fam Zheng @ 2014-12-02  7:39 UTC (permalink / raw)
  To: qemu-devel; +Cc: Kevin Wolf, Markus Armbruster, Stefan Hajnoczi

commit 04d542c8b (vmdk: support vmfs files) added support of VMFS extent
type but the comment above the changed code is left out. Update the
comment so they are consistent.

Signed-off-by: Fam Zheng <famz@redhat.com>
---
 block/vmdk.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/block/vmdk.c b/block/vmdk.c
index ebb4b70..28d22db 100644
--- a/block/vmdk.c
+++ b/block/vmdk.c
@@ -785,10 +785,11 @@ static int vmdk_parse_extents(const char *desc, BlockDriverState *bs,
     VmdkExtent *extent;
 
     while (*p) {
-        /* parse extent line:
+        /* parse extent line in one of below formats:
+         *
          * RW [size in sectors] FLAT "file-name.vmdk" OFFSET
-         * or
          * RW [size in sectors] SPARSE "file-name.vmdk"
+         * RW [size in sectors] VMFS "file-name.vmdk"
          */
         flat_offset = -1;
         ret = sscanf(p, "%10s %" SCNd64 " %10s \"%511[^\n\r\"]\" %" SCNd64,
-- 
1.9.3

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

* [Qemu-devel] [PATCH for-2.3 3/6] vmdk: Clean up descriptor file reading
  2014-12-02  7:39 [Qemu-devel] [PATCH for-2.3 0/6] vmdk: A few small fixes Fam Zheng
  2014-12-02  7:39 ` [Qemu-devel] [PATCH for-2.3 1/6] vmdk: Use g_random_int to generate CID Fam Zheng
  2014-12-02  7:39 ` [Qemu-devel] [PATCH for-2.3 2/6] vmdk: Fix comment to match code of extent lines Fam Zheng
@ 2014-12-02  7:39 ` Fam Zheng
  2014-12-02 17:10   ` Don Koch
  2014-12-02  7:39 ` [Qemu-devel] [PATCH for-2.3 4/6] vmdk: Check descriptor file length when reading it Fam Zheng
                   ` (3 subsequent siblings)
  6 siblings, 1 reply; 11+ messages in thread
From: Fam Zheng @ 2014-12-02  7:39 UTC (permalink / raw)
  To: qemu-devel; +Cc: Kevin Wolf, Markus Armbruster, Stefan Hajnoczi

Zeroing a buffer that will be filled right after is not necessary, and
allocating a power of two + 1 is naughty.

Suggested-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Fam Zheng <famz@redhat.com>
---
 block/vmdk.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/block/vmdk.c b/block/vmdk.c
index 28d22db..0c5769c 100644
--- a/block/vmdk.c
+++ b/block/vmdk.c
@@ -558,14 +558,15 @@ static char *vmdk_read_desc(BlockDriverState *file, uint64_t desc_offset,
     }
 
     size = MIN(size, 1 << 20);  /* avoid unbounded allocation */
-    buf = g_malloc0(size + 1);
+    buf = g_malloc(size);
 
-    ret = bdrv_pread(file, desc_offset, buf, size);
+    ret = bdrv_pread(file, desc_offset, buf, size - 1);
     if (ret < 0) {
         error_setg_errno(errp, -ret, "Could not read from file");
         g_free(buf);
         return NULL;
     }
+    buf[ret - 1] = 0;
 
     return buf;
 }
-- 
1.9.3

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

* [Qemu-devel] [PATCH for-2.3 4/6] vmdk: Check descriptor file length when reading it
  2014-12-02  7:39 [Qemu-devel] [PATCH for-2.3 0/6] vmdk: A few small fixes Fam Zheng
                   ` (2 preceding siblings ...)
  2014-12-02  7:39 ` [Qemu-devel] [PATCH for-2.3 3/6] vmdk: Clean up descriptor file reading Fam Zheng
@ 2014-12-02  7:39 ` Fam Zheng
  2014-12-02  7:39 ` [Qemu-devel] [PATCH for-2.3 5/6] vmdk: Remove unnecessary initialization Fam Zheng
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 11+ messages in thread
From: Fam Zheng @ 2014-12-02  7:39 UTC (permalink / raw)
  To: qemu-devel; +Cc: Kevin Wolf, Markus Armbruster, Stefan Hajnoczi

Since a too small file cannot be a valid VMDK image, and also since the
buffer's first 4 bytes will be unconditionally examined by
vmdk_open_sparse, let's error out the small file case to be clear.

Signed-off-by: Fam Zheng <famz@redhat.com>
---
 block/vmdk.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/block/vmdk.c b/block/vmdk.c
index 0c5769c..f7c7979 100644
--- a/block/vmdk.c
+++ b/block/vmdk.c
@@ -557,6 +557,11 @@ static char *vmdk_read_desc(BlockDriverState *file, uint64_t desc_offset,
         return NULL;
     }
 
+    if (size < 4) {
+        error_setg_errno(errp, -size, "File is too small, not a valid image");
+        return NULL;
+    }
+
     size = MIN(size, 1 << 20);  /* avoid unbounded allocation */
     buf = g_malloc(size);
 
-- 
1.9.3

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

* [Qemu-devel] [PATCH for-2.3 5/6] vmdk: Remove unnecessary initialization
  2014-12-02  7:39 [Qemu-devel] [PATCH for-2.3 0/6] vmdk: A few small fixes Fam Zheng
                   ` (3 preceding siblings ...)
  2014-12-02  7:39 ` [Qemu-devel] [PATCH for-2.3 4/6] vmdk: Check descriptor file length when reading it Fam Zheng
@ 2014-12-02  7:39 ` Fam Zheng
  2014-12-02  7:39 ` [Qemu-devel] [PATCH for-2.3 6/6] vmdk: Set errp on failures in vmdk_open_vmdk4 Fam Zheng
  2014-12-02  8:28 ` [Qemu-devel] [PATCH for-2.3 0/6] vmdk: A few small fixes Markus Armbruster
  6 siblings, 0 replies; 11+ messages in thread
From: Fam Zheng @ 2014-12-02  7:39 UTC (permalink / raw)
  To: qemu-devel; +Cc: Kevin Wolf, Markus Armbruster, Stefan Hajnoczi

It will be assigned to the return value of vmdk_read_desc.

Suggested-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Fam Zheng <famz@redhat.com>
---
 block/vmdk.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/block/vmdk.c b/block/vmdk.c
index f7c7979..22f85c4 100644
--- a/block/vmdk.c
+++ b/block/vmdk.c
@@ -910,7 +910,7 @@ exit:
 static int vmdk_open(BlockDriverState *bs, QDict *options, int flags,
                      Error **errp)
 {
-    char *buf = NULL;
+    char *buf;
     int ret;
     BDRVVmdkState *s = bs->opaque;
     uint32_t magic;
-- 
1.9.3

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

* [Qemu-devel] [PATCH for-2.3 6/6] vmdk: Set errp on failures in vmdk_open_vmdk4
  2014-12-02  7:39 [Qemu-devel] [PATCH for-2.3 0/6] vmdk: A few small fixes Fam Zheng
                   ` (4 preceding siblings ...)
  2014-12-02  7:39 ` [Qemu-devel] [PATCH for-2.3 5/6] vmdk: Remove unnecessary initialization Fam Zheng
@ 2014-12-02  7:39 ` Fam Zheng
  2014-12-02  8:28 ` [Qemu-devel] [PATCH for-2.3 0/6] vmdk: A few small fixes Markus Armbruster
  6 siblings, 0 replies; 11+ messages in thread
From: Fam Zheng @ 2014-12-02  7:39 UTC (permalink / raw)
  To: qemu-devel; +Cc: Kevin Wolf, Markus Armbruster, Stefan Hajnoczi

Reported-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Fam Zheng <famz@redhat.com>
---
 block/vmdk.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/block/vmdk.c b/block/vmdk.c
index 22f85c4..dd97e25 100644
--- a/block/vmdk.c
+++ b/block/vmdk.c
@@ -642,6 +642,7 @@ static int vmdk_open_vmdk4(BlockDriverState *bs,
             bs->file->total_sectors * 512 - 1536,
             &footer, sizeof(footer));
         if (ret < 0) {
+            error_setg_errno(errp, -ret, "Failed to read footer");
             return ret;
         }
 
@@ -653,6 +654,7 @@ static int vmdk_open_vmdk4(BlockDriverState *bs,
             le32_to_cpu(footer.eos_marker.size) != 0  ||
             le32_to_cpu(footer.eos_marker.type) != MARKER_END_OF_STREAM)
         {
+            error_setg(errp, "Invalid footer");
             return -EINVAL;
         }
 
@@ -683,6 +685,7 @@ static int vmdk_open_vmdk4(BlockDriverState *bs,
     l1_entry_sectors = le32_to_cpu(header.num_gtes_per_gt)
                         * le64_to_cpu(header.granularity);
     if (l1_entry_sectors == 0) {
+        error_setg(errp, "L1 entry size is invalid");
         return -EINVAL;
     }
     l1_size = (le64_to_cpu(header.capacity) + l1_entry_sectors - 1)
-- 
1.9.3

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

* Re: [Qemu-devel] [PATCH for-2.3 0/6] vmdk: A few small fixes
  2014-12-02  7:39 [Qemu-devel] [PATCH for-2.3 0/6] vmdk: A few small fixes Fam Zheng
                   ` (5 preceding siblings ...)
  2014-12-02  7:39 ` [Qemu-devel] [PATCH for-2.3 6/6] vmdk: Set errp on failures in vmdk_open_vmdk4 Fam Zheng
@ 2014-12-02  8:28 ` Markus Armbruster
  2014-12-02 10:36   ` Kevin Wolf
  6 siblings, 1 reply; 11+ messages in thread
From: Markus Armbruster @ 2014-12-02  8:28 UTC (permalink / raw)
  To: Fam Zheng; +Cc: Kevin Wolf, qemu-devel, Stefan Hajnoczi

Fam Zheng <famz@redhat.com> writes:

> Here are some improvements on miscellaneous things such as CID generation,
> comments, input validation.
>
> Fam Zheng (6):
>   vmdk: Use g_random_int to generate CID
>   vmdk: Fix comment to match code of extent lines
>   vmdk: Clean up descriptor file reading
>   vmdk: Check descriptor file length when reading it
>   vmdk: Remove unnecessary initialization
>   vmdk: Set errp on failures in vmdk_open_vmdk4
>
>  block/vmdk.c | 25 ++++++++++++++++++-------
>  1 file changed, 18 insertions(+), 7 deletions(-)

The last one could be a candidate for stable.

Reviewed-by: Markus Armbruster <armbru@redhat.com>

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

* Re: [Qemu-devel] [PATCH for-2.3 0/6] vmdk: A few small fixes
  2014-12-02  8:28 ` [Qemu-devel] [PATCH for-2.3 0/6] vmdk: A few small fixes Markus Armbruster
@ 2014-12-02 10:36   ` Kevin Wolf
  0 siblings, 0 replies; 11+ messages in thread
From: Kevin Wolf @ 2014-12-02 10:36 UTC (permalink / raw)
  To: Markus Armbruster; +Cc: Fam Zheng, qemu-devel, Stefan Hajnoczi

Am 02.12.2014 um 09:28 hat Markus Armbruster geschrieben:
> Fam Zheng <famz@redhat.com> writes:
> 
> > Here are some improvements on miscellaneous things such as CID generation,
> > comments, input validation.
> >
> > Fam Zheng (6):
> >   vmdk: Use g_random_int to generate CID
> >   vmdk: Fix comment to match code of extent lines
> >   vmdk: Clean up descriptor file reading
> >   vmdk: Check descriptor file length when reading it
> >   vmdk: Remove unnecessary initialization
> >   vmdk: Set errp on failures in vmdk_open_vmdk4
> >
> >  block/vmdk.c | 25 ++++++++++++++++++-------
> >  1 file changed, 18 insertions(+), 7 deletions(-)
> 
> The last one could be a candidate for stable.
> 
> Reviewed-by: Markus Armbruster <armbru@redhat.com>

Thanks, applied to block-next.

Kevin

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

* Re: [Qemu-devel] [PATCH for-2.3 3/6] vmdk: Clean up descriptor file reading
  2014-12-02  7:39 ` [Qemu-devel] [PATCH for-2.3 3/6] vmdk: Clean up descriptor file reading Fam Zheng
@ 2014-12-02 17:10   ` Don Koch
  2014-12-03  1:38     ` Fam Zheng
  0 siblings, 1 reply; 11+ messages in thread
From: Don Koch @ 2014-12-02 17:10 UTC (permalink / raw)
  To: Fam Zheng; +Cc: Kevin Wolf, qemu-devel, Stefan Hajnoczi, Markus Armbruster

On Tue, 2 Dec 2014 15:39:14 +0800
Fam Zheng <famz@redhat.com> wrote:

> Zeroing a buffer that will be filled right after is not necessary, and
> allocating a power of two + 1 is naughty.
> 
> Suggested-by: Markus Armbruster <armbru@redhat.com>
> Signed-off-by: Fam Zheng <famz@redhat.com>
> ---
>  block/vmdk.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/block/vmdk.c b/block/vmdk.c
> index 28d22db..0c5769c 100644
> --- a/block/vmdk.c
> +++ b/block/vmdk.c
> @@ -558,14 +558,15 @@ static char *vmdk_read_desc(BlockDriverState *file, uint64_t desc_offset,
>      }
>  
>      size = MIN(size, 1 << 20);  /* avoid unbounded allocation */
> -    buf = g_malloc0(size + 1);
> +    buf = g_malloc(size);

For a file that is less than 1<<20 bytes, won't this throw away the last byte?
Maybe better is:
    size = MIN(size, (1 << 20) - 1);
    buf = g_malloc(size + 1);
Leave the bdrv_pread as it was and...

>  
> -    ret = bdrv_pread(file, desc_offset, buf, size);
> +    ret = bdrv_pread(file, desc_offset, buf, size - 1);
>      if (ret < 0) {
>          error_setg_errno(errp, -ret, "Could not read from file");
>          g_free(buf);
>          return NULL;
>      }
> +    buf[ret - 1] = 0;

...zero the last byte changes to:
    buf[ret] = 0;

>  
>      return buf;
>  }
> -- 
> 1.9.3

-d

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

* Re: [Qemu-devel] [PATCH for-2.3 3/6] vmdk: Clean up descriptor file reading
  2014-12-02 17:10   ` Don Koch
@ 2014-12-03  1:38     ` Fam Zheng
  0 siblings, 0 replies; 11+ messages in thread
From: Fam Zheng @ 2014-12-03  1:38 UTC (permalink / raw)
  To: Don Koch; +Cc: Kevin Wolf, qemu-devel, Stefan Hajnoczi, Markus Armbruster

On Tue, 12/02 12:10, Don Koch wrote:
> On Tue, 2 Dec 2014 15:39:14 +0800
> Fam Zheng <famz@redhat.com> wrote:
> 
> > Zeroing a buffer that will be filled right after is not necessary, and
> > allocating a power of two + 1 is naughty.
> > 
> > Suggested-by: Markus Armbruster <armbru@redhat.com>
> > Signed-off-by: Fam Zheng <famz@redhat.com>
> > ---
> >  block/vmdk.c | 5 +++--
> >  1 file changed, 3 insertions(+), 2 deletions(-)
> > 
> > diff --git a/block/vmdk.c b/block/vmdk.c
> > index 28d22db..0c5769c 100644
> > --- a/block/vmdk.c
> > +++ b/block/vmdk.c
> > @@ -558,14 +558,15 @@ static char *vmdk_read_desc(BlockDriverState *file, uint64_t desc_offset,
> >      }
> >  
> >      size = MIN(size, 1 << 20);  /* avoid unbounded allocation */
> > -    buf = g_malloc0(size + 1);
> > +    buf = g_malloc(size);
> 
> For a file that is less than 1<<20 bytes, won't this throw away the last byte?
> Maybe better is:
>     size = MIN(size, (1 << 20) - 1);
>     buf = g_malloc(size + 1);
> Leave the bdrv_pread as it was and...
> 
> >  
> > -    ret = bdrv_pread(file, desc_offset, buf, size);
> > +    ret = bdrv_pread(file, desc_offset, buf, size - 1);
> >      if (ret < 0) {
> >          error_setg_errno(errp, -ret, "Could not read from file");
> >          g_free(buf);
> >          return NULL;
> >      }
> > +    buf[ret - 1] = 0;
> 
> ...zero the last byte changes to:
>     buf[ret] = 0;

Yes. I'll respin this one. Thanks.

Fam

> 
> >  
> >      return buf;
> >  }
> > -- 
> > 1.9.3
> 
> -d

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

end of thread, other threads:[~2014-12-03  1:38 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-02  7:39 [Qemu-devel] [PATCH for-2.3 0/6] vmdk: A few small fixes Fam Zheng
2014-12-02  7:39 ` [Qemu-devel] [PATCH for-2.3 1/6] vmdk: Use g_random_int to generate CID Fam Zheng
2014-12-02  7:39 ` [Qemu-devel] [PATCH for-2.3 2/6] vmdk: Fix comment to match code of extent lines Fam Zheng
2014-12-02  7:39 ` [Qemu-devel] [PATCH for-2.3 3/6] vmdk: Clean up descriptor file reading Fam Zheng
2014-12-02 17:10   ` Don Koch
2014-12-03  1:38     ` Fam Zheng
2014-12-02  7:39 ` [Qemu-devel] [PATCH for-2.3 4/6] vmdk: Check descriptor file length when reading it Fam Zheng
2014-12-02  7:39 ` [Qemu-devel] [PATCH for-2.3 5/6] vmdk: Remove unnecessary initialization Fam Zheng
2014-12-02  7:39 ` [Qemu-devel] [PATCH for-2.3 6/6] vmdk: Set errp on failures in vmdk_open_vmdk4 Fam Zheng
2014-12-02  8:28 ` [Qemu-devel] [PATCH for-2.3 0/6] vmdk: A few small fixes Markus Armbruster
2014-12-02 10:36   ` Kevin Wolf

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