qvm-backup-restore 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. #!/usr/bin/python2
  2. # -*- encoding: utf8 -*-
  3. #
  4. # The Qubes OS Project, http://www.qubes-os.org
  5. #
  6. # Copyright (C) 2010 Joanna Rutkowska <joanna@invisiblethingslab.com>
  7. #
  8. # This program is free software; you can redistribute it and/or
  9. # modify it under the terms of the GNU General Public License
  10. # as published by the Free Software Foundation; either version 2
  11. # of the License, or (at your option) any later version.
  12. #
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. # GNU General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU General Public License
  19. # along with this program; if not, write to the Free Software
  20. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  21. #
  22. #
  23. from multiprocessing import Event
  24. from qubes.qubes import QubesVmCollection
  25. from qubes.qubes import QubesException
  26. from qubes.backup import backup_restore_header
  27. from qubes.backup import backup_restore_prepare
  28. from qubes.backup import backup_restore_print_summary
  29. from qubes.backup import backup_restore_do
  30. import qubes.backup
  31. import sys
  32. from optparse import OptionParser
  33. import os
  34. import sys
  35. import getpass
  36. def main():
  37. usage = "usage: %prog [options] <backup-dir> [vms-to-be-restored ...]"
  38. parser = OptionParser (usage)
  39. parser.add_option ("--verify-only", action="store_true",
  40. dest="verify_only", default=False,
  41. help="Do not restore the data, only verify backup "
  42. "integrify.")
  43. parser.add_option ("--skip-broken", action="store_true", dest="skip_broken", default=False,
  44. help="Do not restore VMs that have missing templates or netvms")
  45. parser.add_option ("--ignore-missing", action="store_true", dest="ignore_missing", default=False,
  46. help="Ignore missing templates or netvms, restore VMs anyway")
  47. parser.add_option ("--skip-conflicting", action="store_true", dest="skip_conflicting", default=False,
  48. help="Do not restore VMs that are already present on the host")
  49. parser.add_option ("--rename-conflicting", action="store_true",
  50. dest="rename_conflicting", default=False,
  51. help="Restore VMs that are already present on the host under different name")
  52. parser.add_option ("--force-root", action="store_true", dest="force_root", default=False,
  53. help="Force to run, even with root privileges")
  54. parser.add_option ("--replace-template", action="append", dest="replace_template", default=[],
  55. help="Restore VMs using another template, syntax: "
  56. "old-template-name:new-template-name (may be "
  57. "repeated)")
  58. parser.add_option ("-x", "--exclude", action="append", dest="exclude", default=[],
  59. help="Skip restore of specified VM (may be repeated)")
  60. parser.add_option ("--skip-dom0-home", action="store_false", dest="dom0_home", default=True,
  61. help="Do not restore dom0 user home dir")
  62. parser.add_option ("--ignore-username-mismatch", action="store_true", dest="ignore_username_mismatch", default=False,
  63. help="Ignore dom0 username mismatch while restoring homedir")
  64. parser.add_option ("-d", "--dest-vm", action="store", dest="appvm",
  65. help="The AppVM to send backups to")
  66. parser.add_option ("-e", "--encrypted", action="store_true", dest="decrypt", default=False,
  67. help="The backup is encrypted")
  68. parser.add_option ("-z", "--compressed", action="store_true", dest="compressed", default=False,
  69. help="The backup is compressed")
  70. parser.add_option ("--debug", action="store_true", dest="debug",
  71. default=False, help="Enable (a lot of) debug output")
  72. (options, args) = parser.parse_args ()
  73. if (len (args) < 1):
  74. print >> sys.stderr, "You must specify the backup directory (e.g. /mnt/backup/qubes-2010-12-01-235959)"
  75. exit (0)
  76. backup_dir = args[0]
  77. vmlist = args[1:]
  78. #if not os.path.exists (backup_dir):
  79. # print >> sys.stderr, "The backup directory doesn't exist!"
  80. # exit(1)
  81. host_collection = QubesVmCollection()
  82. host_collection.lock_db_for_writing()
  83. host_collection.load()
  84. restore_options = {}
  85. if options.ignore_missing:
  86. restore_options['use-default-template'] = True
  87. restore_options['use-default-netvm'] = True
  88. if options.replace_template:
  89. restore_options['replace-template'] = options.replace_template
  90. if not options.dom0_home:
  91. restore_options['dom0-home'] = False
  92. if options.ignore_username_mismatch:
  93. restore_options['ignore-username-mismatch'] = True
  94. if options.exclude:
  95. restore_options['exclude'] = options.exclude
  96. if options.verify_only:
  97. restore_options['verify-only'] = True
  98. if options.debug:
  99. qubes.backup.BACKUP_DEBUG = True
  100. appvm = None
  101. if options.appvm is not None:
  102. appvm = host_collection.get_vm_by_name(options.appvm)
  103. if appvm is None:
  104. print >>sys.stderr, "ERROR: VM {0} does not exist".format(options.appvm)
  105. exit(1)
  106. passphrase = getpass.getpass("Please enter the pass phrase that will be used to decrypt/verify the backup: ")
  107. passphrase = passphrase.decode(sys.stdin.encoding)
  108. print >> sys.stderr, "Checking backup content..."
  109. error_detected = Event()
  110. def error_callback(message):
  111. error_detected.set()
  112. print >> sys.stderr, message
  113. restore_info = None
  114. try:
  115. restore_info = backup_restore_prepare(
  116. backup_dir,
  117. passphrase=passphrase,
  118. options=restore_options,
  119. host_collection=host_collection,
  120. encrypted=options.decrypt,
  121. compressed=options.compressed,
  122. appvm=appvm,
  123. error_callback=error_callback)
  124. except QubesException as e:
  125. print >> sys.stderr, "ERROR: %s" % str(e)
  126. exit(1)
  127. if len(vmlist) > 0:
  128. for vm in restore_info.keys():
  129. if vm.startswith('$'):
  130. continue
  131. if not vm in vmlist:
  132. restore_info.pop(vm)
  133. backup_restore_print_summary(restore_info)
  134. there_are_conflicting_vms = False
  135. there_are_missing_templates = False
  136. there_are_missing_netvms = False
  137. dom0_username_mismatch = False
  138. for vm_info in restore_info.values():
  139. if 'excluded' in vm_info and vm_info['excluded']:
  140. continue
  141. if 'missing-template' in vm_info.keys():
  142. there_are_missing_templates = True
  143. if 'missing-netvm' in vm_info.keys():
  144. there_are_missing_netvms = True
  145. if 'already-exists' in vm_info.keys():
  146. there_are_conflicting_vms = True
  147. if 'username-mismatch' in vm_info.keys():
  148. dom0_username_mismatch = True
  149. print
  150. if hasattr(os, "geteuid") and os.geteuid() == 0:
  151. print >> sys.stderr, "*** Running this tool as root is strongly discouraged, this will lead you in permissions problems."
  152. if options.force_root:
  153. print >> sys.stderr, "Continuing as commanded. You have been warned."
  154. else:
  155. print >> sys.stderr, "Retry as unprivileged user."
  156. print >> sys.stderr, "... or use --force-root to continue anyway."
  157. exit(1)
  158. if there_are_conflicting_vms:
  159. print >> sys.stderr, "*** There VMs with conflicting names on the host! ***"
  160. if options.skip_conflicting:
  161. print >> sys.stderr, "Those VMs will not be restored, the host VMs will not be overwritten!"
  162. else:
  163. print >> sys.stderr, "Remove VMs with conflicting names from the host before proceeding."
  164. print >> sys.stderr, "... or use --skip-conflicting to restore only those VMs that do not exist on the host."
  165. print >> sys.stderr, "... or use --rename-conflicting to " \
  166. "restore those VMs under modified " \
  167. "name (with number at the end)"
  168. exit (1)
  169. print "The above VMs will be copied and added to your system."
  170. print "Exisiting VMs will not be removed."
  171. if there_are_missing_templates:
  172. print >> sys.stderr, "*** One or more template VM is missing on the host! ***"
  173. if not (options.skip_broken or options.ignore_missing):
  174. print >> sys.stderr, "Install it first, before proceeding with backup restore."
  175. print >> sys.stderr, "Or pass: --skip-broken or --ignore-missing switch."
  176. exit (1)
  177. elif options.skip_broken:
  178. print >> sys.stderr, "... VMs that depend on it will not be restored (--skip-broken used)"
  179. elif options.ignore_missing:
  180. print >> sys.stderr, "... VMs that depend on it will be restored anyway (--ignore-missing used)"
  181. else:
  182. print >> sys.stderr, "INTERNAL ERROR?!"
  183. exit (1)
  184. if there_are_missing_netvms:
  185. print >> sys.stderr, "*** One or more network VM is missing on the host! ***"
  186. if not (options.skip_broken or options.ignore_missing):
  187. print >> sys.stderr, "Install it first, before proceeding with backup restore."
  188. print >> sys.stderr, "Or pass: --skip_broken or --ignore_missing switch."
  189. exit (1)
  190. elif options.skip_broken:
  191. print >> sys.stderr, "... VMs that depend on it will not be restored (--skip-broken used)"
  192. elif options.ignore_missing:
  193. print >> sys.stderr, "... VMs that depend on it be restored anyway (--ignore-missing used)"
  194. else:
  195. print >> sys.stderr, "INTERNAL ERROR?!"
  196. exit (1)
  197. if 'dom0' in restore_info.keys() and options.dom0_home:
  198. if dom0_username_mismatch:
  199. print >> sys.stderr, "*** Dom0 username mismatch! This can break some settings ***"
  200. if not options.ignore_username_mismatch:
  201. print >> sys.stderr, "Skip dom0 home restore (--skip-dom0-home)"
  202. print >> sys.stderr, "Or pass: --ignore-username-mismatch to continue anyway"
  203. exit(1)
  204. else:
  205. print >> sys.stderr, "Continuing as directed"
  206. print >> sys.stderr, "While restoring user homedir, existing files/dirs will be backed up in 'home-pre-restore-<current-time>' dir"
  207. prompt = raw_input ("Do you want to proceed? [y/N] ")
  208. if not (prompt == "y" or prompt == "Y"):
  209. exit (0)
  210. try:
  211. backup_restore_do(restore_info,
  212. host_collection=host_collection,
  213. error_callback=error_callback)
  214. except QubesException as e:
  215. print >> sys.stderr, "ERROR: %s" % str(e)
  216. host_collection.unlock_db()
  217. if error_detected.is_set():
  218. print "-> Completed with errors!"
  219. exit(1)
  220. else:
  221. print "-> Done."
  222. main()