All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg Kurz <groug@kaod.org>
To: Laurent Vivier <lvivier@redhat.com>
Cc: Peter Maydell <peter.maydell@linaro.org>,
	Thomas Huth <thuth@redhat.com>,
	"Daniel P . Berrange" <berrange@redhat.com>,
	Cornelia Huck <cohuck@redhat.com>,
	qemu-devel@nongnu.org,
	"Dr . David Alan Gilbert" <dgilbert@redhat.com>,
	qemu-arm@nongnu.org, qemu-ppc@nongnu.org,
	David Gibson <david@gibson.dropbear.id.au>
Subject: Re: [Qemu-arm] [PATCH v3 1/3] hmp: fix "dump-quest-memory" segfault (ppc)
Date: Tue, 12 Sep 2017 16:48:32 +0200	[thread overview]
Message-ID: <20170912164832.35b68417@bahia.lan> (raw)
In-Reply-To: <20170912140149.7692-2-lvivier@redhat.com>

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

On Tue, 12 Sep 2017 16:01:47 +0200
Laurent Vivier <lvivier@redhat.com> wrote:

> Running QEMU with
>     qemu-system-ppc64 -M none -nographic -m 256
> and executing
>     dump-guest-memory /dev/null 0 8192
> results in segfault
> 
> Fix by checking if we have CPU, and exit with
> error if there is no CPU:
> 
>     (qemu) dump-guest-memory /dev/null
>     this feature or command is not currently supported
> 
> Signed-off-by: Laurent Vivier <lvivier@redhat.com>
> ---

Reviewed-by: Greg Kurz <groug@kaod.org>

>  target/ppc/arch_dump.c | 11 +++++++++--
>  1 file changed, 9 insertions(+), 2 deletions(-)
> 
> diff --git a/target/ppc/arch_dump.c b/target/ppc/arch_dump.c
> index 8e9397aa58..95b9ab6f29 100644
> --- a/target/ppc/arch_dump.c
> +++ b/target/ppc/arch_dump.c
> @@ -224,8 +224,15 @@ typedef struct NoteFuncDescStruct NoteFuncDesc;
>  int cpu_get_dump_info(ArchDumpInfo *info,
>                        const struct GuestPhysBlockList *guest_phys_blocks)
>  {
> -    PowerPCCPU *cpu = POWERPC_CPU(first_cpu);
> -    PowerPCCPUClass *pcc = POWERPC_CPU_GET_CLASS(cpu);
> +    PowerPCCPU *cpu;
> +    PowerPCCPUClass *pcc;
> +
> +    if (first_cpu == NULL) {
> +        return -1;
> +    }
> +
> +    cpu = POWERPC_CPU(first_cpu);
> +    pcc = POWERPC_CPU_GET_CLASS(cpu);
>  
>      info->d_machine = PPC_ELF_MACHINE;
>      info->d_class = ELFCLASS;


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: Greg Kurz <groug@kaod.org>
To: Laurent Vivier <lvivier@redhat.com>
Cc: qemu-devel@nongnu.org,
	"Daniel P . Berrange" <berrange@redhat.com>,
	Cornelia Huck <cohuck@redhat.com>,
	David Gibson <david@gibson.dropbear.id.au>,
	Thomas Huth <thuth@redhat.com>,
	qemu-arm@nongnu.org, qemu-ppc@nongnu.org,
	Peter Maydell <peter.maydell@linaro.org>,
	"Dr . David Alan Gilbert" <dgilbert@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v3 1/3] hmp: fix "dump-quest-memory" segfault (ppc)
Date: Tue, 12 Sep 2017 16:48:32 +0200	[thread overview]
Message-ID: <20170912164832.35b68417@bahia.lan> (raw)
In-Reply-To: <20170912140149.7692-2-lvivier@redhat.com>

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

On Tue, 12 Sep 2017 16:01:47 +0200
Laurent Vivier <lvivier@redhat.com> wrote:

> Running QEMU with
>     qemu-system-ppc64 -M none -nographic -m 256
> and executing
>     dump-guest-memory /dev/null 0 8192
> results in segfault
> 
> Fix by checking if we have CPU, and exit with
> error if there is no CPU:
> 
>     (qemu) dump-guest-memory /dev/null
>     this feature or command is not currently supported
> 
> Signed-off-by: Laurent Vivier <lvivier@redhat.com>
> ---

Reviewed-by: Greg Kurz <groug@kaod.org>

