RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Bug 795127 - pre-migration hook needed at destination
Summary: pre-migration hook needed at destination
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 6
Classification: Red Hat
Component: libvirt
Version: 6.2
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: rc
: ---
Assignee: Jiri Denemark
QA Contact: Virtualization Bugs
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2012-02-19 14:27 UTC by Dan Kenigsberg
Modified: 2012-06-20 06:48 UTC (History)
11 users (show)

Fixed In Version: libvirt-0.9.10-4.el6
Doc Type: Enhancement
Doc Text:
Clone Of:
Environment:
Last Closed: 2012-06-20 06:48:39 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Product Errata RHSA-2012:0748 0 normal SHIPPED_LIVE Low: libvirt security, bug fix, and enhancement update 2012-06-19 19:31:38 UTC

Description Dan Kenigsberg 2012-02-19 14:27:40 UTC
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 21:52:17 UTC
Initial patches sent upstream for review: https://www.redhat.com/archives/libvir-list/2012-February/msg01146.html

Comment 4 weizhang 2012-03-06 12:23:45 UTC
Hi Jiri,

What should I write on qemu hooks on source and target host?

Comment 5 Jiri Denemark 2012-03-06 13:35:27 UTC
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 07:22:01 UTC
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 06:48:39 UTC
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.