IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
3.0KB

  1. import subprocess
  2. import csv
  3. import io
  4. import os
  5. def zfs_run(command):
  6. # print('Running:', command)
  7. out = subprocess.check_output(command, stderr=subprocess.STDOUT)
  8. return out
  9. def zfs_parse_output(command):
  10. out = zfs_run(command)
  11. s = io.StringIO(out.decode('utf-8'))
  12. r = csv.reader(s, delimiter='\t')
  13. return [a for a in r]
  14. def zfs_get_type(name):
  15. lst = zfs_parse_output(['zfs', 'list', '-o', 'name,type', '-H', name])
  16. return lst[0][1]
  17. def zfs_snapshot_by_tag_or_sha256(s):
  18. lst = zfs_parse_output(['zfs', 'list', '-o', 'focker:sha256,focker:tags,type,name', '-H', '-t', 'snapshot'])
  19. lst = list(filter(lambda a: (a[0] == s or s in a[1].split(' ')) and a[2] == 'snapshot', lst))
  20. if len(lst) == 0:
  21. raise ValueError('Reference not found: ' + s)
  22. if len(lst) > 1:
  23. raise ValueError('Ambiguous reference: ' + s)
  24. return (lst[0][3], lst[0][0])
  25. def zfs_clone(name, target_name):
  26. zfs_run(['zfs', 'clone', name, target_name])
  27. def zfs_exists(name):
  28. try:
  29. zfs_run(['zfs', 'list', name])
  30. except subprocess.CalledProcessError as e:
  31. return False
  32. return True
  33. def zfs_tag(name, props):
  34. for (k, v) in props.items():
  35. zfs_run(['zfs', 'set', k + '=' + v, name])
  36. def zfs_mountpoint(name):
  37. lst = zfs_parse_output(['zfs', 'list', '-o', 'mountpoint', '-H', name])
  38. return lst[0][0]
  39. def zfs_exists_snapshot_sha256(sha256):
  40. lst = zfs_parse_output(['zfs', 'list', '-o', 'focker:sha256', '-t', 'snap'])
  41. lst = list(filter(lambda a: a[0] == sha256, lst))
  42. if len(lst) == 0:
  43. return False
  44. return True
  45. def zfs_snapshot_by_sha256(sha256):
  46. lst = zfs_parse_output(['zfs', 'list', '-o', 'focker:sha256,name', '-t', 'snap', '-H'])
  47. lst = list(filter(lambda a: a[0] == sha256, lst))
  48. if len(lst) == 0:
  49. raise ValueError('Snapshot with given sha256 does not exist: ' + sha256)
  50. if len(lst) > 1:
  51. raise ValueError('Ambiguous snapshot sha256: ' + sha256)
  52. return lst[0][1]
  53. def zfs_init():
  54. poolname = zfs_parse_output(['zfs', 'list', '-H', '/'])
  55. if len(poolname) == 0:
  56. raise ValueError('Not a ZFS root')
  57. poolname = poolname[0][0].split('/')[0]
  58. print('poolname:', poolname)
  59. for path in ['/focker', '/focker/images', '/focker/volumes', '/focker/jails']:
  60. if not os.path.exists(path):
  61. os.mkdir(path)
  62. if not zfs_exists(poolname + '/focker'):
  63. zfs_run(['zfs', 'create', '-o', 'canmount=off', '-o', 'mountpoint=/focker', poolname + '/focker'])
  64. if not zfs_exists(poolname + '/focker/images'):
  65. zfs_run(['zfs', 'create', '-o', 'canmount=off', poolname + '/focker/images'])
  66. if not zfs_exists(poolname + '/focker/volumes'):
  67. zfs_run(['zfs', 'create', '-o', 'canmount=off', poolname + '/focker/volumes'])
  68. if not zfs_exists(poolname + '/focker/volumes'):
  69. zfs_run(['zfs', 'create', '-o', 'canmount=off', poolname + '/focker/jails'])