* [Qemu-devel] [PATCH] hmp: fix migrate status timer leak
@ 2018-09-01 13:46 Marc-André Lureau
2018-09-03 10:53 ` Dr. David Alan Gilbert
0 siblings, 1 reply; 2+ messages in thread
From: Marc-André Lureau @ 2018-09-01 13:46 UTC (permalink / raw)
To: qemu-devel; +Cc: Marc-André Lureau, Dr. David Alan Gilbert
Spotted by ASAN doing some manual testing:
Direct leak of 48 byte(s) in 1 object(s) allocated from:
#0 0x7f5fcdc75e50 in calloc (/lib64/libasan.so.5+0xeee50)
#1 0x7f5fcd47241d in g_malloc0 (/lib64/libglib-2.0.so.0+0x5241d)
#2 0x55f989be92ce in timer_new /home/elmarco/src/qq/include/qemu/timer.h:561
#3 0x55f989be92ff in timer_new_ms /home/elmarco/src/qq/include/qemu/timer.h:630
#4 0x55f989c0219d in hmp_migrate /home/elmarco/src/qq/hmp.c:2038
#5 0x55f98955927b in handle_hmp_command /home/elmarco/src/qq/monitor.c:3498
#6 0x55f98955fb8c in monitor_command_cb /home/elmarco/src/qq/monitor.c:4371
#7 0x55f98ad40f11 in readline_handle_byte /home/elmarco/src/qq/util/readline.c:393
#8 0x55f98955fa4f in monitor_read /home/elmarco/src/qq/monitor.c:4354
#9 0x55f98aae30d7 in qemu_chr_be_write_impl /home/elmarco/src/qq/chardev/char.c:175
#10 0x55f98aae317a in qemu_chr_be_write /home/elmarco/src/qq/chardev/char.c:187
#11 0x55f98aae940c in fd_chr_read /home/elmarco/src/qq/chardev/char-fd.c:66
#12 0x55f98ab63018 in qio_channel_fd_source_dispatch /home/elmarco/src/qq/io/channel-watch.c:84
#13 0x7f5fcd46c8ac in g_main_dispatch gmain.c:3177
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
hmp.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/hmp.c b/hmp.c
index 4975fa56b0..52a4279e51 100644
--- a/hmp.c
+++ b/hmp.c
@@ -2001,6 +2001,7 @@ static void hmp_migrate_status_cb(void *opaque)
}
monitor_resume(status->mon);
timer_del(status->timer);
+ timer_free(status->timer);
g_free(status);
}
--
2.19.0.rc1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH] hmp: fix migrate status timer leak
2018-09-01 13:46 [Qemu-devel] [PATCH] hmp: fix migrate status timer leak Marc-André Lureau
@ 2018-09-03 10:53 ` Dr. David Alan Gilbert
0 siblings, 0 replies; 2+ messages in thread
From: Dr. David Alan Gilbert @ 2018-09-03 10:53 UTC (permalink / raw)
To: Marc-André Lureau; +Cc: qemu-devel
* Marc-André Lureau (marcandre.lureau@redhat.com) wrote:
> Spotted by ASAN doing some manual testing:
>
> Direct leak of 48 byte(s) in 1 object(s) allocated from:
> #0 0x7f5fcdc75e50 in calloc (/lib64/libasan.so.5+0xeee50)
> #1 0x7f5fcd47241d in g_malloc0 (/lib64/libglib-2.0.so.0+0x5241d)
> #2 0x55f989be92ce in timer_new /home/elmarco/src/qq/include/qemu/timer.h:561
> #3 0x55f989be92ff in timer_new_ms /home/elmarco/src/qq/include/qemu/timer.h:630
> #4 0x55f989c0219d in hmp_migrate /home/elmarco/src/qq/hmp.c:2038
> #5 0x55f98955927b in handle_hmp_command /home/elmarco/src/qq/monitor.c:3498
> #6 0x55f98955fb8c in monitor_command_cb /home/elmarco/src/qq/monitor.c:4371
> #7 0x55f98ad40f11 in readline_handle_byte /home/elmarco/src/qq/util/readline.c:393
> #8 0x55f98955fa4f in monitor_read /home/elmarco/src/qq/monitor.c:4354
> #9 0x55f98aae30d7 in qemu_chr_be_write_impl /home/elmarco/src/qq/chardev/char.c:175
> #10 0x55f98aae317a in qemu_chr_be_write /home/elmarco/src/qq/chardev/char.c:187
> #11 0x55f98aae940c in fd_chr_read /home/elmarco/src/qq/chardev/char-fd.c:66
> #12 0x55f98ab63018 in qio_channel_fd_source_dispatch /home/elmarco/src/qq/io/channel-watch.c:84
> #13 0x7f5fcd46c8ac in g_main_dispatch gmain.c:3177
>
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Thanks, I'll add that to my HMP list.
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> ---
> hmp.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/hmp.c b/hmp.c
> index 4975fa56b0..52a4279e51 100644
> --- a/hmp.c
> +++ b/hmp.c
> @@ -2001,6 +2001,7 @@ static void hmp_migrate_status_cb(void *opaque)
> }
> monitor_resume(status->mon);
> timer_del(status->timer);
> + timer_free(status->timer);
> g_free(status);
> }
>
> --
> 2.19.0.rc1
>
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-09-03 10:53 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-01 13:46 [Qemu-devel] [PATCH] hmp: fix migrate status timer leak Marc-André Lureau
2018-09-03 10:53 ` Dr. David Alan Gilbert
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).