[libvirt] [PATCH] Release VM lock before acquiring virDomainObjListPtr lock

Daniel P. Berrange berrange at redhat.com
Tue Apr 9 10:26:04 UTC 2013


On Tue, Apr 09, 2013 at 10:08:31AM +0100, Daniel P. Berrange wrote:
> On Mon, Apr 08, 2013 at 09:15:28PM -0600, Eric Blake wrote:
> > On 02/11/2013 09:46 AM, Daniel P. Berrange wrote:
> > > From: "Daniel P. Berrange" <berrange at redhat.com>
> > > 
> > > When removing a VM from the virDomainObjListPtr, we must not
> > > be holding the VM lock while acquiring the list lock. Re-order
> > > code to ensure that we can release the VM lock early.
> > > ---
> > >  src/conf/domain_conf.c | 3 +--
> > >  1 file changed, 1 insertion(+), 2 deletions(-)
> > > 
> > > diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c
> > > index 5e16ddf..d92e54a 100644
> > > --- a/src/conf/domain_conf.c
> > > +++ b/src/conf/domain_conf.c
> > > @@ -2115,11 +2115,10 @@ void virDomainObjListRemove(virDomainObjListPtr doms,
> > >  {
> > >      char uuidstr[VIR_UUID_STRING_BUFLEN];
> > >  
> > > -    virObjectLock(doms);
> > >      virUUIDFormat(dom->def->uuid, uuidstr);
> > > -
> > >      virObjectUnlock(dom);
> > >  
> > > +    virObjectLock(doms);
> > 
> > This patch seems to be implicated in Peter's latest proof of a
> > use-after-free data race:
> > https://www.redhat.com/archives/libvir-list/2013-April/msg00674.html
> 
> The caller of this method should own a reference on virDomainObjPtr.
> This method will result in that reference being released, as the
> dom is removed from the list.
> 
> If any other thread experiances a use-after-free, then that thread
> must have been missing a reference.

Actually, it is this code which is at fault. I forgot the rule
that if you unlock 'dom', then you are forbidden to access it
again, unless you had done a virDomainObjRef on it prior to
unlocking. Once we hold the lock on 'doms', we must also relock
'dom' to ensure we block any other thread from using it. So
this method should be changed to look like

void virDomainObjListRemove(virDomainObjListPtr doms,
                            virDomainObjPtr dom)
{
    char uuidstr[VIR_UUID_STRING_BUFLEN];

    virUUIDFormat(dom->def->uuid, uuidstr);
    virObjectRef(dom);
    virObjectUnlock(dom);

    virObjectLock(doms);
    virObjectLock(dom);
    virHashRemoveEntry(doms->objs, uuidstr);
    virObjectUnlock(dom);
    virObjectUnref(dom);
    virObjectUnlock(doms);
}


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 :|




More information about the libvir-list mailing list