lvm.py 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491
  1. #
  2. # The Qubes OS Project, http://www.qubes-os.org
  3. #
  4. # Copyright (C) 2016 Bahtiar `kalkin-` Gadimov <bahtiar@gadimov.de>
  5. #
  6. # This program is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 2 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License along
  17. # with this program; if not, write to the Free Software Foundation, Inc.,
  18. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  19. #
  20. ''' Driver for storing vm images in a LVM thin pool '''
  21. import logging
  22. import operator
  23. import os
  24. import subprocess
  25. import time
  26. import asyncio
  27. import qubes
  28. import qubes.storage
  29. import qubes.utils
  30. def check_lvm_version():
  31. #Check if lvm is very very old, like in Travis-CI
  32. try:
  33. lvm_help = subprocess.check_output(['lvm', 'lvcreate', '--help'],
  34. stderr=subprocess.DEVNULL).decode()
  35. return '--setactivationskip' not in lvm_help
  36. except (subprocess.CalledProcessError, FileNotFoundError):
  37. pass
  38. lvm_is_very_old = check_lvm_version()
  39. class ThinPool(qubes.storage.Pool):
  40. ''' LVM Thin based pool implementation
  41. ''' # pylint: disable=protected-access
  42. size_cache = None
  43. driver = 'lvm_thin'
  44. def __init__(self, volume_group, thin_pool, revisions_to_keep=1, **kwargs):
  45. super(ThinPool, self).__init__(revisions_to_keep=revisions_to_keep,
  46. **kwargs)
  47. self.volume_group = volume_group
  48. self.thin_pool = thin_pool
  49. self._pool_id = "{!s}/{!s}".format(volume_group, thin_pool)
  50. self.log = logging.getLogger('qube.storage.lvm.%s' % self._pool_id)
  51. @property
  52. def config(self):
  53. return {
  54. 'name': self.name,
  55. 'volume_group': self.volume_group,
  56. 'thin_pool': self.thin_pool,
  57. 'driver': ThinPool.driver
  58. }
  59. def destroy(self):
  60. pass # TODO Should we remove an existing pool?
  61. def init_volume(self, vm, volume_config):
  62. ''' Initialize a :py:class:`qubes.storage.Volume` from `volume_config`.
  63. '''
  64. if 'vid' not in volume_config.keys():
  65. if vm and hasattr(vm, 'name'):
  66. vm_name = vm.name
  67. else:
  68. # for the future if we have volumes not belonging to a vm
  69. vm_name = qubes.utils.random_string()
  70. assert self.name
  71. volume_config['vid'] = "{!s}/vm-{!s}-{!s}".format(
  72. self.volume_group, vm_name, volume_config['name'])
  73. volume_config['volume_group'] = self.volume_group
  74. volume_config['pool'] = self
  75. return ThinVolume(**volume_config)
  76. def setup(self):
  77. pass # TODO Should we create a non existing pool?
  78. def list_volumes(self):
  79. ''' Return a list of volumes managed by this pool '''
  80. volumes = []
  81. for vid, vol_info in size_cache.items():
  82. if not vid.startswith(self.volume_group + '/'):
  83. continue
  84. if vol_info['pool_lv'] != self.thin_pool:
  85. continue
  86. if vid.endswith('-snap'):
  87. # implementation detail volume
  88. continue
  89. if vid.endswith('-back'):
  90. # old revisions
  91. continue
  92. config = {
  93. 'pool': self,
  94. 'vid': vid,
  95. 'name': vid,
  96. 'volume_group': self.volume_group,
  97. 'rw': vol_info['attr'][1] == 'w',
  98. }
  99. volumes += [ThinVolume(**config)]
  100. return volumes
  101. def init_cache(log=logging.getLogger('qube.storage.lvm')):
  102. cmd = ['lvs', '--noheadings', '-o',
  103. 'vg_name,pool_lv,name,lv_size,data_percent,lv_attr,origin',
  104. '--units', 'b', '--separator', ',']
  105. if os.getuid() != 0:
  106. cmd.insert(0, 'sudo')
  107. p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
  108. close_fds=True)
  109. out, err = p.communicate()
  110. return_code = p.returncode
  111. if return_code == 0 and err:
  112. log.warning(err)
  113. elif return_code != 0:
  114. raise qubes.storage.StoragePoolException(err)
  115. result = {}
  116. for line in out.splitlines():
  117. line = line.decode().strip()
  118. pool_name, pool_lv, name, size, usage_percent, attr, \
  119. origin = line.split(',', 6)
  120. if '' in [pool_name, pool_lv, name, size, usage_percent]:
  121. continue
  122. name = pool_name + "/" + name
  123. size = int(size[:-1])
  124. usage = int(size / 100 * float(usage_percent))
  125. result[name] = {'size': size, 'usage': usage, 'pool_lv': pool_lv,
  126. 'attr': attr, 'origin': origin}
  127. return result
  128. size_cache = init_cache()
  129. class ThinVolume(qubes.storage.Volume):
  130. ''' Default LVM thin volume implementation
  131. ''' # pylint: disable=too-few-public-methods
  132. def __init__(self, volume_group, size=0, **kwargs):
  133. self.volume_group = volume_group
  134. super(ThinVolume, self).__init__(size=size, **kwargs)
  135. self.log = logging.getLogger('qube.storage.lvm.%s' % str(self.pool))
  136. if self.snap_on_start or self.save_on_stop:
  137. self._vid_snap = self.vid + '-snap'
  138. self._size = size
  139. @property
  140. def path(self):
  141. return '/dev/' + self.vid
  142. @property
  143. def revisions(self):
  144. name_prefix = self.vid + '-'
  145. revisions = {}
  146. for revision_vid in size_cache:
  147. if not revision_vid.startswith(name_prefix):
  148. continue
  149. if not revision_vid.endswith('-back'):
  150. continue
  151. revision_vid = revision_vid[len(name_prefix):]
  152. seconds = int(revision_vid[:-len('-back')])
  153. iso_date = qubes.storage.isodate(seconds).split('.', 1)[0]
  154. revisions[revision_vid] = iso_date
  155. return revisions
  156. @property
  157. def size(self):
  158. try:
  159. return qubes.storage.lvm.size_cache[self.vid]['size']
  160. except KeyError:
  161. return self._size
  162. @size.setter
  163. def size(self, _):
  164. raise qubes.storage.StoragePoolException(
  165. "You shouldn't use lvm size setter")
  166. def _reset(self):
  167. ''' Resets a volatile volume '''
  168. assert not self.snap_on_start and not self.save_on_stop, \
  169. "Not a volatile volume"
  170. self.log.debug('Resetting volatile ' + self.vid)
  171. try:
  172. cmd = ['remove', self.vid]
  173. qubes_lvm(cmd, self.log)
  174. except qubes.storage.StoragePoolException:
  175. pass
  176. # pylint: disable=protected-access
  177. cmd = ['create', self.pool._pool_id, self.vid.split('/')[1],
  178. str(self.size)]
  179. qubes_lvm(cmd, self.log)
  180. def _remove_revisions(self, revisions=None):
  181. '''Remove old volume revisions.
  182. If no revisions list is given, it removes old revisions according to
  183. :py:attr:`revisions_to_keep`
  184. :param revisions: list of revisions to remove
  185. '''
  186. if revisions is None:
  187. revisions = sorted(self.revisions.items(),
  188. key=operator.itemgetter(1))
  189. revisions = revisions[:-self.revisions_to_keep]
  190. revisions = [rev_id for rev_id, _ in revisions]
  191. for rev_id in revisions:
  192. try:
  193. cmd = ['remove', self.vid + rev_id]
  194. qubes_lvm(cmd, self.log)
  195. except qubes.storage.StoragePoolException:
  196. pass
  197. def _commit(self):
  198. msg = "Trying to commit {!s}, but it has save_on_stop == False"
  199. msg = msg.format(self)
  200. assert self.save_on_stop, msg
  201. msg = "Trying to commit {!s}, but it has rw == False"
  202. msg = msg.format(self)
  203. assert self.rw, msg
  204. assert hasattr(self, '_vid_snap')
  205. if self.revisions_to_keep > 0:
  206. cmd = ['clone', self.vid,
  207. '{}-{}-back'.format(self.vid, int(time.time()))]
  208. qubes_lvm(cmd, self.log)
  209. self._remove_revisions()
  210. cmd = ['remove', self.vid]
  211. qubes_lvm(cmd, self.log)
  212. cmd = ['clone', self._vid_snap, self.vid]
  213. qubes_lvm(cmd, self.log)
  214. def create(self):
  215. assert self.vid
  216. assert self.size
  217. if self.save_on_stop:
  218. if self.source:
  219. cmd = ['clone', str(self.source), self.vid]
  220. else:
  221. cmd = [
  222. 'create',
  223. self.pool._pool_id, # pylint: disable=protected-access
  224. self.vid.split('/', 1)[1],
  225. str(self.size)
  226. ]
  227. qubes_lvm(cmd, self.log)
  228. reset_cache()
  229. return self
  230. def remove(self):
  231. assert self.vid
  232. if self.is_dirty():
  233. cmd = ['remove', self._vid_snap]
  234. qubes_lvm(cmd, self.log)
  235. self._remove_revisions(self.revisions.keys())
  236. if not os.path.exists(self.path):
  237. return
  238. cmd = ['remove', self.vid]
  239. qubes_lvm(cmd, self.log)
  240. reset_cache()
  241. def export(self):
  242. ''' Returns an object that can be `open()`. '''
  243. devpath = '/dev/' + self.vid
  244. return devpath
  245. @asyncio.coroutine
  246. def import_volume(self, src_volume):
  247. if not src_volume.save_on_stop:
  248. return self
  249. # HACK: neat trick to speed up testing if you have same physical thin
  250. # pool assigned to two qubes-pools i.e: qubes_dom0 and test-lvm
  251. # pylint: disable=line-too-long
  252. if isinstance(src_volume.pool, ThinPool) and \
  253. src_volume.pool.thin_pool == self.pool.thin_pool: # NOQA
  254. cmd = ['remove', self.vid]
  255. qubes_lvm(cmd, self.log)
  256. cmd = ['clone', str(src_volume), str(self)]
  257. qubes_lvm(cmd, self.log)
  258. else:
  259. src_path = src_volume.export()
  260. cmd = ['dd', 'if=' + src_path, 'of=/dev/' + self.vid,
  261. 'conv=sparse']
  262. p = yield from asyncio.create_subprocess_exec(*cmd)
  263. yield from p.wait()
  264. if p.returncode != 0:
  265. raise qubes.storage.StoragePoolException(
  266. 'Failed to import volume {!r}, dd exit code: {}'.format(
  267. src_volume, p.returncode))
  268. reset_cache()
  269. return self
  270. def import_data(self):
  271. ''' Returns an object that can be `open()`. '''
  272. devpath = '/dev/' + self.vid
  273. return devpath
  274. def is_dirty(self):
  275. if self.save_on_stop:
  276. return os.path.exists('/dev/' + self._vid_snap)
  277. return False
  278. def is_outdated(self):
  279. if not self.snap_on_start:
  280. return False
  281. if self._vid_snap not in size_cache:
  282. return False
  283. return (size_cache[self._vid_snap]['origin'] !=
  284. self.source.vid.split('/')[1])
  285. def revert(self, revision=None):
  286. if revision is None:
  287. revision = \
  288. max(self.revisions.items(), key=operator.itemgetter(1))[0]
  289. old_path = self.path + '-' + revision
  290. if not os.path.exists(old_path):
  291. msg = "Volume {!s} has no {!s}".format(self, old_path)
  292. raise qubes.storage.StoragePoolException(msg)
  293. cmd = ['remove', self.vid]
  294. qubes_lvm(cmd, self.log)
  295. cmd = ['clone', self.vid + '-' + revision, self.vid]
  296. qubes_lvm(cmd, self.log)
  297. reset_cache()
  298. return self
  299. def resize(self, size):
  300. ''' Expands volume, throws
  301. :py:class:`qubst.storage.qubes.storage.StoragePoolException` if
  302. given size is less than current_size
  303. '''
  304. if not self.rw:
  305. msg = 'Can not resize reađonly volume {!s}'.format(self)
  306. raise qubes.storage.StoragePoolException(msg)
  307. if size < self.size:
  308. raise qubes.storage.StoragePoolException(
  309. 'For your own safety, shrinking of %s is'
  310. ' disabled. If you really know what you'
  311. ' are doing, use `lvresize` on %s manually.' %
  312. (self.name, self.vid))
  313. cmd = ['extend', self.vid, str(size)]
  314. qubes_lvm(cmd, self.log)
  315. reset_cache()
  316. def _snapshot(self):
  317. try:
  318. cmd = ['remove', self._vid_snap]
  319. qubes_lvm(cmd, self.log)
  320. except: # pylint: disable=bare-except
  321. pass
  322. if self.source is None:
  323. cmd = ['clone', self.vid, self._vid_snap]
  324. else:
  325. cmd = ['clone', str(self.source), self._vid_snap]
  326. qubes_lvm(cmd, self.log)
  327. def start(self):
  328. if self.snap_on_start or self.save_on_stop:
  329. if not self.save_on_stop or not self.is_dirty():
  330. self._snapshot()
  331. else:
  332. self._reset()
  333. reset_cache()
  334. return self
  335. def stop(self):
  336. if self.save_on_stop:
  337. self._commit()
  338. if self.snap_on_start or self.save_on_stop:
  339. cmd = ['remove', self._vid_snap]
  340. qubes_lvm(cmd, self.log)
  341. else:
  342. cmd = ['remove', self.vid]
  343. qubes_lvm(cmd, self.log)
  344. reset_cache()
  345. return self
  346. def verify(self):
  347. ''' Verifies the volume. '''
  348. try:
  349. vol_info = size_cache[self.vid]
  350. return vol_info['attr'][4] == 'a'
  351. except KeyError:
  352. return False
  353. def block_device(self):
  354. ''' Return :py:class:`qubes.storage.BlockDevice` for serialization in
  355. the libvirt XML template as <disk>.
  356. '''
  357. if self.snap_on_start or self.save_on_stop:
  358. return qubes.storage.BlockDevice(
  359. '/dev/' + self._vid_snap, self.name, self.script,
  360. self.rw, self.domain, self.devtype)
  361. return super(ThinVolume, self).block_device()
  362. @property
  363. def usage(self): # lvm thin usage always returns at least the same usage as
  364. # the parent
  365. try:
  366. return qubes.storage.lvm.size_cache[self.vid]['usage']
  367. except KeyError:
  368. return 0
  369. def pool_exists(pool_id):
  370. ''' Return true if pool exists '''
  371. try:
  372. vol_info = size_cache[pool_id]
  373. return vol_info['attr'][0] == 't'
  374. except KeyError:
  375. return False
  376. def qubes_lvm(cmd, log=logging.getLogger('qubes.storage.lvm')):
  377. ''' Call :program:`lvm` to execute an LVM operation '''
  378. action = cmd[0]
  379. if action == 'remove':
  380. lvm_cmd = ['lvremove', '-f', cmd[1]]
  381. elif action == 'clone':
  382. lvm_cmd = ['lvcreate', '-kn', '-ay', '-s', cmd[1], '-n', cmd[2]]
  383. elif action == 'create':
  384. lvm_cmd = ['lvcreate', '-T', cmd[1], '-kn', '-ay', '-n', cmd[2], '-V',
  385. str(cmd[3]) + 'B']
  386. elif action == 'extend':
  387. size = int(cmd[2]) / (1000 * 1000)
  388. lvm_cmd = ["lvextend", "-L%s" % size, cmd[1]]
  389. else:
  390. raise NotImplementedError('unsupported action: ' + action)
  391. if lvm_is_very_old:
  392. # old lvm in trusty image used there does not support -k option
  393. lvm_cmd = [x for x in lvm_cmd if x != '-kn']
  394. if os.getuid() != 0:
  395. cmd = ['sudo', 'lvm'] + lvm_cmd
  396. else:
  397. cmd = ['lvm'] + lvm_cmd
  398. p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
  399. close_fds=True)
  400. out, err = p.communicate()
  401. return_code = p.returncode
  402. if out:
  403. log.debug(out)
  404. if return_code == 0 and err:
  405. log.warning(err)
  406. elif return_code != 0:
  407. assert err, "Command exited unsuccessful, but printed nothing to stderr"
  408. raise qubes.storage.StoragePoolException(err)
  409. return True
  410. def reset_cache():
  411. qubes.storage.lvm.size_cache = init_cache()