Bugzilla will be upgraded to version 5.0. The upgrade date is tentatively scheduled for 2 December 2018, pending final testing and feedback.
Bug 795127 - pre-migration hook needed at destination
pre-migration hook needed at destination
Status: CLOSED ERRATA
Product: Red Hat Enterprise Linux 6
Classification: Red Hat
Component: libvirt (Show other bugs)
6.2
Unspecified Unspecified
unspecified Severity unspecified
: rc
: ---
Assigned To: Jiri Denemark
Virtualization Bugs
: FutureFeature
Depends On:
Blocks:
  Show dependency treegraph
 
Reported: 2012-02-19 09:27 EST by Dan Kenigsberg
Modified: 2012-06-20 02:48 EDT (History)
11 users (show)

See Also:
Fixed In Version: libvirt-0.9.10-4.el6
Doc Type: Enhancement
Doc Text:
Story Points: ---
Clone Of:
Environment:
Last Closed: 2012-06-20 02:48:39 EDT
Type: ---
Regression: ---
Mount Type: ---
Documentation: ---
CRM:
Verified Versions:
Category: ---
oVirt Team: ---
RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: ---


Attachments (Terms of Use)


External Trackers
Tracker ID Priority Status Summary Last Updated
Red Hat Product Errata RHSA-2012:0748 normal SHIPPED_LIVE Low: libvirt security, bug fix, and enhancement update 2012-06-19 15:31:38 EDT

  None (edit)
Description Dan Kenigsberg 2012-02-19 09:27:40 EST
Description of problem:
virDomainMigrateURI2() lets the client play with the domxml at the destination host. However, more common than not, the client does not (or should not) know about specifics of the destination host (where storage is mounted there, name of network interface, ...).

I would like to be able to tweak incoming domxml at the destination host before `qemu -incoming` is started. This would let a complex client application mount storage, activate LVs, create local cdrom image for vm-specific data (and much more) before the VM starts.
Comment 1 Jiri Denemark 2012-02-28 16:52:17 EST
Initial patches sent upstream for review: https://www.redhat.com/archives/libvir-list/2012-February/msg01146.html
Comment 4 weizhang 2012-03-06 07:23:45 EST
Hi Jiri,

What should I write on qemu hooks on source and target host?
Comment 5 Jiri Denemark 2012-03-06 08:35:27 EST
The hook will only be called on target host as

    /etc/libvirt/hooks/qemu DOMAIN migrate begin -

with the DOMAIN's XML sent to stdin of the script. So you need to do something in the script when $2 is equal to "migrate". You can either do nothing (i.e, exit 0) or copy stdin to stdout (e.g., cat) to use the domain XML without any changes. Or you can try to change something in the input XML (using sed, for example).
Comment 8 xhu 2012-03-08 02:22:01 EST
Verify it with libvirt-0.9.10-4.el6.x86_64 and it passed:
1 setup migration env on both source and target machine
2 prepare /etc/libvirt/hooks/qemu script file on target machine:
# cat /etc/libvirt/hooks/qemu 
#! /bin/bash
echo "$0" "$@" >> /tmp/qemu.log
exit 0

# chmod +x /etc/libvirt/hooks/qemu
3 start migration
# virsh migrate ${guestname} qemu+ssh://${target_ip}/system --unsafe
4 check /tmp/qemu.log on target machine:
# cat /tmp/qemu.log 
/etc/libvirt/hooks/qemu kvm-rhel6-i386 migrate begin -
/etc/libvirt/hooks/qemu kvm-rhel6-i386 prepare begin -
/etc/libvirt/hooks/qemu kvm-rhel6-i386 start begin -
Comment 10 errata-xmlrpc 2012-06-20 02:48:39 EDT
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.

For information on the advisory, and where to find the updated
files, follow the link below.

If the solution does not work for you, open a new bug report.

http://rhn.redhat.com/errata/RHSA-2012-0748.html

Note You need to log in before you can comment on or make changes to this bug.