fcn-virt 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. #!/usr/bin/python3
  2. # Style Guide: https://www.python.org/dev/peps/pep-0008/
  3. import argparse
  4. import configparser
  5. import libvirt
  6. from pathlib import Path
  7. import subprocess
  8. import sys
  9. import time
  10. import fcntoolbox.bscp as bscp
  11. log_function = lambda x : print(x)
  12. log_file = sys.stdout
  13. parser = argparse.ArgumentParser()
  14. parser.add_argument("selection", type=str, choices=["is-active", "is-volume-open", "vol-backup", "vol-serve"])
  15. parser.add_argument("--dom", "-d", type=str)
  16. parser.add_argument("--vol", type=str)
  17. args = parser.parse_args()
  18. config = configparser.RawConfigParser()
  19. config.read("/etc/fcntoolbox/config.ini")
  20. confvirt = config['virt']
  21. def is_active(dom_name):
  22. conn = libvirt.openReadOnly(None)
  23. if conn == None:
  24. print('Failed to open connection to the hypervisor')
  25. sys.exit(1)
  26. dom = conn.lookupByName(dom_name)
  27. return dom.isActive()
  28. def is_volume_open(volpath):
  29. if not Path(volpath).exists():
  30. raise FileNotFoundError("Cannot find volume '{}'".format(volpath))
  31. lvd_out = subprocess.check_output(['lvdisplay', volpath]).decode()
  32. # split lines v v remove header
  33. lvinfo = lvd_out.split("\n")[1:]
  34. lvinfo = [line.strip() for line in lvinfo]
  35. # Find line starting with "# open"
  36. lvopen = list(filter(lambda line : line.find("# open") == 0, lvinfo))
  37. # Read after "# open"
  38. lvopen = lvopen[0][len("# open"):].strip()
  39. return lvopen != "0"
  40. def create_backup_snapshot(vol_str):
  41. snap_path = Path("{}_snap_{}".format(vol_str, time.strftime("%Y-%m-%d")))
  42. snapshot_size = '10G'
  43. subprocess.call(['lvcreate', '--snapshot', '--size', snapshot_size, '--name', snap_path.name, vol_str], stdout = subprocess.DEVNULL, stderr = log_file)
  44. return snap_path
  45. def backup(dom_name, vol_str):
  46. vol_path = Path(vol_str)
  47. if not vol_path.exists():
  48. raise FileNotFoundError("Cannot find volume '{}'".format(vol_str))
  49. conn = libvirt.open(None)
  50. if conn == None:
  51. print('Failed to open connection to the hypervisor')
  52. sys.exit(1)
  53. dom = conn.lookupByName(dom_name)
  54. is_active = dom.isActive()
  55. if is_active:
  56. #try:
  57. # dom.fSTrim(None, 4096)
  58. #except libvirt.libvirtError as e:
  59. # print(e)
  60. dom.suspend()
  61. snap_path = create_backup_snapshot(vol_str)
  62. if is_active:
  63. dom.resume()
  64. remote_vol_str = '/dev/{}/{}'.format(confvirt['remote_vg'], vol_path.name)
  65. bscp.remote_command = confvirt['remote_command']
  66. bscp.bscp(str(snap_path), confvirt['remote_host'], remote_vol_str, 64 * 1024, 'sha1')
  67. def bscp_device_function(filename):
  68. allowed_volumes = set(confvirt['allowed_volumes'].split(','))
  69. if not filename in allowed_volumes:
  70. return None
  71. filename = str(create_backup_snapshot(filename))
  72. if is_volume_open(filename):
  73. return None
  74. else:
  75. return filename
  76. if args.selection == 'is-active':
  77. if args.dom is None:
  78. parser.error("is-active requires --domain.")
  79. if is_active(args.dom):
  80. sys.exit(0)
  81. else:
  82. sys.exit(1)
  83. elif args.selection == 'is-volume-open':
  84. if args.vol is None:
  85. parser.error("is-volume-open requires --vol.")
  86. if is_volume_open(args.vol):
  87. sys.exit(0)
  88. else:
  89. sys.exit(1)
  90. elif args.selection == 'vol-backup':
  91. if args.dom is None or args.vol is None:
  92. parser.error("vol-backup requires --domain and --vol.")
  93. backup(args.dom, args.vol)
  94. elif args.selection == 'vol-serve':
  95. log_function = lambda x : None
  96. log_file = subprocess.DEVNULL
  97. bscp.device_function = bscp_device_function
  98. bscp.serve()