]> git.ipfire.org Git - thirdparty/libvirt.git/commit
qemu: Fix race between async and query jobs
authorJiri Denemark <jdenemar@redhat.com>
Wed, 14 Dec 2011 08:57:07 +0000 (09:57 +0100)
committerJiri Denemark <jdenemar@redhat.com>
Thu, 15 Dec 2011 10:53:20 +0000 (11:53 +0100)
commit6948b725e78016e45b846a17b89fafb69965be51
tree222c79e00455e178b2eebf9acec0db54f89925fb
parent3f29d6c91f56857719fc500f02d55cee72684f36
qemu: Fix race between async and query jobs

If an async job run on a domain will stop the domain at the end of the
job, a concurrently run query job can hang in qemu monitor and nothing
can be done with that domain from this point on. An attempt to start
such domain results in "Timed out during operation: cannot acquire state
change lock" error.

However, quite a few things have to happen at the right time... There
must be an async job running which stops a domain at the end. This race
was reported with dump --crash but other similar jobs, such as
(managed)save and migration, should be able to trigger this bug as well.
While this async job is processing its last monitor command, that is a
query-migrate to which qemu replies with status "completed", a new
libvirt API that results in a query job must arrive and stay waiting
until the query-migrate command finishes. Once query-migrate is done but
before the async job closes qemu monitor while stopping the domain, the
other thread needs to wake up and call qemuMonitorSend to send its
command to qemu. Before qemu gets a chance to respond to this command,
the async job needs to close the monitor. At this point, the query job
thread is waiting for a condition that no-one will ever signal so it
never finishes the job.
src/qemu/qemu_monitor.c