qemu-trivial
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-trivial] [PATCH] block/qcow2-snapshot: Fix a null pointer dere


From: Kevin Wolf
Subject: Re: [Qemu-trivial] [PATCH] block/qcow2-snapshot: Fix a null pointer dereference in qcow2_free_snapshots
Date: Thu, 10 Aug 2017 12:24:14 +0200
User-agent: Mutt/1.8.3 (2017-05-23)

Am 10.08.2017 um 09:52 hat Hu Chaojian geschrieben:
> From: chaojianhu <address@hidden>
> 
> In function qcow2_do_open, if "go fail;" before calling qcow2_read_snapshots, 
> then snapshots 
> will always be NULL. When dealing with "fail:", qcow2_free_snapshots will be 
> called, and 
> s->snapshots will be dereferenced without checked.

Did you try to reproduce an actual crash?

Becasue I don't think there will be one. In this case, s->nb_snapshots
is 0, so the loop doesn't even run.

Kevin

> Reported-by: chaojianhu <address@hidden>
> Signed-off-by: chaojianhu <address@hidden>
> 
> ---
>  block/qcow2-snapshot.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/block/qcow2-snapshot.c b/block/qcow2-snapshot.c
> index 44243e0..4a8128c 100644
> --- a/block/qcow2-snapshot.c
> +++ b/block/qcow2-snapshot.c
> @@ -35,6 +35,10 @@ void qcow2_free_snapshots(BlockDriverState *bs)
>      BDRVQcow2State *s = bs->opaque;
>      int i;
>  
> +    if (NULL == s->snapshots) {
> +        return;
> +    }
> +
>      for(i = 0; i < s->nb_snapshots; i++) {
>          g_free(s->snapshots[i].name);
>          g_free(s->snapshots[i].id_str);
> -- 
> 1.9.1
> 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]