summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2019-07-03 02:06:58 +0000
committerGerrit Code Review <review@openstack.org>2019-07-03 02:06:58 +0000
commit2c1596b78f8e491ce597b5b6d11c37ed17cdf89f (patch)
tree932096815a522634e5b62320a065779fb7436e43
parent5d349060f5ed69d9a69b8e404ccbc5d4fbe92539 (diff)
parentec43a1348d871b52473b46bd895b609dc16fe8fe (diff)
downloadnova-2c1596b78f8e491ce597b5b6d11c37ed17cdf89f.tar.gz
Merge "libvirt: Avoid using os-brick encryptors when device_path isn't provided" into stable/queens
-rw-r--r--nova/tests/unit/virt/libvirt/test_driver.py29
-rw-r--r--nova/virt/libvirt/driver.py8
2 files changed, 35 insertions, 2 deletions
diff --git a/nova/tests/unit/virt/libvirt/test_driver.py b/nova/tests/unit/virt/libvirt/test_driver.py
index cce0e56078..9abf8ac8b7 100644
--- a/nova/tests/unit/virt/libvirt/test_driver.py
+++ b/nova/tests/unit/virt/libvirt/test_driver.py
@@ -7830,8 +7830,9 @@ class LibvirtConnTestCase(test.NoDBTestCase,
@mock.patch('os_brick.encryptors.get_encryption_metadata')
@mock.patch('nova.virt.libvirt.driver.LibvirtDriver._get_volume_encryptor')
+ @mock.patch('nova.virt.libvirt.driver.LibvirtDriver._use_native_luks')
def test_detach_encryptor_encrypted_volume_meta_missing(self,
- mock_get_encryptor, mock_get_metadata):
+ mock_use_native_luks, mock_get_encryptor, mock_get_metadata):
"""Assert that if missing the encryption metadata of an encrypted
volume is fetched and then used to detach the encryptor for the volume.
"""
@@ -7841,6 +7842,7 @@ class LibvirtConnTestCase(test.NoDBTestCase,
encryption = {'provider': 'luks', 'control_location': 'front-end'}
mock_get_metadata.return_value = encryption
connection_info = {'data': {'volume_id': uuids.volume_id}}
+ mock_use_native_luks.return_value = False
drvr._detach_encryptor(self.context, connection_info, None)
@@ -7852,8 +7854,9 @@ class LibvirtConnTestCase(test.NoDBTestCase,
@mock.patch('os_brick.encryptors.get_encryption_metadata')
@mock.patch('nova.virt.libvirt.driver.LibvirtDriver._get_volume_encryptor')
+ @mock.patch('nova.virt.libvirt.driver.LibvirtDriver._use_native_luks')
def test_detach_encryptor_encrypted_volume_meta_provided(self,
- mock_get_encryptor, mock_get_metadata):
+ mock_use_native_luks, mock_get_encryptor, mock_get_metadata):
"""Assert that when provided there are no further attempts to fetch the
encryption metadata for the volume and that the provided metadata is
then used to detach the volume.
@@ -7863,6 +7866,7 @@ class LibvirtConnTestCase(test.NoDBTestCase,
mock_get_encryptor.return_value = mock_encryptor
encryption = {'provider': 'luks', 'control_location': 'front-end'}
connection_info = {'data': {'volume_id': uuids.volume_id}}
+ mock_use_native_luks.return_value = False
drvr._detach_encryptor(self.context, connection_info, encryption)
@@ -7871,6 +7875,27 @@ class LibvirtConnTestCase(test.NoDBTestCase,
encryption)
mock_encryptor.detach_volume.assert_called_once_with(**encryption)
+ @mock.patch('nova.virt.libvirt.host.Host.find_secret')
+ @mock.patch('nova.virt.libvirt.driver.LibvirtDriver._use_native_luks')
+ @mock.patch('nova.virt.libvirt.driver.LibvirtDriver._get_volume_encryptor')
+ def test_detach_encryptor_native_luks_device_path_secret_missing(self,
+ mock_get_encryptor, mock_use_native_luks, mock_find_secret):
+ """Assert that the encryptor is not built when native LUKS is
+ available, the associated volume secret is missing and device_path is
+ also missing from the connection_info.
+ """
+ drvr = libvirt_driver.LibvirtDriver(fake.FakeVirtAPI(), False)
+ encryption = {'provider': 'luks', 'control_location': 'front-end',
+ 'encryption_key_id': uuids.encryption_key_id}
+ connection_info = {'data': {'volume_id': uuids.volume_id}}
+ mock_find_secret.return_value = False
+ mock_use_native_luks.return_value = True
+
+ drvr._detach_encryptor(self.context, connection_info, encryption)
+
+ mock_find_secret.assert_called_once_with('volume', uuids.volume_id)
+ mock_get_encryptor.assert_not_called()
+
@mock.patch.object(host.Host, "has_min_version")
def test_use_native_luks(self, mock_has_min_version):
drvr = libvirt_driver.LibvirtDriver(fake.FakeVirtAPI(), False)
diff --git a/nova/virt/libvirt/driver.py b/nova/virt/libvirt/driver.py
index fb372f0f08..321af13dd9 100644
--- a/nova/virt/libvirt/driver.py
+++ b/nova/virt/libvirt/driver.py
@@ -1412,6 +1412,14 @@ class LibvirtDriver(driver.ComputeDriver):
return self._host.delete_secret('volume', volume_id)
if encryption is None:
encryption = self._get_volume_encryption(context, connection_info)
+ # NOTE(lyarwood): Handle bug #1821696 where volume secrets have been
+ # removed manually by returning if native LUKS decryption is available
+ # and device_path is not present in the connection_info. This avoids
+ # VolumeEncryptionNotSupported being thrown when we incorrectly build
+ # the encryptor below due to the secrets not being present above.
+ if (encryption and self._use_native_luks(encryption) and
+ not connection_info['data'].get('device_path')):
+ return
if encryption:
encryptor = self._get_volume_encryptor(connection_info,
encryption)