2010-04-05 20:58:57 +02:00
|
|
|
#!/usr/bin/python2.6
|
|
|
|
#
|
|
|
|
# The Qubes OS Project, http://www.qubes-os.org
|
|
|
|
#
|
|
|
|
# Copyright (C) 2010 Joanna Rutkowska <joanna@invisiblethingslab.com>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
from qubes.qubes import QubesVmCollection
|
2012-03-02 16:28:15 +01:00
|
|
|
from qubes.qubes import QubesAppVm, QubesTemplateVm, QubesHVm
|
2010-04-05 20:58:57 +02:00
|
|
|
from qubes.qubes import QubesException
|
|
|
|
from optparse import OptionParser;
|
2011-10-07 21:56:58 +02:00
|
|
|
import sys
|
2012-07-18 18:10:08 +02:00
|
|
|
import os
|
2010-04-05 20:58:57 +02:00
|
|
|
|
|
|
|
def main():
|
2012-03-02 16:06:26 +01:00
|
|
|
usage = "usage: %prog [options] <src-name> <new-name>\n"\
|
|
|
|
"Clones an existing VM by copying all its disk files"
|
2010-04-05 20:58:57 +02:00
|
|
|
|
|
|
|
parser = OptionParser (usage)
|
|
|
|
parser.add_option ("-q", "--quiet", action="store_false", dest="verbose", default=True)
|
|
|
|
parser.add_option ("-p", "--path", dest="dir_path",
|
|
|
|
help="Specify path to the template directory")
|
2012-07-11 23:53:23 +02:00
|
|
|
parser.add_option ("--force-root", action="store_true", dest="force_root", default=False,
|
|
|
|
help="Force to run, even with root privileges")
|
2010-04-05 20:58:57 +02:00
|
|
|
|
|
|
|
(options, args) = parser.parse_args ()
|
|
|
|
if (len (args) != 2):
|
|
|
|
parser.error ("You must specify at least the src and dst TemplateVM names!")
|
|
|
|
srcname = args[0]
|
|
|
|
dstname = args[1]
|
|
|
|
|
2012-07-11 23:53:23 +02:00
|
|
|
if os.geteuid() == 0:
|
|
|
|
if not options.force_root:
|
|
|
|
print >> sys.stderr, "*** Running this tool as root is strongly discouraged, this will lead you in permissions problems."
|
|
|
|
print >> sys.stderr, "Retry as unprivileged user."
|
|
|
|
print >> sys.stderr, "... or use --force-root to continue anyway."
|
|
|
|
exit(1)
|
|
|
|
|
2010-04-05 20:58:57 +02:00
|
|
|
qvm_collection = QubesVmCollection()
|
|
|
|
qvm_collection.lock_db_for_writing()
|
|
|
|
qvm_collection.load()
|
|
|
|
|
2012-03-02 16:06:26 +01:00
|
|
|
src_vm = qvm_collection.get_vm_by_name(srcname)
|
|
|
|
if src_vm is None:
|
2011-10-07 21:56:58 +02:00
|
|
|
print >> sys.stderr, "ERROR: A VM with the name '{0}' does not exist in the system.".format(srcname)
|
2010-04-05 20:58:57 +02:00
|
|
|
exit(1)
|
|
|
|
|
|
|
|
if qvm_collection.get_vm_by_name(dstname) is not None:
|
2011-10-07 21:56:58 +02:00
|
|
|
print >> sys.stderr, "ERROR: A VM with the name '{0}' already exists in the system.".format(dstname)
|
2010-04-05 20:58:57 +02:00
|
|
|
exit(1)
|
|
|
|
|
2012-03-02 16:06:26 +01:00
|
|
|
dst_vm = None
|
|
|
|
if isinstance(src_vm, QubesTemplateVm):
|
|
|
|
dst_vm = qvm_collection.add_new_templatevm(name=dstname,
|
|
|
|
dir_path=options.dir_path, installed_by_rpm=False)
|
|
|
|
elif isinstance(src_vm, QubesAppVm):
|
2012-03-09 11:01:20 +01:00
|
|
|
dst_vm = qvm_collection.add_new_appvm(name=dstname, template=src_vm.template,
|
2012-03-09 11:28:06 +01:00
|
|
|
label=src_vm.label,
|
2010-04-05 20:58:57 +02:00
|
|
|
dir_path=options.dir_path)
|
2012-03-02 16:28:15 +01:00
|
|
|
elif isinstance(src_vm, QubesHVm):
|
|
|
|
dst_vm = qvm_collection.add_new_hvm(name=dstname, label=src_vm.label)
|
2012-03-02 16:06:26 +01:00
|
|
|
else:
|
|
|
|
print >> sys.stderr, "ERROR: Clone not supported for this type of VM"
|
|
|
|
exit(1)
|
2010-04-05 20:58:57 +02:00
|
|
|
|
|
|
|
try:
|
2012-03-02 16:06:26 +01:00
|
|
|
dst_vm.clone_attrs(src_vm)
|
|
|
|
dst_vm.clone_disk_files (src_vm=src_vm, verbose=options.verbose)
|
2010-04-05 20:58:57 +02:00
|
|
|
except (IOError, OSError) as err:
|
2011-10-07 21:56:58 +02:00
|
|
|
print >> sys.stderr, "ERROR: {0}".format(err)
|
2012-03-02 16:06:26 +01:00
|
|
|
qvm_collection.pop(dst_vm.qid)
|
2010-04-05 20:58:57 +02:00
|
|
|
exit (1)
|
|
|
|
|
|
|
|
qvm_collection.save()
|
|
|
|
qvm_collection.unlock_db()
|
|
|
|
|
|
|
|
main()
|