__init__.py 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689
  1. #
  2. # The Qubes OS Project, https://www.qubes-os.org/
  3. #
  4. # Copyright (C) 2010-2015 Joanna Rutkowska <joanna@invisiblethingslab.com>
  5. # Copyright (C) 2011-2015 Marek Marczykowski-Górecki
  6. # <marmarek@invisiblethingslab.com>
  7. # Copyright (C) 2014-2015 Wojtek Porczyk <woju@invisiblethingslab.com>
  8. #
  9. # This program is free software; you can redistribute it and/or modify
  10. # it under the terms of the GNU General Public License as published by
  11. # the Free Software Foundation; either version 2 of the License, or
  12. # (at your option) any later version.
  13. #
  14. # This program is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. # GNU General Public License for more details.
  18. #
  19. # You should have received a copy of the GNU General Public License along
  20. # with this program; if not, write to the Free Software Foundation, Inc.,
  21. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  22. #
  23. '''
  24. Qubes OS
  25. :copyright: © 2010-2015 Invisible Things Lab
  26. '''
  27. import builtins
  28. import collections
  29. import os
  30. import os.path
  31. import string
  32. import lxml.etree
  33. import qubes.config
  34. import qubes.events
  35. import qubes.exc
  36. __author__ = 'Invisible Things Lab'
  37. __license__ = 'GPLv2 or later'
  38. __version__ = 'R3'
  39. class Label(object):
  40. '''Label definition for virtual machines
  41. Label specifies colour of the padlock displayed next to VM's name.
  42. When this is a :py:class:`qubes.vm.dispvm.DispVM`, padlock is overlayed
  43. with recycling pictogram.
  44. :param int index: numeric identificator of label
  45. :param str color: colour specification as in HTML (``#abcdef``)
  46. :param str name: label's name like "red" or "green"
  47. '''
  48. def __init__(self, index, color, name):
  49. #: numeric identificator of label
  50. self.index = index
  51. #: colour specification as in HTML (``#abcdef``)
  52. self.color = color
  53. #: label's name like "red" or "green"
  54. self.name = name
  55. #: freedesktop icon name, suitable for use in
  56. #: :py:meth:`PyQt4.QtGui.QIcon.fromTheme`
  57. self.icon = 'appvm-' + name
  58. #: freedesktop icon name, suitable for use in
  59. #: :py:meth:`PyQt4.QtGui.QIcon.fromTheme` on DispVMs
  60. self.icon_dispvm = 'dispvm-' + name
  61. @classmethod
  62. def fromxml(cls, xml):
  63. '''Create label definition from XML node
  64. :param lxml.etree._Element xml: XML node reference
  65. :rtype: :py:class:`qubes.Label`
  66. '''
  67. index = int(xml.get('id').split('-', 1)[1])
  68. color = xml.get('color')
  69. name = xml.text
  70. return cls(index, color, name)
  71. def __xml__(self):
  72. element = lxml.etree.Element(
  73. 'label', id='label-{}'.format(self.index), color=self.color)
  74. element.text = self.name
  75. return element
  76. def __str__(self):
  77. return self.name
  78. def __repr__(self):
  79. return '{}({!r}, {!r}, {!r})'.format(
  80. self.__class__.__name__,
  81. self.index,
  82. self.color,
  83. self.name)
  84. def __eq__(self, other):
  85. if isinstance(other, Label):
  86. return self.name == other.name
  87. return NotImplemented
  88. @builtins.property
  89. def icon_path(self):
  90. '''Icon path
  91. .. deprecated:: 2.0
  92. use :py:meth:`PyQt4.QtGui.QIcon.fromTheme` and :py:attr:`icon`
  93. '''
  94. return os.path.join(qubes.config.system_path['qubes_icon_dir'],
  95. self.icon) + ".png"
  96. @builtins.property
  97. def icon_path_dispvm(self):
  98. '''Icon path
  99. .. deprecated:: 2.0
  100. use :py:meth:`PyQt4.QtGui.QIcon.fromTheme` and :py:attr:`icon_dispvm`
  101. '''
  102. return os.path.join(qubes.config.system_path['qubes_icon_dir'],
  103. self.icon_dispvm) + ".png"
  104. class property(object): # pylint: disable=redefined-builtin,invalid-name
  105. '''Qubes property.
  106. This class holds one property that can be saved to and loaded from
  107. :file:`qubes.xml`. It is used for both global and per-VM properties.
  108. Property can be unset by ordinary ``del`` statement or assigning
  109. :py:attr:`DEFAULT` special value to it. After deletion (or before first
  110. assignment/load) attempting to read a property will get its default value
  111. or, when no default, py:class:`exceptions.AttributeError`.
  112. :param str name: name of the property
  113. :param collections.Callable setter: if not :py:obj:`None`, this is used to \
  114. initialise value; first parameter to the function is holder instance \
  115. and the second is value; this is called before ``type``
  116. :param collections.Callable saver: function to coerce value to something \
  117. readable by setter
  118. :param type type: if not :py:obj:`None`, value is coerced to this type
  119. :param object default: default value; if callable, will be called with \
  120. holder as first argument
  121. :param int load_stage: stage when property should be loaded (see \
  122. :py:class:`Qubes` for description of stages)
  123. :param int order: order of evaluation (bigger order values are later)
  124. :param bool clone: :py:meth:`PropertyHolder.clone_properties` will not \
  125. include this property by default if :py:obj:`False`
  126. :param str ls_head: column head for :program:`qvm-ls`
  127. :param int ls_width: column width in :program:`qvm-ls`
  128. :param str doc: docstring; this should be one paragraph of plain RST, no \
  129. sphinx-specific features
  130. Setters and savers have following signatures:
  131. .. :py:function:: setter(self, prop, value)
  132. :noindex:
  133. :param self: instance of object that is holding property
  134. :param prop: property object
  135. :param value: value being assigned
  136. .. :py:function:: saver(self, prop, value)
  137. :noindex:
  138. :param self: instance of object that is holding property
  139. :param prop: property object
  140. :param value: value being saved
  141. :rtype: str
  142. :raises property.DontSave: when property should not be saved at all
  143. '''
  144. #: Assigning this value to property means setting it to its default value.
  145. #: If property has no default value, this will unset it.
  146. DEFAULT = object()
  147. # internal use only
  148. _NO_DEFAULT = object()
  149. def __init__(self, name, setter=None, saver=None, type=None,
  150. default=_NO_DEFAULT, write_once=False, load_stage=2, order=0,
  151. save_via_ref=False, clone=True,
  152. ls_head=None, ls_width=None, doc=None):
  153. # pylint: disable=redefined-builtin
  154. self.__name__ = name
  155. self._setter = setter
  156. self._saver = saver if saver is not None else (
  157. lambda self, prop, value: str(value))
  158. self.type = type
  159. self._default = default
  160. self._write_once = write_once
  161. self.order = order
  162. self.load_stage = load_stage
  163. self.save_via_ref = save_via_ref
  164. self.clone = clone
  165. self.__doc__ = doc
  166. self._attr_name = '_qubesprop_' + name
  167. if ls_head is not None or ls_width is not None:
  168. self.ls_head = ls_head or self.__name__.replace('_', '-').upper()
  169. self.ls_width = max(ls_width or 0, len(self.ls_head) + 1)
  170. def __get__(self, instance, owner):
  171. if instance is None:
  172. return self
  173. # XXX this violates duck typing, shall we keep it?
  174. if not isinstance(instance, PropertyHolder):
  175. raise AttributeError('qubes.property should be used on '
  176. 'qubes.PropertyHolder instances only')
  177. try:
  178. return getattr(instance, self._attr_name)
  179. except AttributeError:
  180. if self._default is self._NO_DEFAULT:
  181. raise AttributeError(
  182. 'property {!r} not set'.format(self.__name__))
  183. elif isinstance(self._default, collections.Callable):
  184. return self._default(instance)
  185. else:
  186. return self._default
  187. def __set__(self, instance, value):
  188. self._enforce_write_once(instance)
  189. if value is self.__class__.DEFAULT:
  190. self.__delete__(instance)
  191. return
  192. try:
  193. oldvalue = getattr(instance, self.__name__)
  194. has_oldvalue = True
  195. except AttributeError:
  196. has_oldvalue = False
  197. if self._setter is not None:
  198. value = self._setter(instance, self, value)
  199. if self.type not in (None, type(value)):
  200. value = self.type(value)
  201. if has_oldvalue:
  202. instance.fire_event_pre('property-pre-set:' + self.__name__,
  203. name=self.__name__, newvalue=value, oldvalue=oldvalue)
  204. else:
  205. instance.fire_event_pre('property-pre-set:' + self.__name__,
  206. name=self.__name__, newvalue=value)
  207. instance._property_init(self, value) # pylint: disable=protected-access
  208. if has_oldvalue:
  209. instance.fire_event('property-set:' + self.__name__,
  210. name=self.__name__, newvalue=value, oldvalue=oldvalue)
  211. else:
  212. instance.fire_event('property-set:' + self.__name__,
  213. name=self.__name__, newvalue=value)
  214. def __delete__(self, instance):
  215. self._enforce_write_once(instance)
  216. try:
  217. oldvalue = getattr(instance, self._attr_name)
  218. has_oldvalue = True
  219. except AttributeError:
  220. has_oldvalue = False
  221. if has_oldvalue:
  222. instance.fire_event_pre('property-pre-del:' + self.__name__,
  223. name=self.__name__, oldvalue=oldvalue)
  224. delattr(instance, self._attr_name)
  225. instance.fire_event('property-del:' + self.__name__,
  226. name=self.__name__, oldvalue=oldvalue)
  227. else:
  228. instance.fire_event_pre('property-pre-del:' + self.__name__,
  229. name=self.__name__)
  230. instance.fire_event('property-del:' + self.__name__,
  231. name=self.__name__)
  232. def __repr__(self):
  233. default = ' default={!r}'.format(self._default) \
  234. if self._default is not self._NO_DEFAULT \
  235. else ''
  236. return '<{} object at {:#x} name={!r}{}>'.format(
  237. self.__class__.__name__, id(self), self.__name__, default) \
  238. def __hash__(self):
  239. return hash(self.__name__)
  240. def __lt__(self, other):
  241. if isinstance(other, property):
  242. return (self.load_stage, self.order, self.__name__) <\
  243. (other.load_stage, other.order, other.__name__)
  244. return NotImplemented
  245. def __eq__(self, other):
  246. if isinstance(other, str):
  247. return self.__name__ == other
  248. return isinstance(other, property) and self.__name__ == other.__name__
  249. def _enforce_write_once(self, instance):
  250. if self._write_once and not instance.property_is_default(self):
  251. raise AttributeError(
  252. 'property {!r} is write-once and already set'.format(
  253. self.__name__))
  254. def sanitize(self, *, untrusted_newvalue):
  255. '''Coarse sanitization of value to be set, before sending it to a
  256. setter. Can raise QubesValueError if the value is invalid.
  257. :param untrusted_newvalue: value to be validated
  258. :return sanitized value
  259. :raises qubes.exc.QubesValueError
  260. '''
  261. # do not treat type='str' as sufficient validation
  262. if self.type is not None and self.type is not str:
  263. # assume specific type will preform enough validation
  264. if self.type is bool:
  265. try:
  266. untrusted_newvalue = untrusted_newvalue.decode('ascii')
  267. except UnicodeDecodeError:
  268. raise qubes.exc.QubesValueError
  269. return self.bool(None, None, untrusted_newvalue)
  270. else:
  271. try:
  272. return self.type(untrusted_newvalue)
  273. except ValueError:
  274. raise qubes.exc.QubesValueError
  275. else:
  276. # 'str' or not specified type
  277. try:
  278. untrusted_newvalue = untrusted_newvalue.decode('ascii',
  279. errors='strict')
  280. except UnicodeDecodeError:
  281. raise qubes.exc.QubesValueError
  282. allowed_set = string.printable
  283. if not all(x in allowed_set for x in untrusted_newvalue):
  284. raise qubes.exc.QubesValueError(
  285. 'Invalid characters in property value')
  286. return untrusted_newvalue
  287. #
  288. # exceptions
  289. #
  290. class DontSave(Exception):
  291. '''This exception may be raised from saver to sign that property should
  292. not be saved.
  293. '''
  294. pass
  295. @staticmethod
  296. def dontsave(self, prop, value):
  297. '''Dummy saver that never saves anything.'''
  298. # pylint: disable=bad-staticmethod-argument,unused-argument
  299. raise property.DontSave()
  300. #
  301. # some setters provided
  302. #
  303. @staticmethod
  304. def forbidden(self, prop, value):
  305. '''Property setter that forbids loading a property.
  306. This is used to effectively disable property in classes which inherit
  307. unwanted property. When someone attempts to load such a property, it
  308. :throws AttributeError: always
  309. ''' # pylint: disable=bad-staticmethod-argument,unused-argument
  310. raise AttributeError(
  311. 'setting {} property on {} instance is forbidden'.format(
  312. prop.__name__, self.__class__.__name__))
  313. @staticmethod
  314. def bool(self, prop, value):
  315. '''Property setter for boolean properties.
  316. It accepts (case-insensitive) ``'0'``, ``'no'`` and ``false`` as
  317. :py:obj:`False` and ``'1'``, ``'yes'`` and ``'true'`` as
  318. :py:obj:`True`.
  319. ''' # pylint: disable=bad-staticmethod-argument,unused-argument
  320. if isinstance(value, str):
  321. lcvalue = value.lower()
  322. if lcvalue in ('0', 'no', 'false', 'off'):
  323. return False
  324. if lcvalue in ('1', 'yes', 'true', 'on'):
  325. return True
  326. raise qubes.exc.QubesValueError(
  327. 'Invalid literal for boolean property: {!r}'.format(value))
  328. return bool(value)
  329. class PropertyHolder(qubes.events.Emitter):
  330. '''Abstract class for holding :py:class:`qubes.property`
  331. Events fired by instances of this class:
  332. .. event:: property-load (subject, event)
  333. Fired once after all properties are loaded from XML. Individual
  334. ``property-set`` events are not fired.
  335. .. event:: property-set:<propname> \
  336. (subject, event, name, newvalue[, oldvalue])
  337. Fired when property changes state. Signature is variable,
  338. *oldvalue* is present only if there was an old value.
  339. :param name: Property name
  340. :param newvalue: New value of the property
  341. :param oldvalue: Old value of the property
  342. .. event:: property-pre-set:<propname> \
  343. (subject, event, name, newvalue[, oldvalue])
  344. Fired before property changes state. Signature is variable,
  345. *oldvalue* is present only if there was an old value.
  346. :param name: Property name
  347. :param newvalue: New value of the property
  348. :param oldvalue: Old value of the property
  349. .. event:: property-del:<propname> \
  350. (subject, event, name[, oldvalue])
  351. Fired when property gets deleted (is set to default). Signature is
  352. variable, *oldvalue* is present only if there was an old value.
  353. :param name: Property name
  354. :param oldvalue: Old value of the property
  355. .. event:: property-pre-del:<propname> \
  356. (subject, event, name[, oldvalue])
  357. Fired before property gets deleted (is set to default). Signature
  358. is variable, *oldvalue* is present only if there was an old value.
  359. :param name: Property name
  360. :param oldvalue: Old value of the property
  361. .. event:: clone-properties (subject, event, src, proplist)
  362. :param src: object, from which we are cloning
  363. :param proplist: list of properties
  364. Members:
  365. '''
  366. def __init__(self, xml, **kwargs):
  367. self.xml = xml
  368. propvalues = {}
  369. all_names = set(prop.__name__ for prop in self.property_list())
  370. for key in list(kwargs):
  371. if not key in all_names:
  372. continue
  373. propvalues[key] = kwargs.pop(key)
  374. super(PropertyHolder, self).__init__(**kwargs)
  375. for key, value in propvalues.items():
  376. setattr(self, key, value)
  377. if self.xml is not None:
  378. # check if properties are appropriate
  379. all_names = set(prop.__name__ for prop in self.property_list())
  380. for node in self.xml.xpath('./properties/property'):
  381. name = node.get('name')
  382. if name not in all_names:
  383. raise TypeError(
  384. 'property {!r} not applicable to {!r}'.format(
  385. name, self.__class__.__name__))
  386. @classmethod
  387. def property_list(cls, load_stage=None):
  388. '''List all properties attached to this VM's class
  389. :param load_stage: Filter by load stage
  390. :type load_stage: :py:func:`int` or :py:obj:`None`
  391. '''
  392. props = set()
  393. for class_ in cls.__mro__:
  394. props.update(prop for prop in class_.__dict__.values()
  395. if isinstance(prop, property))
  396. if load_stage is not None:
  397. props = set(prop for prop in props
  398. if prop.load_stage == load_stage)
  399. return sorted(props)
  400. def _property_init(self, prop, value):
  401. '''Initialise property to a given value, without side effects.
  402. :param qubes.property prop: property object of particular interest
  403. :param value: value
  404. '''
  405. # pylint: disable=protected-access
  406. setattr(self, self.property_get_def(prop)._attr_name, value)
  407. def property_is_default(self, prop):
  408. '''Check whether property is in it's default value.
  409. Properties when unset may return some default value, so
  410. ``hasattr(vm, prop.__name__)`` is wrong in some circumstances. This
  411. method allows for checking if the value returned is in fact it's
  412. default value.
  413. :param qubes.property prop: property object of particular interest
  414. :rtype: bool
  415. ''' # pylint: disable=protected-access
  416. # both property_get_def() and ._attr_name may throw AttributeError,
  417. # which we don't want to catch
  418. attrname = self.property_get_def(prop)._attr_name
  419. return not hasattr(self, attrname)
  420. @classmethod
  421. def property_get_def(cls, prop):
  422. '''Return property definition object.
  423. If prop is already :py:class:`qubes.property` instance, return the same
  424. object.
  425. :param prop: property object or name
  426. :type prop: qubes.property or str
  427. :rtype: qubes.property
  428. '''
  429. if isinstance(prop, qubes.property):
  430. return prop
  431. for p in cls.property_list():
  432. if p.__name__ == prop:
  433. return p
  434. raise AttributeError('No property {!r} found in {!r}'.format(
  435. prop, cls))
  436. def load_properties(self, load_stage=None):
  437. '''Load properties from immediate children of XML node.
  438. ``property-set`` events are not fired for each individual property.
  439. :param int load_stage: Stage of loading.
  440. '''
  441. if self.xml is None:
  442. return
  443. all_names = set(
  444. prop.__name__ for prop in self.property_list(load_stage))
  445. for node in self.xml.xpath('./properties/property'):
  446. name = node.get('name')
  447. value = node.get('ref') or node.text
  448. if not name in all_names:
  449. continue
  450. setattr(self, name, value)
  451. def xml_properties(self, with_defaults=False):
  452. '''Iterator that yields XML nodes representing set properties.
  453. :param bool with_defaults: If :py:obj:`True`, then it also includes \
  454. properties which were not set explicite, but have default values \
  455. filled.
  456. '''
  457. properties = lxml.etree.Element('properties')
  458. for prop in self.property_list():
  459. # pylint: disable=protected-access
  460. try:
  461. value = getattr(
  462. self, (prop.__name__ if with_defaults else prop._attr_name))
  463. except AttributeError:
  464. continue
  465. try:
  466. value = prop._saver(self, prop, value)
  467. except property.DontSave:
  468. continue
  469. element = lxml.etree.Element('property', name=prop.__name__)
  470. if prop.save_via_ref:
  471. element.set('ref', value)
  472. else:
  473. element.text = value
  474. properties.append(element)
  475. return properties
  476. # this was clone_attrs
  477. def clone_properties(self, src, proplist=None):
  478. '''Clone properties from other object.
  479. :param PropertyHolder src: source object
  480. :param list proplist: list of properties \
  481. (:py:obj:`None` or omit for all properties except those with \
  482. :py:attr:`property.clone` set to :py:obj:`False`)
  483. '''
  484. if proplist is None:
  485. proplist = [prop for prop in self.property_list()
  486. if prop.clone]
  487. else:
  488. proplist = [prop for prop in self.property_list()
  489. if prop.__name__ in proplist or prop in proplist]
  490. for prop in proplist:
  491. try:
  492. # pylint: disable=protected-access
  493. self._property_init(prop, getattr(src, prop._attr_name))
  494. except AttributeError:
  495. continue
  496. self.fire_event('clone-properties', src=src, proplist=proplist)
  497. def property_require(self, prop, allow_none=False, hard=False):
  498. '''Complain badly when property is not set.
  499. :param prop: property name or object
  500. :type prop: qubes.property or str
  501. :param bool allow_none: if :py:obj:`True`, don't complain if \
  502. :py:obj:`None` is found
  503. :param bool hard: if :py:obj:`True`, raise :py:class:`AssertionError`; \
  504. if :py:obj:`False`, log warning instead
  505. '''
  506. if isinstance(prop, qubes.property):
  507. prop = prop.__name__
  508. try:
  509. value = getattr(self, prop)
  510. if value is None and not allow_none:
  511. raise AttributeError()
  512. except AttributeError:
  513. # pylint: disable=no-member
  514. msg = 'Required property {!r} not set on {!r}'.format(prop, self)
  515. if hard:
  516. raise AssertionError(msg)
  517. else:
  518. # pylint: disable=no-member
  519. self.log.fatal(msg)
  520. # pylint: disable=wrong-import-position
  521. from qubes.vm import VMProperty
  522. from qubes.app import Qubes
  523. __all__ = [
  524. 'Label',
  525. 'PropertyHolder',
  526. 'Qubes',
  527. 'VMProperty',
  528. 'property',
  529. ]