__init__.py 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600
  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 library is free software; you can redistribute it and/or
  10. # modify it under the terms of the GNU Lesser General Public
  11. # License as published by the Free Software Foundation; either
  12. # version 2.1 of the License, or (at your option) any later version.
  13. #
  14. # This library 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 GNU
  17. # Lesser General Public License for more details.
  18. #
  19. # You should have received a copy of the GNU Lesser General Public
  20. # License along with this library; if not, see <https://www.gnu.org/licenses/>.
  21. #
  22. '''Qubes Virtual Machines
  23. '''
  24. import asyncio
  25. import re
  26. import string
  27. import uuid
  28. import lxml.etree
  29. import qubes
  30. import qubes.devices
  31. import qubes.events
  32. import qubes.log
  33. VM_ENTRY_POINT = 'qubes.vm'
  34. def validate_name(holder, prop, value):
  35. ''' Check if value is syntactically correct VM name '''
  36. if not isinstance(value, str):
  37. raise TypeError('VM name must be string, {!r} found'.format(
  38. type(value).__name__))
  39. if len(value) > 31:
  40. if holder is not None and prop is not None:
  41. raise qubes.exc.QubesPropertyValueError(holder, prop, value,
  42. '{} value must be shorter than 32 characters'.format(
  43. prop.__name__))
  44. else:
  45. raise qubes.exc.QubesValueError(
  46. 'VM name must be shorter than 32 characters')
  47. # this regexp does not contain '+'; if it had it, we should specifically
  48. # disallow 'lost+found' #1440
  49. if re.match(r"^[a-zA-Z][a-zA-Z0-9_-]*$", value) is None:
  50. if holder is not None and prop is not None:
  51. raise qubes.exc.QubesPropertyValueError(holder, prop, value,
  52. '{} value contains illegal characters'.format(prop.__name__))
  53. else:
  54. raise qubes.exc.QubesValueError(
  55. 'VM name contains illegal characters')
  56. if value in ('none', 'default'):
  57. raise qubes.exc.QubesValueError(
  58. 'VM name cannot be \'none\' nor \'default\'')
  59. def setter_label(self, prop, value):
  60. ''' Helper for setting the domain label '''
  61. # pylint: disable=unused-argument
  62. if isinstance(value, qubes.Label):
  63. return value
  64. if isinstance(value, str) and value.startswith('label-'):
  65. return self.app.labels[int(value.split('-', 1)[1])]
  66. return self.app.get_label(value)
  67. def _setter_qid(self, prop, value):
  68. ''' Helper for setting the domain qid '''
  69. # pylint: disable=unused-argument
  70. value = int(value)
  71. if not 0 <= value <= qubes.config.max_qid:
  72. raise ValueError(
  73. '{} value must be between 0 and qubes.config.max_qid'.format(
  74. prop.__name__))
  75. return value
  76. class Features(dict):
  77. '''Manager of the features.
  78. Features can have three distinct values: no value (not present in mapping,
  79. which is closest thing to :py:obj:`None`), empty string (which is
  80. interpreted as :py:obj:`False`) and non-empty string, which is
  81. :py:obj:`True`. Anything assigned to the mapping is coerced to strings,
  82. however if you assign instances of :py:class:`bool`, they are converted as
  83. described above. Be aware that assigning the number `0` (which is considered
  84. false in Python) will result in string `'0'`, which is considered true.
  85. This class inherits from dict, but has most of the methods that manipulate
  86. the item disarmed (they raise NotImplementedError). The ones that are left
  87. fire appropriate events on the qube that owns an instance of this class.
  88. '''
  89. #
  90. # Those are the methods that affect contents. Either disarm them or make
  91. # them report appropriate events. Good approach is to rewrite them carefully
  92. # using official documentation, but use only our (overloaded) methods.
  93. #
  94. def __init__(self, vm, other=None, **kwargs):
  95. super(Features, self).__init__()
  96. self.vm = vm
  97. self.update(other, **kwargs)
  98. def __delitem__(self, key):
  99. super(Features, self).__delitem__(key)
  100. self.vm.fire_event('domain-feature-delete', feature=key)
  101. def __setitem__(self, key, value):
  102. if value is None or isinstance(value, bool):
  103. value = '1' if value else ''
  104. else:
  105. value = str(value)
  106. try:
  107. oldvalue = self[key]
  108. has_oldvalue = True
  109. except KeyError:
  110. has_oldvalue = False
  111. super(Features, self).__setitem__(key, value)
  112. if has_oldvalue:
  113. self.vm.fire_event('domain-feature-set', feature=key, value=value,
  114. oldvalue=oldvalue)
  115. else:
  116. self.vm.fire_event('domain-feature-set', feature=key, value=value)
  117. def clear(self):
  118. for key in tuple(self):
  119. del self[key]
  120. def pop(self, _key, _default=None):
  121. '''Not implemented
  122. :raises: NotImplementedError
  123. '''
  124. raise NotImplementedError()
  125. def popitem(self):
  126. '''Not implemented
  127. :raises: NotImplementedError
  128. '''
  129. raise NotImplementedError()
  130. def setdefault(self, _key, _default=None):
  131. '''Not implemented
  132. :raises: NotImplementedError
  133. '''
  134. raise NotImplementedError()
  135. def update(self, other=None, **kwargs):
  136. if other is not None:
  137. if hasattr(other, 'keys'):
  138. for key in other:
  139. self[key] = other[key]
  140. else:
  141. for key, value in other:
  142. self[key] = value
  143. for key in kwargs:
  144. self[key] = kwargs[key]
  145. #
  146. # end of overriding
  147. #
  148. _NO_DEFAULT = object()
  149. def check_with_template(self, feature, default=_NO_DEFAULT):
  150. ''' Check if the vm's template has the specified feature. '''
  151. if feature in self:
  152. return self[feature]
  153. if hasattr(self.vm, 'template') and self.vm.template is not None:
  154. return self.vm.template.features.check_with_template(feature,
  155. default)
  156. if default is self._NO_DEFAULT:
  157. raise KeyError(feature)
  158. return default
  159. def check_with_netvm(self, feature, default=_NO_DEFAULT):
  160. ''' Check if the vm's netvm has the specified feature. '''
  161. if feature in self:
  162. return self[feature]
  163. if hasattr(self.vm, 'netvm') and self.vm.netvm is not None:
  164. return self.vm.netvm.features.check_with_netvm(feature,
  165. default)
  166. if default is self._NO_DEFAULT:
  167. raise KeyError(feature)
  168. return default
  169. class Tags(set):
  170. '''Manager of the tags.
  171. Tags are simple: tag either can be present on qube or not. Tag is a
  172. simple string consisting of ASCII alphanumeric characters, plus `_` and
  173. `-`.
  174. This class inherits from set, but has most of the methods that manipulate
  175. the item disarmed (they raise NotImplementedError). The ones that are left
  176. fire appropriate events on the qube that owns an instance of this class.
  177. '''
  178. #
  179. # Those are the methods that affect contents. Either disarm them or make
  180. # them report appropriate events. Good approach is to rewrite them carefully
  181. # using official documentation, but use only our (overloaded) methods.
  182. #
  183. def __init__(self, vm, seq=()):
  184. super(Tags, self).__init__()
  185. self.vm = vm
  186. self.update(seq)
  187. def clear(self):
  188. '''Remove all tags'''
  189. for item in tuple(self):
  190. self.remove(item)
  191. def symmetric_difference_update(self, *args, **kwargs):
  192. '''Not implemented
  193. :raises: NotImplementedError
  194. '''
  195. raise NotImplementedError()
  196. def intersection_update(self, *args, **kwargs):
  197. '''Not implemented
  198. :raises: NotImplementedError
  199. '''
  200. raise NotImplementedError()
  201. def pop(self):
  202. '''Not implemented
  203. :raises: NotImplementedError
  204. '''
  205. raise NotImplementedError()
  206. def discard(self, elem):
  207. '''Remove a tag if present'''
  208. if elem in self:
  209. self.remove(elem)
  210. def update(self, *others):
  211. '''Add tags from iterable(s)'''
  212. for other in others:
  213. for elem in other:
  214. self.add(elem)
  215. def add(self, elem):
  216. '''Add a tag'''
  217. allowed_chars = string.ascii_letters + string.digits + '_-'
  218. if any(i not in allowed_chars for i in elem):
  219. raise ValueError('Invalid character in tag')
  220. if elem in self:
  221. return
  222. super(Tags, self).add(elem)
  223. self.vm.fire_event('domain-tag-add', tag=elem)
  224. def remove(self, elem):
  225. '''Remove a tag'''
  226. super(Tags, self).remove(elem)
  227. self.vm.fire_event('domain-tag-delete', tag=elem)
  228. #
  229. # end of overriding
  230. #
  231. @staticmethod
  232. def validate_tag(tag):
  233. safe_set = string.ascii_letters + string.digits + '-_'
  234. assert all((x in safe_set) for x in tag)
  235. class BaseVM(qubes.PropertyHolder):
  236. '''Base class for all VMs
  237. :param app: Qubes application context
  238. :type app: :py:class:`qubes.Qubes`
  239. :param xml: xml node from which to deserialise
  240. :type xml: :py:class:`lxml.etree._Element` or :py:obj:`None`
  241. This class is responsible for serializing and deserialising machines and
  242. provides basic framework. It contains no management logic. For that, see
  243. :py:class:`qubes.vm.qubesvm.QubesVM`.
  244. '''
  245. # pylint: disable=no-member
  246. uuid = qubes.property('uuid', type=uuid.UUID, write_once=True,
  247. clone=False,
  248. doc='UUID from libvirt.')
  249. name = qubes.property('name', type=str, write_once=True,
  250. clone=False,
  251. doc='User-specified name of the domain.')
  252. qid = qubes.property('qid', type=int, write_once=True,
  253. setter=_setter_qid,
  254. clone=False,
  255. doc='''Internal, persistent identificator of particular domain. Note
  256. this is different from Xen domid.''')
  257. label = qubes.property('label',
  258. setter=setter_label,
  259. doc='''Colourful label assigned to VM. This is where the colour of the
  260. padlock is set.''')
  261. def __init__(self, app, xml, features=None, devices=None, tags=None,
  262. **kwargs):
  263. # pylint: disable=redefined-outer-name
  264. self._qdb_watch_paths = set()
  265. self._qdb_connection_watch = None
  266. # self.app must be set before super().__init__, because some property
  267. # setters need working .app attribute
  268. #: mother :py:class:`qubes.Qubes` object
  269. self.app = app
  270. super(BaseVM, self).__init__(xml, **kwargs)
  271. #: dictionary of features of this qube
  272. self.features = Features(self, features)
  273. #: :py:class:`DeviceManager` object keeping devices that are attached to
  274. #: this domain
  275. self.devices = devices or qubes.devices.DeviceManager(self)
  276. #: user-specified tags
  277. self.tags = Tags(self, tags or ())
  278. #: logger instance for logging messages related to this VM
  279. self.log = None
  280. #: storage volumes
  281. self.volumes = {}
  282. #: storage manager
  283. self.storage = None
  284. if hasattr(self, 'name'):
  285. self.init_log()
  286. def close(self):
  287. super().close()
  288. if self._qdb_connection_watch is not None:
  289. asyncio.get_event_loop().remove_reader(
  290. self._qdb_connection_watch.watch_fd())
  291. self._qdb_connection_watch.close()
  292. del self._qdb_connection_watch
  293. del self.app
  294. del self.features
  295. del self.storage
  296. # TODO storage may have circ references, but it doesn't leak fds
  297. del self.devices
  298. del self.tags
  299. def load_extras(self):
  300. if self.xml is None:
  301. return
  302. # features
  303. for node in self.xml.xpath('./features/feature'):
  304. self.features[node.get('name')] = node.text
  305. # devices (pci, usb, ...)
  306. for parent in self.xml.xpath('./devices'):
  307. devclass = parent.get('class')
  308. for node in parent.xpath('./device'):
  309. options = {}
  310. for option in node.xpath('./option'):
  311. options[option.get('name')] = option.text
  312. device_assignment = qubes.devices.DeviceAssignment(
  313. self.app.domains[node.get('backend-domain')],
  314. node.get('id'),
  315. options,
  316. persistent=True
  317. )
  318. self.devices[devclass].load_persistent(device_assignment)
  319. # tags
  320. for node in self.xml.xpath('./tags/tag'):
  321. self.tags.add(node.get('name'))
  322. # SEE:1815 firewall, policy.
  323. def init_log(self):
  324. '''Initialise logger for this domain.'''
  325. self.log = qubes.log.get_vm_logger(self.name)
  326. def __xml__(self):
  327. element = lxml.etree.Element('domain')
  328. element.set('id', 'domain-' + str(self.qid))
  329. element.set('class', self.__class__.__name__)
  330. element.append(self.xml_properties())
  331. features = lxml.etree.Element('features')
  332. for feature in self.features:
  333. node = lxml.etree.Element('feature', name=feature)
  334. node.text = self.features[feature]
  335. features.append(node)
  336. element.append(features)
  337. for devclass in self.devices:
  338. devices = lxml.etree.Element('devices')
  339. devices.set('class', devclass)
  340. for device in self.devices[devclass].assignments(persistent=True):
  341. node = lxml.etree.Element('device')
  342. node.set('backend-domain', device.backend_domain.name)
  343. node.set('id', device.ident)
  344. for key, val in device.options.items():
  345. option_node = lxml.etree.Element('option')
  346. option_node.set('name', key)
  347. option_node.text = val
  348. node.append(option_node)
  349. devices.append(node)
  350. element.append(devices)
  351. tags = lxml.etree.Element('tags')
  352. for tag in self.tags:
  353. node = lxml.etree.Element('tag', name=tag)
  354. tags.append(node)
  355. element.append(tags)
  356. return element
  357. def __repr__(self):
  358. proprepr = []
  359. for prop in self.property_list():
  360. if prop.__name__ in ('name', 'qid'):
  361. continue
  362. try:
  363. proprepr.append('{}={!s}'.format(
  364. prop.__name__, getattr(self, prop.__name__)))
  365. except AttributeError:
  366. continue
  367. return '<{} at {:#x} name={!r} qid={!r} {}>'.format(type(self).__name__,
  368. id(self), self.name, self.qid, ' '.join(proprepr))
  369. #
  370. # xml serialising methods
  371. #
  372. def create_config_file(self):
  373. '''Create libvirt's XML domain config file
  374. '''
  375. domain_config = self.app.env.select_template([
  376. 'libvirt/xen/by-name/{}.xml'.format(self.name),
  377. 'libvirt/xen-user.xml',
  378. 'libvirt/xen-dist.xml',
  379. 'libvirt/xen.xml',
  380. ]).render(vm=self)
  381. return domain_config
  382. def watch_qdb_path(self, path):
  383. '''Add a QubesDB path to be watched.
  384. Each change to the path will cause `domain-qdb-change:path` event to be
  385. fired.
  386. You can call this method for example in response to
  387. `domain-init` and `domain-load` events.
  388. '''
  389. if path not in self._qdb_watch_paths:
  390. self._qdb_watch_paths.add(path)
  391. if self._qdb_connection_watch:
  392. self._qdb_connection_watch.watch(path)
  393. def _qdb_watch_reader(self, loop):
  394. '''Callback when self._qdb_connection_watch.watch_fd() FD is
  395. readable.
  396. Read reported event (watched path change) and fire appropriate event.
  397. '''
  398. import qubesdb # pylint: disable=import-error
  399. try:
  400. path = self._qdb_connection_watch.read_watch()
  401. for watched_path in self._qdb_watch_paths:
  402. if watched_path == path or (
  403. watched_path.endswith('/') and
  404. path.startswith(watched_path)):
  405. self.fire_event('domain-qdb-change:' + watched_path,
  406. path=path)
  407. except qubesdb.DisconnectedError:
  408. loop.remove_reader(self._qdb_connection_watch.watch_fd())
  409. self._qdb_connection_watch.close()
  410. self._qdb_connection_watch = None
  411. def start_qdb_watch(self, loop=None):
  412. '''Start watching QubesDB
  413. Calling this method in appropriate time is responsibility of child
  414. class.
  415. '''
  416. # cleanup old watch connection first, if any
  417. if self._qdb_connection_watch is not None:
  418. asyncio.get_event_loop().remove_reader(
  419. self._qdb_connection_watch.watch_fd())
  420. self._qdb_connection_watch.close()
  421. import qubesdb # pylint: disable=import-error
  422. self._qdb_connection_watch = qubesdb.QubesDB(self.name)
  423. if loop is None:
  424. loop = asyncio.get_event_loop()
  425. loop.add_reader(self._qdb_connection_watch.watch_fd(),
  426. self._qdb_watch_reader, loop)
  427. for path in self._qdb_watch_paths:
  428. self._qdb_connection_watch.watch(path)
  429. @qubes.stateless_property
  430. def klass(self):
  431. '''Domain class name'''
  432. return type(self).__name__
  433. class VMProperty(qubes.property):
  434. '''Property that is referring to a VM
  435. :param type vmclass: class that returned VM is supposed to be instance of
  436. and all supported by :py:class:`property` with the exception of ``type`` \
  437. and ``setter``
  438. '''
  439. _none_value = ''
  440. def __init__(self, name, vmclass=BaseVM, allow_none=False,
  441. **kwargs):
  442. if 'type' in kwargs:
  443. raise TypeError(
  444. "'type' keyword parameter is unsupported in {}".format(
  445. self.__class__.__name__))
  446. if not issubclass(vmclass, BaseVM):
  447. raise TypeError(
  448. "'vmclass' should specify a subclass of qubes.vm.BaseVM")
  449. super(VMProperty, self).__init__(name,
  450. saver=(lambda self_, prop, value:
  451. self._none_value if value is None else value.name),
  452. **kwargs)
  453. self.vmclass = vmclass
  454. self.allow_none = allow_none
  455. def __set__(self, instance, value):
  456. if value is self.__class__.DEFAULT:
  457. self.__delete__(instance)
  458. return
  459. if value == self._none_value:
  460. value = None
  461. if value is None:
  462. if self.allow_none:
  463. super(VMProperty, self).__set__(instance, value)
  464. return
  465. else:
  466. raise ValueError(
  467. 'Property {!r} does not allow setting to {!r}'.format(
  468. self.__name__, value))
  469. app = instance if isinstance(instance, qubes.Qubes) else instance.app
  470. try:
  471. vm = app.domains[value]
  472. except KeyError:
  473. raise qubes.exc.QubesVMNotFoundError(value)
  474. if not isinstance(vm, self.vmclass):
  475. raise TypeError('wrong VM class: domains[{!r}] is of type {!s} '
  476. 'and not {!s}'.format(value,
  477. vm.__class__.__name__,
  478. self.vmclass.__name__))
  479. super(VMProperty, self).__set__(instance, vm)
  480. def sanitize(self, *, untrusted_newvalue):
  481. try:
  482. untrusted_vmname = untrusted_newvalue.decode('ascii')
  483. except UnicodeDecodeError:
  484. raise qubes.exc.QubesValueError
  485. if untrusted_vmname == '':
  486. # allow empty VM name for setting VMProperty value, because it's
  487. # string representation of None (see self._none_value)
  488. return untrusted_vmname
  489. validate_name(None, self, untrusted_vmname)
  490. return untrusted_vmname