mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-11 15:27:47 +00:00
Fix tunnelled migration with qemu running as qemu:qemu.
The problem is that on the source of the migration, libvirtd is responsible for creating the unix socket over which the data will flow. Since libvirtd is running as root, this file will be created as root. When the qemu process running as qemu:qemu goes to access the unix file to write data to it, it will get permission denied and fail. Make sure to change the owner of the unix file to qemu:qemu. Thanks to Justin Clift for testing this patch out for me. Signed-off-by: Chris Lalancette <clalance@redhat.com>
This commit is contained in:
parent
18b6323ab9
commit
a2f0b6b81d
@ -10985,6 +10985,13 @@ static int doTunnelMigrate(virDomainPtr dom,
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
if (chown(unixfile, qemu_driver->user, qemu_driver->group) < 0) {
|
||||
virReportSystemError(errno,
|
||||
_("Cannot change unix socket '%s' owner"),
|
||||
unixfile);
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
/* check that this qemu version supports the unix migration */
|
||||
if (qemudExtractVersionInfo(vm->def->emulator, NULL, &qemuCmdFlags) < 0) {
|
||||
qemuReportError(VIR_ERR_INTERNAL_ERROR,
|
||||
|
Loading…
Reference in New Issue
Block a user