2013-01-20 21:44:13 +01:00
|
|
|
#!/usr/bin/python2
|
2010-04-05 20:58:57 +02:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
from qubes.qubes import QubesException
|
|
|
|
from optparse import OptionParser
|
|
|
|
import subprocess
|
2011-03-07 16:05:36 +01:00
|
|
|
import os
|
2011-10-07 21:56:58 +02:00
|
|
|
import sys
|
2012-04-24 01:40:56 +02:00
|
|
|
import dbus
|
2010-04-05 20:58:57 +02:00
|
|
|
|
2012-04-24 01:40:56 +02:00
|
|
|
notify_object = None
|
|
|
|
|
|
|
|
def tray_notify(str, label, timeout = 3000):
|
2013-12-15 22:51:42 +01:00
|
|
|
if notify_object:
|
|
|
|
notify_object.Notify("Qubes", 0, label.icon, "Qubes", str, [], [], timeout, dbus_interface="org.freedesktop.Notifications")
|
2012-04-24 01:40:56 +02:00
|
|
|
|
|
|
|
def tray_notify_error(str, timeout = 3000):
|
2013-12-15 22:51:42 +01:00
|
|
|
if notify_object:
|
|
|
|
notify_object.Notify("Qubes", 0, "dialog-error", "Qubes", str, [], [], timeout, dbus_interface="org.freedesktop.Notifications")
|
2012-04-24 01:40:56 +02:00
|
|
|
|
2013-01-10 19:19:15 +01:00
|
|
|
def tray_notify_generic(level, str):
|
|
|
|
if level == "info":
|
|
|
|
tray_notify(str, label=vm.label)
|
|
|
|
elif level == "error":
|
|
|
|
tray_notify_error(str)
|
|
|
|
|
2010-04-05 20:58:57 +02:00
|
|
|
def main():
|
|
|
|
usage = "usage: %prog [options] <vm-name>"
|
|
|
|
parser = OptionParser (usage)
|
|
|
|
parser.add_option ("-q", "--quiet", action="store_false", dest="verbose", default=True)
|
2012-04-24 01:40:56 +02:00
|
|
|
parser.add_option ("--tray", action="store_true", dest="tray", default=False,
|
|
|
|
help="Use tray notifications instead of stdout" )
|
2010-04-05 20:58:57 +02:00
|
|
|
parser.add_option ("--no-guid", action="store_true", dest="noguid", default=False,
|
2011-12-27 17:44:23 +01:00
|
|
|
help="Do not start the GUId (ignored)")
|
2012-02-24 04:25:27 +01:00
|
|
|
parser.add_option ("--drive", dest="drive", default=None,
|
2012-03-26 20:25:49 +02:00
|
|
|
help="Temporarily attach specified drive as CD/DVD or hard disk (can be specified with prefix 'hd:' or 'cdrom:', default is cdrom)")
|
|
|
|
parser.add_option ("--hddisk", dest="drive_hd", default=None,
|
|
|
|
help="Temporarily attach specified drive as hard disk")
|
|
|
|
parser.add_option ("--cdrom", dest="drive_cdrom", default=None,
|
2012-02-24 04:25:27 +01:00
|
|
|
help="Temporarily attach specified drive as CD/DVD")
|
2013-11-01 02:31:13 +01:00
|
|
|
parser.add_option ("--install-windows-tools", action="store_true", dest="install_windows_tools", default=False,
|
|
|
|
help="Attach Windows tools CDROM to the VM")
|
2010-09-07 16:15:24 +02:00
|
|
|
parser.add_option ("--dvm", action="store_true", dest="preparing_dvm", default=False,
|
|
|
|
help="Do actions necessary when preparing DVM image")
|
2012-03-15 20:58:12 +01:00
|
|
|
parser.add_option ("--custom-config", action="store", dest="custom_config", default=None,
|
|
|
|
help="Use custom Xen config instead of Qubes-generated one")
|
2012-04-23 12:38:55 +02:00
|
|
|
parser.add_option ("--debug", action="store_true", dest="debug", default=False,
|
|
|
|
help="Enable debug mode for this VM (until its shutdown)")
|
2010-04-05 20:58:57 +02:00
|
|
|
|
|
|
|
(options, args) = parser.parse_args ()
|
|
|
|
if (len (args) != 1):
|
|
|
|
parser.error ("You must specify VM name!")
|
|
|
|
vmname = args[0]
|
|
|
|
|
2012-04-24 01:40:56 +02:00
|
|
|
if options.tray:
|
|
|
|
global notify_object
|
2013-12-15 22:51:42 +01:00
|
|
|
try:
|
|
|
|
notify_object = dbus.SessionBus().get_object("org.freedesktop.Notifications", "/org/freedesktop/Notifications")
|
|
|
|
except dbus.DBusException as ex:
|
|
|
|
print >>sys.stderr, "WARNING: failed connect to tray notification service: %s" % str(ex)
|
2012-04-24 01:40:56 +02:00
|
|
|
|
2010-04-05 20:58:57 +02:00
|
|
|
qvm_collection = QubesVmCollection()
|
|
|
|
qvm_collection.lock_db_for_reading()
|
|
|
|
qvm_collection.load()
|
|
|
|
qvm_collection.unlock_db()
|
|
|
|
|
|
|
|
vm = qvm_collection.get_vm_by_name(vmname)
|
|
|
|
if vm is None:
|
2011-10-07 21:56:58 +02:00
|
|
|
print >> sys.stderr, "A VM with the name '{0}' does not exist in the system.".format(vmname)
|
2010-04-05 20:58:57 +02:00
|
|
|
exit(1)
|
|
|
|
|
2013-11-01 02:31:13 +01:00
|
|
|
if bool(options.drive_hd) + bool(options.drive_cdrom) + bool(options.drive) + bool(options.install_windows_tools) > 1:
|
|
|
|
print >> sys.stderr, "Only one of --drive, --cdrom, --hddisk, --install-windows-tools can be specified"
|
2012-03-26 20:25:49 +02:00
|
|
|
exit(1)
|
|
|
|
|
2013-11-01 02:31:13 +01:00
|
|
|
if options.install_windows_tools:
|
|
|
|
options.drive = 'cdrom:dom0:/usr/lib/qubes/qubes-windows-tools.iso'
|
|
|
|
|
2012-03-26 20:25:49 +02:00
|
|
|
if options.drive_hd:
|
|
|
|
options.drive = 'hd:' + options.drive_hd
|
|
|
|
|
|
|
|
if options.drive_cdrom:
|
2012-04-22 23:56:04 +02:00
|
|
|
options.drive = 'cdrom:' + options.drive_cdrom
|
2012-03-26 20:25:49 +02:00
|
|
|
|
2012-02-24 04:25:27 +01:00
|
|
|
if options.drive:
|
|
|
|
if hasattr(vm, 'drive'):
|
|
|
|
vm.drive = options.drive
|
|
|
|
else:
|
|
|
|
print >> sys.stderr, "This VM does not support attaching drives"
|
|
|
|
exit (1)
|
|
|
|
|
2012-03-15 20:58:12 +01:00
|
|
|
if options.custom_config:
|
|
|
|
vm.conf_file = options.custom_config
|
|
|
|
|
2012-04-23 12:38:55 +02:00
|
|
|
if options.debug:
|
|
|
|
vm.debug = True
|
|
|
|
|
2010-04-05 20:58:57 +02:00
|
|
|
try:
|
|
|
|
vm.verify_files()
|
2013-01-10 19:19:15 +01:00
|
|
|
xid = vm.start(verbose=options.verbose, preparing_dvm=options.preparing_dvm, start_guid=not options.noguid, notify_function=tray_notify_generic if options.tray else None)
|
2012-04-24 01:40:56 +02:00
|
|
|
except (IOError, OSError, QubesException, MemoryError) as err:
|
|
|
|
if options.tray:
|
|
|
|
tray_notify_error(str(err))
|
|
|
|
else:
|
|
|
|
print >> sys.stderr, "ERROR: {0}".format(err)
|
2010-04-05 20:58:57 +02:00
|
|
|
exit (1)
|
|
|
|
|
2012-04-23 12:38:55 +02:00
|
|
|
if options.debug:
|
|
|
|
print >> sys.stderr, "--> Debug mode enabled. Useful logs: "
|
|
|
|
print >> sys.stderr, " /var/log/xen/console/guest-%s.log" % vmname
|
2013-12-17 23:59:16 +01:00
|
|
|
if vm.type.endwith("HVM"):
|
|
|
|
print >> sys.stderr, " /var/log/xen/console/guest-%s-dm.log" % vmname
|
|
|
|
print >> sys.stderr, " /var/log/qubes/guid.%s.log" % vmname
|
|
|
|
print >> sys.stderr, " /var/log/qubes/qrexec.%s.log" % vmname
|
2012-04-23 12:38:55 +02:00
|
|
|
|
2010-04-05 20:58:57 +02:00
|
|
|
main()
|