[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH for 2.10 v2 19/20] spapr_vio: fix overflow of qd
From: |
David Gibson |
Subject: |
Re: [Qemu-devel] [PATCH for 2.10 v2 19/20] spapr_vio: fix overflow of qdevs in spapr_dt_vdevice() |
Date: |
Thu, 27 Jul 2017 13:43:04 +1000 |
User-agent: |
Mutt/1.8.3 (2017-05-23) |
On Wed, Jul 26, 2017 at 11:42:23PM -0300, Philippe Mathieu-Daudé wrote:
> sizeof(ptr) was used instead of sizeof(struct)...
>
> also use g_malloc_n() which take care of possible type overflow.
>
> hw/ppc/spapr_vio.c:641:22: warning: The code calls sizeof() on a pointer
> type. This can produce an unexpected result
> qdevs = g_malloc(sizeof(qdev) * num);
> ^ ~~~~~~
> hw/ppc/spapr_vio.c:648:23: warning: The code calls sizeof() on a pointer
> type. This can produce an unexpected result
> qsort(qdevs, num, sizeof(qdev), compare_reg);
> ^ ~~~~~~
>
> Reported-by: Clang Static Analyzer
> Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
Nack.
Have a closer look, what's going in the array really is pointers, not
structures. This is a false warning from clang, we need to find a
different way to suppress it.
> ---
> hw/ppc/spapr_vio.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/hw/ppc/spapr_vio.c b/hw/ppc/spapr_vio.c
> index ea3bc8bd9e..9991b44c9f 100644
> --- a/hw/ppc/spapr_vio.c
> +++ b/hw/ppc/spapr_vio.c
> @@ -638,14 +638,14 @@ void spapr_dt_vdevice(VIOsPAPRBus *bus, void *fdt)
> }
>
> /* Copy out into an array of pointers */
> - qdevs = g_malloc(sizeof(qdev) * num);
> + qdevs = g_malloc_n(num, sizeof(*qdev));
> num = 0;
> QTAILQ_FOREACH(kid, &bus->bus.children, sibling) {
> qdevs[num++] = kid->child;
> }
>
> /* Sort the array */
> - qsort(qdevs, num, sizeof(qdev), compare_reg);
> + qsort(qdevs, num, sizeof(*qdev), compare_reg);
>
> /* Hack alert. Give the devices to libfdt in reverse order, we happen
> * to know that will mean they are in forward order in the tree. */
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
signature.asc
Description: PGP signature
- [Qemu-devel] [PATCH for 2.10 v2 14/20] syscall: check inotify() and eventfd() return value, (continued)
- [Qemu-devel] [PATCH for 2.10 v2 14/20] syscall: check inotify() and eventfd() return value, Philippe Mathieu-Daudé, 2017/07/26
- [Qemu-devel] [PATCH for 2.10 v2 15/20] thunk: assert nb_fields is valid, Philippe Mathieu-Daudé, 2017/07/26
- [Qemu-devel] [PATCH for 2.10 v2 17/20] bt-sdp: fix memory leak in sdp_service_record_build(), Philippe Mathieu-Daudé, 2017/07/26
- [Qemu-devel] [PATCH for 2.10 v2 18/20] 9pfs: avoid sign conversion error simplifying the code, Philippe Mathieu-Daudé, 2017/07/26
- [Qemu-devel] [PATCH for 2.10 v2 19/20] spapr_vio: fix overflow of qdevs in spapr_dt_vdevice(), Philippe Mathieu-Daudé, 2017/07/26
- Re: [Qemu-devel] [PATCH for 2.10 v2 19/20] spapr_vio: fix overflow of qdevs in spapr_dt_vdevice(),
David Gibson <=
- [Qemu-devel] [PATCH for 2.10 v2 20/20] i2c/exynos4210: fix write to I2CADD register, bit 0 is not mapped, Philippe Mathieu-Daudé, 2017/07/26
- Re: [Qemu-devel] [PATCH for 2.10 v2 00/20] fix bugs reported by Clang Static Analyzer, Michael Tokarev, 2017/07/28