88 lines
2.7 KiB
Python
88 lines
2.7 KiB
Python
#!/usr/bin/python2
|
|
#
|
|
# The Qubes OS Project, http://www.qubes-os.org
|
|
#
|
|
# Copyright (C) 2010 Joanna Rutkowska <joanna@invisiblethingslab.com>
|
|
# Copyright (C) 2013 Marek Marczykowski <marmarek@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.
|
|
#
|
|
#
|
|
|
|
import os
|
|
import os.path
|
|
import subprocess
|
|
import stat
|
|
import sys
|
|
import re
|
|
|
|
from qubes.qubes import QubesHVm,register_qubes_vm_class,xs,xc,dry_run
|
|
from qubes.qubes import QubesException,QubesVmCollection
|
|
from qubes.qubes import system_path,defaults
|
|
|
|
class QubesTemplateHVm(QubesHVm):
|
|
"""
|
|
A class that represents an HVM template. A child of QubesHVm.
|
|
"""
|
|
|
|
# In which order load this VM type from qubes.xml
|
|
load_order = 50
|
|
|
|
def get_attrs_config(self):
|
|
attrs_config = super(QubesTemplateHVm, self).get_attrs_config()
|
|
attrs_config['dir_path']['eval'] = 'value if value is not None else os.path.join(system_path["qubes_templates_dir"], self.name)'
|
|
attrs_config['label']['default'] = defaults["template_label"]
|
|
return attrs_config
|
|
|
|
|
|
def __init__(self, **kwargs):
|
|
|
|
super(QubesTemplateHVm, self).__init__(**kwargs)
|
|
|
|
self.appvms = QubesVmCollection()
|
|
|
|
@property
|
|
def type(self):
|
|
return "TemplateHVM"
|
|
|
|
@property
|
|
def updateable(self):
|
|
return True
|
|
|
|
def is_template(self):
|
|
return True
|
|
|
|
def is_appvm(self):
|
|
return False
|
|
|
|
@classmethod
|
|
def is_template_compatible(cls, template):
|
|
return False
|
|
|
|
def resize_root_img(self, size):
|
|
for vm in self.appvms.values():
|
|
if vm.is_running():
|
|
raise QubesException("Cannot resize root.img while any VM "
|
|
"based on this tempate is running")
|
|
return super(QubesTemplateHVm, self).resize_root_img()
|
|
|
|
def start(self, *args, **kwargs):
|
|
for vm in self.appvms.values():
|
|
if vm.is_running():
|
|
raise QubesException("Cannot start HVM template while VMs based on it are running")
|
|
return super(QubesTemplateHVm, self).start(*args, **kwargs)
|
|
|
|
register_qubes_vm_class(QubesTemplateHVm)
|