qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] should we try to stop using variable length arrays?
@ 2019-02-07 19:30 Peter Maydell
  2019-02-07 19:39 ` Eric Blake
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Peter Maydell @ 2019-02-07 19:30 UTC (permalink / raw)
  To: QEMU Developers

Currently QEMU has 9 uses of variable length arrays
(found using -Wvla):

hw/block/dataplane/virtio-blk.c:62:25: warning: variable length array
used [-Wvla]
    unsigned long bitmap[BITS_TO_LONGS(nvqs)];
                        ^
hw/i386/multiboot.c:364:18: warning: variable length array used [-Wvla]
    char kcmdline[strlen(kernel_filename) + strlen(kernel_cmdline) + 2];
                 ^
hw/i386/xen/xen-hvm.c:618:25: warning: variable length array used [-Wvla]
    unsigned long bitmap[DIV_ROUND_UP(npages, width)];
                        ^
hw/intc/xics.c:604:18: warning: variable length array used [-Wvla]
    uint8_t flags[ics->nr_irqs];
                 ^
hw/net/fsl_etsec/rings.c:383:18: warning: variable length array used [-Wvla]
    uint8_t  padd[etsec->rx_padding];
                 ^
hw/ppc/pnv.c:130:26: warning: variable length array used [-Wvla]
    uint32_t servers_prop[smt_threads];
                         ^
hw/ppc/spapr.c:162:26: warning: variable length array used [-Wvla]
    uint32_t servers_prop[smt_threads];
                         ^
hw/ppc/spapr.c:163:27: warning: variable length array used [-Wvla]
    uint32_t gservers_prop[smt_threads * 2];
                          ^
linux-user/syscall.c:3478:23: warning: variable length array used [-Wvla]
    struct sembuf sops[nsops];
                      ^

Should we be looking to get rid of these and turn on the -Wvla
warning? I know the Linux kernel has recently decided to do this
(some rationale at the start of https://lwn.net/Articles/749064/).
Now that doesn't necessarily apply to us as a userspace program,
but on the other hand if any of these were allowing the guest to
determine the size of an on-stack array that would not be great.
(The linux-user one is bogus in that way, though not a security issue
as the guest code there has full control anyway.)

Opinions? I admit that to some extent this is just my sense of
tidiness thinking that if we only have a handful of uses of
something we should squash that down to zero :-)

thanks
-- PMM

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

end of thread, other threads:[~2019-02-11 11:06 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-07 19:30 [Qemu-devel] should we try to stop using variable length arrays? Peter Maydell
2019-02-07 19:39 ` Eric Blake
2019-02-07 20:28 ` Eric Blake
2019-02-07 21:56 ` Philippe Mathieu-Daudé
2019-02-11  3:26 ` Stefan Hajnoczi
2019-02-11 10:58 ` Daniel P. Berrangé

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