__init__.py 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966
  1. #
  2. # The Qubes OS Project, https://www.qubes-os.org/
  3. #
  4. # Copyright (C) 2013-2015 Joanna Rutkowska <joanna@invisiblethingslab.com>
  5. # Copyright (C) 2013-2015 Marek Marczykowski-Górecki
  6. # <marmarek@invisiblethingslab.com>
  7. # Copyright (C) 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 storage system"""
  23. from __future__ import absolute_import
  24. import inspect
  25. import os
  26. import os.path
  27. import string # pylint: disable=deprecated-module
  28. import subprocess
  29. import time
  30. from datetime import datetime
  31. import asyncio
  32. import lxml.etree
  33. import pkg_resources
  34. import qubes
  35. import qubes.exc
  36. import qubes.utils
  37. STORAGE_ENTRY_POINT = 'qubes.storage'
  38. class StoragePoolException(qubes.exc.QubesException):
  39. ''' A general storage exception '''
  40. pass
  41. class BlockDevice:
  42. ''' Represents a storage block device. '''
  43. # pylint: disable=too-few-public-methods
  44. def __init__(self, path, name, script=None, rw=True, domain=None,
  45. devtype='disk'):
  46. assert name, 'Missing device name'
  47. assert path, 'Missing device path'
  48. self.path = path
  49. self.name = name
  50. self.rw = rw
  51. self.script = script
  52. self.domain = domain
  53. self.devtype = devtype
  54. class Volume:
  55. ''' Encapsulates all data about a volume for serialization to qubes.xml and
  56. libvirt config.
  57. Keep in mind!
  58. volatile = not snap_on_start and not save_on_stop
  59. snapshot = snap_on_start and not save_on_stop
  60. origin = not snap_on_start and save_on_stop
  61. origin_snapshot = snap_on_start and save_on_stop
  62. '''
  63. devtype = 'disk'
  64. domain = None
  65. path = None
  66. script = None
  67. #: disk space used by this volume, can be smaller than :py:attr:`size`
  68. #: for sparse volumes
  69. usage = 0
  70. def __init__(self, name, pool, vid,
  71. revisions_to_keep=0, rw=False, save_on_stop=False, size=0,
  72. snap_on_start=False, source=None, **kwargs):
  73. ''' Initialize a volume.
  74. :param str name: The name of the volume inside owning domain
  75. :param Pool pool: The pool object
  76. :param str vid: Volume identifier needs to be unique in pool
  77. :param int revisions_to_keep: Amount of revisions to keep around
  78. :param bool rw: If true volume will be mounted read-write
  79. :param bool snap_on_start: Create a snapshot from source on
  80. start, instead of using volume own data
  81. :param bool save_on_stop: Write changes to the volume in
  82. vm.stop(), otherwise - discard
  83. :param Volume source: other volume in same pool to make snapshot
  84. from, required if *snap_on_start*=`True`
  85. :param str/int size: Size of the volume
  86. '''
  87. super(Volume, self).__init__(**kwargs)
  88. assert isinstance(pool, Pool)
  89. assert source is None or (isinstance(source, Volume)
  90. and source.pool == pool)
  91. if snap_on_start and source is None:
  92. msg = "snap_on_start specified on {!r} but no volume source set"
  93. msg = msg.format(name)
  94. raise StoragePoolException(msg)
  95. elif not snap_on_start and source is not None:
  96. msg = "source specified on {!r} but no snap_on_start set"
  97. msg = msg.format(name)
  98. raise StoragePoolException(msg)
  99. #: Name of the volume in a domain it's attached to (like `root` or
  100. #: `private`).
  101. self.name = str(name)
  102. #: :py:class:`Pool` instance owning this volume
  103. self.pool = pool
  104. #: How many revisions of the volume to keep. Each revision is created
  105. # at :py:meth:`stop`, if :py:attr:`save_on_stop` is True
  106. self.revisions_to_keep = int(revisions_to_keep)
  107. #: Should this volume be writable by domain.
  108. self.rw = rw
  109. #: Should volume state be saved or discarded at :py:meth:`stop`
  110. self.save_on_stop = save_on_stop
  111. self._size = int(size)
  112. #: Should the volume state be initialized with a snapshot of
  113. #: same-named volume of domain's template.
  114. self.snap_on_start = snap_on_start
  115. #: source volume for :py:attr:`snap_on_start` volumes
  116. self.source = source
  117. #: Volume unique (inside given pool) identifier
  118. self.vid = vid
  119. def __eq__(self, other):
  120. if isinstance(other, Volume):
  121. return other.pool == self.pool and other.vid == self.vid
  122. return NotImplemented
  123. def __hash__(self):
  124. return hash('%s:%s' % (self.pool, self.vid))
  125. def __neq__(self, other):
  126. return not self.__eq__(other)
  127. def __repr__(self):
  128. return '{!r}'.format(str(self.pool) + ':' + self.vid)
  129. def __str__(self):
  130. return str(self.vid)
  131. def __xml__(self):
  132. config = _sanitize_config(self.config)
  133. return lxml.etree.Element('volume', **config)
  134. def create(self):
  135. ''' Create the given volume on disk.
  136. This method is called only once in the volume lifetime. Before
  137. calling this method, no data on disk should be touched (in
  138. context of this volume).
  139. This can be implemented as a coroutine.
  140. '''
  141. raise self._not_implemented("create")
  142. def remove(self):
  143. ''' Remove volume.
  144. This can be implemented as a coroutine.'''
  145. raise self._not_implemented("remove")
  146. def export(self):
  147. ''' Returns a path to read the volume data from.
  148. Reading from this path when domain owning this volume is
  149. running (i.e. when :py:meth:`is_dirty` is True) should return the
  150. data from before domain startup.
  151. Reading from the path returned by this method should return the
  152. volume data. If extracting volume data require something more
  153. than just reading from file (for example connecting to some other
  154. domain, or decompressing the data), the returned path may be a pipe.
  155. '''
  156. raise self._not_implemented("export")
  157. def import_data(self):
  158. ''' Returns a path to overwrite volume data.
  159. This method is called after volume was already :py:meth:`create`-ed.
  160. Writing to this path should overwrite volume data. If importing
  161. volume data require something more than just writing to a file (
  162. for example connecting to some other domain, or converting data
  163. on the fly), the returned path may be a pipe.
  164. '''
  165. raise self._not_implemented("import")
  166. def import_data_end(self, success):
  167. ''' End the data import operation. This may be used by pool
  168. implementation to commit changes, cleanup temporary files etc.
  169. This method is called regardless the operation was successful or not.
  170. :param success: True if data import was successful, otherwise False
  171. '''
  172. # by default do nothing
  173. pass
  174. def import_volume(self, src_volume):
  175. ''' Imports data from a different volume (possibly in a different
  176. pool.
  177. The volume needs to be create()d first.
  178. This can be implemented as a coroutine. '''
  179. # pylint: disable=unused-argument
  180. raise self._not_implemented("import_volume")
  181. def is_dirty(self):
  182. ''' Return `True` if volume was not properly shutdown and committed.
  183. This include the situation when domain owning the volume is still
  184. running.
  185. '''
  186. raise self._not_implemented("is_dirty")
  187. def is_outdated(self):
  188. ''' Returns `True` if this snapshot of a source volume (for
  189. `snap_on_start`=True) is outdated.
  190. '''
  191. raise self._not_implemented("is_outdated")
  192. def resize(self, size):
  193. ''' Expands volume, throws
  194. :py:class:`qubes.storage.StoragePoolException` if
  195. given size is less than current_size
  196. This can be implemented as a coroutine.
  197. :param int size: new size in bytes
  198. '''
  199. # pylint: disable=unused-argument
  200. raise self._not_implemented("resize")
  201. def revert(self, revision=None):
  202. ''' Revert volume to previous revision
  203. This can be implemented as a coroutine.
  204. :param revision: revision to revert volume to, see :py:attr:`revisions`
  205. '''
  206. # pylint: disable=unused-argument
  207. raise self._not_implemented("revert")
  208. def start(self):
  209. ''' Do what ever is needed on start.
  210. This include making a snapshot of template's volume if
  211. :py:attr:`snap_on_start` is set.
  212. This can be implemented as a coroutine.'''
  213. raise self._not_implemented("start")
  214. def stop(self):
  215. ''' Do what ever is needed on stop.
  216. This include committing data if :py:attr:`save_on_stop` is set.
  217. This can be implemented as a coroutine.'''
  218. raise self._not_implemented("stop")
  219. def verify(self):
  220. ''' Verifies the volume.
  221. This function is supposed to either return :py:obj:`True`, or raise
  222. an exception.
  223. This can be implemented as a coroutine.'''
  224. raise self._not_implemented("verify")
  225. def block_device(self):
  226. ''' Return :py:class:`BlockDevice` for serialization in
  227. the libvirt XML template as <disk>.
  228. '''
  229. return BlockDevice(self.path, self.name, self.script,
  230. self.rw, self.domain, self.devtype)
  231. @property
  232. def revisions(self):
  233. ''' Returns a dict containing revision identifiers and time of their
  234. creation '''
  235. msg = "{!s} has revisions not implemented".format(self.__class__)
  236. raise NotImplementedError(msg)
  237. @property
  238. def size(self):
  239. ''' Volume size in bytes '''
  240. return self._size
  241. @size.setter
  242. def size(self, size):
  243. # pylint: disable=attribute-defined-outside-init
  244. self._size = int(size)
  245. @property
  246. def config(self):
  247. ''' return config data for serialization to qubes.xml '''
  248. result = {
  249. 'name': self.name,
  250. 'pool': str(self.pool),
  251. 'vid': self.vid,
  252. 'revisions_to_keep': self.revisions_to_keep,
  253. 'rw': self.rw,
  254. 'save_on_stop': self.save_on_stop,
  255. 'snap_on_start': self.snap_on_start,
  256. }
  257. if self.size:
  258. result['size'] = self.size
  259. if self.source:
  260. result['source'] = str(self.source)
  261. return result
  262. def _not_implemented(self, method_name):
  263. ''' Helper for emitting helpful `NotImplementedError` exceptions '''
  264. msg = "Volume {!s} has {!s}() not implemented"
  265. msg = msg.format(str(self.__class__.__name__), method_name)
  266. return NotImplementedError(msg)
  267. class Storage:
  268. ''' Class for handling VM virtual disks.
  269. This is base class for all other implementations, mostly with Xen on Linux
  270. in mind.
  271. '''
  272. AVAILABLE_FRONTENDS = {'xvd' + c for c in string.ascii_lowercase}
  273. def __init__(self, vm):
  274. #: Domain for which we manage storage
  275. self.vm = vm
  276. self.log = self.vm.log
  277. #: Additional drive (currently used only by HVM)
  278. self.drive = None
  279. if hasattr(vm, 'volume_config'):
  280. for name, conf in self.vm.volume_config.items():
  281. self.init_volume(name, conf)
  282. def _update_volume_config_source(self, name, volume_config):
  283. '''Retrieve 'source' volume from VM's template'''
  284. template = getattr(self.vm, 'template', None)
  285. # recursively lookup source volume - templates may be
  286. # chained (TemplateVM -> AppVM -> DispVM, where the
  287. # actual source should be used from TemplateVM)
  288. while template:
  289. source = template.volumes[name]
  290. volume_config['source'] = source
  291. volume_config['pool'] = source.pool
  292. volume_config['size'] = source.size
  293. if source.source is not None:
  294. template = getattr(template, 'template', None)
  295. else:
  296. break
  297. def init_volume(self, name, volume_config):
  298. ''' Initialize Volume instance attached to this domain '''
  299. if 'name' not in volume_config:
  300. volume_config['name'] = name
  301. if 'source' in volume_config:
  302. # we have no control over VM load order,
  303. # so initialize storage recursively if needed
  304. template = getattr(self.vm, 'template', None)
  305. if template and template.storage is None:
  306. template.storage = Storage(template)
  307. if volume_config['source'] is None:
  308. self._update_volume_config_source(name, volume_config)
  309. else:
  310. # if source is already specified, pool needs to be too
  311. pool = self.vm.app.get_pool(volume_config['pool'])
  312. volume_config['source'] = pool.volumes[volume_config['source']]
  313. # if pool still unknown, load default
  314. if 'pool' not in volume_config:
  315. volume_config['pool'] = \
  316. getattr(self.vm.app, 'default_pool_' + name)
  317. pool = self.vm.app.get_pool(volume_config['pool'])
  318. if 'internal' in volume_config:
  319. # migrate old config
  320. del volume_config['internal']
  321. volume = pool.init_volume(self.vm, volume_config)
  322. self.vm.volumes[name] = volume
  323. return volume
  324. def attach(self, volume, rw=False):
  325. ''' Attach a volume to the domain '''
  326. assert self.vm.is_running()
  327. if self._is_already_attached(volume):
  328. self.vm.log.info("{!r} already attached".format(volume))
  329. return
  330. try:
  331. frontend = self.unused_frontend()
  332. except IndexError:
  333. raise StoragePoolException("No unused frontend found")
  334. disk = lxml.etree.Element("disk")
  335. disk.set('type', 'block')
  336. disk.set('device', 'disk')
  337. lxml.etree.SubElement(disk, 'driver').set('name', 'phy')
  338. lxml.etree.SubElement(disk, 'source').set('dev', '/dev/%s' % volume.vid)
  339. lxml.etree.SubElement(disk, 'target').set('dev', frontend)
  340. if not rw:
  341. lxml.etree.SubElement(disk, 'readonly')
  342. if volume.domain is not None:
  343. lxml.etree.SubElement(disk, 'backenddomain').set(
  344. 'name', volume.domain.name)
  345. xml_string = lxml.etree.tostring(disk, encoding='utf-8')
  346. self.vm.libvirt_domain.attachDevice(xml_string)
  347. # trigger watches to update device status
  348. # FIXME: this should be removed once libvirt will report such
  349. # events itself
  350. # self.vm.untrusted_qdb.write('/qubes-block-devices', '')
  351. # ← do we need this?
  352. def _is_already_attached(self, volume):
  353. ''' Checks if the given volume is already attached '''
  354. parsed_xml = lxml.etree.fromstring(self.vm.libvirt_domain.XMLDesc())
  355. disk_sources = parsed_xml.xpath("//domain/devices/disk/source")
  356. for source in disk_sources:
  357. if source.get('dev') == '/dev/%s' % volume.vid:
  358. return True
  359. return False
  360. def detach(self, volume):
  361. ''' Detach a volume from domain '''
  362. parsed_xml = lxml.etree.fromstring(self.vm.libvirt_domain.XMLDesc())
  363. disks = parsed_xml.xpath("//domain/devices/disk")
  364. for disk in disks:
  365. source = disk.xpath('source')[0]
  366. if source.get('dev') == '/dev/%s' % volume.vid:
  367. disk_xml = lxml.etree.tostring(disk, encoding='utf-8')
  368. self.vm.libvirt_domain.detachDevice(disk_xml)
  369. return
  370. raise StoragePoolException('Volume {!r} is not attached'.format(volume))
  371. @property
  372. def kernels_dir(self):
  373. '''Directory where kernel resides.
  374. If :py:attr:`self.vm.kernel` is :py:obj:`None`, the this points inside
  375. :py:attr:`self.vm.dir_path`
  376. '''
  377. assert 'kernel' in self.vm.volumes, "VM has no kernel volume"
  378. return self.vm.volumes['kernel'].kernels_dir
  379. def get_disk_utilization(self):
  380. ''' Returns summed up disk utilization for all domain volumes '''
  381. result = 0
  382. for volume in self.vm.volumes.values():
  383. result += volume.usage
  384. return result
  385. @asyncio.coroutine
  386. def resize(self, volume, size):
  387. ''' Resizes volume a read-writable volume '''
  388. if isinstance(volume, str):
  389. volume = self.vm.volumes[volume]
  390. ret = volume.resize(size)
  391. if asyncio.iscoroutine(ret):
  392. yield from ret
  393. if self.vm.is_running():
  394. try:
  395. yield from self.vm.run_service_for_stdio('qubes.ResizeDisk',
  396. input=volume.name.encode(),
  397. user='root')
  398. except subprocess.CalledProcessError as e:
  399. service_error = e.stderr.decode('ascii', errors='ignore')
  400. service_error = service_error.replace('%', '')
  401. raise StoragePoolException(
  402. 'Online resize of volume {} failed (you need to resize '
  403. 'filesystem manually): {}'.format(volume, service_error))
  404. @asyncio.coroutine
  405. def create(self):
  406. ''' Creates volumes on disk '''
  407. old_umask = os.umask(0o002)
  408. coros = []
  409. for volume in self.vm.volumes.values():
  410. # launch the operation, if it's asynchronous, then append to wait
  411. # for them at the end
  412. ret = volume.create()
  413. if asyncio.iscoroutine(ret):
  414. coros.append(ret)
  415. if coros:
  416. yield from asyncio.wait(coros)
  417. os.umask(old_umask)
  418. @asyncio.coroutine
  419. def clone_volume(self, src_vm, name):
  420. ''' Clone single volume from the specified vm
  421. :param QubesVM src_vm: source VM
  422. :param str name: name of volume to clone ('root', 'private' etc)
  423. :return cloned volume object
  424. '''
  425. config = self.vm.volume_config[name]
  426. dst_pool = self.vm.app.get_pool(config['pool'])
  427. dst = dst_pool.init_volume(self.vm, config)
  428. src_volume = src_vm.volumes[name]
  429. msg = "Importing volume {!s} from vm {!s}"
  430. self.vm.log.info(msg.format(src_volume.name, src_vm.name))
  431. # First create the destination volume
  432. create_op_ret = dst.create()
  433. # clone/import functions may be either synchronous or asynchronous
  434. # in the later case, we need to wait for them to finish
  435. if asyncio.iscoroutine(create_op_ret):
  436. yield from create_op_ret
  437. # Then import data from source volume
  438. clone_op_ret = dst.import_volume(src_volume)
  439. # clone/import functions may be either synchronous or asynchronous
  440. # in the later case, we need to wait for them to finish
  441. if asyncio.iscoroutine(clone_op_ret):
  442. yield from clone_op_ret
  443. self.vm.volumes[name] = dst
  444. return self.vm.volumes[name]
  445. @asyncio.coroutine
  446. def clone(self, src_vm):
  447. ''' Clone volumes from the specified vm '''
  448. self.vm.volumes = {}
  449. with VmCreationManager(self.vm):
  450. yield from asyncio.wait([self.clone_volume(src_vm, vol_name)
  451. for vol_name in self.vm.volume_config.keys()])
  452. @property
  453. def outdated_volumes(self):
  454. ''' Returns a list of outdated volumes '''
  455. result = []
  456. if self.vm.is_halted():
  457. return result
  458. volumes = self.vm.volumes
  459. for volume in volumes.values():
  460. if volume.is_outdated():
  461. result += [volume]
  462. return result
  463. @asyncio.coroutine
  464. def verify(self):
  465. '''Verify that the storage is sane.
  466. On success, returns normally. On failure, raises exception.
  467. '''
  468. if not os.path.exists(self.vm.dir_path):
  469. raise qubes.exc.QubesVMError(
  470. self.vm,
  471. 'VM directory does not exist: {}'.format(self.vm.dir_path))
  472. futures = []
  473. for volume in self.vm.volumes.values():
  474. ret = volume.verify()
  475. if asyncio.iscoroutine(ret):
  476. futures.append(ret)
  477. if futures:
  478. done, _ = yield from asyncio.wait(futures)
  479. for task in done:
  480. # re-raise any exception from async task
  481. task.result()
  482. self.vm.fire_event('domain-verify-files')
  483. return True
  484. @asyncio.coroutine
  485. def remove(self):
  486. ''' Remove all the volumes.
  487. Errors on removal are catched and logged.
  488. '''
  489. futures = []
  490. for name, volume in self.vm.volumes.items():
  491. self.log.info('Removing volume %s: %s' % (name, volume.vid))
  492. try:
  493. ret = volume.remove()
  494. if asyncio.iscoroutine(ret):
  495. futures.append(ret)
  496. except (IOError, OSError) as e:
  497. self.vm.log.exception("Failed to remove volume %s", name, e)
  498. if futures:
  499. try:
  500. done, _ = yield from asyncio.wait(futures)
  501. for task in done:
  502. # re-raise any exception from async task
  503. task.result()
  504. except (IOError, OSError) as e:
  505. self.vm.log.exception("Failed to remove some volume", e)
  506. @asyncio.coroutine
  507. def start(self):
  508. ''' Execute the start method on each volume '''
  509. futures = []
  510. for volume in self.vm.volumes.values():
  511. ret = volume.start()
  512. if asyncio.iscoroutine(ret):
  513. futures.append(ret)
  514. if futures:
  515. done, _ = yield from asyncio.wait(futures)
  516. for task in done:
  517. # re-raise any exception from async task
  518. task.result()
  519. @asyncio.coroutine
  520. def stop(self):
  521. ''' Execute the stop method on each volume '''
  522. futures = []
  523. for volume in self.vm.volumes.values():
  524. ret = volume.stop()
  525. if asyncio.iscoroutine(ret):
  526. futures.append(ret)
  527. if futures:
  528. done, _ = yield from asyncio.wait(futures)
  529. for task in done:
  530. # re-raise any exception from async task
  531. task.result()
  532. def unused_frontend(self):
  533. ''' Find an unused device name '''
  534. unused_frontends = self.AVAILABLE_FRONTENDS.difference(
  535. self.used_frontends)
  536. return sorted(unused_frontends)[0]
  537. @property
  538. def used_frontends(self):
  539. ''' Used device names '''
  540. xml = self.vm.libvirt_domain.XMLDesc()
  541. parsed_xml = lxml.etree.fromstring(xml)
  542. return {target.get('dev', None)
  543. for target in parsed_xml.xpath(
  544. "//domain/devices/disk/target")}
  545. def export(self, volume):
  546. ''' Helper function to export volume (pool.export(volume))'''
  547. assert isinstance(volume, (Volume, str)), \
  548. "You need to pass a Volume or pool name as str"
  549. if isinstance(volume, Volume):
  550. return volume.export()
  551. return self.vm.volumes[volume].export()
  552. def import_data(self, volume):
  553. ''' Helper function to import volume data (pool.import_data(volume))'''
  554. assert isinstance(volume, (Volume, str)), \
  555. "You need to pass a Volume or pool name as str"
  556. if isinstance(volume, Volume):
  557. return volume.import_data()
  558. return self.vm.volumes[volume].import_data()
  559. def import_data_end(self, volume, success):
  560. ''' Helper function to finish/cleanup data import
  561. (pool.import_data_end( volume))'''
  562. assert isinstance(volume, (Volume, str)), \
  563. "You need to pass a Volume or pool name as str"
  564. if isinstance(volume, Volume):
  565. return volume.import_data_end(success=success)
  566. return self.vm.volumes[volume].import_data_end(success=success)
  567. class VolumesCollection:
  568. '''Convenient collection wrapper for pool.get_volume and
  569. pool.list_volumes
  570. '''
  571. def __init__(self, pool):
  572. self._pool = pool
  573. def __getitem__(self, item):
  574. ''' Get a single volume with given Volume ID.
  575. You can also a Volume instance to get the same Volume or KeyError if
  576. Volume no longer exists.
  577. :param item: a Volume ID (str) or a Volume instance
  578. '''
  579. if isinstance(item, Volume):
  580. if item.pool == self._pool:
  581. return self[item.vid]
  582. raise KeyError(item)
  583. try:
  584. return self._pool.get_volume(item)
  585. except NotImplementedError:
  586. for vol in self:
  587. if vol.vid == item:
  588. return vol
  589. # if list_volumes is not implemented too, it will raise
  590. # NotImplementedError again earlier
  591. raise KeyError(item)
  592. def __iter__(self):
  593. ''' Get iterator over pool's volumes '''
  594. return iter(self._pool.list_volumes())
  595. def __contains__(self, item):
  596. ''' Check if given volume (either Volume ID or Volume instance) is
  597. present in the pool
  598. '''
  599. try:
  600. return self[item] is not None
  601. except KeyError:
  602. return False
  603. def keys(self):
  604. ''' Return list of volume IDs '''
  605. return [vol.vid for vol in self]
  606. def values(self):
  607. ''' Return list of Volumes'''
  608. return [vol for vol in self]
  609. class Pool:
  610. ''' A Pool is used to manage different kind of volumes (File
  611. based/LVM/Btrfs/...).
  612. 3rd Parties providing own storage implementations will need to extend
  613. this class.
  614. ''' # pylint: disable=unused-argument
  615. private_img_size = qubes.config.defaults['private_img_size']
  616. root_img_size = qubes.config.defaults['root_img_size']
  617. def __init__(self, name, revisions_to_keep=1, **kwargs):
  618. super(Pool, self).__init__(**kwargs)
  619. self._volumes_collection = VolumesCollection(self)
  620. self.name = name
  621. self.revisions_to_keep = revisions_to_keep
  622. kwargs['name'] = self.name
  623. def __eq__(self, other):
  624. if isinstance(other, Pool):
  625. return self.name == other.name
  626. if isinstance(other, str):
  627. return self.name == other
  628. return NotImplemented
  629. def __neq__(self, other):
  630. return not self.__eq__(other)
  631. def __str__(self):
  632. return self.name
  633. def __hash__(self):
  634. return hash(self.name)
  635. def __xml__(self):
  636. config = _sanitize_config(self.config)
  637. return lxml.etree.Element('pool', **config)
  638. @property
  639. def config(self):
  640. ''' Returns the pool config to be written to qubes.xml '''
  641. raise self._not_implemented("config")
  642. def destroy(self):
  643. ''' Called when removing the pool. Use this for implementation specific
  644. clean up.
  645. '''
  646. raise self._not_implemented("destroy")
  647. def init_volume(self, vm, volume_config):
  648. ''' Initialize a :py:class:`qubes.storage.Volume` from `volume_config`.
  649. '''
  650. raise self._not_implemented("init_volume")
  651. def setup(self):
  652. ''' Called when adding a pool to the system. Use this for implementation
  653. specific set up.
  654. '''
  655. raise self._not_implemented("setup")
  656. @property
  657. def volumes(self):
  658. ''' Return a collection of volumes managed by this pool '''
  659. return self._volumes_collection
  660. def list_volumes(self):
  661. ''' Return a list of volumes managed by this pool '''
  662. raise self._not_implemented("list_volumes")
  663. def get_volume(self, vid):
  664. ''' Return a volume with *vid* from this pool
  665. :raise KeyError: if no volume is found
  666. '''
  667. raise self._not_implemented("get_volume")
  668. def included_in(self, app):
  669. ''' Check if this pool is physically included in another one
  670. This works on best-effort basis, because one pool driver may not know
  671. all the other drivers.
  672. :param app: Qubes() object to lookup other pools in
  673. :returns pool or None
  674. '''
  675. pass
  676. @property
  677. def size(self):
  678. ''' Storage pool size in bytes, or None if unknown '''
  679. pass
  680. @property
  681. def usage(self):
  682. ''' Space used in the pool in bytes, or None if unknown '''
  683. pass
  684. def _not_implemented(self, method_name):
  685. ''' Helper for emitting helpful `NotImplementedError` exceptions '''
  686. msg = "Pool driver {!s} has {!s}() not implemented"
  687. msg = msg.format(str(self.__class__.__name__), method_name)
  688. return NotImplementedError(msg)
  689. def _sanitize_config(config):
  690. ''' Helper function to convert types to appropriate strings
  691. ''' # FIXME: find another solution for serializing basic types
  692. result = {}
  693. for key, value in config.items():
  694. if isinstance(value, bool):
  695. if value:
  696. result[key] = 'True'
  697. else:
  698. result[key] = str(value)
  699. return result
  700. def pool_drivers():
  701. """ Return a list of EntryPoints names """
  702. return [ep.name
  703. for ep in pkg_resources.iter_entry_points(STORAGE_ENTRY_POINT)]
  704. def driver_parameters(name):
  705. ''' Get __init__ parameters from a driver with out `self` & `name`. '''
  706. init_function = qubes.utils.get_entry_point_one(
  707. qubes.storage.STORAGE_ENTRY_POINT, name).__init__
  708. signature = inspect.signature(init_function)
  709. params = signature.parameters.keys()
  710. ignored_params = ['self', 'name', 'kwargs']
  711. return [p for p in params if p not in ignored_params]
  712. def isodate(seconds):
  713. ''' Helper method which returns an iso date '''
  714. return datetime.utcfromtimestamp(seconds).isoformat("T")
  715. def search_pool_containing_dir(pools, dir_path):
  716. ''' Helper function looking for a pool containing given directory.
  717. This is useful for implementing Pool.included_in method
  718. '''
  719. real_dir_path = os.path.realpath(dir_path)
  720. # prefer filesystem pools
  721. for pool in pools:
  722. if hasattr(pool, 'dir_path'):
  723. pool_real_dir_path = os.path.realpath(pool.dir_path)
  724. if os.path.commonpath([pool_real_dir_path, real_dir_path]) == \
  725. pool_real_dir_path:
  726. return pool
  727. # then look for lvm
  728. for pool in pools:
  729. if hasattr(pool, 'thin_pool') and hasattr(pool, 'volume_group'):
  730. if (pool.volume_group, pool.thin_pool) == \
  731. DirectoryThinPool.thin_pool(real_dir_path):
  732. return pool
  733. return None
  734. class VmCreationManager:
  735. ''' A `ContextManager` which cleans up if volume creation fails.
  736. ''' # pylint: disable=too-few-public-methods
  737. def __init__(self, vm):
  738. self.vm = vm
  739. def __enter__(self):
  740. pass
  741. def __exit__(self, type, value, tb): # pylint: disable=redefined-builtin
  742. if type is not None and value is not None and tb is not None:
  743. for volume in self.vm.volumes.values():
  744. try:
  745. volume.remove()
  746. except Exception: # pylint: disable=broad-except
  747. pass
  748. os.rmdir(self.vm.dir_path)
  749. # pylint: disable=too-few-public-methods
  750. class DirectoryThinPool:
  751. '''The thin pool containing the device of given filesystem'''
  752. _thin_pool = {}
  753. @classmethod
  754. def _init(cls, dir_path):
  755. '''Find out the thin pool containing given filesystem'''
  756. if dir_path not in cls._thin_pool:
  757. cls._thin_pool[dir_path] = None, None
  758. try:
  759. fs_stat = os.stat(dir_path)
  760. fs_major = (fs_stat.st_dev & 0xff00) >> 8
  761. fs_minor = fs_stat.st_dev & 0xff
  762. sudo = []
  763. if os.getuid():
  764. sudo = ['sudo']
  765. root_table = subprocess.check_output(sudo + ["dmsetup",
  766. "-j", str(fs_major), "-m", str(fs_minor),
  767. "table"], stderr=subprocess.DEVNULL)
  768. _start, _sectors, target_type, target_args = \
  769. root_table.decode().split(" ", 3)
  770. if target_type == "thin":
  771. thin_pool_devnum, _thin_pool_id = target_args.split(" ")
  772. with open("/sys/dev/block/{}/dm/name"
  773. .format(thin_pool_devnum), "r") as thin_pool_tpool_f:
  774. thin_pool_tpool = thin_pool_tpool_f.read().rstrip('\n')
  775. if thin_pool_tpool.endswith("-tpool"):
  776. volume_group, thin_pool, _tpool = \
  777. thin_pool_tpool.rsplit("-", 2)
  778. cls._thin_pool[dir_path] = volume_group, thin_pool
  779. except: # pylint: disable=bare-except
  780. pass
  781. @classmethod
  782. def thin_pool(cls, dir_path):
  783. '''Thin tuple (volume group, pool name) containing given filesystem'''
  784. cls._init(dir_path)
  785. return cls._thin_pool[dir_path]