>  target/ppc/arch_dump.c | 11 +++++++++--
>  1 file changed, 9 insertions(+), 2 deletions(-)
> 
> diff --git a/target/ppc/arch_dump.c b/target/ppc/arch_dump.c
> index 8e9397aa58..95b9ab6f29 100644
> --- a/target/ppc/arch_dump.c
> +++ b/target/ppc/arch_dump.c
> @@ -224,8 +224,15 @@ typedef struct NoteFuncDescStruct NoteFuncDesc;
>  int cpu_get_dump_info(ArchDumpInfo *info,
>                        const struct GuestPhysBlockList *guest_phys_blocks)
>  {
> -    PowerPCCPU *cpu = POWERPC_CPU(first_cpu);
> -    PowerPCCPUClass *pcc = POWERPC_CPU_GET_CLASS(cpu);
> +    PowerPCCPU *cpu;
> +    PowerPCCPUClass *pcc;
> +
> +    if (first_cpu == NULL) {
> +        return -1;
> +    }
> +
> +    cpu = POWERPC_CPU(first_cpu);
> +    pcc = POWERPC_CPU_GET_CLASS(cpu);
>  
>      info->d_machine = PPC_ELF_MACHINE;
>      info->d_class = ELFCLASS;


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

  parent reply	other threads:[~2017-09-12 14:51 UTC|newest]

Thread overview: 48+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-12 14:01 [Qemu-arm] [PATCH v3 0/3] hmp: fix "dump-quest-memory" segfault Laurent Vivier
2017-09-12 14:01 ` [Qemu-devel] " Laurent Vivier
2017-09-12 14:01 ` [Qemu-arm] [PATCH v3 1/3] hmp: fix "dump-quest-memory" segfault (ppc) Laurent Vivier
2017-09-12 14:01   ` [Qemu-devel] " Laurent Vivier
2017-09-12 14:10   ` [Qemu-arm] " Thomas Huth
2017-09-12 14:10     ` [Qemu-devel] " Thomas Huth
2017-09-12 14:48   ` Greg Kurz [this message]
2017-09-12 14:48     ` Greg Kurz
2017-09-13  5:35   ` [Qemu-arm] " David Gibson
2017-09-13  5:35     ` [Qemu-devel] " David Gibson
2017-09-13 12:44     ` [Qemu-arm] " Dr. David Alan Gilbert
2017-09-13 12:44       ` [Qemu-devel] " Dr. David Alan Gilbert
2017-09-13 12:48       ` [Qemu-arm] " Cornelia Huck
2017-09-13 12:48         ` [Qemu-devel] " Cornelia Huck
2017-09-13 12:49       ` [Qemu-arm] " Laurent Vivier
2017-09-13 12:49         ` [Qemu-devel] " Laurent Vivier
2017-09-13 13:19         ` [Qemu-arm] " Dr. David Alan Gilbert
2017-09-13 13:19           ` [Qemu-devel] " Dr. David Alan Gilbert
2017-09-13 13:23           ` [Qemu-arm] " Laurent Vivier
2017-09-13 13:23             ` [Qemu-devel] " Laurent Vivier
2017-09-13 13:40             ` [Qemu-arm] " Dr. David Alan Gilbert
2017-09-13 13:40               ` [Qemu-devel] " Dr. David Alan Gilbert
2017-09-13 12:54       ` [Qemu-arm] " David Gibson
2017-09-13 12:54         ` [Qemu-devel] " David Gibson
2017-09-12 14:01 ` [Qemu-arm] [PATCH v3 2/3] hmp: fix "dump-quest-memory" segfault (arm) Laurent Vivier
2017-09-12 14:01   ` [Qemu-devel] " Laurent Vivier
2017-09-12 14:11   ` [Qemu-arm] " Thomas Huth
2017-09-12 14:11     ` [Qemu-devel] " Thomas Huth
2017-09-12 14:50   ` [Qemu-arm] " Greg Kurz
2017-09-12 14:50     ` [Qemu-devel] " Greg Kurz
2017-09-12 14:01 ` [Qemu-arm] [PATCH v3 3/3] tests/hmp: test "none" machine with memory Laurent Vivier
2017-09-12 14:01   ` [Qemu-devel] " Laurent Vivier
2017-09-12 14:13   ` [Qemu-arm] " Thomas Huth
2017-09-12 14:13     ` [Qemu-devel] " Thomas Huth
2017-09-13  7:53   ` Cornelia Huck
2017-09-13  7:53     ` Cornelia Huck
2017-09-12 14:17 ` [Qemu-devel] [PATCH v3 0/3] hmp: fix "dump-quest-memory" segfault no-reply
2017-09-12 14:17   ` no-reply
2017-09-12 14:46 ` [Qemu-arm] " Greg Kurz
2017-09-12 14:46   ` [Qemu-devel] " Greg Kurz
2017-09-12 14:51   ` Thomas Huth
2017-09-12 14:51     ` Thomas Huth
2017-09-12 15:26     ` Greg Kurz
2017-09-12 15:26       ` Greg Kurz
2017-09-12 15:36     ` [Qemu-arm] " Dr. David Alan Gilbert
2017-09-12 15:36       ` [Qemu-devel] " Dr. David Alan Gilbert
2017-09-13  5:34       ` [Qemu-arm] " David Gibson
2017-09-13  5:34         ` [Qemu-devel] " David Gibson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170912164832.35b68417@bahia.lan \
    --to=groug@kaod.org \
    --cc=berrange@redhat.com \
    --cc=cohuck@redhat.com \
    --cc=david@gibson.dropbear.id.au \
    --cc=dgilbert@redhat.com \
    --cc=lvivier@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    --cc=thuth@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.