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!
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

114 linhas
3.7KB

  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_set_props(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_tag(name, tags):
  54. lst = zfs_parse_output(['zfs', 'list', '-o', 'focker:tags', '-H', name])
  55. tags = list(tags)
  56. tags.extend(lst[0][0].split(' '))
  57. tags = list(set(tags))
  58. if len(tags) > 0:
  59. zfs_run(['zfs', 'set', 'focker:tags=' + ' '.join(tags), name])
  60. else:
  61. zfs_run(['zfs', 'inherit', 'focker:tags', name])
  62. def zfs_untag(tags):
  63. lst = zfs_parse_output(['zfs', 'list', '-o', 'name,focker:tags', '-H'])
  64. lst = filter(lambda a: any([b in a[1].split(' ') for b in tags]), lst)
  65. for row in lst:
  66. cur_tags = row[1].split(' ')
  67. for t in tags:
  68. if t in cur_tags:
  69. cur_tags.remove(t)
  70. zfs_tag(row[0], cur_tags)
  71. def zfs_init():
  72. poolname = zfs_parse_output(['zfs', 'list', '-H', '/'])
  73. if len(poolname) == 0:
  74. raise ValueError('Not a ZFS root')
  75. poolname = poolname[0][0].split('/')[0]
  76. print('poolname:', poolname)
  77. for path in ['/focker', '/focker/images', '/focker/volumes', '/focker/jails']:
  78. if not os.path.exists(path):
  79. os.mkdir(path)
  80. if not zfs_exists(poolname + '/focker'):
  81. zfs_run(['zfs', 'create', '-o', 'canmount=off', '-o', 'mountpoint=/focker', poolname + '/focker'])
  82. if not zfs_exists(poolname + '/focker/images'):
  83. zfs_run(['zfs', 'create', '-o', 'canmount=off', poolname + '/focker/images'])
  84. if not zfs_exists(poolname + '/focker/volumes'):
  85. zfs_run(['zfs', 'create', '-o', 'canmount=off', poolname + '/focker/volumes'])
  86. if not zfs_exists(poolname + '/focker/volumes'):
  87. zfs_run(['zfs', 'create', '-o', 'canmount=off', poolname + '/focker/jails'])