01QubesHVm.py 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  1. #!/usr/bin/python2
  2. # -*- coding: utf-8 -*-
  3. #
  4. # The Qubes OS Project, http://www.qubes-os.org
  5. #
  6. # Copyright (C) 2010 Joanna Rutkowska <joanna@invisiblethingslab.com>
  7. # Copyright (C) 2013 Marek Marczykowski <marmarek@invisiblethingslab.com>
  8. #
  9. # This program is free software; you can redistribute it and/or
  10. # modify it under the terms of the GNU General Public License
  11. # as published by the Free Software Foundation; either version 2
  12. # of the License, or (at your option) any later version.
  13. #
  14. # This program is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. # GNU General Public License for more details.
  18. #
  19. # You should have received a copy of the GNU General Public License
  20. # along with this program; if not, write to the Free Software
  21. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  22. #
  23. #
  24. import os
  25. import os.path
  26. import signal
  27. import subprocess
  28. import sys
  29. import shutil
  30. from xml.etree import ElementTree
  31. from qubes.qubes import (
  32. dry_run,
  33. defaults,
  34. register_qubes_vm_class,
  35. system_path,
  36. vmm,
  37. QubesException,
  38. QubesResizableVm,
  39. )
  40. system_path["config_template_hvm"] = '/usr/share/qubes/vm-template-hvm.xml'
  41. defaults["hvm_disk_size"] = 20*1024*1024*1024
  42. defaults["hvm_private_img_size"] = 2*1024*1024*1024
  43. defaults["hvm_memory"] = 512
  44. class QubesHVm(QubesResizableVm):
  45. """
  46. A class that represents an HVM. A child of QubesVm.
  47. """
  48. # FIXME: logically should inherit after QubesAppVm, but none of its methods
  49. # are useful for HVM
  50. def get_attrs_config(self):
  51. attrs = super(QubesHVm, self).get_attrs_config()
  52. attrs.pop('kernel')
  53. attrs.pop('kernels_dir')
  54. attrs.pop('kernelopts')
  55. attrs.pop('uses_default_kernel')
  56. attrs.pop('uses_default_kernelopts')
  57. attrs['dir_path']['func'] = lambda value: value if value is not None \
  58. else os.path.join(system_path["qubes_appvms_dir"], self.name)
  59. attrs['config_file_template']['func'] = \
  60. lambda x: system_path["config_template_hvm"]
  61. attrs['drive'] = { 'attr': '_drive',
  62. 'save': lambda: str(self.drive) }
  63. # Remove this two lines when HVM will get qmemman support
  64. attrs['maxmem'].pop('save')
  65. attrs['maxmem']['func'] = lambda x: self.memory
  66. attrs['timezone'] = { 'default': 'localtime',
  67. 'save': lambda: str(self.timezone) }
  68. attrs['qrexec_installed'] = { 'default': False,
  69. 'attr': '_qrexec_installed',
  70. 'save': lambda: str(self._qrexec_installed) }
  71. attrs['guiagent_installed'] = { 'default' : False,
  72. 'attr': '_guiagent_installed',
  73. 'save': lambda: str(self._guiagent_installed) }
  74. attrs['seamless_gui_mode'] = { 'default': False,
  75. 'attr': '_seamless_gui_mode',
  76. 'save': lambda: str(self._seamless_gui_mode) }
  77. attrs['services']['default'] = "{'meminfo-writer': False}"
  78. attrs['memory']['default'] = defaults["hvm_memory"]
  79. return attrs
  80. def __init__(self, **kwargs):
  81. super(QubesHVm, self).__init__(**kwargs)
  82. # Default for meminfo-writer have changed to (correct) False in the
  83. # same version as introduction of guiagent_installed, so for older VMs
  84. # with wrong setting, change is based on 'guiagent_installed' presence
  85. if "guiagent_installed" not in kwargs and \
  86. (not 'xml_element' in kwargs or kwargs['xml_element'].get('guiagent_installed') is None):
  87. self.services['meminfo-writer'] = False
  88. @property
  89. def type(self):
  90. return "HVM"
  91. def is_appvm(self):
  92. return True
  93. @classmethod
  94. def is_template_compatible(cls, template):
  95. if template and (not template.is_template() or template.type != "TemplateHVM"):
  96. return False
  97. return True
  98. def get_clone_attrs(self):
  99. attrs = super(QubesHVm, self).get_clone_attrs()
  100. attrs.remove('kernel')
  101. attrs.remove('uses_default_kernel')
  102. attrs.remove('kernelopts')
  103. attrs.remove('uses_default_kernelopts')
  104. attrs += [ 'timezone' ]
  105. attrs += [ 'qrexec_installed' ]
  106. attrs += [ 'guiagent_installed' ]
  107. return attrs
  108. @property
  109. def qrexec_installed(self):
  110. return self._qrexec_installed or \
  111. bool(self.template and self.template.qrexec_installed)
  112. @qrexec_installed.setter
  113. def qrexec_installed(self, value):
  114. if self.template and self.template.qrexec_installed and not value:
  115. print >>sys.stderr, "WARNING: When qrexec_installed set in template, it will be propagated to the VM"
  116. self._qrexec_installed = value
  117. @property
  118. def guiagent_installed(self):
  119. return self._guiagent_installed or \
  120. bool(self.template and self.template.guiagent_installed)
  121. @guiagent_installed.setter
  122. def guiagent_installed(self, value):
  123. if self.template and self.template.guiagent_installed and not value:
  124. print >>sys.stderr, "WARNING: When guiagent_installed set in template, it will be propagated to the VM"
  125. self._guiagent_installed = value
  126. @property
  127. def seamless_gui_mode(self):
  128. if not self.guiagent_installed:
  129. return False
  130. return self._seamless_gui_mode
  131. @seamless_gui_mode.setter
  132. def seamless_gui_mode(self, value):
  133. if self._seamless_gui_mode == value:
  134. return
  135. if not self.guiagent_installed and value:
  136. raise ValueError("Seamless GUI mode requires GUI agent installed")
  137. self._seamless_gui_mode = value
  138. if self.is_running():
  139. self.send_gui_mode()
  140. @property
  141. def drive(self):
  142. return self._drive
  143. @drive.setter
  144. def drive(self, value):
  145. if value is None:
  146. self._drive = None
  147. return
  148. # strip type for a moment
  149. drv_type = "cdrom"
  150. if value.startswith("hd:") or value.startswith("cdrom:"):
  151. (drv_type, unused, value) = value.partition(":")
  152. drv_type = drv_type.lower()
  153. # sanity check
  154. if drv_type not in ['hd', 'cdrom']:
  155. raise QubesException("Unsupported drive type: %s" % type)
  156. if value.count(":") == 0:
  157. value = "dom0:" + value
  158. if value.count(":/") == 0:
  159. # FIXME: when Windows backend will be supported, improve this
  160. raise QubesException("Drive path must be absolute")
  161. self._drive = drv_type + ":" + value
  162. def create_on_disk(self, verbose, source_template = None):
  163. self.log.debug('create_on_disk(source_template={!r})'.format(
  164. source_template))
  165. if dry_run:
  166. return
  167. if source_template is None:
  168. source_template = self.template
  169. # create empty disk
  170. self.storage.private_img_size = defaults["hvm_private_img_size"]
  171. self.storage.root_img_size = defaults["hvm_disk_size"]
  172. self.storage.create_on_disk(verbose, source_template)
  173. if verbose:
  174. print >> sys.stderr, "--> Creating icon symlink: {0} -> {1}".format(self.icon_path, self.label.icon_path)
  175. try:
  176. if hasattr(os, "symlink"):
  177. os.symlink (self.label.icon_path, self.icon_path)
  178. else:
  179. shutil.copy(self.label.icon_path, self.icon_path)
  180. except Exception as e:
  181. print >> sys.stderr, "WARNING: Failed to set VM icon: %s" % str(e)
  182. # Make sure that we have UUID allocated
  183. self._update_libvirt_domain()
  184. # fire hooks
  185. for hook in self.hooks_create_on_disk:
  186. hook(self, verbose, source_template=source_template)
  187. def get_private_img_sz(self):
  188. if not os.path.exists(self.private_img):
  189. return 0
  190. return os.path.getsize(self.private_img)
  191. def resize_private_img(self, size):
  192. assert size >= self.get_private_img_sz(), "Cannot shrink private.img"
  193. if self.is_running():
  194. raise NotImplementedError("Online resize of HVM's private.img not implemented, shutdown the VM first")
  195. self.storage.resize_private_img(size)
  196. def get_config_params(self):
  197. params = super(QubesHVm, self).get_config_params()
  198. self.storage.drive = self.drive
  199. params.update(self.storage.get_config_params())
  200. params['volatiledev'] = ''
  201. if self.timezone.lower() == 'localtime':
  202. params['time_basis'] = 'localtime'
  203. params['timeoffset'] = '0'
  204. elif self.timezone.isdigit():
  205. params['time_basis'] = 'UTC'
  206. params['timeoffset'] = self.timezone
  207. else:
  208. print >>sys.stderr, "WARNING: invalid 'timezone' value: %s" % self.timezone
  209. params['time_basis'] = 'UTC'
  210. params['timeoffset'] = '0'
  211. return params
  212. def verify_files(self):
  213. if dry_run:
  214. return
  215. self.storage.verify_files()
  216. # fire hooks
  217. for hook in self.hooks_verify_files:
  218. hook(self)
  219. return True
  220. @property
  221. def vif(self):
  222. if self.xid < 0:
  223. return None
  224. if self.netvm is None:
  225. return None
  226. return "vif{0}.+".format(self.stubdom_xid)
  227. @property
  228. def mac(self):
  229. if self._mac is not None:
  230. return self._mac
  231. elif self.template is not None:
  232. return self.template.mac
  233. else:
  234. return "00:16:3E:5E:6C:{qid:02X}".format(qid=self.qid)
  235. @mac.setter
  236. def mac(self, value):
  237. self._mac = value
  238. def run(self, command, **kwargs):
  239. if self.qrexec_installed:
  240. if 'gui' in kwargs and kwargs['gui']==False:
  241. command = "nogui:" + command
  242. return super(QubesHVm, self).run(command, **kwargs)
  243. else:
  244. raise QubesException("Needs qrexec agent installed in VM to use this function. See also qvm-prefs.")
  245. @property
  246. def stubdom_xid(self):
  247. if self.xid < 0:
  248. return -1
  249. if vmm.xs is None:
  250. return -1
  251. stubdom_xid_str = vmm.xs.read('', '/local/domain/%d/image/device-model-domid' % self.xid)
  252. if stubdom_xid_str is not None:
  253. return int(stubdom_xid_str)
  254. else:
  255. return -1
  256. def start(self, *args, **kwargs):
  257. # make it available to storage.prepare_for_vm_startup, which is
  258. # called before actually building VM libvirt configuration
  259. self.storage.drive = self.drive
  260. if self.template and self.template.is_running():
  261. raise QubesException("Cannot start the HVM while its template is running")
  262. try:
  263. if 'mem_required' not in kwargs:
  264. # Reserve 44MB for stubdomain
  265. kwargs['mem_required'] = (self.memory + 44) * 1024 * 1024
  266. return super(QubesHVm, self).start(*args, **kwargs)
  267. except QubesException as e:
  268. capabilities = vmm.libvirt_conn.getCapabilities()
  269. tree = ElementTree.fromstring(capabilities)
  270. os_types = tree.findall('./guest/os_type')
  271. if 'hvm' not in map(lambda x: x.text, os_types):
  272. raise QubesException("Cannot start HVM without VT-x/AMD-v enabled")
  273. else:
  274. raise
  275. def start_stubdom_guid(self, verbose=True):
  276. guid_cmd = [system_path["qubes_guid_path"],
  277. "-d", str(self.stubdom_xid),
  278. "-t", str(self.xid),
  279. "-N", self.name,
  280. "-c", self.label.color,
  281. "-i", self.label.icon_path,
  282. "-l", str(self.label.index)]
  283. if self.debug:
  284. guid_cmd += ['-v', '-v']
  285. elif not verbose:
  286. guid_cmd += ['-q']
  287. retcode = subprocess.call (guid_cmd)
  288. if (retcode != 0) :
  289. raise QubesException("Cannot start qubes-guid!")
  290. def start_guid(self, verbose=True, notify_function=None,
  291. before_qrexec=False, **kwargs):
  292. if not before_qrexec:
  293. return
  294. if not self.guiagent_installed or self.debug:
  295. if verbose:
  296. print >> sys.stderr, "--> Starting Qubes GUId (full screen)..."
  297. self.start_stubdom_guid(verbose=verbose)
  298. kwargs['extra_guid_args'] = kwargs.get('extra_guid_args', []) + \
  299. ['-Q', '-n']
  300. stubdom_guid_pidfile = \
  301. '/var/run/qubes/guid-running.%d' % self.stubdom_xid
  302. if not self.debug and os.path.exists(stubdom_guid_pidfile):
  303. # Terminate stubdom guid once "real" gui agent connects
  304. stubdom_guid_pid = int(open(stubdom_guid_pidfile, 'r').read())
  305. kwargs['extra_guid_args'] += ['-K', str(stubdom_guid_pid)]
  306. super(QubesHVm, self).start_guid(verbose, notify_function, **kwargs)
  307. def start_qrexec_daemon(self, **kwargs):
  308. if not self.qrexec_installed:
  309. if kwargs.get('verbose', False):
  310. print >> sys.stderr, "--> Starting the qrexec daemon..."
  311. xid = self.get_xid()
  312. qrexec_env = os.environ.copy()
  313. qrexec_env['QREXEC_STARTUP_NOWAIT'] = '1'
  314. retcode = subprocess.call ([system_path["qrexec_daemon_path"], str(xid), self.name, self.default_user], env=qrexec_env)
  315. if (retcode != 0) :
  316. self.force_shutdown(xid=xid)
  317. raise OSError ("ERROR: Cannot execute qrexec-daemon!")
  318. else:
  319. super(QubesHVm, self).start_qrexec_daemon(**kwargs)
  320. if self.guiagent_installed:
  321. if kwargs.get('verbose'):
  322. print >> sys.stderr, "--> Waiting for user '%s' login..." % self.default_user
  323. self.wait_for_session(notify_function=kwargs.get('notify_function', None))
  324. self.send_gui_mode()
  325. def send_gui_mode(self):
  326. if self.seamless_gui_mode:
  327. service_input = "SEAMLESS"
  328. else:
  329. service_input = "FULLSCREEN"
  330. self.run_service("qubes.SetGuiMode", input=service_input)
  331. def _cleanup_zombie_domains(self):
  332. super(QubesHVm, self)._cleanup_zombie_domains()
  333. if not self.is_running():
  334. xc_stubdom = self.get_xc_dominfo(name=self.name+'-dm')
  335. if xc_stubdom is not None:
  336. if xc_stubdom['paused'] == 1:
  337. subprocess.call(['xl', 'destroy', str(xc_stubdom['domid'])])
  338. if xc_stubdom['dying'] == 1:
  339. # GUID still running?
  340. guid_pidfile = \
  341. '/var/run/qubes/guid-running.%d' % xc_stubdom['domid']
  342. if os.path.exists(guid_pidfile):
  343. guid_pid = open(guid_pidfile).read().strip()
  344. os.kill(int(guid_pid), 15)
  345. def suspend(self):
  346. if dry_run:
  347. return
  348. if not self.is_running() and not self.is_paused():
  349. raise QubesException ("VM not running!")
  350. self.pause()
  351. def is_guid_running(self):
  352. # If user force the guiagent, is_guid_running will mimic a standard QubesVM
  353. if self.guiagent_installed:
  354. return super(QubesHVm, self).is_guid_running()
  355. else:
  356. xid = self.stubdom_xid
  357. if xid < 0:
  358. return False
  359. if not os.path.exists('/var/run/qubes/guid-running.%d' % xid):
  360. return False
  361. return True
  362. def is_fully_usable(self):
  363. # Running gui-daemon implies also VM running
  364. if not self.is_guid_running():
  365. return False
  366. if self.qrexec_installed and not self.is_qrexec_running():
  367. return False
  368. return True
  369. register_qubes_vm_class(QubesHVm)