fd8fdc9345
This patch, builds on previous patches and enables
Live migration with SR-IOV indirect ports.
Prior to this change migration would have either:
- Failed with instance running on the source node.
- Failed with two VMs booted on both source and destination
nodes, VM state is set to migrating, duplicate MACs on
source and destination node and improper PCI resource claiming.
This scenario is observed in the case of macvtap port type and
neutron does not support multiple port binding API extension.
With very little, non user friendly information in the log.
Conductor Changes:
- Allow live migration only with VIF related PCI devices to allow
properly claiming PCI resources on the destination node.
With this change live migration with generic flavor based
PCI passthrough devices will not be supported due to libvirt and
qemu constraint.
- Add a check to allow live migration with VIF related PCI allocation
only when neutron supports multiple ports binding API extension
and compute nodes are up to date.
- update the migrating VIF with the correct profile when binding the
ports on the destination host, this will allow proper binding against
the destination host and ensure VIF will be plugged correctly by Nova.
Compute Changes:
- Create VIFMigrateData for all VIFs in
check_can_live_migrate_destination()
- For every VIF that contains a PCI device in its profile
claim a PCI device on the destination node using the matching
InstancePCIRequest of the instance being migrated.
- Update the relevant VIFMigrateData profile with the newly
claimed PCI device.
- Free PCI devices on source and allocate on destination upon
a successful migration or free claimed PCI devices on destination
upon failure.
NeutronV2 Changes:
- Don't update binding profile with PCI devices if migration type is
live-migration as the profile was already updated when an inactive
port binding was created during bind_ports_to_host() call
from conductor.
Note: This builds on multiple ports binding API.
Change-Id: I734cc01dce13f9e75a16639faf890ddb1661b7eb
Partial-Implement: blueprint libvirt-neutron-sriov-livemigration
314 lines
13 KiB
Python
314 lines
13 KiB
Python
# Copyright 2015 Red Hat, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from oslo_serialization import jsonutils
|
|
from oslo_utils.fixture import uuidsentinel as uuids
|
|
from oslo_versionedobjects import base as ovo_base
|
|
|
|
from nova import exception
|
|
from nova.network import model as network_model
|
|
from nova import objects
|
|
from nova.objects import migrate_data
|
|
from nova import test
|
|
from nova.tests.unit.objects import test_objects
|
|
|
|
|
|
class _TestLiveMigrateData(object):
|
|
def test_obj_make_compatible(self):
|
|
props = {
|
|
'serial_listen_addr': '127.0.0.1',
|
|
'serial_listen_ports': [1000, 10001, 10002, 10003],
|
|
'wait_for_vif_plugged': True
|
|
}
|
|
|
|
obj = migrate_data.LibvirtLiveMigrateData(**props)
|
|
primitive = obj.obj_to_primitive()
|
|
self.assertIn('serial_listen_ports', primitive['nova_object.data'])
|
|
self.assertIn('wait_for_vif_plugged', primitive['nova_object.data'])
|
|
obj.obj_make_compatible(primitive['nova_object.data'], '1.5')
|
|
self.assertNotIn('wait_for_vif_plugged', primitive['nova_object.data'])
|
|
obj.obj_make_compatible(primitive['nova_object.data'], '1.1')
|
|
self.assertNotIn('serial_listen_ports', primitive['nova_object.data'])
|
|
|
|
|
|
class TestLiveMigrateData(test_objects._LocalTest,
|
|
_TestLiveMigrateData):
|
|
def test_create_skeleton_migrate_vifs(self):
|
|
vifs = [
|
|
network_model.VIF(id=uuids.port1),
|
|
network_model.VIF(id=uuids.port2)]
|
|
mig_vifs = migrate_data.LiveMigrateData.create_skeleton_migrate_vifs(
|
|
vifs)
|
|
self.assertEqual(len(vifs), len(mig_vifs))
|
|
self.assertEqual([vif['id'] for vif in vifs],
|
|
[mig_vif.port_id for mig_vif in mig_vifs])
|
|
|
|
|
|
class TestRemoteLiveMigrateData(test_objects._RemoteTest,
|
|
_TestLiveMigrateData):
|
|
pass
|
|
|
|
|
|
class _TestLibvirtLiveMigrateData(object):
|
|
def test_bdm_to_disk_info(self):
|
|
obj = migrate_data.LibvirtLiveMigrateBDMInfo(
|
|
serial='foo', bus='scsi', dev='sda', type='disk')
|
|
expected_info = {
|
|
'dev': 'sda',
|
|
'bus': 'scsi',
|
|
'type': 'disk',
|
|
}
|
|
self.assertEqual(expected_info, obj.as_disk_info())
|
|
obj.format = 'raw'
|
|
obj.boot_index = 1
|
|
expected_info['format'] = 'raw'
|
|
expected_info['boot_index'] = '1'
|
|
self.assertEqual(expected_info, obj.as_disk_info())
|
|
|
|
def test_obj_make_compatible(self):
|
|
obj = migrate_data.LibvirtLiveMigrateData(
|
|
src_supports_native_luks=True,
|
|
old_vol_attachment_ids={uuids.volume: uuids.attachment},
|
|
supported_perf_events=[],
|
|
serial_listen_addr='127.0.0.1',
|
|
target_connect_addr='127.0.0.1',
|
|
dst_wants_file_backed_memory=False,
|
|
file_backed_memory_discard=False)
|
|
|
|
data = lambda x: x['nova_object.data']
|
|
|
|
primitive = data(obj.obj_to_primitive())
|
|
self.assertIn('file_backed_memory_discard', primitive)
|
|
primitive = data(obj.obj_to_primitive(target_version='1.0'))
|
|
self.assertNotIn('target_connect_addr', primitive)
|
|
self.assertNotIn('supported_perf_events', primitive)
|
|
self.assertNotIn('old_vol_attachment_ids', primitive)
|
|
self.assertNotIn('src_supports_native_luks', primitive)
|
|
self.assertNotIn('dst_wants_file_backed_memory', primitive)
|
|
primitive = data(obj.obj_to_primitive(target_version='1.1'))
|
|
self.assertNotIn('serial_listen_ports', primitive)
|
|
primitive = data(obj.obj_to_primitive(target_version='1.2'))
|
|
self.assertNotIn('supported_perf_events', primitive)
|
|
primitive = data(obj.obj_to_primitive(target_version='1.3'))
|
|
self.assertNotIn('old_vol_attachment_ids', primitive)
|
|
primitive = data(obj.obj_to_primitive(target_version='1.4'))
|
|
self.assertNotIn('src_supports_native_luks', primitive)
|
|
primitive = data(obj.obj_to_primitive(target_version='1.6'))
|
|
self.assertNotIn('dst_wants_file_backed_memory', primitive)
|
|
primitive = data(obj.obj_to_primitive(target_version='1.7'))
|
|
self.assertNotIn('file_backed_memory_discard', primitive)
|
|
|
|
def test_bdm_obj_make_compatible(self):
|
|
obj = migrate_data.LibvirtLiveMigrateBDMInfo(
|
|
encryption_secret_uuid=uuids.encryption_secret_uuid)
|
|
primitive = obj.obj_to_primitive(target_version='1.0')
|
|
self.assertNotIn(
|
|
'encryption_secret_uuid', primitive['nova_object.data'])
|
|
|
|
primitive = obj.obj_to_primitive(target_version='1.1')
|
|
self.assertIn(
|
|
'encryption_secret_uuid', primitive['nova_object.data'])
|
|
|
|
def test_vif_migrate_data(self):
|
|
source_vif = network_model.VIF(
|
|
id=uuids.port_id,
|
|
network=network_model.Network(id=uuids.network_id),
|
|
type=network_model.VIF_TYPE_OVS,
|
|
vnic_type=network_model.VNIC_TYPE_NORMAL,
|
|
active=True,
|
|
profile={'migrating_to': 'dest-host'})
|
|
vif_details_dict = {'port_filter': True}
|
|
profile_dict = {'trusted': False}
|
|
vif_data = objects.VIFMigrateData(
|
|
port_id=uuids.port_id,
|
|
vnic_type=network_model.VNIC_TYPE_NORMAL,
|
|
vif_type=network_model.VIF_TYPE_BRIDGE,
|
|
vif_details=vif_details_dict, profile=profile_dict,
|
|
host='dest-host', source_vif=source_vif)
|
|
# Make sure the vif_details and profile fields are converted and
|
|
# stored properly.
|
|
self.assertEqual(
|
|
jsonutils.dumps(vif_details_dict), vif_data.vif_details_json)
|
|
self.assertEqual(
|
|
jsonutils.dumps(profile_dict), vif_data.profile_json)
|
|
self.assertDictEqual(vif_details_dict, vif_data.vif_details)
|
|
self.assertDictEqual(profile_dict, vif_data.profile)
|
|
obj = migrate_data.LibvirtLiveMigrateData(
|
|
file_backed_memory_discard=False)
|
|
obj.vifs = [vif_data]
|
|
manifest = ovo_base.obj_tree_get_versions(obj.obj_name())
|
|
primitive = obj.obj_to_primitive(target_version='1.8',
|
|
version_manifest=manifest)
|
|
self.assertIn(
|
|
'file_backed_memory_discard', primitive['nova_object.data'])
|
|
self.assertNotIn('vifs', primitive['nova_object.data'])
|
|
|
|
|
|
class TestLibvirtLiveMigrateData(test_objects._LocalTest,
|
|
_TestLibvirtLiveMigrateData):
|
|
pass
|
|
|
|
|
|
class TestRemoteLibvirtLiveMigrateData(test_objects._RemoteTest,
|
|
_TestLibvirtLiveMigrateData):
|
|
pass
|
|
|
|
|
|
class _TestXenapiLiveMigrateData(object):
|
|
def test_obj_make_compatible(self):
|
|
obj = migrate_data.XenapiLiveMigrateData(
|
|
is_volume_backed=False,
|
|
block_migration=False,
|
|
destination_sr_ref='foo',
|
|
migrate_send_data={'key': 'val'},
|
|
sr_uuid_map={'apple': 'banana'},
|
|
vif_uuid_map={'orange': 'lemon'},
|
|
old_vol_attachment_ids={uuids.volume: uuids.attachment},
|
|
wait_for_vif_plugged=True)
|
|
primitive = obj.obj_to_primitive('1.0')
|
|
self.assertNotIn('vif_uuid_map', primitive['nova_object.data'])
|
|
primitive2 = obj.obj_to_primitive('1.1')
|
|
self.assertIn('vif_uuid_map', primitive2['nova_object.data'])
|
|
self.assertNotIn('old_vol_attachment_ids', primitive2)
|
|
primitive3 = obj.obj_to_primitive('1.2')['nova_object.data']
|
|
self.assertNotIn('wait_for_vif_plugged', primitive3)
|
|
|
|
|
|
class TestXenapiLiveMigrateData(test_objects._LocalTest,
|
|
_TestXenapiLiveMigrateData):
|
|
pass
|
|
|
|
|
|
class TestRemoteXenapiLiveMigrateData(test_objects._RemoteTest,
|
|
_TestXenapiLiveMigrateData):
|
|
pass
|
|
|
|
|
|
class _TestHyperVLiveMigrateData(object):
|
|
def test_obj_make_compatible(self):
|
|
obj = migrate_data.HyperVLiveMigrateData(
|
|
is_shared_instance_path=True,
|
|
old_vol_attachment_ids={'yes': 'no'},
|
|
wait_for_vif_plugged=True)
|
|
|
|
data = lambda x: x['nova_object.data']
|
|
|
|
primitive = data(obj.obj_to_primitive())
|
|
self.assertIn('is_shared_instance_path', primitive)
|
|
primitive = data(obj.obj_to_primitive(target_version='1.0'))
|
|
self.assertNotIn('is_shared_instance_path', primitive)
|
|
primitive = data(obj.obj_to_primitive(target_version='1.1'))
|
|
self.assertNotIn('old_vol_attachment_ids', primitive)
|
|
primitive = data(obj.obj_to_primitive(target_version='1.2'))
|
|
self.assertNotIn('wait_for_vif_plugged', primitive)
|
|
|
|
|
|
class TestHyperVLiveMigrateData(test_objects._LocalTest,
|
|
_TestHyperVLiveMigrateData):
|
|
pass
|
|
|
|
|
|
class TestRemoteHyperVLiveMigrateData(test_objects._RemoteTest,
|
|
_TestHyperVLiveMigrateData):
|
|
pass
|
|
|
|
|
|
class _TestPowerVMLiveMigrateData(object):
|
|
@staticmethod
|
|
def _mk_obj():
|
|
return migrate_data.PowerVMLiveMigrateData(
|
|
host_mig_data=dict(one=2),
|
|
dest_ip='1.2.3.4',
|
|
dest_user_id='a_user',
|
|
dest_sys_name='a_sys',
|
|
public_key='a_key',
|
|
dest_proc_compat='POWER7',
|
|
vol_data=dict(three=4),
|
|
vea_vlan_mappings=dict(five=6),
|
|
old_vol_attachment_ids=dict(seven=8),
|
|
wait_for_vif_plugged=True)
|
|
|
|
@staticmethod
|
|
def _mk_leg():
|
|
return {
|
|
'host_mig_data': {'one': '2'},
|
|
'dest_ip': '1.2.3.4',
|
|
'dest_user_id': 'a_user',
|
|
'dest_sys_name': 'a_sys',
|
|
'public_key': 'a_key',
|
|
'dest_proc_compat': 'POWER7',
|
|
'vol_data': {'three': '4'},
|
|
'vea_vlan_mappings': {'five': '6'},
|
|
'old_vol_attachment_ids': {'seven': '8'},
|
|
'wait_for_vif_plugged': True
|
|
}
|
|
|
|
def test_migrate_data(self):
|
|
obj = self._mk_obj()
|
|
self.assertEqual('a_key', obj.public_key)
|
|
obj.public_key = 'key2'
|
|
self.assertEqual('key2', obj.public_key)
|
|
|
|
def test_obj_make_compatible(self):
|
|
obj = self._mk_obj()
|
|
|
|
data = lambda x: x['nova_object.data']
|
|
|
|
primitive = data(obj.obj_to_primitive())
|
|
self.assertIn('vea_vlan_mappings', primitive)
|
|
primitive = data(obj.obj_to_primitive(target_version='1.0'))
|
|
self.assertNotIn('vea_vlan_mappings', primitive)
|
|
primitive = data(obj.obj_to_primitive(target_version='1.1'))
|
|
self.assertNotIn('old_vol_attachment_ids', primitive)
|
|
primitive = data(obj.obj_to_primitive(target_version='1.2'))
|
|
self.assertNotIn('wait_for_vif_plugged', primitive)
|
|
|
|
|
|
class TestPowerVMLiveMigrateData(test_objects._LocalTest,
|
|
_TestPowerVMLiveMigrateData):
|
|
pass
|
|
|
|
|
|
class TestRemotePowerVMLiveMigrateData(test_objects._RemoteTest,
|
|
_TestPowerVMLiveMigrateData):
|
|
pass
|
|
|
|
|
|
class TestVIFMigrateData(test.NoDBTestCase):
|
|
|
|
def test_get_dest_vif_source_vif_not_set(self):
|
|
migrate_vif = objects.VIFMigrateData(
|
|
port_id=uuids.port_id, vnic_type=network_model.VNIC_TYPE_NORMAL,
|
|
vif_type=network_model.VIF_TYPE_OVS, vif_details={},
|
|
profile={}, host='fake-dest-host')
|
|
self.assertRaises(
|
|
exception.ObjectActionError, migrate_vif.get_dest_vif)
|
|
|
|
def test_get_dest_vif(self):
|
|
source_vif = network_model.VIF(
|
|
id=uuids.port_id, type=network_model.VIF_TYPE_OVS, details={},
|
|
vnic_type=network_model.VNIC_TYPE_DIRECT, profile={'foo': 'bar'},
|
|
ovs_interfaceid=uuids.ovs_interfaceid)
|
|
migrate_vif = objects.VIFMigrateData(
|
|
port_id=uuids.port_id, vnic_type=network_model.VNIC_TYPE_NORMAL,
|
|
vif_type=network_model.VIF_TYPE_BRIDGE, vif_details={'bar': 'baz'},
|
|
profile={}, host='fake-dest-host', source_vif=source_vif)
|
|
dest_vif = migrate_vif.get_dest_vif()
|
|
self.assertEqual(migrate_vif.port_id, dest_vif['id'])
|
|
self.assertEqual(migrate_vif.vnic_type, dest_vif['vnic_type'])
|
|
self.assertEqual(migrate_vif.vif_type, dest_vif['type'])
|
|
self.assertEqual(migrate_vif.vif_details, dest_vif['details'])
|
|
self.assertEqual(migrate_vif.profile, dest_vif['profile'])
|
|
self.assertEqual(uuids.ovs_interfaceid, dest_vif['ovs_interfaceid'])
|