Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 852636 Details for
Bug 1055400
CVE-2013-7130 OpenStack nova: Live migration can leak root disk into ephemeral storage
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
CVE-2013-7130-master.patch
CVE-2013-7130-master.patch (text/plain), 6.03 KB, created by
Kurt Seifried
on 2014-01-20 07:42:18 UTC
(
hide
)
Description:
CVE-2013-7130-master.patch
Filename:
MIME Type:
Creator:
Kurt Seifried
Created:
2014-01-20 07:42:18 UTC
Size:
6.03 KB
patch
obsolete
>From 5e187853739d75e2e7dfbc3b86efa224b18fa04c Mon Sep 17 00:00:00 2001 >From: Nikola Dipanov <ndipanov@redhat.com> >Date: Tue, 10 Dec 2013 17:43:17 +0100 >Subject: [PATCH] libvirt: Fix root disk leak in live mig > >This patch makes sure that i_create_images_and_backing method of the >libvirt driver (called in several places, but most problematic one is >the call in the pre_live_migration method) creates all the files the >instance needs that are not present. > >Prioir to this patch - the method would only attempt to download the >image, and if it did so with the path of the ephemeral drives, it could >expose the image to other users as an ephemeral devices. See the related >bug for more detaiis. > >After this patch - we properly distinguish between image, ephemeral and >swap files, and make sure that the imagebackend does the correct thing. > >Closes-bug: #1251590 > >Co-authored-by: Loganathan Parthipan <parthipan@hp.com> > >Change-Id: I78aa2f4243899db4f4941e77014a7e18e27fc63e >--- > nova/tests/virt/libvirt/test_libvirt.py | 42 +++++++++++++++++++++++++++++++++ > nova/virt/libvirt/driver.py | 29 +++++++++++++++++------ > 2 files changed, 64 insertions(+), 7 deletions(-) > >diff --git a/nova/tests/virt/libvirt/test_libvirt.py b/nova/tests/virt/libvirt/test_libvirt.py >index 1d1bc24..2bcc723 100644 >--- a/nova/tests/virt/libvirt/test_libvirt.py >+++ b/nova/tests/virt/libvirt/test_libvirt.py >@@ -3332,6 +3332,48 @@ class LibvirtConnTestCase(test.TestCase): > def test_create_images_and_backing_raw(self): > self._do_test_create_images_and_backing('raw') > >+ def test_create_images_and_backing_ephemeral_gets_created(self): >+ conn = libvirt_driver.LibvirtDriver(fake.FakeVirtAPI(), False) >+ disk_info_json = jsonutils.dumps( >+ [{u'backing_file': u'fake_image_backing_file', >+ u'disk_size': 10747904, >+ u'path': u'disk_path', >+ u'type': u'qcow2', >+ u'virt_disk_size': 25165824}, >+ {u'backing_file': u'ephemeral_1_default', >+ u'disk_size': 393216, >+ u'over_committed_disk_size': 1073348608, >+ u'path': u'disk_eph_path', >+ u'type': u'qcow2', >+ u'virt_disk_size': 1073741824}]) >+ >+ base_dir = os.path.join(CONF.instances_path, >+ CONF.image_cache_subdirectory_name) >+ self.test_instance.update({'name': 'fake_instance', >+ 'user_id': 'fake-user', >+ 'os_type': None, >+ 'project_id': 'fake-project'}) >+ >+ with contextlib.nested( >+ mock.patch.object(conn, '_fetch_instance_kernel_ramdisk'), >+ mock.patch.object(libvirt_driver.libvirt_utils, 'fetch_image'), >+ mock.patch.object(conn, '_create_ephemeral') >+ ) as (fetch_kernel_ramdisk_mock, fetch_image_mock, >+ create_ephemeral_mock): >+ conn._create_images_and_backing(self.context, self.test_instance, >+ "/fake/instance/dir", >+ disk_info_json) >+ self.assertEqual(len(create_ephemeral_mock.call_args_list), 1) >+ m_args, m_kwargs = create_ephemeral_mock.call_args_list[0] >+ self.assertEqual( >+ os.path.join(base_dir, 'ephemeral_1_default'), >+ m_kwargs['target']) >+ self.assertEqual(len(fetch_image_mock.call_args_list), 1) >+ m_args, m_kwargs = fetch_image_mock.call_args_list[0] >+ self.assertEqual( >+ os.path.join(base_dir, 'fake_image_backing_file'), >+ m_kwargs['target']) >+ > def test_create_images_and_backing_disk_info_none(self): > conn = libvirt_driver.LibvirtDriver(fake.FakeVirtAPI(), False) > self.mox.StubOutWithMock(conn, '_fetch_instance_kernel_ramdisk') >diff --git a/nova/virt/libvirt/driver.py b/nova/virt/libvirt/driver.py >index 73d47a2..99a4968 100644 >--- a/nova/virt/libvirt/driver.py >+++ b/nova/virt/libvirt/driver.py >@@ -4376,13 +4376,28 @@ class LibvirtDriver(driver.ComputeDriver): > image = self.image_backend.image(instance, > instance_disk, > CONF.libvirt.images_type) >- image.cache(fetch_func=libvirt_utils.fetch_image, >- context=context, >- filename=cache_name, >- image_id=instance['image_ref'], >- user_id=instance['user_id'], >- project_id=instance['project_id'], >- size=info['virt_disk_size']) >+ if cache_name.startswith('ephemeral'): >+ image.cache(fetch_func=self._create_ephemeral, >+ fs_label=cache_name, >+ os_type=instance["os_type"], >+ filename=cache_name, >+ size=info['virt_disk_size'], >+ ephemeral_size=instance['ephemeral_gb']) >+ elif cache_name.startswith('swap'): >+ inst_type = flavors.extract_flavor(instance) >+ swap_mb = inst_type['swap'] >+ image.cache(fetch_func=self._create_swap, >+ filename="swap_%s" % swap_mb, >+ size=swap_mb * unit.Mi, >+ swap_mb=swap_mb) >+ else: >+ image.cache(fetch_func=libvirt_utils.fetch_image, >+ context=context, >+ filename=cache_name, >+ image_id=instance['image_ref'], >+ user_id=instance['user_id'], >+ project_id=instance['project_id'], >+ size=info['virt_disk_size']) > > # if image has kernel and ramdisk, just download > # following normal way. >-- >1.8.3.1 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1055400
: 852636 |
852637
|
852638