2016-07-12 18:44:05 +02:00
|
|
|
#
|
|
|
|
# The Qubes OS Project, http://www.qubes-os.org
|
|
|
|
#
|
|
|
|
# Copyright (C) 2016 Bahtiar `kalkin-` Gadimov <bahtiar@gadimov.de>
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
2017-01-18 22:16:46 +01:00
|
|
|
|
2016-07-12 18:44:05 +02:00
|
|
|
''' Driver for storing vm images in a LVM thin pool '''
|
|
|
|
|
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
|
|
|
|
import qubes
|
2017-06-09 04:46:46 +02:00
|
|
|
import qubes.storage
|
|
|
|
import qubes.utils
|
2016-07-12 18:44:05 +02:00
|
|
|
|
|
|
|
|
2016-11-25 02:04:09 +01:00
|
|
|
def check_lvm_version():
|
|
|
|
#Check if lvm is very very old, like in Travis-CI
|
|
|
|
try:
|
|
|
|
lvm_help = subprocess.check_output(['lvm', 'lvcreate', '--help'],
|
|
|
|
stderr=subprocess.DEVNULL).decode()
|
|
|
|
return '--setactivationskip' not in lvm_help
|
2017-05-26 15:06:12 +02:00
|
|
|
except (subprocess.CalledProcessError, FileNotFoundError):
|
2016-11-25 02:04:09 +01:00
|
|
|
pass
|
|
|
|
|
|
|
|
lvm_is_very_old = check_lvm_version()
|
|
|
|
|
2016-07-12 18:44:05 +02:00
|
|
|
class ThinPool(qubes.storage.Pool):
|
|
|
|
''' LVM Thin based pool implementation
|
|
|
|
''' # pylint: disable=protected-access
|
|
|
|
|
2016-08-28 23:50:04 +02:00
|
|
|
size_cache = None
|
|
|
|
|
2016-07-12 18:44:05 +02:00
|
|
|
driver = 'lvm_thin'
|
|
|
|
|
2016-07-14 15:24:11 +02:00
|
|
|
def __init__(self, volume_group, thin_pool, revisions_to_keep=1, **kwargs):
|
|
|
|
super(ThinPool, self).__init__(revisions_to_keep=revisions_to_keep,
|
|
|
|
**kwargs)
|
2016-07-12 18:44:05 +02:00
|
|
|
self.volume_group = volume_group
|
|
|
|
self.thin_pool = thin_pool
|
|
|
|
self._pool_id = "{!s}/{!s}".format(volume_group, thin_pool)
|
|
|
|
self.log = logging.getLogger('qube.storage.lvm.%s' % self._pool_id)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def config(self):
|
|
|
|
return {
|
|
|
|
'name': self.name,
|
|
|
|
'volume_group': self.volume_group,
|
|
|
|
'thin_pool': self.thin_pool,
|
|
|
|
'driver': ThinPool.driver
|
|
|
|
}
|
|
|
|
|
|
|
|
def destroy(self):
|
|
|
|
pass # TODO Should we remove an existing pool?
|
|
|
|
|
|
|
|
def init_volume(self, vm, volume_config):
|
|
|
|
''' Initialize a :py:class:`qubes.storage.Volume` from `volume_config`.
|
|
|
|
'''
|
|
|
|
|
|
|
|
if 'vid' not in volume_config.keys():
|
|
|
|
if vm and hasattr(vm, 'name'):
|
|
|
|
vm_name = vm.name
|
|
|
|
else:
|
|
|
|
# for the future if we have volumes not belonging to a vm
|
|
|
|
vm_name = qubes.utils.random_string()
|
|
|
|
|
|
|
|
assert self.name
|
|
|
|
|
2017-06-07 01:21:51 +02:00
|
|
|
volume_config['vid'] = "{!s}/vm-{!s}-{!s}".format(
|
2016-07-12 18:44:05 +02:00
|
|
|
self.volume_group, vm_name, volume_config['name'])
|
|
|
|
|
|
|
|
volume_config['volume_group'] = self.volume_group
|
2017-06-09 04:46:46 +02:00
|
|
|
volume_config['pool'] = self
|
2016-07-12 18:44:05 +02:00
|
|
|
return ThinVolume(**volume_config)
|
|
|
|
|
|
|
|
def setup(self):
|
2016-08-18 11:41:02 +02:00
|
|
|
pass # TODO Should we create a non existing pool?
|
2016-07-12 18:44:05 +02:00
|
|
|
|
2017-06-26 02:46:49 +02:00
|
|
|
def list_volumes(self):
|
2016-07-12 18:44:05 +02:00
|
|
|
''' Return a list of volumes managed by this pool '''
|
|
|
|
volumes = []
|
2016-11-03 03:53:06 +01:00
|
|
|
for vid, vol_info in size_cache.items():
|
|
|
|
if not vid.startswith(self.volume_group + '/'):
|
|
|
|
continue
|
|
|
|
if vol_info['pool_lv'] != self.thin_pool:
|
2016-07-12 18:44:05 +02:00
|
|
|
continue
|
2016-11-04 13:19:49 +01:00
|
|
|
if vid.endswith('-snap'):
|
|
|
|
# implementation detail volume
|
|
|
|
continue
|
2016-07-12 18:44:05 +02:00
|
|
|
config = {
|
2017-06-26 11:42:24 +02:00
|
|
|
'pool': self,
|
2016-07-12 18:44:05 +02:00
|
|
|
'vid': vid,
|
|
|
|
'name': vid,
|
|
|
|
'volume_group': self.volume_group,
|
2016-11-03 03:53:06 +01:00
|
|
|
'rw': vol_info['attr'][1] == 'w',
|
2016-07-12 18:44:05 +02:00
|
|
|
}
|
|
|
|
volumes += [ThinVolume(**config)]
|
|
|
|
return volumes
|
|
|
|
|
2016-08-28 23:50:04 +02:00
|
|
|
|
|
|
|
def init_cache(log=logging.getLogger('qube.storage.lvm')):
|
2016-11-03 03:53:06 +01:00
|
|
|
cmd = ['lvs', '--noheadings', '-o',
|
|
|
|
'vg_name,pool_lv,name,lv_size,data_percent,lv_attr',
|
|
|
|
'--units', 'b', '--separator', ',']
|
|
|
|
if os.getuid() != 0:
|
|
|
|
cmd.insert(0, 'sudo')
|
|
|
|
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
|
|
|
|
close_fds=True)
|
2016-08-28 23:50:04 +02:00
|
|
|
out, err = p.communicate()
|
|
|
|
return_code = p.returncode
|
|
|
|
if return_code == 0 and err:
|
|
|
|
log.warning(err)
|
|
|
|
elif return_code != 0:
|
|
|
|
raise qubes.storage.StoragePoolException(err)
|
|
|
|
|
|
|
|
result = {}
|
|
|
|
|
2016-09-02 19:46:11 +02:00
|
|
|
for line in out.splitlines():
|
2017-01-26 18:26:06 +01:00
|
|
|
line = line.decode().strip()
|
2016-11-03 03:53:06 +01:00
|
|
|
pool_name, pool_lv, name, size, usage_percent, attr = line.split(',', 5)
|
|
|
|
if '' in [pool_name, pool_lv, name, size, usage_percent]:
|
2016-08-28 23:50:04 +02:00
|
|
|
continue
|
|
|
|
name = pool_name + "/" + name
|
|
|
|
size = int(size[:-1])
|
|
|
|
usage = int(size / 100 * float(usage_percent))
|
2016-11-03 03:53:06 +01:00
|
|
|
result[name] = {'size': size, 'usage': usage, 'pool_lv': pool_lv,
|
|
|
|
'attr': attr}
|
2016-08-28 23:50:04 +02:00
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
size_cache = init_cache()
|
|
|
|
|
2016-07-12 18:44:05 +02:00
|
|
|
class ThinVolume(qubes.storage.Volume):
|
|
|
|
''' Default LVM thin volume implementation
|
|
|
|
''' # pylint: disable=too-few-public-methods
|
|
|
|
|
2016-08-28 23:50:04 +02:00
|
|
|
|
2016-09-02 19:45:31 +02:00
|
|
|
def __init__(self, volume_group, size=0, **kwargs):
|
2016-07-12 18:44:05 +02:00
|
|
|
self.volume_group = volume_group
|
2016-09-02 19:45:31 +02:00
|
|
|
super(ThinVolume, self).__init__(size=size, **kwargs)
|
2017-06-09 04:46:46 +02:00
|
|
|
self.log = logging.getLogger('qube.storage.lvm.%s' % str(self.pool))
|
2016-07-12 18:44:05 +02:00
|
|
|
|
|
|
|
if self.snap_on_start and self.source is None:
|
|
|
|
msg = "snap_on_start specified on {!r} but no volume source set"
|
|
|
|
msg = msg.format(self.name)
|
|
|
|
raise qubes.storage.StoragePoolException(msg)
|
|
|
|
elif not self.snap_on_start and self.source is not None:
|
|
|
|
msg = "source specified on {!r} but no snap_on_start set"
|
|
|
|
msg = msg.format(self.name)
|
|
|
|
raise qubes.storage.StoragePoolException(msg)
|
|
|
|
|
2016-11-04 12:49:07 +01:00
|
|
|
if self.snap_on_start:
|
2016-07-12 18:44:05 +02:00
|
|
|
self._vid_snap = self.vid + '-snap'
|
|
|
|
|
2016-09-02 19:45:31 +02:00
|
|
|
self._size = size
|
|
|
|
|
2017-06-07 00:20:41 +02:00
|
|
|
@property
|
|
|
|
def path(self):
|
|
|
|
return '/dev/' + self.vid
|
|
|
|
|
2016-07-12 18:44:05 +02:00
|
|
|
@property
|
|
|
|
def revisions(self):
|
2016-07-14 15:24:11 +02:00
|
|
|
path = self.path + '-back'
|
|
|
|
if os.path.exists(path):
|
|
|
|
seconds = os.path.getctime(path)
|
|
|
|
iso_date = qubes.storage.isodate(seconds).split('.', 1)[0]
|
|
|
|
return {iso_date: path}
|
2016-07-12 18:44:05 +02:00
|
|
|
return {}
|
|
|
|
|
|
|
|
@property
|
|
|
|
def _is_origin(self):
|
|
|
|
return not self.snap_on_start and self.save_on_stop
|
|
|
|
|
|
|
|
@property
|
|
|
|
def _is_origin_snapshot(self):
|
|
|
|
return self.snap_on_start and self.save_on_stop
|
|
|
|
|
|
|
|
@property
|
|
|
|
def _is_snapshot(self):
|
|
|
|
return self.snap_on_start and not self.save_on_stop
|
|
|
|
|
|
|
|
@property
|
|
|
|
def _is_volatile(self):
|
|
|
|
return not self.snap_on_start and not self.save_on_stop
|
|
|
|
|
2016-08-28 23:50:04 +02:00
|
|
|
@property
|
|
|
|
def size(self):
|
|
|
|
try:
|
|
|
|
return qubes.storage.lvm.size_cache[self.vid]['size']
|
|
|
|
except KeyError:
|
|
|
|
return self._size
|
|
|
|
|
2016-09-04 23:49:42 +02:00
|
|
|
@size.setter
|
|
|
|
def size(self, _):
|
|
|
|
raise qubes.storage.StoragePoolException(
|
|
|
|
"You shouldn't use lvm size setter")
|
|
|
|
|
2017-06-09 04:46:46 +02:00
|
|
|
def _reset(self):
|
|
|
|
''' Resets a volatile volume '''
|
|
|
|
assert self._is_volatile, \
|
|
|
|
'Expected a volatile volume, but got {!r}'.format(self)
|
|
|
|
self.log.debug('Resetting volatile ' + self.vid)
|
|
|
|
try:
|
|
|
|
cmd = ['remove', self.vid]
|
|
|
|
qubes_lvm(cmd, self.log)
|
|
|
|
except qubes.storage.StoragePoolException:
|
|
|
|
pass
|
|
|
|
# pylint: disable=protected-access
|
|
|
|
cmd = ['create', self.pool._pool_id, self.vid.split('/')[1],
|
|
|
|
str(self.size)]
|
|
|
|
qubes_lvm(cmd, self.log)
|
|
|
|
|
|
|
|
def _commit(self):
|
|
|
|
msg = "Trying to commit {!s}, but it has save_on_stop == False"
|
|
|
|
msg = msg.format(self)
|
|
|
|
assert self.save_on_stop, msg
|
|
|
|
|
|
|
|
msg = "Trying to commit {!s}, but it has rw == False"
|
|
|
|
msg = msg.format(self)
|
|
|
|
assert self.rw, msg
|
|
|
|
assert hasattr(self, '_vid_snap')
|
|
|
|
|
|
|
|
try:
|
|
|
|
cmd = ['remove', self.vid + "-back"]
|
|
|
|
qubes_lvm(cmd, self.log)
|
|
|
|
except qubes.storage.StoragePoolException:
|
|
|
|
pass
|
|
|
|
cmd = ['clone', self.vid, self.vid + "-back"]
|
|
|
|
qubes_lvm(cmd, self.log)
|
|
|
|
|
|
|
|
cmd = ['remove', self.vid]
|
|
|
|
qubes_lvm(cmd, self.log)
|
|
|
|
cmd = ['clone', self._vid_snap, self.vid]
|
|
|
|
qubes_lvm(cmd, self.log)
|
|
|
|
|
|
|
|
|
|
|
|
def create(self):
|
|
|
|
assert self.vid
|
|
|
|
assert self.size
|
|
|
|
if self.save_on_stop:
|
|
|
|
if self.source:
|
|
|
|
cmd = ['clone', str(self.source), self.vid]
|
|
|
|
else:
|
|
|
|
cmd = [
|
|
|
|
'create',
|
|
|
|
self.pool._pool_id, # pylint: disable=protected-access
|
|
|
|
self.vid.split('/', 1)[1],
|
|
|
|
str(self.size)
|
|
|
|
]
|
|
|
|
qubes_lvm(cmd, self.log)
|
|
|
|
reset_cache()
|
|
|
|
return self
|
|
|
|
|
2017-06-26 11:39:02 +02:00
|
|
|
def remove(self):
|
|
|
|
assert self.vid
|
|
|
|
if self.is_dirty():
|
|
|
|
cmd = ['remove', self._vid_snap]
|
|
|
|
qubes_lvm(cmd, self.log)
|
|
|
|
|
|
|
|
if not os.path.exists(self.path):
|
|
|
|
return
|
|
|
|
cmd = ['remove', self.vid]
|
|
|
|
qubes_lvm(cmd, self.log)
|
|
|
|
reset_cache()
|
|
|
|
|
2017-06-09 04:46:46 +02:00
|
|
|
def export(self):
|
|
|
|
''' Returns an object that can be `open()`. '''
|
|
|
|
devpath = '/dev/' + self.vid
|
|
|
|
return devpath
|
|
|
|
|
|
|
|
def import_volume(self, src_volume):
|
|
|
|
if not src_volume.save_on_stop:
|
|
|
|
return self
|
|
|
|
|
|
|
|
# HACK: neat trick to speed up testing if you have same physical thin
|
|
|
|
# pool assigned to two qubes-pools i.e: qubes_dom0 and test-lvm
|
|
|
|
# pylint: disable=line-too-long
|
|
|
|
if isinstance(src_volume.pool, ThinPool) and \
|
|
|
|
src_volume.pool.thin_pool == self.pool.thin_pool: # NOQA
|
2017-06-26 11:59:53 +02:00
|
|
|
cmd = ['remove', self.vid]
|
|
|
|
qubes_lvm(cmd, self.log)
|
2017-06-09 04:46:46 +02:00
|
|
|
cmd = ['clone', str(src_volume), str(self)]
|
|
|
|
qubes_lvm(cmd, self.log)
|
|
|
|
else:
|
2017-06-26 11:42:24 +02:00
|
|
|
src_path = src_volume.export()
|
2017-06-09 04:46:46 +02:00
|
|
|
cmd = ['sudo', 'dd', 'if=' + src_path, 'of=/dev/' + self.vid,
|
|
|
|
'conv=sparse']
|
|
|
|
subprocess.check_call(cmd)
|
|
|
|
reset_cache()
|
|
|
|
|
|
|
|
return self
|
|
|
|
|
|
|
|
def import_data(self):
|
|
|
|
''' Returns an object that can be `open()`. '''
|
|
|
|
devpath = '/dev/' + self.vid
|
|
|
|
return devpath
|
|
|
|
|
|
|
|
def is_dirty(self):
|
|
|
|
if self.save_on_stop:
|
|
|
|
return os.path.exists(self.path + '-snap')
|
|
|
|
return False
|
|
|
|
|
|
|
|
def revert(self, revision=None):
|
|
|
|
old_path = self.path + '-back'
|
|
|
|
if not os.path.exists(old_path):
|
|
|
|
msg = "Volume {!s} has no {!s}".format(self, old_path)
|
|
|
|
raise qubes.storage.StoragePoolException(msg)
|
|
|
|
|
|
|
|
cmd = ['remove', self.vid]
|
|
|
|
qubes_lvm(cmd, self.log)
|
|
|
|
cmd = ['clone', self.vid + '-back', self.vid]
|
|
|
|
qubes_lvm(cmd, self.log)
|
|
|
|
reset_cache()
|
|
|
|
return self
|
|
|
|
|
|
|
|
def resize(self, size):
|
|
|
|
''' Expands volume, throws
|
|
|
|
:py:class:`qubst.storage.qubes.storage.StoragePoolException` if
|
|
|
|
given size is less than current_size
|
|
|
|
'''
|
|
|
|
if not self.rw:
|
|
|
|
msg = 'Can not resize reađonly volume {!s}'.format(self)
|
|
|
|
raise qubes.storage.StoragePoolException(msg)
|
|
|
|
|
|
|
|
if size <= self.size:
|
|
|
|
raise qubes.storage.StoragePoolException(
|
|
|
|
'For your own safety, shrinking of %s is'
|
|
|
|
' disabled. If you really know what you'
|
|
|
|
' are doing, use `lvresize` on %s manually.' %
|
|
|
|
(self.name, self.vid))
|
|
|
|
|
|
|
|
cmd = ['extend', self.vid, str(size)]
|
|
|
|
qubes_lvm(cmd, self.log)
|
|
|
|
reset_cache()
|
|
|
|
|
|
|
|
def _snapshot(self):
|
|
|
|
try:
|
|
|
|
cmd = ['remove', self._vid_snap]
|
|
|
|
qubes_lvm(cmd, self.log)
|
|
|
|
except: # pylint: disable=bare-except
|
|
|
|
pass
|
|
|
|
|
|
|
|
if self.source is None:
|
|
|
|
cmd = ['clone', self.vid, self._vid_snap]
|
|
|
|
else:
|
|
|
|
cmd = ['clone', str(self.source), self._vid_snap]
|
|
|
|
qubes_lvm(cmd, self.log)
|
|
|
|
|
|
|
|
|
|
|
|
def start(self):
|
|
|
|
if self.snap_on_start:
|
|
|
|
if not self.save_on_stop or not self.is_dirty():
|
|
|
|
self._snapshot()
|
|
|
|
elif not self.save_on_stop:
|
|
|
|
self._reset()
|
|
|
|
|
|
|
|
reset_cache()
|
|
|
|
return self
|
|
|
|
|
|
|
|
def stop(self):
|
|
|
|
if self.save_on_stop and self.snap_on_start:
|
|
|
|
self._commit()
|
|
|
|
if self.snap_on_start:
|
|
|
|
cmd = ['remove', self._vid_snap]
|
|
|
|
qubes_lvm(cmd, self.log)
|
|
|
|
elif not self.save_on_stop:
|
|
|
|
cmd = ['remove', self.vid]
|
|
|
|
qubes_lvm(cmd, self.log)
|
|
|
|
reset_cache()
|
|
|
|
return self
|
|
|
|
|
|
|
|
def verify(self):
|
|
|
|
''' Verifies the volume. '''
|
|
|
|
try:
|
|
|
|
vol_info = size_cache[self.vid]
|
|
|
|
return vol_info['attr'][4] == 'a'
|
|
|
|
except KeyError:
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
2016-11-03 21:41:48 +01:00
|
|
|
def block_device(self):
|
2017-04-15 16:29:50 +02:00
|
|
|
''' Return :py:class:`qubes.storage.BlockDevice` for serialization in
|
2016-11-03 21:41:48 +01:00
|
|
|
the libvirt XML template as <disk>.
|
|
|
|
'''
|
2016-11-04 12:49:07 +01:00
|
|
|
if self.snap_on_start:
|
2017-04-15 16:29:50 +02:00
|
|
|
return qubes.storage.BlockDevice(
|
2016-11-03 21:41:48 +01:00
|
|
|
'/dev/' + self._vid_snap, self.name, self.script,
|
|
|
|
self.rw, self.domain, self.devtype)
|
2017-04-15 20:04:38 +02:00
|
|
|
|
|
|
|
return super(ThinVolume, self).block_device()
|
2016-09-04 23:49:42 +02:00
|
|
|
|
2016-08-28 23:50:04 +02:00
|
|
|
@property
|
|
|
|
def usage(self): # lvm thin usage always returns at least the same usage as
|
|
|
|
# the parent
|
|
|
|
try:
|
|
|
|
return qubes.storage.lvm.size_cache[self.vid]['usage']
|
|
|
|
except KeyError:
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
2016-07-12 18:44:05 +02:00
|
|
|
def pool_exists(pool_id):
|
|
|
|
''' Return true if pool exists '''
|
2016-11-03 03:53:06 +01:00
|
|
|
try:
|
|
|
|
vol_info = size_cache[pool_id]
|
|
|
|
return vol_info['attr'][0] == 't'
|
|
|
|
except KeyError:
|
|
|
|
return False
|
2016-07-12 18:44:05 +02:00
|
|
|
|
|
|
|
|
2017-06-09 04:46:46 +02:00
|
|
|
def qubes_lvm(cmd, log=logging.getLogger('qubes.storage.lvm')):
|
2016-11-03 03:53:06 +01:00
|
|
|
''' Call :program:`lvm` to execute an LVM operation '''
|
|
|
|
action = cmd[0]
|
|
|
|
if action == 'remove':
|
|
|
|
lvm_cmd = ['lvremove', '-f', cmd[1]]
|
|
|
|
elif action == 'clone':
|
|
|
|
lvm_cmd = ['lvcreate', '-kn', '-ay', '-s', cmd[1], '-n', cmd[2]]
|
|
|
|
elif action == 'create':
|
|
|
|
lvm_cmd = ['lvcreate', '-T', cmd[1], '-kn', '-ay', '-n', cmd[2], '-V',
|
|
|
|
str(cmd[3]) + 'B']
|
|
|
|
elif action == 'extend':
|
|
|
|
size = int(cmd[2]) / (1000 * 1000)
|
|
|
|
lvm_cmd = ["lvextend", "-L%s" % size, cmd[1]]
|
|
|
|
else:
|
|
|
|
raise NotImplementedError('unsupported action: ' + action)
|
2016-11-25 02:04:09 +01:00
|
|
|
if lvm_is_very_old:
|
|
|
|
# old lvm in trusty image used there does not support -k option
|
|
|
|
lvm_cmd = [x for x in lvm_cmd if x != '-kn']
|
2016-11-03 03:53:06 +01:00
|
|
|
if os.getuid() != 0:
|
|
|
|
cmd = ['sudo', 'lvm'] + lvm_cmd
|
|
|
|
else:
|
|
|
|
cmd = ['lvm'] + lvm_cmd
|
|
|
|
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
|
|
|
|
close_fds=True)
|
2016-07-12 18:44:05 +02:00
|
|
|
out, err = p.communicate()
|
|
|
|
return_code = p.returncode
|
|
|
|
if out:
|
2016-08-28 23:56:06 +02:00
|
|
|
log.debug(out)
|
2016-07-12 18:44:05 +02:00
|
|
|
if return_code == 0 and err:
|
|
|
|
log.warning(err)
|
|
|
|
elif return_code != 0:
|
|
|
|
assert err, "Command exited unsuccessful, but printed nothing to stderr"
|
|
|
|
raise qubes.storage.StoragePoolException(err)
|
|
|
|
return True
|
2016-08-28 23:50:04 +02:00
|
|
|
|
|
|
|
|
2016-09-02 19:46:11 +02:00
|
|
|
def reset_cache():
|
2016-09-04 23:25:39 +02:00
|
|
|
qubes.storage.lvm.size_cache = init_cache()
|