__init__.py 46 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469
  1. #!/usr/bin/python2 -O
  2. # vim: fileencoding=utf-8
  3. #
  4. # The Qubes OS Project, https://www.qubes-os.org/
  5. #
  6. # Copyright (C) 2010-2015 Joanna Rutkowska <joanna@invisiblethingslab.com>
  7. # Copyright (C) 2011-2015 Marek Marczykowski-Górecki
  8. # <marmarek@invisiblethingslab.com>
  9. # Copyright (C) 2014-2015 Wojtek Porczyk <woju@invisiblethingslab.com>
  10. #
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; either version 2 of the License, or
  14. # (at your option) any later version.
  15. #
  16. # This program is distributed in the hope that it will be useful,
  17. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. # GNU General Public License for more details.
  20. #
  21. # You should have received a copy of the GNU General Public License along
  22. # with this program; if not, write to the Free Software Foundation, Inc.,
  23. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  24. #
  25. '''
  26. Qubes OS
  27. :copyright: © 2010-2015 Invisible Things Lab
  28. '''
  29. from __future__ import absolute_import
  30. __author__ = 'Invisible Things Lab'
  31. __license__ = 'GPLv2 or later'
  32. __version__ = 'R3'
  33. import ast
  34. import atexit
  35. import collections
  36. import errno
  37. import grp
  38. import logging
  39. import os
  40. import os.path
  41. import sys
  42. import tempfile
  43. import time
  44. import warnings
  45. import __builtin__
  46. import docutils.core
  47. import docutils.io
  48. import lxml.etree
  49. import qubes.config
  50. import qubes.events
  51. import qubes.exc
  52. import qubes.ext
  53. if os.name == 'posix':
  54. import fcntl
  55. elif os.name == 'nt':
  56. # pylint: disable=import-error
  57. import win32con
  58. import win32file
  59. import pywintypes
  60. else:
  61. raise RuntimeError("Qubes works only on POSIX or WinNT systems")
  62. import libvirt
  63. try:
  64. import xen.lowlevel.xs
  65. import xen.lowlevel.xc
  66. except ImportError:
  67. pass
  68. class VMMConnection(object):
  69. '''Connection to Virtual Machine Manager (libvirt)'''
  70. def __init__(self):
  71. self._libvirt_conn = None
  72. self._xs = None
  73. self._xc = None
  74. self._offline_mode = False
  75. @__builtin__.property
  76. def offline_mode(self):
  77. '''Check or enable offline mode (do not actually connect to vmm)'''
  78. return self._offline_mode
  79. @offline_mode.setter
  80. def offline_mode(self, value):
  81. if value and self._libvirt_conn is not None:
  82. raise qubes.exc.QubesException(
  83. 'Cannot change offline mode while already connected')
  84. self._offline_mode = value
  85. def _libvirt_error_handler(self, ctx, error):
  86. pass
  87. def init_vmm_connection(self):
  88. '''Initialise connection
  89. This method is automatically called when getting'''
  90. if self._libvirt_conn is not None:
  91. # Already initialized
  92. return
  93. if self._offline_mode:
  94. # Do not initialize in offline mode
  95. raise qubes.exc.QubesException(
  96. 'VMM operations disabled in offline mode')
  97. if 'xen.lowlevel.xs' in sys.modules:
  98. self._xs = xen.lowlevel.xs.xs()
  99. if 'xen.lowlevel.cs' in sys.modules:
  100. self._xc = xen.lowlevel.xc.xc()
  101. self._libvirt_conn = libvirt.open(qubes.config.defaults['libvirt_uri'])
  102. if self._libvirt_conn is None:
  103. raise qubes.exc.QubesException('Failed connect to libvirt driver')
  104. libvirt.registerErrorHandler(self._libvirt_error_handler, None)
  105. atexit.register(self._libvirt_conn.close)
  106. @__builtin__.property
  107. def libvirt_conn(self):
  108. '''Connection to libvirt'''
  109. self.init_vmm_connection()
  110. return self._libvirt_conn
  111. @__builtin__.property
  112. def xs(self):
  113. '''Connection to Xen Store
  114. This property in available only when running on Xen.
  115. '''
  116. # XXX what about the case when we run under KVM,
  117. # but xen modules are importable?
  118. if 'xen.lowlevel.xs' not in sys.modules:
  119. raise AttributeError(
  120. 'xs object is available under Xen hypervisor only')
  121. self.init_vmm_connection()
  122. return self._xs
  123. @__builtin__.property
  124. def xc(self):
  125. '''Connection to Xen
  126. This property in available only when running on Xen.
  127. '''
  128. # XXX what about the case when we run under KVM,
  129. # but xen modules are importable?
  130. if 'xen.lowlevel.xc' not in sys.modules:
  131. raise AttributeError(
  132. 'xc object is available under Xen hypervisor only')
  133. self.init_vmm_connection()
  134. return self._xs
  135. class QubesHost(object):
  136. '''Basic information about host machine
  137. :param qubes.Qubes app: Qubes application context (must have \
  138. :py:attr:`Qubes.vmm` attribute defined)
  139. '''
  140. def __init__(self, app):
  141. self.app = app
  142. self._no_cpus = None
  143. self._total_mem = None
  144. self._physinfo = None
  145. def _fetch(self):
  146. if self._no_cpus is not None:
  147. return
  148. # pylint: disable=unused-variable
  149. (model, memory, cpus, mhz, nodes, socket, cores, threads) = \
  150. self.app.vmm.libvirt_conn.getInfo()
  151. self._total_mem = long(memory) * 1024
  152. self._no_cpus = cpus
  153. self.app.log.debug('QubesHost: no_cpus={} memory_total={}'.format(
  154. self.no_cpus, self.memory_total))
  155. try:
  156. self.app.log.debug('QubesHost: xen_free_memory={}'.format(
  157. self.get_free_xen_memory()))
  158. except NotImplementedError:
  159. pass
  160. @__builtin__.property
  161. def memory_total(self):
  162. '''Total memory, in bytes'''
  163. self._fetch()
  164. return self._total_mem
  165. @__builtin__.property
  166. def no_cpus(self):
  167. '''Number of CPUs'''
  168. self._fetch()
  169. return self._no_cpus
  170. def get_free_xen_memory(self):
  171. '''Get free memory from Xen's physinfo.
  172. :raises NotImplementedError: when not under Xen
  173. '''
  174. try:
  175. self._physinfo = self.app.xc.physinfo()
  176. except AttributeError:
  177. raise NotImplementedError('This function requires Xen hypervisor')
  178. return long(self._physinfo['free_memory'])
  179. def measure_cpu_usage(self, previous_time=None, previous=None,
  180. wait_time=1):
  181. '''Measure cpu usage for all domains at once.
  182. This function requires Xen hypervisor.
  183. .. versionchanged:: 3.0
  184. argument order to match return tuple
  185. :raises NotImplementedError: when not under Xen
  186. '''
  187. if previous is None:
  188. previous_time = time.time()
  189. previous = {}
  190. try:
  191. info = self.app.vmm.xc.domain_getinfo(0, qubes.config.max_qid)
  192. except AttributeError:
  193. raise NotImplementedError(
  194. 'This function requires Xen hypervisor')
  195. for vm in info:
  196. previous[vm['domid']] = {}
  197. previous[vm['domid']]['cpu_time'] = (
  198. vm['cpu_time'] / vm['online_vcpus'])
  199. previous[vm['domid']]['cpu_usage'] = 0
  200. time.sleep(wait_time)
  201. current_time = time.time()
  202. current = {}
  203. try:
  204. info = self.app.vmm.xc.domain_getinfo(0, qubes.config.max_qid)
  205. except AttributeError:
  206. raise NotImplementedError(
  207. 'This function requires Xen hypervisor')
  208. for vm in info:
  209. current[vm['domid']] = {}
  210. current[vm['domid']]['cpu_time'] = (
  211. vm['cpu_time'] / max(vm['online_vcpus'], 1))
  212. if vm['domid'] in previous.keys():
  213. current[vm['domid']]['cpu_usage'] = (
  214. float(current[vm['domid']]['cpu_time'] -
  215. previous[vm['domid']]['cpu_time']) /
  216. long(1000 ** 3) / (current_time - previous_time) * 100)
  217. if current[vm['domid']]['cpu_usage'] < 0:
  218. # VM has been rebooted
  219. current[vm['domid']]['cpu_usage'] = 0
  220. else:
  221. current[vm['domid']]['cpu_usage'] = 0
  222. return (current_time, current)
  223. class Label(object):
  224. '''Label definition for virtual machines
  225. Label specifies colour of the padlock displayed next to VM's name.
  226. When this is a :py:class:`qubes.vm.dispvm.DispVM`, padlock is overlayed
  227. with recycling pictogram.
  228. :param int index: numeric identificator of label
  229. :param str color: colour specification as in HTML (``#abcdef``)
  230. :param str name: label's name like "red" or "green"
  231. '''
  232. def __init__(self, index, color, name):
  233. #: numeric identificator of label
  234. self.index = index
  235. #: colour specification as in HTML (``#abcdef``)
  236. self.color = color
  237. #: label's name like "red" or "green"
  238. self.name = name
  239. #: freedesktop icon name, suitable for use in
  240. #: :py:meth:`PyQt4.QtGui.QIcon.fromTheme`
  241. self.icon = 'appvm-' + name
  242. #: freedesktop icon name, suitable for use in
  243. #: :py:meth:`PyQt4.QtGui.QIcon.fromTheme` on DispVMs
  244. self.icon_dispvm = 'dispvm-' + name
  245. @classmethod
  246. def fromxml(cls, xml):
  247. '''Create label definition from XML node
  248. :param lxml.etree._Element xml: XML node reference
  249. :rtype: :py:class:`qubes.Label`
  250. '''
  251. index = int(xml.get('id').split('-', 1)[1])
  252. color = xml.get('color')
  253. name = xml.text
  254. return cls(index, color, name)
  255. def __xml__(self):
  256. element = lxml.etree.Element(
  257. 'label', id='label-{}'.format(self.index), color=self.color)
  258. element.text = self.name
  259. return element
  260. def __repr__(self):
  261. return '{}({!r}, {!r}, {!r})'.format(
  262. self.__class__.__name__,
  263. self.index,
  264. self.color,
  265. self.name)
  266. @__builtin__.property
  267. def icon_path(self):
  268. '''Icon path
  269. .. deprecated:: 2.0
  270. use :py:meth:`PyQt4.QtGui.QIcon.fromTheme` and :py:attr:`icon`
  271. '''
  272. return os.path.join(qubes.config.system_path['qubes_icon_dir'],
  273. self.icon) + ".png"
  274. @__builtin__.property
  275. def icon_path_dispvm(self):
  276. '''Icon path
  277. .. deprecated:: 2.0
  278. use :py:meth:`PyQt4.QtGui.QIcon.fromTheme` and :py:attr:`icon_dispvm`
  279. '''
  280. return os.path.join(qubes.config.system_path['qubes_icon_dir'],
  281. self.icon_dispvm) + ".png"
  282. class VMCollection(object):
  283. '''A collection of Qubes VMs
  284. VMCollection supports ``in`` operator. You may test for ``qid``, ``name``
  285. and whole VM object's presence.
  286. Iterating over VMCollection will yield machine objects.
  287. '''
  288. def __init__(self, app):
  289. self.app = app
  290. self._dict = dict()
  291. def __repr__(self):
  292. return '<{} {!r}>'.format(
  293. self.__class__.__name__, list(sorted(self.keys())))
  294. def items(self):
  295. '''Iterate over ``(qid, vm)`` pairs'''
  296. for qid in self.qids():
  297. yield (qid, self[qid])
  298. def qids(self):
  299. '''Iterate over all qids
  300. qids are sorted by numerical order.
  301. '''
  302. return iter(sorted(self._dict.keys()))
  303. keys = qids
  304. def names(self):
  305. '''Iterate over all names
  306. names are sorted by lexical order.
  307. '''
  308. return iter(sorted(vm.name for vm in self._dict.values()))
  309. def vms(self):
  310. '''Iterate over all machines
  311. vms are sorted by qid.
  312. '''
  313. return iter(sorted(self._dict.values()))
  314. __iter__ = vms
  315. values = vms
  316. def add(self, value):
  317. '''Add VM to collection
  318. :param qubes.vm.BaseVM value: VM to add
  319. :raises TypeError: when value is of wrong type
  320. :raises ValueError: when there is already VM which has equal ``qid``
  321. '''
  322. # this violates duck typing, but is needed
  323. # for VMProperty to function correctly
  324. if not isinstance(value, qubes.vm.BaseVM):
  325. raise TypeError('{} holds only BaseVM instances'.format(
  326. self.__class__.__name__))
  327. if value.qid in self:
  328. raise ValueError('This collection already holds VM that has '
  329. 'qid={!r} ({!r})'.format(value.qid, self[value.qid]))
  330. if value.name in self:
  331. raise ValueError('This collection already holds VM that has '
  332. 'name={!r} ({!r})'.format(value.name, self[value.name]))
  333. self._dict[value.qid] = value
  334. value.events_enabled = True
  335. self.app.fire_event('domain-added', value)
  336. return value
  337. def __getitem__(self, key):
  338. if isinstance(key, int):
  339. return self._dict[key]
  340. if isinstance(key, basestring):
  341. for vm in self:
  342. if vm.name == key:
  343. return vm
  344. raise KeyError(key)
  345. if isinstance(key, qubes.vm.BaseVM):
  346. if key in self:
  347. return key
  348. raise KeyError(key)
  349. raise KeyError(key)
  350. def __delitem__(self, key):
  351. vm = self[key]
  352. del self._dict[vm.qid]
  353. self.app.fire_event('domain-deleted', vm)
  354. def __contains__(self, key):
  355. return any((key == vm or key == vm.qid or key == vm.name)
  356. for vm in self)
  357. def __len__(self):
  358. return len(self._dict)
  359. def get_vms_based_on(self, template):
  360. template = self[template]
  361. return set(vm for vm in self if vm.template == template)
  362. def get_vms_connected_to(self, netvm):
  363. new_vms = set([self[netvm]])
  364. dependent_vms = set()
  365. # Dependency resolving only makes sense on NetVM (or derivative)
  366. # if not self[netvm_qid].is_netvm():
  367. # return set([])
  368. while len(new_vms) > 0:
  369. cur_vm = new_vms.pop()
  370. for vm in cur_vm.connected_vms.values():
  371. if vm in dependent_vms:
  372. continue
  373. dependent_vms.add(vm.qid)
  374. # if vm.is_netvm():
  375. new_vms.add(vm.qid)
  376. return dependent_vms
  377. # XXX with Qubes Admin Api this will probably lead to race condition
  378. # whole process of creating and adding should be synchronised
  379. def get_new_unused_qid(self):
  380. used_ids = set(self.qids())
  381. for i in range(1, qubes.config.max_qid):
  382. if i not in used_ids:
  383. return i
  384. raise LookupError("Cannot find unused qid!")
  385. def get_new_unused_netid(self):
  386. used_ids = set([vm.netid for vm in self]) # if vm.is_netvm()])
  387. for i in range(1, qubes.config.max_netid):
  388. if i not in used_ids:
  389. return i
  390. raise LookupError("Cannot find unused netid!")
  391. class property(object): # pylint: disable=redefined-builtin,invalid-name
  392. '''Qubes property.
  393. This class holds one property that can be saved to and loaded from
  394. :file:`qubes.xml`. It is used for both global and per-VM properties.
  395. Property can be unset by ordinary ``del`` statement or assigning
  396. :py:attr:`DEFAULT` special value to it. After deletion (or before first
  397. assignment/load) attempting to read a property will get its default value
  398. or, when no default, py:class:`exceptions.AttributeError`.
  399. :param str name: name of the property
  400. :param collections.Callable setter: if not :py:obj:`None`, this is used to \
  401. initialise value; first parameter to the function is holder instance \
  402. and the second is value; this is called before ``type``
  403. :param collections.Callable saver: function to coerce value to something \
  404. readable by setter
  405. :param type type: if not :py:obj:`None`, value is coerced to this type
  406. :param object default: default value; if callable, will be called with \
  407. holder as first argument
  408. :param int load_stage: stage when property should be loaded (see \
  409. :py:class:`Qubes` for description of stages)
  410. :param int order: order of evaluation (bigger order values are later)
  411. :param str ls_head: column head for :program:`qvm-ls`
  412. :param int ls_width: column width in :program:`qvm-ls`
  413. :param str doc: docstring; this should be one paragraph of plain RST, no \
  414. sphinx-specific features
  415. Setters and savers have following signatures:
  416. .. :py:function:: setter(self, prop, value)
  417. :noindex:
  418. :param self: instance of object that is holding property
  419. :param prop: property object
  420. :param value: value being assigned
  421. .. :py:function:: saver(self, prop, value)
  422. :noindex:
  423. :param self: instance of object that is holding property
  424. :param prop: property object
  425. :param value: value being saved
  426. :rtype: str
  427. :raises property.DontSave: when property should not be saved at all
  428. '''
  429. #: Assigning this value to property means setting it to its default value.
  430. #: If property has no default value, this will unset it.
  431. DEFAULT = object()
  432. # internal use only
  433. _NO_DEFAULT = object()
  434. def __init__(self, name, setter=None, saver=None, type=None,
  435. default=_NO_DEFAULT, write_once=False, load_stage=2, order=0,
  436. save_via_ref=False,
  437. ls_head=None, ls_width=None, doc=None):
  438. # pylint: disable=redefined-builtin
  439. self.__name__ = name
  440. self._setter = setter
  441. self._saver = saver if saver is not None else (
  442. lambda self, prop, value: str(value))
  443. self._type = type
  444. self._default = default
  445. self._write_once = write_once
  446. self.order = order
  447. self.load_stage = load_stage
  448. self.save_via_ref = save_via_ref
  449. self.__doc__ = doc
  450. self._attr_name = '_qubesprop_' + name
  451. if ls_head is not None or ls_width is not None:
  452. self.ls_head = ls_head or self.__name__.replace('_', '-').upper()
  453. self.ls_width = max(ls_width or 0, len(self.ls_head) + 1)
  454. def __get__(self, instance, owner):
  455. if instance is None:
  456. return self
  457. # XXX this violates duck typing, shall we keep it?
  458. if not isinstance(instance, PropertyHolder):
  459. raise AttributeError('qubes.property should be used on '
  460. 'qubes.PropertyHolder instances only')
  461. try:
  462. return getattr(instance, self._attr_name)
  463. except AttributeError:
  464. if self._default is self._NO_DEFAULT:
  465. raise AttributeError(
  466. 'property {!r} not set'.format(self.__name__))
  467. elif isinstance(self._default, collections.Callable):
  468. return self._default(instance)
  469. else:
  470. return self._default
  471. def __set__(self, instance, value):
  472. self._enforce_write_once(instance)
  473. if value is self.__class__.DEFAULT:
  474. self.__delete__(instance)
  475. return
  476. try:
  477. oldvalue = getattr(instance, self.__name__)
  478. has_oldvalue = True
  479. except AttributeError:
  480. has_oldvalue = False
  481. if self._setter is not None:
  482. value = self._setter(instance, self, value)
  483. if self._type not in (None, type(value)):
  484. value = self._type(value)
  485. if has_oldvalue:
  486. instance.fire_event_pre('property-pre-set:' + self.__name__,
  487. self.__name__, value, oldvalue)
  488. else:
  489. instance.fire_event_pre('property-pre-set:' + self.__name__,
  490. self.__name__, value)
  491. instance._property_init(self, value) # pylint: disable=protected-access
  492. if has_oldvalue:
  493. instance.fire_event('property-set:' + self.__name__, self.__name__,
  494. value, oldvalue)
  495. else:
  496. instance.fire_event('property-set:' + self.__name__, self.__name__,
  497. value)
  498. def __delete__(self, instance):
  499. self._enforce_write_once(instance)
  500. try:
  501. oldvalue = getattr(instance, self.__name__)
  502. has_oldvalue = True
  503. except AttributeError:
  504. has_oldvalue = False
  505. if has_oldvalue:
  506. instance.fire_event_pre('property-pre-deleted:' + self.__name__,
  507. self.__name__, oldvalue)
  508. else:
  509. instance.fire_event_pre('property-pre-deleted:' + self.__name__,
  510. self.__name__)
  511. delattr(instance, self._attr_name)
  512. if has_oldvalue:
  513. instance.fire_event('property-deleted:' + self.__name__,
  514. self.__name__, oldvalue)
  515. else:
  516. instance.fire_event('property-deleted:' + self.__name__,
  517. self.__name__)
  518. def __repr__(self):
  519. default = ' default={!r}'.format(self._default) \
  520. if self._default is not self._NO_DEFAULT \
  521. else ''
  522. return '<{} object at {:#x} name={!r}{}>'.format(
  523. self.__class__.__name__, id(self), self.__name__, default) \
  524. def __hash__(self):
  525. return hash(self.__name__)
  526. def __eq__(self, other):
  527. return self.__name__ == other.__name__
  528. def _enforce_write_once(self, instance):
  529. if self._write_once and not instance.property_is_default(self):
  530. raise AttributeError(
  531. 'property {!r} is write-once and already set'.format(
  532. self.__name__))
  533. #
  534. # exceptions
  535. #
  536. class DontSave(Exception):
  537. '''This exception may be raised from saver to sign that property should
  538. not be saved.
  539. '''
  540. pass
  541. @staticmethod
  542. def dontsave(self, prop, value):
  543. '''Dummy saver that never saves anything.'''
  544. # pylint: disable=bad-staticmethod-argument,unused-argument
  545. raise property.DontSave()
  546. #
  547. # some setters provided
  548. #
  549. @staticmethod
  550. def forbidden(self, prop, value):
  551. '''Property setter that forbids loading a property.
  552. This is used to effectively disable property in classes which inherit
  553. unwanted property. When someone attempts to load such a property, it
  554. :throws AttributeError: always
  555. ''' # pylint: disable=bad-staticmethod-argument,unused-argument
  556. raise AttributeError(
  557. 'setting {} property on {} instance is forbidden'.format(
  558. prop.__name__, self.__class__.__name__))
  559. @staticmethod
  560. def bool(self, prop, value):
  561. '''Property setter for boolean properties.
  562. It accepts (case-insensitive) ``'0'``, ``'no'`` and ``false`` as
  563. :py:obj:`False` and ``'1'``, ``'yes'`` and ``'true'`` as
  564. :py:obj:`True`.
  565. ''' # pylint: disable=bad-staticmethod-argument,unused-argument
  566. if isinstance(value, basestring):
  567. lcvalue = value.lower()
  568. if lcvalue in ('0', 'no', 'false', 'off'):
  569. return False
  570. if lcvalue in ('1', 'yes', 'true', 'on'):
  571. return True
  572. raise ValueError(
  573. 'Invalid literal for boolean property: {!r}'.format(value))
  574. return bool(value)
  575. class PropertyHolder(qubes.events.Emitter):
  576. '''Abstract class for holding :py:class:`qubes.property`
  577. Events fired by instances of this class:
  578. .. event:: property-load (subject, event)
  579. Fired once after all properties are loaded from XML. Individual
  580. ``property-set`` events are not fired.
  581. .. event:: property-set:<propname> \
  582. (subject, event, name, newvalue[, oldvalue])
  583. Fired when property changes state. Signature is variable,
  584. *oldvalue* is present only if there was an old value.
  585. :param name: Property name
  586. :param newvalue: New value of the property
  587. :param oldvalue: Old value of the property
  588. .. event:: property-pre-set:<propname> \
  589. (subject, event, name, newvalue[, oldvalue])
  590. Fired before property changes state. Signature is variable,
  591. *oldvalue* is present only if there was an old value.
  592. :param name: Property name
  593. :param newvalue: New value of the property
  594. :param oldvalue: Old value of the property
  595. .. event:: property-del:<propname> \
  596. (subject, event, name[, oldvalue])
  597. Fired when property gets deleted (is set to default). Signature is
  598. variable, *oldvalue* is present only if there was an old value.
  599. :param name: Property name
  600. :param oldvalue: Old value of the property
  601. .. event:: property-pre-del:<propname> \
  602. (subject, event, name[, oldvalue])
  603. Fired before property gets deleted (is set to default). Signature
  604. is variable, *oldvalue* is present only if there was an old value.
  605. :param name: Property name
  606. :param oldvalue: Old value of the property
  607. Members:
  608. '''
  609. def __init__(self, xml, **kwargs):
  610. self.xml = xml
  611. propvalues = {}
  612. all_names = set(prop.__name__ for prop in self.property_list())
  613. for key in list(kwargs.keys()):
  614. if not key in all_names:
  615. continue
  616. propvalues[key] = kwargs.pop(key)
  617. super(PropertyHolder, self).__init__(**kwargs)
  618. for key, value in propvalues.items():
  619. setattr(self, key, value)
  620. @classmethod
  621. def property_list(cls, load_stage=None):
  622. '''List all properties attached to this VM's class
  623. :param load_stage: Filter by load stage
  624. :type load_stage: :py:func:`int` or :py:obj:`None`
  625. '''
  626. props = set()
  627. for class_ in cls.__mro__:
  628. props.update(prop for prop in class_.__dict__.values()
  629. if isinstance(prop, property))
  630. if load_stage is not None:
  631. props = set(prop for prop in props
  632. if prop.load_stage == load_stage)
  633. return sorted(props,
  634. key=lambda prop: (prop.load_stage, prop.order, prop.__name__))
  635. def _property_init(self, prop, value):
  636. '''Initialise property to a given value, without side effects.
  637. :param qubes.property prop: property object of particular interest
  638. :param value: value
  639. '''
  640. # pylint: disable=protected-access
  641. setattr(self, self.property_get_def(prop)._attr_name, value)
  642. def property_is_default(self, prop):
  643. '''Check whether property is in it's default value.
  644. Properties when unset may return some default value, so
  645. ``hasattr(vm, prop.__name__)`` is wrong in some circumstances. This
  646. method allows for checking if the value returned is in fact it's
  647. default value.
  648. :param qubes.property prop: property object of particular interest
  649. :rtype: bool
  650. ''' # pylint: disable=protected-access
  651. # both property_get_def() and ._attr_name may throw AttributeError,
  652. # which we don't want to catch
  653. attrname = self.property_get_def(prop)._attr_name
  654. return not hasattr(self, attrname)
  655. @classmethod
  656. def property_get_def(cls, prop):
  657. '''Return property definition object.
  658. If prop is already :py:class:`qubes.property` instance, return the same
  659. object.
  660. :param prop: property object or name
  661. :type prop: qubes.property or str
  662. :rtype: qubes.property
  663. '''
  664. if isinstance(prop, qubes.property):
  665. return prop
  666. for p in cls.property_list():
  667. if p.__name__ == prop:
  668. return p
  669. raise AttributeError('No property {!r} found in {!r}'.format(
  670. prop, cls))
  671. def load_properties(self, load_stage=None):
  672. '''Load properties from immediate children of XML node.
  673. ``property-set`` events are not fired for each individual property.
  674. :param int load_stage: Stage of loading.
  675. '''
  676. if self.xml is None:
  677. return
  678. all_names = set(
  679. prop.__name__ for prop in self.property_list(load_stage))
  680. for node in self.xml.xpath('./properties/property'):
  681. name = node.get('name')
  682. value = node.get('ref') or node.text
  683. if not name in all_names:
  684. continue
  685. setattr(self, name, value)
  686. def xml_properties(self, with_defaults=False):
  687. '''Iterator that yields XML nodes representing set properties.
  688. :param bool with_defaults: If :py:obj:`True`, then it also includes \
  689. properties which were not set explicite, but have default values \
  690. filled.
  691. '''
  692. properties = lxml.etree.Element('properties')
  693. for prop in self.property_list():
  694. # pylint: disable=protected-access
  695. try:
  696. value = getattr(
  697. self, (prop.__name__ if with_defaults else prop._attr_name))
  698. except AttributeError:
  699. continue
  700. try:
  701. value = prop._saver(self, prop, value)
  702. except property.DontSave:
  703. continue
  704. element = lxml.etree.Element('property', name=prop.__name__)
  705. if prop.save_via_ref:
  706. element.set('ref', value)
  707. else:
  708. element.text = value
  709. properties.append(element)
  710. return properties
  711. # this was clone_attrs
  712. def clone_properties(self, src, proplist=None):
  713. '''Clone properties from other object.
  714. :param PropertyHolder src: source object
  715. :param list proplist: list of properties \
  716. (:py:obj:`None` for all properties)
  717. '''
  718. if proplist is None:
  719. proplist = self.property_list()
  720. else:
  721. proplist = [prop for prop in self.property_list()
  722. if prop.__name__ in proplist or prop in proplist]
  723. for prop in self.property_list():
  724. try:
  725. # pylint: disable=protected-access
  726. self._property_init(prop, getattr(src, prop._attr_name))
  727. except AttributeError:
  728. continue
  729. self.fire_event('cloned-properties', src, proplist)
  730. def property_require(self, prop, allow_none=False, hard=False):
  731. '''Complain badly when property is not set.
  732. :param prop: property name or object
  733. :type prop: qubes.property or str
  734. :param bool allow_none: if :py:obj:`True`, don't complain if \
  735. :py:obj:`None` is found
  736. :param bool hard: if :py:obj:`True`, raise :py:class:`AssertionError`; \
  737. if :py:obj:`False`, log warning instead
  738. '''
  739. if isinstance(prop, qubes.property):
  740. prop = prop.__name__
  741. try:
  742. value = getattr(self, prop)
  743. if value is None and not allow_none:
  744. raise AttributeError()
  745. except AttributeError:
  746. # pylint: disable=no-member
  747. msg = 'Required property {!r} not set on {!r}'.format(prop, self)
  748. if hard:
  749. raise AssertionError(msg)
  750. else:
  751. # pylint: disable=no-member
  752. self.log.fatal(msg)
  753. import qubes.vm
  754. class VMProperty(property):
  755. '''Property that is referring to a VM
  756. :param type vmclass: class that returned VM is supposed to be instance of
  757. and all supported by :py:class:`property` with the exception of ``type`` \
  758. and ``setter``
  759. '''
  760. def __init__(self, name, vmclass=qubes.vm.BaseVM, allow_none=False,
  761. **kwargs):
  762. if 'type' in kwargs:
  763. raise TypeError(
  764. "'type' keyword parameter is unsupported in {}".format(
  765. self.__class__.__name__))
  766. if 'setter' in kwargs:
  767. raise TypeError(
  768. "'setter' keyword parameter is unsupported in {}".format(
  769. self.__class__.__name__))
  770. if not issubclass(vmclass, qubes.vm.BaseVM):
  771. raise TypeError(
  772. "'vmclass' should specify a subclass of qubes.vm.BaseVM")
  773. super(VMProperty, self).__init__(name,
  774. saver=(lambda self, prop, value: value.name if value else 'None'),
  775. **kwargs)
  776. self.vmclass = vmclass
  777. self.allow_none = allow_none
  778. def __set__(self, instance, value):
  779. if value is None:
  780. if self.allow_none:
  781. super(VMProperty, self).__set__(instance, value)
  782. return
  783. else:
  784. raise ValueError(
  785. 'Property {!r} does not allow setting to {!r}'.format(
  786. self.__name__, value))
  787. app = instance if isinstance(instance, Qubes) else instance.app
  788. # XXX this may throw LookupError; that's good until introduction
  789. # of QubesNoSuchVMException or whatever
  790. vm = app.domains[value]
  791. if not isinstance(vm, self.vmclass):
  792. raise TypeError('wrong VM class: domains[{!r}] if of type {!s} '
  793. 'and not {!s}'.format(value,
  794. vm.__class__.__name__,
  795. self.vmclass.__name__))
  796. super(VMProperty, self).__set__(instance, vm)
  797. import qubes.vm.qubesvm
  798. import qubes.vm.templatevm
  799. class Qubes(PropertyHolder):
  800. '''Main Qubes application
  801. :param str store: path to ``qubes.xml``
  802. The store is loaded in stages:
  803. 1. In the first stage there are loaded some basic features from store
  804. (currently labels).
  805. 2. In the second stage stubs for all VMs are loaded. They are filled
  806. with their basic properties, like ``qid`` and ``name``.
  807. 3. In the third stage all global properties are loaded. They often
  808. reference VMs, like default netvm, so they should be filled after
  809. loading VMs.
  810. 4. In the fourth stage all remaining VM properties are loaded. They
  811. also need all VMs loaded, because they represent dependencies
  812. between VMs like aforementioned netvm.
  813. 5. In the fifth stage there are some fixups to ensure sane system
  814. operation.
  815. This class emits following events:
  816. .. event:: domain-added (subject, event, vm)
  817. When domain is added.
  818. :param subject: Event emitter
  819. :param event: Event name (``'domain-added'``)
  820. :param vm: Domain object
  821. .. event:: domain-deleted (subject, event, vm)
  822. When domain is deleted. VM still has reference to ``app`` object,
  823. but is not contained within VMCollection.
  824. :param subject: Event emitter
  825. :param event: Event name (``'domain-deleted'``)
  826. :param vm: Domain object
  827. Methods and attributes:
  828. '''
  829. default_netvm = VMProperty('default_netvm', load_stage=3,
  830. default=None, allow_none=True,
  831. doc='''Default NetVM for AppVMs. Initial state is `None`, which means
  832. that AppVMs are not connected to the Internet.''')
  833. default_fw_netvm = VMProperty('default_fw_netvm', load_stage=3,
  834. default=None, allow_none=True,
  835. doc='''Default NetVM for ProxyVMs. Initial state is `None`, which means
  836. that ProxyVMs (including FirewallVM) are not connected to the
  837. Internet.''')
  838. default_template = VMProperty('default_template', load_stage=3,
  839. vmclass=qubes.vm.templatevm.TemplateVM,
  840. doc='Default template for new AppVMs')
  841. updatevm = VMProperty('updatevm', load_stage=3,
  842. allow_none=True,
  843. doc='''Which VM to use as `yum` proxy for updating AdminVM and
  844. TemplateVMs''')
  845. clockvm = VMProperty('clockvm', load_stage=3,
  846. allow_none=True,
  847. doc='Which VM to use as NTP proxy for updating AdminVM')
  848. default_kernel = property('default_kernel', load_stage=3,
  849. doc='Which kernel to use when not overriden in VM')
  850. # TODO #1637 #892
  851. check_updates_vm = property('check_updates_vm',
  852. type=bool, setter=property.bool,
  853. doc='check for updates inside qubes')
  854. def __init__(self, store=None, load=True, **kwargs):
  855. #: logger instance for logging global messages
  856. self.log = logging.getLogger('app')
  857. # pylint: disable=no-member
  858. self._extensions = set(
  859. ext(self) for ext in qubes.ext.Extension.register.values())
  860. #: collection of all VMs managed by this Qubes instance
  861. self.domains = VMCollection(self)
  862. #: collection of all available labels for VMs
  863. self.labels = {}
  864. #: Connection to VMM
  865. self.vmm = VMMConnection()
  866. #: Information about host system
  867. self.host = QubesHost(self)
  868. self._store = store if store is not None else os.path.join(
  869. qubes.config.system_path['qubes_base_dir'],
  870. qubes.config.system_path['qubes_store_filename'])
  871. super(Qubes, self).__init__(xml=None, **kwargs)
  872. if load:
  873. self.load()
  874. self.events_enabled = True
  875. def load(self):
  876. '''Open qubes.xml
  877. :throws EnvironmentError: failure on parsing store
  878. :throws xml.parsers.expat.ExpatError: failure on parsing store
  879. :raises lxml.etree.XMLSyntaxError: on syntax error in qubes.xml
  880. '''
  881. fd = os.open(self._store, os.O_RDWR) # no O_CREAT
  882. fh = os.fdopen(fd, 'rb')
  883. if os.name == 'posix':
  884. fcntl.lockf(fh, fcntl.LOCK_EX)
  885. elif os.name == 'nt':
  886. # pylint: disable=protected-access
  887. win32file.LockFileEx(
  888. win32file._get_osfhandle(fh.fileno()),
  889. win32con.LOCKFILE_EXCLUSIVE_LOCK,
  890. 0, -0x10000,
  891. pywintypes.OVERLAPPED())
  892. self.xml = lxml.etree.parse(fh)
  893. # stage 1: load labels
  894. for node in self.xml.xpath('./labels/label'):
  895. label = Label.fromxml(node)
  896. self.labels[label.index] = label
  897. # stage 2: load VMs
  898. for node in self.xml.xpath('./domains/domain'):
  899. # pylint: disable=no-member
  900. cls = qubes.vm.BaseVM.register[node.get('class')]
  901. vm = cls(self, node)
  902. vm.load_properties(load_stage=2)
  903. vm.init_log()
  904. self.domains.add(vm)
  905. if not 0 in self.domains:
  906. self.domains.add(qubes.vm.adminvm.AdminVM(
  907. self, None, qid=0, name='dom0'))
  908. # stage 3: load global properties
  909. self.load_properties(load_stage=3)
  910. # stage 4: fill all remaining VM properties
  911. for vm in self.domains:
  912. vm.load_properties(load_stage=4)
  913. # stage 5: misc fixups
  914. self.property_require('default_fw_netvm', allow_none=True)
  915. self.property_require('default_netvm', allow_none=True)
  916. self.property_require('default_template')
  917. self.property_require('clockvm')
  918. self.property_require('updatevm')
  919. # Disable ntpd in ClockVM - to not conflict with ntpdate (both are
  920. # using 123/udp port)
  921. if hasattr(self, 'clockvm') and self.clockvm is not None:
  922. if 'ntpd' in self.clockvm.services:
  923. if self.clockvm.services['ntpd']:
  924. self.log.warning("VM set as clockvm ({!r}) has enabled "
  925. "'ntpd' service! Expect failure when syncing time in "
  926. "dom0.".format(self.clockvm))
  927. else:
  928. self.clockvm.services['ntpd'] = False
  929. for vm in self.domains:
  930. vm.events_enabled = True
  931. vm.fire_event('domain-loaded')
  932. # intentionally do not call explicit unlock
  933. fh.close()
  934. del fh
  935. def __xml__(self):
  936. element = lxml.etree.Element('qubes')
  937. element.append(self.xml_labels())
  938. element.append(self.xml_properties())
  939. domains = lxml.etree.Element('domains')
  940. for vm in self.domains:
  941. domains.append(vm.__xml__())
  942. element.append(domains)
  943. return element
  944. def save(self):
  945. '''Save all data to qubes.xml
  946. There are several problems with saving :file:`qubes.xml` which must be
  947. mitigated:
  948. - Running out of disk space. No space left should not result in empty
  949. file. This is done by writing to temporary file and the renaming.
  950. - Attempts to write two or more files concurrently. This is done by
  951. sophisticated locking.
  952. :throws EnvironmentError: failure on saving
  953. '''
  954. while True:
  955. fd_old = os.open(self._store, os.O_RDWR | os.O_CREAT)
  956. if os.name == 'posix':
  957. fcntl.lockf(fd_old, fcntl.LOCK_EX)
  958. elif os.name == 'nt':
  959. # pylint: disable=protected-access
  960. overlapped = pywintypes.OVERLAPPED()
  961. win32file.LockFileEx(
  962. win32file._get_osfhandle(fd_old),
  963. win32con.LOCKFILE_EXCLUSIVE_LOCK, 0, -0x10000, overlapped)
  964. # While we were waiting for lock, someone could have unlink()ed (or
  965. # rename()d) our file out of the filesystem. We have to ensure we
  966. # got lock on something linked to filesystem. If not, try again.
  967. if os.fstat(fd_old) == os.stat(self._store):
  968. break
  969. else:
  970. os.close(fd_old)
  971. fh_new = tempfile.NamedTemporaryFile(prefix=self._store, delete=False)
  972. lxml.etree.ElementTree(self.__xml__()).write(
  973. fh_new, encoding='utf-8', pretty_print=True)
  974. fh_new.flush()
  975. os.chmod(fh_new.name, 0660)
  976. os.chown(fh_new.name, -1, grp.getgrnam('qubes').gr_gid)
  977. os.rename(fh_new.name, self._store)
  978. # intentionally do not call explicit unlock to not unlock the file
  979. # before all buffers are flushed
  980. fh_new.close()
  981. os.close(fd_old)
  982. @classmethod
  983. def create_empty_store(cls, *args, **kwargs):
  984. self = cls(*args, load=False, **kwargs)
  985. self.labels = {
  986. 1: Label(1, '0xcc0000', 'red'),
  987. 2: Label(2, '0xf57900', 'orange'),
  988. 3: Label(3, '0xedd400', 'yellow'),
  989. 4: Label(4, '0x73d216', 'green'),
  990. 5: Label(5, '0x555753', 'gray'),
  991. 6: Label(6, '0x3465a4', 'blue'),
  992. 7: Label(7, '0x75507b', 'purple'),
  993. 8: Label(8, '0x000000', 'black'),
  994. }
  995. self.domains.add(
  996. qubes.vm.adminvm.AdminVM(self, None, qid=0, name='dom0'))
  997. self.save()
  998. return self
  999. def xml_labels(self):
  1000. '''Serialise labels
  1001. :rtype: lxml.etree._Element
  1002. '''
  1003. labels = lxml.etree.Element('labels')
  1004. for label in sorted(self.labels.values(), key=lambda labl: labl.index):
  1005. labels.append(label.__xml__())
  1006. return labels
  1007. def add_new_vm(self, cls, qid=None, **kwargs):
  1008. '''Add new Virtual Machine to colletion
  1009. '''
  1010. if qid is None:
  1011. qid = self.domains.get_new_unused_qid()
  1012. return self.domains.add(cls(self, None, qid=qid, **kwargs))
  1013. def get_label(self, label):
  1014. '''Get label as identified by index or name
  1015. :throws KeyError: when label is not found
  1016. '''
  1017. # first search for index, verbatim
  1018. try:
  1019. return self.labels[label]
  1020. except KeyError:
  1021. pass
  1022. # then search for name
  1023. for i in self.labels.values():
  1024. if i.name == label:
  1025. return i
  1026. # last call, if label is a number represented as str, search in indices
  1027. try:
  1028. return self.labels[int(label)]
  1029. except (KeyError, ValueError):
  1030. pass
  1031. raise KeyError(label)
  1032. @qubes.events.handler('domain-pre-deleted')
  1033. def on_domain_pre_deleted(self, event, vm):
  1034. # pylint: disable=unused-argument
  1035. if isinstance(vm, qubes.vm.templatevm.TemplateVM):
  1036. appvms = self.domains.get_vms_based_on(vm)
  1037. if appvms:
  1038. raise qubes.exc.QubesException(
  1039. 'Cannot remove template that has dependent AppVMs. '
  1040. 'Affected are: {}'.format(', '.join(
  1041. vm.name for name in sorted(appvms))))
  1042. @qubes.events.handler('domain-deleted')
  1043. def on_domain_deleted(self, event, vm):
  1044. # pylint: disable=unused-argument
  1045. for propname in (
  1046. 'default_netvm',
  1047. 'default_fw_netvm',
  1048. 'clockvm',
  1049. 'updatevm',
  1050. 'default_template',
  1051. ):
  1052. try:
  1053. if getattr(self, propname) == vm:
  1054. delattr(self, propname)
  1055. except AttributeError:
  1056. pass
  1057. @qubes.events.handler('property-pre-set:clockvm')
  1058. def on_property_pre_set_clockvm(self, event, name, newvalue, oldvalue=None):
  1059. # pylint: disable=unused-argument,no-self-use
  1060. if newvalue is None:
  1061. return
  1062. if 'ntpd' in newvalue.services:
  1063. if newvalue.services['ntpd']:
  1064. raise qubes.exc.QubesVMError(newvalue,
  1065. 'Cannot set {!r} as {!r} since it has ntpd enabled.'.format(
  1066. newvalue.name, name))
  1067. else:
  1068. newvalue.services['ntpd'] = False
  1069. @qubes.events.handler(
  1070. 'property-pre-set:default_netvm',
  1071. 'property-pre-set:default_fw_netvm')
  1072. def on_property_pre_set_default_netvm(self, event, name, newvalue,
  1073. oldvalue=None):
  1074. # pylint: disable=unused-argument,invalid-name
  1075. if newvalue is not None and oldvalue is not None \
  1076. and oldvalue.is_running() and not newvalue.is_running() \
  1077. and self.domains.get_vms_connected_to(oldvalue):
  1078. raise qubes.exc.QubesVMNotRunningError(newvalue,
  1079. 'Cannot change {!r} to domain that '
  1080. 'is not running ({!r}).'.format(name, newvalue.name))
  1081. @qubes.events.handler('property-set:default_fw_netvm')
  1082. def on_property_set_default_fw_netvm(self, event, name, newvalue,
  1083. oldvalue=None):
  1084. # pylint: disable=unused-argument,invalid-name
  1085. for vm in self.domains:
  1086. if not vm.provides_network and vm.property_is_default('netvm'):
  1087. # fire property-del:netvm as it is responsible for resetting
  1088. # netvm to it's default value
  1089. vm.fire_event('property-del:netvm', 'netvm', newvalue, oldvalue)
  1090. @qubes.events.handler('property-set:default_netvm')
  1091. def on_property_set_default_netvm(self, event, name, newvalue,
  1092. oldvalue=None):
  1093. # pylint: disable=unused-argument
  1094. for vm in self.domains:
  1095. if vm.provides_network and vm.property_is_default('netvm'):
  1096. # fire property-del:netvm as it is responsible for resetting
  1097. # netvm to it's default value
  1098. vm.fire_event('property-del:netvm', 'netvm', newvalue, oldvalue)
  1099. # load plugins
  1100. import qubes._pluginloader