qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] qapi-types.py: Fix enum struct sizes on i686
@ 2013-08-31 22:36 Cole Robinson
  2013-09-01  2:07 ` Eric Blake
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Cole Robinson @ 2013-08-31 22:36 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-stable, Cole Robinson, Michael Roth, Luiz Capitulino

Unlike other list types, enum wasn't adding any padding, which caused
a mismatch between the generated struct size and GenericList struct
size. More details in a678e26cbe89f7a27cbce794c2c2784571ee9d21

This crashed qemu if calling qmp query-tpm-types for example, which
upsets libvirt capabilities probing. Reproducer on i686:

(sleep 5; printf '{"execute":"qmp_capabilities"}\n{"execute":"query-tpm-types"}\n') | ./i386-softmmu/qemu-system-i386 -S -nodefaults -nographic -M none -qmp stdio

https://bugs.launchpad.net/qemu/+bug/1219207

Cc: qemu-stable@nongnu.org
Signed-off-by: Cole Robinson <crobinso@redhat.com>
---
 scripts/qapi-types.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/scripts/qapi-types.py b/scripts/qapi-types.py
index 5ee46ea..5d31b06 100644
--- a/scripts/qapi-types.py
+++ b/scripts/qapi-types.py
@@ -51,7 +51,10 @@ def generate_fwd_enum_struct(name, members):
     return mcgen('''
 typedef struct %(name)sList
 {
-    %(name)s value;
+    union {
+        %(name)s value;
+        uint64_t padding;
+    };
     struct %(name)sList *next;
 } %(name)sList;
 ''',
-- 
1.8.3.1

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

* Re: [Qemu-devel] [PATCH] qapi-types.py: Fix enum struct sizes on i686
  2013-08-31 22:36 [Qemu-devel] [PATCH] qapi-types.py: Fix enum struct sizes on i686 Cole Robinson
@ 2013-09-01  2:07 ` Eric Blake
  2013-09-02  3:49   ` [Qemu-devel] [Qemu-stable] " Doug Goldstein
  2013-09-02 11:53 ` [Qemu-devel] " Richard W.M. Jones
  2013-09-09 18:02 ` Luiz Capitulino
  2 siblings, 1 reply; 5+ messages in thread
From: Eric Blake @ 2013-09-01  2:07 UTC (permalink / raw)
  To: Cole Robinson; +Cc: Michael Roth, Luiz Capitulino, qemu-devel, qemu-stable

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

On 08/31/2013 04:36 PM, Cole Robinson wrote:
> Unlike other list types, enum wasn't adding any padding, which caused
> a mismatch between the generated struct size and GenericList struct
> size. More details in a678e26cbe89f7a27cbce794c2c2784571ee9d21
> 
> This crashed qemu if calling qmp query-tpm-types for example, which
> upsets libvirt capabilities probing. Reproducer on i686:
> 
> (sleep 5; printf '{"execute":"qmp_capabilities"}\n{"execute":"query-tpm-types"}\n') | ./i386-softmmu/qemu-system-i386 -S -nodefaults -nographic -M none -qmp stdio
> 
> https://bugs.launchpad.net/qemu/+bug/1219207
> 
> Cc: qemu-stable@nongnu.org
> Signed-off-by: Cole Robinson <crobinso@redhat.com>
> ---
>  scripts/qapi-types.py | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 

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

> -    %(name)s value;
> +    union {
> +        %(name)s value;
> +        uint64_t padding;
> +    };

Am I right that anonymous unions are only a C11 feature (not C99)?  But
you are just copying and pasting from the other uses in this file, so
it's not a problem.

-- 
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: 621 bytes --]

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

* Re: [Qemu-devel] [Qemu-stable] [PATCH] qapi-types.py: Fix enum struct sizes on i686
  2013-09-01  2:07 ` Eric Blake
@ 2013-09-02  3:49   ` Doug Goldstein
  0 siblings, 0 replies; 5+ messages in thread
From: Doug Goldstein @ 2013-09-02  3:49 UTC (permalink / raw)
  To: Eric Blake; +Cc: qemu-stable, Luiz Capitulino, qemu-devel, Cole Robinson

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

On Sat, Aug 31, 2013 at 9:07 PM, Eric Blake <eblake@redhat.com> wrote:

> On 08/31/2013 04:36 PM, Cole Robinson wrote:
> > Unlike other list types, enum wasn't adding any padding, which caused
> > a mismatch between the generated struct size and GenericList struct
> > size. More details in a678e26cbe89f7a27cbce794c2c2784571ee9d21
> >
> > This crashed qemu if calling qmp query-tpm-types for example, which
> > upsets libvirt capabilities probing. Reproducer on i686:
> >
> > (sleep 5; printf
> '{"execute":"qmp_capabilities"}\n{"execute":"query-tpm-types"}\n') |
> ./i386-softmmu/qemu-system-i386 -S -nodefaults -nographic -M none -qmp stdio
> >
> > https://bugs.launchpad.net/qemu/+bug/1219207
> >
> > Cc: qemu-stable@nongnu.org
> > Signed-off-by: Cole Robinson <crobinso@redhat.com>
> > ---
> >  scripts/qapi-types.py | 5 ++++-
> >  1 file changed, 4 insertions(+), 1 deletion(-)
> >
>
> Reviewed-by: Eric Blake <eblake@redhat.com>
>
> > -    %(name)s value;
> > +    union {
> > +        %(name)s value;
> > +        uint64_t padding;
> > +    };
>
> Am I right that anonymous unions are only a C11 feature (not C99)?  But
> you are just copying and pasting from the other uses in this file, so
> it's not a problem.
>
>
Yes, they're a C11-ism. But they appear in gnu99, not sure as to what GCC
added them but I know GCC 3.2 didn't have them.

-- 
Doug Goldstein

[-- Attachment #2: Type: text/html, Size: 2253 bytes --]

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

* Re: [Qemu-devel] [PATCH] qapi-types.py: Fix enum struct sizes on i686
  2013-08-31 22:36 [Qemu-devel] [PATCH] qapi-types.py: Fix enum struct sizes on i686 Cole Robinson
  2013-09-01  2:07 ` Eric Blake
