]> xenbits.xensource.com Git - people/liuw/libxenctrl-split/libvirt.git/commit
conf: Fix race between looking up a domain object and freeing it
authorPeter Krempa <pkrempa@redhat.com>
Tue, 9 Apr 2013 11:56:26 +0000 (13:56 +0200)
committerPeter Krempa <pkrempa@redhat.com>
Wed, 10 Apr 2013 07:32:03 +0000 (09:32 +0200)
commitb7c98329cb055422d6e70262820485fca2045d09
tree84a635174244b7f481018a3189b8ebd93303d697
parentcdb1c3b6e2b8d4f45f63f734ef453f2958c77183
conf: Fix race between looking up a domain object and freeing it

This patch fixes crash of the daemon that happens due to the following race
condition:

Let's have two threads in the libvirtd daemon's qemu driver:
A - thread executing undefine on the same domain
B - thread executing a API call to get information about a domain

Assume following serialization of operations done by the threads:
1) A has the lock on the domain object and is executing some code prior to
   virDomainObjListRemove()
2) B takes the lock on the domain object list, looks up the domain object
pointer and blocks in the attempt to lock the domain object as A is holding the
lock
3) A reaches virDomainObjListRemove() and unlocks the lock on the domain object
4) A blocks on the attempt to get the domain list lock
5) B is able to lock the domain object now and unlocks the domain list
6) A is now able to lock the domain list, and sheds the last reference on the
domain object, this triggers the freeing function.
6) B starts executing the code on the pointer that is being freed
7) The libvirtd daemon crashes while attempting to access invalid pointer in
thread B.

This patch fixes the race by acquiring a reference on the domain object before
unlocking it in virDomainObjListRemove() and re-locks the object prior to
removing and freeing it. This ensures that no thread holds a lock on the domain
object at the time it is removed from the list, and that doing a list lookup
will never find a domain that is about to vanish.

This is a minimal fix of the problem, but a better solution will be to switch to
full reference counting for domain objects.
src/conf/domain_conf.c