2016-06-16 14:11:50 +02:00
|
|
|
#
|
|
|
|
# The Qubes OS Project, http://www.qubes-os.org
|
|
|
|
#
|
|
|
|
# Copyright (C) 2014-2016 Wojtek Porczyk <woju@invisiblethingslab.com>
|
|
|
|
# Copyright (C) 2016 Marek Marczykowski <marmarek@invisiblethingslab.com>)
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
''' This module contains the AppVM implementation '''
|
2014-11-13 14:38:41 +01:00
|
|
|
|
2016-07-12 18:03:14 +02:00
|
|
|
import copy
|
|
|
|
|
2015-09-17 12:08:03 +02:00
|
|
|
import qubes.events
|
2014-11-13 14:38:41 +01:00
|
|
|
import qubes.vm.qubesvm
|
2016-04-15 13:09:50 +02:00
|
|
|
from qubes.config import defaults
|
|
|
|
|
2014-11-13 14:38:41 +01:00
|
|
|
|
|
|
|
class AppVM(qubes.vm.qubesvm.QubesVM):
|
2014-11-13 18:10:27 +01:00
|
|
|
'''Application VM'''
|
2014-12-29 12:46:16 +01:00
|
|
|
|
2016-04-15 13:09:50 +02:00
|
|
|
template = qubes.VMProperty('template',
|
|
|
|
load_stage=4,
|
|
|
|
vmclass=qubes.vm.templatevm.TemplateVM,
|
|
|
|
doc='Template, on which this AppVM is based.')
|
2014-12-29 12:46:16 +01:00
|
|
|
|
2017-03-21 12:46:51 +01:00
|
|
|
dispvm_allowed = qubes.property('dispvm_allowed',
|
|
|
|
type=bool,
|
|
|
|
default=False,
|
2017-06-03 12:22:36 +02:00
|
|
|
doc='Should this VM be allowed to start as Disposable VM')
|
2017-03-21 12:46:51 +01:00
|
|
|
|
2017-06-03 12:22:36 +02:00
|
|
|
default_volume_config = {
|
2016-04-15 13:09:50 +02:00
|
|
|
'root': {
|
|
|
|
'name': 'root',
|
|
|
|
'pool': 'default',
|
2016-07-12 18:03:14 +02:00
|
|
|
'snap_on_start': True,
|
|
|
|
'save_on_stop': False,
|
|
|
|
'rw': False,
|
2017-06-09 04:44:22 +02:00
|
|
|
'source': None,
|
2016-04-15 13:09:50 +02:00
|
|
|
},
|
|
|
|
'private': {
|
|
|
|
'name': 'private',
|
|
|
|
'pool': 'default',
|
2016-07-12 18:03:14 +02:00
|
|
|
'snap_on_start': False,
|
|
|
|
'save_on_stop': True,
|
|
|
|
'rw': True,
|
2016-04-15 13:09:50 +02:00
|
|
|
'size': defaults['private_img_size'],
|
|
|
|
},
|
|
|
|
'volatile': {
|
|
|
|
'name': 'volatile',
|
|
|
|
'pool': 'default',
|
2017-07-01 20:47:08 +02:00
|
|
|
'snap_on_start': False,
|
|
|
|
'save_on_stop': False,
|
2016-04-15 13:09:50 +02:00
|
|
|
'size': defaults['root_img_size'],
|
2016-07-12 18:03:14 +02:00
|
|
|
'rw': True,
|
2016-04-15 13:09:50 +02:00
|
|
|
},
|
|
|
|
'kernel': {
|
|
|
|
'name': 'kernel',
|
|
|
|
'pool': 'linux-kernel',
|
2017-07-01 20:47:08 +02:00
|
|
|
'snap_on_start': False,
|
|
|
|
'save_on_stop': False,
|
2016-07-12 18:03:14 +02:00
|
|
|
'rw': False,
|
2016-04-15 13:09:50 +02:00
|
|
|
}
|
|
|
|
}
|
2016-07-12 18:03:14 +02:00
|
|
|
|
2017-06-03 12:22:36 +02:00
|
|
|
def __init__(self, app, xml, **kwargs):
|
|
|
|
self.volume_config = copy.deepcopy(self.default_volume_config)
|
|
|
|
template = kwargs.get('template', None)
|
|
|
|
|
2016-07-12 18:03:14 +02:00
|
|
|
if template is not None:
|
|
|
|
# template is only passed if the AppVM is created, in other cases we
|
|
|
|
# don't need to patch the volume_config because the config is
|
|
|
|
# coming from XML, already as we need it
|
|
|
|
|
|
|
|
for name, conf in self.volume_config.items():
|
|
|
|
tpl_volume = template.volumes[name]
|
|
|
|
|
2017-06-03 12:20:57 +02:00
|
|
|
self.config_volume_from_source(conf, tpl_volume)
|
2016-07-12 18:03:14 +02:00
|
|
|
|
|
|
|
for name, config in template.volume_config.items():
|
|
|
|
# in case the template vm has more volumes add them to own
|
|
|
|
# config
|
|
|
|
if name not in self.volume_config:
|
|
|
|
self.volume_config[name] = copy.deepcopy(config)
|
|
|
|
if 'vid' in self.volume_config[name]:
|
|
|
|
del self.volume_config[name]['vid']
|
|
|
|
|
|
|
|
super(AppVM, self).__init__(app, xml, **kwargs)
|
2014-12-29 12:46:16 +01:00
|
|
|
|
2016-03-14 22:16:52 +01:00
|
|
|
@qubes.events.handler('domain-load')
|
2015-09-17 12:08:03 +02:00
|
|
|
def on_domain_loaded(self, event):
|
2016-06-16 14:11:50 +02:00
|
|
|
''' When domain is loaded assert that this vm has a template.
|
|
|
|
''' # pylint: disable=unused-argument
|
2014-12-29 12:46:16 +01:00
|
|
|
assert self.template
|
2017-06-03 12:22:36 +02:00
|
|
|
|
|
|
|
@qubes.events.handler('property-pre-set:template')
|
|
|
|
def on_property_pre_set_template(self, event, name, newvalue,
|
|
|
|
oldvalue=None):
|
|
|
|
'''Forbid changing template of running VM
|
|
|
|
''' # pylint: disable=unused-argument
|
|
|
|
if not self.is_halted():
|
|
|
|
raise qubes.exc.QubesVMNotHaltedError(self,
|
|
|
|
'Cannot change template while qube is running')
|
|
|
|
|
|
|
|
@qubes.events.handler('property-set:template')
|
|
|
|
def on_property_set_template(self, event, name, newvalue, oldvalue=None):
|
|
|
|
''' Adjust root (and possibly other snap_on_start=True) volume
|
|
|
|
on template change.
|
|
|
|
''' # pylint: disable=unused-argument
|
|
|
|
|
|
|
|
for volume_name, conf in self.default_volume_config.items():
|
|
|
|
if conf.get('snap_on_start', False) and \
|
|
|
|
conf.get('source', None) is None:
|
|
|
|
config = copy.deepcopy(conf)
|
|
|
|
template_volume = newvalue.volumes[volume_name]
|
|
|
|
self.volume_config[volume_name] = \
|
|
|
|
self.config_volume_from_source(
|
|
|
|
config,
|
|
|
|
template_volume)
|
|
|
|
self.storage.init_volume(volume_name, config)
|