qvm-backup 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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_prepare, backup_do
  25. from qubes.qubesutils import size_to_human
  26. from optparse import OptionParser
  27. import os
  28. import sys
  29. import getpass
  30. def print_progress(progress):
  31. print >> sys.stderr, "\r-> Backing up files: {0}%...".format (progress),
  32. def main():
  33. usage = "usage: %prog [options] <backup-dir-path> [vms-to-be-included ...]"
  34. parser = OptionParser (usage)
  35. parser.add_option ("-x", "--exclude", action="append",
  36. dest="exclude_list", default=[],
  37. help="Exclude the specified VM from backup (may be "
  38. "repeated)")
  39. parser.add_option ("--force-root", action="store_true", dest="force_root", default=False,
  40. help="Force to run, even with root privileges")
  41. parser.add_option ("-d", "--dest-vm", action="store", dest="appvm",
  42. help="The AppVM to send backups to (implies -e)")
  43. parser.add_option ("-e", "--encrypt", action="store_true", dest="encrypt", default=False,
  44. help="Encrypts the backup")
  45. parser.add_option ("-E", "--enc-algo", action="store",
  46. dest="crypto_algorithm", default=None,
  47. help="Specify non-default encryption algorithm. For "
  48. "list of supported algos execute 'openssl "
  49. "list-cipher-algorithms' (implies -e)")
  50. parser.add_option ("-H", "--hmac-algo", action="store",
  51. dest="hmac_algorithm", default=None,
  52. help="Specify non-default hmac algorithm. For list of "
  53. "supported algos execute 'openssl "
  54. "list-message-digest-algorithms'")
  55. parser.add_option ("-z", "--compress", action="store_true", dest="compress", default=False,
  56. help="Compress the backup")
  57. (options, args) = parser.parse_args ()
  58. if (len (args) < 1):
  59. print >> sys.stderr, "You must specify the target backup directory (e.g. /mnt/backup)"
  60. print >> sys.stderr, "qvm-backup will create a subdirectory there for each individual backup."
  61. exit (0)
  62. base_backup_dir = args[0]
  63. if os.geteuid() == 0:
  64. if not options.force_root:
  65. print >> sys.stderr, "*** Running this tool as root is strongly discouraged, this will lead you in permissions problems."
  66. print >> sys.stderr, "Retry as unprivileged user."
  67. print >> sys.stderr, "... or use --force-root to continue anyway."
  68. exit(1)
  69. # Only for locking
  70. qvm_collection = QubesVmCollection()
  71. qvm_collection.lock_db_for_reading()
  72. qvm_collection.load()
  73. vms = None
  74. if (len (args) > 1):
  75. vms = [qvm_collection.get_vm_by_name(vmname) for vmname in args[1:]]
  76. if options.appvm:
  77. options.exclude_list.append(options.appvm)
  78. if options.appvm or options.crypto_algorithm:
  79. options.encrypt = True
  80. files_to_backup = None
  81. try:
  82. files_to_backup = backup_prepare(
  83. vms_list=vms,
  84. exclude_list=options.exclude_list,
  85. hide_vm_names=options.encrypt)
  86. except QubesException as e:
  87. print >>sys.stderr, "ERROR: %s" % str(e)
  88. exit(1)
  89. total_backup_sz = reduce(lambda size, file: size+file["size"],
  90. files_to_backup, 0)
  91. if not options.appvm:
  92. appvm = None
  93. if os.path.isdir(base_backup_dir):
  94. stat = os.statvfs(base_backup_dir)
  95. else:
  96. stat = os.statvfs(os.path.dirname(base_backup_dir))
  97. backup_fs_free_sz = stat.f_bsize * stat.f_bavail
  98. print
  99. if (total_backup_sz > backup_fs_free_sz):
  100. print >>sys.stderr, "ERROR: Not enough space available on the backup filesystem!"
  101. exit(1)
  102. print "-> Available space: {0}".format(size_to_human(backup_fs_free_sz))
  103. else:
  104. appvm = qvm_collection.get_vm_by_name(options.appvm)
  105. if appvm is None:
  106. print >>sys.stderr, "ERROR: VM {0} does not exist".format(options.appvm)
  107. exit(1)
  108. stat = os.statvfs('/var/tmp')
  109. backup_fs_free_sz = stat.f_bsize * stat.f_bavail
  110. print
  111. if (backup_fs_free_sz < 1000000000):
  112. print >>sys.stderr, "ERROR: Not enough space available " \
  113. "on the local filesystem (needs 1GB for temporary files)!"
  114. exit(1)
  115. if not appvm.is_running():
  116. appvm.start(verbose=True)
  117. if options.appvm:
  118. print >>sys.stderr, ("WARNING: VM {} excluded because it's used to "
  119. "store the backup.").format(options.appvm)
  120. options.exclude_list.append(options.appvm)
  121. if not options.encrypt:
  122. print >>sys.stderr, "WARNING: encryption will not be used"
  123. prompt = raw_input ("Do you want to proceed? [y/N] ")
  124. if not (prompt == "y" or prompt == "Y"):
  125. exit (0)
  126. if options.encrypt:
  127. passphrase = getpass.getpass("Please enter the pass phrase that will "
  128. "be used to encrypt and verify the "
  129. "backup: ")
  130. else:
  131. passphrase = getpass.getpass("Please enter the pass phrase that will "
  132. "be used to verify the backup: ")
  133. passphrase2 = getpass.getpass("Enter again for verification: ")
  134. if passphrase != passphrase2:
  135. print >>sys.stderr, "ERROR: Password mismatch"
  136. exit(1)
  137. passphrase = passphrase.decode(sys.stdin.encoding)
  138. kwargs = {}
  139. if options.hmac_algorithm:
  140. kwargs['hmac_algorithm'] = options.hmac_algorithm
  141. if options.crypto_algorithm:
  142. kwargs['crypto_algorithm'] = options.crypto_algorithm
  143. try:
  144. backup_do(base_backup_dir, files_to_backup, passphrase,
  145. progress_callback=print_progress,
  146. encrypted=options.encrypt,
  147. compressed=options.compress,
  148. appvm=appvm, **kwargs)
  149. except QubesException as e:
  150. print >>sys.stderr, "ERROR: %s" % str(e)
  151. exit(1)
  152. print
  153. print "-> Backup completed."
  154. qvm_collection.unlock_db()
  155. main()