__init__.py 43 KB

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