From: "Daniel P. Berrange" <berrange@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] Race condition in char device setup causing SEGV
Date: Thu, 23 Aug 2012 12:01:05 +0100 [thread overview]
Message-ID: <20120823110105.GB10833@redhat.com> (raw)
When testing with the new "-M none" arg, I've noticed that ~70%
of the time libvirt starts QEMU will result in a SEGV from QEMU
with the following stack trace:
(gdb) bt
#0 0x0000000000000000 in ?? ()
#1 0x000055555567a37f in json_lexer_feed_char (lexer=0x55555658fb20, ch=123 '{', flush=false) at json-lexer.c:324
#2 0x000055555567a4aa in json_lexer_feed (lexer=0x55555658fb20, buffer=0x7fffffffe7b7 "{", size=1) at json-lexer.c:356
#3 0x000055555567c708 in json_message_parser_feed (parser=0x55555658fb18, buffer=0x7fffffffe7b7 "{", size=1) at json-streamer.c:110
#4 0x0000555555882861 in monitor_control_read (opaque=0x55555658f6a0, buf=0x7fffffffe7b7 "{", size=1) at /home/berrange/src/virt/qemu/monitor.c:4768
#5 0x000055555579b051 in qemu_chr_be_write (s=0x55555658dc10, buf=0x7fffffffe7b7 "{", len=1) at qemu-char.c:164
#6 0x000055555579c9c8 in stdio_read (opaque=0x55555658dc10) at qemu-char.c:720
#7 0x000055555567941f in qemu_iohandler_poll (readfds=0x5555560f17c0, writefds=0x5555560f1840, xfds=0x5555560f18c0, ret=2) at iohandler.c:122
#8 0x000055555577166a in main_loop_wait (nonblocking=0) at main-loop.c:497
#9 0x000055555576956b in main_loop () at /home/berrange/src/virt/qemu/vl.c:1643
#10 0x0000555555770239 in main (argc=10, argv=0x7fffffffeca8, envp=0x7fffffffed00) at /home/berrange/src/virt/qemu/vl.c:3755
Stack frame #1 there is doing this:
lexer->emit(lexer, lexer->token, JSON_ERROR, lexer->x, lexer->y);
GDB confirms that the 'emit' field has not yet been initialized.
In the case of QMP, this is initialized by the following sequence:
- main
- chardev_init_func
- qemu_chr_generic_open
...async from event loop...
- main_loop
- qemu_chr_generic_open_bh
- monitor_control_event
- json_message_parser_init
- json_lexer_init
The problem arises if you try to feed data to QEMU before the bottom
half has run. There is a race where qemu_chr_be_write can be called
to process input, before the qemu_chr_generic_open_bh has been invoked.
This can actually be quite easily demonstrated (at least on my system):
# echo "{" | qemu-system-x86_64 -nodefaults -nographic -M none -qmp stdio
Segmentation fault
If you remove the '-M none' call, you won't hit this race condition 99%
of the time, but I have occassionally been able to see it.
It isn't clear to me what to change to solve this race condition. Probably
though, the I/O handlers for a char device should be registered until the
open bottom half has completed.
Regards,
Daniel
--
|: http://berrange.com -o- http://www.flickr.com/photos/dberrange/ :|
|: http://libvirt.org -o- http://virt-manager.org :|
|: http://autobuild.org -o- http://search.cpan.org/~danberr/ :|
|: http://entangle-photo.org -o- http://live.gnome.org/gtk-vnc :|
next reply other threads:[~2012-08-23 11:01 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-08-23 11:01 Daniel P. Berrange [this message]
2012-08-23 11:12 ` [Qemu-devel] Race condition in char device setup causing SEGV Daniel P. Berrange
2012-08-23 13:30 ` Anthony Liguori
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=20120823110105.GB10833@redhat.com \
--to=berrange@redhat.com \
--cc=qemu-devel@nongnu.org \
/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 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).