core-admin/qubes/storage/__init__.py

530 lines
18 KiB
Python
Raw Normal View History

2015-01-19 18:03:23 +01:00
#!/usr/bin/python2 -O
# vim: fileencoding=utf-8
2015-01-16 15:33:03 +01:00
#
2015-01-19 18:03:23 +01:00
# The Qubes OS Project, https://www.qubes-os.org/
2015-01-16 15:33:03 +01:00
#
2015-01-19 18:03:23 +01:00
# Copyright (C) 2013-2015 Joanna Rutkowska <joanna@invisiblethingslab.com>
# Copyright (C) 2013-2015 Marek Marczykowski-Górecki
# <marmarek@invisiblethingslab.com>
2015-01-16 15:33:03 +01:00
# Copyright (C) 2015 Wojtek Porczyk <woju@invisiblethingslab.com>
#
2015-01-19 18:03:23 +01:00
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
2015-01-16 15:33:03 +01:00
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
2015-01-19 18:03:23 +01:00
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2015-01-16 15:33:03 +01:00
#
""" Qubes storage system"""
2015-01-16 15:33:03 +01:00
from __future__ import absolute_import
import os
import os.path
2016-07-12 18:56:06 +02:00
import string # pylint: disable=deprecated-module
import time
from datetime import datetime
2015-01-16 15:33:03 +01:00
2016-06-02 22:02:06 +02:00
import lxml.etree
2016-04-27 21:51:40 +02:00
import pkg_resources
2015-01-16 15:33:03 +01:00
import qubes
2016-04-27 21:51:40 +02:00
import qubes.devices
import qubes.exc
2015-01-16 15:33:03 +01:00
import qubes.utils
STORAGE_ENTRY_POINT = 'qubes.storage'
2016-01-29 17:56:33 +01:00
class StoragePoolException(qubes.exc.QubesException):
2016-06-21 12:40:03 +02:00
''' A general storage exception '''
2016-01-29 17:56:33 +01:00
pass
2016-03-28 02:55:38 +02:00
class Volume(object):
''' Encapsulates all data about a volume for serialization to qubes.xml and
libvirt config.
2016-07-12 18:56:06 +02:00
Keep in mind!
volatile = not snap_on_start and not save_on_stop
snapshot = snap_on_start and not save_on_stop
origin = not snap_on_start and save_on_stop
origin_snapshot = snap_on_start and save_on_stop
2016-03-28 02:55:38 +02:00
'''
devtype = 'disk'
domain = None
path = None
script = None
usage = 0
2016-07-12 18:56:06 +02:00
def __init__(self, name, pool, vid, internal=False, removable=False,
revisions_to_keep=0, rw=False, save_on_stop=False, size=0,
snap_on_start=False, source=None, **kwargs):
''' Initialize a volume.
:param str name: The domain name
:param str pool: The pool name
:param str vid: Volume identifier needs to be unique in pool
:param bool internal: If `True` volume is hidden when qvm-block ls
is used
:param bool removable: If `True` volume can be detached from vm at
run time
:param int revisions_to_keep: Amount of revisions to keep around
:param bool rw: If true volume will be mounted read-write
:param bool snap_on_start: Create a snapshot from source on start
:param bool save_on_stop: Write changes to disk in vm.stop()
:param str source: Vid of other volume in same pool
:param str/int size: Size of the volume
'''
2016-04-22 14:58:21 +02:00
super(Volume, self).__init__(**kwargs)
2016-07-12 18:56:06 +02:00
2016-03-28 02:55:38 +02:00
self.name = str(name)
self.pool = str(pool)
self.internal = internal
2016-07-12 18:56:06 +02:00
self.removable = removable
self.revisions_to_keep = revisions_to_keep
self.rw = rw
self.save_on_stop = save_on_stop
self.size = int(size)
self.snap_on_start = snap_on_start
self.source = source
self.vid = vid
2016-03-28 02:55:38 +02:00
2016-07-12 18:56:06 +02:00
def __eq__(self, other):
return other.pool == self.pool and other.vid == self.vid
2016-07-12 18:56:06 +02:00
def __hash__(self):
return hash('%s:%s' % (self.pool, self.vid))
def __neq__(self, other):
return not self.__eq__(other)
2016-03-28 02:55:38 +02:00
def __repr__(self):
return '{!r}'.format(self.pool + ':' + self.vid)
2016-03-28 02:55:38 +02:00
2016-07-12 18:56:06 +02:00
def __str__(self):
return str(self.vid)
def __xml__(self):
config = _sanitize_config(self.config)
return lxml.etree.Element('volume', **config)
2016-03-28 02:55:38 +02:00
def block_device(self):
''' Return :py:class:`qubes.devices.BlockDevice` for serialization in
the libvirt XML template as <disk>.
'''
2016-06-02 22:02:06 +02:00
return qubes.devices.BlockDevice(self.path, self.name, self.script,
2016-07-12 18:56:06 +02:00
self.rw, self.domain, self.devtype)
2016-03-28 02:55:38 +02:00
2016-07-12 18:56:06 +02:00
@property
def revisions(self):
''' Returns a `dict` containing revision identifiers and paths '''
msg = "{!s} has revisions not implemented".format(self.__class__)
raise NotImplementedError(msg)
2016-04-27 21:51:40 +02:00
2016-07-12 18:56:06 +02:00
@property
def config(self):
''' return config data for serialization to qubes.xml '''
result = {'name': self.name, 'pool': self.pool, 'vid': self.vid, }
2016-04-27 21:51:40 +02:00
2016-07-12 18:56:06 +02:00
if self.internal:
result['internal'] = self.internal
2016-04-27 21:51:40 +02:00
2016-07-12 18:56:06 +02:00
if self.removable:
result['removable'] = self.removable
if self.revisions_to_keep:
result['revisions_to_keep'] = self.revisions_to_keep
if self.rw:
result['rw'] = self.rw
if self.save_on_stop:
result['save_on_stop'] = self.save_on_stop
if self.size:
result['size'] = self.size
if self.snap_on_start:
result['snap_on_start'] = self.snap_on_start
if self.source:
result['source'] = self.source
return result
2016-05-28 18:06:12 +02:00
2016-03-28 02:55:38 +02:00
class Storage(object):
2016-03-28 02:55:38 +02:00
''' Class for handling VM virtual disks.
2015-01-16 15:33:03 +01:00
This is base class for all other implementations, mostly with Xen on Linux
in mind.
2016-01-29 17:56:33 +01:00
'''
2015-01-16 15:33:03 +01:00
AVAILABLE_FRONTENDS = set(['xvd' + c for c in string.ascii_lowercase])
def __init__(self, vm):
2015-01-16 15:33:03 +01:00
#: Domain for which we manage storage
self.vm = vm
self.log = self.vm.log
#: Additional drive (currently used only by HVM)
self.drive = None
self.pools = {}
2016-07-12 18:56:06 +02:00
if hasattr(vm, 'volume_config'):
for name, conf in self.vm.volume_config.items():
assert 'pool' in conf, "Pool missing in volume_config" % str(
conf)
pool = self.vm.app.get_pool(conf['pool'])
self.vm.volumes[name] = pool.init_volume(self.vm, conf)
self.pools[name] = pool
2015-01-16 15:33:03 +01:00
def attach(self, volume, rw=False):
''' Attach a volume to the domain '''
assert self.vm.is_running()
if self._is_already_attached(volume):
self.vm.log.info("{!r} already attached".format(volume))
return
try:
frontend = self.unused_frontend()
except IndexError:
raise StoragePoolException("No unused frontend found")
disk = lxml.etree.Element("disk")
disk.set('type', 'block')
disk.set('device', 'disk')
lxml.etree.SubElement(disk, 'driver').set('name', 'phy')
lxml.etree.SubElement(disk, 'source').set('dev', '/dev/%s' % volume.vid)
lxml.etree.SubElement(disk, 'target').set('dev', frontend)
if not rw:
lxml.etree.SubElement(disk, 'readonly')
if self.vm.qid != 0:
lxml.etree.SubElement(disk, 'backenddomain').set(
'name', volume.pool.split('p_')[1])
xml_string = lxml.etree.tostring(disk, encoding='utf-8')
self.vm.libvirt_domain.attachDevice(xml_string)
# trigger watches to update device status
# FIXME: this should be removed once libvirt will report such
# events itself
# self.vm.qdb.write('/qubes-block-devices', '') ← do we need this?
def _is_already_attached(self, volume):
''' Checks if the given volume is already attached '''
parsed_xml = lxml.etree.fromstring(self.vm.libvirt_domain.XMLDesc())
disk_sources = parsed_xml.xpath("//domain/devices/disk/source")
for source in disk_sources:
if source.get('dev') == '/dev/%s' % volume.vid:
return True
return False
2016-05-09 05:12:37 +02:00
def detach(self, volume):
''' Detach a volume from domain '''
parsed_xml = lxml.etree.fromstring(self.vm.libvirt_domain.XMLDesc())
disks = parsed_xml.xpath("//domain/devices/disk")
for disk in disks:
source = disk.xpath('source')[0]
if source.get('dev') == '/dev/%s' % volume.vid:
disk_xml = lxml.etree.tostring(disk, encoding='utf-8')
self.vm.libvirt_domain.detachDevice(disk_xml)
return
raise StoragePoolException('Volume {!r} is not attached'.format(volume))
2015-10-02 16:02:51 +02:00
@property
def kernels_dir(self):
'''Directory where kernel resides.
If :py:attr:`self.vm.kernel` is :py:obj:`None`, the this points inside
:py:attr:`self.vm.dir_path`
'''
2016-07-12 18:56:06 +02:00
assert 'kernel' in self.vm.volumes, "VM has no kernel volume"
return self.vm.volumes['kernel'].kernels_dir
2015-10-02 16:02:51 +02:00
2015-01-16 15:33:03 +01:00
def get_disk_utilization(self):
''' Returns summed up disk utilization for all domain volumes '''
result = 0
for volume in self.vm.volumes.values():
result += volume.usage
return result
2015-01-16 15:33:03 +01:00
def resize(self, volume, size):
''' Resize volume '''
self.get_pool(volume).resize(volume, size)
2015-01-16 15:33:03 +01:00
def create(self, source_template=None):
2016-06-21 12:40:03 +02:00
''' Creates volumes on disk '''
if source_template is None and hasattr(self.vm, 'template'):
2015-01-16 15:33:03 +01:00
source_template = self.vm.template
old_umask = os.umask(002)
for name, volume in self.vm.volumes.items():
source_volume = None
if source_template and hasattr(source_template, 'volumes'):
source_volume = source_template.volumes[name]
self.get_pool(volume).create(volume, source_volume=source_volume)
2015-01-16 15:33:03 +01:00
os.umask(old_umask)
def clone(self, src_vm):
2016-06-21 12:40:03 +02:00
''' Clone volumes from the specified vm '''
2015-01-16 15:33:03 +01:00
self.vm.log.info('Creating directory: {0}'.format(self.vm.dir_path))
if not os.path.exists(self.vm.dir_path):
self.log.info('Creating directory: {0}'.format(self.vm.dir_path))
os.makedirs(self.vm.dir_path)
for name, target in self.vm.volumes.items():
pool = self.get_pool(target)
source = src_vm.volumes[name]
volume = pool.clone(source, target)
assert volume, "%s.clone() returned '%s'" % (pool.__class__,
volume)
self.vm.volumes[name] = volume
@property
def outdated_volumes(self):
''' Returns a list of outdated volumes '''
result = []
if self.vm.is_halted():
return result
volumes = self.vm.volumes
for volume in volumes.values():
pool = self.get_pool(volume)
if pool.is_outdated(volume):
result += [volume]
return result
def rename(self, old_name, new_name):
''' Notify the pools that the domain was renamed '''
volumes = self.vm.volumes
2016-07-12 18:56:06 +02:00
vm = self.vm
old_dir_path = os.path.join(os.path.dirname(vm.dir_path), old_name)
new_dir_path = os.path.join(os.path.dirname(vm.dir_path), new_name)
os.rename(old_dir_path, new_dir_path)
for name, volume in volumes.items():
pool = self.get_pool(volume)
volumes[name] = pool.rename(volume, old_name, new_name)
2015-01-16 15:33:03 +01:00
2016-07-12 18:56:06 +02:00
def verify(self):
'''Verify that the storage is sane.
On success, returns normally. On failure, raises exception.
'''
2015-01-16 15:33:03 +01:00
if not os.path.exists(self.vm.dir_path):
raise qubes.exc.QubesVMError(
self.vm,
'VM directory does not exist: {}'.format(self.vm.dir_path))
for volume in self.vm.volumes.values():
self.get_pool(volume).verify(volume)
self.vm.fire_event('domain-verify-files')
2016-07-12 18:56:06 +02:00
return True
2015-01-16 15:33:03 +01:00
def remove(self):
''' Remove all the volumes.
Errors on removal are catched and logged.
'''
for name, volume in self.vm.volumes.items():
self.log.info('Removing volume %s: %s' % (name, volume.vid))
try:
self.get_pool(volume).remove(volume)
except (IOError, OSError) as e:
self.vm.log.exception("Failed to remove volume %s", name, e)
2015-01-16 15:33:03 +01:00
def start(self):
''' Execute the start method on each pool '''
for volume in self.vm.volumes.values():
2016-07-12 18:56:06 +02:00
pool = self.get_pool(volume)
volume = pool.start(volume)
2015-01-16 15:33:03 +01:00
def stop(self):
''' Execute the start method on each pool '''
for volume in self.vm.volumes.values():
self.get_pool(volume).stop(volume)
2015-01-16 15:33:03 +01:00
def get_pool(self, volume):
''' Helper function '''
2016-07-12 18:56:06 +02:00
assert isinstance(volume, (Volume, basestring)), \
"You need to pass a Volume or pool name as str"
if isinstance(volume, Volume):
return self.pools[volume.name]
else:
return self.vm.app.pools[volume]
def commit_template_changes(self):
2016-06-21 12:40:03 +02:00
''' Makes changes to an 'origin' volume persistent '''
for volume in self.vm.volumes.values():
if volume.volume_type == 'origin':
self.get_pool(volume).commit_template_changes(volume)
def unused_frontend(self):
''' Find an unused device name '''
unused_frontends = self.AVAILABLE_FRONTENDS.difference(
self.used_frontends)
return sorted(unused_frontends)[0]
@property
def used_frontends(self):
''' Used device names '''
xml = self.vm.libvirt_domain.XMLDesc()
parsed_xml = lxml.etree.fromstring(xml)
return set([target.get('dev', None)
for target in parsed_xml.xpath(
"//domain/devices/disk/target")])
class Pool(object):
''' A Pool is used to manage different kind of volumes (File
based/LVM/Btrfs/...).
3rd Parties providing own storage implementations will need to extend
this class.
2016-07-12 18:56:06 +02:00
''' # pylint: disable=unused-argument
private_img_size = qubes.config.defaults['private_img_size']
root_img_size = qubes.config.defaults['root_img_size']
2016-07-12 18:56:06 +02:00
def __init__(self, name, revisions_to_keep=1, **kwargs):
super(Pool, self).__init__(**kwargs)
self.name = name
self.revisions_to_keep = revisions_to_keep
kwargs['name'] = self.name
2016-06-05 20:18:56 +02:00
def __eq__(self, other):
return self.name == other.name
def __neq__(self, other):
return not self.__eq__(other)
def __str__(self):
return self.name
def __xml__(self):
2016-07-12 18:56:06 +02:00
config = _sanitize_config(self.config)
return lxml.etree.Element('pool', **config)
2016-07-12 18:56:06 +02:00
def create(self, volume):
''' Create the given volume on disk or copy from provided
`source_volume`.
'''
2016-07-12 18:56:06 +02:00
raise self._not_implemented("create")
2016-07-12 18:56:06 +02:00
def commit(self, volume): # pylint: disable=no-self-use
''' Write the snapshot to disk '''
msg = "Got volume_type {!s} when expected 'snap'"
msg = msg.format(volume.volume_type)
assert volume.volume_type == 'snap', msg
@property
def config(self):
''' Returns the pool config to be written to qubes.xml '''
2016-07-12 18:56:06 +02:00
raise self._not_implemented("config")
def clone(self, source, target):
''' Clone volume '''
2016-07-12 18:56:06 +02:00
raise self._not_implemented("clone")
def destroy(self):
2016-06-21 12:40:03 +02:00
''' Called when removing the pool. Use this for implementation specific
clean up.
'''
2016-07-12 18:56:06 +02:00
raise self._not_implemented("destroy")
def export(self, volume):
''' Returns an object that can be `open()`. '''
raise self._not_implemented("export")
def import_volume(self, dst_pool, dst_volume, src_pool, src_volume):
''' Imports data to a volume in this pool '''
raise self._not_implemented("import_volume")
def init_volume(self, vm, volume_config):
''' Initialize a :py:class:`qubes.storage.Volume` from `volume_config`.
'''
raise self._not_implemented("init_volume")
def is_dirty(self, volume):
''' Return `True` if volume was not properly shutdown and commited '''
raise self._not_implemented("is_dirty")
def is_outdated(self, volume):
2016-07-12 18:56:06 +02:00
''' Returns `True` if the currently used `volume.source` of a snapshot
volume is outdated.
'''
raise self._not_implemented("is_outdated")
def recover(self, volume):
''' Try to recover a :py:class:`Volume` or :py:class:`SnapVolume` '''
raise self._not_implemented("recover")
def remove(self, volume):
''' Remove volume'''
2016-07-12 18:56:06 +02:00
raise self._not_implemented("remove")
def rename(self, volume, old_name, new_name):
''' Called when the domain changes its name '''
2016-07-12 18:56:06 +02:00
raise self._not_implemented("rename")
2016-07-12 18:56:06 +02:00
def reset(self, volume):
''' Drop and recreate volume without copying it's content from source.
'''
raise self._not_implemented("reset")
def revert(self, volume, revision=None):
''' Revert volume to previous revision '''
raise self._not_implemented("revert")
def setup(self):
2016-06-21 12:40:03 +02:00
''' Called when adding a pool to the system. Use this for implementation
specific set up.
'''
2016-07-12 18:56:06 +02:00
raise self._not_implemented("setup")
2016-07-12 18:56:06 +02:00
def start(self, volume): # pylint: disable=no-self-use
''' Do what ever is needed on start '''
raise self._not_implemented("start")
2016-07-12 18:56:06 +02:00
def stop(self, volume): # pylint: disable=no-self-use
''' Do what ever is needed on stop'''
def verify(self, volume):
''' Verifies the volume. '''
2016-07-12 18:56:06 +02:00
raise self._not_implemented("verify")
@property
def volumes(self):
''' Return a list of volumes managed by this pool '''
2016-07-12 18:56:06 +02:00
raise self._not_implemented("volumes")
def _not_implemented(self, method_name):
''' Helper for emitting helpful `NotImplementedError` exceptions '''
msg = "Pool driver {!s} has {!s}() not implemented"
msg = msg.format(str(self.__class__.__name__), method_name)
return NotImplementedError(msg)
def pool_drivers():
""" Return a list of EntryPoints names """
return [ep.name
for ep in pkg_resources.iter_entry_points(STORAGE_ENTRY_POINT)]
def isodate(seconds=time.time()):
''' Helper method which returns an iso date '''
return datetime.utcfromtimestamp(seconds).isoformat("T")