* [Qemu-devel] [PATCH] spapr: ensure core_slot isn't NULL in spapr_core_unplug()
@ 2017-05-18 13:58 Greg Kurz
2017-05-18 14:59 ` Igor Mammedov
2017-05-19 1:21 ` David Gibson
0 siblings, 2 replies; 3+ messages in thread
From: Greg Kurz @ 2017-05-18 13:58 UTC (permalink / raw)
To: qemu-devel; +Cc: qemu-ppc, David Gibson
If we go that far on the path of hot-removing a core and we find out that
the core-id is invalid, then we have a serious bug.
Let's make it explicit with an assert() instead of dereferencing a NULL
pointer.
This fixes Coverity issue CID 1375404.
Signed-off-by: Greg Kurz <groug@kaod.org>
---
hw/ppc/spapr.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
index 0980d733cd7a..1c5b814fc0bf 100644
--- a/hw/ppc/spapr.c
+++ b/hw/ppc/spapr.c
@@ -2715,6 +2715,7 @@ static void spapr_core_unplug(HotplugHandler *hotplug_dev, DeviceState *dev,
CPUCore *cc = CPU_CORE(dev);
CPUArchId *core_slot = spapr_find_cpu_slot(ms, cc->core_id, NULL);
+ assert(core_slot);
core_slot->cpu = NULL;
object_unparent(OBJECT(dev));
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] spapr: ensure core_slot isn't NULL in spapr_core_unplug()
2017-05-18 13:58 [Qemu-devel] [PATCH] spapr: ensure core_slot isn't NULL in spapr_core_unplug() Greg Kurz
@ 2017-05-18 14:59 ` Igor Mammedov
2017-05-19 1:21 ` David Gibson
1 sibling, 0 replies; 3+ messages in thread
From: Igor Mammedov @ 2017-05-18 14:59 UTC (permalink / raw)
To: Greg Kurz; +Cc: qemu-devel, qemu-ppc, David Gibson
On Thu, 18 May 2017 15:58:31 +0200
Greg Kurz <groug@kaod.org> wrote:
> If we go that far on the path of hot-removing a core and we find out that
> the core-id is invalid, then we have a serious bug.
>
> Let's make it explicit with an assert() instead of dereferencing a NULL
> pointer.
>
> This fixes Coverity issue CID 1375404.
>
> Signed-off-by: Greg Kurz <groug@kaod.org>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
> ---
> hw/ppc/spapr.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
> index 0980d733cd7a..1c5b814fc0bf 100644
> --- a/hw/ppc/spapr.c
> +++ b/hw/ppc/spapr.c
> @@ -2715,6 +2715,7 @@ static void spapr_core_unplug(HotplugHandler *hotplug_dev, DeviceState *dev,
> CPUCore *cc = CPU_CORE(dev);
> CPUArchId *core_slot = spapr_find_cpu_slot(ms, cc->core_id, NULL);
>
> + assert(core_slot);
> core_slot->cpu = NULL;
> object_unparent(OBJECT(dev));
> }
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] spapr: ensure core_slot isn't NULL in spapr_core_unplug()
2017-05-18 13:58 [Qemu-devel] [PATCH] spapr: ensure core_slot isn't NULL in spapr_core_unplug() Greg Kurz
2017-05-18 14:59 ` Igor Mammedov
@ 2017-05-19 1:21 ` David Gibson
1 sibling, 0 replies; 3+ messages in thread
From: David Gibson @ 2017-05-19 1:21 UTC (permalink / raw)
To: Greg Kurz; +Cc: qemu-devel, qemu-ppc
[-- Attachment #1: Type: text/plain, Size: 1141 bytes --]
On Thu, May 18, 2017 at 03:58:31PM +0200, Greg Kurz wrote:
> If we go that far on the path of hot-removing a core and we find out that
> the core-id is invalid, then we have a serious bug.
>
> Let's make it explicit with an assert() instead of dereferencing a NULL
> pointer.
>
> This fixes Coverity issue CID 1375404.
>
> Signed-off-by: Greg Kurz <groug@kaod.org>
Merged to ppc-for-2.10.
> ---
> hw/ppc/spapr.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
> index 0980d733cd7a..1c5b814fc0bf 100644
> --- a/hw/ppc/spapr.c
> +++ b/hw/ppc/spapr.c
> @@ -2715,6 +2715,7 @@ static void spapr_core_unplug(HotplugHandler *hotplug_dev, DeviceState *dev,
> CPUCore *cc = CPU_CORE(dev);
> CPUArchId *core_slot = spapr_find_cpu_slot(ms, cc->core_id, NULL);
>
> + assert(core_slot);
> core_slot->cpu = NULL;
> object_unparent(OBJECT(dev));
> }
>
--
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
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-05-19 2:03 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-18 13:58 [Qemu-devel] [PATCH] spapr: ensure core_slot isn't NULL in spapr_core_unplug() Greg Kurz
2017-05-18 14:59 ` Igor Mammedov
2017-05-19 1:21 ` David Gibson
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).