32255a7916
- Storage() operates on a pool and in future on multiple pools
448 lines
14 KiB
Python
448 lines
14 KiB
Python
#!/usr/bin/python2 -O
|
|
# vim: fileencoding=utf-8
|
|
|
|
#
|
|
# The Qubes OS Project, https://www.qubes-os.org/
|
|
#
|
|
# Copyright (C) 2013-2015 Joanna Rutkowska <joanna@invisiblethingslab.com>
|
|
# Copyright (C) 2013-2015 Marek Marczykowski-Górecki
|
|
# <marmarek@invisiblethingslab.com>
|
|
# Copyright (C) 2015 Wojtek Porczyk <woju@invisiblethingslab.com>
|
|
#
|
|
# 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.
|
|
#
|
|
# 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.
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
""" Qubes storage system"""
|
|
|
|
from __future__ import absolute_import
|
|
|
|
import os
|
|
import os.path
|
|
import shutil
|
|
import subprocess
|
|
|
|
import pkg_resources
|
|
import qubes
|
|
import qubes.exc
|
|
import qubes.utils
|
|
from qubes.devices import BlockDevice
|
|
|
|
BLKSIZE = 512
|
|
STORAGE_ENTRY_POINT = 'qubes.storage'
|
|
|
|
|
|
class StoragePoolException(qubes.exc.QubesException):
|
|
pass
|
|
|
|
|
|
class Volume(object):
|
|
''' Encapsulates all data about a volume for serialization to qubes.xml and
|
|
libvirt config.
|
|
'''
|
|
|
|
devtype = 'disk'
|
|
domain = None
|
|
path = None
|
|
rw = True
|
|
script = None
|
|
usage = 0
|
|
|
|
def __init__(self, name=None, pool=None, volume_type=None, vid=None,
|
|
size=0):
|
|
assert name and pool and volume_type
|
|
self.name = str(name)
|
|
self.pool = str(pool)
|
|
self.vid = vid
|
|
self.size = size
|
|
self.volume_type = volume_type
|
|
|
|
@property
|
|
def config(self):
|
|
''' return config data for serialization to qubes.xml '''
|
|
return {'name': self.name,
|
|
'pool': self.pool,
|
|
'volume_type': self.volume_type}
|
|
|
|
def __str__(self):
|
|
return str({'name': self.name, 'pool': self.pool, 'vid': self.vid})
|
|
|
|
def block_device(self):
|
|
''' Return :py:class:`qubes.devices.BlockDevice` for serialization in
|
|
the libvirt XML template as <disk>.
|
|
'''
|
|
return BlockDevice(self.path, self.name, self.script, self.rw,
|
|
self.domain, self.devtype)
|
|
|
|
|
|
class Storage(object):
|
|
''' Class for handling VM virtual disks.
|
|
|
|
This is base class for all other implementations, mostly with Xen on Linux
|
|
in mind.
|
|
'''
|
|
|
|
modules_dev = 'xvdd'
|
|
|
|
def __init__(self, vm):
|
|
#: Domain for which we manage storage
|
|
self.vm = vm
|
|
#: Additional drive (currently used only by HVM)
|
|
self.drive = None
|
|
for name, conf in self.vm.volume_config.items():
|
|
assert 'pool' in conf
|
|
pool = get_pool(conf['pool'], self.vm)
|
|
self.vm.volumes[name] = pool.init_volume(conf)
|
|
|
|
@property
|
|
def root_img(self):
|
|
pool = self.get_pool()
|
|
return pool.root_img
|
|
|
|
@property
|
|
def private_img(self):
|
|
pool = self.get_pool()
|
|
return pool.private_img
|
|
|
|
@property
|
|
def volatile_img(self):
|
|
pool = self.get_pool()
|
|
return pool.volatile_img
|
|
|
|
@property
|
|
def rootcow_img(self):
|
|
pool = self.get_pool()
|
|
return pool.rootcow_img
|
|
|
|
def get_config_params(self):
|
|
args = {}
|
|
args['rootdev'] = self.root_dev_config()
|
|
args['privatedev'] = self.private_dev_config()
|
|
args['volatiledev'] = self.volatile_dev_config()
|
|
args['otherdevs'] = self.other_dev_config()
|
|
|
|
args['kerneldir'] = self.kernels_dir
|
|
|
|
return args
|
|
|
|
def root_dev_config(self):
|
|
pool = self.get_pool()
|
|
return pool.root_dev_config()
|
|
|
|
def private_dev_config(self):
|
|
pool = self.get_pool()
|
|
return pool.private_dev_config()
|
|
|
|
def volatile_dev_config(self):
|
|
pool = self.get_pool()
|
|
return pool.volatile_dev_config()
|
|
|
|
def modules_dev_config(self):
|
|
return self.format_disk_dev(self.modules_img,
|
|
'kernel',
|
|
rw=self.modules_img_rw)
|
|
|
|
def other_dev_config(self):
|
|
if self.modules_img is not None:
|
|
return self.modules_dev_config()
|
|
elif self.drive is not None:
|
|
(drive_type, drive_domain, drive_path) = self.drive.split(":")
|
|
if drive_type == 'hd':
|
|
drive_type = 'disk'
|
|
|
|
rw = (drive_type == 'disk')
|
|
|
|
if drive_domain.lower() == "dom0":
|
|
drive_domain = None
|
|
|
|
return self.format_disk_dev(drive_path,
|
|
'other',
|
|
rw=rw,
|
|
devtype=drive_type,
|
|
domain=drive_domain)
|
|
|
|
else:
|
|
return ''
|
|
|
|
def format_disk_dev(self, path, name, script=None, rw=True, devtype='disk',
|
|
domain=None):
|
|
return BlockDevice(path, name, script, rw, domain, devtype)
|
|
|
|
@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`
|
|
'''
|
|
return os.path.join(qubes.config.system_path['qubes_base_dir'],
|
|
qubes.config.system_path['qubes_kernels_base_dir'], self.vm.kernel)\
|
|
if self.vm.kernel is not None \
|
|
else os.path.join(self.vm.dir_path,
|
|
qubes.config.vm_files['kernels_subdir'])
|
|
|
|
@property
|
|
def modules_img(self):
|
|
'''Path to image with modules.
|
|
|
|
Depending on domain, this may be global or inside domain's dir.
|
|
'''
|
|
|
|
modules_path = os.path.join(self.kernels_dir, 'modules.img')
|
|
|
|
if os.path.exists(modules_path):
|
|
return modules_path
|
|
else:
|
|
return None
|
|
|
|
|
|
@property
|
|
def modules_img_rw(self):
|
|
''':py:obj:`True` if module image should be mounted RW, :py:obj:`False`
|
|
otherwise.'''
|
|
return self.vm.kernel is None
|
|
|
|
|
|
def get_disk_utilization(self):
|
|
return get_disk_usage(self.vm.dir_path)
|
|
|
|
def get_disk_utilization_private_img(self):
|
|
# pylint: disable=invalid-name
|
|
return get_disk_usage(self.private_img)
|
|
|
|
def get_private_img_sz(self):
|
|
if not os.path.exists(self.private_img):
|
|
return 0
|
|
|
|
return os.path.getsize(self.private_img)
|
|
|
|
def resize_private_img(self, size):
|
|
raise NotImplementedError()
|
|
|
|
def create_on_disk(self, source_template=None):
|
|
if source_template is None and hasattr(self.vm, 'template'):
|
|
source_template = self.vm.template
|
|
|
|
old_umask = os.umask(002)
|
|
|
|
self.vm.log.info('Creating directory: {0}'.format(self.vm.dir_path))
|
|
os.makedirs(self.vm.dir_path)
|
|
pool = self.get_pool()
|
|
pool.create_on_disk_private_img(source_template)
|
|
pool.create_on_disk_root_img(source_template)
|
|
pool.reset_volatile_storage()
|
|
|
|
os.umask(old_umask)
|
|
|
|
def clone_disk_files(self, src_vm):
|
|
self.vm.log.info('Creating directory: {0}'.format(self.vm.dir_path))
|
|
os.mkdir(self.vm.dir_path)
|
|
|
|
if hasattr(src_vm, 'private_img'):
|
|
self.vm.log.info('Copying the private image: {} -> {}'.format(
|
|
src_vm.private_img, self.vm.private_img))
|
|
self._copy_file(src_vm.private_img, self.vm.private_img)
|
|
|
|
if src_vm.updateable and hasattr(src_vm, 'root_img'):
|
|
self.vm.log.info('Copying the root image: {} -> {}'.format(
|
|
src_vm.root_img, self.root_img))
|
|
self._copy_file(src_vm.root_img, self.root_img)
|
|
|
|
# TODO: modules?
|
|
# XXX which modules? -woju
|
|
|
|
|
|
@staticmethod
|
|
def rename(newpath, oldpath):
|
|
'''Move storage directory, most likely during domain's rename.
|
|
|
|
.. note::
|
|
The arguments are in different order than in :program:`cp` utility.
|
|
|
|
.. versionchange:: 4.0
|
|
This is now dummy method that just passes everything to
|
|
:py:func:`os.rename`.
|
|
|
|
:param str newpath: New path
|
|
:param str oldpath: Old path
|
|
'''
|
|
|
|
os.rename(oldpath, newpath)
|
|
|
|
|
|
def verify_files(self):
|
|
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))
|
|
|
|
if hasattr(self.vm, 'root_img') and not os.path.exists(self.root_img):
|
|
raise qubes.exc.QubesVMError(self.vm,
|
|
'VM root image file does not exist: {}'.format(self.root_img))
|
|
|
|
if hasattr(self.vm, 'private_img') \
|
|
and not os.path.exists(self.private_img):
|
|
raise qubes.exc.QubesVMError(self.vm,
|
|
'VM private image file does not exist: {}'.format(
|
|
self.private_img))
|
|
|
|
if self.modules_img is not None \
|
|
and not os.path.exists(self.modules_img):
|
|
raise qubes.exc.QubesVMError(self.vm,
|
|
'VM kernel modules image does not exists: {}'.format(
|
|
self.modules_img))
|
|
|
|
|
|
def remove_from_disk(self):
|
|
shutil.rmtree(self.vm.dir_path)
|
|
|
|
|
|
|
|
def prepare_for_vm_startup(self):
|
|
pool = get_pool(self.vm.pool_name, self.vm)
|
|
pool.reset_volatile_storage()
|
|
|
|
if hasattr(self.vm, 'private_img') \
|
|
and not os.path.exists(self.private_img):
|
|
self.vm.log.info('Creating empty VM private image file: {0}'.format(
|
|
pool.private_img))
|
|
pool.create_on_disk_private_img()
|
|
|
|
def get_pool(self):
|
|
return get_pool(self.vm.pool_name, self.vm)
|
|
|
|
def commit_template_changes(self):
|
|
pool = self.get_pool()
|
|
pool.commit_template_changes()
|
|
|
|
def get_disk_usage_one(st):
|
|
'''Extract disk usage of one inode from its stat_result struct.
|
|
|
|
If known, get real disk usage, as written to device by filesystem, not
|
|
logical file size. Those values may be different for sparse files.
|
|
|
|
:param os.stat_result st: stat result
|
|
:returns: disk usage
|
|
'''
|
|
try:
|
|
return st.st_blocks * BLKSIZE
|
|
except AttributeError:
|
|
return st.st_size
|
|
|
|
|
|
def get_disk_usage(path):
|
|
'''Get real disk usage of given path (file or directory).
|
|
|
|
When *path* points to directory, then it is evaluated recursively.
|
|
|
|
This function tries estiate real disk usage. See documentation of
|
|
:py:func:`get_disk_usage_one`.
|
|
|
|
:param str path: path to evaluate
|
|
:returns: disk usage
|
|
'''
|
|
try:
|
|
st = os.lstat(path)
|
|
except OSError:
|
|
return 0
|
|
|
|
ret = get_disk_usage_one(st)
|
|
|
|
# if path is not a directory, this is skipped
|
|
for dirpath, dirnames, filenames in os.walk(path):
|
|
for name in dirnames + filenames:
|
|
ret += get_disk_usage_one(os.lstat(os.path.join(dirpath, name)))
|
|
|
|
return ret
|
|
|
|
class Pool(object):
|
|
private_img_size = qubes.config.defaults['private_img_size']
|
|
root_img_size = qubes.config.defaults['root_img_size']
|
|
|
|
def __init__(self, vm=None, name=None, **kwargs):
|
|
assert vm
|
|
assert name, "Pool name is missing"
|
|
self.vm = vm
|
|
self.name = name
|
|
|
|
def root_dev_config(self):
|
|
raise NotImplementedError()
|
|
|
|
def private_dev_config(self):
|
|
raise NotImplementedError()
|
|
|
|
def volatile_dev_config(self):
|
|
raise NotImplementedError()
|
|
|
|
def create_on_disk_private_img(self, source_template=None):
|
|
raise NotImplementedError()
|
|
|
|
def create_on_disk_root_img(self, source_template=None):
|
|
raise NotImplementedError()
|
|
|
|
def create_dir_if_not_exists(self, path):
|
|
""" Check if a directory exists in if not create it.
|
|
|
|
This method does not create any parent directories.
|
|
"""
|
|
if not os.path.exists(path):
|
|
os.mkdir(path)
|
|
|
|
def commit_template_changes(self):
|
|
raise NotImplementedError()
|
|
@staticmethod
|
|
def _copy_file(source, destination):
|
|
'''Effective file copy, preserving sparse files etc.
|
|
'''
|
|
# TODO: Windows support
|
|
|
|
# We prefer to use Linux's cp, because it nicely handles sparse files
|
|
try:
|
|
subprocess.check_call(['cp', '--reflink=auto', source, destination
|
|
])
|
|
except subprocess.CalledProcessError:
|
|
raise IOError('Error while copying {!r} to {!r}'.format(
|
|
source, destination))
|
|
|
|
def format_disk_dev(self, path, vdev, script=None, rw=True, devtype='disk',
|
|
domain=None):
|
|
|
|
return BlockDevice(path, vdev, script, rw, domain, devtype)
|
|
def reset_volatile_storage(self):
|
|
# Re-create only for template based VMs
|
|
try:
|
|
if self.vm.template is not None and self.volatile_img:
|
|
if os.path.exists(self.volatile_img):
|
|
os.remove(self.volatile_img)
|
|
except AttributeError: # self.vm.template
|
|
pass
|
|
|
|
# For StandaloneVM create it only if not already exists
|
|
# (eg after backup-restore)
|
|
if hasattr(self, 'volatile_img') \
|
|
and not os.path.exists(self.volatile_img):
|
|
self.vm.log.info(
|
|
'Creating volatile image: {0}'.format(self.volatile_img))
|
|
subprocess.check_call(
|
|
[qubes.config.system_path["prepare_volatile_img_cmd"],
|
|
self.volatile_img,
|
|
str(self.root_img_size / 1024 / 1024)])
|
|
|
|
def init_volume(self, volume_config):
|
|
raise NotImplementedError()
|
|
|
|
def pool_drivers():
|
|
""" Return a list of EntryPoints names """
|
|
return [ep.name
|
|
for ep in pkg_resources.iter_entry_points(STORAGE_ENTRY_POINT)]
|