appvm.py 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. #
  2. # The Qubes OS Project, http://www.qubes-os.org
  3. #
  4. # Copyright (C) 2014-2016 Wojtek Porczyk <woju@invisiblethingslab.com>
  5. # Copyright (C) 2016 Marek Marczykowski <marmarek@invisiblethingslab.com>)
  6. # Copyright (C) 2016 Bahtiar `kalkin-` Gadimov <bahtiar@gadimov.de>
  7. #
  8. # This library is free software; you can redistribute it and/or
  9. # modify it under the terms of the GNU Lesser General Public
  10. # License as published by the Free Software Foundation; either
  11. # version 2.1 of the License, or (at your option) any later version.
  12. #
  13. # This library is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. # Lesser General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU Lesser General Public
  19. # License along with this library; if not, see <https://www.gnu.org/licenses/>.
  20. #
  21. ''' This module contains the AppVM implementation '''
  22. import copy
  23. import qubes.events
  24. import qubes.vm.qubesvm
  25. from qubes.config import defaults
  26. class AppVM(qubes.vm.qubesvm.QubesVM):
  27. '''Application VM'''
  28. template = qubes.VMProperty('template',
  29. load_stage=4,
  30. vmclass=qubes.vm.templatevm.TemplateVM,
  31. doc='Template, on which this AppVM is based.')
  32. template_for_dispvms = qubes.property('template_for_dispvms',
  33. type=bool,
  34. default=False,
  35. doc='Should this VM be allowed to start as Disposable VM')
  36. default_volume_config = {
  37. 'root': {
  38. 'name': 'root',
  39. 'snap_on_start': True,
  40. 'save_on_stop': False,
  41. 'rw': False,
  42. 'source': None,
  43. },
  44. 'private': {
  45. 'name': 'private',
  46. 'snap_on_start': False,
  47. 'save_on_stop': True,
  48. 'rw': True,
  49. 'size': defaults['private_img_size'],
  50. },
  51. 'volatile': {
  52. 'name': 'volatile',
  53. 'snap_on_start': False,
  54. 'save_on_stop': False,
  55. 'size': defaults['root_img_size'],
  56. 'rw': True,
  57. },
  58. 'kernel': {
  59. 'name': 'kernel',
  60. 'snap_on_start': False,
  61. 'save_on_stop': False,
  62. 'rw': False,
  63. }
  64. }
  65. def __init__(self, app, xml, **kwargs):
  66. # migrate renamed properties
  67. if xml is not None:
  68. node_dispvm_allowed = xml.find(
  69. './properties/property[@name=\'dispvm_allowed\']')
  70. if node_dispvm_allowed is not None:
  71. kwargs['template_for_dispvms'] = \
  72. qubes.property.bool(None, None, node_dispvm_allowed.text)
  73. node_dispvm_allowed.getparent().remove(node_dispvm_allowed)
  74. self.volume_config = copy.deepcopy(self.default_volume_config)
  75. template = kwargs.get('template', None)
  76. if template is not None:
  77. # template is only passed if the AppVM is created, in other cases we
  78. # don't need to patch the volume_config because the config is
  79. # coming from XML, already as we need it
  80. for name, config in template.volume_config.items():
  81. # in case the template vm has more volumes add them to own
  82. # config
  83. if name not in self.volume_config:
  84. self.volume_config[name] = config.copy()
  85. if 'vid' in self.volume_config[name]:
  86. del self.volume_config[name]['vid']
  87. super(AppVM, self).__init__(app, xml, **kwargs)
  88. @qubes.events.handler('domain-load')
  89. def on_domain_loaded(self, event):
  90. ''' When domain is loaded assert that this vm has a template.
  91. ''' # pylint: disable=unused-argument
  92. assert self.template
  93. @qubes.events.handler('property-pre-del:template')
  94. def on_property_pre_del_template(self, event, name, oldvalue=None):
  95. '''Forbid deleting template of running VM
  96. ''' # pylint: disable=unused-argument,no-self-use
  97. raise qubes.exc.QubesValueError('Cannot unset template')
  98. @qubes.events.handler('property-pre-set:template')
  99. def on_property_pre_set_template(self, event, name, newvalue,
  100. oldvalue=None):
  101. '''Forbid changing template of running VM
  102. ''' # pylint: disable=unused-argument
  103. if not self.is_halted():
  104. raise qubes.exc.QubesVMNotHaltedError(self,
  105. 'Cannot change template while qube is running')
  106. @qubes.events.handler('property-set:template')
  107. def on_property_set_template(self, event, name, newvalue, oldvalue=None):
  108. ''' Adjust root (and possibly other snap_on_start=True) volume
  109. on template change.
  110. ''' # pylint: disable=unused-argument
  111. for volume_name, conf in self.default_volume_config.items():
  112. if conf.get('snap_on_start', False) and \
  113. conf.get('source', None) is None:
  114. config = conf.copy()
  115. self.volume_config[volume_name] = config
  116. self.storage.init_volume(volume_name, config)