qvm-backup-restore 9.4 KB

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