2016-06-16 17:11:49 +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>
|
|
|
|
#
|
2017-10-12 00:11:50 +02:00
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
2016-06-16 17:11:49 +02:00
|
|
|
#
|
2017-10-12 00:11:50 +02:00
|
|
|
# This library is distributed in the hope that it will be useful,
|
2016-06-16 17:11:49 +02:00
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2017-10-12 00:11:50 +02:00
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Lesser General Public License for more details.
|
2016-06-16 17:11:49 +02:00
|
|
|
#
|
2017-10-12 00:11:50 +02:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, see <https://www.gnu.org/licenses/>.
|
2016-06-16 17:11:49 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
''' This module contains the TemplateVM implementation '''
|
2014-11-13 14:38:41 +01:00
|
|
|
|
2014-12-05 14:58:05 +01:00
|
|
|
import qubes
|
2015-09-25 16:50:09 +02:00
|
|
|
import qubes.config
|
2014-11-13 14:38:41 +01:00
|
|
|
import qubes.vm.qubesvm
|
2017-06-01 04:26:44 +02:00
|
|
|
import qubes.vm.mix.net
|
2016-04-15 13:09:50 +02:00
|
|
|
from qubes.config import defaults
|
2016-04-15 20:40:53 +02:00
|
|
|
from qubes.vm.qubesvm import QubesVM
|
2016-04-15 13:09:50 +02:00
|
|
|
|
2014-11-13 14:38:41 +01:00
|
|
|
|
2016-04-15 20:40:53 +02:00
|
|
|
class TemplateVM(QubesVM):
|
2014-11-13 18:10:27 +01:00
|
|
|
'''Template for AppVM'''
|
2014-12-05 14:58:05 +01:00
|
|
|
|
2015-09-25 16:50:09 +02:00
|
|
|
dir_path_prefix = qubes.config.system_path['qubes_templates_dir']
|
|
|
|
|
2016-04-20 02:28:11 +02:00
|
|
|
@property
|
|
|
|
def appvms(self):
|
2016-06-16 17:11:49 +02:00
|
|
|
''' Returns a generator containing all domains based on the current
|
|
|
|
TemplateVM.
|
|
|
|
'''
|
2016-04-20 02:28:11 +02:00
|
|
|
for vm in self.app.domains:
|
|
|
|
if hasattr(vm, 'template') and vm.template is self:
|
|
|
|
yield vm
|
2015-06-30 17:06:35 +02:00
|
|
|
|
2017-06-01 04:26:44 +02:00
|
|
|
netvm = qubes.VMProperty('netvm', load_stage=4, allow_none=True,
|
|
|
|
default=None,
|
|
|
|
# pylint: disable=protected-access
|
|
|
|
setter=qubes.vm.qubesvm.QubesVM.netvm._setter,
|
|
|
|
doc='VM that provides network connection to this domain. When '
|
|
|
|
'`None`, machine is disconnected.')
|
|
|
|
|
2015-06-30 17:06:35 +02:00
|
|
|
def __init__(self, *args, **kwargs):
|
2016-03-23 18:23:12 +01:00
|
|
|
assert 'template' not in kwargs, "A TemplateVM can not have a template"
|
2016-04-15 13:09:50 +02:00
|
|
|
self.volume_config = {
|
|
|
|
'root': {
|
|
|
|
'name': 'root',
|
2016-07-12 18:03:14 +02:00
|
|
|
'snap_on_start': False,
|
|
|
|
'save_on_stop': True,
|
|
|
|
'rw': True,
|
|
|
|
'source': None,
|
2016-04-15 13:09:50 +02:00
|
|
|
'size': defaults['root_img_size'],
|
|
|
|
},
|
|
|
|
'private': {
|
|
|
|
'name': 'private',
|
2016-07-12 18:03:14 +02:00
|
|
|
'snap_on_start': False,
|
|
|
|
'save_on_stop': True,
|
|
|
|
'rw': True,
|
|
|
|
'source': None,
|
2016-04-15 13:09:50 +02:00
|
|
|
'size': defaults['private_img_size'],
|
2016-07-12 18:03:14 +02:00
|
|
|
'revisions_to_keep': 0,
|
2016-04-15 13:09:50 +02:00
|
|
|
},
|
|
|
|
'volatile': {
|
|
|
|
'name': 'volatile',
|
|
|
|
'size': defaults['root_img_size'],
|
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': True,
|
2016-04-15 13:09:50 +02:00
|
|
|
},
|
|
|
|
'kernel': {
|
|
|
|
'name': '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
|
|
|
}
|
|
|
|
}
|
2020-08-23 02:22:41 +02:00
|
|
|
super().__init__(*args, **kwargs)
|
2020-05-21 05:03:25 +02:00
|
|
|
|
|
|
|
@qubes.events.handler('property-set:default_user',
|
|
|
|
'property-set:kernel',
|
|
|
|
'property-set:kernelopts',
|
|
|
|
'property-set:vcpus',
|
|
|
|
'property-set:memory',
|
|
|
|
'property-set:maxmem',
|
|
|
|
'property-set:qrexec_timeout',
|
|
|
|
'property-set:shutdown_timeout',
|
|
|
|
'property-set:management_dispvm')
|
|
|
|
def on_property_set_child(self, _event, name, newvalue, oldvalue=None):
|
|
|
|
"""Send event about default value change to child VMs
|
|
|
|
(which use default inherited from the template).
|
|
|
|
|
|
|
|
This handler is supposed to be set for properties using
|
|
|
|
`_default_with_template()` function for the default value.
|
|
|
|
"""
|
|
|
|
if newvalue == oldvalue:
|
|
|
|
return
|
|
|
|
|
|
|
|
for vm in self.appvms:
|
|
|
|
if not vm.property_is_default(name):
|
|
|
|
continue
|
|
|
|
vm.fire_event('property-reset:' + name, name=name)
|