__init__.py 45 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441
  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. all_names = set(
  677. prop.__name__ for prop in self.property_list(load_stage))
  678. for node in self.xml.xpath('./properties/property'):
  679. name = node.get('name')
  680. value = node.get('ref') or node.text
  681. if not name in all_names:
  682. continue
  683. setattr(self, name, value)
  684. def xml_properties(self, with_defaults=False):
  685. '''Iterator that yields XML nodes representing set properties.
  686. :param bool with_defaults: If :py:obj:`True`, then it also includes \
  687. properties which were not set explicite, but have default values \
  688. filled.
  689. '''
  690. properties = lxml.etree.Element('properties')
  691. for prop in self.property_list():
  692. # pylint: disable=protected-access
  693. try:
  694. value = getattr(
  695. self, (prop.__name__ if with_defaults else prop._attr_name))
  696. except AttributeError:
  697. continue
  698. try:
  699. value = prop._saver(self, prop, value)
  700. except property.DontSave:
  701. continue
  702. element = lxml.etree.Element('property', name=prop.__name__)
  703. if prop.save_via_ref:
  704. element.set('ref', value)
  705. else:
  706. element.text = value
  707. properties.append(element)
  708. return properties
  709. # this was clone_attrs
  710. def clone_properties(self, src, proplist=None):
  711. '''Clone properties from other object.
  712. :param PropertyHolder src: source object
  713. :param list proplist: list of properties \
  714. (:py:obj:`None` for all properties)
  715. '''
  716. if proplist is None:
  717. proplist = self.property_list()
  718. else:
  719. proplist = [prop for prop in self.property_list()
  720. if prop.__name__ in proplist or prop in proplist]
  721. for prop in self.property_list():
  722. try:
  723. # pylint: disable=protected-access
  724. self._property_init(prop, getattr(src, prop._attr_name))
  725. except AttributeError:
  726. continue
  727. self.fire_event('cloned-properties', src, proplist)
  728. def property_require(self, prop, allow_none=False, hard=False):
  729. '''Complain badly when property is not set.
  730. :param prop: property name or object
  731. :type prop: qubes.property or str
  732. :param bool allow_none: if :py:obj:`True`, don't complain if \
  733. :py:obj:`None` is found
  734. :param bool hard: if :py:obj:`True`, raise :py:class:`AssertionError`; \
  735. if :py:obj:`False`, log warning instead
  736. '''
  737. if isinstance(prop, qubes.property):
  738. prop = prop.__name__
  739. try:
  740. value = getattr(self, prop)
  741. if value is None and not allow_none:
  742. raise AttributeError()
  743. except AttributeError:
  744. # pylint: disable=no-member
  745. msg = 'Required property {!r} not set on {!r}'.format(prop, self)
  746. if hard:
  747. raise AssertionError(msg)
  748. else:
  749. # pylint: disable=no-member
  750. self.log.fatal(msg)
  751. import qubes.vm
  752. class VMProperty(property):
  753. '''Property that is referring to a VM
  754. :param type vmclass: class that returned VM is supposed to be instance of
  755. and all supported by :py:class:`property` with the exception of ``type`` \
  756. and ``setter``
  757. '''
  758. def __init__(self, name, vmclass=qubes.vm.BaseVM, allow_none=False,
  759. **kwargs):
  760. if 'type' in kwargs:
  761. raise TypeError(
  762. "'type' keyword parameter is unsupported in {}".format(
  763. self.__class__.__name__))
  764. if 'setter' in kwargs:
  765. raise TypeError(
  766. "'setter' keyword parameter is unsupported in {}".format(
  767. self.__class__.__name__))
  768. if not issubclass(vmclass, qubes.vm.BaseVM):
  769. raise TypeError(
  770. "'vmclass' should specify a subclass of qubes.vm.BaseVM")
  771. super(VMProperty, self).__init__(name,
  772. saver=(lambda self, prop, value: value.name if value else 'None'),
  773. **kwargs)
  774. self.vmclass = vmclass
  775. self.allow_none = allow_none
  776. def __set__(self, instance, value):
  777. if value is None:
  778. if self.allow_none:
  779. super(VMProperty, self).__set__(instance, value)
  780. return
  781. else:
  782. raise ValueError(
  783. 'Property {!r} does not allow setting to {!r}'.format(
  784. self.__name__, value))
  785. app = instance if isinstance(instance, Qubes) else instance.app
  786. # XXX this may throw LookupError; that's good until introduction
  787. # of QubesNoSuchVMException or whatever
  788. vm = app.domains[value]
  789. if not isinstance(vm, self.vmclass):
  790. raise TypeError('wrong VM class: domains[{!r}] if of type {!s} '
  791. 'and not {!s}'.format(value,
  792. vm.__class__.__name__,
  793. self.vmclass.__name__))
  794. super(VMProperty, self).__set__(instance, vm)
  795. import qubes.vm.qubesvm
  796. import qubes.vm.templatevm
  797. class Qubes(PropertyHolder):
  798. '''Main Qubes application
  799. :param str store: path to ``qubes.xml``
  800. The store is loaded in stages:
  801. 1. In the first stage there are loaded some basic features from store
  802. (currently labels).
  803. 2. In the second stage stubs for all VMs are loaded. They are filled
  804. with their basic properties, like ``qid`` and ``name``.
  805. 3. In the third stage all global properties are loaded. They often
  806. reference VMs, like default netvm, so they should be filled after
  807. loading VMs.
  808. 4. In the fourth stage all remaining VM properties are loaded. They
  809. also need all VMs loaded, because they represent dependencies
  810. between VMs like aforementioned netvm.
  811. 5. In the fifth stage there are some fixups to ensure sane system
  812. operation.
  813. This class emits following events:
  814. .. event:: domain-added (subject, event, vm)
  815. When domain is added.
  816. :param subject: Event emitter
  817. :param event: Event name (``'domain-added'``)
  818. :param vm: Domain object
  819. .. event:: domain-deleted (subject, event, vm)
  820. When domain is deleted. VM still has reference to ``app`` object,
  821. but is not contained within VMCollection.
  822. :param subject: Event emitter
  823. :param event: Event name (``'domain-deleted'``)
  824. :param vm: Domain object
  825. Methods and attributes:
  826. '''
  827. default_netvm = VMProperty('default_netvm', load_stage=3,
  828. default=None, allow_none=True,
  829. doc='''Default NetVM for AppVMs. Initial state is `None`, which means
  830. that AppVMs are not connected to the Internet.''')
  831. default_fw_netvm = VMProperty('default_fw_netvm', load_stage=3,
  832. default=None, allow_none=True,
  833. doc='''Default NetVM for ProxyVMs. Initial state is `None`, which means
  834. that ProxyVMs (including FirewallVM) are not connected to the
  835. Internet.''')
  836. default_template = VMProperty('default_template', load_stage=3,
  837. vmclass=qubes.vm.templatevm.TemplateVM,
  838. doc='Default template for new AppVMs')
  839. updatevm = VMProperty('updatevm', load_stage=3,
  840. allow_none=True,
  841. doc='''Which VM to use as `yum` proxy for updating AdminVM and
  842. TemplateVMs''')
  843. clockvm = VMProperty('clockvm', load_stage=3,
  844. allow_none=True,
  845. doc='Which VM to use as NTP proxy for updating AdminVM')
  846. default_kernel = property('default_kernel', load_stage=3,
  847. doc='Which kernel to use when not overriden in VM')
  848. def __init__(self, store=None, load=True, **kwargs):
  849. #: logger instance for logging global messages
  850. self.log = logging.getLogger('app')
  851. # pylint: disable=no-member
  852. self._extensions = set(
  853. ext(self) for ext in qubes.ext.Extension.register.values())
  854. #: collection of all VMs managed by this Qubes instance
  855. self.domains = VMCollection(self)
  856. #: collection of all available labels for VMs
  857. self.labels = {}
  858. #: Connection to VMM
  859. self.vmm = VMMConnection()
  860. #: Information about host system
  861. self.host = QubesHost(self)
  862. self._store = store if store is not None else os.path.join(
  863. qubes.config.system_path['qubes_base_dir'],
  864. qubes.config.system_path['qubes_store_filename'])
  865. super(Qubes, self).__init__(xml=None, **kwargs)
  866. if load:
  867. self.load()
  868. self.events_enabled = True
  869. def load(self):
  870. '''Open qubes.xml
  871. :throws EnvironmentError: failure on parsing store
  872. :throws xml.parsers.expat.ExpatError: failure on parsing store
  873. :raises lxml.etree.XMLSyntaxError: on syntax error in qubes.xml
  874. '''
  875. fd = os.open(self._store, os.O_RDWR) # no O_CREAT
  876. fh = os.fdopen(fd, 'rb')
  877. if os.name == 'posix':
  878. fcntl.lockf(fh, fcntl.LOCK_EX)
  879. elif os.name == 'nt':
  880. # pylint: disable=protected-access
  881. win32file.LockFileEx(
  882. win32file._get_osfhandle(fh.fileno()),
  883. win32con.LOCKFILE_EXCLUSIVE_LOCK,
  884. 0, -0x10000,
  885. pywintypes.OVERLAPPED())
  886. self.xml = lxml.etree.parse(fh)
  887. # stage 1: load labels
  888. for node in self.xml.xpath('./labels/label'):
  889. label = Label.fromxml(node)
  890. self.labels[label.index] = label
  891. # stage 2: load VMs
  892. for node in self.xml.xpath('./domains/domain'):
  893. # pylint: disable=no-member
  894. cls = qubes.vm.BaseVM.register[node.get('class')]
  895. vm = cls(self, node)
  896. vm.load_properties(load_stage=2)
  897. vm.init_log()
  898. self.domains.add(vm)
  899. if not 0 in self.domains:
  900. self.domains.add(qubes.vm.adminvm.AdminVM(
  901. self, None, qid=0, name='dom0'))
  902. # stage 3: load global properties
  903. self.load_properties(load_stage=3)
  904. # stage 4: fill all remaining VM properties
  905. for vm in self.domains:
  906. vm.load_properties(load_stage=4)
  907. # stage 5: misc fixups
  908. self.property_require('default_fw_netvm', allow_none=True)
  909. self.property_require('default_netvm', allow_none=True)
  910. self.property_require('default_template')
  911. self.property_require('clockvm')
  912. self.property_require('updatevm')
  913. # Disable ntpd in ClockVM - to not conflict with ntpdate (both are
  914. # using 123/udp port)
  915. if hasattr(self, 'clockvm') and self.clockvm is not None:
  916. if 'ntpd' in self.clockvm.services:
  917. if self.clockvm.services['ntpd']:
  918. self.log.warning("VM set as clockvm ({!r}) has enabled "
  919. "'ntpd' service! Expect failure when syncing time in "
  920. "dom0.".format(self.clockvm))
  921. else:
  922. self.clockvm.services['ntpd'] = False
  923. for vm in self.domains:
  924. vm.events_enabled = True
  925. vm.fire_event('domain-loaded')
  926. # intentionally do not call explicit unlock
  927. fh.close()
  928. del fh
  929. def __xml__(self):
  930. element = lxml.etree.Element('qubes')
  931. element.append(self.xml_labels())
  932. element.append(self.xml_properties())
  933. domains = lxml.etree.Element('domains')
  934. for vm in self.domains:
  935. domains.append(vm.__xml__())
  936. element.append(domains)
  937. return element
  938. def save(self):
  939. '''Save all data to qubes.xml
  940. :throws EnvironmentError: failure on saving
  941. '''
  942. fh = tempfile.NamedTemporaryFile(prefix=self._store, delete=False)
  943. if os.name == 'posix':
  944. fcntl.lockf(fh, fcntl.LOCK_EX)
  945. elif os.name == 'nt':
  946. # pylint: disable=protected-access
  947. overlapped = pywintypes.OVERLAPPED()
  948. win32file.LockFileEx(
  949. win32file._get_osfhandle(fh.fileno()),
  950. win32con.LOCKFILE_EXCLUSIVE_LOCK, 0, -0x10000, overlapped)
  951. lxml.etree.ElementTree(self.__xml__()).write(
  952. fh, encoding='utf-8', pretty_print=True)
  953. fh.flush()
  954. os.chmod(fh.name, 0660)
  955. os.chown(fh.name, -1, grp.getgrnam('qubes').gr_gid)
  956. os.rename(fh.name, self._store)
  957. # intentionally do not call explicit unlock to not unlock the file
  958. # before all buffers are flushed
  959. fh.close()
  960. del fh
  961. @classmethod
  962. def create_empty_store(cls, *args, **kwargs):
  963. self = cls(*args, load=False, **kwargs)
  964. self.labels = {
  965. 1: Label(1, '0xcc0000', 'red'),
  966. 2: Label(2, '0xf57900', 'orange'),
  967. 3: Label(3, '0xedd400', 'yellow'),
  968. 4: Label(4, '0x73d216', 'green'),
  969. 5: Label(5, '0x555753', 'gray'),
  970. 6: Label(6, '0x3465a4', 'blue'),
  971. 7: Label(7, '0x75507b', 'purple'),
  972. 8: Label(8, '0x000000', 'black'),
  973. }
  974. self.domains.add(
  975. qubes.vm.adminvm.AdminVM(self, None, qid=0, name='dom0'))
  976. self.save()
  977. return self
  978. def xml_labels(self):
  979. '''Serialise labels
  980. :rtype: lxml.etree._Element
  981. '''
  982. labels = lxml.etree.Element('labels')
  983. for label in sorted(self.labels.values(), key=lambda labl: labl.index):
  984. labels.append(label.__xml__())
  985. return labels
  986. def add_new_vm(self, cls, qid=None, **kwargs):
  987. '''Add new Virtual Machine to colletion
  988. '''
  989. if qid is None:
  990. qid = self.domains.get_new_unused_qid()
  991. return self.domains.add(cls(self, None, qid=qid, **kwargs))
  992. def get_label(self, label):
  993. '''Get label as identified by index or name
  994. :throws KeyError: when label is not found
  995. '''
  996. # first search for index, verbatim
  997. try:
  998. return self.labels[label]
  999. except KeyError:
  1000. pass
  1001. # then search for name
  1002. for i in self.labels.values():
  1003. if i.name == label:
  1004. return i
  1005. # last call, if label is a number represented as str, search in indices
  1006. try:
  1007. return self.labels[int(label)]
  1008. except (KeyError, ValueError):
  1009. pass
  1010. raise KeyError(label)
  1011. @qubes.events.handler('domain-pre-deleted')
  1012. def on_domain_pre_deleted(self, event, vm):
  1013. # pylint: disable=unused-argument
  1014. if isinstance(vm, qubes.vm.templatevm.TemplateVM):
  1015. appvms = self.domains.get_vms_based_on(vm)
  1016. if appvms:
  1017. raise qubes.exc.QubesException(
  1018. 'Cannot remove template that has dependent AppVMs. '
  1019. 'Affected are: {}'.format(', '.join(
  1020. vm.name for name in sorted(appvms))))
  1021. @qubes.events.handler('domain-deleted')
  1022. def on_domain_deleted(self, event, vm):
  1023. # pylint: disable=unused-argument
  1024. if self.default_netvm == vm:
  1025. del self.default_netvm
  1026. if self.default_fw_netvm == vm:
  1027. del self.default_fw_netvm
  1028. if self.clockvm == vm:
  1029. del self.clockvm
  1030. if self.updatevm == vm:
  1031. del self.updatevm
  1032. if self.default_template == vm:
  1033. del self.default_template
  1034. @qubes.events.handler('property-pre-set:clockvm')
  1035. def on_property_pre_set_clockvm(self, event, name, newvalue, oldvalue=None):
  1036. # pylint: disable=unused-argument,no-self-use
  1037. if newvalue is None:
  1038. return
  1039. if 'ntpd' in newvalue.services:
  1040. if newvalue.services['ntpd']:
  1041. raise qubes.exc.QubesVMError(newvalue,
  1042. 'Cannot set {!r} as {!r} since it has ntpd enabled.'.format(
  1043. newvalue.name, name))
  1044. else:
  1045. newvalue.services['ntpd'] = False
  1046. @qubes.events.handler(
  1047. 'property-pre-set:default_netvm',
  1048. 'property-pre-set:default_fw_netvm')
  1049. def on_property_pre_set_default_netvm(self, event, name, newvalue,
  1050. oldvalue=None):
  1051. # pylint: disable=unused-argument,invalid-name
  1052. if newvalue is not None and oldvalue is not None \
  1053. and oldvalue.is_running() and not newvalue.is_running() \
  1054. and self.domains.get_vms_connected_to(oldvalue):
  1055. raise qubes.exc.QubesVMNotRunningError(newvalue,
  1056. 'Cannot change {!r} to domain that '
  1057. 'is not running ({!r}).'.format(name, newvalue.name))
  1058. @qubes.events.handler('property-set:default_fw_netvm')
  1059. def on_property_set_default_fw_netvm(self, event, name, newvalue,
  1060. oldvalue=None):
  1061. # pylint: disable=unused-argument,invalid-name
  1062. for vm in self.domains:
  1063. if not vm.provides_network and vm.property_is_default('netvm'):
  1064. # fire property-del:netvm as it is responsible for resetting
  1065. # netvm to it's default value
  1066. vm.fire_event('property-del:netvm', 'netvm', newvalue, oldvalue)
  1067. @qubes.events.handler('property-set:default_netvm')
  1068. def on_property_set_default_netvm(self, event, name, newvalue,
  1069. oldvalue=None):
  1070. # pylint: disable=unused-argument
  1071. for vm in self.domains:
  1072. if vm.provides_network and vm.property_is_default('netvm'):
  1073. # fire property-del:netvm as it is responsible for resetting
  1074. # netvm to it's default value
  1075. vm.fire_event('property-del:netvm', 'netvm', newvalue, oldvalue)
  1076. # load plugins
  1077. import qubes._pluginloader