@ 2013-09-02 11:53 ` Richard W.M. Jones
  2013-09-09 18:02 ` Luiz Capitulino
  2 siblings, 0 replies; 5+ messages in thread
From: Richard W.M. Jones @ 2013-09-02 11:53 UTC (permalink / raw)
  To: Cole Robinson; +Cc: Michael Roth, Luiz Capitulino, qemu-devel, qemu-stable

On Sat, Aug 31, 2013 at 06:36:17PM -0400, Cole Robinson wrote:
> Unlike other list types, enum wasn't adding any padding, which caused
> a mismatch between the generated struct size and GenericList struct
> size. More details in a678e26cbe89f7a27cbce794c2c2784571ee9d21
> 
> This crashed qemu if calling qmp query-tpm-types for example, which
> upsets libvirt capabilities probing. Reproducer on i686:
> 
> (sleep 5; printf '{"execute":"qmp_capabilities"}\n{"execute":"query-tpm-types"}\n') | ./i386-softmmu/qemu-system-i386 -S -nodefaults -nographic -M none -qmp stdio
> 
> https://bugs.launchpad.net/qemu/+bug/1219207
> 
> Cc: qemu-stable@nongnu.org
> Signed-off-by: Cole Robinson <crobinso@redhat.com>

Works for me, so you can add:

Tested-by: Richard W.M. Jones <rjones@redhat.com>

Rich.

-- 
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Fedora Windows cross-compiler. Compile Windows programs, test, and
build Windows installers. Over 100 libraries supported.
http://fedoraproject.org/wiki/MinGW

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

* Re: [Qemu-devel] [PATCH] qapi-types.py: Fix enum struct sizes on i686
  2013-08-31 22:36 [Qemu-devel] [PATCH] qapi-types.py: Fix enum struct sizes on i686 Cole Robinson
  2013-09-01  2:07 ` Eric Blake
  2013-09-02 11:53 ` [Qemu-devel] " Richard W.M. Jones
@ 2013-09-09 18:02 ` Luiz Capitulino
  2 siblings, 0 replies; 5+ messages in thread
From: Luiz Capitulino @ 2013-09-09 18:02 UTC (permalink / raw)
  To: Cole Robinson; +Cc: qemu-stable, qemu-devel, Michael Roth

On Sat, 31 Aug 2013 18:36:17 -0400
Cole Robinson <crobinso@redhat.com> wrote:

> Unlike other list types, enum wasn't adding any padding, which caused
> a mismatch between the generated struct size and GenericList struct
> size. More details in a678e26cbe89f7a27cbce794c2c2784571ee9d21
> 
> This crashed qemu if calling qmp query-tpm-types for example, which
> upsets libvirt capabilities probing. Reproducer on i686:
> 
> (sleep 5; printf '{"execute":"qmp_capabilities"}\n{"execute":"query-tpm-types"}\n') | ./i386-softmmu/qemu-system-i386 -S -nodefaults -nographic -M none -qmp stdio
> 
> https://bugs.launchpad.net/qemu/+bug/1219207
> 
> Cc: qemu-stable@nongnu.org
> Signed-off-by: Cole Robinson <crobinso@redhat.com>

Applied to the qmp branch, thanks.

> ---
>  scripts/qapi-types.py | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/scripts/qapi-types.py b/scripts/qapi-types.py
> index 5ee46ea..5d31b06 100644
> --- a/scripts/qapi-types.py
> +++ b/scripts/qapi-types.py
> @@ -51,7 +51,10 @@ def generate_fwd_enum_struct(name, members):
>      return mcgen('''
>  typedef struct %(name)sList
>  {
> -    %(name)s value;
> +    union {
> +        %(name)s value;
> +        uint64_t padding;
> +    };
>      struct %(name)sList *next;
>  } %(name)sList;
>  ''',

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

end of thread, other threads:[~2013-09-09 18:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-31 22:36 [Qemu-devel] [PATCH] qapi-types.py: Fix enum struct sizes on i686 Cole Robinson
2013-09-01  2:07 ` Eric Blake
2013-09-02  3:49   ` [Qemu-devel] [Qemu-stable] " Doug Goldstein
2013-09-02 11:53 ` [Qemu-devel] " Richard W.M. Jones
2013-09-09 18:02 ` Luiz Capitulino

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