__init__.py 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  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. '''Qubes Virtual Machines
  24. '''
  25. import datetime
  26. import os
  27. import re
  28. import string
  29. import subprocess
  30. import sys
  31. import xml.parsers.expat
  32. import lxml.etree
  33. import qubes
  34. import qubes.devices
  35. import qubes.events
  36. import qubes.log
  37. VM_ENTRY_POINT = 'qubes.vm'
  38. def validate_name(holder, prop, value):
  39. ''' Check if value is syntactically correct VM name '''
  40. if not isinstance(value, str):
  41. raise TypeError('VM name must be string, {!r} found'.format(
  42. type(value).__name__))
  43. if len(value) > 31:
  44. if holder is not None and prop is not None:
  45. raise qubes.exc.QubesPropertyValueError(holder, prop, value,
  46. '{} value must be shorter than 32 characters'.format(
  47. prop.__name__))
  48. else:
  49. raise qubes.exc.QubesValueError(
  50. 'VM name must be shorter than 32 characters')
  51. # this regexp does not contain '+'; if it had it, we should specifically
  52. # disallow 'lost+found' #1440
  53. if re.match(r"^[a-zA-Z][a-zA-Z0-9_-]*$", value) is None:
  54. if holder is not None and prop is not None:
  55. raise qubes.exc.QubesPropertyValueError(holder, prop, value,
  56. '{} value contains illegal characters'.format(prop.__name__))
  57. else:
  58. raise qubes.exc.QubesValueError(
  59. 'VM name contains illegal characters')
  60. class Features(dict):
  61. '''Manager of the features.
  62. Features can have three distinct values: no value (not present in mapping,
  63. which is closest thing to :py:obj:`None`), empty string (which is
  64. interpreted as :py:obj:`False`) and non-empty string, which is
  65. :py:obj:`True`. Anything assigned to the mapping is coerced to strings,
  66. however if you assign instances of :py:class:`bool`, they are converted as
  67. described above. Be aware that assigning the number `0` (which is considered
  68. false in Python) will result in string `'0'`, which is considered true.
  69. This class inherits from dict, but has most of the methods that manipulate
  70. the item disarmed (they raise NotImplementedError). The ones that are left
  71. fire appropriate events on the qube that owns an instance of this class.
  72. '''
  73. #
  74. # Those are the methods that affect contents. Either disarm them or make
  75. # them report appropriate events. Good approach is to rewrite them carefully
  76. # using official documentation, but use only our (overloaded) methods.
  77. #
  78. def __init__(self, vm, other=None, **kwargs):
  79. super(Features, self).__init__()
  80. self.vm = vm
  81. self.update(other, **kwargs)
  82. def __delitem__(self, key):
  83. super(Features, self).__delitem__(key)
  84. self.vm.fire_event('domain-feature-delete', key=key)
  85. def __setitem__(self, key, value):
  86. if value is None or isinstance(value, bool):
  87. value = '1' if value else ''
  88. else:
  89. value = str(value)
  90. self.vm.fire_event('domain-feature-set', key=key, value=value)
  91. super(Features, self).__setitem__(key, value)
  92. def clear(self):
  93. for key in self:
  94. del self[key]
  95. def pop(self, _key, _default=None):
  96. '''Not implemented
  97. :raises: NotImplementedError
  98. '''
  99. raise NotImplementedError()
  100. def popitem(self):
  101. '''Not implemented
  102. :raises: NotImplementedError
  103. '''
  104. raise NotImplementedError()
  105. def setdefault(self, _key, _default=None):
  106. '''Not implemented
  107. :raises: NotImplementedError
  108. '''
  109. raise NotImplementedError()
  110. def update(self, other=None, **kwargs):
  111. if other is not None:
  112. if hasattr(other, 'keys'):
  113. for key in other:
  114. self[key] = other[key]
  115. else:
  116. for key, value in other:
  117. self[key] = value
  118. for key in kwargs:
  119. self[key] = kwargs[key]
  120. #
  121. # end of overriding
  122. #
  123. _NO_DEFAULT = object()
  124. def check_with_template(self, feature, default=_NO_DEFAULT):
  125. ''' Check if the vm's template has the specified feature. '''
  126. if feature in self:
  127. return self[feature]
  128. if hasattr(self.vm, 'template') and self.vm.template is not None:
  129. return self.vm.template.features.check_with_template(feature,
  130. default)
  131. if default is self._NO_DEFAULT:
  132. raise KeyError(feature)
  133. return default
  134. class Tags(set):
  135. '''Manager of the tags.
  136. Tags are simple: tag either can be present on qube or not. Tag is a
  137. simple string consisting of ASCII alphanumeric characters, plus `_` and
  138. `-`.
  139. This class inherits from set, but has most of the methods that manipulate
  140. the item disarmed (they raise NotImplementedError). The ones that are left
  141. fire appropriate events on the qube that owns an instance of this class.
  142. '''
  143. #
  144. # Those are the methods that affect contents. Either disarm them or make
  145. # them report appropriate events. Good approach is to rewrite them carefully
  146. # using official documentation, but use only our (overloaded) methods.
  147. #
  148. def __init__(self, vm, seq=()):
  149. super(Tags, self).__init__()
  150. self.vm = vm
  151. self.update(seq)
  152. def clear(self):
  153. '''Remove all tags'''
  154. for item in tuple(self):
  155. self.remove(item)
  156. def symmetric_difference_update(self, *args, **kwargs):
  157. '''Not implemented
  158. :raises: NotImplementedError
  159. '''
  160. raise NotImplementedError()
  161. def intersection_update(self, *args, **kwargs):
  162. '''Not implemented
  163. :raises: NotImplementedError
  164. '''
  165. raise NotImplementedError()
  166. def pop(self):
  167. '''Not implemented
  168. :raises: NotImplementedError
  169. '''
  170. raise NotImplementedError()
  171. def discard(self, elem):
  172. '''Remove a tag if present'''
  173. if elem in self:
  174. self.remove(elem)
  175. def update(self, *others):
  176. '''Add tags from iterable(s)'''
  177. for other in others:
  178. for elem in other:
  179. self.add(elem)
  180. def add(self, elem):
  181. '''Add a tag'''
  182. allowed_chars = string.ascii_letters + string.digits + '_-'
  183. if any(i not in allowed_chars for i in elem):
  184. raise ValueError('Invalid character in tag')
  185. if elem in self:
  186. return
  187. self.vm.fire_event('domain-tag-add', tag=elem)
  188. super(Tags, self).add(elem)
  189. def remove(self, elem):
  190. '''Remove a tag'''
  191. super(Tags, self).remove(elem)
  192. self.vm.fire_event('domain-tag-delete', tag=elem)
  193. #
  194. # end of overriding
  195. #
  196. class BaseVM(qubes.PropertyHolder):
  197. '''Base class for all VMs
  198. :param app: Qubes application context
  199. :type app: :py:class:`qubes.Qubes`
  200. :param xml: xml node from which to deserialise
  201. :type xml: :py:class:`lxml.etree._Element` or :py:obj:`None`
  202. This class is responsible for serializing and deserialising machines and
  203. provides basic framework. It contains no management logic. For that, see
  204. :py:class:`qubes.vm.qubesvm.QubesVM`.
  205. '''
  206. # pylint: disable=no-member
  207. def __init__(self, app, xml, features=None, devices=None, tags=None,
  208. **kwargs):
  209. # pylint: disable=redefined-outer-name
  210. # self.app must be set before super().__init__, because some property
  211. # setters need working .app attribute
  212. #: mother :py:class:`qubes.Qubes` object
  213. self.app = app
  214. super(BaseVM, self).__init__(xml, **kwargs)
  215. #: dictionary of features of this qube
  216. self.features = Features(self, features)
  217. #: :py:class:`DeviceManager` object keeping devices that are attached to
  218. #: this domain
  219. self.devices = devices or qubes.devices.DeviceManager(self)
  220. #: user-specified tags
  221. self.tags = Tags(self, tags or ())
  222. #: logger instance for logging messages related to this VM
  223. self.log = None
  224. if hasattr(self, 'name'):
  225. self.init_log()
  226. def load_extras(self):
  227. # features
  228. for node in self.xml.xpath('./features/feature'):
  229. self.features[node.get('name')] = node.text
  230. # devices (pci, usb, ...)
  231. for parent in self.xml.xpath('./devices'):
  232. devclass = parent.get('class')
  233. for node in parent.xpath('./device'):
  234. options = {}
  235. if node.get('options'):
  236. options = node.get('options').attribs(),
  237. device_assignment = qubes.devices.DeviceAssignment(
  238. self.app.domains[node.get('backend-domain')],
  239. node.get('id'),
  240. options,
  241. persistent=True
  242. )
  243. self.devices[devclass].attach(device_assignment)
  244. # tags
  245. for node in self.xml.xpath('./tags/tag'):
  246. self.tags.add(node.get('name'))
  247. # SEE:1815 firewall, policy.
  248. def init_log(self):
  249. '''Initialise logger for this domain.'''
  250. self.log = qubes.log.get_vm_logger(self.name)
  251. def __xml__(self):
  252. element = lxml.etree.Element('domain')
  253. element.set('id', 'domain-' + str(self.qid))
  254. element.set('class', self.__class__.__name__)
  255. element.append(self.xml_properties())
  256. features = lxml.etree.Element('features')
  257. for feature in self.features:
  258. node = lxml.etree.Element('feature', name=feature)
  259. node.text = self.features[feature]
  260. features.append(node)
  261. element.append(features)
  262. for devclass in self.devices:
  263. devices = lxml.etree.Element('devices')
  264. devices.set('class', devclass)
  265. for device in self.devices[devclass].assignments(persistent=True):
  266. node = lxml.etree.Element('device')
  267. node.set('backend-domain', device.backend_domain.name)
  268. node.set('id', device.ident)
  269. options_node = lxml.etree.Element('options')
  270. for key, val in device.options:
  271. options_node.set(key, val)
  272. node.append(options_node)
  273. devices.append(node)
  274. element.append(devices)
  275. tags = lxml.etree.Element('tags')
  276. for tag in self.tags:
  277. node = lxml.etree.Element('tag', name=tag)
  278. tags.append(node)
  279. element.append(tags)
  280. return element
  281. def __repr__(self):
  282. proprepr = []
  283. for prop in self.property_list():
  284. try:
  285. proprepr.append('{}={!s}'.format(
  286. prop.__name__, getattr(self, prop.__name__)))
  287. except AttributeError:
  288. continue
  289. return '<{} object at {:#x} {}>'.format(
  290. self.__class__.__name__, id(self), ' '.join(proprepr))
  291. #
  292. # xml serialising methods
  293. #
  294. def create_config_file(self, prepare_dvm=False):
  295. '''Create libvirt's XML domain config file
  296. :param bool prepare_dvm: If we are in the process of preparing \
  297. DisposableVM
  298. '''
  299. domain_config = self.app.env.select_template([
  300. 'libvirt/xen/by-name/{}.xml'.format(self.name),
  301. 'libvirt/xen-user.xml',
  302. 'libvirt/xen-dist.xml',
  303. 'libvirt/xen.xml',
  304. ]).render(vm=self, prepare_dvm=prepare_dvm)
  305. return domain_config
  306. class VMProperty(qubes.property):
  307. '''Property that is referring to a VM
  308. :param type vmclass: class that returned VM is supposed to be instance of
  309. and all supported by :py:class:`property` with the exception of ``type`` \
  310. and ``setter``
  311. '''
  312. _none_value = ''
  313. def __init__(self, name, vmclass=BaseVM, allow_none=False,
  314. **kwargs):
  315. if 'type' in kwargs:
  316. raise TypeError(
  317. "'type' keyword parameter is unsupported in {}".format(
  318. self.__class__.__name__))
  319. if not issubclass(vmclass, BaseVM):
  320. raise TypeError(
  321. "'vmclass' should specify a subclass of qubes.vm.BaseVM")
  322. super(VMProperty, self).__init__(name,
  323. saver=(lambda self_, prop, value:
  324. self._none_value if value is None else value.name),
  325. **kwargs)
  326. self.vmclass = vmclass
  327. self.allow_none = allow_none
  328. def __set__(self, instance, value):
  329. if value is self.__class__.DEFAULT:
  330. self.__delete__(instance)
  331. return
  332. if value == self._none_value:
  333. value = None
  334. if value is None:
  335. if self.allow_none:
  336. super(VMProperty, self).__set__(instance, value)
  337. return
  338. else:
  339. raise ValueError(
  340. 'Property {!r} does not allow setting to {!r}'.format(
  341. self.__name__, value))
  342. app = instance if isinstance(instance, qubes.Qubes) else instance.app
  343. try:
  344. vm = app.domains[value]
  345. except KeyError:
  346. raise qubes.exc.QubesVMNotFoundError(value)
  347. if not isinstance(vm, self.vmclass):
  348. raise TypeError('wrong VM class: domains[{!r}] is of type {!s} '
  349. 'and not {!s}'.format(value,
  350. vm.__class__.__name__,
  351. self.vmclass.__name__))
  352. super(VMProperty, self).__set__(instance, vm)
  353. def sanitize(self, *, untrusted_newvalue):
  354. try:
  355. untrusted_vmname = untrusted_newvalue.decode('ascii')
  356. except UnicodeDecodeError:
  357. raise qubes.exc.QubesValueError
  358. validate_name(None, self, untrusted_vmname)
  359. return untrusted_vmname