]> git.ipfire.org Git - thirdparty/libvirt.git/commit
rpc: Don't leak fd via CreateXMLWithFiles
authorBen Gray <ben.r.gray@gmail.com>
Sat, 23 Apr 2016 22:38:21 +0000 (18:38 -0400)
committerCole Robinson <crobinso@redhat.com>
Fri, 29 Apr 2016 10:30:06 +0000 (06:30 -0400)
commit5ba48584fbc5079c0ddbc9e9a52c96d7bcef0761
treef7fb68eefc7718a3713c94ba668606104b458f29
parentcdbbb93a968bdf297c0aa47a3f161ffd76136dca
rpc: Don't leak fd via CreateXMLWithFiles

FD passing APIs like CreateXMLWithFiles or OpenGraphicsFD will leak
file descriptors. The user passes in an fd, which is dup()'d in
virNetClientProgramCall. The new fd is what is transfered to the
server virNetClientIOWriteMessage.

Once all the fds have been written though, the parent msg->fds list
is immediately free'd, so the individual fds are never closed.

This closes each FD as its send to the server, so all fds have been
closed by the time msg->fds is free'd.

https://bugzilla.redhat.com/show_bug.cgi?id=1159766
src/rpc/virnetclient.c